@charset "UTF-8";

:root {
  --blue-color: #0d2673;
  --bg-color: #f3faff;
  --cta-color: #f3e417;
  --font-jp: "M PLUS 2", sans-serif;
  --font-number: "Roboto", sans-serif;
}

/* 共通 */
html {
  font-size: 16px;
  letter-spacing: 0.03rem;
  color: var(--blue-color);
}

@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: var(--font-jp);
  color: var(--blue-color);
}

.wrapper {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}

/* PCでは電話番号のクリックを無効にする */
a[href^="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

/* aタグには標準でホバーアニメーションが付与されるようにする */
a {
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

/* header */
.header {
  padding: 16px 32px;
  background-color: var(--bg-color);
}

@media screen and (max-width: 640px) {
  .header {
    padding: 8px 16px;
  }
}

.site-header__logo {
  color: var(--blue-color);
  font-size: 1.875rem;
  font-weight: bold;
}

@media screen and (max-width: 640px) {
  .site-header__logo {
    font-size: 1rem;
  }
}

/* fv */
.kv {
  background: url(../images/fv-bg.webp) no-repeat center top;
  height: 42.3611111111vw;
  background-size: cover;
  width: 100%;
}

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

@media screen and (max-width: 640px) {
  .kv {
    background: url(../images/fv-bg-sp.webp) no-repeat center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    height: 158.8888888889vw;
  }
}

.kv__inner {
  width: 60%;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .kv__inner {
    padding-top: 80px;
  }
}

@media screen and (max-width: 640px) {
  .kv__inner {
    width: 95%;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 120px;
  }
}

.kv__cta {
  padding: clamp(0.75rem, 2vw, 1.2rem) clamp(1.5rem, 6vw, 2.5rem);
  background-color: var(--cta-color);
  display: inline-block;
  margin: 0 auto;
  margin-top: 60px;
  border-radius: 10px;
  box-shadow: 0 8px 6px rgba(88, 88, 88, 100%);
}

@media screen and (max-width: 1200px) {
  .kv__cta {
    margin-top: 60px;
  }
}

@media screen and (max-width: 640px) {
  .kv__cta {
    margin-bottom: 60px;
  }
}

.kv__cta-text,
.kv__cta-contact {
  display: block;
  font-weight: bold;
  color: var(--blue-color);
  text-align: center;
}

.kv__cta-text {
  font-size: clamp(1rem, 2vw, 1.125rem);
  letter-spacing: 0.03rem;
}

.kv__cta-text::before {
  content: "＼";
}

.kv__cta-text::after {
  content: "／";
}

.kv__cta-contact {
  font-size: clamp(1.1rem, 2vw, 2rem);
}

/* お悩み */

.trouble {
  position: relative;
}

.trouble__inner {
  position: relative;
  text-align: center;
  margin: 0 auto;
}

.trouble__heading {
  font-size: clamp(1.7rem, 2.6vw, 2.1875rem);
  font-weight: bold;
  padding-top: 70px;
}

@media screen and (max-width: 1240px) {
  .trouble__heading {
    padding-top: 40px;
  }
}

@media screen and (max-width: 640px) {
  .trouble__heading {
    font-size: clamp(1.3rem, 2.6vw, 2.1875rem);
    font-weight: bold;
    padding-top: 40px;
  }
}

.trouble__heading span {
  font-size: clamp(1.6rem, 5vw, 2.5rem);
  font-weight: bold;
}

.trouble__inner-item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 0 20px;
  z-index: 100;
  max-width: 100%;
}

.trouble__emphasis {
  display: inline-flex;
  /* 文字間の余白（必要に応じて調整） */
}

.trouble__char {
  position: relative;
  display: inline-block;
}

.trouble__char::before {
  content: "";
  position: absolute;
  top: -0.2em;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: currentColor;
  border-radius: 50%;
}

.trouble__wrapper {
  display: flex;
  justify-content: center;
  z-index: 100;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 640px) {
  .trouble__wrapper {
    flex-direction: column-reverse;
  }
}

.trouble__image {
  width: 50%;
}

@media screen and (max-width: 820px) {
  .trouble__image {
    width: 40%;
  }
}

@media screen and (max-width: 640px) {
  .trouble__image {
    width: 100%;
  }
}

.trouble__list {
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin: 40px 0;
  list-style: none;
  width: 50%;
  padding-left: 24px;
}

@media screen and (max-width: 1240px) {
  .trouble__list {
    gap: 32px;
  }
}

@media screen and (max-width: 820px) {
  .trouble__list {
    gap: 16px;
    margin: 8px 0;
  }
}

@media screen and (max-width: 640px) {
  .trouble__list {
    width: 100%;
    padding-left: 0;
    margin: 16px 0;
  }
}

.trouble__item {
  position: relative;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 16px 0 16px 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 80%;
}

.trouble__item:last-child {
  width: 70%;
}

@media screen and (max-width: 820px) {
  .trouble__item {
    padding: 8px 0 8px 16px;
    width: 90%;
  }
  .trouble__item:last-child {
    width: 80%;
  }
}

.trouble__item:nth-child(even) {
  margin-left: auto;
}

.trouble__item::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.8rem 1rem 0.8rem 0;
  border-color: transparent #fff transparent transparent;
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 640px) {
  .trouble__item:nth-child(odd)::before {
    border-width: 0.5rem 0.4rem 0 0.4rem;
    border-color: #fff transparent transparent transparent;
    left: 10%;
    top: 100%;
    transform: translateX(-50%);
  }

  .trouble__item:nth-child(even)::before {
    border-width: 0.5rem 0.4rem 0 0.4rem;
    border-color: #fff transparent transparent transparent;
    left: 90%;
    top: 100%;
    transform: translateX(-50%);
  }
}

