@charset "UTF-8";

:root {
  --c-white: #ffffff;
  --c-black: #14100b;
  --c-blue: #0d6fb8;
  --c-skyblue: #55a3e6;
  --c-pink: #fa99ce;
  --c-yellow: #f1c848;
  --c-cyan: #05b1eb;
  --c-gray: #737373;
  --f-sans: Hiragino Kaku Gothic ProN, sans-serif;
  --f-maru: ヒラギノ丸ゴ Pro W4, ヒラギノ丸ゴ Pro, Hiragino Maru Gothic Pro, ヒラギノ角ゴ Pro W3, Hiragino Kaku Gothic Pro, HG丸ｺﾞｼｯｸM-PRO, HGMaruGothicMPRO;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  color: var(--c-black);
  font-size: 1.6rem;
  font-family: var(--f-sans);
  font-feature-settings: "palt";
}

@media screen and (max-width: 750px) {
  html {
    font-size: calc(100vw * 5 / 375);
  }

  body {
    font-size: 2.8rem;
  }
}

.sec {
  padding-block: 10rem;
}

@media screen and (max-width: 750px) {
  .sec {
    padding-block: 5rem;
  }
}

.container {
  max-width: 98rem;
  padding-inline: 1.5rem;
  margin-inline: auto;
}

.container.-sm {
  max-width: 58rem;
}

@media screen and (max-width: 750px) {
  .container {
    padding-inline: 3.5rem;
  }

  .container.-sm {
    max-width: 62rem;
  }
}

.ttl {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  font-size: 4rem;
}

.ttl::before {
  color: var(--c-cyan);
  content: attr(data-txt);
  text-transform: uppercase;
  letter-spacing: 0.31em;
  font-weight: 300;
  font-size: 1.8rem;
}

@media screen and (max-width: 750px) {
  .ttl {
    margin-bottom: 4rem;
    font-size: 4.2rem;
  }

  .ttl::before {
    font-size: 2.8rem;
  }
}

.btn-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  min-height: 9rem;
  max-width: 53rem;
  width: 100%;
  border: 0.3rem solid var(--c-pink);
  border-radius: 1.3rem;
  background: var(--c-pink);
  color: var(--c-white);
  text-decoration: none;
  letter-spacing: 0.17em;
  font-weight: 600;
  font-size: 1.8rem;
  cursor: pointer;
}

.btn::before {
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  content: "";
  transform: skewX(-25deg);
}

.btn::after {
  position: absolute;
  top: 50%;
  right: 3rem;
  display: inline-block;
  width: 3.7rem;
  height: 3.7rem;
  background: url(../img/icon_btn.svg) no-repeat center/contain;
  content: "";
  vertical-align: middle;
  transform: translateY(-50%);
}

