.custom-header {
  position: fixed;
  display: flex;
  flex-direction: column;
  width: 100vw;
  z-index: 100;
  top: 0;
  @media screen and (min-width: 769px) {
    background: #FFF;
  }
  @media screen and (max-width: 768px) {
    &.is-shown {
      .custom-header__inner {
        opacity: 1;
        pointer-events: initial;
      }
    }
  }
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  display: grid;
  z-index: 99;
  grid-template-columns: 1fr 1fr 1fr;
}

:where(.custom-header) {

  .custom-header__inner {
    @media screen and (min-width: 769px) {
      max-width: 1286px;
      margin: 0 auto;
      width: 100%;
      padding: 17px 25px;
    }
    @media screen and (max-width: 768px) {
      position: absolute;
      transition: opacity 0.2s linear;
      width: 100vw;
      opacity: 0;
      top: 0;
      right: 0;
      background: #FFF;
      pointer-events: none;
      height: 100dvh;
      overflow-y: auto;
    }
  }
  .custom-header__close {
    width: 15px;
    height: 15px;
    position: absolute;
    right: 23px;
    top: 30px;
  }
  .custom-header__open {
    width: 18px;
    height: 18px;
  }

  .custom-header__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
  }

  .custom-header__logo {
    display: block;
    width: 180px;
    @media screen and (min-width: 769px) {
      width: 180px;
    }
  }
  .custom-header__sp {
    padding: 14px 19px 14px 7px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #FFF;
  }

  .custom-header__reserve-wrap {
    display: flex;
    gap: 12px;
  }

  .custom-header__reserve {
    width: 171px;
  }

  .custom-header__button {
    display: flex;
    justify-content: center;
    @media screen and (max-width: 768px) {
      flex-direction: column;
      padding: 80px 25px 30px;
      gap: 19px;
    }

    li {
      &:first-child {
        .custom-header__menu {
          padding-left: 0;
        }
      }

      &:last-child {
        .custom-header__menu {
          padding-right: 0;
          border-right: none;
        }
      }
    }
  }

  .custom-header__menu {
    font-size: calc(var(--rem) * 13);
    font-weight: 500;
    @media screen and (min-width: 769px) {
      border-right: 1px solid #DF8F9B;
      padding: 5px min(35px, calc(var(--vw) * 35));
    }
    @media screen and (max-width: 948px) {
      font-size: calc(var(--rem) * 11);
      padding: 5px min(25px, calc(var(--vw) * 25));
    }
    @media screen and (max-width: 768px) {
      padding: 0;
      color: #DF8F9B;
      font-size: calc(var(--rem) * 15);
      letter-spacing: 1.2px;
      border-bottom: 1px dotted;
      width: 100%;
      display: block;
      padding-bottom: 6px;
    }

    &.js-case-trigger, &.js-clinic-trigger, &.js-blog-trigger {
      @media screen and (max-width: 768px) {
        position: relative;
        &::after {
          position: absolute;
          content: "＋";
          right: 0;
        }
      }
    }
    &.is-shown {
      @media screen and (max-width: 768px) {
        &::after {
          content: "ー";
        }
      }
    }
  }

  .custom-header__menu--clinic,
  .custom-header__menu--blog {
    position: relative;
  }

  .custom-header__nav {
    display: flex;
    width: 100%;
    z-index: 100;
    flex-direction: column;
    font-size: calc(var(--rem) * 12);

    @media screen and (min-width: 769px) {
      position: absolute;
      padding: 18px 0 14px;
      gap: 15px;
      background: #FFF;
      opacity: 0;
      transition: opacity 0.2s linear;
      pointer-events: none;
      align-items: center;
    }

    @media screen and (max-width: 948px) {
      font-size: calc(var(--rem) * 10);
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.6s ease, padding 0.6s linear;
    }
    @media screen and (max-width: 768px) {
      font-size: calc(var(--rem) * 13);
      padding-left: 10px;
      gap: 14px;
    }

    &.is-shown {
      @media screen and (min-width: 769px) {
        opacity: 1;
        pointer-events: initial;
      }
      @media screen and (max-width: 948px) {
        max-height: 500px;
      }
    }
    a:first-child {
      @media screen and (max-width: 948px) {
        margin-top: 20px;
      } 
    }
  }

  .custom-header__case {
    z-index: 100;
    background: #FFF;

    @media screen and (min-width: 769px) {
      position: fixed;
      opacity: 0;
      transition: opacity 0.2s linear;
      pointer-events: none;
      padding: 28px 15px 60px;
      top: 122px;
      right: 0;
      width: 100vw;
    }
    @media screen and (max-width: 948px) {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.6s ease, padding 0.6s linear;
    }

    &.is-shown {
      @media screen and (min-width: 769px) {
        opacity: 1;
        pointer-events: initial;
      }
      @media screen and (max-width: 948px) {
        max-height: 500px;
      }
    }
  }

  .custom-header__case-inner {
    display: grid;
    gap: 10px;

    @media screen and (min-width: 769px) {
      max-width: 1260px;
      margin: 0 auto;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 20px;
    }
    div:first-child {
      @media screen and (max-width: 769px) {
        margin-top: 12px;
      }
    }
  }

  .custom-header__case-list-wrap {
    @media screen and (max-width: 768px) {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.65s ease;

      &.is-shown {
        max-height: 900px;
      }
    }
  }

  .custom-header__case-title {
    background: linear-gradient(to right, #DF8F9B, #FBC1BD);
    color: #FFF;
    font-size: calc(var(--rem) * 12);
    letter-spacing: 0.6px;
    padding: 8px 8px;
    position: relative;

    @media screen and (min-width: 769px) {
      font-size: calc(var(--rem) * 14);
      letter-spacing: 0.7px;
      padding: 12px 20px;
      margin-bottom: 19px;
    }

    &.is-man {
      background: #77535F;
    }

    &::after {
      @media screen and (max-width: 769px) {
        content: "＋";
        position: absolute;
        right: 10px;
      }
    }
    &.is-shown {
      @media screen and (max-width: 769px) {
        &::after {
          content: "ー";
        }
      }
    }
  }

  .custom-header__case-list {
    @media screen and (max-width: 768px) {
      font-size: calc(var(--rem) * 12);
      letter-spacing: 0.6px;
      padding: 0 10px;
    }
    @media screen and (min-width: 769px) {
      font-size: calc(var(--rem) * 14);
      letter-spacing: 0.7px;
      padding: 0 10px;
    }
  }

  .custom-header__case-item+.custom-header__case-item {
    margin-top: 14px;

    @media screen and (min-width: 769px) {
      margin-top: 10px;
      padding-right: 17px;
    }
  }

  .custom-header__case-item {
    position: relative;

    a {
      width: 100%;
      display: block;
    }

    &::after {
      content: "";
      display: inline-block;
      background-image: url(../../images/common/icon_arrow.svg);
      background-size: contain;
      width: 15px;
      height: 15px;
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      @media screen and (max-width: 768px) {
        width: 13px;
        height: 13px;
      }
    }

    &:first-child {
      @media screen and (max-width: 768px) {
        margin-top: 17px;
      }
    }
  }

}

