:root {
  --contents-width: 1024;
  --contents-width-tb: 768;
  --contents-width-sp: 400;
  --bg-color-primary: #FCF8F2;
  --bg-color-grey: #F1F2F0;
  --bg-color-white: #FFFFFF;
  --bg-color-green: #C6E2D1;
  --text-color-black: #3a3a3a;
  --text-color-grey: #999999;
  --text-color-lgrey: #CCCCCC;
  --text-color-white: #FFFFFF;
  --text-color-green: #57b38a;
  --text-color-green2: #0AAF7A;
  --button-color-lgreen: #57B38A;
  --button-color-green: #0AAF7A;
  --button-color-grey: #808080;
  --button-color-lgrey: #CCCCCC;
  --button-color-white: #FFFFFF;
  --border-color-grey: #CCC9C4;
  --border-color-black: #3a3a3a;
  --border-color-green: #0AAF7A;
  --border-grey: 1px solid #CECECE;
  --border-green: 1px solid var(--border-color-green);
  --font-base: "Noto Serif JP", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-normal: 400;
  --font-medium: 500;
  --font-bold: 700;
  --font-size-12-14: clamp(12px, calc(11.17px + 0.221vw), 14px);
  --font-size-12-16: clamp(12px, calc(10.34px + 0.442vw), 16px);
  --font-size-14-16: clamp(14px, calc(13.17px + 0.221vw), 16px);
  --font-size-14-18: clamp(14px, calc(12.34px + 0.44vw ), 18px);
  --font-size-14-20: clamp(14px, calc(11.51px + 0.663vw), 20px);
  --font-size-16-20: clamp(16px, calc(14.34px + 0.442vw), 20px);
  --font-size-14-22: clamp(14px, calc(10.69px + 0.883vw), 22px);
  --font-size-18-24: clamp(18px, calc(15.51px + 0.6629vw), 24px);
  --font-size-15-24: clamp(15px, calc(11.13px + 1.032vw), 24px);
  --font-size-18-28: clamp(18px, calc(13.86px + 1.105vw), 28px);
  --font-size-22-30: clamp(22px, calc(18.7px + 0.88vw ), 30px);
  --font-size-22-32: clamp(22px, calc(17.86px + 1.105vw), 32px);
  --font-size-20-36: clamp(20px, calc(13.37px + 1.769vw), 36px);
  --font-size-22-34: clamp(22px, calc(17px + 1.33vw ), 34px);
  --font-size-22-40: clamp(22px, calc(14.54px + 1.989vw), 40px);
  --line-height: 1.5;
  --margin-auto: 0 auto;
}

/*============================
 common layout
============================*/
html {
  font-family: var(--font-base);
  font-size: var(--font-size-14-16);
  font-weight: var(--font-normal);
  line-height: var(--line-height);
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
    -o-tab-size: 4;
       tab-size: 4;
}

body {
  color: var(--text-color-black);
  line-height: var(--line-height);
  background-color: var(--bg-color-primary);
}

a {
  color: var(--text-color-black);
  text-decoration: underline;
}
a:hover {
  color: var(--text-color-grey);
}

