@charset "UTF-8";

/* 共通 */

:root {
  --white: #FFFFFF;
  --blue: #245BB4;
  --gray: #717171;
  --black1D: #1D1D1D;
  --black4A: #4A4A4A;
  --lightcyan: #ECF5FF;
  --sp-width: calc(100% - 32px);
  --sm-width: 300px;
  --md-width: 1000px;
  --lg-width: 1150px;
  --under-z-index: -1;
  --nomal-z-index: 0;
  --first-z-index: 1;
  --top-z-index: 10;
}

html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
}


/* ヘッダー */

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--top-z-index);
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
}

.header-ttl {
  padding-left: 32px;
  font-size: clamp(0.938rem, 0.795rem + 0.61vw, 1.25rem);
  color: var(--blue);
}

.header__nav {
  position: relative;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}

.header__nav-list {
  margin: 0 40px 0 0;
  color: var(--blue);
  font-size: 16px;
}

.header__nav-contact {
  display: flex;
  align-items: center;
  padding: 0 32px;
  height: 80px;
  text-align: center;
  background: var(--blue);
  color: var(--white);
  font-size: 18px;
}

.header__nav-contact-sp {
  display: none;
}

.header__nav-contact-img {
  width: 70px;
  height: 70px;
}

@media screen and (max-width: 768px) {

  .header {
    height: 70px;
  }

  .header-ttl {
    padding-left: 24px;
  }

  .header__nav {
    display: none;
  }

  .header__nav.active {
    z-index: var(--top-z-index);
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: var(--white);
  }

  .header__nav-list {
    margin: 0 0 64px  0;
  }

  .header__nav-contact {
    display: none;
  }

  .header__nav-contact-sp {
    display: flex;
  }
}


/* ハンバーガーメニュー */

.openbtn {
  display: none;
  position: relative;
  z-index: var(--top-z-index);
  right: 0px;
  cursor: pointer;
  width: 70px;
  height: 70px;
}

.openbtn span {
  display: inline-block;
  position: absolute;
  height: 2px;
  width: 45px;
  background: var(--blue);
  transition: all 0.4s;
}

.openbtn span:nth-of-type(1) {
  top: 30px;
  left: 12.5px;
}

.openbtn span:nth-of-type(2) {
  top: 40px;
  left: 12.5px;
}

.openbtn span:nth-of-type(3) {
  top: 35px;
  left: -35px;
  height: 1px;
  width: 70px;
  transform: rotate(90deg);
}

.openbtn.active span:nth-of-type(1) {
  top: 35px;
  transform: rotate(-45deg);
}

.openbtn.active span:nth-of-type(2) {
  top: 35px;
  transform: rotate(45deg);
}

.openbtn.active span:nth-of-type(3) {
  display: none;
}

@media screen and (max-width: 768px) {
  .openbtn {
    display: block;
  }
}


/* kv */

.kv {
  position: relative;
  margin-top: 80px;
}

.kv__slider-item {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.kv__slider-item1 {
  background-image: url(../img/top_kv1.jpg);
  background-position: calc(13% + 0.3vw) 0;
}

.kv__txt1,
.kv__txt2,
.kv__txt3,
.kv__txt4 {
  position: absolute;
  top: 50%;
  color: var(--white);
  font-size: clamp(0.938rem, 0.739rem + 0.85vw, 1.375rem);
  text-align: center;
  letter-spacing: 0.15em;
  line-height: 2.5;
  text-shadow: 1px 1px 4px #00000094;
  transform: translate(0, -50%);
}

.kv__txt1,
.kv__txt3 {
  left: 50%;
}

.kv__slider-item2 {
  background-image: url(../img/top_kv2.jpg);
  background-position: calc(55% + 0.3vw) 0;
}

.kv__txt2 {
  right: 55%;
}

.kv__slider-item3 {
  background-image: url(../img/top_kv3.jpg);
  background-position: calc(29% + 0.3vw) 0;
}

.kv__slider-item4 {
  background-image: url(../img/top_kv4.jpg);
  background-position: calc(63% + 0.3vw) 0;
}

.kv__txt4 {
  right: 50%;
  color: var(--white);
}

.slick-arrow {
  position: absolute;
  z-index: var(--first-z-index);
  top: 50%;
  width: 45px;
  height: 45px;
  opacity: 0.5;
  background: var(--white);
  border: 0;
  transform: translate(0, -50%);
}

.slick-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 8px;
  width: 8px;
  border-top: 3px solid var(--blue);
  border-right: 3px solid var(--blue);
}

