@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
  position: relative;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  word-break: break-all;
}

ul,
ol {
  list-style: none;
}

a {
  -webkit-text-decoration: none;
  text-decoration: none;
  color: #333;
  transition: opacity 0.1s linear;
  display: inline-block;
}
a:hover {
  opacity: 0.8;
}

input,
textarea,
select {
  outline: none;
  margin: 0;
}

input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

svg {
  overflow-x: visible;
  overflow-y: visible;
  display: inline-block;
}

img {
  caret-color: transparent;
  display: block;
  max-width: 100%;
  height: auto;
}

html {
  font-size: 62.5%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  color: #333;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 1.33rem + 0.188vw, 1.6rem);
  line-height: 1.5;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-y: scroll;
  -ms-overflow-style: none;
  position: relative;
}
body::-webkit-scrollbar {
  display: none;
}
body.is-menu-opened {
  overflow: hidden;
}

.ja {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

.en {
  font-family: "Roboto", sans-serif;
}

.inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}
.inner._maxw-800 {
  max-width: 800px;
}
.inner._maxw-1200 {
  max-width: 1200px;
}

.l-header {
  background-color: #fff6d8;
  border-bottom: solid 1px #ccc;
}
.l-header__inner {
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1250px;
  padding-left: 20px;
  padding-right: 20px;
}
.l-header__ui {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.l-header .logo-corporate {
  flex-shrink: 0;
}
.l-header-fixed {
  height: 120px;
  padding-left: 20px;
  padding-right: 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  transition: all 0.2s linear;
  transform: translateY(0%);
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  border-bottom: solid 1px #ccc;
}
.l-header-fixed:not(.is-show) {
  transform: translateY(-105%);
  visibility: hidden;
  pointer-events: none;
}
.l-header-fixed__inner {
  max-width: 1360px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.6rem, 0.755rem + 2.254vw, 4rem);
}

.l-footer {
  background-color: #fff6d8;
  padding-left: 20px;
  padding-right: 20px;
}
.l-footer__inner {
  position: relative;
}
.l-footer__head {
  padding-top: clamp(4rem, 2.592rem + 3.756vw, 8rem);
}
.l-footer__body {
  padding-top: clamp(3rem, 1.944rem + 2.817vw, 6rem);
  padding-bottom: clamp(5rem, 4.648rem + 0.939vw, 6rem);
}
.l-footer__foot {
  padding-top: 50px;
  padding-bottom: clamp(4rem, 2.592rem + 3.756vw, 8rem);
}
.l-footer .container-clinic-info {
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 0.944rem + 2.817vw, 5rem);
  border-radius: clamp(2rem, 1.648rem + 0.939vw, 3rem);
  padding-left: clamp(2rem, 1.648rem + 0.939vw, 3rem);
  padding-right: clamp(2rem, 1.648rem + 0.939vw, 3rem);
  padding-top: clamp(2rem, 2rem + 0vw, 2rem);
  padding-bottom: clamp(2rem, 2rem + 0vw, 2rem);
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.l-footer .container-clinic-info .logo-corporate a {
  flex-direction: row;
}
.l-footer .container-clinic-info .clinic-info .orange {
  color: #ec6c00;
}
.l-footer__copyright {
  font-size: clamp(1rem, 0.93rem + 0.188vw, 1.2rem);
  color: #fff;
  background-color: #649b1d;
  display: flex;
  justify-content: center;
  padding: 1em;
  font-weight: 700;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: none;
}

.l-drawer {
  background-color: #7cbc29;
  position: fixed;
  width: 100%;
  height: calc(100% - 70px);
  top: 70px;
  right: 0;
  transition: all 0.1s ease-in-out;
  z-index: 100;
  overflow-y: scroll;
  -ms-overflow-style: none;
}
.l-drawer::-webkit-scrollbar {
  display: none;
}
.l-drawer:not(.is-open) {
  translate: 0 -20px;
  opacity: 0;
  pointer-events: none;
}
.l-drawer__inner {
  background-color: #7cbc29;
  position: absolute;
  right: 0;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  top: 0;
  min-height: 100%;
  width: 100vw;
  max-width: 400px;
  padding-top: 0;
  padding-bottom: 30px;
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
}

.l-mv {
  overflow: hidden;
}
.l-mv__text {
  background-color: #81c030;
  padding-top: clamp(3rem, 2.648rem + 0.939vw, 4rem);
  padding-bottom: clamp(1rem, 0.296rem + 1.878vw, 3rem);
  color: #fff;
  padding-left: 20px;
  padding-right: 20px;
}
.l-mv__text__head {
  display: flex;
  justify-content: flex-end;
}
.l-mv__text__head .message {
  width: 70%;
  display: flex;
  justify-content: flex-end;
}
.l-mv__text__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.l-mv__text__body .illust {
  width: 72.5%;
  position: relative;
  z-index: 3;
  aspect-ratio: 186/127;
}
.l-mv__text__foot {
  padding-top: 16px;
  text-align: right;
}
.l-mv__text .description1 {
  font-size: clamp(1.2rem, 0.777rem + 1.127vw, 2.4rem);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 10px;
  flex-shrink: 0;
}
.l-mv__text .description1 .span {
  display: inline-block;
}
.l-mv__text .description1 .large {
  font-size: clamp(1.8rem, 1.377rem + 1.127vw, 3rem);
}
.l-mv__text .description1 .number {
  font-size: clamp(2rem, 1.577rem + 1.127vw, 3.2rem);
  font-weight: 900;
}
.l-mv__text .description2 {
  font-size: clamp(1.4rem, 1.048rem + 0.939vw, 2.4rem);
  font-weight: 600;
}
.l-mv__image {
  position: relative;
}
.l-mv__image::before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 375/12;
  background-image: url(../img/deco_mv_wave_sp.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 2;
}
.l-mv__image .items-mv-images {
  aspect-ratio: 3/2;
}
.l-mv__foot .items-mv-appeal {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
.l-mv__foot .carousel-mv__pagination {
  margin-top: clamp(2rem, 1.648rem + 0.939vw, 3rem);
  margin-left: auto;
  margin-right: auto;
}

.l-mv-lv2page {
  overflow: hidden;
  position: relative;
  padding-top: clamp(6rem, 4.592rem + 3.756vw, 10rem);
}
.l-mv-lv2page .ttl-page-top {
  text-align: center;
}
.l-mv-lv2page .ttl-page-top .illust {
  width: clamp(3.2rem, 2.073rem + 3.005vw, 6.4rem);
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}
.l-mv-lv2page .ttl-page-top .illust._large {
  width: clamp(5rem, 3.239rem + 4.695vw, 10rem);
}
.l-mv-lv2page .ttl-page-top .main {
  color: #71b51a;
  font-weight: 800;
  font-size: clamp(3.2rem, 2.566rem + 1.69vw, 5rem);
  margin-top: 0.2em;
}
.l-mv-lv2page .ttl-page-top .sub {
  letter-spacing: 0.1em;
  font-weight: 800;
  font-size: clamp(1.2rem, 1.059rem + 0.376vw, 1.6rem);
  margin-top: 0.1em;
}
.l-mv-lv2page.dispay-delay-because-jump2contents-in-page {
  opacity: 0;
  animation: initLv2PageHead 0.2s 0.1s linear forwards;
}
@keyframes initLv2PageHead {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.btn-link {
  -webkit-text-decoration: none;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  line-height: 1;
  caret-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  color: #333;
  background-color: transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.1s linear;
  will-change: transform;
}
.btn-link *,
.btn-link *::before,
.btn-link *::after {
  transition: all 0.1s linear;
}
.btn-link__text {
  font-weight: 700;
}
.btn-link._type-a1 {
  font-weight: 700;
  padding: 1.1em 2.5em 1.25em;
  gap: 1em;
  border-radius: 999px;
  border: 2px solid #ccc;
}
.btn-link._type-a1::after {
  content: "";
  display: inline-block;
  width: 0.6em;
  height: auto;
  aspect-ratio: 87/133;
  background: url(../img/icon_arrow_simple_orange.svg) no-repeat center center;
  background-size: contain;
}
.btn-link._type-a1 .text__thin {
  font-weight: 500;
}
.btn-link._type-a1._gold::after {
  content: "";
  display: inline-block;
  width: 0.6em;
  height: auto;
  aspect-ratio: 87/133;
  background: url(../img/icon_arrow_simple_gold.svg) no-repeat center center;
  background-size: contain;
}
.btn-link._type-a2 {
  gap: 0.5em;
}
.btn-link._type-a2::after {
  content: "";
  display: inline-block;
  width: 0.6em;
  height: auto;
  aspect-ratio: 87/133;
  background: url(../img/icon_arrow_simple_orange.svg) no-repeat center center;
  background-size: contain;
}
.btn-link._type-a2 .text {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.btn-link._type-a2 .text__thin {
  display: block;
  font-size: clamp(1.2rem, 1.13rem + 0.188vw, 1.4rem);
  font-weight: 400;
  margin-right: -0.25em;
}
.btn-link._type-a2._gold::after {
  content: "";
  display: inline-block;
  width: 0.6em;
  height: auto;
  aspect-ratio: 87/133;
  background: url(../img/icon_arrow_simple_gold.svg) no-repeat center center;
  background-size: contain;
}
.btn-link._type-b1 {
  color: #fff;
  font-size: clamp(1.8rem, 1.589rem + 0.563vw, 2.4rem);
  font-weight: 700;
  padding: 1.1em 2.5em;
  gap: 1em;
  border-radius: 999px;
  border: solid clamp(0.2rem, 0.165rem + 0.094vw, 0.3rem) #333;
}
.btn-link._type-b1:hover {
  opacity: 1;
}
.btn-link._type-b1:hover::after {
  transform: translateX(0.25em);
}
.btn-link._type-b1::after {
  content: "";
  display: inline-block;
  width: 1.25em;
  height: auto;
  aspect-ratio: 34/28;
  background: url(../img/icon_arrow_normal_white.svg) no-repeat center center;
  background-size: contain;
  transition: transform 0.1s linear;
}
.btn-link._type-b1._green {
  background-color: #71b51a;
  border-color: #71b51a;
}
.btn-link._type-b1._orange {
  background-color: #f0723c;
  border-color: #f0723c;
}
.btn-link._type-b1._gold {
  background-color: #fff;
  color: #ac8331;
  border-color: #ac8331;
}
.btn-link._type-b1._gold::after {
  content: "";
  display: inline-block;
  width: 1.25em;
  height: auto;
  aspect-ratio: 34/28;
  background: url(../img/icon_arrow_normal_gold.svg) no-repeat center center;
  background-size: contain;
}
.btn-link._type-b1._box {
  border-radius: clamp(2rem, 1.648rem + 0.939vw, 3rem);
  padding-left: 1.5em;
  padding-right: 1.5em;
}
.btn-link._type-b1._box .text {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.btn-link._type-b1._box .text > span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3em;
}
.btn-link._type-b1._box .text__small {
  font-size: clamp(1.3rem, 1.194rem + 0.282vw, 1.6rem);
}

.btn-link-tel {
  -webkit-text-decoration: none;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  line-height: 1;
  caret-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  color: #333;
  background-color: transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.1s linear;
  will-change: transform;
  font-size: clamp(1.6rem, 1.53rem + 0.188vw, 1.8rem);
  font-weight: 700;
  gap: 1em;
  display: flex;
}
.btn-link-tel *,
.btn-link-tel *::before,
.btn-link-tel *::after {
  transition: all 0.1s linear;
}
.btn-link-tel::before {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/icon_tel.png) no-repeat center center;
  background-size: contain;
}

.btn-menu-open,
.btn-menu-close {
  -webkit-text-decoration: none;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  line-height: 1;
  caret-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  color: #333;
  background-color: transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.1s linear;
  will-change: transform;
  display: grid;
  align-content: center;
  justify-content: center;
  place-content: center;
  width: 50px;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #71b51a;
  border-radius: 50%;
}
.btn-menu-open *,
.btn-menu-open *::before,
.btn-menu-open *::after,
.btn-menu-close *,
.btn-menu-close *::before,
.btn-menu-close *::after {
  transition: all 0.1s linear;
}
.btn-menu-open img,
.btn-menu-close img {
  width: 24px;
  height: auto;
}
.btn-menu-open .icon-close,
.btn-menu-close .icon-close {
  display: none;
}
.btn-menu-open.is-open .icon-open,
.btn-menu-close.is-open .icon-open {
  display: none;
}
.btn-menu-open.is-open .icon-close,
.btn-menu-close.is-open .icon-close {
  display: block;
}

.btn-slide-content {
  -webkit-text-decoration: none;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  line-height: 1;
  caret-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  color: #333;
  background-color: transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.1s linear;
  will-change: transform;
}
.btn-slide-content *,
.btn-slide-content *::before,
.btn-slide-content *::after {
  transition: all 0.1s linear;
}

.btn-goto-head {
  -webkit-text-decoration: none;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  line-height: 1;
  caret-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  color: #333;
  background-color: transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.1s linear;
  will-change: transform;
}
.btn-goto-head *,
.btn-goto-head *::before,
.btn-goto-head *::after {
  transition: all 0.1s linear;
}

#btnScroll2Top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: all 300ms linear;
}
#btnScroll2Top.is-show {
  opacity: 1;
  pointer-events: inherit;
}

