@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: 13px;
  line-height: 20px;
  letter-spacing: 0.05em;
  width: 100%;
  max-width: 300px;
  padding: 14px 20px 16px;
  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: 24px;
  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: 24px;
  left: calc(50% - 56px);
  top: 50%;
  translate: -50% -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: 24px;
  left: calc(50% - 60px);
  top: 50%;
  translate: -50% -50%;
  background: url(/img/common/instagram-icon.png) no-repeat;
  background-size: contain;
}

.btn-accent-100 {
  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: 26px;
  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: 20px;
  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: 20px;
  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: 18px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: var(--font-normal);
}

.ttl-sv, .sv-ttl {
  font-family: var(--font-sub);
  font-size: 20px;
  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 {
  font-family: var(--font-accent);
  font-weight: var(--font-medium);
  color: var(--color-white);
  font-size: 16px;
  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: 18px;
  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, .drawer-detail {
  font-family: var(--font-main);
  font-size: 13px;
  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, .drawer-detail {
  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: 12px;
  line-height: 1.7857142857;
  letter-spacing: 0.05em;
  font-weight: var(--font-normal);
  color: var(--color-white);
}

.txt-2xs, .txt-2xs-lh-1 {
  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 {
  line-height: 1;
}

.txt-news-date, .top-news-item .date, .detail .date {
  font-family: var(--font-main);
  font-size: 13px;
  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: 11px;
  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: 13px;
  line-height: 1.875;
  font-weight: var(--font-normal);
  letter-spacing: 0.05em;
  color: var(--color-white);
}

.txt-hd-nav {
  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: 13px;
  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: 24px;
  color: var(--color-white);
}
.tel-white .tel-num {
  --icon-width: 18;
  --icon-height: 18;
  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: 24px;
}
.tel-lg .tel-num {
  --icon-width: 18;
  --icon-height: 18;
  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, 60px) 0;
}
.site-map-list {
  font-size: 16px;
  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: 15px 0 15px 30px;
  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, 60px) 0;
}
.notfound-txt {
  font-weight: var(--font-medium, 500);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0;
  color: var(--color-notfound-txt);
}
.notfound-txt a {
  color: var(--color-notfound-link);
  text-decoration: underline;
}

/*privacy ---------------------------------------------*/
.privacy {
  --color-privacy: var(--color-txt-100);
  padding: var(--cmn-pd-md, 60px) 0;
}
.privacy .ttl02 {
  font-size: 20px;
  font-family: var(--font-main);
  padding-bottom: 7px;
  margin-bottom: 12px;
  color: var(--color-privacy);
  font-weight: var(--font-bold, bold);
  border-bottom: 1px solid var(--color-privacy);
}
.privacy .privacy-box {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-privacy);
}
.privacy .privacy-box:not(:last-child) {
  margin-bottom: 50px;
}

/*contact ---------------------------------------------*/
#contact {
  --color-contact-main: var(--color-main-400);
  --color-contact-required-mark-txt: var(--color-white);
  --color-contact-required-mark-bg: var(--color-main-100);
  --color-contact-th-bg: var(--color-main-400);
  --color-contact-th-txt: #fff;
  --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, 60px) 0;
}
.complete-box {
  max-width: 80%;
  margin: 0 auto;
  text-align: left;
  font-weight: var(--font-medium, 500);
  font-size: 14px;
  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 {
  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: 32px;
  gap: 20px;
  font-size: 13px;
}
.pagenation li {
  font-family: var(--font-main);
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
  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: 8.5px 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-txt-100);
}

.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: 14px;
  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: 9px 16px;
}
.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);
  --color-page-btn-mt: 60px;
  --color-page-btn-pt: 28px;
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: var(--color-page-btn-mt);
  padding-top: var(--color-page-btn-pt);
  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: 14px;
  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: 22px;
}
.page-btn .left a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 5px;
  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: 22px;
}
.page-btn .right a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 15px;
  height: 5px;
  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: 20px;
  color: var(--color-news-detail);
  margin-bottom: 12px;
  line-height: 1.5;
}

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

/*header ---------------------------------------------*/
.header {
  height: 75px;
  width: 100%;
  z-index: 10;
  overflow: hidden;
}
.header-body {
  width: 100%;
  height: 75px;
  padding: 15px 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.header .logo {
  width: 120px;
}

/*mv ---------------------------------------------*/
.mv {
  --mv-height: 600px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mv-catch {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80%;
  max-width: 450px;
}
.mv-link {
  display: block;
  width: 100%;
  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);
  top: 0;
}
.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);
  bottom: 0;
}
.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: 60px;
  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: 30px;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.mv-link-ttl::after {
  content: "";
  position: absolute;
  z-index: 1;
  aspect-ratio: 123/120;
  height: 100%;
  right: 0;
  top: 0;
}