.slick-arrow:hover {
  cursor: pointer;
  transform: translate(0, -50%) scale(1.2);
}

.slick-prev {
  left: 0;
}

.slick-prev::after {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.slick-next {
  right: 0;
}

.slick-next::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.slick-dots {
  position: absolute;
  bottom: 30px;
  right: 20px;
  width: 100%;
  max-width: 70px;
  display: flex;
  justify-content: space-between;
}

.slick-dots li {
  display: inline-block;
}

.slick-dots button {
  cursor: pointer;
  color: transparent;
  outline: none;
  width: 10px;
  height: 10px;
  display: block;
  border: 0;
  border-radius: 5px;
  background: var(--white);
}

.slick-dots .slick-active button {
  background: var(--blue);
}

@media screen and (max-width: 768px) {

  .kv {
    margin-top: 70px;
  }

  .kv__slider-item {
    height: calc(100vh - 70px);
  }

  .kv__txt1,
  .kv__txt2,
  .kv__txt3,
  .kv__txt4 {
    top: 10%;
    left: 50%;
    width: 90%;
    font-size: 15px;
    letter-spacing: 0.1em;
    transform: translate(-50%, 0);
  }

  .kv__txt3 {
    top: 15%;
  }

  .kv__txt4 {
    top: 65%;
  }

  .kv__txt-blue {
    padding: 10px 5px;
    background: var(--blue);
  }

  .slick-arrow {
    width: 40px;
    height: 40px;
  }
}


/* top_intr */

.top__intr {
  position: relative;
}

.top__intr__content {
  margin: 100px auto;
  text-align: center;
}

.top__intr__content-ttl {
  color: var(--blue);
  font-size: clamp(1.438rem, 1.153rem + 1.21vw, 2.063rem);
  letter-spacing: 0.1em;
  line-height: 1.7;
}

.top__intr__content-message {
  margin: 50px auto;
  font-size: clamp(0.938rem, 0.881rem + 0.24vw, 1.063rem);
  letter-spacing: 0.18em;
  line-height: 2.6;
}

.top__intr__content-attention {
  color: var(--gray);
  font-size: 12px;
  letter-spacing: 0.03em;
}

.top__deco1 {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 10%;
  max-width: 150px;
  height: auto;
}

.top__deco2 {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 10%;
  max-width: 170px;
  height: auto;
}

.top__intr-sp {
  display: none;
}

@media screen and (max-width: 768px) {

  .top__intr-pc {
    display: none;
  }

  .top__intr-sp {
    display: flex;
    justify-content: center;
  }

  .top__intr__content {
    margin: 50px auto;
    flex-direction: column;
    align-items: center;
  }

  .top__intr__content-ttl {
    line-height: 1.8;
  }

  .top__intr__content-message {
    margin: 20px auto;
    letter-spacing: 0.08em;
    line-height: 2.4;
  }

  .top__intr__content-attention {
    width: 80%;
    letter-spacing: 0;
  }

  .top__deco3 {
    margin: 0 15px 50px;
    width: 120px;
    height: auto;
  }

  .top__deco4 {
    margin: 0 15px 50px;
    width: 130px;
    height: auto;
  }
}


/* top_service */

.top__service {
  margin-bottom: 200px;
  display: flex;
  justify-content: center;
}

.top__service__contents {
  position: relative;
  width: 100%;
  max-width: var(--lg-width);
}

.top__service__content1 {
  width: 100%;
  max-width: 683px;
  height: 100vh;
  max-height: 460px;
  background-image: url(../img/top_service.jpg);
  background-size: 683px 460px;
}

.top__service__content2 {
  position: absolute;
  bottom: -100px;
  right: 0;
  max-width: 683px;
  height: 100vh;
  max-height: 460px;
  background: var(--blue);
  color: var(--white);
  border-radius: 10px;
}

.top__service__content-ttl {
  margin: 10% 10% 0 10%;
  font-size: clamp(1.375rem, 1.148rem + 0.97vw, 1.875rem);
  letter-spacing: 0.1em;
  line-height: 1.7;
}

.top__service__content-message {
  margin: 3% 10% 5% 10%;
  letter-spacing: 0.1em;
  line-height: 2.2;
}

.top__service__content-btn {
  position: relative;
  margin: 10% 0 0 10%;
  padding-bottom: 7px;
  font-size: clamp(1rem, 0.886rem + 0.48vw, 1.25rem);
  letter-spacing: 0.05em;
  border-bottom: 1px solid white;
}

.top__service__content-btn::after {
  content: "→";
  position: absolute;
  top: -5px;
  right: -60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--blue);
  font-size: clamp(1.25rem, 1.136rem + 0.48vw, 1.5rem);
  width: 45px;
  height: 45px;
  background: var(--white);
  border-radius: 30px;
}