.custom-footer {
  background: linear-gradient(to bottom, #DF8F9B, #FBC1BD);
  color: #FFF;
  padding: 45px 20px 95px;

  @media screen and (min-width: 769px) {
    padding: 68px 25px 38px;
  }
}

:where(.custom-footer) {
  .custom-footer__inner {
    margin-bottom: 60px;

    @media screen and (min-width: 769px) {
      margin-bottom: 131px;
      display: flex;
      justify-content: center;
      gap: min(105px, calc(var(--vw) * 105));
    }
  }

  .custom-footer__logo {
    width: 290px;
    margin-bottom: 30px;

    @media screen and (min-width: 769px) {
      width: 382px;
      margin-bottom: 56px;
    }
  }

  .custom-footer__address {
    font-size: calc(var(--rem) * 15);
    letter-spacing: 0.75px;
    line-height: 30px;
    margin-bottom: 19px;
  }

  .custom-footer__logos {
    display: flex;
    gap: 29px;
  }

  .custom-footer__line,
  .custom-footer__instagram {
    display: block;
    width: 32px;
  }

  .custom-footer__x {
    display: block;
    width: 30px;
  }

  .custom-footer__youtube {
    display: block;
    width: 44px;
  }

  .custom-footer__desc {
    display: flex;
    gap: 42px;

    @media screen and (max-width: 768px) {
      flex-direction: column-reverse;
      gap: 30px;
    }
  }

  .custom-footer__time {
    @media screen and (min-width: 769px) {
      width: min(410px, calc(var(--vw) * 410));
    }

    @media screen and (max-width: 768px) {
      margin-bottom: 30px;
    }
  }

  .custom-footer__map {
    @media screen and (min-width: 769px) {
      width: 335px;
      height: 168px;
    }

    iframe {
      width: 100%;
      height: 100%;
    }
  }

  .custom-footer__copyright {
    text-align: center;
    font-size: calc(var(--rem) * 9);
    letter-spacing: 0.45px;
    margin-bottom: 10px;
    @media screen and (min-width: 769px) {
      font-size: calc(var(--rem) * 14);
      letter-spacing: 0.7px;
      margin-bottom: 20px;
    }
  }

  .custom-footer__annotation {
    text-align: center;
    font-size: calc(var(--rem) * 11);
    letter-spacing: 0.55px;
    margin-bottom: 60px;

    @media screen and (min-width: 769px) {
      font-size: calc(var(--rem) * 12);
      letter-spacing: 0.6px;
      margin-bottom: 12px;
    }
  }
}
.custom-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 200px 25px 50px;
  gap: calc(var(--vw) * 20);

  @media screen and (min-width: 769px) {
    max-width: calc(var(--vw) * 724);
    gap: calc(var(--vw) * 40);
    width: 100%;
    padding: 250px 0 90px;
  }

  .custom-404__title {
    font-weight: bold;
    font-size: calc(var(--rem) * 20);

    @media screen and (min-width: 769px) {
      font-size: calc(var(--rem) * 32);
    }
  }

  .custom-404__text {
    font-weight: 600;
    font-size: calc(var(--rem) * 14);
    text-align: center;

    @media screen and (min-width: 769px) {
      font-size: calc(var(--rem) * 18);
    }
  }

  .custom-404__link {
    color: #005E9E;
    font-weight: 600;
    text-decoration: underline;
    font-size: calc(var(--rem) * 12);
    margin-top: calc(var(--vw) * 20);

    @media screen and (min-width: 769px) {
      font-size: calc(var(--rem) * 16);
      margin-top: calc(var(--vw) * 30);
    }
  }
}