/*side-btn ---------------------------------------------*/
.side-btn {
  overflow: hidden;
  z-index: 99;
  position: fixed;
  right: 0px;
  bottom: 0;
  aspect-ratio: 380/60;
  width: 100%;
  max-width: 380px;
  background: url(/img/common/side-btn-base-sm-yoko.png) no-repeat center center/cover;
}
.side-btn-wrapper {
  height: 100%;
  margin-left: 52.6%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

/*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 52px;
  margin-top: 7.5px;
  text-transform: uppercase;
}
.top-greeting-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 40px;
  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: 40px;
  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: left;
  background: var(--color-white);
  padding: 40px 30px;
}
.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: 60%;
  max-width: 400px;
  right: 0;
  bottom: 0;
  background: url(/img/top/top-feature-deco.png) no-repeat;
  background-size: contain;
}
.top-feature-wrap {
  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-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 52px;
  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: 40px;
  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: 40px;
  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: 10px;
  margin-bottom: 30px;
}
.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: 40px;
  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 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 520px;
}
.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 52px;
  margin-top: 7.5px;
  text-transform: uppercase;
}
.top-service-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 40px;
  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: 40px;
  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;
  gap: 60px;
}
.top-service-item {
  width: 100%;
  position: relative;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.top-service-item:nth-of-type(odd) .top-service-txtarea::before {
  content: "";
  position: absolute;
  z-index: 2;
  aspect-ratio: 121/127;
  width: 100px;
  top: 10px;
  left: 10px;
  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: 100px;
  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: 70px;
  left: -15px;
  top: -50px;
  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: 120px;
  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;
  position: relative;
  z-index: 1;
}
.top-service-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  padding-top: 65px;
  padding: 40px 20px 36px;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 5px 10px 0px rgb(var(--color-txt-100-rgb)/0.15);
          box-shadow: 0px 5px 10px 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 5px 0px rgb(var(--color-txt-100-rgb)/0.15);
          box-shadow: 0px 0px 5px 0px rgb(var(--color-txt-100-rgb)/0.15);
}
.top-service .box-deco {
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
}
.top-service-subttl {
  width: 100%;
  text-align: center;
  padding-bottom: 28px;
  position: relative;
  z-index: 1;
}
.top-service-subttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 165/20;
  width: 130px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}
.top-service-txt {
  text-align: left;
  padding-top: 12px;
}
.top-service-img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.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: 60%;
  max-width: 400px;
  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 52px;
  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: 40px;
  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: 40px;
  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%;
  -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-txtarea {
  width: 100%;
}
.top-profile-name {
  color: var(--color-white);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  padding-left: 23px;
}
.top-profile-name::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 19/18;
  width: 15px;
  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: 90px;
  right: -8px;
  top: -74px;
  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: 120px;
  padding: 15.3125px 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
}
.top-profile-definition {
  width: 100%;
  color: var(--color-txt-100);
  padding: 15.3125px 0px;
  padding-right: 20px;
}
.top-profile-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.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;
}
.top-contact-wrap {
  padding: 0;
  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: 60px 30px;
  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 52px;
  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: 40px;
  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: 40px;
  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-txt {
  color: var(--color-white);
  text-align: center;
  margin-bottom: 30px;
}
.top-contact-txt .cmn-txt-mb {
  margin-bottom: 16px;
}
.top-contact-links {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
}
.top-contact-info {
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.top-contact .tel-white {
  margin-bottom: 10px;
}
.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: 2.5px 0px 4.5px;
  text-align: center;
  margin-right: 9px;
}

/*top-links ---------------------------------------------*/
.top-links {
  padding: var(--cmn-pd-xs) 0;
  overflow: hidden;
}
.top-links-list {
  width: 100%;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.top-links-item {
  width: 100%;
  height: 200px;
  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 7.5px top 7.5px/35px, url(/img/common/deco-corner-lb02.png) no-repeat left 7.5px bottom 7.5px/35px, url(/img/common/deco-corner-rt02.png) no-repeat right 7.5px top 7.5px/35px, url(/img/common/deco-corner-rb02.png) no-repeat right 7.5px bottom 7.5px/35px;
}
.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% - 40px);
  height: calc(100% - 40px);
  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: 24px;
  right: 15px;
  bottom: 15px;
  background: url(/img/common/arw-white.png) no-repeat;
  background-size: contain;
}
.top-links-ttl {
  position: relative;
  z-index: 1;
  padding-bottom: 23px;
  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: 32px;
  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: 16px;
  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;
}

