@charset "UTF-8";
:root {
  /* fonts */
  --font-main: "Noto Sans JP", sans-serif;
  --font-sub: "Hina Mincho", serif;
  --font-accent: "Noto Serif JP", serif;
  --font-en: "Baskervville", serif;
  /* colors */
  --color-main-100: #233046;
  --color-main-100-rgb: 35 48 70;
  --color-main-200: #112250;
  --color-main-200-rgb: 17 34 80;
  --color-main-300: #003378;
  --color-main-300-rgb: 0 51 120;
  --color-main-400: #80abd6;
  --color-main-400-rgb: 128 171 214;
  --color-main-500: #e1effa;
  --color-main-500-rgb: 225 239 250;
  --color-accent-100: #3a250f;
  --color-accent-200: #e0c58e;
  --color-accent-200-rgb: 224 197 142;
  --color-txt-100: #121524;
  --color-txt-100-rgb: 18 21 36;
  --color-txt-200: #000;
  --color-txt-300: #000;
  --color-txt-400: #000;
  --color-border-100: #9daccd;
  --color-border-200: #000;
  --color-line-100: #06c755;
  --color-base-100: #000;
  --color-base-200: #000;
  --color-base-300: #000;
  --color-base-400: #000;
  --color-base-500: #000;
  --color-white: #ffffff;
  --color-white-rgb: 255 255 255;
  --color-black: #000000;
  --color-black-rgb: 0 0 0;
  /* font-weights */
  --font-thin: 100;
  --font-exlight: 200;
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-exbold: 800;
  --font-black: 900;
}
@media screen and (min-width: 767px) {
  :root {
    --cmn-pd-xs: 100px;
    --cmn-pd-md: 120px;
    --ttl-mb-sm: 50px;
    --ttl-mb-md: 60px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --cmn-pd-xs: 70px;
    --cmn-pd-md: 80px;
    --ttl-mb-sm: 40px;
    --ttl-mb-md: 50px;
  }
}

/* display ------------------------------------------------- */
.block {
  display: block;
}

.inblock {
  display: inline-block;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* flex-direction ------------------------------------------------- */
.fd-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.fd-row-rev {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.fd-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.fd-col-rev {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

/* align-items ------------------------------------------------- */
.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/* justify-content ------------------------------------------------- */
.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.justify-btw {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* text-align ------------------------------------------------- */
.text-center {
  text-align: center;
}

.text-start {
  text-align: start;
}

.text-end {
  text-align: end;
}

html {
  font-family: var(--font-main);
}

body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  word-break: normal;
  font-optical-sizing: auto;
  overflow-wrap: anywhere;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

a:hover {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0.7;
}

iframe {
  border: none;
}

.logo a,
.logo img {
  display: block;
}

@media screen and (min-width: 767px) {
  body {
    width: 100%;
    min-width: 1280px;
    position: relative;
  }
  .inner {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
  }
  .inbox {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
  }
  .pc-none {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  body {
    width: 100%;
    min-width: 350px;
    position: relative;
  }
  .inbox,
  .inner {
    max-width: 768px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }
  .sp-none {
    display: none !important;
  }
  .logo .logo-item {
    display: block;
    line-height: 1;
  }
}
/*==========================================
PC
===========================================*/
/*==========================================
SP
===========================================*/
.btn {
  display: block;
  font-family: var(--font-main);
  position: relative;
  z-index: 1;
}

.btn-white-100, .btn-accent-100, .btn-white-100-instagram, .btn-white-100-line {
  display: block;
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--font-accent);
  font-weight: var(--font-medium);
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.05em;
  width: 420px;
  padding: 24px 20px 26px;
  color: var(--color-txt-100);
  background: var(--color-white);
}
.btn-white-100::before, .btn-accent-100::before, .btn-white-100-instagram::before, .btn-white-100-line::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 28/7;
  width: 28px;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/arw-accent.png) no-repeat;
  background-size: contain;
}

.btn-white-100-line::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/30;
  width: 30px;
  left: 119px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/line-icon.png) no-repeat;
  background-size: contain;
}

.btn-white-100-instagram::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 30/30;
  width: 30px;
  left: 116px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/instagram-icon.png) no-repeat;
  background-size: contain;
}

.btn-accent-100 {
  width: 340px;
  background: var(--color-accent-200);
}
.btn-accent-100::before {
  background: url(/img/common/arw-black.png) no-repeat;
  background-size: contain;
}

.ttl, .top-greeting-ttl, .top-feature-ttl, .top-service-ttl, .top-profile-ttl, .top-contact-ttl, .top-news-ttl, .top-access-ttl, .menu-ttl, .fortune-telling-menu-ttl, .tarot-ttl, .chiropractic-ttl, .oil-lymphatic-ttl, .ear-acupuncture-ttl, .com-info-ttl, .com-map-ttl, .news-ttl, .form-ttl,
.complete-ttl,
.notfound-ttl,
.privacy-ttl,
.site-map-ttl {
  font-family: var(--font-sub);
  color: var(--color-txt-100);
  font-size: 35px;
  line-height: 2.2857142857;
  letter-spacing: 0.1em;
  font-weight: var(--font-normal);
}

.ttl-sm, .ttl-sm-ls-sm, .top-links-ttl, .ttl-sm-lh-1, .mv-link-ttl {
  font-family: var(--font-sub);
  color: var(--color-white);
  font-size: 30px;
  line-height: 2.6666666667;
  letter-spacing: 0.15em;
  font-weight: var(--font-normal);
}

.ttl-sm-lh-sm, .menu-subttl, .fortune-telling-menu-subttl, .tarot-subttl {
  font-family: var(--font-accent);
  color: var(--color-main-300);
  font-size: 30px;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  font-weight: var(--font-medium);
}

.ttl-sm-lh-1, .mv-link-ttl {
  line-height: 1;
}

.ttl-sm-ls-sm, .top-links-ttl {
  letter-spacing: 0.1em;
}

.ttl-english, .top-greeting-ttl .ttl-sub, .top-feature-ttl .ttl-sub, .top-service-ttl .ttl-sub, .top-profile-ttl .ttl-sub, .top-contact-ttl .ttl-sub, .top-news-ttl .ttl-sub, .top-access-ttl .ttl-sub, .menu-ttl .ttl-sub, .fortune-telling-menu-ttl .ttl-sub, .tarot-ttl .ttl-sub, .chiropractic-ttl .ttl-sub, .oil-lymphatic-ttl .ttl-sub, .ear-acupuncture-ttl .ttl-sub, .com-info-ttl .ttl-sub, .com-map-ttl .ttl-sub, .news-ttl .ttl-sub, .form-ttl .ttl-sub,
.complete-ttl .ttl-sub,
.notfound-ttl .ttl-sub,
.privacy-ttl .ttl-sub,
.site-map-ttl .ttl-sub {
  font-family: var(--font-en);
  color: rgb(var(--color-main-300-rgb)/0.92);
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: var(--font-normal);
}

.ttl-sv, .sv-ttl {
  font-family: var(--font-sub);
  font-size: 35px;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: var(--font-normal);
  color: var(--color-main-300);
}

.ttl-temp {
  color: var(--color-txt-300);
}
.ttl-temp .ttl-en {
  text-transform: uppercase;
}

.sub-ttl, .top-feature-subttl, .top-contact-subttl {
  font-family: var(--font-accent);
  font-weight: var(--font-medium);
  color: var(--color-white);
  font-size: 20px;
  line-height: 1.75;
  letter-spacing: 0.05em;
}

.sub-ttl-lg, .top-service-subttl, .top-profile-name, .sub-ttl-lg-lh-lg, .menu-name, .fortune-telling-menu-name {
  font-family: var(--font-accent);
  font-weight: var(--font-medium);
  color: var(--color-white);
  font-size: 25px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.sub-ttl-lg-lh-lg, .menu-name, .fortune-telling-menu-name {
  color: var(--color-main-300);
  line-height: 1.6;
}

.txt, .top-greeting-txt, .top-profile-name .furigana, .txt-lh-xs, .top-profile-term, .top-profile-definition, .top-access-header, .top-access-data, .menu-txt, .menu .notice, .fortune-telling-menu-txt, .fortune-telling-menu .notice, .tarot-contents, .chiropractic-contents, .oil-lymphatic-contents, .ear-acupuncture-contents, .com-info-header, .com-info-data, .txt-lh-sm, .top-service-txt, .top-contact-txt, .txt-lh-1, .top-contact-address, .footer-detail, .footer-address {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 2.5;
  letter-spacing: 0.05em;
  font-weight: var(--font-normal);
  color: var(--color-txt-100);
}

.txt-lh-1, .top-contact-address, .footer-detail, .footer-address {
  line-height: 1;
}

.txt-lh-sm, .top-service-txt, .top-contact-txt {
  line-height: 2.1875;
}

.txt-lh-xs, .top-profile-term, .top-profile-definition, .top-access-header, .top-access-data, .menu-txt, .menu .notice, .fortune-telling-menu-txt, .fortune-telling-menu .notice, .tarot-contents, .chiropractic-contents, .oil-lymphatic-contents, .ear-acupuncture-contents, .com-info-header, .com-info-data {
  line-height: 1.875;
}

.txt-xs, .top-contact-txt .sm {
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.7857142857;
  letter-spacing: 0.05em;
  font-weight: var(--font-normal);
  color: var(--color-white);
}

.txt-2xs, .txt-2xs-lh-1, .header-address {
  font-family: var(--font-main);
  font-size: 13px;
  line-height: 1.54;
  letter-spacing: 0.05em;
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
}

.txt-2xs-lh-1, .header-address {
  line-height: 1;
}

.txt-news-date, .top-news-item .date, .detail .date {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: var(--font-medium);
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-accent-200);
}