.top__service-sp {
  display: none;
}

@media screen and (max-width: 768px) {

  .top__service {
    margin-bottom: 0px;
  }

  .top__service-pc {
    display: none;
  }

  .top__service-sp {
    display: block;
  }

  .top__service__content1 {
    height: 40vh;
    background-image: url(../img/top_service.jpg);
    background-size: cover;
  }

  .top__service__content2 {
    position: static;
    padding-top: 5%;
    border-radius: 0px;
  }

  .top__service__content-ttl {
    line-height: 1.8;
  }

  .top__service__content-message {
    margin: 5% 10% 5% 10%;
    letter-spacing: 0.1em;
    line-height: 2.2;
  }

  .top__service__content-btn::after {
    width: 37px;
    height: 37px;
  }
}


/* top__flow */

.top__flow {
  padding: 4% 0;
  background: var(--lightcyan);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top__flow-ttl {
  margin-bottom: 3%;
  color: var(--blue);
  font-size: clamp(1.625rem, 1.369rem + 1.09vw, 2.188rem);
  letter-spacing: 0.1em;
}

.top__flow__contents {
  position: relative;
  width: 100%;
  max-width: var(--lg-width);
  display: flex;
  justify-content: space-between;
}

.top__flow__contents::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 7px;
  background: var(--blue);
  transform: translate(-50%, -50%);
}

.top__flow__content1,
.top__flow__content2,
.top__flow__content3,
.top__flow__content4 {
  position: relative;
  padding: 5% 0;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--blue);
  background: var(--white);
  border-radius: 10px;
  border: 2px solid #245BB4;
  box-shadow: 2px 3px 3px #00000029;
}

.top__flow__content1::before,
.top__flow__content2::before,
.top__flow__content3::before,
.top__flow__content4::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--blue);
  color: var(--white);
  font-size: 32px;
  border-radius: 30px;
  transform: translate(-50%, -50%);
}

.top__flow__content1::before {
  content: "1";
}

.top__flow__content2::before {
  content: "2";
}

.top__flow__content3::before {
  content: "3";
}

.top__flow__content4::before {
  content: "4";
}

.top__flow__content-img {
  width: auto;
  height: auto;
  max-height: 135px;
}

.top__flow__content-ttl {
  margin: 5% 0;
  text-align: center;
  font-size: 20px;
  line-height: 1.45;
}

.top__flow__content-txt {
  margin: 0 10%;
  font-size: 15px;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {

  .top__flow {
    padding: 20% 0;
  }

  .top__flow__contents {
    flex-direction: column;
    align-items: center;
  }

  .top__flow__contents::before {
    width: 0;
    height: 0;
  }

  .top__flow__content1,
  .top__flow__content2,
  .top__flow__content3,
  .top__flow__content4 {
    margin-top: 10%;
    padding: 15% 0 10%;
    max-width: 80%;
  }
}


/* top__faq */

.top__faq {
  padding: 4% 0;
}

.top__faq-ttl {
  margin-bottom: 3%;
  color: var(--blue);
  text-align: center;
  font-size: clamp(1.625rem, 1.369rem + 1.09vw, 2.188rem);
  letter-spacing: 0.1em;
}

.top__faq-list {
  margin: 0 auto 1%;
  width: 100%;
  max-width: var(--md-width);
  color: var(--blue);
  background: var(--lightcyan);
  border-radius: 10px;
}

.top__faq-question {
  padding: 2%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top__faq-q-icon {
  font-size: clamp(1.25rem, 1.165rem + 0.36vw, 1.438rem);
}

.top__faq-question-txt {
  width: 90%;
  font-size: clamp(1rem, 0.886rem + 0.48vw, 1.25rem);
  letter-spacing: 0.1em;
}

.top__faq-open {
  position: relative;
  width: 25px;
  height: 25px;
}

.top__faq-open::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 25px;
  height: 2px;
  background: var(--blue);
  transform: translate(0%, -50%);
}

.top__faq-open::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  height: 25px;
  background: var(--blue);
  transform: translate(-50%, 0%);
}