/*top-news ---------------------------------------------*/
.top-news {
  padding: 100px 0;
  overflow: hidden;
  background: url(/img/common/pat/bg\(300×175\).png);
}
.top-news-wrap {
  -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-news-heading {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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: 280px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(/img/common/top-news-ttl-deco.png) no-repeat;
  background-size: contain;
}
.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;
  margin-bottom: 60px;
}
.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: 30%;
  max-width: 120px;
  margin-right: 20px;
  -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: 10px;
}
.top-news-item .date {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 8px;
}
.top-news-item .tag-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px;
  margin-left: auto;
}
.top-news-item .tag {
  display: inline-block;
  padding: 2.5px 5px 4.5px;
  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: 60%;
  max-width: 400px;
  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 52px;
  margin-top: 7.5px;
  text-transform: uppercase;
}
.top-access-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 40px;
  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: 40px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.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: 120px;
  padding: 15.3125px 20px;
  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: 15.3125px 0px;
  padding-right: 16px;
  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: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.top-access-data .tel-svg {
  margin-top: 3px;
}
.top-access .waku {
  width: 100%;
  height: 240px;
  padding: 5px;
  border: 1px solid var(--color-main-300);
  -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: 70px;
  right: 0;
  bottom: 0;
  translate: 40% 90%;
  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);
  padding-bottom: 60px;
}
.footer-contents {
  padding: var(--cmn-pd-md) 0;
  padding-bottom: 60px;
  -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;
}
.footer-side {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
.footer-logo {
  width: 240px;
  margin-bottom: 39px;
}
.footer-info {
  padding: 20px;
  background: var(--color-white);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-info-top {
  margin-bottom: 20px;
  -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;
}
.footer-info .tel-area {
  margin-bottom: 20px;
}
.footer-info .tel-lg {
  margin-bottom: 8px;
}
.footer-detail {
  gap: 5px;
}
.footer-detail .bg {
  display: inline-block;
  color: var(--color-white);
  background: var(--color-main-200);
  width: 80px;
  padding: 2.5px 0px 4.5px;
  margin-right: 9px;
  text-align: center;
}
.footer-address {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-left: 18px;
}
.footer-address::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 15/21;
  width: 12px;
  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: 20px 50px;
}
.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: 10px;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
}