.txt-news-tag, .top-news-item .tag, .detail .tag {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: var(--font-medium);
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-main-400);
}

.txt-news-ttl, .top-news-item-ttl {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.875;
  font-weight: var(--font-normal);
  letter-spacing: 0.05em;
  color: var(--color-white);
}

.txt-hd-nav, .header .nav-list {
  font-family: var(--font-accent);
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-white);
  font-weight: var(--font-medium);
}

.txt-ft-nav, .footer .nav-list, .txt-ft-nav-sm {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-white);
  font-weight: var(--font-normal);
}

.txt-ft-nav-sm {
  font-size: 12px;
}

/*電話アイコンと番号 -------------------------------------------*/
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.tel, .tel-lg, .tel-white {
  font-family: var(--font-accent);
  font-size: 25px;
  font-weight: var(--font-normal);
  position: relative;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-txt-100);
}
.tel-num {
  --icon-width: 20;
  --icon-height: 20;
  display: inline-block;
  display: block;
  line-height: 1;
  padding-left: 5px;
  margin-left: calc(var(--icon-width) * 1px);
  position: relative;
  z-index: 1;
}
.tel-num::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: var(--icon-width)/var(--icon-height);
  width: calc(var(--icon-width) * 1px);
  left: 0;
  top: calc(50% + 2px);
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  background: url(/img/common/tel-icon.png) no-repeat;
  background-size: contain;
}

.tel-svg img {
  display: block;
}

.tel-white {
  font-size: 30px;
  color: var(--color-white);
}
.tel-white .tel-num {
  --icon-width: 20;
  --icon-height: 20;
  display: block;
  line-height: 1;
  padding-left: 10px;
  margin-left: calc(var(--icon-width) * 1px);
  position: relative;
  z-index: 1;
}
.tel-white .tel-num::before {
  background: url(/img/common/tel-icon-accent.png) no-repeat;
  background-size: contain;
}

.tel-lg {
  font-size: 30px;
}
.tel-lg .tel-num {
  --icon-width: 20;
  --icon-height: 20;
  display: block;
  line-height: 1;
  padding-left: 10px;
  margin-left: calc(var(--icon-width) * 1px);
  position: relative;
  z-index: 1;
}
.tel-lg .tel-num::before {
  background: url(/img/common/tel-icon.png) no-repeat;
  background-size: contain;
}

/*site-map ---------------------------------------------*/
.site-map {
  --color-site-map: var(--color-txt-100);
  padding: var(--cmn-pd-md, 120px) 0;
}
.site-map-list {
  font-size: 18px;
  color: var(--color-site-map);
}
.site-map-item {
  border-bottom: 1px solid var(--color-site-map);
  font-weight: var(--font-medium, 500);
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}
.site-map-item a {
  display: block;
  padding: 2% 0 2% 3%;
  position: relative;
  z-index: 1;
}
.site-map-item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23202931' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*404 ---------------------------------------------*/
.notfound {
  --color-notfound-txt: var(--color-txt-100);
  --color-notfound-link: var(--color-main-100);
  padding: var(--cmn-pd-md, 120px) 0;
}
.notfound-txt {
  font-weight: var(--font-medium, 500);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  color: var(--color-notfound-txt);
}
.notfound-txt a {
  color: var(--color-notfound-link);
  text-decoration: underline;
}

/*bread-clumb ---------------------------------------------*/
.bread-clumb {
  --bread-clumb-height: 60px;
  --color-bread-clumb: var(--color-txt-100);
  --color-bread-clumb-current: var(--color-main-100);
  padding: calc((var(--bread-clumb-height) - 23.8px) / 2) 0;
  overflow: hidden;
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 1080px;
  left: calc(50% - 540px);
}
.bread-clumb-list {
  overflow: hidden;
}
.bread-clumb-item {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-bread-clumb);
  white-space: nowrap;
}
.bread-clumb-item:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}
.bread-clumb-item:not(:last-child) {
  padding-right: 1.07em;
  margin-right: 1.07em;
  position: relative;
  z-index: 1;
}
.bread-clumb-item:not(:last-child)::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0.71em;
  height: 0.71em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23222222' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.bread-clumb .current {
  color: var(--color-bread-clumb-current);
}

/*privacy ---------------------------------------------*/
.privacy {
  --color-privacy: var(--color-txt-100);
  padding: var(--cmn-pd-md, 120px) 0;
}
.privacy .ttl02 {
  font-size: 24px;
  font-family: var(--font-main);
  padding-bottom: 10px;
  margin-bottom: 15px;
  color: var(--color-privacy);
  font-weight: var(--font-bold, bold);
  border-bottom: 1px solid var(--color-privacy);
}
.privacy .privacy-box {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-privacy);
}
.privacy .privacy-box:not(:last-child) {
  margin-bottom: 70px;
}

/*contact ---------------------------------------------*/
#contact {
  --color-contact-main: var(--color-main-100);
  --color-contact-required-mark-txt: var(--color-white);
  --color-contact-required-mark-bg: var(--color-main-100);
  --color-contact-th-bg: var(--color-main-200);
  --color-contact-th-txt: var(--color-txt-100);
  --color-contact-td-bg: #fff;
  --color-contact-disabled-bg: #ccc;
  --color-contact-disabled-txt: #777;
  padding: var(--cmn-pd-md, 120px) 0;
}
#contact table {
  width: 100%;
  margin-bottom: 16px;
  border-collapse: collapse;
}
#contact table tr td {
  font-size: 15px;
  padding: 10px;
  vertical-align: middle;
  text-align: left;
  font-weight: 400;
  border: 1px solid #dfdfdf;
  background: var(--color-contact-td-bg);
}
#contact table tr th {
  font-size: 15px;
  padding: 10px;
  vertical-align: middle;
  text-align: left;
  font-weight: 400;
  border: 1px solid #dfdfdf;
  width: 30%;
  color: var(--color-contact-th-txt);
  background: var(--color-contact-th-bg);
}
#contact table .required-mark {
  color: var(--color-contact-required-mark-txt);
  font-size: 13px;
  border-radius: 0;
  background: var(--color-contact-required-mark-bg);
}
#contact label[for=agree] a {
  color: var(--color-contact-main);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--color-contact-main);
}
#contact .contact-btn.contact-submits-wrap button[type=button],
#contact input[type=button],
#contact input[type=submit],
#contact button[type=button] {
  color: #fff;
  background: var(--color-contact-main);
  font-size: 16px;
  border: unset;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}
#contact .contact-btn.contact-submits-wrap button[type=button]:hover,
#contact input[type=button]:hover,
#contact input[type=submit]:hover,
#contact button[type=button]:hover {
  opacity: 0.7;
}
#contact .contact-btn.contact-submits-wrap button[type=button][disabled],
#contact input[type=button][disabled],
#contact input[type=submit][disabled],
#contact button[type=button][disabled] {
  color: var(--color-contact-disabled-txt);
  background: var(--color-contact-disabled-bg);
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  #contact table {
    border-collapse: separate;
  }
  #contact table tr {
    margin-bottom: 5vw;
  }
  #contact table tr td {
    font-size: 4vw;
    padding: 4vw;
    text-align: left;
    font-weight: 400;
    border: 1px solid #dfdfdf;
    background: var(--color-contact-td-bg);
  }
  #contact table tr th {
    font-size: 4vw;
    padding: 4vw;
    text-align: left;
    font-weight: 400;
    border: 1px solid #dfdfdf;
    width: 100%;
    color: var(--color-contact-th-txt);
    background: var(--color-contact-th-bg);
  }
  #contact table tr textarea,
  #contact table tr input {
    font-size: 4vw;
    padding: 4vw;
  }
  #contact table .required-mark {
    font-weight: 500;
    color: var(--color-contact-required-mark-txt);
    font-size: 3.5vw;
    border-radius: 0;
    background: var(--color-contact-required-mark-bg);
  }
  #contact input[type=button],
  #contact input[type=submit],
  #contact button[type=button] {
    width: 95%;
    font-size: 4vw;
    margin-bottom: 2vw;
  }
}

/*complete ---------------------------------------------*/
.complete {
  --color-complete-txt: var(--color-txt-100);
  --color-complete-link: var(--color-main-100);
  padding: var(--cmn-pd-md, 120px) 0;
}
.complete-box {
  font-weight: var(--font-medium, 500);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  color: var(--color-complete-txt);
}
.complete-box a {
  display: inline-block;
  margin-top: 20px;
  color: var(--color-complete-link);
  text-decoration: underline;
}