.trouble__text {
  font-size: clamp(1rem, 1.6vw, 1.5rem);
  font-weight: 500;
  text-align: left;
  margin: 0;
  letter-spacing: 0.03rem;
}

.trouble__highlight {
  color: #c4361d;
  /* 強調部分（赤） */
  font-weight: 600;
}

/* 吹き出しの ? アイコン */
.trouble__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  background-image: url(../images/question.svg);
  color: #b3cfda;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  line-height: 1;
}

@media screen and (max-width: 640px) {
  .trouble__item::after {
    right: 8px;
    width: 40px;
    height: 40px;
  }
}

.caution__inner {
  position: relative;
  width: 100%;
}

.caution__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.contain__item {
  position: absolute;
  top: 10%;
  left: 0;
}

@media screen and (max-width: 1680px) {
  .contain__item {
    top: 7%;
  }
}

@media screen and (max-width: 1440px) {
  .contain__item {
    top: 6%;
  }
}

@media screen and (max-width: 1240px) {
  .contain__item {
    top: 8%;
  }
}

@media screen and (max-width: 820px) {
  .contain__item {
    top: 4%;
  }
}

@media screen and (max-width: 640px) {
  .contain__item {
    top: 8.888%;
  }
}

.caution__heading {
  text-align: center;
  margin: 0 auto;
  font-size: 2.5rem;
  color: #fff;
  background-color: var(--blue-color);
  width: 60%;
  border-top: solid 6px #ffca00;
  border-bottom: solid 6px #ffca00;
}

