@charset "UTF-8";

/*
Theme Name: IDIOMCORD オリジナルテーマ
Author: Anima
Description: 2025年6月作成
Version: 1.0
*/

:root {
  --white: #FFFFFF;
  --light-green: #E8F3F1;
  --black: #040000;
  --green: #00D4B5;
  --red: #FF695C;
  --light-red: #FF877D;
  --gray: #CCCCCC;
  --light-gray: #EEEEEE;
  --biz-udp: "BIZ UDPGothic", sans-serif;
  --barlow: "Barlow", sans-serif;
  --heisei: "heisei-kaku-gothic-std", "Noto Sans JP", sans-serif;
}

* {
  color: inherit;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

body {
  font-family: var(--biz-udp);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: var(--bk);
}

a {
  display: block;
  color: inherit;
  transition: opacity .3s ease;
}

a:hover {
  opacity: 0.6;
}

img {
  display: block;
  width: 100%;
  object-fit: contain;
}

.-pc {
  display: block;
}

.-sp {
  display: none;
}

@media (max-width: 768px) {
  .-pc {
    display: none;
  }

  .-sp {
    display: block;
  }
}

.container {
  width: 96%;
  max-width: 1200px;
  margin: 0 auto;
}

.button {
  border-radius: 100px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.3s ease;
}

.button:hover::before {
  transform-origin: top right;
  transform: skewX(-45deg) translateX(0);
}

.button::before {
  content: '';
  width: 135%;
  height: 100%;
  background-color: var(--red);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform-origin: top left;
  transform: skewX(-45deg) translateX(-100%);
  transition: inherit;
}

a.button:hover {
  opacity: 1;
}

.cta-button {
  background: var(--black);
  padding: 1em 2em;
  gap: 15px;
  font-family: var(--heisei);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.01em;
  color: var(--white);
}

.cta-button img {
  width: 32px;
  transition: transform 0.3s ease-in-out;
}

.cta-button:hover img {
  transform: translateX(8px);
}

@media (max-width: 768px) {
  .cta-button {
    gap: 8px;
    width: 100%;
    padding: 15px;
    font-size: 15px;
  }
  .cta-button img {
    width: 24px;
  }
}

.cta-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 0;
  margin: 0 auto;
  width: fit-content;
  line-height: 1;
  font-family: var(--heisei);
  font-size: 24px;
  font-weight: 700;
}
.cta-link::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: var(--black);
  transform-origin: left;
}
.cta-link img {
  width: 32px;
}

@media (max-width: 767px) {
  .cta-link {
    font-size: 15px;
  }
  .cta-link::after {
    height: 2px;
  }
  .cta-link img {
    width: 24px;
  }
  .cta-link+p {
    font-size: 13px;
  }
}

.tel-section h3 {
  margin: 15px 0;
  padding-bottom: 30px;
  background: url(assets/img/fukidashi.svg) no-repeat center bottom / 367px auto ;
}
.tel-section p {
  margin-top: 10px;
  font-size: 13px;
}
.tel-section .cta-link {
  padding: 0;
  font-family: var(--barlow);
  font-size: 36px;
}
.tel-section .cta-link::after {
  display: none;
}


.section__title {
  margin-bottom: 50px;
  text-align: center;
}

.section__title-sub {
  margin-bottom: 10px;
  font-family: var(--barlow);
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.1em;
}