.js-dropdown__body {
  padding-top: 34px;
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
}
.js-dropdown__body:not(.is-open) {
  display: none;
}

.nav-global__items .item a {
  transition: all 0.1s linear;
}
.nav-global._in-footer-pc {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(3rem, 2.296rem + 1.878vw, 5rem);
}

.js-dropdown-body {
  padding-top: 20px;
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
  z-index: 10;
  width: -moz-fit-content;
  width: fit-content;
}
.js-dropdown-body:not(.is-open) {
  display: none;
}

.nav-breadcrumbs {
  font-size: max(1.2rem, min(1.1713030747vw, 1.6rem));
  background-color: #fff;
}
.nav-breadcrumbs__inner {
  padding-top: 1.75em;
  padding-bottom: 1.85em;
}
.nav-breadcrumbs .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  row-gap: 5px;
  line-height: 1.5;
}
.nav-breadcrumbs .breadcrumbs > span {
  position: relative;
}
.nav-breadcrumbs .breadcrumbs > span a {
  color: #333;
  transition: all 0.1s linear;
}
.nav-breadcrumbs .breadcrumbs > span a:hover {
  opacity: 0.8;
}
.nav-breadcrumbs .breadcrumbs > span:not(:first-of-type) {
  padding-left: 3em;
  position: relative;
}
.nav-breadcrumbs .breadcrumbs > span:not(:first-of-type)::before {
  content: "";
  display: block;
  position: absolute;
  width: 0.5em;
  height: 1px;
  transform: rotate(0deg);
  background-color: #333;
  left: calc(0% + 1.25em);
  top: 50%;
  transform: translateY(-40%);
}
.nav-breadcrumbs .breadcrumbs .current-item {
  font-weight: 700;
  color: #5f5138;
  display: inline-block;
  max-width: 30em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wp-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: max(20px, min(2.3426061493vw, 32px));
}
.wp-pagination .navigation .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: max(8px, min(0.878477306vw, 12px));
}
.wp-pagination .navigation .nav-links .page-numbers {
  display: grid;
  align-content: center;
  justify-content: center;
  place-content: center;
  border: solid 2px #aaa;
  color: #333;
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: max(40px, min(3.8067349927vw, 52px));
  font-weight: 700;
  transition: all 0.1s linear;
}
.wp-pagination .navigation .nav-links .page-numbers.current {
  background-color: #649b1d;
  border-color: #649b1d;
  color: #fff;
}
.wp-pagination .navigation .nav-links .page-numbers:hover {
  background-color: #649b1d;
  border-color: #649b1d;
  color: #fff;
}
.wp-pagination .navigation .nav-links .next {
  display: none;
}
.wp-pagination .navigation .nav-links .prev {
  display: none;
}
.wp-pagination__button {
  aspect-ratio: 7/13;
  width: 1.25rem;
  fill: #aaa;
  pointer-events: none;
}
.wp-pagination__button.is-active {
  fill: #333;
  cursor: pointer;
  pointer-events: inherit;
}
.wp-pagination__button:not(.is-active) {
  opacity: 0.2;
}
.wp-pagination__button._prev {
  scale: -1 1;
}
.wp-pager {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: max(30px, min(3.6603221083vw, 50px));
}
.wp-pager a {
  color: #333;
  font-weight: 700;
  transition: all 0.1s linear;
}
.wp-pager a:hover {
  opacity: 0.8;
}
.wp-pager__button {
  opacity: 0.3;
  display: flex;
  align-items: center;
  gap: max(6px, min(0.5856515373vw, 8px));
}
.wp-pager__button .icon {
  aspect-ratio: 16/27;
  width: 0.5em;
}
.wp-pager__button:has(a) {
  opacity: 1;
}
.wp-pager__button._prev .icon {
  scale: -1 1;
}
.wp-pager__button._back2list a {
  display: flex;
  align-items: center;
  gap: max(15px, min(1.4641288433vw, 20px));
}
.wp-pager__button._back2list a .icon {
  aspect-ratio: 1/1;
  width: 1.5em;
}
.wp-pager__button._back2list a .text {
  line-height: 1;
}

.ttl-section {
  text-align: center;
  font-size: clamp(3.2rem, 2.566rem + 1.69vw, 5rem);
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  row-gap: 8px;
  line-height: 1.2;
}
.ttl-section .main {
  font-weight: 800;
  font-size: clamp(3.2rem, 2.566rem + 1.69vw, 5rem);
  color: #71b51a;
}
.ttl-section .sub {
  font-weight: 800;
  letter-spacing: 0.2em;
  font-size: clamp(1.2rem, 1.059rem + 0.376vw, 1.6rem);
}
.ttl-section._top-topic {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
}
.ttl-section._top-topic .main {
  color: #84c530;
  font-weight: 800;
  letter-spacing: 0;
  font-size: clamp(6rem, 3.535rem + 6.573vw, 13rem);
  line-height: 1;
}
.ttl-section._top-topic .sub {
  font-size: clamp(1.3rem, 1.194rem + 0.282vw, 1.6rem);
  padding-bottom: 1.5em;
}
.ttl-section._top-topic .ttl-section__text {
  display: flex;
  align-items: flex-end;
  gap: clamp(0.4rem, 0.259rem + 0.376vw, 0.8rem);
}
.ttl-section._top-topic .ttl-section__deco .wrap-komadori {
  position: relative;
  aspect-ratio: 362/398;
  width: clamp(5.6rem, 4.262rem + 3.568vw, 9.4rem);
  height: auto;
  pointer-events: none;
}
.ttl-section._top-topic .ttl-section__deco .wrap-komadori .komadori {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.ttl-section._top-topic .ttl-section__deco .wrap-komadori .line {
  position: absolute;
  width: 1000%;
  height: auto;
  top: -100%;
  left: 120%;
  max-width: none;
}
.ttl-section._top-strength {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.ttl-section._top-strength .ttl-section__deco {
  aspect-ratio: 107/143;
  width: clamp(6.8rem, 5.427rem + 3.662vw, 10.7rem);
  height: auto;
  padding-bottom: clamp(1rem, 0.648rem + 0.939vw, 2rem);
}
.ttl-section._top-strength .ttl-section__deco img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.ttl-section._top-strength .ttl-section__text {
  display: flex;
  flex-direction: column;
}
.ttl-section._top-strength .ttl-section__text .main {
  color: #fff;
}
.ttl-section._top-strength .ttl-section__text .sub {
  color: #fff;
}
.ttl-section._top-medical-info {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.ttl-section._top-medical-info::before {
  content: "";
  display: inline-block;
  width: 220%;
  height: auto;
  aspect-ratio: 588/503;
  background: url(../img/deco_ttl_medical_info.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%);
}
.ttl-section._top-medical-info .main {
  color: #f0723c;
  font-size: clamp(4rem, 2.873rem + 3.005vw, 7.2rem);
  line-height: 1;
  letter-spacing: 0.1em;
}
.ttl-section._top-medical-info .sub {
  margin-top: 1em;
}

.box-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  pointer-events: none;
}
.box-modal-container .box-modal {
  background-color: #fff;
  border-radius: 3px;
  min-width: 280px;
  max-width: 500px;
  padding: 20px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.box-modal-container .box-modal-bg {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
}
.box-modal-container.is-open {
  opacity: 1;
  pointer-events: inherit;
}

#modalVideo {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 2147483647;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transition: 0.5s;
}
#modalVideo.close {
  filter: opacity(0);
  visibility: hidden;
}
#modalVideo.open {
  filter: opacity(1);
  visibility: visible;
}
#modalVideo iframe {
  width: 64vw;
  height: 36vw;
  border-radius: 20px;
  overflow: hidden;
}

.js-modal-video-open {
  cursor: pointer;
}

.items-sns {
  display: flex;
  gap: 0.5em;
}
.items-sns .item a {
  display: block;
}
.items-sns .item a img {
  width: clamp(2.4rem, 2.118rem + 0.751vw, 3.2rem);
  height: auto;
  aspect-ratio: 1/1;
}

.items-mv-appeal {
  display: flex;
  align-items: flex-end;
  font-size: clamp(1rem, 0.789rem + 0.563vw, 1.6rem);
  width: -moz-fit-content;
  width: fit-content;
  margin-top: -5.0625em;
}
.items-mv-appeal .item {
  font-size: clamp(1rem, 0.789rem + 0.563vw, 1.6rem);
  display: grid;
  align-content: center;
  justify-content: center;
  place-content: center;
  grid-gap: 0.75em;
  gap: 0.75em;
  aspect-ratio: 1/1;
  width: 10.125em;
  height: auto;
  border-radius: 50%;
  border: solid clamp(0.2rem, 0.165rem + 0.094vw, 0.3rem) transparent;
  text-align: center;
  line-height: 1;
}
.items-mv-appeal .item:nth-child(even) {
  margin-bottom: 3.0375em;
}
.items-mv-appeal .item .title {
  font-weight: 800;
  font-size: 1.5em;
}
.items-mv-appeal .item .description {
  font-weight: 500;
}
.items-mv-appeal .item._title-is-large .title {
  font-size: 2em;
}