/*==========================================
sv
===========================================*/
.sv {
  --sv-height: 160px;
  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-img.img-offset01 img {
  -o-object-position: 30%;
     object-position: 30%;
}
.sv-img.img-offset02 img {
  -o-object-position: 80%;
     object-position: 80%;
}
.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: 70%;
  max-width: 320px;
  width: 270px;
  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: var(--cmn-pd-xs);
  overflow: hidden;
  background: url(/img/relaxation/menu-bg-top.png) no-repeat center top/100%;
}
.menu-ttl {
  margin-bottom: 60px;
  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 52px;
  margin-top: 7.5px;
  text-transform: uppercase;
}
.menu-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 40px;
  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: 40px;
  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: 72px;
}
.menu-item {
  width: 100%;
}
.menu-subttl {
  width: 100%;
  padding-bottom: 12px;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--color-main-300);
}
.menu-subttl .deco {
  display: inline-block;
  padding-left: 24px;
  position: relative;
  z-index: 1;
}
.menu-subttl .deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 19/18;
  width: 14px;
  left: 0;
  top: 7px;
  background: url(/img/common/deco-dot-blue.png) no-repeat;
  background-size: contain;
}
.menu-body {
  width: 100%;
  padding-top: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.menu-side {
  width: 100%;
  padding-top: 16px;
}
.menu-boxes {
  width: 100%;
  gap: 30px;
}
.menu-box {
  width: 100%;
}
.menu-box:last-child p {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-border-100);
}
.menu-name {
  width: 100%;
  padding: 10.6px 20px 10.6px;
  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: 8px;
}
.menu-txt {
  width: 100%;
  padding: 0 10px;
}
.menu-price {
  width: 100%;
  gap: 14px;
  padding-top: 12px;
}
.menu .price-box {
  width: 100%;
  padding: 0 10px;
  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: 14px;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  font-weight: var(--font-semibold);
  text-align: left;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.menu .price-box .time {
  width: 100%;
  -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;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  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: 72px;
  padding-top: 24px;
  position: relative;
  z-index: 1;
}
.menu .notice::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% - 60px);
  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;
  overflow: hidden;
  background: url(/img/relaxation/menu-bg-top.png) no-repeat center top/100%;
}
.fortune-telling-menu-ttl {
  margin-bottom: 60px;
  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 52px;
  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: 40px;
  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: 40px;
  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: 72px;
}
.fortune-telling-menu-item {
  width: 100%;
}
.fortune-telling-menu-subttl {
  width: 100%;
  color: var(--color-main-200);
  padding-bottom: 12px;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--color-main-200);
}
.fortune-telling-menu-subttl .deco {
  display: inline-block;
  padding-left: 24px;
  position: relative;
  z-index: 1;
}
.fortune-telling-menu-subttl .deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 19/18;
  width: 14px;
  left: 0;
  top: 7px;
  background: url(/img/common/deco-dot.png) no-repeat;
  background-size: contain;
}
.fortune-telling-menu-body {
  width: 100%;
  padding-top: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.fortune-telling-menu-side {
  width: 100%;
  padding-top: 16px;
}
.fortune-telling-menu-boxes {
  width: 100%;
  gap: 30px;
}
.fortune-telling-menu-box {
  width: 100%;
}
.fortune-telling-menu-box:last-child p {
  padding-bottom: 30px;
}
.fortune-telling-menu-name {
  width: 100%;
  color: var(--color-white);
  padding: 8.6px 20px 12.6px;
  background: url(/img/common/pat/bg\(120×70\).png);
  margin-bottom: 8px;
}
.fortune-telling-menu-txt {
  padding: 0 10px;
}
.fortune-telling-menu-price {
  width: 100%;
  gap: 4px;
}
.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: 14px;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  font-weight: var(--font-semibold);
  text-align: left;
  padding: 7.3333333333px 20px 9.3333333333px;
  background: var(--color-main-200);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.fortune-telling-menu .price-box .time {
  width: 100%;
  -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;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  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: 72px;
  padding-top: 24px;
  position: relative;
  z-index: 1;
}
.fortune-telling-menu .notice::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% - 60px);
  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;
  padding-top: var(--cmn-pd-xs);
  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: 60%;
  max-width: 400px;
  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 52px;
  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: 40px;
  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: 40px;
  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: 72px;
}
.tarot-item {
  width: 100%;
}
.tarot-subttl {
  width: 100%;
  color: var(--color-white);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-accent-200);
}
.tarot-subttl .deco {
  display: inline-block;
  padding-left: 24px;
  position: relative;
  z-index: 1;
}
.tarot-subttl .deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 19/18;
  width: 14px;
  left: 0;
  top: 7px;
  background: url(/img/common/deco-dot.png) no-repeat;
  background-size: contain;
}
.tarot-body {
  width: 100%;
  padding-top: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.tarot-side {
  width: 100%;
  gap: 8px;
}
.tarot-box {
  width: 100%;
  padding: 20px 20px;
  background: var(--color-txt-100);
}
.tarot-name {
  width: 100%;
  width: 28%;
  max-width: 110px;
  padding-right: 10px;
  font-family: var(--font-accent);
  font-size: 14px;
  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: 18px;
  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: 24.375px;
}
.tarot-contents .cmn-txt-mb-lg {
  margin-bottom: 48.75px;
}
.tarot-contents .lg {
  font-size: 16px;
}
.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;
  aspect-ratio: 440/440;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  margin-top: 16px;
}
.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: 60%;
  max-width: 400px;
}
.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;
  white-space: pre-wrap;
  word-break: keep-all;
  line-height: 1.5;
  margin-bottom: 12px;
}
.chiropractic-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 52px;
  margin-top: 7.5px;
  text-transform: uppercase;
  line-height: 1.3;
  white-space: pre-wrap;
  word-break: keep-all;
}
.chiropractic-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 40px;
  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: 40px;
  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: 72px;
}
.chiropractic-item {
  width: 100%;
}
.chiropractic-body {
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.chiropractic-side {
  width: 100%;
  gap: 8px;
}
.chiropractic-box {
  width: 100%;
  padding: 20px;
  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%;
  width: 28%;
  max-width: 110px;
  padding-right: 10px;
  font-family: var(--font-accent);
  font-size: 14px;
  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: 18px;
  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: 24.375px;
}
.chiropractic-contents .cmn-txt-mb-lg {
  margin-bottom: 48.75px;
}
.chiropractic-contents .lg {
  font-size: 16px;
}
.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;
  aspect-ratio: 440/440;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  margin-top: 16px;
}
.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: 60%;
  max-width: 400px;
}
.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;
  white-space: pre-wrap;
  word-break: keep-all;
  line-height: 1.5;
  margin-bottom: 12px;
}
.oil-lymphatic-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 52px;
  margin-top: 7.5px;
  text-transform: uppercase;
  line-height: 1.3;
  white-space: pre-wrap;
  word-break: keep-all;
}
.oil-lymphatic-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 40px;
  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: 40px;
  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: 72px;
}
.oil-lymphatic-item {
  width: 100%;
}
.oil-lymphatic-body {
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.oil-lymphatic-side {
  width: 100%;
  gap: 8px;
}
.oil-lymphatic-box {
  width: 100%;
  padding: 20px;
  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%;
  width: 28%;
  max-width: 110px;
  padding-right: 10px;
  font-family: var(--font-accent);
  font-size: 14px;
  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: 18px;
  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: 24.375px;
}
.oil-lymphatic-contents .cmn-txt-mb-lg {
  margin-bottom: 48.75px;
}
.oil-lymphatic-contents .lg {
  font-size: 16px;
}
.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;
  aspect-ratio: 440/440;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  margin-top: 16px;
}
.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: 60%;
  max-width: 400px;
}
.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;
  white-space: pre-wrap;
  word-break: keep-all;
  line-height: 1.5;
  margin-bottom: 12px;
}
.ear-acupuncture-ttl .ttl-sub {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 52px;
  margin-top: 7.5px;
  text-transform: uppercase;
  line-height: 1.3;
  white-space: pre-wrap;
  word-break: keep-all;
}
.ear-acupuncture-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 40px;
  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: 40px;
  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: 72px;
}
.ear-acupuncture-item {
  width: 100%;
}
.ear-acupuncture-body {
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ear-acupuncture-side {
  width: 100%;
  gap: 8px;
}
.ear-acupuncture-box {
  width: 100%;
  padding: 20px;
  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%;
  width: 28%;
  max-width: 110px;
  padding-right: 10px;
  font-family: var(--font-accent);
  font-size: 14px;
  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: 18px;
  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: 24.375px;
}
.ear-acupuncture-contents .cmn-txt-mb-lg {
  margin-bottom: 48.75px;
}
.ear-acupuncture-contents .lg {
  font-size: 16px;
}
.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;
  aspect-ratio: 440/440;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  margin-top: 16px;
}
.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: var(--cmn-pd-xs);
  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: 200px;
  right: -20px;
  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 52px;
  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: 40px;
  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: 40px;
  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: 70px;
  left: -25px;
  top: -46px;
  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: 120px;
  padding: 15.3125px 20px;
  text-align: center;
  background: url(/img/common/pat/box\(3×1\).png);
  vertical-align: middle;
}
.com-info-data {
  color: var(--color-txt-100);
  padding: 15.3125px 0px;
  padding-right: 16px;
  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: 60%;
  max-width: 400px;
  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 52px;
  margin-top: 7.5px;
  text-transform: uppercase;
}
.com-map-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 40px;
  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: 40px;
  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: 320px;
  display: block;
  border: none;
}