@media (min-width: 751px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
small {
  font-size: var(--font-size-12-14);
}

.site-wrap {
  overflow-x: hidden;
  position: relative;
}

.l-container {
  margin: 0 5%;
}
@media screen and (max-width: 768px) {
  .l-container {
    margin: 0 calc(3% + 2rem);
  }
}

.l-inner {
  max-width: calc(var(--contents-width) * 1px);
  margin: var(--margin-auto);
  padding-top: 5.31rem;
  padding-bottom: 5.31rem;
}
@media screen and (max-width: 768px) {
  .l-inner {
    padding-top: 2.19rem;
    padding-bottom: 2.19rem;
  }
}

/* grid ------------------------------ */
.l-grid--2col {
  display: grid;
}
@media screen and (min-width: 769px) {
  .l-grid--2col {
    grid-template-columns: repeat(2, 1fr);
    gap: min(65 / var(--contents-width) * 100vw, 65px);
  }
}
@media screen and (max-width: 400px) {
  .l-grid--2col {
    grid-template-columns: 1fr;
  }
}

.l-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .l-heading {
    gap: min(80 / var(--contents-width) * 100vw, 80px);
  }
}
@media screen and (max-width: 768px) {
  .l-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

/*============================
 Component
============================*/
.c-heading-xxxlarge {
  font-size: var(--font-size-22-40);
  font-weight: var(--font-medium);
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .c-heading-xxxlarge {
    margin-bottom: 0.94rem;
  }
}

.c-heading-xxlarge {
  font-size: var(--font-size-22-34);
  font-weight: var(--font-medium);
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .c-heading-xxlarge {
    margin-bottom: 0.94rem;
  }
}

.c-heading-xlarge {
  font-size: var(--font-size-22-30);
  font-weight: var(--font-medium);
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .c-heading-xlarge {
    margin-bottom: 0.94rem;
  }
}

.c-heading-large {
  font-size: var(--font-size-18-28);
  font-weight: var(--font-medium);
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .c-heading-large {
    margin-bottom: 0.94rem;
  }
}

.c-heading-medium {
  font-size: var(--font-size-16-20);
  font-weight: var(--font-medium);
  margin-bottom: 3.13rem;
}
@media screen and (max-width: 768px) {
  .c-heading-medium {
    margin-bottom: 0.94rem;
  }
}

.c-heading-border {
  padding-bottom: 0.63rem;
}
.c-heading-border span {
  position: relative;
}
.c-heading-border span:after {
  content: "";
  display: block;
  width: 85%;
  height: 1px;
  background-color: var(--text-color-green);
  position: absolute;
  bottom: -0.63rem;
  left: 50%;
  transform: translateX(-50%);
}

.c-heading-circle {
  position: relative;
  z-index: 2;
  margin-top: 3.13rem;
  margin-bottom: 1.88rem;
}
.c-heading-circle::before {
  content: "";
  width: 8rem;
  height: 8rem;
  background: url(../img/icon_circle_large.svg) no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .c-heading-circle {
    margin-bottom: 2.81rem;
  }
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0.8em 1.6em;
  text-decoration: none;
  line-height: 1;
  position: relative;
  transition: background-color 0.3s ease;
}

.c-button--green {
  background: var(--button-color-lgreen);
  color: var(--bg-color-white);
}
.c-button--green:hover {
  background: var(--button-color-green);
  color: var(--text-color-white);
}
.c-button--green:active {
  background: color-mix(in srgb, var(--button-color-green) 85%, #000);
}

.arrow-icon {
  width: 1em;
  height: 1em;
  overflow: visible;
}

.arrow-line {
  stroke-dasharray: 29;
  stroke-dashoffset: 29;
  transition: stroke-dashoffset 0.35s ease;
}

.arrow-body {
  transition: transform 0.35s ease;
  transform-origin: left center;
}

.c-button--green:hover .arrow-line {
  stroke-dashoffset: 0;
}

.c-button--green:hover .arrow-body {
  transform: translateX(1em);
}

/*============================
 Utility
============================*/
.u-sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp-only {
    display: block;
  }
}

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

.u-w100 {
  width: 100%;
}

.u-max-w100 {
  max-width: 100%;
}

.u-font-12-14 {
  font-size: var(--font-size-12-14);
}

.u-font-12-16 {
  font-size: var(--font-size-12-16);
}

.u-font-14-16 {
  font-size: var(--font-size-14-16);
}

.u-font-14-18 {
  font-size: var(--font-size-14-18);
}

.u-font-14-20 {
  font-size: var(--font-size-14-20);
}

.u-font-16-20 {
  font-size: var(--font-size-16-20);
}

.u-font-14-22 {
  font-size: var(--font-size-14-22);
}

.u-font-15-24 {
  font-size: var(--font-size-15-24);
}

.u-font-18-28 {
  font-size: var(--font-size-18-28);
}

.u-font-22-30 {
  font-size: var(--font-size-22-30);
}

.u-font-22-32 {
  font-size: var(--font-size-22-32);
}

.u-font-22-34 {
  font-size: var(--font-size-22-34);
}

.u-font-20-36 {
  font-size: var(--font-size-22-34);
}

.u-font-22-40 {
  font-size: var(--font-size-22-40);
}

.u-line-height-2 {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .u-line-height-2 {
    line-height: 1.7;
  }
}

.u-font-normal {
  font-weight: var(--font-normal);
}

.u-font-medium {
  font-weight: var(--font-medium);
}

.u-font-bold {
  font-weight: var(--font-bold);
}

.u-color-black {
  color: var(--text-color-black);
}

.u-color-grey {
  color: var(--text-color-grey);
}

.u-color-white {
  color: var(--text-color-white);
}

.u-color-green {
  color: var(--text-color-green);
}

.u-color-green2 {
  color: var(--text-color-green2);
}

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

.u-text-left {
  text-align: left;
}

.u-mt-0 {
  margin-top: 0;
}

.u-mr-0 {
  margin-right: 0;
}

.u-mb-0 {
  margin-bottom: 0;
}

.u-mb-5 {
  margin-bottom: 0.31rem;
}

.u-mb-10 {
  margin-bottom: 0.63rem;
}

.u-mb-15 {
  margin-bottom: 0.94rem;
}

.u-mb-30 {
  margin-bottom: 1.88rem;
}

.u-mb-50 {
  margin-bottom: 3.13rem;
}

.u-ml-0 {
  margin-left: 0;
}

.u-pt-0 {
  padding-top: 0;
}

.u-pr-0 {
  padding-right: 0;
}

.u-pb-0 {
  padding-bottom: 0;
}

.u-pl-0 {
  padding-left: 0;
}

.u-border-top-grey {
  border-top: 1px solid var(--border-color-grey);
}

/*============================
 animation
============================*/
.animation-text,
.animation-item {
  filter: blur(5px);
  opacity: 0;
}
.animation-text.is-visible, .animation-text.is-visible,
.animation-item.is-visible,
.animation-item.is-visible {
  animation: fadeInBlur 1s ease forwards;
}

@keyframes fadeInBlur {
  from {
    filter: blur(5px);
    opacity: 0;
  }
  to {
    filter: blur(0);
    opacity: 1;
  }
}
.animation-image {
  transform: scale(0.95);
  opacity: 0;
}
.animation-image.is-visible {
  animation: fadeInScale 1.5s ease forwards;
}

@keyframes fadeInScale {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/*============================
 accordion
============================*/
.accordion__header {
  cursor: pointer;
}

.accordion {
  overflow: hidden;
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  display: block;
}
.accordion__content p {
  margin: 0;
  display: block;
  line-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: line-height 0.3s ease-out, opacity 0.1s linear, visibility 0.1s linear;
}

.accordion__toggle {
  position: relative;
  width: 10px;
  height: 10px;
}
.accordion__toggle::before, .accordion__toggle::after {
  content: "";
  position: absolute;
  background: var(--button-color-green);
  transition: transform 0.3s ease;
}
.accordion__toggle::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.accordion__toggle::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%) rotate(0deg);
  transform-origin: center;
}