@media (hover: hover) {
  .btn:hover::before {
    animation: shine 0.7s;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.btn.-white {
  background-color: var(--c-white);
  color: var(--c-pink);
  transition: all 0.3s ease;
}

.btn.-white::after {
  background: url(../img/icon_btn_pink.svg) no-repeat center/contain;
}

@media (hover: hover) {
  .btn.-white:hover {
    border: 0.3rem solid var(--c-pink);
    background: var(--c-pink);
    color: var(--c-white);
  }

  .btn.-white:hover::after {
    background: url(../img/icon_btn.svg) no-repeat center/contain;
  }
}

@media screen and (max-width: 750px) {
  .btn {
    font-size: 2.8rem;
  }
}

.sp {
  display: none !important;
}

@media screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}

.mv {
  padding-top: 14rem;
  padding-bottom: 8rem;
  background: linear-gradient(#ffe0f2 0%, #f9e3f4 18.91%, #e8eefa 43.89%, #e1f3fd 52.51%, #fffee8 100%);
  color: var(--c-blue);
  font-weight: 700;
  font-family: var(--f-maru);
}

.mv_inner {
  position: relative;
  max-width: 97.5rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.mv_inner::before {
  position: absolute;
  top: -15%;
  left: 50%;
  max-width: calc(100vw - 2rem);
  width: calc(100% + 12rem);
  height: 100%;
  border: 0.5rem solid var(--c-white);
  border-radius: 4rem;
  content: "";
  transform: translateX(-50%);
}

.mv_ttl {
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
  letter-spacing: 0.19em;
  font-size: min(calc(100vw * 65 / 1024), 6.5rem);
  line-height: calc(93 / 65);
}

.mv_content {
  position: relative;
  display: grid;
  gap: 0 1rem;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(2, auto);
}

.mv_content_txt {
  z-index: 1;
  letter-spacing: 0.23em;
  font-size: min(calc(100vw * 29 / 1024), 2.9rem);
  line-height: calc(56 / 29);
  grid-area: 1 / 1 / 2 / 2;
}

.mv_content_txt>span {
  position: relative;
}

.mv_content_txt>span::before {
  position: absolute;
  bottom: calc(100% + 1rem);
  left: 50%;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 100%;
  background: var(--c-cyan);
  content: "";
  transform: translateX(-50%);
}

.mv_content-box {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  max-width: 49.6rem;
  max-height: 20rem;
  border: 1px solid var(--c-pink);
  border-radius: 1.5rem;
  background: var(--c-white);
  grid-area: 2 / 1 / 3 / 2;
  gap: 1.5rem 1rem;
}

.mv_content-box .mv_content-box_pin {
  position: absolute;
}

.mv_content-box .mv_content-box_pin:nth-of-type(1) {
  top: 1rem;
  left: 1rem;
}

.mv_content-box .mv_content-box_pin:nth-of-type(2) {
  top: 1rem;
  right: 1rem;
}

.mv_content-box .mv_content-box_pin:nth-of-type(3) {
  bottom: 1rem;
  left: 1rem;
}

.mv_content-box .mv_content-box_pin:nth-of-type(4) {
  right: 1rem;
  bottom: 1rem;
}

.mv_content-box-img {
  max-width: min(calc(100vw * 143 / 1024), 14.3rem);
}

.mv_content_box_txt {
  color: var(--c-pink);
  letter-spacing: 0.23em;
  font-size: 2.3rem;
}

.mv_content_box_subtxt {
  letter-spacing: 0.23em;
  font-size: 1.9rem;
}

.mv_content_box_subtxt>span {
  display: block;
}

.mv_content_box_txt,
.mv_content_box_subtxt>span {
  position: relative;
  padding-block: 0.5rem;
}

.mv_content_box_txt::after,
.mv_content_box_subtxt>span::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--c-blue);
  content: "";
}

.mv_content-imgs {
  position: relative;
  grid-area: 1 / 2 / 3 / 3;
}

.mv_content-imgs::before {
  position: absolute;
  top: -11%;
  left: -14%;
  display: inline-block;
  width: min(calc(100vw * 204 / 1024), 20.4rem);
  height: min(calc(100vw * 199 / 1024), 19.9rem);
  background: url(../img/img_mv_icon.png) no-repeat center/contain;
  content: "";
  vertical-align: middle;
}

.mv_content-imgs>img {
  position: relative;
  z-index: 1;
  max-width: min(calc(100vw * 375 / 1024), 37.5rem);
}

@media (750px <=width <=1023px) {
  .mv_inner {
    padding-inline: 4rem;
  }

  .mv_content_txt {
    white-space: nowrap;
  }

  .mv_content-box {
    max-height: unset;
  }

  .mv_content_box_txt {
    font-size: 2rem;
  }

  .mv_content_box_subtxt {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 750px) {
  .mv {
    padding-top: 12rem;
    padding-bottom: 8rem;
    background: linear-gradient(#ffe0f2 0%, #f9e3f4 20.12%, #e8eefa 46.72%, #e1f3fd 55.89%, #fffee8 100%);
  }

  .mv_inner {
    max-width: 100%;
    padding-inline: 7.5rem;
  }

  .mv_inner::before {
    top: -8%;
    width: calc(100% + -8rem);
    height: 59rem;
    border: 0.3rem solid var(--c-white);
    border-radius: 2.5rem;
  }

  .mv_ttl {
    letter-spacing: 0.15em;
    font-size: 5.2rem;
    line-height: calc(83 / 52);
  }

  .mv_content {
    gap: 5rem 0;
  }

  .mv_content_txt {
    letter-spacing: 0.29em;
    font-size: 3.4rem;
    line-height: calc(73 / 34);
    grid-area: 1 / 1 / 2 / 3;
  }

  .mv_content_txt>span::before {
    width: 0.8rem;
    height: 0.8rem;
  }

  .mv_content-box {
    flex-direction: column;
    margin-bottom: 6rem;
    padding: 3rem 3rem 4.5rem;
    max-width: 26.6rem;
    max-height: unset;
    column-gap: 1rem;
    grid-area: 2 / 1 / 3 / 2;
  }

  .mv_content-box-img {
    max-width: 11rem;
  }

  .mv_content_box_detail {
    text-align: center;
  }

  .mv_content_box_txt {
    letter-spacing: 0.19em;
    font-size: 3.2rem;
    line-height: calc(44 / 32);
  }

  .mv_content_box_subtxt {
    letter-spacing: 0.19em;
    font-size: 2.3rem;
  }

  .mv_content_box_txt,
  .mv_content_box_subtxt>span {
    padding-block: 0.65rem;
  }

  .mv_content-imgs {
    display: flex;
    align-items: flex-end;
    grid-area: 2 / 2 / 3 / 3;
  }

  .mv_content-imgs::before {
    top: -26%;
    left: 28%;
    width: 23.1rem;
    height: 22.5rem;
  }

  .mv_content-imgs>img {
    max-width: 31.4rem;
  }
}

.vaccine {
  padding-top: 8rem;
  padding-bottom: 7.5rem;
}

.vaccine_txt {
  margin-bottom: 4rem;
  letter-spacing: 0.05em;
  font-weight: 300;
  line-height: calc(29 / 16);
}

.vaccine_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10.5rem;
  gap: 7rem min(calc(100vw * 90 / 1024), 9rem);
}

.vaccine_row_txt {
  width: 54%;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: calc(39 / 18);
}

.vaccine_row_img {
  position: relative;
  width: 46%;
}

.vaccine_row_img>img:nth-of-type(1) {
  width: 100%;
  height: auto;
  border-radius: 2rem;
  aspect-ratio: 396/205;
  object-fit: cover;
}

.vaccine_row_img>img:nth-of-type(2) {
  position: absolute;
  bottom: -5%;
  left: -13%;
  width: 8.7rem;
}

@media screen and (max-width: 750px) {
  .vaccine {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .vaccine_txt {
    font-size: 2.8rem;
    line-height: 1.7;
  }

  .vaccine_row {
    flex-direction: column;
    margin-bottom: 5rem;
  }

  .vaccine_row_txt {
    width: 100%;
    font-size: 2.8rem;
    line-height: 1.7;
  }

  .vaccine_row_img {
    padding-left: 7%;
    width: 84%;
  }

  .vaccine_row_img>img:nth-of-type(1) {
    aspect-ratio: 515/244;
  }

  .vaccine_row_img>img:nth-of-type(2) {
    bottom: 0;
    left: 2%;
    width: 9.5rem;
  }
}

.kinds {
  padding-top: 9rem;
  padding-bottom: 0;
  background: linear-gradient(#fff 0%, #fceef6 5.71%, #fbe2ef 12.84%, #fadbec 22.87%, #fadaeb 50.72%, #fadbec 77.78%, #fbe2ef 87.53%, #fceef6 94.45%, #fff 100%);
}

.kinds_ttl {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 4rem;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-size: 2.4rem;
}

.kinds_ttl small {
  font-size: 2rem;
}

.kinds_bg img {
  width: 100%;
}

.kinds_list {
  display: grid;
  margin-bottom: 10rem;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem min(calc(100vw * 40 / 1366), 4rem);
}

.kinds_item {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 4rem 1.5rem 2.5rem;
  border-radius: 4rem;
  background-color: var(--c-white);
  box-shadow: 0.3rem 0.3rem 6px rgba(250, 153, 206, 0.35);
}

.kinds_item_tag {
  position: absolute;
  top: -3%;
  right: -5%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12.5rem;
  height: 12.5rem;
  border-radius: 100%;
  background-color: var(--c-yellow);
  text-align: center;
  letter-spacing: 0.01em;
  font-weight: 600;
  line-height: calc(22 / 16);
}

.kinds_item_ttl {
  margin-bottom: 1rem;
  max-width: 33.9rem;
  text-align: center;
  letter-spacing: 0.01em;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: calc(32 / 24);
}

.kinds_item_img {
  margin-bottom: 2.5rem;
  max-width: 11.8rem;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}

.kinds_item_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.kinds_item_body {
  max-width: 33.9rem;
}

.kinds_item_txt {
  letter-spacing: 0.01em;
  font-weight: 300;
  line-height: calc(29 / 16);
}

@media (750px <=width <=1023px) {
  .kinds_item_tag {
    top: -15%;
    right: -1rem;
  }
}

@media screen and (max-width: 750px) {
  .kinds {
    padding-top: 5rem;
    background: linear-gradient(#fff 0%, #fceef6 5.71%, #fbe2ef 12.84%, #fadbec 22.87%, #fadaeb 50.72%, #fadbec 77.78%, #fbe2ef 87.53%, #fceef6 94.45%, #fff 100%);
  }

  .kinds_ttl {
    margin-bottom: 4rem;
    font-size: 4.2rem;
  }

  .kinds_ttl small {
    font-size: 2.8rem;
  }

  .kinds_list {
    margin-bottom: 8rem;
    grid-template-columns: unset;
  }

  .kinds_item {
    padding: 5rem 3.5rem 3rem;
  }

  .kinds_item_tag {
    top: -2.5rem;
    right: -2.5rem;
    width: 15rem;
    height: 15rem;
    font-size: 1.6rem;
    line-height: calc(22 / 16);
  }

  .kinds_item_tag {
    font-size: 2.5rem;
  }

  .kinds_item_ttl {
    max-width: 61rem;
    font-size: 3.5rem;
  }

  .kinds_item_img {
    margin-bottom: 3rem;
    max-width: 10.5rem;
  }

  .kinds_item_body {
    max-width: 61rem;
  }

  .kinds_item_txt {
    max-width: 61rem;
    letter-spacing: 0.01em;
    font-size: 2.8rem;
    line-height: 1.7;
  }
}

.about {
  padding-top: 10rem;
}

.about .ttl {
  margin-bottom: 3rem;
}

.about_list {
  display: grid;
  margin-bottom: 10rem;
  row-gap: 4.5rem;
}

.about_item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 5.5rem min(calc(100vw * 60 / 1366), 6rem);
  border-radius: 5rem;
  background: linear-gradient(90deg, #05b1eb 0%, #18afe9 3.07%, #67a7df 16.53%, #a6a1d8 28.49%, #d49dd3 38.53%, #f09acf 46.25%, #fa99ce 50.72%, #ed9acf 55.25%, #cc9ed3 63.58%, #95a3da 74.78%, #4baae3 88.26%, #05b1eb 100%);
  column-gap: min(calc(100vw * 50 / 1366), 5rem);
}

.about_item::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: calc(5rem - 2px);
  background-color: var(--c-white);
  content: "";
  transform: translate(-50%, -50%);
}

.about_item.-col {
  flex-direction: column;
}

.about_item>* {
  position: relative;
  z-index: 1;
}

.about_item_body>*+.about_item_ttl {
  margin-top: 5rem;
}

.about_item_body ol {
  padding-left: 2em;
  list-style-type: decimal;
}

.about_item_ttl {
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: calc(32 / 24);
}

.about_item_txt {
  letter-spacing: 0.05em;
  font-weight: 300;
  line-height: calc(30 / 16);
}

ul.about_item_txt {
  list-style: disc;
  padding-left: 1.2em;
}

.about_item_remarks {
  color: #808080;
}

.about_item_img {
  flex-shrink: 0;
}

@media screen and (max-width: 750px) {
  .about {
    padding-top: 5rem;
  }

  .about .ttl {
    margin-bottom: 4rem;
  }

  .about_list {
    margin-bottom: 5rem;
    row-gap: 2rem;
  }

  .about_item {
    align-items: center;
    flex-direction: column;
    padding: 5rem 3.5rem 3rem;
    border-radius: 5rem;
    column-gap: min(calc(100vw * 50 / 1366), 5rem);
  }

  .about_item_body>*+.about_item_ttl {
    margin-top: 4rem;
  }

  .about_item_ttl {
    font-size: 3.5rem;
  }

  .about_item_txt {
    font-size: 2.8rem;
    line-height: 1.7;
  }

  .about_item_img {
    max-width: 22rem;
  }
}

.step .ttl {
  margin-bottom: 6rem;
}

.step_list {
  position: relative;
  display: flex;
  margin-bottom: 4rem;
  gap: 1rem 1rem;
}

.step_list::before,
.step_list::after {
  position: absolute;
  z-index: 1;
  display: inline-block;
  content: "";
  vertical-align: middle;
}

.step_list::before {
  bottom: -7%;
  left: -3%;
  width: 7.8rem;
  height: 10.7rem;
  background: url(../img/img_step01.png) no-repeat center/contain;
}

.step_list::after {
  right: -4%;
  bottom: -18%;
  width: 12.5rem;
  height: 12.1rem;
  background: url(../img/img_step02.png) no-repeat center/contain;
}

.step_list .step_item {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  padding: 2.3rem 1.5rem;
  border: 0.3rem solid var(--c-cyan);
  border-radius: 1.7rem;
}

.step_list .step_item:not(:first-of-type)::before {
  position: absolute;
  top: 50%;
  left: -8%;
  display: inline-block;
  width: 3rem;
  height: 3rem;
  background: url(../img/icon_step_arrow.svg) no-repeat center/contain;
  content: "";
  vertical-align: middle;
  transform: translateY(-50%);
}

.step_item_txt {
  text-align: center;
  letter-spacing: 0.05em;
  line-height: calc(32 / 16);
}

.step_remarks {
  margin-bottom: 5rem;
  letter-spacing: 0.07em;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: calc(32 / 18);
}

.step_remarks>span {
  display: inline-flex;
  align-items: center;
  color: var(--c-pink);
  vertical-align: middle;
  padding-inline: 0.5rem;
}

.step_remarks>span::before {
  display: inline-block;
  content: "";
  vertical-align: middle;
}

.step_remarks>span.tel::before {
  width: 3rem;
  height: 4.6rem;
  background: url(../img/icon_step_tel.svg) no-repeat center/contain;
}

.step_remarks>span.mail::before {
  width: 5.2rem;
  height: 3.1rem;
  background: url(../img/icon_step_mail.svg) no-repeat center/contain;
}

.step_box {
  padding: 2.5rem 5rem;
  border-top: 1px solid var(--c-black);
  border-bottom: 1px solid var(--c-black);
}

.step_box_ttl {
  margin-bottom: 3rem;
  color: var(--c-cyan);
  letter-spacing: 0.05em;
  font-weight: 600;
  font-size: 2.4rem;
}

.step_box_item {
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  line-height: calc(28 / 16);
}

.step_box_item::before {
  content: "・";
}

@media (max-width: 102.3rem) {
  .step_list {
    flex-direction: column;
    padding-inline: 8rem;
  }

  .step_list::before {
    top: -3%;
    bottom: auto;
    left: 6%;
  }

  .step_list::after {
    right: 6%;
    bottom: 0%;
  }

  .step_list .step_item {
    padding: 1.5rem 1.5rem;
  }

  .step_list .step_item:not(:first-of-type)::before {
    top: -25%;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

  .step_list .step_item .tb {
    display: none;
  }

  .step_list .step_item .sp {
    display: block !important;
  }
}

@media screen and (max-width: 750px) {
  .step .ttl {
    margin-bottom: 4rem;
  }

  .step_list {
    margin-bottom: 5rem;
    row-gap: 2rem;
  }

  .step_list .step_item {
    padding: 2rem 1.5rem;
    min-height: 8.3rem;
  }

  .step_list .step_item:not(:first-of-type)::before {
    top: -3.5rem;
    width: 4rem;
    height: 4rem;
  }

  .step_item_txt {
    font-size: 2.8rem;
    line-height: calc(29 / 20);
  }

  .step_remarks {
    font-size: 2.8rem;
    line-height: 1.7;
  }

  .step_remarks>span.tel::before {
    width: 2.6rem;
    height: 3.9rem;
  }

  .step_remarks>span.mail::before {
    width: 4.2rem;
    height: 2.5rem;
  }

  .step_box {
    padding: 3rem 2rem;
  }

  .step_box_ttl {
    font-size: 3.5rem;
  }

  .step_box_item {
    font-size: 2.8rem;
    line-height: 1.7;
  }
}

.qa {
  padding-top: 10.5rem;
  padding-bottom: 11.5rem;
  background: linear-gradient(#fff 0%, #f7fbfc 3.11%, #ebf6f9 10.65%, #e4f2f7 21.26%, #e3f2f7 50.72%, #e4f2f7 79.34%, #ebf6f9 89.65%, #f7fbfc 96.97%, #fff 100%);
}

.qa .tll {
  margin-bottom: 4rem;
}

.qa_list {
  display: grid;
  counter-reset: counter;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 2rem;
}

.qa_item {
  padding: 3rem 3.5rem;
  border-radius: 4rem;
  background-color: var(--c-white);
  box-shadow: 0.3rem 0.3rem 6px rgba(5, 177, 235, 0.35);
}

.qa_item_ttl {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  color: var(--c-gray);
  letter-spacing: 0.05em;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: calc(26 / 16);
  column-gap: 1.5rem;
}

.qa_item_ttl::before {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border: 2px solid var(--c-cyan);
  border-radius: 100%;
  color: var(--c-cyan);
  content: "Q" counter(counter);
  counter-increment: counter 1;
  text-align: center;
  line-height: 1;
}

.qa_item_txt {
  letter-spacing: 0.05em;
  font-size: 1.5rem;
  line-height: calc(28 / 15);
}

@media screen and (max-width: 750px) {
  .qa {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: linear-gradient(#fff 0%, #f7fbfc 3.11%, #ebf6f9 10.65%, #e4f2f7 21.26%, #e3f2f7 50.72%, #e4f2f7 79.34%, #ebf6f9 89.65%, #f7fbfc 96.97%, #fff 100%);
  }

  .qa .tll {
    margin-bottom: 4rem;
  }

  .qa_list {
    grid-template-columns: unset;
  }

  .qa_item {
    padding: 3rem 3.5rem;
  }

  .qa_item_ttl {
    font-weight: 600;
    font-size: 2.8rem;
    line-height: 1.5;
  }

  .qa_item_ttl::before {
    width: 6rem;
    height: 6rem;
  }

  .qa_item_txt {
    font-size: 2.8rem;
    line-height: 1.7;
  }
}

.apply {
  background: #ffcfe9;
}

.apply_ttl {
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: 0.15em;
  font-weight: 600;
  font-size: 4rem;
}

.apply_txt {
  margin-bottom: 2.5rem;
  line-height: calc(29 / 16);
}

.apply form {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 4.5rem;
}

.apply form label {
  margin-bottom: 0.5rem;
  width: 100%;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.apply form input[type="email"] {
  margin-bottom: 1.5rem;
  padding: 1rem 2rem;
  min-height: 6rem;
  width: 100%;
  border: 0.3rem solid var(--c-cyan);
  border-radius: 0.8rem;
  background-color: var(--c-white);
  letter-spacing: 0.05em;
  line-height: calc(29 / 16);
}

.apply form input[type="email"]::placeholder {
  color: #7c7c7c;
}

.apply form input[type="submit"] {
  min-height: 6rem;
  max-width: 20rem;
  width: 100%;
  border: 0.3rem solid var(--c-white);
  border-radius: 0.8rem;
  background-color: var(--c-skyblue);
  color: var(--c-white);
  text-align: center;
  letter-spacing: 0.17em;
  font-size: 1.8rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

@media (hover: hover) {
  .apply form input[type="submit"]:hover {
    opacity: 0.8;
  }
}

.apply_img img {
  max-width: 28.2rem;
  margin-inline: auto;
}

@media screen and (max-width: 750px) {
  .apply_ttl {
    margin-bottom: 4rem;
    font-size: 4.2rem;
  }

  .apply_txt {
    margin-bottom: 4rem;
    font-size: 2.8rem;
    line-height: 1.7;
    margin-inline: -2rem;
  }

  .apply form label {
    font-size: 2.8rem;
  }

  .apply form input[type="email"] {
    min-height: 8rem;
    font-size: 2.8rem;
  }

  .apply form input[type="submit"] {
    min-height: 8rem;
    font-size: 2.8rem;
  }
}

.contact {
  padding-bottom: 6rem;
  background-color: var(--c-skyblue);
  color: var(--c-white);
}

.contact_ttl {
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: 0.15em;
  font-weight: 600;
  font-size: 4rem;
}

.contact_txt {
  margin-bottom: 4.5rem;
  line-height: calc(26 / 16);
}

.contact_box {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 2.5rem;
}

.contact_box_ttl {
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: 0.01em;
  font-weight: 600;
  font-size: 2rem;
}

.contact_box_link {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  letter-spacing: 0.01em;
  font-weight: 600;
  font-size: 5.6rem;
  transition: opacity 0.3s ease;
  column-gap: 1rem;
}

@media (hover: hover) {
  .contact_box_link:hover {
    opacity: 0.8;
  }
}

.contact_box_remarks {
  letter-spacing: 0.03em;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: calc(34 / 18);
}

@media screen and (max-width: 750px) {
  .contact {
    padding-bottom: 5rem;
  }

  .contact_ttl {
    margin-bottom: 4rem;
    font-size: 4.2rem;
  }

  .contact_txt {
    margin-bottom: 3.5rem;
    margin-bottom: 4rem;
    font-size: 2.8rem;
    line-height: 1.7;
  }

  .contact_box {
    margin-bottom: 4rem;
  }

  .contact_box_ttl {
    margin-bottom: 1rem;
    font-size: 2.8rem;
  }

  .contact_box_link img {
    width: 8.3rem;
  }

  .contact_box_remarks {
    margin-top: 2rem;
    font-size: 2.8rem;
    line-height: 1.6;
  }
}

.footer {
  padding-block: 5rem;
}

.footer_logo {
  margin-bottom: 2.5rem;
  text-align: center;
}

.footer_logo a {
  display: inline-block;
  transition: all 0.3s ease;
}

@media (hover: hover) {
  .footer_logo a:hover {
    opacity: .7;
  }
}

.footer_logo img {
  max-width: 51.8rem;
  margin-inline: auto;
}

.footer_links {
  display: flex;
  margin-bottom: 3rem;
  border-top: 1px solid #ababab;
  border-bottom: 1px solid #ababab;
  padding-block: 3rem;
}

.footer_links .footer_item {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 2.5rem 2.5rem;
}

.footer_links .footer_item:nth-of-type(1) {
  border-right: 1px solid #ababab;
}

.footer_item_ttl {
  color: #696969;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.8em;
}

.footer_item_link {
  margin: 2rem 0 0 2rem;
  color: inherit;
  text-decoration: none;
}

.footer_item_txt {
  margin: 0 0 2rem 2rem;
  color: #4e4e4e;
  font-size: 1.4rem;
}

.footer_item_box {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer_item_box img {
  max-width: 17.8rem;
}

.footer_item_box p {
  color: #4e4e4e;
  font-size: 1.4rem;
}

.footer_remarks {
  color: var(--c-gray);
}

@media screen and (max-width: 750px) {
  .footer_logo {
    margin-bottom: 2.5rem;
  }

  .footer_links {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
    padding-block: 3rem;
  }

  .footer_links .footer_item {
    padding: 2.5rem 2.5rem;
  }

  .footer_item_ttl {
    text-align: center;
    line-height: 1.8em;
  }

  .footer_item_link {
    margin: 0;
  }

  .footer_item_txt {
    margin: 0 0 2rem;
    text-align: center;
    font-size: 2.5rem;
  }

  .footer_item_box {
    flex-direction: row-reverse;
  }

  .footer_links .footer_item:nth-of-type(1) {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    border-right: none;
    border-bottom: 1px solid #ababab;
  }

  .footer_links .footer_item:nth-of-type(1) .footer_item_ttl {
    margin-bottom: 2rem;
    width: 100%;
    font-size: 2.8rem;
  }

  .footer_links .footer_item:nth-of-type(1) .footer_item_ttl img {
    margin-inline: auto;
  }

  .footer_links .footer_item:nth-of-type(1) .footer_item_link {
    width: 62%;
    font-size: 2.5rem;
  }

  .footer_links .footer_item:nth-of-type(1) .footer_item_txt {
    margin-bottom: 0;
    width: 38%;
    font-size: 2.8rem;
  }

  .footer_item_box p {
    font-size: 2.5rem;
  }

  .footer_remarks {
    font-size: 2.5rem;
  }
}

/*# sourceMappingURL=style.css.map */