.pagenation {
  --color-pagenation-def-txt: var(--color-txt-100);
  --color-pagenation-border: var(--color-txt-100);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
  gap: 20px;
  font-size: 16px;
}
.pagenation li {
  font-family: var(--font-main);
  font-weight: var(--font-medium);
  color: var(--color-pagenation-def-txt);
  line-height: 1;
  width: 30px;
  height: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagenation a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 7px 0;
}
.pagenation .current::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 20px;
  height: 2px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-pagenation-border);
}

.tag-change {
  --color-tag-change-def-txt: #b3b3b3;
  --color-tag-change-def-bg: #eee;
  --color-tag-change-current-txt: var(--color-white);
  --color-tag-change-current-bg: var(--color-accent-100);
  --tag-change-border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 40px;
}
.tag-change li {
  font-family: var(--font-main);
  font-weight: var(--font-medium);
  font-size: 16px;
  line-height: 1;
  letter-spacing: auto;
  border-radius: var(--tag-change-border-radius);
  color: var(--color-tag-change-def-txt);
  background: var(--color-tag-change-def-bg);
}
.tag-change li a {
  display: block;
  padding: 12px 26px;
}
.tag-change .current {
  color: var(--color-tag-change-current-txt);
  background: var(--color-tag-change-current-bg);
}
.tag-change a {
  display: block;
  width: 100%;
  text-align: center;
}

.page-btn {
  --color-page-btn-txt: var(--color-txt-100);
  --color-page-btn-border: var(--color-main-200);
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 72px;
  padding-top: 48px;
  text-align: center;
  border-top: 1px solid var(--color-page-btn-border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.page-btn .left,
.page-btn .mid,
.page-btn .right {
  font-size: 16px;
  font-family: var(--font-main);
  color: var(--color-page-btn-txt);
  font-weight: var(--font-medium);
}
.page-btn .left {
  position: relative;
  z-index: 1;
  max-width: 33%;
  margin-right: auto;
}
.page-btn .left a {
  display: block;
  position: relative;
  z-index: 1;
  padding-left: 30px;
}
.page-btn .left a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 6px;
  border-bottom: 1px solid var(--color-page-btn-txt);
  border-right: 1px solid var(--color-page-btn-txt);
  -webkit-transform: scale(-1, 1) skew(30deg) translateY(-50%);
          transform: scale(-1, 1) skew(30deg) translateY(-50%);
}
.page-btn .right {
  position: relative;
  z-index: 1;
  max-width: 33%;
  margin-left: auto;
}
.page-btn .right a {
  display: block;
  position: relative;
  z-index: 1;
  padding-right: 30px;
}
.page-btn .right a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 18px;
  height: 6px;
  border-bottom: 1px solid var(--color-page-btn-txt);
  border-right: 1px solid var(--color-page-btn-txt);
  -webkit-transform: skew(30deg) translateY(-50%);
          transform: skew(30deg) translateY(-50%);
}
.page-btn .mid {
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
}

.detail {
  --color-news-detail: var(--color-txt-100);
}
.detail-ttl {
  font-size: 28px;
  color: var(--color-news-detail);
  margin-bottom: 20px;
  line-height: 1.5;
}

/*common ---------------------------------------------*/
.cmn-txt-mb {
  margin-bottom: 40px;
}

/*header ---------------------------------------------*/
.header {
  height: 120px;
  width: 100%;
  z-index: 10;
  overflow: clip;
}
.header-container {
  height: 120px;
  width: 100%;
  z-index: 10;
  overflow: clip;
  position: fixed;
  left: 0;
  top: 0;
}
.header-body {
  width: 100%;
  height: 80px;
  padding-top: 12px;
  padding-left: 29px;
  padding-right: 20px;
  background: var(--color-white);
}
.header-nav {
  width: 100%;
  height: 40px;
  background: var(--color-txt-100);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header .nav-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.header .nav-item {
  position: relative;
  z-index: 1;
}
.header .nav-item:not(:last-child) {
  padding-right: 35.5px;
}
.header .nav-item:not(:last-child)::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 11/18;
  width: 11px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/header-bdr.png) no-repeat;
  background-size: contain;
}
.header .nav-item:not(:first-child) {
  padding-left: 35.5px;
}
.header .nav-item a {
  display: block;
}
.header .current {
  color: var(--color-accent-200);
}
.header .tel-area {
  margin-bottom: 10px;
}
.header .tel-svg {
  display: block;
  margin-left: 9px;
}
.header-address {
  gap: 20px;
}
.header-address .bg {
  display: inline-block;
  color: var(--color-white);
  background: var(--color-main-200);
  padding: 2.5px 4px 4.5px;
  margin-right: 10px;
}