.accordion.is-open .accordion__content {
  max-height: 100%;
  padding: 20px;
}
.accordion.is-open .accordion__content p {
  line-height: var(--line-height);
  opacity: 1;
  visibility: visible;
}

.accordion.is-open .accordion__toggle::after {
  transform: translateX(-50%) rotate(90deg);
}

/*============================
 header
============================*/
.header__inner {
  padding: 0;
  position: relative;
  z-index: 2;
}
.header__inner::before {
  content: "";
  display: block;
  width: 329px;
  height: 325px;
  background: no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 0;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .header__inner::before {
    width: 329px;
    height: 325px;
    left: -210px;
    background-image: url(../img/bg_mv.webp);
  }
}
@media screen and (max-width: 768px) {
  .header__inner::before {
    width: 109px;
    height: 211px;
    left: calc((3% + 2rem) * -1);
    background-image: url(../img/bg_mv_sp.webp);
  }
}

@media screen and (min-width: 769px) {
  .header__logo {
    text-align: right;
    padding: 30px 0;
  }
}
@media screen and (max-width: 768px) {
  .header__logo {
    text-align: center;
    padding: 20px 0;
  }
}
.header__logo img {
  height: auto;
}
@media screen and (min-width: 769px) {
  .header__logo img {
    max-width: 185px;
  }
}
@media screen and (max-width: 768px) {
  .header__logo img {
    max-width: 60px;
  }
}