.section__title-main {
  margin-bottom: 30px;
  font-family: var(--heisei);
  font-weight: 700;
  font-size: 54px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.section__title-text {
  font-family: var(--biz-udp);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.75;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .section__title-sub {
    font-size: 22px;
  }

  .section__title-main {
    font-size: 34px;
  }

  .section__title-text {
    font-size: 16px;
  }
}

.section__body {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.section__text {
  font-family: var(--heisei);
  font-weight: 700;
  text-align: center;
}

.section__text.-main {
  font-size: 32px;
  line-height: 1.5;
}

.section__text.-sub {
  font-size: 24px;
  line-height: 2;
}

.section__text .-highlight {
  background: var(--white);
  padding: 0.1em 0.3em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.section__text .-red {
  font-family: var(--barlow);
  color: var(--red);
}

.section__text .-big {
  font-size: 38px;
  vertical-align: -2px;
}

@media (max-width: 768px) {
  .section__text.-main {
    font-size: 24px;
  }

  .section__text.-sub {
    font-size: 18px;
  }
}

.section__footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.section__footer-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  font-size: 12px;
}

/* animation */
@keyframes showTextFromBottom {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* 各行ラッパー */
.anime-up.displayed .anime-line {
  overflow: hidden;
  display: inline-block;
  line-height: 1.5;
}

/* 文字1つずつアニメーション */
.anime-up.displayed .anime-char {
  display: inline-block;
  animation: showTextFromBottom 0.5s backwards;
}

/** Fade in **/
/* フェードイン(初期値) */
.js-fadeIn {
  opacity: 0;
  transition: opacity 0.8s;
}

.js-fadeUp {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}

.js-fadeInLeft {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s, transform 0.8s;
}

/* フェードイン(スクロールした後) */
.js-fadeIn.is-inview,
.js-fadeUp.is-inview,
.js-fadeInLeft.is-inview {
  opacity: 1;
  transform: translate(0, 0);
  transition-delay: 0.5s;
}

/* ディレイ */
.is-inview.delay1 {
  transition-delay: 0.7s;
}

.is-inview.delay2 {
  transition-delay: 0.9s;
}

.is-inview.delay3 {
  transition-delay: 1.1s;
}


/* header */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
}

.header .container {
  background: var(--white);
  max-width: 1296px;
  height: 74px;
  margin-top: 40px;
  padding: 15px;
  border-radius: 100px;
  box-shadow: 0px 0px 10px 0px #00000014;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  padding: 0 25px;
}

.header__logo {
  max-width: 149px;
  min-width: 100px;
}

.header__nav {
  display: flex;
  font-family: var(--heisei);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.header__nav li {
  position: relative;
  white-space: nowrap;
}

.header__nav li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -3px;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--gray);
  border-radius: 50%;
}

.header__nav li a {
  padding: 0 33px;
}

.header-right {
  display: flex;
  align-items: center;
}

.contact-button {
  background: var(--green);
  padding: 0.625em 1.875em;
  gap: 10px;
  font-family: var(--heisei);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  white-space: nowrap;
}

.contact-button img {
  width: 24px;
}

.contact-button span {
  position: relative;
  top: -1px;
}

.sp-menu img.menu-icon {
  display: block;
}

.sp-menu.open img.menu-icon {
  display: none;
}

.sp-menu img.close-icon {
  display: none;
  position: relative;
  z-index: 12;
}

.sp-menu.open img.close-icon {
  display: block;
}

.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: calc(100% - 40px);
  height: calc(100vh - 40px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.2);
  margin: 20px;
  padding: 60px 32px;
  transition: right 0.3s ease;
  z-index: 11;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.drawer.open {
  right: 0;
}

.drawer__logo {
  max-width: 220px;
  min-width: 100px;
}

.drawer__nav {
  display: flex;
  flex-direction: column;
}

.drawer__nav a {
  padding: 10px;
  font-family: var(--heisei);
  font-weight: 700;
}

.drawer .contact-button {
  font-size: 16px;
  padding: 1em 2em;
  gap: 10px;
}

.drawer-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 10;
}

.drawer-bg.open {
  display: block;
}

@media (max-width: 1052px) {
  .header-left {
    padding: 0 10px;
  }

  .header__nav li a {
    padding: 0 15px;
    font-size: 14px;
  }

  .contact-button {
    gap: 5px;
    font-size: 14px;
  }

  .contact-button img {
    width: 20px;
  }
}

@media (max-width: 768px) {
  .header .container {
    margin-top: 15px;
    height: 60px;
  }

  .contact-button.-pc {
    display: none;
  }
}