/*mv ---------------------------------------------*/
.mv {
  --mv-height: 900px;
  height: var(--mv-height);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.mv-wrap {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  position: relative;
  z-index: 1;
}
.mv-catch {
  position: absolute;
  z-index: 2;
  top: 220px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.mv-link {
  display: block;
  width: 50%;
  height: 100%;
  position: relative;
}
.mv-link:nth-of-type(1) {
  background: url(/img/top/mv-img01.png) no-repeat center center/cover;
}
.mv-link:nth-of-type(1) .mv-link-ttl {
  color: var(--color-white);
  background: url(/img/common/pat/bg_blue.png);
  -webkit-box-shadow: 0px -5px 10px 0 rgba(18, 21, 36, 0.3);
          box-shadow: 0px -5px 10px 0 rgba(18, 21, 36, 0.3);
}
.mv-link:nth-of-type(1) .mv-link-ttl::before {
  background: url(/img/common/arw-white.png) no-repeat;
  background-size: contain;
}
.mv-link:nth-of-type(1) .mv-link-ttl::after {
  background: url(/img/top/mv-ttl-deco01.png) no-repeat;
  background-size: contain;
}
.mv-link:nth-of-type(2) {
  background: url(/img/top/mv-img02.png) no-repeat center center/cover;
}
.mv-link:nth-of-type(2) .mv-link-ttl {
  color: var(--color-accent-200);
  background: url(/img/common/pat/bg\(120×70\).png);
  -webkit-box-shadow: 0px -5px 10px 0 rgba(18, 21, 36, 0.3);
          box-shadow: 0px -5px 10px 0 rgba(18, 21, 36, 0.3);
}
.mv-link:nth-of-type(2) .mv-link-ttl::before {
  background: url(/img/common/arw-accent.png) no-repeat;
  background-size: contain;
}
.mv-link:nth-of-type(2) .mv-link-ttl::after {
  background: url(/img/top/mv-ttl-deco02.png) no-repeat;
  background-size: contain;
}
.mv-link-ttl {
  position: absolute;
  width: 100%;
  height: 120px;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mv-link-ttl::before {
  content: "";
  position: absolute;
  aspect-ratio: 39/11;
  width: 39px;
  right: 120px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.mv-link-ttl::after {
  content: "";
  position: absolute;
  z-index: 1;
  aspect-ratio: 123/120;
  width: 123px;
  right: 0;
  top: 0;
}

/*side-btn ---------------------------------------------*/
.side-btn {
  overflow: hidden;
  z-index: 99;
  position: fixed;
  right: 0px;
  bottom: 30px;
  width: 60px;
  height: 380px;
  background: url(/img/common/side-btn-base-sm.png) no-repeat center center/cover;
}
.side-btn-wrapper {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 20px;
  padding-bottom: 20px;
}

/*top-greeting ---------------------------------------------*/
.top-greeting {
  padding: var(--cmn-pd-md) 0;
  padding-top: var(--cmn-pd-xs);
  background: url(/img/top/top-greeting-bg.png) no-repeat center center/cover;
}
.top-greeting .inner {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
}
.top-greeting-ttl {
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-greeting-ttl .ttl-deco {
  display: block;
}
.top-greeting-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 70px;
  margin-top: 7.5px;
  text-transform: uppercase;
}
.top-greeting-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 50px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.top-greeting-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 50px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.top-greeting-ttl .ttl-sub::before {
  background: url(/img/common/ttl-deco-left.png) no-repeat;
  background-size: contain;
}
.top-greeting-ttl .ttl-sub::after {
  background: url(/img/common/ttl-deco-right.png) no-repeat;
  background-size: contain;
}
.top-greeting-txt {
  width: 100%;
  text-align: center;
  background: var(--color-white);
  padding: 48px 100px;
}
.top-greeting .bdr-top,
.top-greeting .bdr-bottom {
  display: inline-block;
  width: 100%;
  position: relative;
  z-index: 1;
}
.top-greeting .bdr-top::before,
.top-greeting .bdr-bottom::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  max-width: calc(100% - 40px);
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/common/deco-border-m01.png) no-repeat;
  background-size: contain;
}
.top-greeting .bdr-top::after,
.top-greeting .bdr-bottom::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 7px;
  background: url(/img/common/deco-border-l01.png) no-repeat left top, url(/img/common/deco-border-r01.png) no-repeat right top;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  background-size: contain;
}
.top-greeting .bdr-top {
  padding-bottom: 7px;
}
.top-greeting .bdr-top::before {
  top: 0;
}
.top-greeting .bdr-bottom {
  padding-top: 7px;
}
.top-greeting .bdr-bottom::before {
  bottom: 0;
}

/*top-feature ---------------------------------------------*/
.top-feature {
  padding: var(--cmn-pd-md) 0;
  padding-top: var(--cmn-pd-xs);
  overflow: hidden;
  background: url(/img/common/pat/bg_stripe\(5×1\).png);
  position: relative;
  z-index: 1;
}
.top-feature::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 597/415;
  width: 597px;
  right: 0;
  bottom: 0;
  background: url(/img/top/top-feature-deco.png) no-repeat;
  background-size: contain;
}
.top-feature-body {
  width: 100%;
  max-width: 520px;
}
.top-feature-ttl {
  color: var(--color-white);
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-feature-ttl .ttl-deco {
  display: block;
}
.top-feature-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 70px;
  margin-top: 7.5px;
  text-transform: uppercase;
  color: rgb(var(--color-accent-200-rgb)/0.92);
}
.top-feature-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 50px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.top-feature-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 50px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.top-feature-ttl .ttl-sub::before {
  background: url(/img/common/ttl-deco-left-white.png) no-repeat;
  background-size: contain;
}
.top-feature-ttl .ttl-sub::after {
  background: url(/img/common/ttl-deco-right-white.png) no-repeat;
  background-size: contain;
}
.top-feature-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 15px;
}
.top-feature-item {
  width: 100%;
  padding: 7px 0;
  min-height: 85px;
  text-align: center;
  background: var(--color-txt-100);
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top-feature-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 25/80;
  width: 25px;
  left: 0;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(/img/common/deco-l.png) no-repeat;
  background-size: contain;
}
.top-feature-item::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 25/80;
  width: 25px;
  right: 0;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  background: url(/img/common/deco-r.png) no-repeat;
  background-size: contain;
}
.top-feature-item .num {
  position: absolute;
  z-index: -1;
  right: 25px;
  top: calc(50% - 7px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: var(--font-en);
  font-size: 60px;
  line-height: 1;
  letter-spacing: normal;
  font-weight: var(--font-normal);
  color: var(--color-main-100);
}
.top-feature-subttl .color {
  color: var(--color-accent-200);
}
.top-feature-img {
  position: absolute;
  z-index: -1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  top: 100px;
  right: calc(50% - 660px);
  width: 600px;
}
.top-feature-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*top-service ---------------------------------------------*/
.top-service {
  padding: var(--cmn-pd-md) 0;
  padding-top: var(--cmn-pd-xs);
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: url(/img/top/top-service-bg.png) no-repeat center center/cover;
}
.top-service-ttl {
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-service-ttl .ttl-deco {
  display: block;
}
.top-service-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 70px;
  margin-top: 7.5px;
  text-transform: uppercase;
}
.top-service-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 50px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.top-service-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 50px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.top-service-ttl .ttl-sub::before {
  background: url(/img/common/ttl-deco-left.png) no-repeat;
  background-size: contain;
}
.top-service-ttl .ttl-sub::after {
  background: url(/img/common/ttl-deco-right.png) no-repeat;
  background-size: contain;
}
.top-service-list {
  width: 100%;
  position: relative;
  z-index: 1;
}
.top-service-item {
  width: 100%;
  height: 545px;
  position: relative;
  z-index: 1;
}
.top-service-item:nth-of-type(odd) {
  margin-bottom: 80px;
}
.top-service-item:nth-of-type(odd) .top-service-txtarea {
  margin-left: auto;
}
.top-service-item:nth-of-type(odd) .top-service-txtarea::before {
  content: "";
  position: absolute;
  z-index: 2;
  aspect-ratio: 121/127;
  width: 121px;
  bottom: 375px;
  right: 510px;
  translate: 100% 100%;
  background: url(/img/top/top-service-deco-lt.png) no-repeat;
  background-size: contain;
}
.top-service-item:nth-of-type(odd) .top-service-txtarea::after {
  content: "";
  position: absolute;
  z-index: 2;
  aspect-ratio: 121/127;
  width: 121px;
  bottom: 10px;
  right: 10px;
  background: url(/img/top/top-service-deco-rb.png) no-repeat;
  background-size: contain;
}
.top-service-item:nth-of-type(odd) .top-service-body {
  background: rgb(var(--color-main-500-rgb)/0.6);
  outline-offset: -10px;
  outline: 1px solid var(--color-main-300);
}
.top-service-item:nth-of-type(odd) .top-service-body::before {
  background: url(/img/common/arw-blue.png) no-repeat;
  background-size: contain;
}
.top-service-item:nth-of-type(odd) .top-service-body::after {
  background: url(/img/common/pat/box_lightblue\(120×70\).png);
  background-size: contain;
}
.top-service-item:nth-of-type(odd) .top-service-subttl {
  color: var(--color-main-300);
}
.top-service-item:nth-of-type(odd) .top-service-subttl::before {
  background: url(/img/common/deco-bdr02-blue.png) no-repeat;
  background-size: contain;
}
.top-service-item:nth-of-type(odd) .top-service-img {
  right: calc(50% - 140px);
}
.top-service-item:nth-of-type(even) .top-service-txtarea::before {
  content: "";
  position: absolute;
  z-index: 2;
  aspect-ratio: 138/131;
  width: 138px;
  left: -25px;
  top: -105px;
  background: url(/img/common/deco-cat.png) no-repeat;
  background-size: contain;
}
.top-service-item:nth-of-type(even) .top-service-txtarea::after {
  content: "";
  position: absolute;
  z-index: 2;
  aspect-ratio: 161/183;
  width: 161px;
  left: 30px;
  top: 30px;
  background: url(/img/common/deco-moon02.png) no-repeat;
  background-size: contain;
}
.top-service-item:nth-of-type(even) .top-service-img {
  left: calc(50% - 140px);
}
.top-service-item:nth-of-type(even) .top-service-body {
  background: rgb(var(--color-txt-100-rgb)/0.9);
  outline-offset: -10px;
  outline: 1px solid var(--color-accent-200);
}
.top-service-item:nth-of-type(even) .top-service-body::before {
  background: url(/img/common/arw-accent.png) no-repeat;
  background-size: contain;
}
.top-service-item:nth-of-type(even) .top-service-body::after {
  background: url(/img/common/pat/bg\(120×70\).png);
  background-size: contain;
}
.top-service-item:nth-of-type(even) .top-service-subttl {
  color: var(--color-white);
}
.top-service-item:nth-of-type(even) .top-service-subttl::before {
  background: url(/img/common/deco-bdr02.png) no-repeat;
  background-size: contain;
}
.top-service-item:nth-of-type(even) .top-service-txt {
  color: var(--color-white);
}
.top-service-txtarea {
  width: 100%;
  max-width: 520px;
  height: 385px;
  margin-top: 160px;
  position: relative;
  z-index: 1;
}
.top-service-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  padding-top: 65px;
  padding: 65px 20px 50px;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 10px 15px 0px rgb(var(--color-txt-100-rgb)/0.15);
          box-shadow: 0px 10px 15px 0px rgb(var(--color-txt-100-rgb)/0.15);
}
.top-service-body::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 28/7;
  width: 28px;
  right: 20px;
  bottom: 20px;
}
.top-service-body::after {
  content: "";
  position: absolute;
  z-index: -2;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  inset: 0;
  margin: auto;
  -webkit-box-shadow: 0px 0px 10px 0px rgb(var(--color-txt-100-rgb)/0.15);
          box-shadow: 0px 0px 10px 0px rgb(var(--color-txt-100-rgb)/0.15);
}
.top-service-subttl {
  width: 100%;
  text-align: center;
  padding-bottom: 43px;
  position: relative;
  z-index: 1;
}
.top-service-subttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 165/20;
  width: 165px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}