/* タイトル系 */
.c-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 23px;

  @media screen and (min-width: 769px) {
    margin-bottom: 41px;
  }
}

.c-title__sub {
  font-weight: bold;
  font-family: "century-gothic", sans-serif;
  font-size: calc(var(--rem) * 12);
  letter-spacing: 0.6px;
  margin-bottom: 6px;
  color: #99D2E9;

  @media screen and (min-width: 769px) {
    margin-bottom: 12px;
    font-size: calc(var(--rem) * 15);
    letter-spacing: 1.5px;
  }
}

.c-title__main {
  font-weight: bold;
  font-size: calc(var(--rem) * 17);
  letter-spacing: 0.85px;

  @media screen and (min-width: 769px) {
    font-size: calc(var(--rem) * 20);
    letter-spacing: 1px;
  }
}

/* 共通フェードアニメーション */
.js-reveal,
.js-reveal-mv {
  position: relative;
  display: inline;
  padding: 2px 5px;
  overflow: hidden;
  margin-left: -5px;
  transition: color .8s cubic-bezier(0.35, 0, 0, 1);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;

  background-image: linear-gradient(#004F92, #004F92);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 0% 100%;
  transition: background-size .8s cubic-bezier(.35, 0, 0, 1), color .8s cubic-bezier(.35, 0, 0, 1);

  @media screen and (min-width: 769px) {
    padding: 5px 7px;
    margin-left: -7px;
  }

  &.is-shown {
    background-size: 100% 100%;
    color: #FFF;
  }
}

.js-reveal-mv {
  background-image: linear-gradient(#FFF, #FFF);
  padding: 1px 39px 1px 29px;

  @media screen and (max-width: 768px) {
    padding: 2px 5px 2px 14px;
  }

  &.is-shown {
    background-size: 100% 100%;
    color: #004F92;
  }
}

.js-lead {
  position: relative;

  &::after {
    content: "";
    right: 0;
    position: absolute;
    background: #FFF;
    width: 100%;
    height: 100%;
    transition: width 1s cubic-bezier(0.35, 0, 0, 1);
  }

  &.is-shown {
    &::after {
      width: 0;
    }
  }
}

.js-fade-in-left {
  opacity: 0;
  transform: translateX(-35px);
  transition:
    transform 0.8s linear,
    opacity 0.9s linear;
}

.js-fade-in-right {
  opacity: 0;
  transform: translateX(35px);
  transition:
    transform 0.8s linear,
    opacity 0.9s linear;
}

.js-fade-in,
.js-fade-series-ele {
  opacity: 0;
  transform: translateY(15px);
  transition:
    transform 0.3s linear,
    opacity 0.4s linear;
}

.js-fade-in-right.is-shown,
.js-fade-in-left.is-shown {
  opacity: 1;
  transform: translateX(0);
}

.js-fade-in.is-shown,
.js-fade-series-ele.is-shown {
  opacity: 1;
  transform: translateY(0px);
}

.js-fade-bubble-sevral-rows-ele {
  opacity: 0;
}

.js-fade-bubble-sevral-rows-ele.is-shown {
  -webkit-animation: fadeInScale .9s ease-out forwards;
  animation: fadeInScale .9s ease-out forwards
}

.js-blur {
  opacity: 0;

  &.is-shown {
    -webkit-animation: blur .7s ease-out forwards;
    animation: blur .7s ease-out forwards
  }
}

.js-fade-up {
  opacity: 0;
  transform: translate(0, 5%);
  transition: 2s;

  &.is-shown {
    transform: translate(0, 0);
    opacity: 1;
  }
}

.js-fade-corner-right {
  clip-path: polygon(0 10%, 93% 10%, 93% 100%, 0% 100%);
  animation-fill-mode: both;
  opacity: 0;
  transition: opacity 0.5s linear;

  &.is-shown {
    opacity: 1;
    -webkit-animation: fadeCorner 1.2s ease-out forwards;
    animation: fadeCorner 1.2s ease-out forwards
  }
}

.js-fade-corner-left {
  clip-path: polygon(0 10%, 93% 10%, 93% 100%, 0% 100%);
  animation-fill-mode: both;
  opacity: 0;
  transition: opacity 0.5s linear;

  &.is-shown {
    opacity: 1;
    -webkit-animation: fadeCornerLeft 1.2s ease-out forwards;
    animation: fadeCornerLeft 1.2s ease-out forwards
  }
}

@keyframes fadeCorner {
  0% {
    clip-path: polygon(0 10%, 93% 10%, 93% 100%, 0% 100%);
  }

  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}

@keyframes fadeCornerLeft {
  0% {
    clip-path: polygon(7% 10%, 100% 10%, 100% 100%, 7% 100%);
  }

  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@keyframes blur {
  0% {
    opacity: 0;
    filter: blur(15px);
  }

  100% {
    opacity: 1;
    filter: blur(0px);
  }
}

@keyframes fadeInScale {
  0% {
    -webkit-transform: scale(.8);
    transform: scale(.8);
    opacity: 0
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 1
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }
}

/* reCAPTCHAのロゴ非表示 */
.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha-text {
  color: #A4A4A4;
  font-size: calc(var(--rem) * 10);
  display: block;
  text-align: center;
  margin-top: calc(var(--vw) * 13);

  @media screen and (min-width: 769px) {
    font-size: calc(var(--rem) * 12);
  }
}

.only-sp {
  @media screen and (min-width: 769px) {
    display: none !important;
  }
}

.only-pc {
  @media screen and (max-width: 768px) {
    display: none !important;
  }
}

.splide__list {
  align-items: center;
}

.common-recommend {
  margin-bottom: 100px;
  @media screen and (max-width: 768px) {
    margin-bottom: 50px;
  }
}

/* ページ下部共通CTA */
.cta-bottom {}

:where(.cta-bottom) {
  .cta-bottom__text {
    font-weight: bold;
    text-align: center;
    font-size: calc(var(--rem) * 18);
    letter-spacing: 0.9px;
    margin-bottom: 30px;

    @media screen and (min-width: 769px) {
      font-size: calc(var(--rem) * 25);
      letter-spacing: 1.25px;
      margin-bottom: 32px;
    }
  }

  .cta-bottom__list {
    display: flex;
    justify-content: center;

    @media screen and (max-width: 1000px) {
      flex-direction: column;
      gap: 18px;
      align-items: center;
    }

    @media screen and (min-width: 769px) {
      gap: 24px;
    }
  }

  .cta-bottom__request {
    display: block;

    @media screen and (min-width: 769px) {
      width: 487px;
    }
  }

  .cta-bottom__cousultation {
    display: block;

    @media screen and (min-width: 769px) {
      width: 483px;
    }
  }
}


/* 共通処理 */
.c-title-en {
  text-align: center;
  color: #CD6B7A;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-size: calc(var(--rem) * 12);
  letter-spacing: 0.6px;
  margin-bottom: 7px;

  @media screen and (min-width: 769px) {
    font-size: calc(var(--rem) * 14);
    letter-spacing: 0.7px;
    margin-bottom: 10px;
  }
}

.c-title {
  color: #77535F;
  text-align: center;
  font-size: calc(var(--rem) * 17);
  letter-spacing: 1.36px;
  margin-bottom: 30px;

  @media screen and (min-width: 769px) {
    font-size: calc(var(--rem) * 20);
    letter-spacing: 1.6px;
    margin-bottom: 50px;
  }
}

.c-main {
  padding: 85px 0 50px;

  @media screen and (min-width: 769px) {
    padding: 204px 0 100px;
  }
}

.c-main-header {
  padding: 64px 0 50px;

  @media screen and (min-width: 769px) {
    padding: 130px 0 100px;
  }
}

.c-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 25px;
  box-sizing: content-box;
}

.c-banners {
  display: grid;
  gap: 20px;

  @media screen and (min-width: 769px) {
    gap: 22px;
  }
}

.c-banners__web {
  @media screen and (min-width: 769px) {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
}

.c-banners__line {
  @media screen and (min-width: 769px) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
}

.c-banners__call {
  @media screen and (min-width: 769px) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
}

.c-side-menu {
  font-size: calc(var(--rem) * 13);
  letter-spacing: 1.04px;
  line-height: 17px;
}

.c-side-menu__sp-button {
  color: #FFF;
  box-sizing: border-box;
  width: 100%;
  display: block;
  padding: 11px 22px;
  background: linear-gradient(to right, #DF8F9B, #FFC8C2);
  font-size: calc(var(--rem) * 15);
  letter-spacing: 1.2px;
  position: relative;

  &::after {
    content: "＋";
    display: inline-block;
    position: absolute;
    right: 18px;
  }

  &.is-shown {
    &:after {
      content: "ー";
    }
  }
}

.c-side-menu__inner {
  @media screen and (max-width: 768px) {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.65s ease;
  }

  &.is-shown {
    max-height: 1000px;
  }
}

.c-side-menu__list {
  >li+li {
    margin-top: 25px;

    @media screen and (max-width: 768px) {
      margin-top: 7px;
    }
  }

  @media screen and (max-width: 768px) {
    padding-top: 23px;
  }
}

.c-side-menu__child {
  display: block;
  width: 100%;
}

.c-side-menu__parent {
  &.is-shown {
    .c-side-menu__parent-panel {
      max-height: 1500px;

      @media screen and (max-width: 768px) {
        margin: 13px 0;
      }
    }

    .c-side-menu__parent-button {
      &:after {
        content: "ー";
      }
    }
  }
}

.c-side-menu__parent-button {
  display: block;
  width: 100%;
  font-weight: bold;
  color: #DF8F9B;
  padding-bottom: 10px;
  border-bottom: 1px dotted;
  margin-bottom: 12px;
  position: relative;
  @media screen and (max-width: 768px) {
    margin-bottom: 10px;
  }
  &:after {
    content: "＋";
    display: inline-block;
    position: absolute;
    right: 0;
  }
}

.c-side-menu__parent-panel,
.c-side-menu__child-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.65s ease;
}

.c-side-menu__parent-panel {
  >li+li {
    margin-top: 13px;
    @media screen and (max-width: 768px) {
      margin-top: 9px;
    }
  }
}

.c-side-menu__child-button {
  position: relative;
  display: block;
  width: 100%;

  &.has-grandchild {
    &:after {
      color: #DF8F9B;
      content: "＋";
      display: inline-block;
      position: absolute;
      right: 0;
    }
  }
}

.c-side-menu__child-panel {
  margin-left: 15px;

  >ul {
    padding-top: 11px;

    >li+li {
      margin-top: 11px;
    }
  }
}

.c-side-menu__child {
  &.is-shown {
    .c-side-menu__child-panel {
      max-height: 500px;
    }

    .c-side-menu__child-button {
      &:after {
        content: "ー";
      }
    }
  }
}

/* テンプレート用 */
/* 3カラム */
.t-3-column:not(.no-container) {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 25px;
  box-sizing: content-box;
}

.t-3-column {
  display: grid;
  gap: 30px;

  @media screen and (min-width: 769px) {
    grid-template-columns: 1fr 1fr 1fr;
    gap: min(40px, calc(var(--vw) * 40));
  }
}

.t-3-column__image {
  @media screen and (max-width: 768px) {
    width: calc(var(--vw) * 200);
    margin: 0 auto 20px auto;
  }

  @media screen and (min-width: 769px) {
    margin-bottom: min(20px, calc(var(--vw) * 20));
  }
}

.t-3-column__title {
  font-size: calc(var(--rem) * 17);
  letter-spacing: 1.36px;
  line-height: 27px;
  margin-bottom: 20px;
  color: #DF8F9B;
  text-align: center;

  @media screen and (min-width: 769px) {
    font-size: calc(var(--rem) * 20);
    letter-spacing: 1.6px;
  }

  @media screen and (max-width: 768px) {
    position: relative;
    padding-left: 30px;

    &::before {
      content: "";
      display: inline-block;
      position: absolute;
      width: 14px;
      height: 143%;
      background: #DF8F9B;
      top: 50%;
      left: 0%;
      transform: translateY(-50%);
    }
  }
}

.t-3-column__text {
  font-size: calc(var(--rem) * 13);
  letter-spacing: 1.04px;
  line-height: 22px;

  @media screen and (min-width: 769px) {
    line-height: 25px;
  }
}


.free {
  margin: 0 auto 60px auto;

  @media screen and (min-width: 769px) {
    margin: 0 auto 100px auto;
  }

  /* テンプレ共通 */
  .free__item-text {
    font-size: calc(var(--rem) * 13);
    letter-spacing: 1.04px;
    line-height: 25px;

    @media screen and (max-width: 768px) {
      line-height: 23px;
    }
    a {
      color: #FFF;
      display: inline-block;
      text-align: center;
      background: linear-gradient(to right, #DF8F9B, #FFC8C2);

      @media screen and (max-width: 768px) {
        width: 100%;
        padding: 17px 10px;
        border-radius: 28px;
      }

      @media screen and (min-width: 769px) {
        font-size: calc(var(--rem) * 17);
        letter-spacing: 1.36px;
        padding: 18px 10px;
        border-radius: 38.63px;
        min-width: 350px;
      }
    }
  }

  .free__item-media {
    overflow: hidden;

    img,
    iframe {
      object-fit: contain;
      height: 100%;
      width: 100%;
    }
  }

  .free__item-title {
    font-size: calc(var(--rem) * 17);
    letter-spacing: 1.36px;

    @media screen and (min-width: 769px) {
      font-size: calc(var(--rem) * 20);
      letter-spacing: 1.6px;
    }
  }

  /* 1カラムA */
  &.col1_a {
    max-width: 1100px;
    padding: 0 25px;
    box-sizing: content-box;

    .c-title-en,
    .c-title {
      text-align: start;
    }

    .free__item+.free__item {
      margin-top: 30px;

      @media screen and (min-width: 769px) {
        margin-top: 70px;
      }
    }

    .free__item {
      display: flex;
      flex-direction: column-reverse;
      gap: 30px;

      @media screen and (min-width: 769px) {
        gap: 50px;
      }
    }

    .free__item-title {
      margin-bottom: 10px;

      @media screen and (min-width: 769px) {
        margin-bottom: 15px;
      }
    }

    .free__item-media {
      margin: 0 auto;
      width: min(325px, calc(var(--vw) * 325));
      height: min(200px, calc(var(--vw) * 200));

      @media screen and (min-width: 769px) {
        width: min(768px, calc(var(--vw) * 768));
        height: min(432px, calc(var(--vw) * 432));
      }
    }
  }

  /* 1カラムB */
  &.col1_b {
    max-width: 1100px;
    padding: 0 25px;
    box-sizing: content-box;

    .free__items {
      display: grid;
      row-gap: min(70px, calc(var(--vw) * 70));

      @media screen and (max-width: 768px) {
        display: flex;
        flex-direction: column;
        gap: calc(var(--vw) * 40);
      }
    }

    .free__item {
      display: flex;
      align-items: center;

      @media screen and (min-width: 769px) {
        column-gap: min(50px, calc(var(--vw) * 50));
      }

      @media screen and (max-width: 768px) {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--vw) * 20);
      }

      >picture {
        @media screen and (min-width: 769px) {
          flex: 1;
        }
      }

      >div {
        @media screen and (max-width: 768px) {
          width: 100%;
        }
        @media screen and (min-width: 769px) {
          flex: 1;
        }
      }

      &:nth-child(odd) {
        @media screen and (min-width: 769px) {
          flex-direction: row-reverse;
        }
      }
    }

    .free__item-title {
      color: #DF8F9B;
      position: relative;
      position: relative;
      padding-left: 30px;
      margin-bottom: 20px;

      span {
        font-size: calc(var(--rem) * 13);
        letter-spacing: 1.04px;

        @media screen and (max-width: 768px) {
          font-size: calc(var(--rem) * 11);
          letter-spacing: 0.88px;
        }
      }

      @media screen and (min-width: 769px) {
        padding-left: 29px;
        margin-bottom: 36px;
      }

      &::before {
        content: "";
        display: inline-block;
        position: absolute;
        width: 14px;
        height: 120%;
        background: #DF8F9B;
        top: 50%;
        left: 0%;
        transform: translateY(-50%);

        @media screen and (max-width: 768px) {
          height: 100%;
        }
      }
    }

    .free__item-media {
      max-width: min(325px, calc(var(--vw) * 325));
      height: min(200px, calc(var(--vw) * 200));

      @media screen and (min-width: 769px) {
        margin: 0 auto;
        max-width: min(500px, calc(var(--vw) * 500));
        height: min(300px, calc(var(--vw) * 300));
      }
    }
  }

  /* 2カラム */
  &.col2 {
    max-width: 1100px;
    padding: 0 25px;
    box-sizing: content-box;

    .free__items {
      display: grid;
      row-gap: 40px;

      @media screen and (min-width: 769px) {
        grid-template-columns: 1fr 1fr;
        column-gap: min(100px, calc(var(--vw) * 100));
        row-gap: min(50px, calc(var(--vw) * 50));
      }
    }

    .free__item-media {
      width: min(325px, calc(var(--vw) * 325));
      height: min(200px, calc(var(--vw) * 200));
      overflow: hidden;
      margin: 0 auto 20px auto;

      @media screen and (min-width: 769px) {
        width: 100%;
        height: min(300px, calc(var(--vw) * 300));
      }

      img {
        object-fit: cover;
        height: 100%;
      }
    }

    .free__item-title {
      color: #DF8F9B;
      position: relative;
      font-size: calc(var(--rem) * 17);
      letter-spacing: 1.36px;
      position: relative;
      padding-left: 30px;
      margin-bottom: 20px;

      span {
        font-size: calc(var(--rem) * 13);
        letter-spacing: 1.04px;

        @media screen and (max-width: 768px) {
          font-size: calc(var(--rem) * 11);
          letter-spacing: 0.88px;
        }
      }

      @media screen and (min-width: 769px) {
        padding-left: 29px;
        margin-bottom: 36px;
        font-size: calc(var(--rem) * 20);
        letter-spacing: 1.6px;
      }

      &::before {
        content: "";
        display: inline-block;
        position: absolute;
        width: 14px;
        height: 120%;
        background: #DF8F9B;
        top: 50%;
        left: 0%;
        transform: translateY(-50%);

        @media screen and (max-width: 768px) {
          height: 100%;
        }
      }
    }
  }

  /* 3カラム色付き/色なし 4カラム色付き/色なし */
  &.col3_bg,
  &.col3,
  &.col4_bg,
  &.col4 {
    background: #FFF9FA;
    padding: 25px 0;

    @media screen and (min-width: 769px) {
      padding: 50px 0;
    }

    .free__inner {
      max-width: 1100px;
      padding: 0 25px;
      margin: 0 auto;
      box-sizing: content-box;
    }

    .free__item-title {
      color: #DF8F9B;
      margin-bottom: 20px;
      position: relative;

      @media screen and (max-width: 768px) {
        padding-left: 30px;

        &::before {
          content: "";
          display: inline-block;
          position: absolute;
          width: 14px;
          height: 100%;
          background: #DF8F9B;
          top: 50%;
          left: 0%;
          transform: translateY(-50%);
        }
      }
    }

    .free__items {
      display: grid;

      @media screen and (max-width: 768px) {
        gap: 40px;
      }

      @media screen and (min-width: 769px) {
        grid-template-columns: 1fr 1fr 1fr;
        column-gap: min(40px, calc(var(--vw) * 40));
        row-gap: min(24px, calc(var(--vw) * 24));
      }
    }
  }

  &.col3_bg,
  &.col3 {
    .free__item-media {
      overflow: hidden;
      border-radius: 50%;
      margin: 0 auto 20px auto;
      width: calc(var(--vw) * 220);
      height: calc(var(--vw) * 220);

      @media screen and (min-width: 769px) {
        width: min(300px, calc(var(--vw) * 300));
        height: min(300px, calc(var(--vw) * 300));
      }

      img, iframe {
        object-fit: cover;
      }
    }
  }

  &.col3,
  &.col4 {
    background: #FFF;
    padding: 0;
  }

  &.col4_bg,
  &.col4 {
    .free__items {
      @media screen and (min-width: 769px) {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        column-gap: min(30px, calc(var(--vw) * 30));
      }
    }

    .free__item-media {
      overflow: hidden;
      margin-bottom: 20px;
      height: calc(var(--vw) * 200);

      @media screen and (min-width: 769px) {
        width: 100%;
        height: min(150px, calc(var(--vw) * 150));
      }
    }

    .free__item-title {
      @media screen and (min-width: 769px) {
        font-size: calc(var(--rem) * 16);
        letter-spacing: 1.28px;
      }
    }

    .free__item-text {
      @media screen and (min-width: 769px) {
        font-size: calc(var(--rem) * 12);
        letter-spacing: 0.96px;
        line-height: 22px;
      }
    }
  }

  /* 表 */
  &.table {
    .free__inner {
      max-width: 1100px;
      box-sizing: content-box;
      margin: 0 auto;

      @media screen and (min-width: 769px) {
        padding: 0 25px;
      }

      @media screen and (max-width: 768px) {
        padding-left: 25px;
      }
    }

    .table__inner {
      @media screen and (max-width: 768px) {
        overflow-x: scroll;
      }
      &.is-three {
        .table__head {
          grid-template-columns: 130px 270px 270px 270px;
          @media screen and (min-width: 769px) {
            grid-template-columns: 0.45fr 1fr 1fr 1fr;
          }
        }
        .table__row {
          grid-template-columns: 130px 270px 270px 270px;
          @media screen and (min-width: 769px) {
            grid-template-columns: 0.45fr 1fr 1fr 1fr;
          }
        }
      }
    }

    .table__head {
      display: grid;
      grid-template-columns: 130px 300px 300px;

      @media screen and (min-width: 769px) {
        grid-template-columns: 0.45fr 1fr 1fr;
        place-content: end;
      }
    }

    .table__col {
      background-color: #DF8F9B;
      color: #FFF;
      font-size: calc(var(--rem) * 13);
      letter-spacing: 1.04px;
      padding: 15px;

      @media screen and (min-width: 769px) {
        padding: 20px;
      }
    }

    .table__col+.table__col {
      border-left: 1px solid #C5B1B7;
    }

    .table__row {
      display: grid;
      grid-template-columns: 130px 300px 300px;

      @media screen and (min-width: 769px) {
        border-top: 1px solid #C5B1B7;
        grid-template-columns: 0.45fr 1fr 1fr;
      }

      &:last-child {
        @media screen and (min-width: 769px) {
          border-bottom: 1px solid #C5B1B7;
        }

        .table__cell,
        .table__label {
          @media screen and (max-width: 768px) {
            border-bottom: 1px solid #C5B1B7;
          }
        }
      }
    }

    .table__label {
      background-color: #F6F6F6;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: calc(var(--rem) * 13);
      letter-spacing: 1.04px;
      padding: 0 15px;

      @media screen and (max-width: 768px) {
        border-top: 1px solid #C5B1B7;
      }
    }

    .table__cell:has(picture) {
      display: flex;
      align-items: center;
      flex-direction: column;
      justify-content: center;
      gap: 10px;
    }

    .table__cell {
      padding: 15px;
      font-size: calc(var(--rem) * 13);
      letter-spacing: 1.04px;
      line-height: 22px;

      @media screen and (max-width: 768px) {
        border-top: 1px solid #C5B1B7;
      }

      @media screen and (min-width: 769px) {
        padding: 20px;
        line-height: 23px;
      }

      a {
        color: #FFF;
        display: inline-block;
        text-align: center;
        width: 100%;
        background: linear-gradient(to right, #DF8F9B, #FFC8C2);

        @media screen and (max-width: 768px) {
          padding: 9px 10px;
          border-radius: 28px;
          font-size: calc(var(--rem) * 12);
          letter-spacing: 1.2px;
          margin-top: 5px;
        }

        @media screen and (min-width: 769px) {
          font-size: calc(var(--rem) * 12);
          letter-spacing: 1.2px;
          padding: 9px 10px;
          border-radius: 38.63px;
          margin-top: 5px;
        }
      }
    }

    .table__cell+.table__cell {
      border-left: 1px solid #C5B1B7;
    }
  }

  /* ギャラリー */
  &.gallery {
    .free__gallery {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: calc(var(--vw) * 13.5);

      @media screen and (min-width: 769px) {
        grid-template-columns: 1fr 1fr 1fr;
        gap: min(30px, calc(var(--vw) * 30));

      }
    }
  }
}

.t-1b-column:not(.no-container) {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 25px;
  box-sizing: content-box;
}

.t-1b-column__list {
  display: grid;
  row-gap: min(70px, calc(var(--vw) * 70));

  @media screen and (max-width: 768px) {
    gap: calc(var(--vw) * 40);
  }
}

.t-1b-column__item {
  display: flex;
  align-items: center;

  @media screen and (min-width: 769px) {
    column-gap: min(50px, calc(var(--vw) * 50));
  }

  @media screen and (max-width: 768px) {
    flex-direction: column;
    gap: calc(var(--vw) * 20);
  }

  >picture {
    flex: 1;
  }

  >div {
    flex: 1;
  }

  &:nth-child(odd) {
    @media screen and (min-width: 769px) {
      flex-direction: row-reverse;
    }
  }
}

.t-1b-column__title {
  color: #DF8F9B;
  position: relative;
  font-size: calc(var(--rem) * 17);
  letter-spacing: 1.36px;
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;

  span {
    font-size: calc(var(--rem) * 13);
    letter-spacing: 1.04px;

    @media screen and (max-width: 768px) {
      font-size: calc(var(--rem) * 11);
      letter-spacing: 0.88px;
    }
  }

  @media screen and (min-width: 769px) {
    padding-left: 29px;
    margin-bottom: 36px;
    font-size: calc(var(--rem) * 18);
    letter-spacing: 1.44px;
  }

  &::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 14px;
    height: 120%;
    background: #DF8F9B;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);

    @media screen and (max-width: 768px) {
      height: 100%;
    }
  }
}

.t-1b-column__text {
  font-size: calc(var(--rem) * 13);
  letter-spacing: 1.04px;
  line-height: 25px;
}


/* ページ上部へ行くボタン */
.c-go-top-button {
  position: fixed;
  z-index: 99;
  width: 60px;
  height: 60px;
  right: 13px;
  bottom: 100px;
  @media screen and (min-width: 769px) {
    width: 70px;
    height: 70px;
    bottom: 44px;
    right: 42px;
  }
}