@charset "UTF-8";

/******************** 
共通スタイル
*********************/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-size: 1rem; /* = 16px */
}

body {
  color: #431314;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  line-height: 1.7;
  background: #ffffff;
  font-weight: 700;
}

a {
  text-decoration: none;
  color:#fff;
}

a:hover,
a:focus {
  text-decoration: none;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

address {
  font-style: inherit;
}



/******************** 
共通
*********************/

/*********** 変数定義 ***********/
:root {
  --header-min-height-base: 80px;
}


/*********** l-container ***********/
.l-container {
  max-width: 1192px;
  margin: 0 auto;
  padding-inline: 2rem;
  padding-block: 2rem;
}

@media (max-width: 890px) {
  .l-container {
    padding-inline: 1rem;
    padding-block: 1rem;
  }
}


/******************** 
Header
*********************/

/*********** l-header ***********/
.l-header {
  background: #294e92;
  position: sticky;
  top: 0;
  z-index: 100;
  padding-block: 1rem;
  padding-inline: 2rem;
}

.l-header__inner {
  min-height: 50px;
  max-width: 1192px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.l-header__title {
  color: #ffffff;
  font-size: clamp(0.9rem, 0.7392rem + 0.6861vw, 1.5625rem);
}

.l-header__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.divider {
  padding-inline: 1rem 0.5rem;
}

/*********** c-header ***********/
.c-header-link {
  min-height: 30px;
  padding: 0.1rem 1.125rem;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: #3a67bc;
  color: #ffffff;
  font-size: 0.9375rem
}

.c-header-link:hover {
  filter: brightness(0.9);
}

.c-line-button {
  min-height: 44.8px;
  padding: 0.35rem 1rem ;
  border: 2px solid #4cc764;
  border-radius: 999rem;
  background: #ffffff;
  color: #4cc764;
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.c-line-button:hover {
  filter: brightness(0.9);
}

.c-line-button__icon {
  max-width: 1.625rem;
}

/*********** responsive ***********/


@media (max-width: 924px) {

  .l-header {
    position: static;
    padding-block: 0.1rem;
  }
  
  .l-header__inner {
    justify-content: center;
  }

  .l-header__actions {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 200;

    width: 100%;
    min-height: var(--header-min-height-base);
    background: #294e92;
    padding-inline: 2rem;
  }

  .l-header__actions > a {
    flex: 1;
  }

  .c-header-link,
  .c-line-button {
    width: 100%;
    min-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.1rem;
  }

  .c-line-button {
    font-size: 1.2rem;
  }
}

@media (max-width: 668px) {

  .l-header__actions {
    gap:0.7rem;
    padding-block: 0.7rem;
    padding-inline: 1rem;
  }

  .c-header-link,
  .c-line-button {
    font-size: 0.8rem;
    min-height: 40px;
  }

}

@media (max-width: 478px) {
  .c-header-link,
  .c-line-button {
    gap:0.5rem;
    font-size: 0.6rem;
    min-height: 35px;
    padding-inline: 0.5rem;
  }

  .c-line-button__icon {
  max-width: 1.2rem;
}
 .l-header__actions {
    min-height: 50px;
  }
}






/******************** 
Hero
*********************/

/*********** p-hero ***********/
.p-hero {
  background: #ffffff;
}

.p-hero__image {
  width: 100%;
  height: auto;
}

.p-hero__bubble {
  position: absolute;
  background: #005ba2;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.45;
  border-radius: 1.75rem;
  box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.08);
}

.p-hero__bubble::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

.p-hero__bubble--left {
  top: 10%;
  left: 4.5%;
  padding: 1.125rem 1.625rem;
}

.p-hero__bubble--left::after {
  left: 78%;
  bottom: -1.375rem;
  border-width: 0 0.875rem 1.5rem 0.875rem;
  border-color: transparent transparent #005ba2 transparent;
  transform: rotate(35deg);
}

.p-hero__bubble--right {
  top: 6%;
  right: 6%;
  padding: 1.125rem 1.5rem;
}

.p-hero__bubble--right::after {
  left: 20%;
  bottom: -1.625rem;
  border-width: 0 1rem 1.75rem 1rem;
  border-color: transparent transparent #005ba2 transparent;
  transform: rotate(-35deg);
}

/*********** responsive ***********/
@media (max-width: 450px) {
  .p-hero__bubble {
    max-width: calc(100% - 2rem);
  }

  .p-hero__bubble--left {
    top: 5%;
    left: 1rem;
  }

  .p-hero__bubble--right {
    top: 5%;
    right: 1rem;
  }
}

/******************** 
CTA
*********************/

/*********** c-cta ***********/
.c-cta-card-wrap {
  container-type: inline-size;
  max-width: 800px;
  margin: 0 auto;
}

.c-cta-card {
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  border-radius: 1.375rem;
  background: #4cc764;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  width: 100%;
}

.c-cta-card__content {
  width: auto;
}

.c-cta-card__title {
  transform: translateX(0.2rem);
  color: #ffffff;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
}

.c-cta-card__text {
  margin-top: 1rem;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.c-cta-card__visual {
  width: 34%;
  transform: translateY(1rem);
}

.c-cta-card__phone {
  width: 100%;
  height: auto;
}

.c-cta-button {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 2px #fff;
  padding-block: 0.3rem;
  max-width: 70%;
  padding-block: 0.6rem;
  border-radius: 100px;
  gap: 1rem;
}

.c-cta-icon {
  width: 1em;
  height: auto;
}

.c-cta-button:hover {
  border: solid 2px #4cc764;
  background-color: #fff;
}

.c-cta-button:hover p {
  color: #4cc764 !important; 
}

.c-cta-button:hover .c-cta-icon line {
  stroke: #4cc764 !important;
}


.c-cta-button-under {
  display: none;
}

@media (max-width: 735px) { 
  .c-cta-button {
    display: none;
  }
  .c-cta-button-under {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #4cc764;
    border: solid 2px #4cc764;
    padding-block: 0.6rem;
    padding-inline: 1rem;
    width: 260px;
    border-radius: 100px;
    margin-inline: auto;
    gap: 1rem;
  }
}


.c-cta-button p  {
  font-size: 1rem;
  color: #ffffff;
}

.c-cta-button img,.c-cta-button-under img {
  width: 1rem;
}


/*********** p-cta ***********/
.p-cta {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.p-cta--gray {
  background: #f8f8f8;
}

.p-cta--last {
  padding-top: 0;
  padding-bottom: 4.75rem;
}

/*********** responsive ***********/
@container (max-width: 735px) {
  .c-cta-card {
    margin-inline: auto;
    flex-direction: column;
    max-width: 450px;
    text-align: center;
    gap:1rem;
  }

  .c-cta-card__title {
    font-size: 40px;
  }

  .c-cta-card__text {
    font-size: 16px;
  }
}

@container (max-width: 450px) {
  .c-cta-card {
    max-width: 320px;
  }

  .c-cta-card__title {
    font-size: 30px;
  }

  .c-cta-card__text {
    font-size: 12px;
  }
}

/******************** 
Steps
*********************/

/*********** c-steps ***********/
.c-step-card {
  text-align: center;
}

.c-step-card__circle {
  width:clamp(14rem, 13.0291rem + 4.1424vw, 18rem);
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.c-step-card__icon {
  width: 8em;
}

.c-step-card__text {
  margin-top: 1em;
  color: #000000;
  font-size: 0.9em;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 730px) {
  .c-step-card__text {
    font-size: 0.7em;
  }
}


/*********** p-steps ***********/
.p-steps {
  background: #f8f8f8;
}

.p-steps__header {
  text-align: center;
}

.p-steps__title {
  color: #431314;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.3;
}

.p-steps__lead {
  margin-top: 1rem;
  color: #431314;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-steps__flow-figure {
  width: 100%;
  max-width: 58.5rem;
  margin: 2.625rem auto 0;
}

@media (max-width: 990px) {
  .p-steps__flow-figure {
    margin-inline: -16px;
    width: auto;
  }
}



.p-steps__flow-image {
  width: 100%;
  border: 1px solid #000000;
}

.p-steps__cards {
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.p-steps__card {
  flex: 1 1 0;
}

.p-steps__arrow {
  color: #000000;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1;
  flex: 0 0 auto;
  text-align: center;
}

.p-steps__message {
  margin-top: 2.75rem;
  text-align: center;
  color: #431314;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

/*********** responsive ***********/
@media (max-width: 890px) {
  .p-steps__cards {
    flex-direction: column;
  }

  .p-steps__card {
    width: 100%;
  }

  .p-steps__arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 600px) {
  .p-steps__lead {
  margin-top: 2rem;
  }
}
  


/******************** 
FAQ
*********************/

/*********** c-faq ***********/
.c-faq-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.c-faq-item__row {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.c-faq-item__row--question {
  align-items: flex-start;
}

.c-faq-item__badge {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  flex: 0 0 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.c-faq-item__badge--question {
  background: #0c388a;
  color: #ffffff;
}

.c-faq-item__badge--answer {
  border: 0.1875rem solid #0c388a;
  background: #ffffff;
  color: #0c388a;
}

.c-faq-item__title {
  color: #0c388a;
  font-size: clamp(0.9rem, 0.8454rem + 0.233vw, 1.125rem);
  font-weight: 700;
  line-height: 1.5;
  flex: 1 1 auto;
}

.c-faq-item__text {
  color: #0c388a;
  font-size: clamp(0.9rem, 0.8454rem + 0.233vw, 1.125rem);
  font-weight: 700;
  line-height: 1.65;
  flex: 1 1 auto;
}

/*********** p-faq ***********/
.p-faq {
  padding-block: 1.875rem;
  background: #ffffff;
}

.p-faq__header {
  text-align: center;
}

.p-faq__title {
  color: #0c388a;
  font-size: clamp(1.5rem, 1.409rem + 0.3883vw, 1.875rem);
  font-weight: 700;
  line-height: 1.3;
}

.p-faq__lead {
  margin-top: 1rem;
  color: #0c388a;
  font-size: clamp(0.8rem, 0.6908rem + 0.466vw, 1.25rem);
  font-weight: 700;
  line-height: 1.4;
}

.p-faq__list {
  width: 100%;
  max-width: 62.5rem;
  margin: 4rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}


/********************
Footer
*********************/


.footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding-block: 4rem;
  padding-inline: 1rem;
  gap: 5rem;
  color: #fff;
}

@media (max-width: 960px) { 
  .footer__inner {
    flex-direction: column;
    gap:2.5rem;
    padding-bottom: 7rem;
  }
}

.footer {
  color: var(--color-white);
  background-color: #000;
}

.footer__logo {
  width: min(100%, 12rem);
}

.footer__company {
  font-size: 0.7rem;
}





/******************** 
Utility
*********************/

.u-sp-br {
  display: none;
}

@media (max-width: 668px) {
  .u-sp-br {
    display: block;
  }
}