.top-service-txt {
  text-align: center;
  padding-top: 25px;
}
.top-service-img {
  position: absolute;
  z-index: -1;
  top: 0;
  width: max(1010px, 50vw + 140px);
  height: 480px;
}
.top-service-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*top-profile ---------------------------------------------*/
.top-profile {
  padding: var(--cmn-pd-md) 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: var(--color-main-200);
}
.top-profile::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 597/416;
  width: 597px;
  left: 0;
  top: 0;
  background: url(/img/top/top-profile-deco.png) no-repeat;
  background-size: contain;
}
.top-profile-ttl {
  color: var(--color-white);
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-profile-ttl .ttl-deco {
  display: block;
}
.top-profile-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 70px;
  margin-top: 7.5px;
  text-transform: uppercase;
  color: rgb(var(--color-accent-200-rgb)/0.92);
}
.top-profile-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 50px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.top-profile-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 50px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.top-profile-ttl .ttl-sub::before {
  background: url(/img/common/ttl-deco-left-white.png) no-repeat;
  background-size: contain;
}
.top-profile-ttl .ttl-sub::after {
  background: url(/img/common/ttl-deco-right-white.png) no-repeat;
  background-size: contain;
}
.top-profile-body {
  width: 100%;
}
.top-profile-txtarea {
  width: 100%;
}
.top-profile-name {
  color: var(--color-white);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  padding-left: 31px;
}
.top-profile-name::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 19/18;
  width: 19px;
  left: 0;
  top: calc(50% - 2px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/deco-dot.png) no-repeat;
  background-size: contain;
}
.top-profile-name .furigana {
  display: inline-block;
  font-weight: var(--font-medium);
  color: var(--color-white);
  font-family: var(--font-accent);
}
.top-profile-list {
  width: 100%;
  gap: 5px;
  position: relative;
  z-index: 1;
}
.top-profile-list::before {
  content: "";
  position: absolute;
  z-index: 2;
  aspect-ratio: 113/114;
  width: 113px;
  right: -8px;
  top: -94px;
  background: url(/img/common/deco-cat02.png) no-repeat;
  background-size: contain;
}
.top-profile-item {
  width: 100%;
  background: url(/img/common/pat/box\(3×1\).png);
}
.top-profile-term {
  font-weight: var(--font-medium);
  color: var(--color-main-300);
  width: 160px;
  padding: 12.5px 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
}
.top-profile-definition {
  width: 100%;
  color: var(--color-txt-100);
  padding: 12.5px 0px;
  padding-right: 40px;
}
.top-profile-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-right: 90px;
}
.top-profile-img::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 10px;
  top: 10px;
  background: var(--color-txt-100);
  opacity: 0.6;
}
.top-profile-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*top-contact ---------------------------------------------*/
.top-contact {
  padding: var(--cmn-pd-md) 0;
  background: url(/img/top/top-contact-bg.png) no-repeat center center/cover;
  overflow: hidden;
}
.top-contact-wrap {
  width: 100%;
  background: rgb(var(--color-txt-100-rgb)/0.92);
  position: relative;
  z-index: 1;
}
.top-contact-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(/img/common/deco-corner-lt.png) no-repeat left 15px top 15px, url(/img/common/deco-corner-lb.png) no-repeat left 15px bottom 15px, url(/img/common/deco-corner-rt.png) no-repeat right 15px top 15px, url(/img/common/deco-corner-rb.png) no-repeat right 15px bottom 15px;
}
.top-contact-body {
  z-index: 2;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 30px 0 rgba(18, 21, 36, 0.2);
          box-shadow: 0 0 30px 0 rgba(18, 21, 36, 0.2);
  padding: 87.5px 110px 100px;
  outline: 1px solid var(--color-accent-200);
  outline-offset: -10px;
}
.top-contact-ttl {
  color: var(--color-white);
  margin-bottom: var(--ttl-mb-sm);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-contact-ttl .ttl-deco {
  display: block;
}
.top-contact-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 70px;
  margin-top: 7.5px;
  text-transform: uppercase;
  color: rgb(var(--color-accent-200-rgb)/0.92);
}
.top-contact-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 50px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.top-contact-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 50px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.top-contact-ttl .ttl-sub::before {
  background: url(/img/common/ttl-deco-left-white.png) no-repeat;
  background-size: contain;
}
.top-contact-ttl .ttl-sub::after {
  background: url(/img/common/ttl-deco-right-white.png) no-repeat;
  background-size: contain;
}
.top-contact-txtarea {
  width: 100%;
  margin-bottom: 20px;
}
.top-contact-subttl {
  width: 100%;
  padding: 20px;
  background: #ddd;
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
  text-align: center;
}
.top-contact-subttl .num {
  display: inline-block;
  background: darkcyan;
  padding: 3px 12px;
  margin-right: 20px;
}
.top-contact-txt {
  color: var(--color-white);
  text-align: center;
  margin-bottom: 37px;
}
.top-contact-links {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}
.top-contact-info {
  gap: 40px;
}
.top-contact .tel-white {
  margin-bottom: 14px;
}
.top-contact-address {
  color: var(--color-white);
  gap: 5px;
}
.top-contact-address .bg {
  display: inline-block;
  color: var(--color-txt-100);
  background: var(--color-accent-200);
  width: 80px;
  padding: 3.5px 0px 5.5px;
  text-align: center;
  margin-right: 9px;
}

/*top-links ---------------------------------------------*/
.top-links {
  padding: var(--cmn-pd-md) 0;
  overflow: hidden;
}
.top-links .inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}
.top-links-list {
  width: 100%;
  gap: 80px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top-links-item {
  width: 100%;
  max-width: 620px;
  height: 340px;
  position: relative;
  z-index: 1;
  background: url(/img/common/pat/box_blue\(3×1\).png);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top-links-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(/img/common/deco-corner-lt02.png) no-repeat left 20px top 20px, url(/img/common/deco-corner-lb02.png) no-repeat left 20px bottom 20px, url(/img/common/deco-corner-rt02.png) no-repeat right 20px top 20px, url(/img/common/deco-corner-rb02.png) no-repeat right 20px bottom 20px;
}
.top-links-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--color-accent-200)), to(var(--color-accent-200))), -webkit-gradient(linear, left top, left bottom, from(var(--color-accent-200)), to(var(--color-accent-200)));
  background-image: linear-gradient(var(--color-accent-200), var(--color-accent-200)), linear-gradient(var(--color-accent-200), var(--color-accent-200));
  background-repeat: no-repeat;
  background-size: calc(100% - 170px) 1px, calc(100% - 170px) 1px;
  background-position: center top 29px, center bottom 29px;
}
.top-links-item:nth-of-type(1) .top-links-box::before {
  background: url(/img/top/top-links-bg01.png) no-repeat center center/cover;
}
.top-links-item:nth-of-type(2) .top-links-box::before {
  background: url(/img/top/top-links-bg02.png) no-repeat center center/cover;
}
.top-links-box {
  display: block;
  width: calc(100% - 80px);
  height: calc(100% - 80px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
}
.top-links-box::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.top-links-box::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 28/7;
  width: 28px;
  right: 30px;
  bottom: 30px;
  background: url(/img/common/arw-white.png) no-repeat;
  background-size: contain;
}
.top-links-ttl {
  position: relative;
  z-index: 1;
  padding-bottom: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-links-ttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 42/15;
  width: 42px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/common/deco-kirakira-b.png) no-repeat;
  background-size: contain;
}
.top-links-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  font-family: var(--font-sub);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: var(--font-medium);
  color: var(--color-white);
  text-transform: uppercase;
  padding: 0 34px;
}
.top-links-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 19/18;
  width: 19px;
  left: 0;
  top: calc(50% + 1px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/deco-dot02-l.png) no-repeat;
  background-size: contain;
}
.top-links-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 19/18;
  width: 19px;
  right: 0;
  top: calc(50% + 1px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/deco-dot02-r.png) no-repeat;
  background-size: contain;
}

/*news ---------------------------------------------*/
.top-news {
  padding: 100px 0;
  overflow: hidden;
  background: url(/img/common/pat/bg\(300×175\).png);
}
.top-news-heading {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 55px;
  margin-top: 57.5px;
}
.top-news-ttl {
  color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 136px;
  position: relative;
  z-index: 1;
}
.top-news-ttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 330/319;
  width: 330px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(/img/common/top-news-ttl-deco.png) no-repeat;
}
.top-news-ttl .ttl-deco {
  display: block;
}
.top-news-ttl .ttl-sub {
  display: inline-block;
  margin-top: 7.5px;
  color: rgb(var(--color-accent-200-rgb)/0.92);
  text-transform: uppercase;
}
.top-news-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 10px;
}
.top-news-item {
  width: 100%;
  position: relative;
  z-index: 1;
}
.top-news-item-body {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.top-news-item-details {
  width: 100%;
}
.top-news-item-img {
  overflow: hidden;
  position: relative;
  z-index: 1;
  aspect-ratio: 120/120;
  width: 120px;
  margin-right: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.top-news-item-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.top-news-item-ttl {
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin-bottom: 13px;
}
.top-news-item .date {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 11px;
}
.top-news-item .tag-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-left: auto;
}
.top-news-item .tag {
  display: inline-block;
  padding: 2px 10px 4px;
  border: 1px solid var(--color-main-400);
}

/*top-access ---------------------------------------------*/
.top-access {
  padding: var(--cmn-pd-md) 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.top-access::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 597/416;
  width: 597px;
  right: 0;
  top: 0;
  background: url(/img/top/top-access-deco.png) no-repeat;
  background-size: contain;
}
.top-access-ttl {
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-access-ttl .ttl-deco {
  display: block;
}
.top-access-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 70px;
  margin-top: 7.5px;
  text-transform: uppercase;
}
.top-access-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 50px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.top-access-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 50px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.top-access-ttl .ttl-sub::before {
  background: url(/img/common/ttl-deco-left.png) no-repeat;
  background-size: contain;
}
.top-access-ttl .ttl-sub::after {
  background: url(/img/common/ttl-deco-right.png) no-repeat;
  background-size: contain;
}
.top-access .cont-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.top-access .table-wrapper {
  width: 100%;
}
.top-access-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
  translate: 0 -5px;
}
.top-access-row {
  width: 100%;
}
.top-access-row:not(:last-child) {
  margin-bottom: 5px;
}
.top-access-header {
  font-weight: var(--font-medium);
  color: var(--color-accent-200);
  width: 160px;
  padding: 12.5px 2%;
  padding-left: 40px;
  text-align: left;
  vertical-align: middle;
  background: url(/img/common/pat/box_blue\(3×1\).png);
}
.top-access-data {
  font-weight: var(--font-medium);
  color: var(--color-white);
  padding: 12.5px 0px;
  padding-right: 45px;
  background: url(/img/common/pat/box_blue\(3×1\).png);
}
.top-access-data.tel-td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-access-data .tel-svg {
  display: block;
  margin-left: 20px;
  margin-top: 3px;
}
.top-access .waku {
  width: 380px;
  height: 380px;
  padding: 10px;
  border: 1px solid var(--color-main-300);
  margin-left: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.top-access .waku::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 148/116;
  width: 148px;
  right: 0;
  bottom: 0;
  translate: 120px 80px;
  background: url(/img/common/deco-cat03.png) no-repeat;
  background-size: contain;
}
.top-access iframe {
  display: block;
  border: none;
  width: 100%;
  height: 100%;
}