.items-info-with-image {
  width: 100%;
  display: grid;
  grid-gap: clamp(2rem, 1.648rem + 0.939vw, 3rem);
  gap: clamp(2rem, 1.648rem + 0.939vw, 3rem);
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.items-info-with-image > * {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 1;
  grid-gap: 0;
  gap: 0;
  align-items: start;
}
.items-info-with-image .item a:hover {
  opacity: 1;
}
.items-info-with-image .item a:hover .item__thumb img {
  scale: 1.1;
}
.items-info-with-image .item__thumb {
  border-radius: clamp(0.8rem, 0.518rem + 0.751vw, 1.6rem);
  overflow: hidden;
  border: 2px solid #ccc;
  aspect-ratio: 3/2;
  width: 100%;
  height: auto;
}
.items-info-with-image .item__thumb img {
  transition: scale 0.1s ease-in-out;
}
.items-info-with-image .item__text {
  padding: clamp(0.4rem, -0.163rem + 1.502vw, 2rem) clamp(0.2rem, -0.293rem + 1.315vw, 1.6rem);
}
.items-info-with-image .item__text .date {
  color: #649b1d;
  font-weight: 700;
}
.items-info-with-image .item__text .title {
  margin-top: 8px;
  font-size: clamp(1.4rem, 1.259rem + 0.376vw, 1.8rem);
}

.items-nav-global._in-header {
  display: flex;
  gap: clamp(0.4rem, -0.304rem + 1.878vw, 2.4rem);
}
.items-nav-global._in-header._fixed {
  gap: clamp(0.6rem, -3.929rem + 4.118vw, 2rem);
}
.items-nav-global._in-header._fixed .item__icon {
  width: clamp(2rem, 0.239rem + 4.695vw, 7rem);
}
.items-nav-global._in-header .item {
  flex-shrink: 0;
}
.items-nav-global._in-header .item:hover .item__head {
  opacity: 1;
}
.items-nav-global._in-header .item:hover .item__head .item__icon {
  scale: 1.15;
}
.items-nav-global._in-header .item__head {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.items-nav-global._in-header .item__body {
  background-color: #fff;
  border: solid 2px #7cbc29;
  border-radius: 8px;
  font-size: clamp(1.2rem, 1.13rem + 0.188vw, 1.4rem);
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1em;
}
.items-nav-global._in-header .item__body > * + * {
  margin-top: 0.5em;
}
.items-nav-global._in-header .item__body * {
  word-break: keep-all;
  white-space: nowrap;
}
.items-nav-global._in-header .item__icon {
  aspect-ratio: 80/70;
  width: clamp(2rem, -0.113rem + 5.634vw, 8rem);
  height: auto;
  transition: scale 0.1s ease-in-out;
  transform-origin: bottom center;
}
.items-nav-global._in-header .item__text {
  font-size: clamp(1rem, 0.894rem + 0.282vw, 1.3rem);
  text-align: center;
}
.items-nav-global._in-footer-pc > * + * {
  margin-top: 20px;
}
.items-nav-global._in-footer-pc .item__head {
  color: #649b1d;
  font-weight: 700;
}
.items-nav-global._in-footer-pc .item__body {
  font-size: clamp(1.3rem, 1.265rem + 0.094vw, 1.4rem);
  padding-left: 1em;
  margin-top: 0.5em;
}
.items-nav-global._in-footer-pc .item__body .item {
  padding-top: 0.25em;
  padding-bottom: 0.25em;
}
.items-nav-global._accordion > * {
  border-bottom: solid 1px #ccc;
}
.items-nav-global._accordion > *:first-child {
  border-top: solid 1px #ccc;
}
.items-nav-global._accordion .item__head {
  cursor: pointer;
  width: 100%;
  color: #649b1d;
  font-weight: 700;
  font-size: 1.6rem;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  padding-left: 0.25em;
  padding-right: 0.25em;
}
.items-nav-global._accordion .item__head a {
  color: #649b1d;
}
.items-nav-global._accordion .item__body {
  padding-left: 1em;
}
.items-nav-global._accordion .item__body .item {
  padding-top: 0.25em;
  padding-bottom: 0.25em;
}
.items-nav-global._accordion .item__body .item:last-child {
  padding-bottom: 0.75em;
}
.items-nav-global._accordion._in-drawer .item {
  border-color: #649b1d;
}
.items-nav-global._accordion._in-drawer .item__head a {
  color: #fff;
}
.items-nav-global._accordion._in-drawer .js-accordion-head::after {
  background-image: url("../img/icon_accordion_closer_white.svg");
}
.items-nav-global._accordion._in-drawer .js-accordion-head:not(.is-open)::after {
  background-image: url("../img/icon_accordion_opener_white.svg");
}

.items-information .item {
  border-bottom: dashed 1px #888;
}
.items-information .item a {
  display: block;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: clamp(1.2rem, 0.918rem + 0.751vw, 2rem);
  padding-right: clamp(1.2rem, 0.918rem + 0.751vw, 2rem);
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 0.918rem + 0.751vw, 2rem);
}
.items-information .item__head {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 1.189rem + 0.563vw, 2rem);
  flex-shrink: 0;
}
.items-information .item__head .date {
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 600;
}
.items-information .item__head .cat {
  font-size: 1.4rem;
  font-weight: 600;
}
.items-information .item__body .title {
  font-weight: 500;
  font-size: clamp(1.6rem, 1.53rem + 0.188vw, 1.8rem);
}
.items-information .item._no-item {
  border-bottom: none;
}
.items-top-strength .item {
  display: flex;
}
.items-top-strength .item__thumb {
  aspect-ratio: 1/1;
  width: clamp(20rem, 12.958rem + 18.779vw, 40rem);
  height: auto;
  border-radius: 50%;
  border: solid clamp(0.3rem, 0.23rem + 0.188vw, 0.5rem) #fff;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.items-top-strength .item__text {
  background-color: #f2f8ea;
  padding: clamp(2.4rem, 1.485rem + 2.441vw, 5rem);
  padding-top: clamp(2rem, 1.648rem + 0.939vw, 3rem);
  position: relative;
  z-index: 1;
}
.items-top-strength .item__text .title {
  color: #555;
  font-size: clamp(2.2rem, 1.637rem + 1.502vw, 3.8rem);
  font-weight: 800;
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
}
.items-top-strength .item__text .title h3 {
  padding-top: 0.5em;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
.items-top-strength .item__text .no {
  color: #f0723c;
  font-size: clamp(4rem, 3.296rem + 1.878vw, 6rem);
  font-weight: 800;
  line-height: 1;
}
.items-top-strength .item__text .description {
  line-height: 1.7;
  margin-top: clamp(2rem, 1.296rem + 1.878vw, 4rem);
}

.items-treatment-info {
  position: static;
}
.items-treatment-info .item {
  font-size: clamp(1rem, 0.16rem + 1vw, 1.6rem);
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
}
.items-treatment-info .item a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 5em;
  padding: 0.35em 0.75em 0.45em;
  border: solid 2px #333;
  border-radius: clamp(0.3rem, 0.124rem + 0.469vw, 0.8rem);
  overflow: hidden;
  font-weight: 700;
  text-align: center;
  transition: scale 0.1s ease-in-out;
}
.items-treatment-info .item a:hover {
  opacity: 1;
  scale: 1.1;
}
.items-treatment-info._general a {
  color: #fff;
  background-color: #f0723c;
  border-color: #f0723c;
}
.items-treatment-info._cosmetic a {
  color: #ac8331;
  background-color: #fff;
  border-color: #ac8331;
}
.items-treatment-info._for-men {
  display: flex;
  justify-content: flex-end;
  gap: 1em;
}
.items-treatment-info._for-men .item {
  font-size: clamp(1.4rem, 1.33rem + 0.188vw, 1.6rem);
  position: relative;
}
.items-treatment-info._for-men a {
  color: #649b1d;
  background-color: #fff;
  border-color: #649b1d;
}

.items-banner-medical {
  width: 100%;
  display: grid;
  grid-gap: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  gap: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.items-banner-medical > * {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 1;
  grid-gap: 0;
  gap: 0;
  align-items: start;
}
.items-banner-medical .item a {
  display: flex;
  border: solid 2px #d4cbb1;
  border-radius: clamp(2rem, 1.648rem + 0.939vw, 3rem);
  overflow: hidden;
  background-color: #fff;
}
.items-banner-medical .item a:hover {
  opacity: 1;
}
.items-banner-medical .item a:hover .item__thumb img {
  scale: 1.1;
}
.items-banner-medical .item__thumb {
  flex-shrink: 0;
  aspect-ratio: 1/1;
  width: clamp(14rem, 12.592rem + 3.756vw, 18rem);
}
.items-banner-medical .item__thumb img {
  transition: scale 0.1s ease-in-out;
}
.items-banner-medical .item__text {
  padding-left: clamp(1.6rem, 1.107rem + 1.315vw, 3rem);
  padding-right: clamp(1.6rem, 1.107rem + 1.315vw, 3rem);
  padding-top: clamp(3rem, 2.648rem + 0.939vw, 4rem);
  padding-bottom: clamp(3rem, 2.648rem + 0.939vw, 4rem);
  width: 100%;
}
.items-banner-medical .item__text .title {
  font-size: clamp(1.6rem, 1.53rem + 0.188vw, 1.8rem);
  font-weight: 700;
  line-height: 1.5;
  font-size: clamp(1.4rem, 1.118rem + 0.751vw, 2.2rem);
}
.items-banner-medical .item__text::after {
  content: "";
  display: inline-block;
  width: 2em;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/icon_arrow_maru_green.svg) no-repeat center center;
  background-size: contain;
  display: block;
  margin-top: 0.5em;
  margin-left: auto;
}

.items-nav-in-page {
  width: -moz-fit-content;
  width: fit-content;
}
.items-nav-in-page > * + * {
  margin-top: 0.5em;
}
.items-nav-in-page .item a {
  display: flex;
  gap: 0.75em;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  color: #fff;
}
.items-nav-in-page .item a::after {
  content: "";
  display: inline-block;
  width: 0.75em;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/icon_arrow_simple_yellow.svg) no-repeat center center;
  background-size: contain;
  transition: translate 0.1s linear;
  translate: -0.25em 0;
}
.items-nav-in-page .item a:hover {
  opacity: 1;
}
.items-nav-in-page .item a:hover::after {
  translate: 0 0;
  opacity: 1;
}

.items-faq > * + * {
  margin-top: clamp(1.6rem, 1.459rem + 0.376vw, 2rem);
}
.items-faq .item {
  background-color: #fff;
  border-radius: clamp(0.8rem, 0.518rem + 0.751vw, 1.6rem);
  padding: 1em;
}
.items-faq .item__head {
  cursor: pointer;
}
.items-faq .item__head:not(.is-open)::after {
  background-image: url("../img/icon_accordion_opener_green.svg");
}
.items-faq .item__head::after {
  background-image: url("../img/icon_accordion_closer_green.svg");
}
.items-faq .item .answer,
.items-faq .item .question {
  display: flex;
  gap: 1em;
  align-items: center;
}
.items-faq .item .answer::before,
.items-faq .item .question::before {
  flex-shrink: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 1.448rem + 0.939vw, 2.8rem);
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  width: 2em;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: solid 2px #7cbc29;
}
.items-faq .item .question {
  font-weight: 500;
  font-size: clamp(1.4rem, 1.259rem + 0.376vw, 1.8rem);
  line-height: 1.3;
  padding-right: 1.25em;
}
.items-faq .item .question::before {
  content: "Q";
  color: #fff;
  background-color: #7cbc29;
}
.items-faq .item .answer {
  padding-top: 1em;
}
.items-faq .item .answer::before {
  content: "A";
  color: #649b1d;
  background-color: #fff;
  border-color: #649b1d;
}

.l-wrap-by-ownwidth {
  container-type: inline-size;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1em;
}
.l-wrap-by-ownwidth > * {
  flex: 1 1 calc(100% - 1em);
}
.l-wrap-by-ownwidth._w700-g24-48 {
  gap: max(24px, min(3.513909224vw, 48px));
}
@container (width >= 700px) {
  .l-wrap-by-ownwidth._w700-g24-48 > * {
    flex: 1 1 calc(50% - max(24px, min(3.513909224vw, 48px)));
  }
}
.l-wrap-by-ownwidth._w800-g24-48 {
  gap: max(24px, min(3.513909224vw, 48px));
}
@container (width >= 800px) {
  .l-wrap-by-ownwidth._w800-g24-48 > * {
    flex: 1 1 calc(50% - max(24px, min(3.513909224vw, 48px)));
  }
}

.carousel-mv {
  overflow: hidden;
}
.carousel-mv .items-mv-images .item * {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.carousel-mv__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(1.6rem, 1.318rem + 0.751vw, 2.4rem);
  width: -moz-fit-content !important;
  width: fit-content !important;
}
.carousel-mv__pagination .swiper-pagination-bullet {
  aspect-ratio: 1/1;
  width: clamp(1.2rem, 1.059rem + 0.376vw, 1.6rem);
  height: auto;
  opacity: 1;
  background-color: #b5b5b5;
  transition: all 0.3s ease;
  caret-color: transparent;
}
.carousel-mv__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #7cbc29;
  width: clamp(1.6rem, 1.318rem + 0.751vw, 2.4rem);
}

.effect-fadeout-zoomup .swiper-slide-active img,
.effect-fadeout-zoomup .swiper-slide-duplicate-active img,
.effect-fadeout-zoomup .swiper-slide-prev img {
  width: 100%;
  height: auto;
  animation: mvZoomUp 8s linear 0s normal both;
}
@keyframes mvZoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.effect-pan .swiper-slide-duplicate-active > *,
.effect-pan .swiper-slide-prev > *,
.effect-pan .swiper-slide-active > * {
  animation: pan_r2l 8s linear 0s 1 normal both;
}
@keyframes pan_l2r {
  0% {
    transform: scale(1.06) translateX(-3%);
  }
  100% {
    transform: scale(1.06) translateX(3%);
  }
}
@keyframes pan_r2l {
  0% {
    transform: scale(1.06) translateX(3%);
  }
  100% {
    transform: scale(1.06) translateX(-3%);
  }
}

.js-tab-content:not(.is-active) {
  display: none;
}

.js-accordion-head {
  position: relative;
}
.js-accordion-head::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/icon_accordion_closer_black.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
}
.js-accordion-head:not(.is-open)::after {
  background-image: url("../img/icon_accordion_opener_black.svg");
}