/* First View Section */
.fv {
  position: relative;
  overflow: hidden;
}

.fv__bg {
  position: relative;
  height: 100%;
  z-index: -1;
}

.fv__bg--green {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 684px;
}

.fv__bg--pc {
  position: absolute;
  top: 400px;
  right: 5%;
  transform: translateY(-50%);
  max-width: 710px;
  width: 50vw;
}

.fv .container {
  max-width: 1240px;
  height: 720px;
}

.fv__content {
  max-width: 45vw;
  min-width: 300px;
  padding-top: 252px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.fv__title {
  font-family: var(--heisei);
  font-weight: 700;
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.fv__text {
  margin-left: 20px;
  font-family: var(--heisei);
  font-weight: 700;
  font-size: 20px;
  line-height: 2;
  letter-spacing: 0.02em;
}

.cta-button.-small {
  margin: 0 20px;
  padding: 15px 30px;
  gap: 8px;
  font-size: 18px;
}

.cta-button.-small img {
  width: 24px;
}

@media (max-width: 768px) {
  .fv .container {
    max-width: 450px;
    height: 675px;
    padding-bottom: 50px;
  }

  .fv__bg--green {
    width: auto;
    height: 675px;
    right: auto;
    left: 22%;
  }

  .fv__bg--pc {
    right: 50%;
    transform: translate(50%, -50%);
    max-width: 375px;
    width: 100%;
  }

  .fv__content {
    max-width: 100%;
    padding-top: 108px;
    height: 100%;
    gap: 14px;
  }

  .fv__title {
    font-size: 26px;
  }

  .fv__text {
    margin-left: 0;
    font-size: 15px;
    flex: 1;
  }

  .cta-button.-small {
    font-size: 16px;
    align-self: center;
  }
}

/* Problem Section */
.problem {
  background: var(--light-gray);
}

.problem .container {
  padding: 80px 0;
}

.problem__title {
  margin-bottom: 100px;
  text-align: center;
  font-family: var(--heisei);
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0.02em;
  position: relative;
}

.problem__title::after {
  content: "";
  background: url(assets/img/fukidashi.svg);
  position: absolute;
  width: 565px;
  height: 30px;
  bottom: calc(-100% - 20px);
  left: 50%;
  transform: translateX(-50%);
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.problem__item {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.problem__item-image {
  max-width: 220px;
  width: 40%;
}

.problem__item-body {
  flex: 1;
}

.problem__item-title {
  background: var(--black);
  margin-bottom: 15px;
  padding: 5px 10px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--white);
}

.problem__item-text {
  margin-bottom: 1.75em;
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .problem__title {
    font-size: 24px;
  }

  .problem__title::after {
    max-width: 350px;
    width: 95%;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .problem__grid {
    grid-template-columns: 1fr;
  }

  .problem__item {
    flex-direction: column;
    align-items: center;
  }

  .problem__item.delay1 {
    transition-delay: 0.5s;
  }

  .problem__item-body {
    order: 1;
  }

  .problem__item-image {
    order: 2;
  }
}

/* Triangle Section */
.triangle {
  position: relative;
  background: var(--light-gray);
  height: 1px;
  z-index: 1;
}

.triangle::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 80px 162px 0 162px;
  border-color: var(--light-gray) transparent transparent transparent;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
}

/* About Section */
.about {
  background: var(--green);
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.about .container {
  padding: 140px 0 100px;
}

.about .section__title-sub {
  color: var(--white);
}

.about__list {
  margin-bottom: 70px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 45px;
}

.about__item {
  flex: 1 1 350px;
  max-width: 100%;
  background: var(--white);
  border: 3px solid var(--black);
  box-shadow: 8px 8px 0px 0px #0000000D;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about__item-heading {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.about__item-num {
  background: var(--black);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: var(--barlow);
  font-weight: 700;
  font-size: 36px;
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
}

.about__item-num .-small {
  font-size: 14px;
  letter-spacing: 0.04em;
}

.about__item-title {
  font-family: var(--heisei);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.about__item-title span {
  display: inline-block;
}

.about__item-text {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.05em;
}

.about__item-text span {
  background: var(--light-red);
  font-weight: 700;
  padding: 0.2em 0.1em;
  margin: -0.2em -0.1em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.about__bg {
  position: relative;
  height: 100%;
  z-index: -1;
}

.about__bg--mtg {
  position: absolute;
  bottom: -20px;
  left: 40px;
  width: clamp(200px, 40%, 342px);
}

@media (max-width: 768px) {
  .about .container {
    padding-bottom: 150px;
  }

  .about__item-text {
    font-size: 16px;
  }

  .about__text.-main {
    font-size: 22px;
  }

  .about__text.-sub {
    font-size: 18px;
  }

  .about__bg--mtg {
    left: 5px;
  }
}

/* Support Section */
.support {
  background: var(--white);
  overflow: hidden;
}

.support .container {
  padding: 80px 0 20px;
}

.support .section__title-sub {
  color: var(--green);
}

.support__members-wrapper {
  margin-bottom: 40px;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.support__members {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.support__member {
  width: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.balloon {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  padding: 30px 25px;
  text-align: center;
  background: var(--black);
  border-radius: 100px;
}

.balloon::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 10px solid var(--black);
}

.support__member-name {
  color: var(--white);
  font-family: var(--heisei);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.01em;
}

.support__member-image {
  max-width: 150px;
  width: 100%;
}

.support__member-text {
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}

.support__second {
  background: var(--light-green);
  width: 100%;
}

.support__second .container {
  max-width: 1112px;
  padding: 50px 0;
  margin-bottom: 50px;
}

.support__specialists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 32px;
}

.support__specialist {
  padding: 0 34px 35px;
  width: 40%;
  max-width: 254px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}

.support__specialist-image {
  max-width: 150px;
  width: 100%;
  margin-bottom: 22px;
}

.support__specialist-title {
  font-family: var(--heisei);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.01em;
}

.support__specialist-text {
  font-size: 18px;
  line-height: 1.5;
}


@media (max-width: 768px) {
  .support__members-wrapper {
    flex-direction: column;
  }

  .support__members {
    gap: 32px 10px;
    flex-wrap: nowrap;
    justify-content: center;
  }

  .support__member {
    min-width: none;
    width: 45%;
    margin-bottom: 0;
  }

  .balloon {
    padding: 20px 15px;
    min-width: 90%;
  }

  .support__member-name {
    font-size: clamp(15px, 4.3vw, 18px);
  }

  .support__member-text {
    font-size: 15px;
  }

  .support__specialists {
    gap: 10px 15px;
  }

  .support__specialist {
    padding: 0 0 15px;
    max-width: 186px;
  }

  .support__specialist-image {
    margin-bottom: 0;
  }

  .support__specialist-title {
    font-size: 16px;
  }

  .support__specialist-text {
    font-size: 14px;
  }
}

/* Service Section */
.service {
  background: var(--white);
  overflow: hidden;
}

.service .container {
  background: var(--green);
  border-radius: 20px;
  max-width: 1260px;
  padding: 60px 0 20px;
  margin-bottom: 50px;
}

.service .section__title-sub {
  color: var(--white);
}

.service__content {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  overflow: visible;
}

.swiper {
  width: min(80%, 1070px);
  margin: 0 auto 50px;
  overflow: visible !important;
}

.swiper-slide {
  background: var(--white);
  border: 3px solid #040000;
  border-radius: 20px;
  box-shadow: 8px 8px 0px 0px #0000000D;
  width: 350px;
  height: auto;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.service__item.selected {
  transform: scale(1.1);
  z-index: 2;
  transition: transform 0.3s ease;
}

.service__item-title {
  margin-bottom: 35px;
  font-family: var(--heisei);
  font-weight: 700;
  font-size: 24;
  line-height: 1;
}

.service__item-image {
  max-width: 340px;
}

.service__item-text {
  font-size: 18px;
  line-height: 1.75;
}

.swiper-button-prev,
.swiper-button-next {
  width: 100px;
  height: 100px;
}

.swiper-button-prev {
  left: -5px;
  transform: translateX(-50%);
}

.swiper-button-next {
  right: -5px;
  transform: translateX(50%);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  height: clamp(50px, 8vw, 100px);
  width: clamp(50px, 8vw, 100px);
  margin: auto;
}

.swiper-button-prev::after {
  background-image: url(assets/img/slide-prev.svg);
}

.swiper-button-next::after {
  background-image: url(assets/img/slide-next.svg);
}

@media (max-width: 768px) {
  .swiper {
    width: 70%;
  }

  .swiper-slide {
    height: auto;
  }

  .service__item-image {
    max-width: 300px;
  }
}

/* Case Study Section */
.case {
  background: var(--white);
}

.case .container {
  padding: 80px 0 100px;
  max-width: 1034px;
}

.case .section__title-sub {
  color: var(--green);
}

.case__grid {
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 24px 42px;
}

.case__item {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: 20px;
  box-shadow: 8px 8px 0px 0px #0000000D;
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.case__item-title {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.case__item-title-main {
  font-family: var(--heisei);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
}

.case__item-title-sub {
  font-weight: 700;
  font-size: 16px;
}

.case__item-title-sub .-highlight {
  background: var(--light-red);
  padding: 0.2em 0.1em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.case__ba {
  height: 190px;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.case__before {
  width: calc(50% + 30px);
  background: var(--light-green);
  padding: 25px 55px 25px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.case__after {
  width: calc(50% - 30px);
  background: var(--green);
  padding: 25px 25px 25px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.case__after::before {
  content: "";
  position: absolute;
  top: 0px;
  left: -60px;
  border-color: transparent var(--green) transparent transparent;
  border-style: solid;
  border-width: 190px 60px 0 0;
}

.case__ba-title {
  font-family: var(--barlow);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
}

.case__ba-text {
  flex: 1;
  display: flex;
  align-items: center;
  font-family: var(--barlow);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}

.case__after .case__ba-text {
  color: var(--white);
}

.case__ba-text .-big {
  font-size: 24px;
}

.case__ba-text .-small {
  font-size: 16px;
}

.case__body {
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

@media (max-width: 768px) {
  .case__grid {
    grid-template-columns: 1fr;
  }

  .case__ba {
    height: 240px;
  }

  .case__after::before {
    border-width: 240px 60px 0 0;
  }
}

/* Price Section */
.price {
  background: var(--light-green);
}

.price .container {
  padding: 60px 0;
  max-width: 885px;
}

.price .section__title-sub {
  color: var(--green);
}

.price__list {
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.price__item {
  flex: 1;
  width: 100%;
  max-width: 261px;
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: 20px;
  box-shadow: 0px 0px 10px 0px #00000014;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price__item-title {
  padding: 32px 20px;
  width: 100%;
  border-bottom: 2px dashed var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
}

.price__item-title-main {
  font-family: var(--heisei);
  font-weight: 700;
  font-size: 20px;
}

.price__item-title-sub {
  font-size: 18px;
}

.price__item-body {
  padding: 32px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.price__item-price {
  font-family: var(--barlow);
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
}

.price__item-price .-big {
  font-size: 36px;
}

.price__item-price .-exbig {
  font-size: 40px;
}

.price__item-price .-highlight {
  background: var(--light-red);
  padding: 0.2em 0.3em 0.1em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.price__item-text {
  font-size: 18px;
  line-height: 2;
  text-align: center;
}

.price__footer {
  margin-bottom: 60px;
  text-align: center;
  line-height: 2;
}

@media (max-width: 768px) {
  .price__list {
    flex-direction: column;
    gap: 24px;
  }

  .price__item {
    max-width: 100%;
  }

  .price__item.delay1,
  .price__item.delay2 {
    transition-delay: 0.5s;
  }
}

/* Introduce Section */
.introduce {
  background: var(--green);
}

.introduce .container {
  padding: 60px 0 100px;
}

.introduce .section__title-sub {
  color: var(--white);
}

.introduce__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.introduce__item {
  position: relative;
  margin-top: 50px;
  background: var(--white);
  border-radius: 20px;
  padding: 50px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.introduce__item-num {
  position: absolute;
  top: -50px;
  width: 100px;
  height: 100px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: var(--barlow);
  font-weight: 700;
  font-size: 49px;
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
}

.introduce__item-num .-small {
  font-size: 19px;
}

.introduce__item-title {
  height: 4em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: var(--heisei);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
}

.introduce__item-title .-small {
  font-size: 12px;
}

.introduce__item-image {
  height: 124px;
}

.introduce__item-text {
  letter-spacing: 0.02em;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 1200px) {
  .introduce__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .introduce__list {
    grid-template-columns: 1fr;
  }

  .introduce__item.delay1,
  .introduce__item.delay2,
  .introduce__item.delay3 {
    transition-delay: 0.5s;
  }
}

/* Comparison Section */
.comparison {
  background: var(--white);
}

.comparison .container {
  padding: 60px 0 100px;
  max-width: 1200px;
}

.comparison .section__title-sub {
  color: var(--green);
}

.comparison__body {
  margin-bottom: 18px;
  overflow-x: auto;
}

.comparison__table {
  min-width: 550px;
  margin-bottom: 18px;
}

.comparison__footer {
  width: 100%;
  padding: 20px;
  background: var(--light-green);
  border-radius: 20px;
  font-family: var(--heisei);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 768px) {
  .comparison__footer {
    font-size: 16px;
  }
}

/* CTA Section */
.cta {
  background: linear-gradient(var(--white) 80%, var(--light-green) 80%);
}

.cta .container {
  max-width: 1260px;
  padding: 50px 20px;
  background: var(--green);
  border-radius: 50px;
}

.cta__title-main {
  margin-bottom: 18px;
  font-family: var(--heisei);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.5;
}

.cta__title-sub {
  font-weight: 700;
}

.cta__list {
  max-width: 840px;
  margin: 0 auto 50px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.cta__item {
  flex: 1;
  max-width: 250px;
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.cta__item-image {
  max-width: 250px;
}

.cta__item-text {
  font-weight: 700;
}

@media (max-width: 768px) {
  .cta__title-main {
    font-size: 28px;
  }

  .cta__item {
    max-width: 100%;
  }

  .cta__item-image {
    max-width: 200px;
  }

  .cta__item-text {
    font-size: 14px;
  }
}

/* Footer Section */
.footer {
  background: var(--light-green);
}

.footer .container {
  padding: 20px 0 100px;
  max-width: 1160px;
  display: flex;
  justify-content: space-between;
}

.footer__left {
  max-width: 436px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__logo {
  max-width: 149px;
  min-width: 100px;
}

.footer__company {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 40px;
}

.footer__company-left,
.footer__company-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__company-left {
  width: 146px;
}

.footer__company-right {
  width: 250px;
}

.footer__company-list {
  display: flex;
  font-size: 14px;
  line-height: 1.5;
}

.footer__company-list dt {
  font-weight: 700;
  width: 4.5em;
}

.footer__company-list dd {
  flex: 1;
}

.footer__right {
  display: flex;
  flex-direction: column;
}

.footer__nav {
  margin-left: -23px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-content: center;
  flex-wrap: wrap;
  gap: 15px 0;
  font-weight: 700;
  font-size: 14px;
}

.footer__nav li {
  position: relative;
  white-space: nowrap;
}
/*
.footer__nav li a {
  padding: 0 23px;
}
*/

.footer__nav li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -3px;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--gray);
  border-radius: 50%;
}

.footer__copyright {
  font-size: 12px;
  text-align: right;
}

@media (max-width: 768px) {
  .footer .container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer__left {
    align-items: center
  }

  .footer__company {
    flex-direction: column;
    justify-content: center;
  }

  .footer__right {
    gap: 30px;
  }

  .footer__nav {
    justify-content: center;
    margin-left: 0;
  }

  .footer__nav li:not(:last-child)::after {
    display: none;
  }

  .footer__copyright {
    text-align: center;
  }
}



/*** 下層ページ ***/
.low-section {
  background: var(--green);
  overflow: hidden;
}

.low-section .container {
  padding: 194px 0 80px;
}

.low-section__title {
  margin-bottom: 80px;
  text-align: center;
}

.low-section__title-sub {
  margin-bottom: 28px;
  font-family: var(--barlow);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--white);
}

.low-section__title-main {
  font-family: var(--heisei);
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.low-section__wrapper {
  background: var(--white);
  border-radius: 50px;
}

/** プライバシーポリシー **/
.privacy-content {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 0;
}

.privacy__heading {
  line-height: 2;
  text-align: center;
  margin-bottom: 60px;
}

.privacy__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  line-height: 2;
}

.privacy__section-heading {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  padding: 10px 10px 20px 10px;
  border-bottom: 4px solid var(--black);
}

.privacy__list {
  margin-top: 10px;
}

.privacy__list li {
  padding-left: 12px;
  position: relative;
  font-size: 1rem;
}

.privacy__list li::before {
  content: '・';
  color: var(--black);
  position: absolute;
  top: 0;
  left: 0;
}

.privacy__contact {
  background: var(--light-gray);
  padding: 30px 20px;
  margin-top: 10px;
  display: inline-block;
}

.privacy__contact h3 {
  font-size: 18px;
}

.privacy__contact p {
  font-size: 18px;
}

.privacy__contact a {
  display: inline;
}

/** お問い合わせ **/
.inquiry .container {
  max-width: 980px;
}

.inquiry__form {
  width: 90%;
  max-width: 740px;
  margin: 0 auto;
}
.low-section__wrapper .wpcf7 {
  padding: 60px 0;
}

.inquiry__description {
  text-align: center;
  line-height: 2;
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 40px;
}

.form-group p {
  margin-top: 2em;
  font-size: 13px;
  line-height: 1.8;
}

.form-group__label {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.--required::after {
  content: '● 必須';
  position: absolute;
  top: 0;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  margin-left: 8px;
}

.form-group__radio-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.form-group__radio-wrapper .wpcf7-list-item-label{
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.form-group__radio-wrapper input {
  display: none;
}

.form-group__radio-wrapper .wpcf7-list-item-label::before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  border: 1px solid #919191;
  border-radius: 50%;
  margin-right: 5px;
  position: relative;
}

.form-group__radio-wrapper input:checked+.wpcf7-list-item-label::before{
  content: "";
  border-color: var(--green);
}

.form-group__radio-wrapper input:checked+.wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  width: 18px;
  height: 18px;
  background: var(--green);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.form-group__radio-wrapper input:checked+.form-group__radio + .form-group__radio-label {
  font-weight: 700;
}

.form-group__radio-wrapper .wpcf7-list-item-label {
  font-size: 18px;
  color: var(--black);
  user-select: none;
}

.form-group__input {
  width: 100%;
  padding: 15px;
  border: 1px solid #919191;
  border-radius: 5px;
  font-size: 18px;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group__input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.form-group__textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #919191;
  border-radius: 5px;
  font-size: 18px;
  font-family: inherit;
  resize: vertical;
  min-height: 120px;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group__textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.form__submit {
  text-align: center;
}

.form__submit-btn {
  background: var(--black);
  color: var(--white);
  padding: 25px 50px;
  border-radius: 100px;
  font-family: var(--heisei);
  font-weight: 700;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.wpcf7-not-valid-tip {
  margin-top: 10px;
  font-size: 13px;
  color: var(--red);
}

.wpcf7-response-output {
  width: 90%;
  max-width: 740px;
  margin: 50px auto 0 !important;
  padding: 20px !important;
  text-align: center;
}