/*footer ---------------------------------------------*/
.footer {
  overflow: hidden;
  background: url(/img/common/pat/bg\(120×70\).png);
}
.footer-contents {
  padding: var(--cmn-pd-md) 0;
}
.footer-side {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer-logo {
  margin-bottom: 39px;
}
.footer-info {
  padding: 30px;
  background: var(--color-white);
}
.footer-info-top {
  margin-bottom: 23px;
}
.footer-info .tel-area {
  margin-right: 39px;
}
.footer-info .tel-lg {
  margin-bottom: 14px;
}
.footer-detail {
  gap: 5px;
}
.footer-detail .bg {
  display: inline-block;
  color: var(--color-white);
  background: var(--color-main-200);
  width: 80px;
  padding: 3.5px 0px 5.5px;
  margin-right: 9px;
  text-align: center;
}
.footer-address {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-left: 25px;
}
.footer-address::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 15/21;
  width: 15px;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  background: url(/img/common/mappin-icon.png) no-repeat;
  background-size: contain;
}
.footer .nav-list {
  display: grid;
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  gap: 30px 80px;
}
.footer .nav-item a {
  display: block;
}
.footer .copy-wrapper {
  width: 100%;
  padding: 10px 0;
  background: var(--color-accent-200);
  text-align: center;
  font-family: var(--font-main);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
}

/*==========================================
sv
===========================================*/
.sv {
  --sv-height: 450px;
  height: var(--sv-height);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.sv-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.sv-img {
  width: 100%;
  height: 100%;
}
.sv-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sv-ttl {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sv-ttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 600/240;
  width: 600px;
  inset: 0;
  margin: auto;
  background: url(/img/common/sv-ttl-deco.png) no-repeat;
  background-size: contain;
}

/*==========================================
relaxation
===========================================*/
/*menu ---------------------------------------------*/
.menu {
  padding: var(--cmn-pd-md) 0;
  padding-top: 150px;
  overflow: hidden;
  background: url(/img/relaxation/menu-bg-top.png) no-repeat center top/100%;
}
.menu-ttl {
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.menu-ttl .ttl-deco {
  display: block;
}
.menu-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 70px;
  margin-top: 7.5px;
  text-transform: uppercase;
}
.menu-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 50px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.menu-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 50px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.menu-ttl .ttl-sub::before {
  background: url(/img/common/ttl-deco-left.png) no-repeat;
  background-size: contain;
}
.menu-ttl .ttl-sub::after {
  background: url(/img/common/ttl-deco-right.png) no-repeat;
  background-size: contain;
}
.menu-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 73px;
}
.menu-item {
  width: 100%;
}
.menu-subttl {
  width: 100%;
  padding-bottom: 14px;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--color-main-300);
}
.menu-subttl .deco {
  display: inline-block;
  padding-left: 35px;
  position: relative;
  z-index: 1;
}
.menu-subttl .deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 19/18;
  width: 19px;
  left: 0;
  top: 13px;
  background: url(/img/common/deco-dot-blue.png) no-repeat;
  background-size: contain;
}
.menu-body {
  width: 100%;
  padding-top: 20px;
}
.menu-side {
  width: 100%;
  padding-top: 10px;
}
.menu-boxes {
  width: 100%;
  gap: 60px;
}
.menu-box {
  width: 100%;
}
.menu-box:last-child p {
  padding-bottom: 53px;
  border-bottom: 1px solid var(--color-border-100);
}
.menu-name {
  width: 100%;
  padding: 20.5px 40px 24.5px;
  border-top: 1px solid var(--color-main-300);
  border-bottom: 1px solid var(--color-main-300);
  background: url(/img/common/pat/box_lightblue\(120×70\).png);
  margin-bottom: 20px;
}
.menu-txt {
  width: 100%;
  margin-top: 2px;
  padding-left: 10px;
}
.menu-price {
  width: 100%;
  gap: 30px;
  padding-top: 24px;
}
.menu .price-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--font-accent);
  font-size: 18px;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  font-weight: var(--font-semibold);
  text-align: left;
}
.menu .price-box .time {
  width: 220px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: var(--color-main-300);
}
.menu .price-box .price {
  width: 100%;
  color: var(--color-txt-100);
}
.menu-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 340/340;
  margin-right: 40px;
  width: 100%;
  max-width: 340px;
  position: relative;
  z-index: 1;
}
.menu-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.menu .notice {
  width: 100%;
  line-height: 1;
  text-align: center;
  margin-top: 100px;
  padding-top: 43px;
  position: relative;
  z-index: 1;
}
.menu .notice::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 1020px;
  height: 1px;
  left: 50%;
  top: 3px;
  translate: -50% 0;
  background: url(/img/common/deco-border-m02.png) no-repeat;
  background-size: contain;
}
.menu .notice::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 7px;
  left: 0;
  top: 0;
  background: url(/img/common/deco-border-l01.png) no-repeat left top/auto, url(/img/common/deco-border-r01.png) no-repeat right top/auto;
}

/*==========================================
fortune-telling
===========================================*/
/*fortune-telling-menu ---------------------------------------------*/
.fortune-telling-menu {
  padding: var(--cmn-pd-md) 0;
  padding-top: 150px;
  overflow: hidden;
  background: url(/img/relaxation/menu-bg-top.png) no-repeat center top/100%;
}
.fortune-telling-menu-ttl {
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.fortune-telling-menu-ttl .ttl-deco {
  display: block;
}
.fortune-telling-menu-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 70px;
  margin-top: 7.5px;
  text-transform: uppercase;
}
.fortune-telling-menu-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 50px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.fortune-telling-menu-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 50px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.fortune-telling-menu-ttl .ttl-sub::before {
  background: url(/img/common/ttl-deco-left.png) no-repeat;
  background-size: contain;
}
.fortune-telling-menu-ttl .ttl-sub::after {
  background: url(/img/common/ttl-deco-right.png) no-repeat;
  background-size: contain;
}
.fortune-telling-menu-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 73px;
}
.fortune-telling-menu-item {
  width: 100%;
}
.fortune-telling-menu-subttl {
  width: 100%;
  color: var(--color-main-200);
  padding-bottom: 14px;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--color-main-200);
}
.fortune-telling-menu-subttl .deco {
  display: inline-block;
  padding-left: 35px;
  position: relative;
  z-index: 1;
}
.fortune-telling-menu-subttl .deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 19/18;
  width: 19px;
  left: 0;
  top: 13px;
  background: url(/img/common/deco-dot.png) no-repeat;
  background-size: contain;
}
.fortune-telling-menu-body {
  width: 100%;
  padding-top: 20px;
}
.fortune-telling-menu-side {
  width: 100%;
  padding-top: 10px;
}
.fortune-telling-menu-boxes {
  width: 100%;
  gap: 60px;
}
.fortune-telling-menu-box {
  width: 100%;
}
.fortune-telling-menu-box:last-child p {
  padding-bottom: 53px;
}
.fortune-telling-menu-name {
  width: 100%;
  color: var(--color-white);
  padding: 20.5px 40px 24.5px;
  background: url(/img/common/pat/bg\(120×70\).png);
  margin-bottom: 20px;
}
.fortune-telling-menu-txt {
  margin-top: 2px;
  padding-left: 10px;
}
.fortune-telling-menu-price {
  width: 100%;
}
.fortune-telling-menu .price-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--font-accent);
  font-size: 18px;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  font-weight: var(--font-semibold);
  text-align: left;
  padding: 21.5px 30px 23.5px;
  background: var(--color-main-200);
}
.fortune-telling-menu .price-box .time {
  width: 220px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: var(--color-accent-200);
}
.fortune-telling-menu .price-box .price {
  width: 100%;
  color: var(--color-white);
}
.fortune-telling-menu-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 340/340;
  margin-right: 40px;
  width: 100%;
  max-width: 340px;
  position: relative;
  z-index: 1;
}
.fortune-telling-menu-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fortune-telling-menu .notice {
  width: 100%;
  line-height: 1;
  text-align: center;
  margin-top: 100px;
  padding-top: 43px;
  position: relative;
  z-index: 1;
}
.fortune-telling-menu .notice::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 1020px;
  height: 1px;
  left: 50%;
  top: 3px;
  translate: -50% 0;
  background: url(/img/common/deco-border-m02.png) no-repeat;
  background-size: contain;
}
.fortune-telling-menu .notice::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 7px;
  left: 0;
  top: 0;
  background: url(/img/common/deco-border-l01.png) no-repeat left top/auto, url(/img/common/deco-border-r01.png) no-repeat right top/auto;
}