.top__faq-open.close::after {
  animation-name: close;
  animation-fill-mode: forwards;
}

@keyframes close {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.top__faq-answer {
  display: none;
}

.top__faq-answer-box {
  padding: 0 2% 2% 2%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top__faq-a-icon {
  opacity: 0;
  font-size: clamp(1.25rem, 1.165rem + 0.36vw, 1.438rem);
}

.top__faq-answer-txt {
  width: 90%;
  color: var(--black4A);
  font-size: clamp(0.938rem, 0.881rem + 0.24vw, 1.063rem);
  line-height: 1.9;
}

.top__faq-open1 {
  width: 25px;
  height: 25px;
}

@media screen and (max-width: 768px) {

  .top__faq {
    padding: 20% 0;
  }

  .top__faq-ttl {
    margin-bottom: 10%;
  }

  .top__faq-list {
    margin: 0 auto 5%;
    width: 80%;
  }

  .top__faq-question {
    padding: 5%;
  }

  .top__faq-question-txt {
    width: 75%;
    line-height: 1.7;
  }

  .top__faq-open {
    width: 20px;
    height: 20px;
  }

  .top__faq-open::before {
    width: 20px;
  }

  .top__faq-open::after {
    height: 20px;
  }

  .top__faq-answer-box {
    padding: 0 5% 5% 5%;
  }

  .top__faq-answer-txt {
    width: 75%;
    line-height: 2.0;
  }

  .top__faq-open1 {
    width: 20px;
    height: 20px;
  }
}


/* page */

.page__intro {
  margin-top: 80px;
}

.page__intro-ttl-en {
  margin: 10% auto 1%;
  max-width: var(--lg-width);
  width: 90%;
  color: var(--blue);
  font-size: 14px;
  letter-spacing: 0.2em;
}

.page__intro-ttl {
  margin: 0 auto;
  max-width: var(--lg-width);
  width: 90%;
  color: var(--blue);
  font-size: clamp(1.375rem, 1.148rem + 0.97vw, 1.875rem);
  letter-spacing: 0.15em;
}

.page__intro-deco {
  margin: 2% auto;
  max-width: var(--lg-width);
  width: 90%;
  height: 1px;
  background: var(--blue);
}

.page__intro-message {
  position: relative;
  margin: 0 auto;
  max-width: var(--lg-width);
  width: 90%;
  color: var(--blue);
  font-size: clamp(1.188rem, 0.79rem + 1.7vw, 2.063rem);
  letter-spacing: 0.1em;
  line-height: 1.7;
}

.page__intro-message-deco::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 487px;
  height: 100vh;
  max-height: 482px;
  background: url(../img/nihonium.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.page__intro-txt {
  margin: 2% auto 4%;
  max-width: var(--lg-width);
  width: 90%;
  color: var(--black1D);
  font-size: clamp(0.938rem, 0.909rem + 0.12vw, 1rem);
  letter-spacing: 0.18em;
  line-height: 2.75;
}

.page-sp {
  display: none;
}

@media screen and (max-width: 768px) {

  .page-pc {
    display: none;
  }

  .page-sp {
    display: block;
  }

  .page__intro {
    margin-top: 70px;
  }

  .page__intro-ttl-en {
    margin: 30% auto 2%;
    width: var(--sm-width);
  }

  .page__intro-ttl {
    width: var(--sm-width);
  }

  .page__intro-deco {
    margin: 8% auto;
    width: var(--sm-width);
  }

  .page__intro-message {
    width: var(--sm-width);
    line-height: 1.8;
  }

  .page__intro-message-deco::after {
    top: 50%;
    left: 0%;
    transform: translate(-10%, 0%);
  }

  .page__intro-txt {
    margin: 5% auto 15%;
    width: var(--sm-width);
    letter-spacing: 0;
    line-height: 2.33;
  }
}

/* about */

.about__kv {
  width: 100%;
  height: auto;
}

.about-ttl {
  margin: 4% auto 2%;
  max-width: var(--lg-width);
  width: 90%;
  color: var(--blue);
  font-size: clamp(1.25rem, 1.023rem + 0.97vw, 1.75rem);
  letter-spacing: 0.1em;
}

.about__table {
  margin: 0 auto;
  max-width: var(--lg-width);
  width: 90%;
  color: var(--black1D);
  font-size: clamp(0.938rem, 0.881rem + 0.24vw, 1.063rem);
  letter-spacing: 0.1em;
}

.about__table-tr {
  border-top: 1px solid #7CB8FF;
  border-bottom: 1px solid #7CB8FF;
}

.about__table-td {
  position: relative;
  padding: 3% 0 3% 9%;
  width: 80%;
}

.about__table-td::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 36px;
  background: #7CB8FF;
  transform: translate(0%, -50%);
}

.about__profile {
  margin: 5% auto;
  max-width: var(--lg-width);
  width: 90%;
  display: flex;
  align-items: center;
}

.about__profile-img {
  width: 180px;
  height: auto;
}

.about__contents {
  margin-left: 5%;
  width: 50%;
}

.about__name {
  margin-bottom: 3%;
  display: flex;
  align-items: center;
  color: var(--black1D);
  font-size: clamp(0.938rem, 0.881rem + 0.24vw, 1.063rem);
  letter-spacing: 0.1em;
}

.about__name-deco {
  font-size: clamp(1.5rem, 1.386rem + 0.48vw, 1.75rem);
}

.about__profile-txt {
  padding-top: 3%;
  line-height: 2.0;
  border-top: 1px solid #9DCAFE;
}

.about-sp {
  display: none;
}

@media screen and (max-width: 768px) {

  .about-pc {
    display: none;
  }

  .about-sp {
    display: table;
  }

  .about-ttl {
    margin: 15% auto 7%;
    width: var(--sm-width);
  }

  .about__table {
    width: var(--sm-width);
  }

  .about__table-td {
    padding: 8% 0;
    width: 100%;
  }

  .about__table-td::before {
    display: none;
  }

  .about__profile {
    margin: 15% auto;
    width: var(--sm-width);
    flex-direction: column;
  }

  .about__contents {
    margin-left: 0;
    width: 100%;
  }

  .about__name {
    margin-top: 15%;
    margin-bottom: 5%;
  }

  .about__profile-txt {
    padding-top: 5%;
  }
}

/* support */

.support__contents {
  margin: 0 auto 20px;
  width: var(--md-width);
  display: flex;
  justify-content: space-between;
}

.support__content {
  width: 33%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--lightcyan);
  border-radius: 20px;
}

.support__content-img {
  margin: 15% auto 10%;
  width: auto;
  height: 100px;
}

.support__content-ttl {
  margin-bottom: 5%;
  color: var(--blue);
  text-align: center;
  font-size: clamp(1.375rem, 1.205rem + 0.73vw, 1.75rem);
  letter-spacing: 0.1em;
}

.support__content-txt {
  margin: 0 10% 10%;
  color: #505050;
  line-height: 2.0;
}

.support__box1 {
  margin: 7% auto 0;
  width: 100%;
  max-width: 1500px;
  display: flex;
}

.support__box2 {
  margin: 4% auto 10%;
  width: 100%;
  max-width: 1500px;
  display: flex;
}

.support__box-img {
  width: 50%;
  height: auto;
}

.support__box-content {
  width: 50%;
  background: var(--blue);
  color: var(--white);
}

.support__box-message {
  margin: 10% 10% 0;
  font-size: clamp(1.375rem, 1.205rem + 0.73vw, 1.75rem);
  letter-spacing: 0.1em;
  line-height: 1.9;
}

.support__box-txt {
  margin: 2% 10% 0;
  letter-spacing: 0.08em;
  line-height: 2.3;
}

.support-sp {
  display: none;
}

@media screen and (max-width: 768px) {

  .support-pc {
    display: none;
  }

  .support-sp {
    display: block;
  }

  .support__contents {
    margin: 0 auto;
    width: var(--sm-width);
    flex-direction: column;
  }

  .support__content {
    margin-bottom: 20px;
    width: 100%;
  }

  .support__box1 {
    margin: 10% auto 0;
    flex-direction: column;
  }

  .support__box2 {
    margin: 10% auto 15%;
    flex-direction: column-reverse;
  }

  .support__box-img {
    width: 100%;
  }

  .support__box-content {
    width: 100%;
  }

  .support__box-message {
    line-height: 1.8;
  }

  .support__box-txt {
    margin: 5% 10% 0;
    padding-bottom: 10%;
    letter-spacing: 0.1em;
    line-height: 2.2;
  }
}

/* life */

.life__intro {
  margin: 0 auto 1%;
  padding-bottom: 15px;
  max-width: var(--lg-width);
  width: 90%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #245BB4;
}

.life__intro-img {
  margin-right: 10px;
  width: 36px;
  height: auto;
}

.life__intro-ttl {
  color: var(--blue);
  font-size: clamp(1.25rem, 1.08rem + 0.73vw, 1.625rem);
  letter-spacing: 0.1em;
}

.life__table {
  margin: 0 auto;
  max-width: var(--lg-width);
  width: 90%;
  color: var(--blue);
  font-size: clamp(0.938rem, 0.881rem + 0.24vw, 1.063rem);
  letter-spacing: 0.1em;
}

.life__table-tr td {
  border: 1px solid #245BB4;
}

.life__table-time {
  text-align: center;
  background: var(--lightcyan);
}

.life__table-td {
  padding: 2% 4%;
  width: 85%;
}

.life__contents {
  margin: 4% auto;
  max-width: var(--lg-width);
  width: 90%;
  display: flex;
}

.life__content {
  width: 33.3%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--lightcyan);
  border: 1px solid #245BB4;
}