@media screen and (max-width: 1240px) {
  .caution__heading {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 640px) {
  .caution__heading {
    width: 90%;
  }
}

@media screen and (max-width: 375px) {
  .caution__heading {
    font-size: 1.3em;
  }
}

.caution__highlight {
  color: #ffca00;
}

.caution__line {
  border: solid 1px #333;
}

.caution__list {
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 160px;
  width: 60%;
  padding: 60px 0 40px 0;
}

@media screen and (max-width: 1440px) {
  .caution__list {
    padding: 32px 0 16px 0;
    margin: 0 auto;
    width: 70%;
    gap: 120px;
  }
}

@media screen and (max-width: 1280px) {
  .caution__list {
    padding: 16px 0 8px 0;
    margin: 0 auto;
    gap: 32px;
  }
}

@media screen and (max-width: 820px) {
  .caution__list {
    padding: 8px 0 8px 0;
    margin: 0 auto;
    gap: 24px;
  }
}

@media screen and (max-width: 640px) {
  .caution__list {
    padding: 32px 0 32px 0;
    width: 60%;
    gap: 32px;
    flex-direction: column;
  }
}

@media screen and (max-width: 365px) {
  .caution__list {
    padding: 16px 0 16px 0;
    width: 70%;
    gap: 16px;
    flex-direction: column;
  }
}

.caution__item {
  text-align: center;
  flex: 1;
}

.caution__icon {
  width: 80px;
  margin: 0 auto;
}

@media screen and (max-width: 1240px) {
  .caution__icon {
    width: 40px;
  }
}

@media screen and (max-width: 640px) {
  .caution__icon {
    width: 80px;
  }
}

.caution__title {
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1.2;
  padding: 32px 16px;
}

.caution__title2 {
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1.2;
  padding: 16px;
}

@media screen and (max-width: 1240px) {
  .caution__title {
    font-size: 1.4rem;
    padding: 16px 8px;
  }

  .caution__title2 {
    font-size: 1.4rem;
    padding: 8px;
  }
}

@media screen and (max-width: 375px) {
  .caution__title {
    font-size: 1.6rem;
  }
}

.caution__description {
  text-align: left;
  font-size: 1.25rem;
}

@media screen and (max-width: 1240px) {
  .caution__description {
    text-align: left;
    font-size: 1rem;
  }
}

@media screen and (max-width: 640px) {
  .caution__description {
    font-size: 1rem;
    padding: 8px 0 8px 0;
  }
}

.caution__note {
  text-align: center;
  font-size: 1.875rem;
  font-weight: bold;
  color: #c5070a;
  text-shadow:
    2px 2px 0 #fff,
    -2px 2px 0 #fff,
    2px -2px 0 #fff,
    -2px -2px 0 #fff,
    2px 0px 0 #fff,
    -2px 0px 0 #fff,
    0px 2px 0 #fff,
    0px -2px 0 #fff;
}

@media screen and (max-width: 1240px) {
  .caution__note {
    font-size: 1rem;
  }
}

@media screen and (max-width: 640px) {
  .caution__note {
    font-size: 1rem;
    padding-top: 16px;
  }
}

/* reason */
.reason {
  position: relative;
  margin: 0 auto;
  padding-bottom: 40px;
}

.reason::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  aspect-ratio: 1000 / 860;
  background-image: url(../images/worries-decoration.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.reason__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.reason__header {
  position: absolute;
  top: -210px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}

@media (max-width: 1440px) {
  .reason__header {
    top: -180px;
    width: 95%;
  }
}

@media (max-width: 960px) {
  .reason__header {
    top: -110px;
    width: 90%;
  }
}

@media (max-width: 640px) {
  .reason__header {
    flex-direction: column;
    align-items: flex-start;
    top: -80px;
    width: 100%;
  }
}

.reason__catch {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
}

.reason__text--orange {
  color: #f7931e;
}

.reason__text--blue {
  color: #26459a;
  font-size: 36px;
}

.reason__block {
  padding: 0 20px;
  max-width: 1200px;
}

.reason__title {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  color: #26459a;
}

.reason__title--reverse {
  justify-content: flex-end;
  margin-top: 120px;
}

@media screen and (max-width: 640px) {
  .reason__title--reverse {
    margin-top: 44px;
  }
}

.reason__label1,
.reason__label3 {
  padding: 4px 8px;
  margin-right: 12px;
  max-width: clamp(8.75rem, 2.841rem + 29.55vw, 25rem);
}

.reason__label2 {
  padding: 4px 8px;
  margin-left: 12px;
  max-width: clamp(8.75rem, 2.841rem + 29.55vw, 25rem);
}

.reason__heading1,
.reason__heading2,
.reason__heading3 {
  font-size: 3.75rem;
  font-weight: bold;
  color: var(--cta-color);
  background-color: var(--blue-color);
  padding: 8px 100px 8px 24px;
  width: 60%;
}

@media screen and (max-width: 1240px) {
  .reason__heading1,
  .reason__heading2,
  .reason__heading3 {
    font-size: 3rem;
    font-weight: bold;
    padding: 8px;
    width: 55%;
  }
}

@media screen and (max-width: 640px) {
  .reason__heading1,
  .reason__heading2,
  .reason__heading3 {
    font-size: 1.5rem;
    font-weight: bold;
    padding: 8px;
    width: 55%;
  }
}

.reason__heading1 {
  position: absolute;
  right: 0;
  z-index: 100;
}

.reason__heading2 {
  position: absolute;
  left: 0;
  z-index: 100;
  padding-left: 200px;
}

@media screen and (max-width: 1440px) {
  .reason__heading2 {
    padding-left: 120px;
  }
}

@media screen and (max-width: 640px) {
  .reason__heading2 {
    padding-left: 20px;
  }
}

.reason__heading3 {
  position: absolute;
  right: 0;
  z-index: 100;
}

.reason__content {
  width: 65%;
  margin-bottom: 24px;
}

@media screen and (max-width: 640px) {
  .reason__content {
    width: 100%;
  }
}

.reason__content1 {
  width: 100%;
}

.reason__content1 .reason__description2 {
  font-size: 1.8rem;
}

@media screen and (max-width: 640px) {
  .reason__content1 .reason__description2 {
    font-size: 1.1rem;
  }
}

.reason__description1 {
  position: relative;
  font-size: 2.1875rem;
  display: inline-block;
  z-index: 1;
  display: inline;
  background: linear-gradient(transparent 50%, var(--cta-color) 50%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 0.2em;
  line-height: 1.6;
}

@media screen and (max-width: 1240px) {
  .reason__description1 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 820px) {
  .reason__description1 {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 640px) {
  .reason__description1 {
    font-size: 1.2rem;
  }
}

.reason__description2 {
  font-size: 1.6rem;
  padding-top: 30px;
  line-height: 1.8;
  font-weight: 500;
}

@media screen and (max-width: 820px) {
  .reason__description2 {
    font-size: 1.3rem;
    padding-top: 30px;
    line-height: 1.8;
  }
}

@media screen and (max-width: 640px) {
  .reason__description2 {
    font-size: 1rem;
    padding-top: 16px;
    line-height: 1.4;
  }
}

.reason__description {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.reason__works {
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}

@media screen and (max-width: 640px) {
  .reason__works {
    padding-top: 32px;
    gap: 16px;
  }
}

.reason__work-label {
  font-weight: bold;
  color: #26459a;
  margin-bottom: 8px;
}

.reason__work-image img {
  width: 100%;
  height: auto;
  margin-bottom: 8px;
}

.reason__work-text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 32px auto;
  height: 70px;
  border: solid 1px var(--blue-color);
}

@media screen and (max-width: 640px) {
  .reason__work-text {
    width: 100%;
    height: 60px;
    margin: 16px auto;
  }
}

.reason__work-caption {
  font-size: 2.5rem;
  font-weight: bold;
  width: 35%;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  /* ← 斜めカット */
  box-sizing: border-box;
  background-color: var(--blue-color);
}

@media screen and (max-width: 640px) {
  .reason__work-caption {
    font-size: 1.3rem;
    width: 25%;
    height: 60px;
    padding-right: 8px;
  }
}

.reason__work-request {
  font-size: 1.2rem;
  width: 80%;
  text-align: left;
  padding: 0 60px;
}

@media screen and (max-width: 1240px) {
  .reason__work-request {
    font-size: 1.2rem;
    width: 80%;
    text-align: left;
    padding: 0 30px;
  }
}

@media screen and (max-width: 640px) {
  .reason__work-request {
    font-size: 1rem;
    width: 75%;
    text-align: left;
    padding: 0 8px;
    letter-spacing: -0.08rem;
  }
}

.reason__image--support {
  display: flex;
  gap: 60px;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
}

@media screen and (max-width: 1240px) {
  .reason__image--support {
    gap: 16px;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 640px) {
  .reason__image--support {
    flex-direction: column;
  }

  .reason__image--support-reverse {
    flex-direction: column-reverse;
    gap: 16px;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.reason__image--support img,
.reason__image--estimate img {
  width: 35%;
  max-width: 480px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 820px) {
  .reason__image--support img,
  .reason__image--estimate img {
    width: 50%;
  }
}

@media screen and (max-width: 640px) {
  .reason__image--support img,
  .reason__image--estimate img {
    width: 100%;
  }
}

.reason__more {
  max-width: 1350px;
  padding: 80px 20px 40px 20px;
  border: 3px solid var(--blue-color);
  position: relative;
  margin: 80px auto 0 auto;
  width: 95%;
}

@media screen and (max-width: 640px) {
  .reason__more {
    margin-top: 60px;
  }
}

.reason__more::before {
  content: "";
  display: inline-block;
  width: 160px;
  height: 100px;
  background-image: url(../images/more.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  z-index: 1;
}

@media screen and (max-width: 640px) {
  .reason__more::before {
    width: 140px;
    height: 60px;
    top: -25px;
  }
}

.reason__more-label {
  background-color: #f7931e;
  color: #fff;
  font-size: 14px;
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 24px;
  border-radius: 12px;
  font-weight: bold;
}

.reason__more-list {
  width: 100%;
  max-width: 1200px;
  display: flex;
  gap: 60px;
  justify-content: space-between;
  margin: 0 auto;
}

@media screen and (max-width: 1240px) {
  .reason__more-list {
    gap: 16px;
  }
}

@media screen and (max-width: 680px) {
  .reason__more-list {
    flex-direction: column;
    gap: 60px;
  }
}

.reason__more-item {
  flex: 1 1 calc(33.333% - 16px);
  padding: 20px;
  border-radius: 8px;
  box-sizing: border-box;
  position: relative;
}

@media screen and (max-width: 1240px) {
  .reason__more-item {
    flex: 1 1 100%;
    padding: 0;
  }
}

@media screen and (max-width: 640px) {
  .reason__more-item {
    flex: 1 1 100%;
  }
}

.reason__more-item::before {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  width: 160px;
  height: 60px;
  top: -15px;
  left: -20px;
}

@media screen and (max-width: 640px) {
  .reason__more-item::before {
    width: 136px;
    height: 60px;
    top: -32px;
    left: -4px;
  }
}

.reason__more-item--01::before {
  background-image: url(../images/Commitment-4.webp);
}

.reason__more-item--02::before {
  background-image: url(../images/Commitment-5.webp);
}

.reason__more-item--03::before {
  background-image: url(../images/Commitment-6.webp);
}

.reason__more-image img {
  width: 100%;
  height: auto;
  margin-bottom: 12px;
}

.reason__more-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #26459a;
  position: relative;
  z-index: 1;
  display: inline;
  background: linear-gradient(transparent 50%, var(--cta-color) 50%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 0.2em;
  line-height: 1.6;
}

@media screen and (max-width: 1240px) {
  .reason__more-title {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 1240px) {
  .reason__more-title {
    font-size: 1.4rem;
  }
}

.reason__more-description {
  font-size: 1.2rem;
  line-height: 1.4;
  letter-spacing: 0.03rem;
  padding-top: 16px;
}

@media screen and (max-width: 640px) {
  .reason__more-description {
    font-size: 1rem;
    line-height: 1.6;
    padding-top: 8px;
  }
}

/* CTA */
.contact-banner {
  background: url("../images/cta-bg.webp") no-repeat center center / cover;
  padding: 60px 10px;
  color: #fff;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 640px) {
  .contact-banner {
    background: url("../images/cta-bg-sp.webp") no-repeat center center / cover;
  }
}

.contact-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-banner__catch {
  font-size: 2rem;
  display: inline;
  margin-bottom: 32rem;
  line-height: 1.7;
  background: linear-gradient(transparent 90%, #f7ea48 90%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

@media screen and (max-width: 640px) {
  .contact-banner__catch {
    font-size: 1.6rem;
  }
}

.contact-banner__line {
  display: inline;
  background: linear-gradient(transparent 90%, #f7ea48 90%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

@media screen and (max-width: 640px) {
  .contact-banner__line {
    display: inline-block;
  }
}

.contact-banner__subcatch {
  font-size: 1.8rem;
  position: relative;
  margin-bottom: 2rem;
  margin-top: 32px;
}

@media screen and (max-width: 640px) {
  .contact-banner__subcatch {
    font-size: 1rem;
  }
}

.contact-banner__subcatch::before {
  content: "＼";
  margin-right: 0.5em;
}

.contact-banner__subcatch::after {
  content: "／";
  margin-left: 0.5em;
}

.contact-banner__options {
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex: 1;
  gap: 1rem;
  margin: 0 auto;
  height: 100px;
}

@media screen and (max-width: 820px) {
  .contact-banner__options {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .contact-banner__options {
    flex-direction: column;
  }
}

.contact-banner__phone {
  background-color: rgba(255, 255, 255, 0.1);
  border: 3px solid #f7ea48;
  border-radius: 10px;
  padding: 1rem 0;
  min-width: 280px;
  width: 50%;
  text-align: left;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 640px) {
  .contact-banner__phone {
    width: 100%;
    padding: 0 0;
    gap: 5px;
  }
}

.contact-banner__phone-label {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
  padding-right: 8px;
  color: #fff;
}

@media screen and (max-width: 640px) {
  .contact-banner__phone-label {
    font-size: 0.8rem;
    padding-right: 0;
  }
}

.contact-banner__phone-bold {
  font-size: 1.2rem;
}

.contact-banner__phone-item {
  display: flex;
  flex-direction: column;
}

.contact-banner__phone-number {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--cta-color);
}

.contact-banner__phone-number {
  font-size: 1.3rem;
}

.contact-banner__phone-icon {
  width: 48px;
  height: auto;
  margin-right: 0.5rem;
}

@media screen and (max-width: 820px) {
  .contact-banner__phone-icon {
    width: 32px;
  }
}

.contact-banner__phone-digits {
  font-size: 2.375rem;
  font-family: var(--font-number);
}

@media screen and (max-width: 1240px) {
  .contact-banner__phone-digits {
    font-size: 2rem;
  }
}

@media screen and (max-width: 820px) {
  .contact-banner__phone-digits {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 640px) {
  .contact-banner__phone-digits {
    font-size: 1.4rem;
  }
}

.contact-banner__phone-hours {
  font-size: 0.9rem;
  color: #fff;
}

.contact-banner__web {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--cta-color);
  color: var(--blue-color);
  font-weight: bold;
  text-decoration: none;
  padding: 1rem 1rem;
  border-radius: 10px;
  min-width: 280px;
  width: 50%;
  transition: background-color 0.3s;
}

@media screen and (max-width: 640px) {
  .contact-banner__web {
    width: 100%;
    font-size: 0.95rem;
    padding: 0.8rem 1.5rem;
  }
}

.contact-banner__web:hover {
  background-color: #ffe100;
}

.contact-banner__web-icon {
  width: 48px;
  height: auto;
  margin-right: 0.5rem;
}

.contact-banner__web-text {
  font-size: 1.4rem;
}

/* インタビュー */
.interview {
  position: relative;
  background: url("../images/interview_bg.webp") center/cover no-repeat;
  background-position: bottom;
  padding: 180px 20px 240px 20px;
  color: #1a2c7b;
  overflow: hidden;
}

@media screen and (max-width: 820px) {
  .interview {
    padding: 120px 20px 120px 20px;
  }
}

@media screen and (max-width: 640px) {
  .interview {
    padding: 104px 20px 80px 20px;
  }
}

.interview__person {
  position: absolute;
  width: 400px;
  height: auto;
  bottom: 0;
  left: 5%;
  z-index: 10;
}

@media screen and (max-width: 1240px) {
  .interview__person {
    width: 350px;
    left: 0;
  }
}

@media screen and (max-width: 820px) {
  .interview__person {
    width: 240px;
    left: 0;
  }
}

@media screen and (max-width: 640px) {
  .interview__person {
    width: 160px;
    left: 0;
  }
}

.interview::before,
.interview::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 240px;
  background-color: #cce0ea;
  z-index: 1;
}

.interview::before {
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}

@media screen and (max-width: 640px) {
  .interview::before {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 30%);
  }
}

.interview::after {
  bottom: 0;
  left: 0;
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}

@media screen and (max-width: 640px) {
  .interview::after {
    clip-path: polygon(0 100%, 100% 70%, 100% 100%, 0 100%);
  }
}

.interview__inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.interview__inner::before {
  content: "";
  position: absolute;
  background-image: url(../images/interview_decoration.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  top: -5%;
  right: -14%;
  width: 100%;
  height: 300px;
}

@media screen and (max-width: 1240px) {
  .interview__inner::before {
    right: 0;
  }
}

@media screen and (max-width: 640px) {
  .interview__inner::before {
    top: 0;
    right: -5%;
    width: 100%;
    height: 104px;
  }
}

/* タイトルエリア */
.interview__heading {
  margin-bottom: 120px;
  position: relative;
}

@media screen and (max-width: 640px) {
  .interview__heading {
    margin-bottom: 40px;
    position: relative;
  }
}

.interview__heading::before {
  content: "INTERVIEW";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  color: #0846ff;
  opacity: 26%;
}

@media screen and (max-width: 640px) {
  .interview__heading::before {
    font-size: 4rem;
    top: -50px;
  }
}

.interview__subtitle {
  font-size: 3.125rem;
  font-weight: 500;
  color: var(--blue-color);
  display: block;
}

@media screen and (max-width: 640px) {
  .interview__subtitle {
    font-size: 1.2rem;
  }
}

.interview__headline {
  font-size: 3.5rem;
  margin-top: 8px;
  font-weight: 500;
  color: var(--blue-color);
  display: block;
}

@media screen and (max-width: 640px) {
  .interview__headline {
    font-size: 2rem;
  }
}

/* QAブロック */
.interview__qa-block1,
.interview__qa-block2 {
  margin-bottom: 160px;
  width: 95%;
}

@media screen and (max-width: 640px) {
  .interview__qa-block1,
  .interview__qa-block2 {
    margin-bottom: 60px;
    width: 100%;
  }
}

.interview__qa-block2 {
  margin-left: auto;
}

.interview__qa {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  text-align: left;
  border: 5px solid var(--blue-color);
  border-radius: 10px;
  position: relative;
  padding: 104px 20px;
}

@media screen and (max-width: 640px) {
  .interview__qa {
    flex-direction: column;
    padding: 56px 20px 32px 20px;
    gap: 8px;
  }

  .interview__qa--reverse {
    flex-direction: column-reverse;
    padding: 56px 20px 32px 20px;
  }
}

.interview__qa-text {
  flex: 1;
  padding-right: 40%;
}

@media screen and (max-width: 820px) {
  .interview__qa-text {
    padding-right: 50%;
  }
}

@media screen and (max-width: 640px) {
  .interview__qa-text {
    padding: 0;
  }
}

.interview__qa-text2 {
  flex: 1;
  padding-left: 40%;
}

@media screen and (max-width: 820px) {
  .interview__qa-text2 {
    padding-left: 50%;
  }
}

@media screen and (max-width: 640px) {
  .interview__qa-text2 {
    padding: 0;
  }
}

.interview__question {
  background-color: #1a2c7b;
  color: #fff700;
  font-weight: bold;
  font-size: 2rem;
  padding: 8px 16px;
  margin-bottom: 12px;
  display: inline-block;
  position: absolute;
  white-space: normal;
  top: -20px;
  left: 5%;
  z-index: 20;
}

@media screen and (max-width: 640px) {
  .interview__question {
    font-size: 1.2rem;
    width: 90%;
    text-align: center;
  }
}

.interview__question-reverse {
  background-color: #1a2c7b;
  color: #fff700;
  font-weight: bold;
  font-size: 2rem;
  padding: 8px 40px 8px 16px;
  margin-bottom: 12px;
  display: inline-block;
  position: absolute;
  top: -20px;
  right: 10%;
  width: 50%;
}

@media screen and (max-width: 640px) {
  .interview__question-reverse {
    font-size: 1.2rem;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: 8px 16px 8px 16px;
  }
}

.interview__answer {
  font-size: 1.1rem;
  letter-spacing: normal;
  font-weight: 500;
  line-height: 1.7;
  color: #1a2c7b;
  margin: 0 auto;
  display: flex;
}

@media screen and (max-width: 640px) {
  .interview__answer {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.interview__qa-image1 {
  flex: 1;
  position: absolute;
  top: -10px;
  right: -64px;
}

.interview__qa-image2 {
  flex: 1;
  position: absolute;
  top: -10px;
  left: -64px;
}

@media screen and (max-width: 640px) {
  .interview__qa-image1,
  .interview__qa-image2 {
    position: static;
    margin: 24px auto 0;
    transform: none;
  }
}

.interview__qa-image1 img,
.interview__qa-image2 img {
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

@media screen and (max-width: 640px) {
  .interview__qa-image1 img,
  .interview__qa-image2 img {
    max-width: 320px;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }
}

/* 最後のメッセージ */

.interview__message-item {
  display: flex;
}

.interview__message {
  font-size: 2.3rem;
  font-weight: bold;
  color: #1a2c7b;
  line-height: 1.8;
  margin-top: 80px;
  text-align: left;
  margin-left: auto;
}

@media screen and (max-width: 1240px) {
  .interview__message {
    width: 60%;
    font-size: 2rem;
    margin-top: 0;
  }

  .interview__message br {
    display: none;
  }
}

@media screen and (max-width: 820px) {
  .interview__message {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 640px) {
  .interview__message {
    font-size: 1rem;
    width: 60%;
    margin-left: auto;
  }
}

.interview__highlight {
  background: linear-gradient(transparent 70%, #fff700 70%);
}

/* flow */
.flow {
  padding: 60px 0 120px 0;
  background-color: #f0f8ff;
  position: relative;
  background-image: url(../images/flow_bg.webp);
  background-position: center;
  background-repeat: repeat;
  background-size: contain;
}

@media screen and (max-width: 640px) {
  .flow {
    background-image: url(../images/flow_bg_sp.webp);
  }
}

.flow__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  background-color: #1a2c7b;
  color: #fff;
  padding: 14px;
  margin-bottom: 80px;
  position: relative;
}

.flow__title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 10px solid var(--blue-color);
}

.flow__steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  counter-reset: step;
  gap: 40px;
}

@media screen and (max-width: 960px) {
  .flow__steps {
    gap: 16px;
  }
}

.flow__steps::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #1a2c7b;
  z-index: 0;
}

@media screen and (max-width: 640px) {
  .flow__steps::before {
    display: none;
  }
}

.flow__step {
  text-align: center;
  position: relative;
  width: calc(100% / 6);
  counter-increment: step;
  z-index: 1;
}

@media screen and (max-width: 640px) {
  .flow__step {
    width: 100%;
    max-width: 240px;
  }
}

.flow__step::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #1a2c7b;
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

@media screen and (max-width: 640px) {
  .flow__step:not(:last-child)::after {
    content: "";
    display: block;
    width: 2px;
    height: 30px;
    background-color: #1a2c7b;
    margin: 12px auto 0;
  }
}

@media screen and (max-width: 640px) {
  .flow__step::before {
    display: none;
  }
}

.flow__label {
  font-size: 1.8rem;
  font-weight: bold;
  color: #1a2c7b;
  position: relative;
  margin-bottom: 32px;
}

.flow__image {
  width: 160px;
  height: 160px;
  margin: 16px auto;
  border-radius: 50%;
  position: relative;
}

@media screen and (max-width: 1240px) {
  .flow__image {
    width: 120px;
    height: 120px;
  }
}

@media screen and (max-width: 960px) {
  .flow__image {
    width: 100px;
    height: 100px;
  }
}

@media screen and (max-width: 640px) {
  .flow__image {
    margin: 0 auto;
    width: 160px;
    height: 160px;
  }
}

.flow__image::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 40px;
  color: var(--blue-color);
  font-weight: bold;
  z-index: 2;
}

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

.flow__description {
  font-size: 1.4rem;
  font-weight: bold;
  color: #1a2c7b;
  margin-top: 8px;
}

@media (max-width: 960px) {
  .flow__description {
    font-size: 1.2rem;
  }
}

@media (max-width: 640px) {
  .flow__description {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .flow__steps {
    flex-direction: column;
    align-items: center;
  }
}

/* お問い合わせ */
.contact-form {
  width: 100%;
  margin: 0 auto;
  padding: 120px 60px;
  background-color: var(--blue-color);
}

@media (max-width: 640px) {
  .contact-form {
    padding: 32px 20px;
  }
}

.contact-form__heading {
  text-align: center;
}

.contact-form-wrapper {
  background-color: var(--bg-color);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px 60px 20px;
}

.wpcf7 {
  width: 95%;
  margin: 0 auto;
}

.contact-form__title {
  display: inline-block;
  padding-bottom: 60px;
  width: 100%;
  font-size: 2.8rem;
  color: #fff;
}

@media (max-width: 640px) {
  .contact-form__title {
    padding-bottom: 32px;
    font-size: 1.4rem;
  }
}

.contact-form__title br {
  display: none;
}

.contact-form__form {
  width: 100%;
}

.contact-form__field {
  padding-bottom: 20px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  text-align: right;
  width: 100%;
  gap: 32px;
}

@media screen and (max-width: 820px) {
  .contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}

.contact-form__field:nth-child(1) {
  padding-top: 0;
}

.contact-form__field p {
  width: 100%;
  text-align: left;
}

@media screen and (max-width: 375px) {
  .contact-form__field p {
    display: flex;
    align-items: center;
  }
}

.contact-form__label {
  font-size: clamp(1.2rem, calc(0.9vw + 0.99rem), 1.6rem);
  font-weight: bold;
  position: relative;
}

@media screen and (max-width: 375px) {
  .contact-form__label {
    margin-bottom: 0;
  }
}

.contact-form__label-wrapper {
  width: 50%;
  text-align: left;
  display: flex;
  align-items: center;
}

.contact-form__label-wrapper p {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 640px) {
  .contact-form__label-wrapper {
    width: 100%;
  }
}

.contact-form__required {
  display: inline-block;
  background: linear-gradient(180deg, #f0b45a 0%, #e2890c 40%, #e88700 100%);
  color: #fff;
  font-size: clamp(1.2rem, calc(0.9vw + 0.99rem), 1.6rem);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}

.contact-form__input,
.contact-form__textarea {
  flex-grow: 1;
  width: 100%;
  font-size: 16px;
  height: 60px;
  padding: 12px 16px;
  border: solid 1px var(--blue-color);
  font-size: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  resize: vertical;
}

@media screen and (max-width: 375px) {
  .contact-form__input,
  .contact-form__textarea {
    height: 40px;
  }
}

.contact-form__textarea {
  min-height: 160px;
}

.contact-form__button-wrapper {
  text-align: center;
  margin-top: 32px;
}

.wpcf7-spinner {
  display: none;
}

.contact__buttons {
  padding-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin: 0 auto;
}

.contact__buttons p {
  margin: 0 auto;
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.contact-form__button {
  background: linear-gradient(180deg, #f0b45a 0%, #e2890c 40%, #e88700 100%);
  color: #fff;
  padding: 24px 0;
  font-size: 2rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  width: 40%;
}

.contact_back-button {
  width: 40%;
  border-radius: 5px;
  padding: 24px 0;
  font-size: 2rem;
  font-weight: bold;
  color: var(--blue-color);
  border: solid 1px var(--blue-color);
}

@media screen and (max-width: 820px) {
  .contact-form__button {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 640px) {
  .contact-form__button {
    font-size: 1.2rem;
    width: 100%;
    padding: 16px 0;
  }
}

@media screen and (max-width: 820px) {
  .contact_back-button {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 640px) {
  .contact_back-button {
    font-size: 1.2rem;
    width: 100%;
  }
}

.contact-form__button:hover {
  opacity: 0.8;
}

.copy-light {
  padding: 16px 0;
  text-align: center;
  color: #fff;
  font-size: 14px;
}

.page-confirm {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
}

.contact-form__label-textarea {
  border: solid 1px var(--blue-color);
  width: 100%;
  height: 60px;
  padding: 0 20px;
  display: flex;
  align-items: center;
}

.form_confirm_text {
  font-size: 2rem;
  text-align: center;
  padding-bottom: 40px;
}

.wpcf7-form-control-wrap {
  flex: 1;
  width: 100%;
}

/* サンクスページ */
.contact {
  height: 100%;
}

.contact__inner {
  padding: 120px 20px;
}

@media screen and (max-width: 640px) {
  .contact__inner {
    padding: 60px 20px;
  }
}

.contact__thanks-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 640px) {
  .contact__thanks-title {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }
}

.contact__thanks-title br {
  display: none;
}

@media screen and (max-width: 640px) {
  .contact__thanks-title br {
    display: block;
  }
}

.contact__thanks {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 40px;
}

.contact__thanks span {
  margin-bottom: 40px;
  display: block;
}

.contact__thanks-company {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 120px;
}

@media screen and (max-width: 640px) {
  .contact__thanks-company {
    margin-bottom: 60px;
  }
}

.contact__thanks-company span {
  margin-bottom: 8px;
  display: block;
}

.contact__button {
  background: linear-gradient(180deg, #f0b45a 0%, #e2890c 40%, #e88700 100%);
  color: #fff;
  padding: 24px 0;
  font-size: 2rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  width: 40%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

@media screen and (max-width: 640px) {
  .contact__button {
    font-size: 1.6rem;
    width: 100%;
  }
}

/* footer */
.footer {
  background-color: #418cd1;
}

.footer {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ebf9fe;
  text-align: center;
}

@media screen and (min-width: 640px) {
  .footer br {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .footer {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ebf9fe;
  }
}

/* cta */

.l-cta {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 32px 0;
  z-index: 100;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: var(--blue-color);
}

@media screen and (max-width: 640px) {
  .l-cta {
    padding: 10px 0;
  }
}

.l-cta .l-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5px;
}

.l-cta .l-cta__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 10px;
}

.l-cta .l-cta__list li {
  width: 50%;
  padding: 0 5px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.l-cta .l-cta__btn {
  display: block;
  padding: 16px 0px;
  color: #fff;
  border-radius: 10px;
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .l-cta .l-cta__btn {
    font-size: 14px;
  }
}

.l-cta .l-cta__btn1 {
  border: solid 1px var(--cta-color);
  color: var(--cta-color);
}

.l-cta .l-cta__btn2 {
  background-color: var(--cta-color);
  color: var(--blue-color);
}

.l-cta.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}