/*==========================================
school
===========================================*/
/*tarot ---------------------------------------------*/
.tarot {
  padding: var(--cmn-pd-md) 0;
  background: url(/img/common/pat/bg_stripe\(5×1\).png);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.tarot::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 597/415;
  width: 597px;
  right: 0;
  bottom: 0;
  background: url(/img/school/tarot-deco.png) no-repeat;
  background-size: contain;
}
.tarot-ttl {
  color: var(--color-white);
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tarot-ttl .ttl-deco {
  display: block;
}
.tarot-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 70px;
  margin-top: 7.5px;
  text-transform: uppercase;
  color: rgb(var(--color-accent-200-rgb)/0.92);
}
.tarot-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 50px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.tarot-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 50px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.tarot-ttl .ttl-sub::before {
  background: url(/img/common/ttl-deco-left.png) no-repeat;
  background-size: contain;
}
.tarot-ttl .ttl-sub::after {
  background: url(/img/common/ttl-deco-right.png) no-repeat;
  background-size: contain;
}
.tarot-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 78px;
}
.tarot-item {
  width: 100%;
}
.tarot-subttl {
  width: 100%;
  color: var(--color-white);
  padding-bottom: 13px;
  border-bottom: 1px solid var(--color-accent-200);
}
.tarot-subttl .deco {
  display: inline-block;
  padding-left: 31px;
  position: relative;
  z-index: 1;
}
.tarot-subttl .deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 19/18;
  width: 19px;
  left: 0;
  top: 13px;
  background: url(/img/common/deco-dot.png) no-repeat;
  background-size: contain;
}
.tarot-body {
  width: 100%;
  padding-top: 20px;
}
.tarot-side {
  width: 100%;
  padding-top: 10px;
  gap: 10px;
}
.tarot-box {
  width: 100%;
  padding: 23px 40px;
  background: var(--color-txt-100);
}
.tarot-name {
  width: 100%;
  max-width: 110px;
  padding-right: 10px;
  font-family: var(--font-accent);
  font-size: 18px;
  line-height: 1.9444444444;
  letter-spacing: 0.05em;
  font-weight: var(--font-medium);
  color: var(--color-accent-200);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.tarot-contents {
  width: 100%;
  color: var(--color-white);
  padding-left: 19px;
  position: relative;
  z-index: 1;
}
.tarot-contents::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 1px;
  height: calc(100% - 10px);
  left: 0;
  top: 50%;
  translate: 0 -50%;
  background: var(--color-accent-200);
}
.tarot-contents .cmn-txt-mb {
  margin-bottom: 30px;
}
.tarot-contents .cmn-txt-mb-lg {
  margin-bottom: 60px;
}
.tarot-contents .lg {
  font-size: 20px;
}
.tarot .dot {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-left: 1em;
}
.tarot .dot::before {
  content: "・";
  position: absolute;
  z-index: -1;
  width: 1em;
  left: 0;
  top: 0;
  color: var(--color-white);
}
.tarot-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 40px;
  aspect-ratio: 440/440;
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 1;
}
.tarot-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*chiropractic ---------------------------------------------*/
.chiropractic {
  padding: var(--cmn-pd-md) 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.chiropractic::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 597/415;
  width: 597px;
}
.chiropractic-ttl {
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.chiropractic-ttl .ttl-deco {
  display: block;
}
.chiropractic-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 70px;
  margin-top: 7.5px;
  text-transform: uppercase;
}
.chiropractic-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 50px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.chiropractic-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 50px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.chiropractic-ttl .ttl-sub::before {
  background: url(/img/common/ttl-deco-left.png) no-repeat;
  background-size: contain;
}
.chiropractic-ttl .ttl-sub::after {
  background: url(/img/common/ttl-deco-right.png) no-repeat;
  background-size: contain;
}
.chiropractic-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 78px;
}
.chiropractic-item {
  width: 100%;
}
.chiropractic-body {
  width: 100%;
  padding-top: 20px;
}
.chiropractic-side {
  width: 100%;
  padding-top: 10px;
  gap: 10px;
}
.chiropractic-box {
  width: 100%;
  padding: 23px 40px;
  background: url(/img/common/pat/box_lightblue\(120×70\).png);
  border-top: 1px solid var(--color-main-300);
  border-bottom: 1px solid var(--color-main-300);
}
.chiropractic-name {
  width: 100%;
  max-width: 110px;
  padding-right: 10px;
  font-family: var(--font-accent);
  font-size: 18px;
  line-height: 1.9444444444;
  letter-spacing: 0.05em;
  font-weight: var(--font-medium);
  color: var(--color-main-300);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.chiropractic-contents {
  width: 100%;
  color: var(--color-txt-100);
  padding-left: 19px;
  position: relative;
  z-index: 1;
}
.chiropractic-contents::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 1px;
  height: calc(100% - 10px);
  left: 0;
  top: 50%;
  translate: 0 -50%;
  background: var(--color-main-300);
}
.chiropractic-contents .cmn-txt-mb {
  margin-bottom: 30px;
}
.chiropractic-contents .cmn-txt-mb-lg {
  margin-bottom: 60px;
}
.chiropractic-contents .lg {
  font-size: 20px;
}
.chiropractic .dot {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-left: 1em;
}
.chiropractic .dot::before {
  content: "・";
  position: absolute;
  z-index: -1;
  width: 1em;
  left: 0;
  top: 0;
  color: inherit;
}
.chiropractic-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 40px;
  aspect-ratio: 440/440;
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 1;
}
.chiropractic-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.chiropractic::before {
  left: 0;
  bottom: 0;
  background: url(/img/school/chiropractic-deco.png) no-repeat;
  background-size: contain;
}

/*oil-lymphatic ---------------------------------------------*/
.oil-lymphatic {
  padding: var(--cmn-pd-md) 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid var(--color-main-300);
}
.oil-lymphatic::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 597/415;
  width: 597px;
}
.oil-lymphatic-ttl {
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.oil-lymphatic-ttl .ttl-deco {
  display: block;
}
.oil-lymphatic-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 70px;
  margin-top: 7.5px;
  text-transform: uppercase;
}
.oil-lymphatic-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 50px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.oil-lymphatic-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 50px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.oil-lymphatic-ttl .ttl-sub::before {
  background: url(/img/common/ttl-deco-left.png) no-repeat;
  background-size: contain;
}
.oil-lymphatic-ttl .ttl-sub::after {
  background: url(/img/common/ttl-deco-right.png) no-repeat;
  background-size: contain;
}
.oil-lymphatic-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 78px;
}
.oil-lymphatic-item {
  width: 100%;
}
.oil-lymphatic-body {
  width: 100%;
  padding-top: 20px;
}
.oil-lymphatic-side {
  width: 100%;
  padding-top: 10px;
  gap: 10px;
}
.oil-lymphatic-box {
  width: 100%;
  padding: 23px 40px;
  background: url(/img/common/pat/box_lightblue\(120×70\).png);
  border-top: 1px solid var(--color-main-300);
  border-bottom: 1px solid var(--color-main-300);
}
.oil-lymphatic-name {
  width: 100%;
  max-width: 110px;
  padding-right: 10px;
  font-family: var(--font-accent);
  font-size: 18px;
  line-height: 1.9444444444;
  letter-spacing: 0.05em;
  font-weight: var(--font-medium);
  color: var(--color-main-300);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.oil-lymphatic-contents {
  width: 100%;
  color: var(--color-txt-100);
  padding-left: 19px;
  position: relative;
  z-index: 1;
}
.oil-lymphatic-contents::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 1px;
  height: calc(100% - 10px);
  left: 0;
  top: 50%;
  translate: 0 -50%;
  background: var(--color-main-300);
}
.oil-lymphatic-contents .cmn-txt-mb {
  margin-bottom: 30px;
}
.oil-lymphatic-contents .cmn-txt-mb-lg {
  margin-bottom: 60px;
}
.oil-lymphatic-contents .lg {
  font-size: 20px;
}
.oil-lymphatic .dot {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-left: 1em;
}
.oil-lymphatic .dot::before {
  content: "・";
  position: absolute;
  z-index: -1;
  width: 1em;
  left: 0;
  top: 0;
  color: inherit;
}
.oil-lymphatic-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 40px;
  aspect-ratio: 440/440;
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 1;
}
.oil-lymphatic-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.oil-lymphatic::before {
  right: 0;
  bottom: 0;
  background: url(/img/school/oil-lymphatic-deco.png) no-repeat;
  background-size: contain;
}