.life__content-img {
  margin: 10% 0 6%;
  width: auto;
  height: 155px;
}

.life__content-message {
  margin-bottom: 5%;
  color: var(--blue);
  font-size: clamp(1.125rem, 1.068rem + 0.24vw, 1.25rem);
  letter-spacing: 0.1em;
  line-height: 1.7;
  text-align: center;
}

.life__content-txt {
  padding: 5% 0 10%;
  width: 75%;
  font-size: clamp(0.938rem, 0.909rem + 0.12vw, 1rem);
  letter-spacing: 0.05em;
  line-height: 2.1;
  border-top: 1px solid #245BB4;
}

.life-sp {
  display: none;
}

@media screen and (max-width: 768px) {

  .life-pc {
    display: none;
  }

  .life-sp {
    display: flex;
  }

  .life__intro {
    margin: 0 auto;
    padding-bottom: 0;
    width: var(--sm-width);
    border: 0;
  }

  .life__intro-deco {
    margin: 5% auto 8%;
    width: var(--sm-width);
    height: 1px;
    background: var(--blue);
  }

  .life__intro-img {
    width: 26px;
  }

  .life__table {
    width: var(--sm-width);
  }

  .life__table-td {
    padding: 5%;
    width: 70%;
  }

  .life__contents {
    margin: 15% auto 20%;
    width: var(--sm-width);
    flex-direction: column;
  }

  .life__content {
    width: 100%;
  }

  .life__content-txt {
    padding: 5% 0 10%;
    width: 85%;
  }
}