/*============================
 mv
============================*/
.mv {
  position: relative;
  z-index: 2;
}

.mv__inner {
  padding-top: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 1.5rem;
  align-items: start;
}
.mv__inner .mv__title,
.mv__inner .mv__slide,
.mv__inner .cta {
  order: initial;
}
@media screen and (min-width: 769px) {
  .mv__inner {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "text image" "cta image";
  }
  .mv__inner .mv__title {
    grid-area: text;
    height: auto;
    margin-top: 22%;
    margin-bottom: 30px;
  }
  .mv__inner .cta__container {
    grid-area: cta;
    margin-bottom: 55px;
  }
  .mv__inner .mv__slide {
    grid-area: image;
  }
}

.mv__title {
  font-size: var(--font-size-22-40);
}
@media screen and (max-width: 768px) {
  .mv__title {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .cta__text {
    text-align: center;
    margin-top: 12%;
  }
}

.cta {
  margin-top: 2.81rem;
}
@media screen and (max-width: 768px) {
  .cta {
    margin-top: 1.25rem;
  }
}

.mv__slide {
  padding-left: 9%;
}
@media screen and (max-width: 768px) {
  .mv__slide {
    margin-left: calc((3% + 2rem) * -1);
  }
}

.slide__inner {
  position: relative;
}
.slide__inner::before, .slide__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.slide__inner:before {
  background-color: var(--bg-color-green);
  transform: translate(-10%, 9%);
}
.slide__inner:after {
  background-color: var(--bg-color-primary);
}

.mv__slide-item {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 3s ease;
}
.mv__slide-item.is-active {
  opacity: 1;
}
.mv__slide-item img {
  position: static;
  display: block;
  width: 100%;
  height: auto;
}

/*============================
 problem
============================*/
.problem {
  position: relative;
}
@media screen and (min-width: 769px) {
  .problem {
    background-color: var(--bg-color-grey);
  }
  .problem:before {
    content: "";
    display: block;
    width: calc(50vw + 25px);
    height: 12.5rem;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    background-color: var(--bg-color-primary);
  }
}

.problem__inner {
  position: relative;
}
.problem__inner:after {
  content: "";
  display: block;
  width: 426px;
  height: 486px;
  position: absolute;
  bottom: -3.13rem;
  right: -17.88rem;
  z-index: 1;
  background: url(../img/bg_problem.webp) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .problem__inner:after {
    width: 264px;
    height: 308px;
    bottom: 2rem;
    right: -3.13rem;
  }
}

.problem__title {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .problem__title {
    text-align: center;
    margin-bottom: 1.25rem;
  }
}

.problem__list {
  list-style: none;
  padding-left: 0;
  display: grid;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .problem__list {
    grid-template-columns: repeat(2, 1fr);
    gap: min(20 / var(--contents-width) * 100vw, 20px) min(30 / var(--contents-width) * 100vw, 30px);
  }
}
@media screen and (max-width: 768px) {
  .problem__list {
    grid-template-columns: 1fr;
    gap: min(15 / var(--contents-width-tb) * 100vw, 15px);
  }
}
@media screen and (max-width: 400px) {
  .problem__list {
    grid-template-columns: 1fr;
    gap: min(10 / var(--contents-width-sp) * 100vw, 10px);
  }
}

.problem__item {
  background-color: var(--bg-color-white);
  position: relative;
}
@media screen and (min-width: 769px) {
  .problem__item {
    padding: 0.94rem 0.63rem 0.94rem 4.19rem;
  }
}
@media screen and (max-width: 768px) {
  .problem__item {
    padding: 0.94rem 0.63rem 0.94rem 2.81rem;
  }
}
.problem__item:before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url(../img/icon_check.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 1em;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .problem__item:before {
    width: 0.85em;
    height: 0.85em;
    left: 0.85em;
  }
}

/*============================
 results
============================*/
@media screen and (min-width: 769px) {
  .results {
    background: url(../img/bg_cloud_big_01.webp) repeat-x center bottom;
  }
}

.results__list {
  list-style: none;
  padding-left: 0;
  display: grid;
}
@media screen and (min-width: 769px) {
  .results__list {
    grid-template-columns: repeat(3, 1fr);
    gap: min(30 / var(--contents-width) * 100vw, 30px);
    margin-top: 3.13rem;
  }
}
@media screen and (max-width: 768px) {
  .results__list {
    grid-template-columns: 1fr;
    gap: min(20 / var(--contents-width-sp) * 100vw, 20px);
    margin-top: 0.94rem;
  }
}

.results__item {
  background-color: var(--bg-color-white);
  padding: 0.94rem;
}

/*============================
 shrine
============================*/
.shrine__content {
  margin-bottom: 5.31rem;
  position: relative;
}
@media screen and (min-width: 769px) {
  .shrine__content:nth-child(odd)::before {
    content: "";
    width: 374px;
    height: 198px;
    background: url(../img/bg_cloud_small_01.webp) no-repeat center center;
    background-size: contain;
    position: absolute;
    bottom: -2.19rem;
    left: -15.44rem;
  }
  .shrine__content:nth-child(even)::before {
    content: "";
    width: 358px;
    height: 189px;
    background: url(../img/bg_cloud_small_02.webp) no-repeat center center;
    background-size: contain;
    position: absolute;
    bottom: -2.19rem;
    right: -14.75rem;
  }
}
@media screen and (max-width: 768px) {
  .shrine__content {
    margin-top: 2.19rem;
    margin-bottom: 2.19rem;
  }
}

@media screen and (min-width: 769px) {
  .shrine__list {
    grid-template-columns: minmax(auto, 32.81rem) minmax(20.31rem, 1fr);
  }
}

/*============================
 kito
============================*/
@media screen and (min-width: 769px) {
  .kito {
    background: url(../img/bg_cloud_big_02.webp) repeat-x center bottom;
  }
}

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

.kito__list {
  list-style: none;
  padding-left: 0;
  display: grid;
}
@media screen and (min-width: 769px) {
  .kito__list {
    grid-template-columns: repeat(4, 1fr);
    gap: min(25 / var(--contents-width) * 100vw, 25px) min(30 / var(--contents-width) * 100vw, 30px);
  }
}
@media screen and (max-width: 768px) {
  .kito__list {
    grid-template-columns: repeat(3, 1fr);
    gap: min(15 / var(--contents-width-tb) * 100vw, 15px) min(18 / var(--contents-width-tb) * 100vw, 18px);
  }
}
@media screen and (max-width: 400px) {
  .kito__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*============================
 step
============================*/
@media screen and (min-width: 769px) {
  .step__text {
    transform: translateY(-1rem);
  }
}

.step__list {
  list-style: none;
  padding-left: 0;
}
@media screen and (min-width: 769px) {
  .step__list {
    width: 80%;
    margin: var(--margin-auto);
  }
}

.step__item {
  display: grid;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 769px) {
  .step__item {
    grid-template-columns: 11em 1fr;
    gap: min(65 / var(--contents-width) * 100vw, 65px);
    border-top: var(--border-green);
    margin-left: 65px;
    padding: 1.88rem 0rem 1.88rem 0rem;
  }
  .step__item:last-child {
    border-bottom: var(--border-green);
  }
}
@media screen and (max-width: 768px) {
  .step__item {
    grid-template-columns: 1fr;
    margin-left: 40px;
    padding: 0.94rem 0rem 0.94rem 0rem;
  }
}
.step__item::before {
  content: "";
  display: block;
  background: url(../img/icon_circle_small.svg) no-repeat center left;
  background-size: contain;
  position: absolute;
}
@media screen and (min-width: 769px) {
  .step__item::before {
    width: 45px;
    height: 45px;
    top: 50%;
    left: -65px;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 768px) {
  .step__item::before {
    width: 25px;
    height: 25px;
    top: 1.1em;
    left: -30px;
  }
}

@media screen and (max-width: 768px) {
  .step__item-title {
    margin-bottom: 0.63rem;
  }
}
.step__item-title > span:first-child {
  text-indent: -0.5em;
}
@media screen and (min-width: 769px) {
  .step__item-title span {
    display: block;
  }
}

/*============================
 plans
============================*/
.plans .l-heading {
  align-items: start;
}

@media screen and (min-width: 769px) {
  .plans__text-container {
    margin-top: 3.5rem;
  }
}

.plans__card {
  padding: 2.81rem;
  margin-bottom: 2.06rem;
  background: no-repeat center right;
  background-size: contain;
  background-color: var(--bg-color-white);
}
@media screen and (min-width: 769px) {
  .plans__card:nth-child(1) {
    background-image: url(../img/bg_plan_01.webp);
  }
  .plans__card:nth-child(2) {
    background-image: url(../img/bg_plan_02.webp);
  }
  .plans__card:nth-child(3) {
    background-image: url(../img/bg_plan_03.webp);
  }
}
@media screen and (max-width: 768px) {
  .plans__card {
    padding: 1.25rem;
    margin-bottom: 1.25rem;
  }
}

.plans__card-name,
.plans__card-price {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .plans__card-name,
  .plans__card-price {
    display: block;
  }
}

.plans__card-name {
  margin-right: 1em;
}

.plans__card-text span {
  border: var(--border-grey);
  padding: 0.3em 0.5em;
  margin-right: 1em;
}

.plans__bank {
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  align-items: start;
}
.plans__bank dt {
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .plans__bank {
    grid-template-columns: 1fr;
  }
}

/*============================
 voices
============================*/
.voices {
  background-color: var(--bg-color-white);
}

@media screen and (min-width: 769px) {
  .voices__text {
    transform: translateY(-0.7rem);
  }
}

.voices__cards {
  display: grid;
}
@media screen and (min-width: 769px) {
  .voices__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: min(140 / var(--contents-width) * 100vw, 140px) min(165 / var(--contents-width) * 100vw, 165px);
  }
}
@media screen and (max-width: 768px) {
  .voices__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: min(80 / var(--contents-width-tb) * 100vw, 60px) min(32 / var(--contents-width-tb) * 100vw, 32px);
  }
}
@media screen and (max-width: 400px) {
  .voices__cards {
    grid-template-columns: 1fr;
  }
}

@media screen and (min-width: 769px) {
  .voices__card:nth-child(3n+2) {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 400px) {
  .voices__card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.94rem;
  }
}

.voices__card-name {
  color: var(--text-color-green);
}

/*============================
 faq
============================*/
.faq__list {
  max-width: 720px;
  margin: var(--margin-auto);
}

.faq__item {
  margin-bottom: 0.63rem;
}

.faq__question {
  color: var(--text-color-green);
  font-size: var(--font-size-14-20);
  font-weight: var(--font-medium);
  display: flex;
  align-items: center;
  padding: 0.94rem 1.25rem;
  background: var(--bg-color-white);
  gap: 1em;
}
.faq__question::before {
  content: "Q";
  font-size: var(--font-size-18-24);
  width: 1em;
  flex-shrink: 0;
}
.faq__question .question__text {
  flex: 1;
}
.faq__question .question__toggle {
  flex-shrink: 0;
}

.faq__answer {
  padding: 0rem 1.25rem;
}

/*============================
 corporation
============================*/
.corporation {
  padding: 3.13rem 0;
}
@media screen and (max-width: 768px) {
  .corporation {
    padding: 0.94rem 0;
  }
}

/*============================
 sns
============================*/
.sns {
  padding: 3.13rem 0;
}
@media screen and (max-width: 768px) {
  .sns {
    padding: 0.94rem 0;
  }
}

.sns__item {
  -webkit-mask-image: url(../img/icon_instagram.svg);
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../img/icon_instagram.svg);
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
}