/*ear-acupuncture ---------------------------------------------*/
.ear-acupuncture {
  padding: var(--cmn-pd-md) 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid var(--color-main-300);
}
.ear-acupuncture::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 597/415;
  width: 597px;
}
.ear-acupuncture-ttl {
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ear-acupuncture-ttl .ttl-deco {
  display: block;
}
.ear-acupuncture-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 70px;
  margin-top: 7.5px;
  text-transform: uppercase;
}
.ear-acupuncture-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 50px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.ear-acupuncture-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 50px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.ear-acupuncture-ttl .ttl-sub::before {
  background: url(/img/common/ttl-deco-left.png) no-repeat;
  background-size: contain;
}
.ear-acupuncture-ttl .ttl-sub::after {
  background: url(/img/common/ttl-deco-right.png) no-repeat;
  background-size: contain;
}
.ear-acupuncture-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 78px;
}
.ear-acupuncture-item {
  width: 100%;
}
.ear-acupuncture-body {
  width: 100%;
  padding-top: 20px;
}
.ear-acupuncture-side {
  width: 100%;
  padding-top: 10px;
  gap: 10px;
}
.ear-acupuncture-box {
  width: 100%;
  padding: 23px 40px;
  background: url(/img/common/pat/box_lightblue\(120×70\).png);
  border-top: 1px solid var(--color-main-300);
  border-bottom: 1px solid var(--color-main-300);
}
.ear-acupuncture-name {
  width: 100%;
  max-width: 110px;
  padding-right: 10px;
  font-family: var(--font-accent);
  font-size: 18px;
  line-height: 1.9444444444;
  letter-spacing: 0.05em;
  font-weight: var(--font-medium);
  color: var(--color-main-300);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.ear-acupuncture-contents {
  width: 100%;
  color: var(--color-txt-100);
  padding-left: 19px;
  position: relative;
  z-index: 1;
}
.ear-acupuncture-contents::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 1px;
  height: calc(100% - 10px);
  left: 0;
  top: 50%;
  translate: 0 -50%;
  background: var(--color-main-300);
}
.ear-acupuncture-contents .cmn-txt-mb {
  margin-bottom: 30px;
}
.ear-acupuncture-contents .cmn-txt-mb-lg {
  margin-bottom: 60px;
}
.ear-acupuncture-contents .lg {
  font-size: 20px;
}
.ear-acupuncture .dot {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-left: 1em;
}
.ear-acupuncture .dot::before {
  content: "・";
  position: absolute;
  z-index: -1;
  width: 1em;
  left: 0;
  top: 0;
  color: inherit;
}
.ear-acupuncture-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 40px;
  aspect-ratio: 440/440;
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 1;
}
.ear-acupuncture-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ear-acupuncture::before {
  left: 0;
  bottom: 0;
  background: url(/img/school/ear-acupuncture-deco.png) no-repeat;
  background-size: contain;
}

/*==========================================
access
===========================================*/
/*com-info ---------------------------------------------*/
.com-info {
  padding: var(--cmn-pd-md) 0;
  padding-top: 100px;
  overflow: hidden;
  background: var(--color-main-200);
  position: relative;
  z-index: 1;
}
.com-info::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 276/139;
  width: 276px;
  right: calc(50% - 640px);
  top: 84px;
  background: url(/img/access/info-deco-r.png) no-repeat;
  background-size: contain;
}
.com-info-ttl {
  color: var(--color-white);
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.com-info-ttl .ttl-deco {
  display: block;
}
.com-info-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 70px;
  margin-top: 7.5px;
  text-transform: uppercase;
  color: rgb(var(--color-accent-200-rgb)/0.92);
}
.com-info-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 50px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.com-info-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 50px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.com-info-ttl .ttl-sub::before {
  background: url(/img/common/ttl-deco-left.png) no-repeat;
  background-size: contain;
}
.com-info-ttl .ttl-sub::after {
  background: url(/img/common/ttl-deco-right.png) no-repeat;
  background-size: contain;
}
.com-info .table-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
  translate: 0 -5px;
}
.com-info .table-wrapper::before {
  content: "";
  position: absolute;
  z-index: 1;
  aspect-ratio: 117/111;
  width: 117px;
  left: -45px;
  top: -96px;
  background: url(/img/access/info-deco-l.png) no-repeat;
  background-size: contain;
}
.com-info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}
.com-info-row {
  width: 100%;
}
.com-info-row:not(:last-child) {
  margin-bottom: 20px;
}
.com-info-header {
  font-weight: var(--font-medium);
  color: var(--color-main-300);
  width: 330px;
  padding: 12.5px 10px;
  text-align: center;
  background: url(/img/common/pat/box\(3×1\).png);
  vertical-align: middle;
}
.com-info-data {
  color: var(--color-txt-100);
  padding: 12.5px 0px;
  background: url(/img/common/pat/box\(3×1\).png);
}
.com-info-data .tel-svg {
  display: block;
  padding: 5px 0;
}

/*com-map ---------------------------------------------*/
.com-map {
  padding: var(--cmn-pd-md) 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.com-map::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 597/416;
  width: 597px;
  right: 0;
  top: 0;
  background: url(/img/access/com-map-deco.png) no-repeat;
  background-size: contain;
}
.com-map-ttl {
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.com-map-ttl .ttl-deco {
  display: block;
}
.com-map-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 70px;
  margin-top: 7.5px;
  text-transform: uppercase;
}
.com-map-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 50px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.com-map-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 50px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.com-map-ttl .ttl-sub::before {
  background: url(/img/common/ttl-deco-left.png) no-repeat;
  background-size: contain;
}
.com-map-ttl .ttl-sub::after {
  background: url(/img/common/ttl-deco-right.png) no-repeat;
  background-size: contain;
}
.com-map iframe {
  width: 100%;
  height: 360px;
  display: block;
  border: none;
}

/*==========================================
news
===========================================*/
.news-ttl {
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news-ttl .ttl-deco {
  display: block;
}
.news-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 70px;
  margin-top: 7.5px;
  text-transform: uppercase;
}
.news-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 50px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.news-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 50px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.news-ttl .ttl-sub::before {
  background: url(/img/common/ttl-deco-left.png) no-repeat;
  background-size: contain;
}
.news-ttl .ttl-sub::after {
  background: url(/img/common/ttl-deco-right.png) no-repeat;
  background-size: contain;
}
.news .top-news-item-ttl {
  color: var(--color-txt-100);
}

.detail .meta {
  margin-bottom: 60px;
}
.detail .date {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
  line-height: 20px;
}
.detail .tag-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.detail .tag {
  display: inline-block;
  padding: 2px 10px 4px;
  border: 1px solid var(--color-main-400);
}

.form,
.complete,
.notfound,
.privacy,
.site-map,
.news,
.detail {
  padding: var(--cmn-pd-md) 0;
  overflow: hidden;
}

.form-ttl,
.complete-ttl,
.notfound-ttl,
.privacy-ttl,
.site-map-ttl {
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form-ttl .ttl-deco,
.complete-ttl .ttl-deco,
.notfound-ttl .ttl-deco,
.privacy-ttl .ttl-deco,
.site-map-ttl .ttl-deco {
  display: block;
}
.form-ttl .ttl-sub,
.complete-ttl .ttl-sub,
.notfound-ttl .ttl-sub,
.privacy-ttl .ttl-sub,
.site-map-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 70px;
  margin-top: 7.5px;
  text-transform: uppercase;
}
.form-ttl .ttl-sub::before,
.complete-ttl .ttl-sub::before,
.notfound-ttl .ttl-sub::before,
.privacy-ttl .ttl-sub::before,
.site-map-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 50px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-ttl .ttl-sub::after,
.complete-ttl .ttl-sub::after,
.notfound-ttl .ttl-sub::after,
.privacy-ttl .ttl-sub::after,
.site-map-ttl .ttl-sub::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 50px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-ttl .ttl-sub::before,
.complete-ttl .ttl-sub::before,
.notfound-ttl .ttl-sub::before,
.privacy-ttl .ttl-sub::before,
.site-map-ttl .ttl-sub::before {
  background: url(/img/common/ttl-deco-left.png) no-repeat;
  background-size: contain;
}
.form-ttl .ttl-sub::after,
.complete-ttl .ttl-sub::after,
.notfound-ttl .ttl-sub::after,
.privacy-ttl .ttl-sub::after,
.site-map-ttl .ttl-sub::after {
  background: url(/img/common/ttl-deco-right.png) no-repeat;
  background-size: contain;
}

.complete {
  --color-complete-txt: var(--color-txt-100);
  --color-complete-link: var(--color-main-300);
}

.notfound {
  --color-notfound-txt: var(--color-txt-100);
  --color-notfound-link: var(--color-main-300);
}

.pagenation {
  --color-pagenation-def-txt: var(--color-white);
  --color-pagenation-border: var(--color-white);
}

.tag-change {
  --color-tag-change-def-txt: #b3b3b3;
  --color-tag-change-def-bg: #eee;
  --color-tag-change-current-txt: var(--color-white);
  --color-tag-change-current-bg: var(--color-main-300);
  --tag-change-border-radius: 0px;
}

.bread-clumb.color-change {
  --color-bread-clumb: var(--color-white);
  --color-bread-clumb-current: var(--color-white);
}
.bread-clumb.color-change .bread-clumb-item:not(:last-child)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
}