/* contact */

.contact__form {
  margin-top: 5%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--lightcyan);
  border-radius: 80px 80px 0 0;
}

.contact__form-ttl {
  margin: 5% 0 1%;
  padding-bottom: 10px;
  width: 90%;
  max-width: 870px;
  color: var(--blue);
  font-size: clamp(1.125rem, 0.869rem + 1.09vw, 1.688rem);
  letter-spacing: 0.1em;
  border-bottom: 1px solid #245BB4;
}

.contact__form-content {
  padding: 1% 0;
  width: 90%;
  max-width: 870px;
  display: flex;
  color: var(--black1D);
  background-image: repeating-linear-gradient(90deg, #6c6c6c, #6c6c6c 4px, transparent 4px, transparent 8px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}

.contact__form-label {
  width: 25%;
  display: inline-block;
  font-size: clamp(1rem, 0.943rem + 0.24vw, 1.125rem);
  letter-spacing: 0.1em;
}

.contact__form-input {
  padding: 1%;
  width: 40%;
  border: 1px solid #BEBEBE;
  border-radius: 5px;
}

.contact__form-content-box {
  width: 40%;
}

.contact__form-radio {
  margin: 0 10% 0 2%;
  font-size: clamp(1rem, 0.943rem + 0.24vw, 1.125rem);
  letter-spacing: 0.1em;
}

.contact__form-txt {
  padding: 1%;
  width: 72%;
  border: 1px solid #BEBEBE;
  border-radius: 5px;
}

.contact__form-privacy {
  font-size: clamp(0.875rem, 0.847rem + 0.12vw, 0.938rem);
  letter-spacing: 0.1em;
  line-height: 2.1;
}

.contact__form-link {
  color: revert;
  text-decoration: underline;
}

.contact__form-accept {
  margin: 1% 0;
  width: 90%;
  max-width: 870px;
  display: flex;
}

.contact__form-checkbox {
  height: 13px;
  transform: translate(5px, 10px) scale(2.0);
}

.contact__form-checkbox-txt {
  margin-left: 25px;
  font-size: clamp(0.875rem, 0.847rem + 0.12vw, 0.938rem);
  letter-spacing: 0.1em;
  line-height: 2.1;
}

.contact__form-submit {
  margin: 1% 0 5%;
  padding: 20px 0;
  width: 90%;
  max-width: 870px;
  color: var(--white);
  font-size: clamp(1rem, 0.943rem + 0.24vw, 1.125rem);
  letter-spacing: 0.1em;
  background: var(--blue);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}

.contact-sp {
  display: none;
}

@media screen and (max-width: 768px) {

  .contact-pc {
    display: none;
  }

  .contact-sp {
    display: block;
  }

  .contact__form {
    margin-top: 10%;
    border-radius: 40px 40px 0 0;
  }

  .contact__form-ttl {
    margin: 20% 0 10%;
    padding-bottom: 10px;
    max-width: var(--sm-width);
  }

  .contact__form-content {
    padding: 5% 0;
    max-width: var(--sm-width);
    flex-direction: column;
  }

  .contact__form-label {
    margin-bottom: 4%;
    width: 100%;
  }

  .contact__form-input {
    padding: 2%;
    width: 100%;
  }

  .contact__form-content-box {
    margin: 1% 0;
    width: 100%;
  }

  .contact__form-radio {
    width: 100%;
  }

  .contact__form-txt {
    padding: 2%;
    width: 100%;
  }

  .contact__form-accept {
    margin: 5% 0 0;
    max-width: var(--sm-width);
  }

  .contact__form-submit {
    margin: 10% 0 20%;
    max-width: var(--sm-width);
  }
}

/* thanks */

.thanks__magin {
  padding-top: 15%;
}

@media screen and (max-width: 768px) {

  .thanks__magin {
    padding-top: 50%;
  }
}

/* transaction */

.transaction__table {
  margin: 5% auto;
  max-width: var(--lg-width);
  width: 90%;
  color: var(--black1D);
  font-size: clamp(0.938rem, 0.881rem + 0.24vw, 1.063rem);
  letter-spacing: 0.1em;
}

.transaction__table-tr {
  border-bottom: 1px solid var(--black1D);
}

.transaction__table-td {
  padding: 3% 0 3% 9%;
  width: 80%;
}

@media screen and (max-width: 768px) {

  .transaction__table {
    margin: 15% auto;
    width: var(--sm-width);
  }

  .transaction__table-td {
    padding: 8% 0;
    width: 100%;
  }
}

/* フッター */

.footer {
  position: relative;
  z-index: var(--nomal-z-index);
  padding: 0 0 5%;
  color: var(--white);
  background: var(--blue);
}

.footer::before {
  content: "";
  position: absolute;
  z-index: var(--under-z-index);
  top: 0;
  left: 0;
  width: 100%;
  height: 25%;
  background: var(--white);
}

.footer-contact::before {
  content: "";
  position: absolute;
  z-index: var(--under-z-index);
  top: 0;
  left: 0;
  width: 100%;
  height: 25%;
  background: var(--lightcyan);
}

.footer__contact {
  margin: 0 auto;
  width: 100%;
  max-width: var(--lg-width);
  width: 90%;
  color: var(--blue);
  text-align: center;
  background: var(--white);
  border: 3px solid var(--blue);
  border-radius: 30px;
}

.footer__contact-ttl {
  margin-top: 2%;
  font-size: clamp(1.313rem, 0.915rem + 1.7vw, 2.188rem);
  letter-spacing: 0.05em;
}

.footer__contact-deco1 {
  margin: 2% auto;
  width: 204px;
  height: 1px;
  background: var(--blue);
}

.footer__contact-txt {
  font-size: clamp(0.938rem, 0.852rem + 0.36vw, 1.125rem);
  letter-spacing: 0.05em;
}

.footer__contact-box {
  margin: 4% auto;
  width: 85%;
  display: flex;
  justify-content: space-around;
}

.footer__contact-content {
  padding: 4% 0;
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 10px;
}

.footer__contact-deco2 {
  width: 38px;
  height: auto;
}

.footer__contact-deco3 {
  width: 39px;
  height: auto;
}

.footer__contact-box-txt {
  margin-left: 5%;
  font-size: clamp(1rem, 0.716rem + 1.21vw, 1.625rem);
}

.footer-ttl {
  margin: 3% auto 0;
  width: 100%;
  max-width: var(--lg-width);
  width: 90%;
  font-size: clamp(1.125rem, 1.068rem + 0.24vw, 1.25rem);
}

.footer-deco1 {
  margin: 1% auto;
  width: 100%;
  max-width: var(--lg-width);
  width: 90%;
  height: 1px;
  background: var(--white);
}

.footer__nav {
  margin: 0 auto;
  width: 100%;
  max-width: var(--lg-width);
  width: 90%;
  display: flex;
}

.footer__nav-list {
  margin-right: 50px;
  font-size: 15px;
}

.footer__contents {
  margin: 2% auto 0;
  width: 100%;
  max-width: var(--lg-width);
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer__c {
  font-size: clamp(0.75rem, 0.722rem + 0.12vw, 0.813rem);
}

.footer__content {
  display: flex;
}

.footer__content-img {
  margin-left: 15px;
  width: 48px;
  height: auto;
}

.footer-sp {
  display: none;
}

@media screen and (max-width: 768px) {

  .footer-pc {
    display: none;
  }

  .footer-sp {
    display: block;
  }

  .footer__contact {
    width: 80%;
    border-radius: 15px;
  }

  .footer__contact-ttl {
    margin-top: 10%;
    letter-spacing: 0;
    line-height: 1.7;
  }

  .footer__contact-deco1 {
    margin: 5% auto;
    width: 100px;
  }

  .footer__contact-txt {
    margin: 0 auto;
    width: 85%;
    letter-spacing: 0;
    line-height: 1.8;
  }

  .footer__contact-box {
    margin-bottom: 10%;
    flex-direction: column;
  }

  .footer__contact-content {
    margin-top: 5%;
    padding: 10% 0;
    width: 100%;
  }

  .footer__contact-deco2 {
    width: 26px;
  }

  .footer__contact-deco3 {
    width: 24px;
  }

  .footer-ttl {
    margin: 8% auto 0;
    width: 80%;
  }

  .footer-deco1 {
    margin: 4% auto 6%;
    width: 80%;
  }

  .footer__nav {
    margin: 0 auto;
    width: 80%;
    flex-direction: column;
  }

  .footer__nav-list {
    margin-right: 0;
    margin-bottom: 5%;
  }

  .footer__contents {
    margin: 10% auto;
    width: 80%;
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .footer__content {
    margin-bottom: 10%;
  }

  .footer__content-img {
    margin-left: 0;
    margin-right: 10%;
  }
}