.sns__list {
  list-style: none;
  padding-left: 0;
  display: grid;
  max-width: 280px;
  margin: var(--margin-auto);
  grid-template-columns: repeat(4, 1fr);
  gap: min(15 / var(--contents-width) * 100vw, 15px);
}
@media screen and (max-width: 768px) {
  .sns__list {
    gap: min(30 / var(--contents-width-sp) * 100vw, 30px);
  }
}
.sns__list a {
  background-color: var(--bg-color-white);
  transition: opacity 0.3s ease;
}
.sns__list a:hover {
  opacity: 0.4;
}

/*============================
 contract
============================*/
.contract__inner {
  background: url(../img/bg_cta.webp) no-repeat top center;
  background-size: contain;
}
@media screen and (max-width: 400px) {
  .contract__inner {
    background-image: url(../img/bg_cta_sp.webp);
  }
}

/*============================
 footer
============================*/
@media screen and (min-width: 769px) {
  .footer__inner {
    padding: 1.88rem 0;
  }
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding: 1.56rem 0;
  }
}

.footer__top {
  display: grid;
  align-items: start;
}
@media screen and (min-width: 769px) {
  .footer__top {
    grid-template-columns: auto 1fr;
    gap: min(85 / var(--contents-width) * 100vw, 85px);
  }
}
@media screen and (max-width: 768px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
}