/*drawer ---------------------------------------------*/
.drawer #nav {
  margin-bottom: 40px;
}
.drawer .tel-area {
  margin-bottom: 20px;
}
.drawer .tel-lg {
  margin-bottom: 10px;
}
.drawer-detail {
  gap: 5px;
  margin-bottom: 40px;
}
.drawer-detail .bg {
  display: inline-block;
  color: var(--color-white);
  background: var(--color-main-200);
  width: 80px;
  padding: 2.5px 0px 4.5px;
  margin-right: 9px;
  text-align: center;
}
.drawer-links {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
.drawer-links .btn-md {
  width: 30px;
}

/*==========================================
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 52px;
  margin-top: 7.5px;
  text-transform: uppercase;
}
.news-ttl .ttl-sub::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 50/13;
  width: 40px;
  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: 40px;
  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);
  -webkit-line-clamp: 2;
}

.detail .meta {
  margin-bottom: 50px;
}
.detail .date {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
  line-height: 18px;
}
.detail .tag-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px;
}
.detail .tag {
  display: inline-block;
  padding: 2.5px 5px 4.5px;
  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 52px;
  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: 40px;
  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: 40px;
  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;
}

.page-btn {
  --color-page-btn-txt: var(--color-txt-100);
  --color-page-btn-border: var(--color-main-200);
  --color-page-btn-mt: 50px;
  --color-page-btn-pt: 28px;
}

.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");
}