.js-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
  box-sizing: border-box;
  position: relative;
}
.js-accordion-body:not(.is-open) {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.c-maru-arrow-down {
  width: 64px;
  height: 64px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  position: relative;
  border-radius: 50%;
  margin-top: -20px;
  background-color: #000;
  z-index: 2;
}
.c-maru-arrow-down._large {
  width: 80px;
  height: 80px;
}
.c-maru-arrow-down img {
  aspect-ratio: 1/1;
  width: 33%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-bourbon {
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  padding: 0.45em 1.25em 0.5em;
  border: solid 2px transparent;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #eee;
  color: inherit;
  border-radius: 9999px;
}
.c-bourbon._frame {
  background-color: transparent;
  outline: solid 2px currentColor;
  outline-offset: calc -2px;
}

.c-marked-text {
  font-size: max(1.9rem, min(1.756954612vw, 2.4rem));
  font-weight: 900;
  overflow: hidden;
}
.c-marked-text > span {
  background-color: #ffea00;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  display: inline;
  line-height: 2.4;
  padding: 0.25em 0.5em;
  text-align: center;
}

.logo-corporate a {
  color: #ec6c00;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: clamp(0.2rem, 0.059rem + 0.376vw, 0.6rem);
}
.logo-corporate a .logo {
  aspect-ratio: 1382/1030;
  width: clamp(7rem, 4.606rem + 6.385vw, 13.8rem);
  height: auto;
  display: block;
}
.logo-corporate a .name {
  font-weight: 800;
  font-size: clamp(1.3rem, 1.23rem + 0.188vw, 1.5rem);
}
.logo-corporate._in-header-fixed a .logo {
  width: clamp(6rem, 5.085rem + 2.441vw, 8.6rem);
}
.logo-corporate._in-header-fixed a .name {
  font-size: clamp(1rem, -1.5rem + 2.083vw, 1.5rem);
}
.logo-corporate._in-footer a .logo {
  width: clamp(8.6rem, 7.755rem + 2.254vw, 11rem);
}
.logo-corporate._in-footer a .name {
  font-size: clamp(1.6rem, 1.494rem + 0.282vw, 1.9rem);
}

table {
  width: 100%;
  caret-color: transparent;
  border-collapse: separate;
}
.tbl-weekly-calendar {
  border-collapse: separate;
  box-sizing: border-box;
  max-width: 550px;
  width: 100%;
}
.tbl-weekly-calendar._general thead {
  background-color: #f0723c;
}
.tbl-weekly-calendar._cosmetic thead {
  background-color: #d3b04c;
}
.tbl-weekly-calendar thead {
  color: #fff;
}
.tbl-weekly-calendar thead th {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  font-size: clamp(1.5rem, 1.254rem + 0.657vw, 2.2rem);
  border-top: solid 2px #ddd;
}
.tbl-weekly-calendar thead th.title {
  font-size: clamp(1.4rem, 1.189rem + 0.563vw, 2rem);
  width: 40%;
}
.tbl-weekly-calendar thead th:first-child {
  border-left: solid 2px #ddd;
  border-top-left-radius: clamp(0.6rem, 0.53rem + 0.188vw, 0.8rem);
}
.tbl-weekly-calendar thead th:last-child {
  border-right: solid 2px #ddd;
  border-top-right-radius: clamp(0.6rem, 0.53rem + 0.188vw, 0.8rem);
}
.tbl-weekly-calendar tbody {
  background-color: #fff;
}
.tbl-weekly-calendar tbody tr:last-child *:first-child {
  border-bottom-left-radius: clamp(0.6rem, 0.53rem + 0.188vw, 0.8rem);
}
.tbl-weekly-calendar tbody tr:last-child *:last-child {
  border-bottom-right-radius: clamp(0.6rem, 0.53rem + 0.188vw, 0.8rem);
}
.tbl-weekly-calendar tbody tr th:first-child {
  border-left: solid 2px #ddd;
}
.tbl-weekly-calendar tbody th {
  font-size: clamp(1.4rem, 1.048rem + 0.939vw, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.tbl-weekly-calendar tbody th,
.tbl-weekly-calendar tbody td {
  border-right: solid 2px #ddd;
  border-bottom: solid 2px #ddd;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  line-height: 1;
}
.tbl-weekly-calendar tbody th img,
.tbl-weekly-calendar tbody td img {
  display: inline-block;
  aspect-ratio: 1/1;
  width: 2em;
}
.tbl-weekly-calendar th,
.tbl-weekly-calendar td {
  text-align: center;
  vertical-align: middle;
}

.tbl-xxxxx._cl-12-29-59 tr th {
  width: 12%;
}
.tbl-xxxxx._cl-12-29-59 tr td:nth-of-type(1) {
  width: 29%;
}
.tbl-xxxxx._cl-12-29-59 tr td:nth-of-type(2) {
  width: 59%;
}

.tbl-vertical-when-sp {
  writing-mode: vertical-lr;
}
.tbl-vertical-when-sp td,
.tbl-vertical-when-sp th {
  writing-mode: horizontal-tb;
}

section.block {
  position: relative;
}
section.block._pt30_40 {
  padding-top: max(30px, min(2.9282576867vw, 40px));
}
section.block._pt40-60 {
  padding-top: max(40px, min(4.39238653vw, 60px));
}
section.block._pt60-80 {
  padding-top: max(60px, min(5.8565153734vw, 80px));
}
section.block._pt60-120 {
  padding-top: max(60px, min(8.78477306vw, 120px));
}
section.block._pt80-160 {
  padding-top: max(80px, min(11.7130307467vw, 160px));
}
section.block._pb60-120 {
  padding-bottom: max(60px, min(8.78477306vw, 120px));
}
section.block._pb80-120 {
  padding-bottom: max(80px, min(8.78477306vw, 120px));
}
section.block._pb80-160 {
  padding-bottom: max(80px, min(11.7130307467vw, 160px));
}
section.block._pb90-180 {
  padding-bottom: max(90px, min(13.17715959vw, 180px));
}
section.block._pb200_320 {
  padding-bottom: max(200px, min(23.4260614934vw, 320px));
}
section.block._pb240_480 {
  padding-bottom: max(240px, min(35.1390922401vw, 480px));
}

.c-marquee-texts {
  color: #005faf;
  font-size: max(4rem, min(7.3206442167vw, 10rem));
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  line-height: 1;
  overflow: hidden;
  pointer-events: none;
  width: 100%;
}
.c-marquee-texts > .text {
  pointer-events: none;
  display: block;
  display: flex;
  padding-left: 0.25em;
  gap: 0.25em;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.c-marquee-texts > .text > * {
  display: block;
}

.c-loop-slider-by-over3child {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}
.c-loop-slider-by-over3child > * {
  padding-left: max(15px, min(2.196193265vw, 30px));
  animation: loop-slider 50s linear infinite;
}
@keyframes loop-slider {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}

.u-none,
.u-misai {
  display: none !important;
}

.u-screen-reader-text,
.screen-reader-text {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(0px 0px 99.9% 99.9%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
}

.u-clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.u-fs14_16 {
  font-size: max(1.4rem, min(1.1713030747vw, 1.6rem)) !important;
}

.u-fs28_32 {
  font-size: max(2.8rem, min(2.3426061493vw, 3.2rem)) !important;
}

.u-lh10 {
  line-height: 1 !important;
}

.u-lh11 {
  line-height: 1.1 !important;
}

.u-lh12 {
  line-height: 1.2 !important;
}

.u-lh15 {
  line-height: 1.5 !important;
}

.u-lh17 {
  line-height: 1.7 !important;
}

.u-lh18 {
  line-height: 1.8 !important;
}

.u-lh20 {
  line-height: 2 !important;
}

.u-fw700 {
  font-weight: 700 !important;
}

.u-tc-red {
  color: #b70000 !important;
}

.u-tc-orange {
  color: #ff6b00 !important;
}

.u-tc-green {
  color: #7cbc29 !important;
}

.u-tc-black {
  color: #000 !important;
}

.u-tc-white {
  color: #fff !important;
}

.u-tc-pink {
  color: #ff016a !important;
}

.u-tc-blue {
  color: #00c8f8 !important;
}

.u-kadomaru {
  overflow: hidden;
  border-radius: 1em;
  isolation: isolate;
}
.u-kadomaru._s {
  border-radius: max(4px, min(0.7320644217vw, 10px));
}
.u-kadomaru._m {
  border-radius: max(10px, min(1.4641288433vw, 20px));
}
.u-kadomaru._l {
  border-radius: max(30px, min(2.9282576867vw, 40px));
}

.u-tal {
  text-align: left !important;
}

.u-tac {
  text-align: center !important;
}

.u-tar {
  text-align: right !important;
}

.u-pb0 {
  padding-bottom: 0 !important;
}

.u-pb40_60 {
  padding-bottom: max(40px, min(4.39238653vw, 60px)) !important;
}

.u-pb40_80 {
  padding-bottom: max(40px, min(5.8565153734vw, 80px)) !important;
}

.u-pb40_90 {
  padding-bottom: max(40px, min(6.588579795vw, 90px)) !important;
}

.u-pb60_130 {
  padding-bottom: max(60px, min(9.5168374817vw, 130px)) !important;
}

.u-pb70_120 {
  padding-bottom: max(70px, min(8.78477306vw, 120px)) !important;
}

.u-pb80_120 {
  padding-bottom: max(80px, min(8.78477306vw, 120px)) !important;
}

.u-pb100_140 {
  padding-bottom: max(100px, min(10.2489019034vw, 140px)) !important;
}

.u-pb100_200 {
  padding-bottom: max(140px, min(14.6412884334vw, 200px)) !important;
}

.u-pt0 {
  padding-top: 0 !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pt60 {
  padding-top: 60px !important;
}

.u-pt60_100 {
  padding-top: max(60px, min(7.3206442167vw, 100px)) !important;
}

.u-pt60_120 {
  padding-top: max(60px, min(8.78477306vw, 120px)) !important;
}

.u-pt64_120 {
  padding-top: max(64px, min(8.78477306vw, 120px)) !important;
}

.u-pt70_80 {
  padding-top: max(70px, min(5.8565153734vw, 80px)) !important;
}

.u-pt80_120 {
  padding-top: max(80px, min(8.78477306vw, 120px)) !important;
}

.u-pt100_140 {
  padding-top: max(100px, min(10.2489019034vw, 140px)) !important;
}

.u-mt1em {
  margin-top: 1em !important;
}

.u-mt0 {
  margin-top: 0 !important;
}

.u-mt5_10 {
  margin-top: max(5px, min(0.7320644217vw, 10px)) !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt10_15 {
  margin-top: max(10px, min(1.0980966325vw, 15px)) !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mt15_20 {
  margin-top: max(15px, min(1.4641288433vw, 20px)) !important;
}

.u-mt16_24 {
  margin-top: max(16px, min(1.756954612vw, 24px)) !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mt20_30 {
  margin-top: max(20px, min(2.196193265vw, 30px)) !important;
}

.u-mt20_40 {
  margin-top: max(20px, min(2.9282576867vw, 40px)) !important;
}

.u-mt20_50 {
  margin-top: max(20px, min(3.6603221083vw, 50px)) !important;
}

.u-mt20_60 {
  margin-top: max(20px, min(4.39238653vw, 60px)) !important;
}

.u-mt24 {
  margin-top: 24px !important;
}

.u-mt24_48 {
  margin-top: max(24px, min(3.513909224vw, 48px)) !important;
}

.u-mt25_30 {
  margin-top: max(25px, min(2.196193265vw, 30px)) !important;
}

.u-mt25_60 {
  margin-top: max(25px, min(4.39238653vw, 60px)) !important;
}

.u-mt30_50 {
  margin-top: max(30px, min(3.6603221083vw, 50px)) !important;
}

.u-mt30_60 {
  margin-top: max(30px, min(4.39238653vw, 60px)) !important;
}

.u-mt30_70 {
  margin-top: max(30px, min(5.1244509517vw, 70px)) !important;
}

.u-mt30_40 {
  margin-top: max(30px, min(2.9282576867vw, 40px)) !important;
}

.u-mt32 {
  margin-top: 32px !important;
}

.u-mt32_64 {
  margin-top: max(32px, min(4.6852122987vw, 64px)) !important;
}

.u-mt35_40 {
  margin-top: max(35px, min(2.9282576867vw, 40px)) !important;
}

.u-mt35_50 {
  margin-top: max(35px, min(3.6603221083vw, 50px)) !important;
}

.u-mt35_55 {
  margin-top: max(35px, min(4.0263543192vw, 55px)) !important;
}

.u-mt35_80 {
  margin-top: max(35px, min(5.8565153734vw, 80px)) !important;
}

.u-mt40_50 {
  margin-top: max(40px, min(3.6603221083vw, 50px)) !important;
}

.u-mt40_60 {
  margin-top: max(40px, min(4.39238653vw, 60px)) !important;
}

.u-mt40_64 {
  margin-top: max(40px, min(4.6852122987vw, 64px)) !important;
}

.u-mt40_70 {
  margin-top: max(40px, min(5.1244509517vw, 70px)) !important;
}

.u-mt40_80 {
  margin-top: max(40px, min(5.8565153734vw, 80px)) !important;
}

.u-mt40_90 {
  margin-top: max(40px, min(6.588579795vw, 90px)) !important;
}

.u-mt40_100 {
  margin-top: max(40px, min(7.3206442167vw, 100px)) !important;
}

.u-mt45_70 {
  margin-top: max(45px, min(5.1244509517vw, 70px)) !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mt50_60 {
  margin-top: max(50px, min(4.39238653vw, 60px)) !important;
}

.u-mt50_70 {
  margin-top: max(50px, min(5.1244509517vw, 70px)) !important;
}

.u-mt50_80 {
  margin-top: max(50px, min(5.8565153734vw, 80px)) !important;
}

.u-mt50_100 {
  margin-top: max(50px, min(7.3206442167vw, 100px)) !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-mt60_80 {
  margin-top: max(60px, min(5.8565153734vw, 80px)) !important;
}

.u-mt60_90 {
  margin-top: max(60px, min(6.588579795vw, 90px)) !important;
}

.u-mt60_100 {
  margin-top: max(60px, min(7.3206442167vw, 100px)) !important;
}

.u-mt60_120 {
  margin-top: max(60px, min(8.78477306vw, 120px)) !important;
}

.u-mt64 {
  margin-top: 64px !important;
}

.u-mt40_120 {
  margin-top: max(40px, min(8.78477306vw, 120px)) !important;
}

.u-mt70_100 {
  margin-top: max(70px, min(7.3206442167vw, 100px)) !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-mt80 {
  margin-top: 80px !important;
}

.u-mt80_120 {
  margin-top: max(80px, min(8.78477306vw, 120px)) !important;
}

.u-mt80_160 {
  margin-top: max(80px, min(11.7130307467vw, 160px)) !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mb70_100 {
  margin-bottom: max(70px, min(7.3206442167vw, 100px)) !important;
}

.u-mt-onlysp10 {
  margin-top: 10px;
}

.u-mt-onlysp20 {
  margin-top: 20px;
}

.u-mi-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.u-remove-mt-1st-child > *:first-child {
  margin-top: 0 !important;
}

.u-fill-parent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.u-img-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
}
.u-img-frame > * {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.u-endpoint-of-linkto {
  position: absolute;
  left: 0;
  scroll-margin-top: 140px;
  height: 1px;
  width: 1px;
  visibility: hidden;
  pointer-events: none;
}

.with-shadow {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  transition: all 0.2s ease-in-out;
}
.with-shadow:hover {
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}

@keyframes kf_fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes kf_fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes kf_popin {
  0% {
    scale: 1 0.9;
    translate: 0 0;
    opacity: 0;
  }
  30% {
    scale: 1 1.2;
    translate: 0 -30%;
    opacity: 1;
  }
  100% {
    scale: 1 1;
    translate: 0 0;
    opacity: 1;
  }
}
@keyframes kf_nyokittoin {
  0% {
    translate: 0 100%;
  }
  100% {
    translate: 0 0%;
  }
}
.js-put-fadein {
  transition: all 0.5s ease;
}
.js-put-fadein:not(.is-played) {
  translate: 0 30px;
  opacity: 0;
}

.js-put-fadein-static {
  transition: all 0.5s 0.1s ease;
}
.js-put-fadein-static:not(.is-played) {
  translate: 0 0px;
  opacity: 0;
}

.js-put-popin {
  opacity: 0;
}
.js-put-popin.is-played {
  animation: kf_popin 1s ease forwards;
}

.js-put-nyokittoin {
  translate: 0 100%;
  transform-origin: center bottom;
}
.js-put-nyokittoin.is-played {
  animation: kf_nyokittoin 1s ease forwards;
}

.js-put-samidare-fadein-to-child > * {
  transition: all 0.5s ease;
}
.js-put-samidare-fadein-to-child > *:nth-child(1) {
  transition-delay: 0.15s;
}
.js-put-samidare-fadein-to-child > *:nth-child(2) {
  transition-delay: 0.3s;
}
.js-put-samidare-fadein-to-child > *:nth-child(3) {
  transition-delay: 0.45s;
}
.js-put-samidare-fadein-to-child > *:nth-child(4) {
  transition-delay: 0.6s;
}
.js-put-samidare-fadein-to-child > *:nth-child(5) {
  transition-delay: 0.75s;
}
.js-put-samidare-fadein-to-child > *:nth-child(6) {
  transition-delay: 0.9s;
}
.js-put-samidare-fadein-to-child > *:nth-child(7) {
  transition-delay: 1.05s;
}
.js-put-samidare-fadein-to-child > *:nth-child(8) {
  transition-delay: 1.2s;
}
.js-put-samidare-fadein-to-child > *:nth-child(9) {
  transition-delay: 1.35s;
}
.js-put-samidare-fadein-to-child > *:nth-child(10) {
  transition-delay: 1.5s;
}
.js-put-samidare-fadein-to-child > *:nth-child(11) {
  transition-delay: 1.65s;
}
.js-put-samidare-fadein-to-child > *:nth-child(12) {
  transition-delay: 1.8s;
}
.js-put-samidare-fadein-to-child > *:nth-child(13) {
  transition-delay: 1.95s;
}
.js-put-samidare-fadein-to-child > *:nth-child(14) {
  transition-delay: 2.1s;
}
.js-put-samidare-fadein-to-child > *:nth-child(15) {
  transition-delay: 2.25s;
}
.js-put-samidare-fadein-to-child > *:nth-child(16) {
  transition-delay: 2.4s;
}
.js-put-samidare-fadein-to-child > *:nth-child(17) {
  transition-delay: 2.55s;
}
.js-put-samidare-fadein-to-child > *:nth-child(18) {
  transition-delay: 2.7s;
}
.js-put-samidare-fadein-to-child > *:nth-child(19) {
  transition-delay: 2.85s;
}
.js-put-samidare-fadein-to-child > *:nth-child(20) {
  transition-delay: 3s;
}
.js-put-samidare-fadein-to-child > *:nth-child(21) {
  transition-delay: 3.15s;
}
.js-put-samidare-fadein-to-child > *:nth-child(22) {
  transition-delay: 3.3s;
}
.js-put-samidare-fadein-to-child > *:nth-child(23) {
  transition-delay: 3.45s;
}
.js-put-samidare-fadein-to-child > *:nth-child(24) {
  transition-delay: 3.6s;
}
.js-put-samidare-fadein-to-child > *:nth-child(25) {
  transition-delay: 3.75s;
}
.js-put-samidare-fadein-to-child > *:nth-child(26) {
  transition-delay: 3.9s;
}
.js-put-samidare-fadein-to-child > *:nth-child(27) {
  transition-delay: 4.05s;
}
.js-put-samidare-fadein-to-child > *:nth-child(28) {
  transition-delay: 4.2s;
}
.js-put-samidare-fadein-to-child > *:nth-child(29) {
  transition-delay: 4.35s;
}
.js-put-samidare-fadein-to-child > *:nth-child(30) {
  transition-delay: 4.5s;
}
.js-put-samidare-fadein-to-child:not(.is-played) > * {
  translate: 0 30px;
  opacity: 0;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(1) {
  transition-delay: 0.3s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(2) {
  transition-delay: 0.6s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(3) {
  transition-delay: 0.9s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(4) {
  transition-delay: 1.2s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(5) {
  transition-delay: 1.5s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(6) {
  transition-delay: 1.8s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(7) {
  transition-delay: 2.1s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(8) {
  transition-delay: 2.4s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(9) {
  transition-delay: 2.7s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(10) {
  transition-delay: 3s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(11) {
  transition-delay: 3.3s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(12) {
  transition-delay: 3.6s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(13) {
  transition-delay: 3.9s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(14) {
  transition-delay: 4.2s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(15) {
  transition-delay: 4.5s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(16) {
  transition-delay: 4.8s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(17) {
  transition-delay: 5.1s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(18) {
  transition-delay: 5.4s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(19) {
  transition-delay: 5.7s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(20) {
  transition-delay: 6s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(21) {
  transition-delay: 6.3s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(22) {
  transition-delay: 6.6s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(23) {
  transition-delay: 6.9s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(24) {
  transition-delay: 7.2s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(25) {
  transition-delay: 7.5s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(26) {
  transition-delay: 7.8s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(27) {
  transition-delay: 8.1s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(28) {
  transition-delay: 8.4s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(29) {
  transition-delay: 8.7s;
}
.js-put-samidare-fadein-to-child._delay03s > *:nth-child(30) {
  transition-delay: 9s;
}

/*-----------------------------------------------------
  TOPのMV
  -----------------------------------------------------*/
/*-----------------------------------------------------
  採用TOPのMV
  -----------------------------------------------------*/
.js-change-scroll-direction__sticky-wrap {
  position: sticky !important;
  overflow: hidden;
  top: 0;
  left: 0;
}
.js-change-scroll-direction__contents {
  width: -moz-fit-content;
  width: fit-content;
  will-change: transform;
  backface-visibility: hidden;
  transition: transform 0.1s linear;
}

.js-sticky-menu-sp__toggler::after {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/icon_sticky_spmenu_closer.svg) no-repeat center center;
  background-size: contain;
}
.js-sticky-menu-sp__toggler:not(.is-open)::after {
  background-image: url("../img/icon_sticky_spmenu_opener.svg");
}
.js-sticky-menu-sp__contents {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
  box-sizing: border-box;
  position: relative;
}
.js-sticky-menu-sp__contents:not(.is-open) {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.biz-calendar-custom #biz_calendar {
  max-width: none;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 700;
}
.biz-calendar-custom #biz_calendar table.bizcal {
  border: none;
  border-collapse: separate;
  border-spacing: 4px;
  font-size: max(1.4rem, min(1.1713030747vw, 2.4rem));
  margin: 0;
}
.biz-calendar-custom #biz_calendar table.bizcal th {
  background-color: transparent;
  color: #666666;
}
.biz-calendar-custom #biz_calendar table.bizcal th:first-child {
  color: #fb7f22;
}
.biz-calendar-custom #biz_calendar table.bizcal th:nth-last-of-type(1) {
  color: #469de2;
}
.biz-calendar-custom #biz_calendar table.bizcal td {
  background-color: #f7f7f7;
  color: #666666;
  padding: 0.75em 0;
}
.biz-calendar-custom #biz_calendar table.bizcal td:empty {
  background-color: #ededed;
}
.biz-calendar-custom #biz_calendar table.bizcal td.today {
  color: #333;
  -webkit-text-decoration: none;
  text-decoration: none;
  font-weight: 900;
  position: relative;
}
.biz-calendar-custom #biz_calendar table.bizcal td.today::after {
  content: "";
  display: block;
  position: absolute;
  width: 0.25em;
  height: 0.25em;
  transform: rotate(0deg);
  background-color: #000;
  top: 75%;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 50%;
}
.biz-calendar-custom #biz_calendar table.bizcal td.today.holiday::after {
  background-color: #fff;
}
.biz-calendar-custom #biz_calendar table.bizcal td.holiday {
  background-color: #fb7f22;
  color: #f7f7f7;
}
.biz-calendar-custom #biz_calendar table.bizcal td.eventday {
  background-color: #000;
  color: #f7f7f7;
}
.biz-calendar-custom #biz_calendar table.bizcal .calmonth {
  color: #333;
  background-color: transparent;
  font-size: max(1.8rem, min(1.317715959vw, 2.2rem));
  padding-left: 0.5em;
}
.biz-calendar-custom #biz_calendar table.bizcal .calbtn {
  background-color: transparent;
  position: relative;
}
.biz-calendar-custom #biz_calendar table.bizcal .calbtn img {
  display: none;
}
.biz-calendar-custom #biz_calendar table.bizcal .calbtn.down-img::after {
  content: "";
  display: inline-block;
  width: 2.5em;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/_ui_parts/btn_calendar_prev.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.biz-calendar-custom #biz_calendar table.bizcal .calbtn.today-img::after {
  content: "";
  display: inline-block;
  width: 2.5em;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/_ui_parts/btn_calendar_home.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.biz-calendar-custom #biz_calendar table.bizcal .calbtn.up-img::after {
  content: "";
  display: inline-block;
  width: 2.5em;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/_ui_parts/btn_calendar_next.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.biz-calendar-custom #biz_calendar p {
  padding-left: 4px;
  font-weight: 500;
  margin-top: 20px;
  margin-right: 1.5em;
  display: inline-block;
}
.biz-calendar-custom #biz_calendar p span.boxholiday {
  background-color: #fb7f22;
}
.biz-calendar-custom #biz_calendar p span.boxeventday {
  background-color: #000;
}
.biz-calendar-custom__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.biz-calendar-custom__body > li.widget {
  list-style: none;
}
.biz-calendar-custom__body > li.widget::marker {
  content: none;
}
.biz-calendar-custom__body .widgettitle {
  display: none;
}

.my-smf-container input[type=text],
.my-smf-container input[type=email],
.my-smf-container input[type=tel],
.my-smf-container .smf-form .smf-select-control__control,
.my-smf-container textarea,
.my-smf-container .smf-form .smf-textarea-control__control {
  font-size: 1.6rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: max(16px, min(1.4641288433vw, 20px)) max(20px, min(2.196193265vw, 30px)) max(15px, min(1.317715959vw, 18px));
  border: solid 1px #f0f0f0;
  border-radius: max(3px, min(0.3660322108vw, 5px));
  width: 100%;
  font-weight: 500;
  background-color: #f0f0f0;
  caret-color: auto;
  line-height: 1.5;
  box-shadow: none;
}
.my-smf-container input[type=text]:focus,
.my-smf-container input[type=email]:focus,
.my-smf-container input[type=tel]:focus,
.my-smf-container .smf-form .smf-select-control__control:focus,
.my-smf-container textarea:focus,
.my-smf-container .smf-form .smf-textarea-control__control:focus {
  background-color: #fff;
  border-color: #c1c1c1;
}
.my-smf-container input[type=text]::-moz-placeholder, .my-smf-container input[type=email]::-moz-placeholder, .my-smf-container input[type=tel]::-moz-placeholder, .my-smf-container .smf-form .smf-select-control__control::-moz-placeholder, .my-smf-container textarea::-moz-placeholder, .my-smf-container .smf-form .smf-textarea-control__control::-moz-placeholder {
  color: #989898;
}
.my-smf-container input[type=text]::placeholder,
.my-smf-container input[type=email]::placeholder,
.my-smf-container input[type=tel]::placeholder,
.my-smf-container .smf-form .smf-select-control__control::placeholder,
.my-smf-container textarea::placeholder,
.my-smf-container .smf-form .smf-textarea-control__control::placeholder {
  color: #989898;
}
.my-smf-container textarea {
  resize: none;
  line-height: 1.5;
  height: 15em;
}
.my-smf-container .smf-checkbox-control {
  display: block;
}
.my-smf-container .smf-checkbox-control input[type=checkbox] {
  opacity: 0;
  position: absolute;
}
.my-smf-container .smf-checkbox-control input[type=checkbox]:checked ~ span::after {
  content: "";
  display: block;
  width: calc(20px * 0.55);
  height: calc(20px * 0.27);
  border-left: solid calc(20px * 0.15) #fff;
  border-bottom: solid calc(20px * 0.15) #fff;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-60%) rotate(-45deg);
  left: calc(20px * 0.22);
}
.my-smf-container .smf-checkbox-control span {
  padding-left: calc(20px + 7px);
  display: block;
  position: relative;
}
.my-smf-container .smf-checkbox-control span::before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: solid 1px #dddee0;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.my-smf-container .smf-checkbox-control input[type=checkbox]:checked ~ span::before {
  background-color: #c73926;
  border-color: #c73926;
}
.my-smf-container .smf-checkbox-control span::before {
  border-radius: 2px;
}
.my-smf-container .smf-radio-button-control {
  position: relative;
}
.my-smf-container .smf-radio-button-control input[type=radio] {
  opacity: 0;
  position: absolute;
}
.my-smf-container .smf-radio-button-control input[type=radio]:checked ~ span::after {
  content: "";
  display: block;
  width: 0.6em;
  height: 0.6em;
  background-color: #c73926;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
  left: calc((1.2em - 0.6em) / 2);
}
.my-smf-container .smf-radio-button-control span {
  display: inline-block;
  position: relative;
  padding-left: calc(1.2em + 0.5em);
}
.my-smf-container .smf-radio-button-control span::before {
  content: "";
  display: block;
  position: absolute;
  width: 1.2em;
  height: 1.2em;
  border: solid 1px #c1c1c1;
  background-color: #fff;
  border-radius: 50%;
  z-index: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}
.my-smf-container .smf-label {
  margin-right: 1em !important;
}
.my-smf-container .smf-select-control {
  display: block;
  position: relative;
}
.my-smf-container .smf-select-control::after {
  content: "";
  display: inline-block;
  width: 1.1em;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/_ui_parts/btn_arrow_down.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.5;
}
.my-smf-container .wp-block-snow-monkey-forms-item:not(:first-of-type) {
  margin-top: 30px;
}
.my-smf-container .smf-item__col--controls {
  margin-top: 0.5em;
}
.my-smf-container .smf-item__controls > * + * {
  margin-top: 1em;
}
.my-smf-container [data-name=check-privacy-policy] {
  margin-top: 30px;
}
.my-smf-container .smf-action {
  margin-top: 30px;
}
.my-smf-container .smf-action .smf-button-control + .smf-button-control {
  margin-left: 0;
}
.my-smf-container .wp-block-group {
  margin-top: 30px;
  gap: max(16px, min(1.756954612vw, 24px));
  align-items: flex-start;
}
.my-smf-container .wp-block-group .wp-block-snow-monkey-forms-item {
  margin-top: 0;
  width: 100%;
}
.my-smf-container .wp-block-snow-monkey-forms-item:has([data-validations*=required]) .smf-item__label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5em 1em;
}
.my-smf-container .wp-block-snow-monkey-forms-item:has([data-validations*=required]) .smf-item__label::after {
  display: inline-block;
  content: "※必須";
  color: #c73926;
}
body.entry .my-smf-container .smf-form {
  padding-top: max(64px, min(8.78477306vw, 120px));
}
body.contact .my-smf-container .smf-form {
  padding-top: max(40px, min(4.6852122987vw, 64px));
}
.my-smf-container .msg-confirm,
.my-smf-container .msg-input {
  margin-bottom: max(40px, min(4.39238653vw, 60px));
}
.my-smf-container .msg-invalid {
  display: none;
}
.my-smf-container .smf-complete-content {
  padding-top: max(40px, min(4.39238653vw, 60px));
}
.my-smf-container [data-screen=confirm] .wp-block-snow-monkey-forms-item {
  background-color: #f8f8f8;
  padding: 1em;
  border-radius: 8px;
}
.my-smf-container .link2privacy {
  margin-top: 0.25em;
}
.my-smf-container .link2privacy a {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
.my-smf-container input.zipcode {
  max-width: 130px;
}
.my-smf-container .smf-placeholder[data-name=zipcode] {
  display: flex;
  gap: 1em;
  align-items: center;
}
.my-smf-container .smf-placeholder[data-name=zipcode]::before {
  content: "〒";
  display: block;
}
.my-smf-container .msg-note .color-invalid {
  color: #cc3033;
}
.my-smf-container .smf-action {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: max(10px, min(1.4641288433vw, 20px));
}
.my-smf-container .smf-action .smf-button-control__control {
  -webkit-text-decoration: none;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  line-height: 1;
  caret-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  background-color: #c73926;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.1s linear;
  will-change: transform;
  font-weight: 700;
  padding: 0.75em 1em 0.75em 1.5em;
  gap: 0.75em;
  font-size: 1.6rem;
  min-height: 64px;
  background-image: none;
  width: 100%;
}
.my-smf-container .smf-action .smf-button-control__control *,
.my-smf-container .smf-action .smf-button-control__control *::before,
.my-smf-container .smf-action .smf-button-control__control *::after {
  transition: all 0.1s linear;
}
.my-smf-container .smf-action .smf-button-control__control::after {
  content: "";
  display: inline-block;
  width: 2em;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/icon_btn_arrow.svg) no-repeat center center;
  background-size: contain;
  flex-shrink: 0;
}
.my-smf-container .smf-action .smf-button-control__control[data-action=back] {
  width: -moz-fit-content;
  width: fit-content;
  color: #000;
  background-color: #fff;
  border: solid 2px #000;
  padding-left: 2em;
  padding-right: 2em;
}
.my-smf-container .smf-action .smf-button-control__control[data-action=back]::after {
  content: none;
}
.my-smf-container .snow-monkey-form:not([data-screen=confirm]) .msg-confirm {
  display: none;
}
.my-smf-container .snow-monkey-form:not([data-screen=invalid]) .msg-invalid {
  display: none;
}
.my-smf-container .snow-monkey-form:not([data-screen=input]):not([data-screen=invalid]):not([data-screen=back]) .msg-input {
  display: none;
}
.my-smf-container .snow-monkey-form .nav-progress {
  display: flex;
  flex-wrap: nowrap;
  gap: max(16px, min(2.3426061493vw, 32px));
  justify-content: center;
  margin-bottom: 40px;
}
.my-smf-container .snow-monkey-form .nav-progress .item {
  font-weight: 700;
  font-size: max(1.4rem, min(1.317715959vw, 1.8rem));
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5em 2.25em;
  border-radius: 999px;
  background-color: #646464;
  color: #fff;
  position: relative;
}
.my-smf-container .snow-monkey-form .nav-progress .item:not(:first-of-type)::before {
  content: "";
  display: block;
  position: absolute;
  width: max(16px, min(2.3426061493vw, 32px));
  height: 1px;
  transform: rotate(0deg);
  background-color: #646464;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.my-smf-container .snow-monkey-form[data-screen=input] #stepInput, .my-smf-container .snow-monkey-form[data-screen=invalid] #stepInput, .my-smf-container .snow-monkey-form[data-screen=back] #stepInput {
  background-color: #c73926;
}
.my-smf-container .snow-monkey-form[data-screen=confirm] #stepConfirm {
  background-color: #c73926;
}
.my-smf-container .snow-monkey-form[data-screen=complete] #stepComplete {
  background-color: #c73926;
}

.wysiwyg-editor-content {
  font-weight: 400;
}
.wysiwyg-editor-content > *:first-child {
  margin-top: 0;
}
.wysiwyg-editor-content > * {
  margin-top: 2em;
}
.wysiwyg-editor-content h1,
.wysiwyg-editor-content h2,
.wysiwyg-editor-content h3,
.wysiwyg-editor-content h4,
.wysiwyg-editor-content h5,
.wysiwyg-editor-content h6 {
  font-size: 1.25em;
}
.wysiwyg-editor-content ul {
  list-style: disc;
  padding-left: 1.5em;
}
.wysiwyg-editor-content ol {
  list-style: decimal;
  padding-left: 1.5em;
}
.wysiwyg-editor-content p {
  line-height: 2;
}
.wysiwyg-editor-content p img {
  display: block;
}
.wysiwyg-editor-content figcaption {
  text-align: center;
}
.wysiwyg-editor-content a {
  -webkit-text-decoration: underline;
  text-decoration: underline;
  font-weight: 700;
}
.wysiwyg-editor-content img {
  max-width: 600px;
  width: 100%;
}

.container-header-buttons {
  display: flex;
  gap: clamp(1.2rem, 1.059rem + 0.376vw, 1.6rem);
}
.container-header-buttons > * {
  background-color: #fff;
  padding-left: 1.5em;
  padding-right: 1.5em;
  height: 60px;
  border-radius: 999px;
  width: -moz-fit-content;
  width: fit-content;
}
.container-header-buttons .box {
  display: flex;
  align-items: center;
  gap: 1em;
  font-weight: 700;
}
.container-header-buttons .box * {
  width: -moz-fit-content;
  width: fit-content;
}
.container-header-buttons .box._web .btn-link:first-of-type {
  padding-right: 0.75em;
  border-right: solid 2px #ccc;
}
.container-header-buttons .box__ttl {
  font-size: clamp(1.2rem, 1.024rem + 0.469vw, 1.7rem);
  color: #71b51a;
}
.container-header-buttons._in-drawer {
  flex-direction: column;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
}
.container-header-buttons._in-drawer > * {
  height: auto;
  min-height: 50px;
  width: 100%;
  border-radius: 30px;
  width: 100%;
}
.container-header-buttons._in-drawer .box._web {
  flex-direction: column;
  padding: 1em;
}
.container-header-buttons._in-drawer .box._web .btn-link:first-of-type {
  padding-right: 0;
  border-right: none;
}
.container-header-buttons._in-drawer .box._sns {
  justify-content: center;
}
.container-header-buttons._in-header-fixed {
  gap: clamp(0.8rem, 0.659rem + 0.376vw, 1.2rem);
}
.container-header-buttons._in-header-fixed > * {
  height: auto;
  border: solid 1px #ddd;
  cursor: pointer;
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 1em;
  padding-right: 1em;
}
.container-header-buttons._in-header-fixed .btn-link-hf {
  border-radius: 20px;
}
.container-header-buttons._in-header-fixed .btn-link-hf__head {
  font-size: clamp(1rem, 0.93rem + 0.188vw, 1.2rem);
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  grid-gap: 0.3em;
  gap: 0.3em;
}
.container-header-buttons._in-header-fixed .btn-link-hf__body {
  background-color: #fff;
  border: solid 2px #7cbc29;
  border-radius: 8px;
  font-size: clamp(1.2rem, 1.13rem + 0.188vw, 1.4rem);
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1em;
}
.container-header-buttons._in-header-fixed .btn-link-hf__body > * + * {
  margin-top: 0.5em;
}
.container-header-buttons._in-header-fixed .btn-link-hf__body * {
  word-break: keep-all;
  white-space: nowrap;
}
.container-header-buttons._in-header-fixed .btn-link-hf .icon {
  aspect-ratio: 1/1;
  width: clamp(2rem, -6rem + 6.667vw, 3.6rem);
}
.container-header-buttons._in-header-fixed .btn-link-hf._tel .icon {
  width: clamp(3rem, 2.718rem + 0.751vw, 3.8rem);
}
.container-box-calendar {
  display: flex;
  gap: clamp(2.4rem, 1.485rem + 2.441vw, 5rem);
}
.container-box-calendar > * {
  flex: 1;
}
.container-box-calendar .box-calendar {
  display: flex;
  flex-direction: column;
}
.container-box-calendar .box-calendar .ttl-calendar {
  font-size: clamp(1.6rem, 1.459rem + 0.376vw, 2rem);
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.container-box-calendar .box-calendar .ttl-calendar .icon {
  width: clamp(4rem, 2.944rem + 2.817vw, 7rem);
  height: auto;
  aspect-ratio: 70/64;
}
.container-box-calendar .box-calendar .ttl-calendar .text {
  font-weight: 700;
}
.container-box-calendar .box-calendar .tbl-weekly-calendar {
  margin-top: 1em;
}
.container-box-calendar .box-calendar .note {
  margin-top: 1em;
  height: 100%;
}
.container-box-calendar .box-calendar .note .green {
  color: #7cbc29;
}
.container-box-calendar .box-calendar .btn-link {
  margin-left: auto;
  margin-top: clamp(2rem, 1.648rem + 0.939vw, 3rem);
}

.sect-top-lead {
  padding-top: clamp(4rem, 2.592rem + 3.756vw, 8rem);
  padding-bottom: clamp(6rem, 4.944rem + 2.817vw, 9rem);
  padding-left: 20px;
  padding-right: 20px;
}
.sect-top-lead__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 1.648rem + 0.939vw, 3rem);
}
.sect-top-lead__head .title {
  flex-shrink: 0;
  background-color: #7cbc29;
  color: #fff;
  border-radius: clamp(0.4rem, 0.259rem + 0.376vw, 0.8rem);
  padding-left: 1em;
  padding-right: 1em;
}
.sect-top-lead__head .description {
  line-height: 1.7;
  min-width: 10em;
  max-width: 600px;
}
.sect-top-topic {
  overflow: hidden;
  padding-top: clamp(2rem, 0.592rem + 3.756vw, 6rem);
}
.sect-top-topic__head {
  background-color: #fff6d8;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  padding-bottom: clamp(2rem, -2.93rem + 13.146vw, 16rem);
  position: relative;
}
.sect-top-topic__head::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: auto;
  aspect-ratio: 1440/38;
  background: url(../img/deco_arch_topic_top.svg) no-repeat center center;
  background-size: contain;
  display: block;
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
  background-size: 100% 100%;
}
.sect-top-topic__head::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: auto;
  aspect-ratio: 1440/30;
  background: url(../img/deco_arch_topic_bottom.svg) no-repeat center center;
  background-size: contain;
  display: block;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  background-size: 100% 100%;
}
.sect-top-topic__body {
  padding-left: 20px;
  padding-right: 20px;
}
.sect-top-information {
  padding-top: clamp(6rem, 5.296rem + 1.878vw, 8rem);
  padding-bottom: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  padding-left: 20px;
  padding-right: 20px;
}
.sect-top-information__inner {
  max-width: 800px;
}
.sect-top-strength {
  padding-top: clamp(9rem, 3.718rem + 14.085vw, 24rem);
  padding-bottom: clamp(6rem, 4.944rem + 2.817vw, 9rem);
  padding-left: 20px;
  padding-right: 20px;
  background-color: #7cbc29;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.sect-top-strength:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: auto;
  aspect-ratio: 1440/160;
  background: url(../img/deco_top_strength_top.svg) no-repeat center center;
  background-size: contain;
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
  background-size: cover;
}
.sect-top-strength__inner {
  max-width: 1000px;
}
.sect-top-medical-info {
  background-color: #fff6d8;
  padding-top: clamp(5rem, 1.479rem + 9.39vw, 15rem);
  padding-bottom: clamp(5rem, 3.944rem + 2.817vw, 8rem);
}
.sect-top-medical-info::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: auto;
  aspect-ratio: 1440/80;
  background: url(../img/deco_top_strength_bottom.svg) no-repeat center center;
  background-size: contain;
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
  background-size: cover;
  z-index: 2;
}
.sect-top-medical-info__body .js-change-scroll-direction__sticky-wrap {
  padding-top: 120px;
  top: 120px;
}
.sect-top-medical-info__body .container-illust-medical-info {
  font-size: clamp(1rem, 0.16rem + 1vw, 1.6rem);
  min-width: 840px;
  width: 84em;
  position: relative;
  aspect-ratio: 2694/1493;
  margin-left: auto;
  margin-right: auto;
}
.sect-top-medical-info__body .container-buttons {
  display: flex;
  gap: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.sect-top-medical-info__foot {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 990px;
  margin-left: auto;
  margin-right: auto;
}
.sect-top-medical-info__foot .banner-for-men {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: clamp(2rem, 1.648rem + 0.939vw, 3rem);
  padding: clamp(3rem, 2.648rem + 0.939vw, 4rem);
  gap: clamp(3rem, 2.296rem + 1.878vw, 5rem);
  border: solid 2px #d4cbb1;
}
.sect-top-medical-info__foot .banner-for-men__text .title {
  font-size: clamp(2.2rem, 1.989rem + 0.563vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.sect-top-medical-info__foot .banner-for-men__text .title span {
  padding-bottom: 0.15em;
  width: -moz-fit-content;
  width: fit-content;
}
.sect-top-medical-info__foot .banner-for-men__text .title span.with-uline {
  border-bottom: dotted 2px #649b1d;
}
.sect-top-medical-info__foot .banner-for-men__text .description {
  line-height: 1.7;
}
.sect-top-medical-info__foot .banner-for-men__image {
  flex-shrink: 0;
  aspect-ratio: 560/645;
  width: clamp(16.2rem, 12.045rem + 11.08vw, 28rem);
  height: auto;
}
.sect-top-medical-info__foot .banner-for-men__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.sect-top-column {
  background-color: #fcfcf4;
  padding-top: clamp(6rem, 5.296rem + 1.878vw, 8rem);
  padding-bottom: clamp(6rem, 5.296rem + 1.878vw, 8rem);
  padding-left: 20px;
  padding-right: 20px;
}
.sect-top-access__head {
  padding-top: clamp(4rem, 2.592rem + 3.756vw, 8rem);
  padding-bottom: clamp(3rem, 2.648rem + 0.939vw, 4rem);
  background-color: #fff;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, -0.113rem + 5.634vw, 8rem);
}
.sect-top-access__body .map-container {
  aspect-ratio: 1440/600;
}
.container-swith-nav-buttons {
  display: flex;
  gap: 0.75em;
  align-items: center;
  width: 100%;
  max-width: 200px;
}
.container-swith-nav-buttons .btn-slide-content {
  flex: 1;
  width: 100%;
  border-radius: 4px;
  border: solid 2px #fff;
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
  padding: 0.75em 1em;
}
.container-swith-nav-buttons .btn-slide-content img {
  aspect-ratio: 12/7;
  width: 1em;
}
.container-swith-nav-buttons .btn-slide-content.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.sect-text-only {
  padding-bottom: clamp(6rem, 3.887rem + 5.634vw, 12rem);
  padding-left: 20px;
  padding-right: 20px;
}
.sect-text-only__inner {
  max-width: 950px;
}
.sect-text-only .text-lead {
  font-weight: 400;
  line-height: 2;
}
.sect-text-only__body {
  background-color: #eff6e0;
  padding-left: clamp(2rem, 0.592rem + 3.756vw, 6rem);
  padding-right: clamp(2rem, 0.592rem + 3.756vw, 6rem);
  padding-top: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  padding-bottom: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  border-radius: clamp(0.4rem, 0.259rem + 0.376vw, 0.8rem);
}
.sect-text-only__body > * {
  margin-top: 1em;
}
.sect-text-only__body > *:first-child {
  margin-top: 0;
}
.sect-text-only__body h2,
.sect-text-only__body h3 {
  font-size: clamp(1.6rem, 1.318rem + 0.751vw, 2.4rem);
  font-weight: 700;
  margin-top: 2em;
  color: #649b1d;
}
.sect-text-only__body p {
  line-height: 2;
  font-weight: 400;
}

.wrapper-has-sticky-menu {
  display: flex;
  gap: clamp(3rem, 2.648rem + 0.939vw, 4rem);
  overflow: visible;
  align-items: flex-start;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: clamp(8rem, 6.592rem + 3.756vw, 12rem);
}
.wrapper-has-sticky-menu__pc-menu {
  flex-shrink: 0;
  position: sticky;
  top: 120px;
  left: 0;
}
.wrapper-has-sticky-menu__sp-menu {
  flex-shrink: 0;
  position: sticky;
  bottom: 0;
  left: 0;
}
.wrapper-has-sticky-menu__contents {
  width: 100%;
  background-color: #fcfcf4;
  border-radius: clamp(2rem, 1.648rem + 0.939vw, 3rem);
  padding-left: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  padding-right: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  padding-top: clamp(4rem, 3.648rem + 0.939vw, 5rem);
  padding-bottom: clamp(4rem, 3.648rem + 0.939vw, 5rem);
  margin-top: clamp(3rem, 2.648rem + 0.939vw, 4rem);
}
.wrapper-has-sticky-menu__contents .block {
  position: relative;
}
.wrapper-has-sticky-menu__contents .block__head {
  margin-bottom: clamp(3rem, 2.648rem + 0.939vw, 4rem);
}
.wrapper-has-sticky-menu__contents .block__head h2 {
  font-size: clamp(1.8rem, 1.307rem + 1.315vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  align-items: flex-start;
  gap: 0.25em;
}
.wrapper-has-sticky-menu__contents .block__head h2::before {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../img/icon_ttl_dotmaru.svg) no-repeat center center;
  background-size: contain;
  display: inline-block;
  margin-top: -0.1em;
  flex-shrink: 0;
}
.wrapper-has-sticky-menu__contents .block__body {
  font-weight: 400;
  line-height: 1.7;
}
.wrapper-has-sticky-menu__contents .block__body > * + * {
  margin-top: clamp(3rem, 2.648rem + 0.939vw, 4rem);
}
.wrapper-has-sticky-menu__contents .block__body a {
  color: #649b1d;
  -webkit-text-decoration: underline;
  text-decoration: underline;
  font-weight: 700;
}
.wrapper-has-sticky-menu__contents .block__body p:empty {
  display: none;
}
.wrapper-has-sticky-menu__contents .block__body h2 + p,
.wrapper-has-sticky-menu__contents .block__body h3 + p,
.wrapper-has-sticky-menu__contents .block__body h4 + p,
.wrapper-has-sticky-menu__contents .block__body h5 + p,
.wrapper-has-sticky-menu__contents .block__body h6 + p {
  margin-top: 1.5em;
}
.wrapper-has-sticky-menu__contents .block__body .myblock-price-table {
  margin-top: clamp(2rem, 1.648rem + 0.939vw, 3rem);
}
.wrapper-has-sticky-menu__contents .block__body .myblock-machine-list {
  margin-top: clamp(3rem, 2.648rem + 0.939vw, 4rem);
}
.wrapper-has-sticky-menu__contents .block:not(:first-child) {
  padding-top: clamp(4rem, 3.296rem + 1.878vw, 6rem);
}
.wrapper-has-sticky-menu__contents .block:not(:last-child) {
  padding-bottom: clamp(4rem, 3.296rem + 1.878vw, 6rem);
}
.wrapper-has-sticky-menu__contents .block:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: clamp(0.2rem, 0.165rem + 0.094vw, 0.3rem);
  background-image: linear-gradient(to right, rgba(149, 204, 77, 0.4), rgba(149, 204, 77, 0.4) 4px, transparent 4px, transparent 7px);
  background-size: 7px clamp(0.2rem, 0.165rem + 0.094vw, 0.3rem);
  background-repeat: repeat-x;
  width: calc(100% - clamp(2rem, 1.296rem + 1.878vw, 4rem));
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
.wrapper-has-sticky-menu .sticky-menu-pc {
  padding-top: clamp(3rem, 2.648rem + 0.939vw, 4rem);
  color: #fff;
  width: 100%;
  max-width: 380px;
}
.wrapper-has-sticky-menu .sticky-menu-pc__inner {
  background-color: #7cbc29;
  padding-top: clamp(4rem, 2.944rem + 2.817vw, 7rem);
  padding-bottom: clamp(6rem, 5.296rem + 1.878vw, 8rem);
  padding-left: clamp(2rem, 1.648rem + 0.939vw, 3rem);
  padding-right: clamp(2rem, 1.648rem + 0.939vw, 3rem);
  border-radius: clamp(2rem, 0.944rem + 2.817vw, 5rem);
}
.wrapper-has-sticky-menu .sticky-menu-pc__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  text-align: center;
}
.wrapper-has-sticky-menu .sticky-menu-pc__head > * + * {
  margin-top: 1em;
}
.wrapper-has-sticky-menu .sticky-menu-pc__head .illust {
  max-width: 50%;
  min-width: 80px;
  width: auto;
}
.wrapper-has-sticky-menu .sticky-menu-pc__head .text-main {
  font-weight: 800;
  font-size: clamp(2.4rem, 2.118rem + 0.751vw, 3.2rem);
  margin-top: 0.5em;
}
.wrapper-has-sticky-menu .sticky-menu-pc__head .text-sub {
  color: #333;
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: clamp(1.2rem, 1.059rem + 0.376vw, 1.6rem);
}
.wrapper-has-sticky-menu .sticky-menu-pc__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: clamp(3rem, 2.648rem + 0.939vw, 4rem);
}
.wrapper-has-sticky-menu .sticky-menu-pc__body .items-nav-in-page {
  max-height: 16em;
  overflow-y: scroll;
  -ms-overflow-style: none;
}
.wrapper-has-sticky-menu .sticky-menu-pc__body .items-nav-in-page::-webkit-scrollbar {
  display: none;
}
.wrapper-has-sticky-menu .sticky-menu-sp {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: none;
  background-color: #7cbc29;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  color: #fff;
}
.wrapper-has-sticky-menu .sticky-menu-sp__inner {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 40px;
}
.wrapper-has-sticky-menu .sticky-menu-sp__head {
  -webkit-text-decoration: none;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  line-height: 1;
  caret-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  color: #333;
  background-color: transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.1s linear;
  will-change: transform;
  width: 100%;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
  gap: 0.75em;
}
.wrapper-has-sticky-menu .sticky-menu-sp__head *,
.wrapper-has-sticky-menu .sticky-menu-sp__head *::before,
.wrapper-has-sticky-menu .sticky-menu-sp__head *::after {
  transition: all 0.1s linear;
}
.wrapper-has-sticky-menu .sticky-menu-sp__head span {
  padding-top: 0.1em;
}
.wrapper-has-sticky-menu .sticky-menu-sp__body {
  border-top: solid 2px rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  padding-top: 20px;
}
.wrapper-has-sticky-menu .sticky-menu-sp__body .items-nav-in-page {
  max-height: 28.25em;
  overflow-y: scroll;
  -ms-overflow-style: none;
}
.wrapper-has-sticky-menu .sticky-menu-sp__body .items-nav-in-page::-webkit-scrollbar {
  display: none;
}

.sect-informations {
  padding-left: 20px;
  padding-right: 20px;
}
.sect-informations__inner {
  max-width: 800px;
}

.sect-informations-wide {
  padding-left: 20px;
  padding-right: 20px;
}
.sect-informations-wide__inner {
  max-width: 1000px;
}

.sect-post-information {
  padding-top: clamp(3rem, 2.648rem + 0.939vw, 4rem);
  padding-left: 20px;
  padding-right: 20px;
}
.sect-post-information__inner {
  max-width: 800px;
}
.sect-post-information .nav-information {
  display: flex;
  align-items: center;
  gap: 1em;
}
.sect-post-information .nav-information .return2list {
  color: #649b1d;
  -webkit-text-decoration: underline;
  text-decoration: underline;
  display: flex;
  align-items: center;
  gap: 1em;
}
.sect-post-information .nav-information .return2list::after {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: auto;
  aspect-ratio: 1/2;
  background: url(../img/icon_arrow_black.svg) no-repeat center center;
  background-size: contain;
}
.sect-post-information__head {
  padding-bottom: 20px;
  border-bottom: dashed 1px #888;
}
.sect-post-information__head .title {
  font-size: clamp(2rem, 1.577rem + 1.127vw, 3.2rem);
  text-align: center;
}
.sect-post-information__head .cat-and-date {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1em;
}
.sect-post-information__head .cat-and-date .cat {
  font-weight: 700;
}
.sect-post-information__body {
  padding-top: clamp(3rem, 2.648rem + 0.939vw, 4rem);
  padding-bottom: clamp(3rem, 2.648rem + 0.939vw, 4rem);
  border-bottom: dashed 1px #888;
}
.sect-post-information__thumb {
  width: calc(100% - clamp(4rem, 2.592rem + 3.756vw, 8rem));
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(2rem, 1.296rem + 1.878vw, 4rem);
  border-radius: clamp(0.4rem, 0.259rem + 0.376vw, 0.8rem);
  overflow: hidden;
}
.sect-post-information__thumb img {
  width: 100%;
  height: auto;
}

.wrapper-information__head .tabs {
  font-weight: 800;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0;
       column-gap: 0;
  row-gap: 0.5em;
  flex-wrap: wrap;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.wrapper-information__head .tabs .item {
  padding: 0.5em clamp(1rem, -0.056rem + 2.817vw, 4rem);
  position: relative;
}
.wrapper-information__head .tabs .item.is-active {
  color: #649b1d;
}
.wrapper-information__head .tabs .item.is-active::before {
  content: "";
  display: block;
  position: absolute;
  width: 0.5em;
  height: 0.5em;
  transform: rotate(0deg);
  background-color: #649b1d;
  position: absolute;
  bottom: -0.5em;
  left: 50%;
  border-radius: 50%;
  transform: translateX(-50%);
}
.wrapper-information__head .tabs .item:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 1.5em;
  transform: rotate(0deg);
  background-color: #aaa;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
}
@media screen and (min-width: 860px) {
  .inner._maxw-800 {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 1260px) {
  .inner._maxw-1200 {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }
  .l-header__ui {
    display: none;
  }
  .l-header-fixed {
    display: none;
  }
  .l-footer .container-clinic-info {
    flex-direction: column;
  }
  .wp-pager {
    justify-content: center;
  }
  .ttl-section._top-topic {
    flex-direction: column;
    gap: 4px;
  }
  .ttl-section._top-topic .ttl-section__text {
    justify-content: center;
  }
  .ttl-section._top-topic .ttl-section__text .sub {
    padding-bottom: 1em;
  }
  .ttl-section._top-topic .ttl-section__deco {
    display: flex;
    justify-content: center;
  }
  .ttl-section._top-strength {
    flex-direction: column;
    gap: 0;
  }
  .ttl-section._top-strength .ttl-section__text .sub {
    padding-top: 10px;
  }
  .ttl-section._top-medical-info::before {
    width: 180%;
  }
  #modalVideo iframe {
    width: 95vw;
    height: 53.4375vw;
  }
  .items-information .item a {
    flex-direction: column;
    align-items: flex-start;
  }
  .items-top-strength > * + * {
    margin-top: clamp(3rem, 2.648rem + 0.939vw, 4rem);
  }
  .items-top-strength .item {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .items-top-strength .item__text {
    padding-top: clamp(9rem, 9rem + 0vw, 9rem);
    margin-top: calc(clamp(9rem, 9rem + 0vw, 9rem) * -1);
    border-radius: 20px;
  }
  .items-treatment-info._for-men {
    justify-content: center;
  }
  .js-accordion-body {
    transition-duration: 0.3s;
  }
  .c-marked-text > span {
    padding: 0.25em;
  }
  .logo-corporate._in-header a {
    flex-direction: row;
  }
  .tbl-weekly-calendar thead th.title {
    width: 35%;
  }
  .tbl-xxxxx._cl-12-29-59 tr th {
    width: 100%;
  }
  .tbl-xxxxx._cl-12-29-59 tr td:nth-of-type(1) {
    width: 60%;
  }
  .tbl-xxxxx._cl-12-29-59 tr td:nth-of-type(2) {
    width: 40%;
  }
  section.block .block__inner._narrow-when-sp {
    padding-left: 40px;
    padding-right: 40px;
  }
  .u-only-pc,
br.u-only-pc,
img.u-only-pc {
    display: none !important;
  }
  .u-endpoint-of-linkto {
    scroll-margin-top: 90px;
  }
  .js-sticky-menu-sp__contents {
    transition-duration: 0.3s;
  }
  .my-smf-container .msg-invalid {
    display: block;
    margin-top: max(40px, min(4.39238653vw, 60px));
    margin-bottom: max(40px, min(4.39238653vw, 60px));
    color: #cc3033;
    text-align: center;
  }
  .my-smf-container .smf-action {
    margin-top: 40px;
  }
  .container-box-calendar {
    flex-direction: column;
  }
  .container-box-calendar > * {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .container-box-calendar .box-calendar .btn-link {
    margin-left: auto;
    margin-right: auto;
  }
  .l-main {
    padding-top: 70px;
  }
  .sect-top-topic__inner {
    padding-top: 40px;
  }
  .sect-top-topic__head::before {
    aspect-ratio: 375/15;
  }
  .sect-top-topic__head::after {
    aspect-ratio: 375/15;
  }
  .sect-top-medical-info__foot .banner-for-men {
    flex-direction: column;
  }
  .sect-top-medical-info__foot .banner-for-men__text .title {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .sect-top-access__head {
    flex-direction: column;
  }
  .wrapper-has-sticky-menu {
    flex-direction: column;
    padding-top: 70px;
    padding-bottom: 0;
  }
  .wrapper-has-sticky-menu__pc-menu {
    position: relative;
    top: auto;
    left: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .wrapper-has-sticky-menu__contents {
    margin-top: 0;
  }
  .wrapper-has-sticky-menu .sticky-menu-pc__body {
    display: none;
  }
  .sect-post-information__head .cat-and-date {
    justify-content: center;
  }
  .sect-post-information__thumb {
    width: 100%;
  }
  .wrapper-information__head .tabs .item:not(:last-child)::after {
    display: none;
  }
}
@media screen and (min-width: 768.1px) {
  .l-header__inner {
    height: 200px;
  }
  .l-drawer {
    display: none;
  }
  .l-mv__inner {
    display: flex;
  }
  .l-mv__inner .l-mv__text {
    flex: 0.32;
    flex-shrink: 0;
  }
  .l-mv__inner .l-mv__image {
    flex: 0.68;
  }
  .l-mv__text {
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .l-mv__text__head {
    justify-content: center;
    padding-left: 20px;
  }
  .l-mv__text__head .message {
    width: 60%;
  }
  .l-mv__text__head .message img {
    max-width: none;
    width: 100%;
  }
  .l-mv__text__body {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: calc(clamp(1rem, 0.296rem + 1.878vw, 3rem) * -1);
    gap: 20px;
  }
  .l-mv__text__body .illust {
    width: 115%;
    max-width: none;
  }
  .l-mv__text__foot {
    text-align: left;
    padding-top: 0;
  }
  .l-mv__text .description1 {
    flex-direction: row;
    padding-left: 40px;
    padding-bottom: 0;
  }
  .l-mv__text .description2 {
    padding-left: 40px;
  }
  .l-mv__image::before {
    aspect-ratio: 34/550;
    background-image: url(../img/deco_mv_wave.svg);
    top: 0;
    left: -1px;
    width: auto;
    height: 100%;
  }
  .l-mv__image .items-mv-images {
    aspect-ratio: auto;
  }
  .l-mv__foot .inner {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: flex-start;
    gap: 40px;
  }
  .l-mv__foot .items-mv-appeal {
    margin-left: 0;
    margin-right: 0;
  }
  .l-mv__foot .carousel-mv__pagination {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
  }
  .btn-menu-open,
.btn-menu-close {
    display: none;
  }
  .ttl-section._top-strength .ttl-section__text {
    text-align: left;
    gap: 0.5em;
  }
  .ttl-section._top-strength .ttl-section__text .sub {
    text-align: left;
    padding-left: 0.25em;
  }
  .ttl-section._top-access {
    text-align: left;
  }
  .items-info-with-image {
    width: 100%;
    display: grid;
    grid-gap: clamp(2rem, 1.648rem + 0.939vw, 3rem);
    gap: clamp(2rem, 1.648rem + 0.939vw, 3rem);
    grid-template-columns: repeat(auto-fill, minmax(312px, 1fr));
  }
  .items-info-with-image > * {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 1;
    grid-gap: 0;
    gap: 0;
    align-items: start;
  }
  .items-top-strength .item {
    flex-direction: row;
    align-items: center;
  }
  .items-top-strength .item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .items-top-strength .item:nth-child(even) .item__text::before {
    right: auto;
    left: calc(100% - 1px);
  }
  .items-top-strength .item:nth-child(even) .item__text::after {
    left: auto;
    right: calc(100% - 1px);
  }
  .items-top-strength .item__text::before, .items-top-strength .item__text::after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 100%;
    transform: rotate(0deg);
    background-color: #f2f8ea;
    top: 0;
    z-index: 0;
  }
  .items-top-strength .item__text::before {
    width: calc(clamp(20rem, 12.958rem + 18.779vw, 40rem) * 0.5);
    right: calc(100% - 1px);
  }
  .items-top-strength .item__text::after {
    width: 100vw;
    left: calc(100% - 1px);
  }
  .tbl-vertical-when-sp {
    writing-mode: inherit;
  }
  .u-only-sp,
br.u-only-sp,
img.u-only-sp {
    display: none !important;
  }
  .u-mt-onlysp10 {
    margin-top: 0;
  }
  .u-mt-onlysp20 {
    margin-top: 0;
  }
  .biz-calendar-custom #biz_calendar table.bizcal {
    padding: 0.8em;
  }
  .biz-calendar-custom #biz_calendar table.bizcal td {
    padding: 1.5em 0;
  }
  .biz-calendar-custom #biz_calendar table.bizcal td.today::after {
    top: 65%;
  }
  .biz-calendar-custom #biz_calendar table.bizcal .calbtn {
    transform: translateX(55%);
  }
  .my-smf-container textarea {
    height: 15em;
  }
  .sect-top-topic__body {
    margin-top: calc(clamp(4rem, 1.887rem + 5.634vw, 10rem) * -1);
  }
  .sect-top-medical-info__foot .banner-for-men {
    padding-top: 30px;
    padding-bottom: 10px;
    padding-left: 50px;
    padding-right: 50px;
  }
  .wrapper-has-sticky-menu {
    flex-direction: row;
  }
  .wrapper-has-sticky-menu__sp-menu {
    display: none;
  }
}
@media screen and (min-width: 768.1px) and (min-width: 768.1px) {
  .ttl-section._top-access .sub {
    padding-left: 0.25em;
  }
}
@media screen and (max-width: 600px) {
  .items-mv-appeal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
    gap: 12px;
    justify-content: center;
  }
  .items-mv-appeal .item:nth-child(even) {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 500px) {
  .items-info-with-image {
    width: 100%;
    display: grid;
    grid-gap: clamp(2rem, 1.648rem + 0.939vw, 3rem);
    gap: clamp(2rem, 1.648rem + 0.939vw, 3rem);
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  .items-info-with-image > * {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 1;
    grid-gap: 0;
    gap: 0;
    align-items: start;
  }
  .sect-top-access__body .map-container {
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 1100px) {
  .items-nav-global._in-header._fixed .item__text {
    display: none;
  }
}
@media screen and (max-width: 840px) {
  .items-treatment-info .item a {
    border-width: 1px;
  }
}
@media screen and (max-width: 1400px) {
  section.block .block__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 1120px) {
  .u-hide-when-mobile {
    display: none !important;
  }
}
@media screen and (max-width: 375px) {
  .my-smf-container .snow-monkey-form .nav-progress .item {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}
/*# sourceMappingURL=maps/main.css.map */