.footer__logo img {
  max-width: 210px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    max-width: 128px;
  }
}

@media screen and (min-width: 769px) {
  .footer__top-right {
    margin-top: 0.6rem;
  }
}

@media screen and (min-width: 769px) {
  .footer_copyright {
    text-align: center;
  }
}

/*============================
 fixed area
============================*/
:root {
  --site-width: 1024px;
  --offset: 80px;
}

.fixed-container {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
}
@media screen and (min-width: 1281px) {
  .fixed-container {
    top: 140px;
    right: max(var(--offset), (100vw - var(--site-width)) / 2 - var(--offset));
  }
}
@media screen and (max-width: 1280px) {
  .fixed-container {
    top: 140px;
    right: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .fixed-container {
    top: 140px;
    right: 10px;
  }
}

.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-decoration: none;
  line-height: 1;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-color-black);
}

.fan-menu {
  position: relative;
}

.round-button {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  background-color: var(--bg-color-white);
  transition: opacity 0.3s ease;
  display: inline-block;
  background-color: #fff;
  -webkit-mask-image: url("../img/icon_sns.svg");
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("../img/icon_sns.svg");
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
}
.round-button:hover {
  opacity: 0.4;
}
@media screen and (min-width: 769px) {
  .round-button {
    width: 35px;
    height: 35px;
  }
}
@media screen and (max-width: 768px) {
  .round-button {
    width: 20px;
    height: 20px;
  }
}
.round-button img {
  display: block;
  width: 100%;
  height: auto;
}
.round-button img.icon-close {
  display: none;
}

.fan-menu.open .icon-open {
  display: none;
}

.fan-menu.open .icon-close {
  display: block;
}

.fan-item {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: #555;
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(0, 0);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.fan-menu.open .fan-item {
  opacity: 1;
  pointer-events: auto;
}

.fixed-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
  display: none;
  z-index: 999;
}/*# sourceMappingURL=style.css.map */