@charset "UTF-8";
/* =============================================
見出し

01.基本設定
02.共通クラス
03.ヘッダー
04.ハンバーガーメニュー
05.フッター
06.その他

============================================= */
/* =============================================
01.基本設定
============================================= */
div {
  box-sizing: border-box;
  font-family: "M PLUS 1p", sans-serif;
}

img {
  width: 100%;
  object-fit: contain;
  user-drag: none; /* ドラッグ禁止 */
  user-select: none; /* 選択禁止 */
  -webkit-user-drag: none; /* Webkitブラウザ（ChromeやSafari）向け */
  -webkit-user-select: none;
  -moz-user-select: none; /* Firefox向け */
  -ms-user-select: none; /* IE向け */
  pointer-events: none; /* 右クリックや長押し禁止 */
}

.container {
  max-width: 80vw;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .container {
    max-width: 96vw;
  }
}

.nallow__container {
  max-width: 70vw;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .nallow__container {
    max-width: 86vw;
  }
}

section {
  padding: 8vw 0;
}
@media (max-width: 767px) {
  section {
    padding: 14vw 0;
  }
}

a {
  text-decoration: unset;
  display: block;
  font-family: "M PLUS 1p", sans-serif;
}
a:hover {
  cursor: pointer !important;
  opacity: 0.7;
}

li {
  list-style-type: none;
}

p {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 1.6vw;
  color: #274E6D;
}
@media (max-width: 767px) {
  p {
    font-size: 3.3vw;
  }
}

/* =============================================
02.共通クラス
============================================= */
.pc {
  display: block;
}
@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 767px) {
  .sp {
    display: block;
  }
}

.bold {
  font-weight: bold;
}

.space {
  padding: 1vw;
}
@media (max-width: 767px) {
  .space {
    padding: 2vw;
  }
}

.section__ttl {
  font-size: 4vw;
  color: white;
  text-align: center;
  margin-bottom: 4vw;
}
@media (max-width: 767px) {
  .section__ttl {
    font-size: 5vw;
    margin-bottom: 8vw;
  }
}
.section__ttl .line {
  background: linear-gradient(transparent 50%, #1E8ABC 50%);
  padding: 0.5vw;
  display: inline-block;
}
.section__ttl.type02 {
  color: #0A80B6;
}
.section__ttl.type02 .line {
  background: linear-gradient(transparent 50%, #F0FF2B 50%);
}
.section__ttl .sm {
  font-size: 2.5vw;
}
@media (max-width: 767px) {
  .section__ttl .sm {
    font-size: 3.2vw;
  }
}

.comment {
  background: #274E6D;
  display: inline-block;
  color: white;
  padding: 1.3vw 5vw;
  border-radius: 50px;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
  line-height: 1.4;
  text-align: center;
  margin-top: 3vw;
  font-size: 1.8vw;
}
@media (max-width: 767px) {
  .comment {
    padding: 2vw 14vw;
    margin-top: 8vw;
  }
}
.comment::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 1vw solid transparent;
  border-left: 1vw solid transparent;
  border-bottom: 1.4vw solid #274e6d;
  border-top: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -1.3vw;
}
@media (max-width: 767px) {
  .comment::before {
    border-right: 3vw solid transparent;
    border-left: 3vw solid transparent;
    border-bottom: 5vw solid #274e6d;
    top: -3vw;
  }
}
.comment.type02 {
  background: #0A80B6;
}
.comment.type02::before {
  border-bottom: 1.4vw solid #0A80B6;
}
@media (max-width: 767px) {
  .comment.type02::before {
    border-right: 3vw solid transparent;
    border-left: 3vw solid transparent;
    border-bottom: 5vw solid #0A80B6;
    top: -3vw;
  }
}
.comment.type03 {
  background: #28B1D3;
}
.comment.type03::before {
  border-bottom: 1.4vw solid #28B1D3;
}
@media (max-width: 767px) {
  .comment.type03::before {
    border-right: 3vw solid transparent;
    border-left: 3vw solid transparent;
    border-bottom: 5vw solid #28B1D3;
    top: -3vw;
  }
}
.comment p {
  color: white;
  font-weight: bold;
}
@media (max-width: 767px) {
  .comment p {
    font-size: 3vw;
  }
}
.comment.white {
  background: white;
}
.comment.white::before {
  border-bottom: 1.5vw solid white;
}
@media (max-width: 767px) {
  .comment.white::before {
    border-right: 3vw solid transparent;
    border-left: 3vw solid transparent;
    border-bottom: 5vw solid white;
    top: -3vw;
  }
}
.comment.white p {
  color: #0A80B6;
}
.comment .sm {
  font-size: 1.1vw;
}

.section__why {
  background: #BEE7F2;
}

/* =============================================
03.ヘッダー
============================================= */
header {
  position: fixed;
  z-index: 1000;
  top: 40px;
  width: 100%;
  /* ハンバーガー */
  /* 全面メニュー */
}
@media (max-width: 767px) {
  header {
    top: 20px;
  }
}
header .header__logo {
  max-width: 360px;
}
@media (max-width: 767px) {
  header .header__logo {
    max-width: 60px;
  }
}
header .header__container {
  max-width: 96vw;
  margin: 0 auto;
}
@media (max-width: 767px) {
  header .header__container {
    max-width: 90vw;
  }
}
header .header__btns {
  display: flex;
  column-gap: 1vw;
  padding-right: 140px;
}
@media (max-width: 1024px) {
  header .header__btns {
    display: none;
  }
}
header .header__btns .header__btn {
  width: 200px;
}
header .header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .hamburger {
  width: 70px;
  height: 70px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  position: fixed;
  right: 60px;
  top: 40px;
  background: #274E6D;
  padding: 20px;
}
@media (max-width: 767px) {
  header .hamburger {
    width: 40px;
    height: 40px;
    padding: 5px 7px;
    top: 20px;
    right: 20px;
  }
}
header .hamburger span {
  display: block;
  height: 3px;
  background: white;
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}
header .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
header .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
header .overlay-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #274E6D;
  z-index: 1000;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow-y: auto;
}
header .overlay-menu ul {
  list-style: none;
  padding: 0;
  margin-top: 10vw;
}
@media (max-width: 767px) {
  header .overlay-menu ul {
    margin-top: 30vw;
  }
}
header .overlay-menu li {
  margin: 3vw 0;
}
@media (max-width: 767px) {
  header .overlay-menu li {
    margin: 6vw 0;
  }
}
header .overlay-menu a {
  text-decoration: none;
  color: white;
  font-size: 2vw;
  font-weight: bold;
}
@media (max-width: 767px) {
  header .overlay-menu a {
    font-size: 3.8vw;
  }
}
header .ham__links {
  display: flex;
  justify-content: center;
  margin: 10vw auto 6vw;
}
header .ham__links .ham__link {
  border-right: 1px solid white;
}
header .ham__links .ham__link:last-of-type {
  border-right: 0;
}
header .ham__links .ham__link a {
  padding: 1vw 4vw;
  text-align: left;
  font-size: 1.2vw;
  display: block;
}
@media (max-width: 767px) {
  header .ham__links .ham__link a {
    font-size: 2.4vw;
  }
}
header .ham__links .ham__link .en {
  display: block;
  font-family: "Oswald", sans-serif;
  letter-spacing: 2px;
  font-size: 2vw;
  margin-bottom: 1vw;
}
@media (max-width: 767px) {
  header .ham__links .ham__link .en {
    font-size: 4vw;
    margin-bottom: 2vw;
  }
}
header .ham__icons {
  display: flex;
  justify-content: center;
  column-gap: 4vw;
  align-items: center;
  margin-bottom: 5vw;
}
@media (max-width: 767px) {
  header .ham__icons {
    column-gap: 8vw;
  }
}
header .ham__icons img {
  width: 6vw;
}
@media (max-width: 767px) {
  header .ham__icons img {
    width: 8vw;
  }
}

/* =============================================
04.フッター
============================================= */
/* =============================================
05.コンテンツ
============================================= */
.section__fv {
  background: #50C0DB;
  background-size: cover;
  padding-bottom: 4vw;
  border-radius: 10px;
  position: relative;
}
@media (max-width: 767px) {
  .section__fv {
    padding-top: 20vw;
    padding-bottom: 12vw;
  }
}
.section__fv .fv__copy {
  color: white;
  text-align: center;
  font-weight: bold;
  display: flex;
  justify-content: center;
  column-gap: 1vw;
  margin-bottom: 2vw;
}
.section__fv .fv__copy::before, .section__fv .fv__copy::after {
  content: "";
  display: block;
  width: 1vw;
  height: 3vw;
  background: url(/lp02/dist/img/fuki01.png) no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .section__fv .fv__copy::before, .section__fv .fv__copy::after {
    width: 3vw;
    height: 6vw;
  }
}
.section__fv .fv__copy::after {
  background: url(/lp02/dist/img/fuki02.png) no-repeat;
  background-size: contain;
}
.section__fv .fv__copy p {
  color: white;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .section__fv .fv__copy p {
    font-size: 3.2vw;
    line-height: 1.5;
  }
}
.section__fv .fv__main {
  display: flex;
  justify-content: space-between;
  margin-top: 4vw;
  align-items: center;
}
@media (max-width: 767px) {
  .section__fv .fv__main {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.section__fv .fv__text {
  width: 40%;
}
@media (max-width: 767px) {
  .section__fv .fv__text {
    width: 90%;
    margin: 0 auto;
  }
}
.section__fv .fv__img {
  width: 55%;
}
@media (max-width: 767px) {
  .section__fv .fv__img {
    width: 90%;
    margin: 0 auto 2vw;
  }
}
.section__fv .fv__badge {
  width: 18vw;
  position: absolute;
  bottom: -6vw;
}
@media (max-width: 767px) {
  .section__fv .fv__badge {
    width: 45vw;
    bottom: -17vw;
    left: 4vw;
  }
}

.section__shindan .container {
  max-width: 60vw;
}
@media (max-width: 767px) {
  .section__shindan .container {
    max-width: 80vw;
  }
}
.section__shindan .shindan__img {
  width: 36%;
  position: relative;
}

.section__shindan .shindan__img img{
  max-width: 12vw;
}
@media (max-width: 767px) {
  .section__shindan .shindan__img {
    width: 38vw;
    margin: 6vw auto 0;
  }

  .section__shindan .shindan__img img{
    max-width: 100%;
  }
}
.section__shindan .shindan__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .section__shindan .shindan__wrapper {
    flex-wrap: wrap;
    width: 80vw;
    margin: 4vw auto 0vw;
  }
}
.section__shindan .shindan__copy {
  width: 35vw;
  margin: 0 auto 2vw;
}
@media (max-width: 767px) {
  .section__shindan .shindan__copy {
    width: 80vw;
    margin-top: 0vw;
  }
}
.section__shindan .shindan__btns {
  padding: 1vw;
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.2vw;
  width: 60%;
}
@media (max-width: 767px) {
  .section__shindan .shindan__btns {
    width: 100%;
  }
}

.section__onayami {
  background: url(/lp02/dist/img/bg-onayami.png) no-repeat;
  background-size: cover;
  padding-bottom: 4vw;
  background-position: center;
}
@media (max-width: 767px) {
  .section__onayami {
    padding-bottom: 10vw;
  }
}
.section__onayami .onayami__ttl {
  color: white;
  text-align: center;
  font-size: 2.4vw;
  margin-bottom: 4vw;
}
@media (max-width: 767px) {
  .section__onayami .onayami__ttl {
    font-size: 4vw;
    margin-top: 8vw;
    margin-bottom: 6vw;
  }
}
.section__onayami .onayami__ttl span {
  border-bottom: 5px solid;
  padding-bottom: 1vw;
}
@media (max-width: 767px) {
  .section__onayami .onayami__ttl span {
    border-bottom: 2px solid;
  }
}
.section__onayami .onayami_lists {
  max-width: 70vw;
  margin: 0 auto;
}
.section__onayami .onayami_lists li {
  display: flex;
  background: white;
  text-align: center;
  font-size: 2.2vw;
  color: #0071BC;
  font-weight: bold;
  justify-content: center;
  column-gap: 0.4vw;
  padding: 1.2vw;
  font-family: "Shippori Antique", sans-serif;
  border-radius: 5px;
  margin-bottom: 1vw;
  position: relative;
}
@media (max-width: 767px) {
  .section__onayami .onayami_lists li {
    justify-content: start;
    padding: 2vw;
    padding-left: 6vw;
    font-size: 3.6vw;
    text-align: left;
    line-height: 1.3;
  }
}
.section__onayami .onayami_lists li::before {
  content: "・";
  color: #0A80B6;
  font-size: 4vw;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.6vw;
}
@media (max-width: 767px) {
  .section__onayami .onayami_lists li::before {
    font-size: 6vw;
  }
}
.section__onayami .onayami_lists li::after {
  content: "・";
  color: #0A80B6;
  font-size: 4vw;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.6vw;
}
@media (max-width: 767px) {
  .section__onayami .onayami_lists li::after {
    font-size: 6vw;
  }
}
.section__onayami img {
  width: 2vw;
}
@media (max-width: 767px) {
  .section__onayami img {
    width: 4vw;
    margin-right: 1vw;
    margin-left: 3vw;
  }
}
.section__onayami .onayami__msg {
  text-align: center;
  color: white;
  font-size: 2.7vw;
  font-weight: bold;
  line-height: 1.3;
  margin-top: 4vw;
  letter-spacing: 2px;
}
@media (max-width: 767px) {
  .section__onayami .onayami__msg {
    font-size: 3.2vw;
  }
}

.section__sample {
  background: #50C0DB;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
@media (max-width: 767px) {
  .section__sample .sample__img {
    max-width: 70vw;
    margin: 0 auto;
  }
}

.section__why .why__wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .section__why .why__wrapper {
    flex-wrap: wrap;
  }
}
.section__why .why__txt {
  line-height: 1.8;
  font-weight: bold;
  width: 28%;
}
@media (max-width: 767px) {
  .section__why .why__txt {
    width: 80%;
    margin: 0 auto;
  }
}
.section__why .why__img {
  width: 65%;
}
@media (max-width: 767px) {
  .section__why .why__img {
    width: 90%;
    margin: 4vw auto;
  }
}
.section__why .why__msg {
  font-size: 1.8vw;
  text-align: center;
  margin-top: 3vw;
  line-height: 1.5;
  font-weight: bold;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .section__why .why__msg {
    font-size: 3.2vw;
    margin-top: 8vw;
  }
}

.section__cut {
  background: #28B1D3;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.section__cut .cut__table .tr {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 0.4vw;
}
.section__cut .cut__table .td {
  color: white;
  padding: 2vw 1vw;
  text-align: center;
  font-size: 1.4vw;
  font-weight: bold;
  border-radius: 3px;
}
@media (max-width: 767px) {
  .section__cut .cut__table .td {
    font-size: 2.4vw;
  }
}
@media (max-width: 767px) {
  .section__cut .cut__table .tr01 .td {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.section__cut .cut__table .td01 {
  letter-spacing: 4px;
  width: 10%;
  background: #0A80B6;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .section__cut .cut__table .td01 {
    width: 18%;
  }
}
.section__cut .cut__table .td02 {
  width: 40%;
  background: #0A80B6;
}
.section__cut .cut__table .td03 {
  width: 40%;
  background: #F0FF2B;
  color: #0A80B6;
}
.section__cut .cut__table .label, .section__cut .cut__table .unit {
  font-size: 2vw;
}
@media (max-width: 767px) {
  .section__cut .cut__table .label, .section__cut .cut__table .unit {
    font-size: 2.4vw;
    line-height: 2;
  }
}
.section__cut .cut__table .value {
  font-size: 4vw;
  font-family: "Oswald", sans-serif;
}
@media (max-width: 767px) {
  .section__cut .cut__table .value {
    font-size: 6vw;
  }
}
.section__cut .tr02 .td02, .section__cut .tr02 .td03 {
  padding: 4vw 1vw;
}
@media (max-width: 767px) {
  .section__cut .tr02 .td02, .section__cut .tr02 .td03 {
    padding: 1vw 1vw;
  }
}
.section__cut .term__wrapper {
  margin: 4vw auto 0;
  max-width: 64vw;
}
@media (max-width: 767px) {
  .section__cut .term__wrapper {
    max-width: 80vw;
    padding-left: 3vw;
    margin-top: 8vw;
  }
}
.section__cut .term__wrapper .term {
  color: white;
  font-size: 2vw;
  position: relative;
  margin-bottom: 1vw;
}
@media (max-width: 767px) {
  .section__cut .term__wrapper .term {
    font-size: 4.2vw;
  }
}
.section__cut .term__wrapper .term::before {
  content: "";
  display: block;
  width: 2vw;
  height: 2vw;
  background: #274E6D;
  border-radius: 50%;
  position: absolute;
  left: -3vw;
}
@media (max-width: 767px) {
  .section__cut .term__wrapper .term::before {
    width: 4vw;
    height: 4vw;
    left: -5vw;
  }
}
.section__cut .term__wrapper p {
  margin-bottom: 2vw;
  color: white;
}
@media (max-width: 767px) {
  .section__cut .term__wrapper p {
    line-height: 1.5;
    margin-bottom: 4vw;
  }
}
@media (max-width: 767px) {
  .section__cut .comment {
    padding: 2vw 8vw;
  }
}

.section__points .point__wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 6vw;
}
@media (max-width: 767px) {
  .section__points .point__wrapper {
    flex-wrap: wrap;
    margin-top: 12vw;
  }
}
.section__points .point__item {
  width: 32.5%;
  background: linear-gradient(#52C0DB, #0A80B6);
  border-radius: 10px;
  padding: 1vw;
}
@media (max-width: 767px) {
  .section__points .point__item {
    width: 84%;
    margin: 0 auto 10vw;
  }
}
.section__points .point__img {
  width: 8vw;
  margin: -6vw auto 0;
}
@media (max-width: 767px) {
  .section__points .point__img {
    width: 12vw;
    margin: -8vw auto 0;
  }
}
.section__points .point__ttl {
  text-align: center;
  color: white;
  font-size: 2vw;
  line-height: 1.4;
  margin: 2vw auto;
}
@media (max-width: 767px) {
  .section__points .point__ttl {
    font-size: 4.2vw;
  }
}
.section__points .point__txt {
  background: white;
  border-radius: 10px;
  padding: 1.5vw;
  line-height: 1.8;
  font-weight: bold;
}
@media (max-width: 767px) {
  .section__points .point__txt {
    padding: 5vw;
  }
}
.section__points .point__txt p {
  color: #0A80B6;
}
@media (max-width: 767px) {
  .section__points .point__txt p {
    font-size: 3vw;
  }
}

.section__yuisei {
  background: #50C0DB;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
@media (max-width: 767px) {
  .section__yuisei .yuisei__img {
    max-width: 80vw;
    margin: 0 auto;
  }
}

.section__case {
  background: #BEE7F2;
}
.section__case .case__icon {
  width: 20vw;
  margin: 0 auto 4vw;
}
@media (max-width: 767px) {
  .section__case .case__icon {
    width: 36vw;
  }
}
.section__case .case__img {
  margin-bottom: 2vw;
}
@media (max-width: 767px) {
  .section__case .case__img {
    max-width: 90vw;
    margin: 0 auto 4vw;
  }
}

.section__facility {
  background: #28B1D3;
}
.section__facility .facility__wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .section__facility .facility__wrapper {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 2vw;
  }
}
.section__facility .facility__item {
  width: 49%;
  background: white;
  border-radius: 10px;
  padding: 3vw;
}
@media (max-width: 767px) {
  .section__facility .facility__item {
    width: 86%;
    padding: 5vw;
  }
}
.section__facility .badge01, .section__facility .badge02 {
  background: linear-gradient(90deg, #AA28C7, #EB3CB4);
  color: white;
  padding: 1.4vw;
  font-size: 2vw;
  font-weight: bold;
  max-width: 20vw;
  margin: 0 auto 2vw;
  text-align: center;
  border-radius: 50px;
}
@media (max-width: 767px) {
  .section__facility .badge01, .section__facility .badge02 {
    max-width: 30vw;
    font-size: 3.2vw;
    margin-bottom: 4vw;
  }
}
.section__facility .badge02 {
  background: #0A80B6;
}
.section__facility .facility__sample {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2vw;
}
.section__facility .facility__sample ul {
  font-size: 1.4vw;
  line-height: 1.5;
  color: #0A80B6;
  font-weight: bold;
}
@media (max-width: 767px) {
  .section__facility .facility__sample ul {
    font-size: 3vw;
  }
}
.section__facility .facility__img {
  width: 60%;
}
.section__facility p {
  font-size: 1.2vw;
  line-height: 1.5;
  font-weight: bold;
}
@media (max-width: 767px) {
  .section__facility p {
    font-size: 2.8vw;
  }
}
.section__facility p span {
  color: #FF0000;
}
.section__facility .facility__head {
  text-align: center;
  margin: 6vw auto 4vw;
  color: white;
  font-size: 1.8vw;
}
@media (max-width: 767px) {
  .section__facility .facility__head {
    font-size: 3.4vw;
    margin-top: 12vw;
  }
}
.section__facility .facility__head span {
  border-bottom: 4px solid;
  padding-bottom: 6px;
}
@media (max-width: 767px) {
  .section__facility .facility__head span {
    border-bottom: 3px solid;
  }
}
.section__facility .facility__target {
  width: 100%;
}
@media (max-width: 767px) {
  .section__facility .facility__target {
    width: 86%;
    margin: 8vw auto 0;
  }
}

.section__flow .flow__items {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .section__flow .flow__items {
    flex-wrap: wrap;
  }
}
.section__flow .flow__item {
  width: 19%;
  background: linear-gradient(#52C0DB, #0A80B6);
  padding: 1.4vw;
  border-radius: 10px;
  position: relative;
}
@media (max-width: 767px) {
  .section__flow .flow__item {
    width: 80%;
    margin: 0 auto 2vw;
    padding: 5vw;
    border-radius: 5px;
  }
}
.section__flow .flow__number {
  color: white;
  font-family: "Oswald", sans-serif;
  font-size: 3vw;
  position: relative;
}
@media (max-width: 767px) {
  .section__flow .flow__number {
    font-size: 6vw;
  }
}
.section__flow .flow__number::after {
  content: "▶︎";
  font-size: 1vw;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 4vw;
}
@media (max-width: 767px) {
  .section__flow .flow__number::after {
    font-size: 3vw;
    left: 10vw;
  }
}
.section__flow .flow__img {
  width: 6vw;
  margin: 2vw auto;
}
@media (max-width: 767px) {
  .section__flow .flow__img {
    position: absolute;
    right: 8vw;
    width: 20vw;
    top: 50%;
    transform: translateY(-50%);
  }
}
.section__flow .flow__ttl {
  color: white;
  font-size: 1.6vw;
  text-align: center;
  margin-bottom: 1vw;
}
@media (max-width: 767px) {
  .section__flow .flow__ttl {
    text-align: left;
    font-size: 4.8vw;
    margin-top: 6vw;
    margin-bottom: 3vw;
  }
}
.section__flow p {
  color: white;
  font-size: 1vw;
  text-align: center;
  line-height: 1.5;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .section__flow p {
    text-align: left;
    font-size: 2.8vw;
  }
}
.section__flow p .sm {
  font-size: 0.8vw;
}
@media (max-width: 767px) {
  .section__flow p .sm {
    font-size: 2.4vw;
  }
}

.section__faq {
  background: #50C0DB;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
@media (max-width: 767px) {
  .section__faq .accordion {
    max-width: 80vw;
    margin: 0 auto;
  }
}
.section__faq .accordion-item {
  margin-bottom: 2vw;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #DCF2F8;
  padding: 0.8vw;
}
@media (max-width: 767px) {
  .section__faq .accordion-item {
    border-radius: 3px;
  }
}
.section__faq .accordion-header {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: bold;
  padding: 2vw 2vw 2vw 1vw;
  background: #DCF2F8;
}
.section__faq .accordion-title {
  font-size: 2vw;
  color: #0A80B6;
  display: flex;
  column-gap: 1vw;
  width: 97%;
}
@media (max-width: 767px) {
  .section__faq .accordion-title {
    font-size: 3.4vw;
    column-gap: 2vw;
    align-items: center;
  }
}
.section__faq .accordion-title::before {
  content: "";
  display: block;
  width: 3vw;
  height: 3vw;
  background: url(/lp02/dist/img/faq-q.png) no-repeat;
  background-size: contain;
  margin-top: -0.5vw;
}
@media (max-width: 767px) {
  .section__faq .accordion-title::before {
    width: 6vw;
    height: 6vw;
  }
}
.section__faq .toggle-icon {
  transition: 0.3s;
  position: absolute;
  right: 1vw;
  font-size: 3vw;
  color: #0A80B6;
}
.section__faq .accordion-content {
  display: none;
  background: white;
  padding: 2vw;
  font-weight: bold;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .section__faq .accordion-content {
    border-radius: 4px;
  }
}
.section__faq .accordion-content::before {
  content: "";
  display: block;
  width: 3vw;
  height: 3vw;
  background: url(/lp02/dist/img/faq-a.png) no-repeat;
  background-size: contain;
  margin-top: -0.5vw;
  min-width: 3vw;
  position: absolute;
  left: 2vw;
}
@media (max-width: 767px) {
  .section__faq .accordion-content::before {
    width: 6vw;
    height: 6vw;
  }
}
.section__faq .accordion-content p {
  column-gap: 1vw;
  line-height: 1.5;
  padding-left: 4vw;
  color: #0A80B6;
  font-size: 1.4vw;
}
@media (max-width: 767px) {
  .section__faq .accordion-content p {
    font-size: 3vw;
    padding-left: 7vw;
  }
}
.section__faq .accordion-content .sm {
  font-size: 1vw;
  display: block;
}
@media (max-width: 767px) {
  .section__faq .accordion-content .sm {
    font-size: 2.4vw;
  }
}

.section__contact {
  background: #BEE7F2;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.section__contact .form__txt {
  text-align: center;
  font-weight: bold;
  font-size: 2vw;
  margin-bottom: 4vw;
}
@media (max-width: 767px) {
  .section__contact .form__txt {
    font-size: 4vw;
    line-height: 1.5;
    margin-bottom: 6vw;
  }
}
.section__contact .form__wrapper {
  background: rgba(255, 255, 255, 0.7215686275);
  border-radius: 10px;
  padding: 10vw 12vw;
  color: #274E6D;
}
@media (max-width: 767px) {
  .section__contact .form__wrapper {
    max-width: 86vw;
    margin: 0 auto;
    padding: 8vw 4vw;
    border-radius: 5px;
  }
}
.section__contact .form__guide {
  font-size: 1.8vw;
  font-weight: bold;
}
@media (max-width: 767px) {
  .section__contact .form__guide {
    font-size: 4vw;
  }
}
.section__contact .form__guide span {
  font-size: 1.2vw;
  display: block;
  margin-top: 0.6vw;
  margin-bottom: 4vw;
}
@media (max-width: 767px) {
  .section__contact .form__guide span {
    font-size: 2.8vw;
    margin-top: 2vw;
    margin-bottom: 6vw;
  }
}
.section__contact .c-form__title {
  display: block;
  font-weight: bold;
  font-size: 1.4vw;
  margin-bottom: 1vw;
}
@media (max-width: 767px) {
  .section__contact .c-form__title {
    font-size: 3vw;
    margin-bottom: 1.5vw;
  }
}
.section__contact input, .section__contact textarea {
  width: 100%;
  padding: 1.5vw;
  border: 1px solid #274E6D;
  box-sizing: border-box;
}
.section__contact .c-form__item {
  margin-bottom: 2vw;
}
@media (max-width: 767px) {
  .section__contact .c-form__item {
    margin-bottom: 4vw;
  }
}
.section__contact .c-form__textarea {
  height: 20vw;
}
@media (max-width: 767px) {
  .section__contact .c-form__textarea {
    height: 40vw;
  }
}
.section__contact .form-link {
  display: flex;
  font-weight: bold;
  margin: 4vw 0;
  align-items: center;
}
.section__contact .form-link input {
  width: auto;
}
.section__contact .form-link a {
  display: inline;
  color: #274E6D;
  text-decoration: underline;
  font-size: 1.2vw;
}
@media (max-width: 767px) {
  .section__contact .form-link a {
    font-size: 2.8vw;
  }
}
.section__contact .form-link label {
  font-size: 1.2vw;
}
@media (max-width: 767px) {
  .section__contact .form-link label {
    font-size: 2.8vw;
  }
}
.section__contact .c-btn {
  background: #274E6D;
  border: none;
  color: white;
  padding: 1vw 8vw;
  border-radius: 50px;
  font-size: 1.6vw;
  font-weight: bold;
  position: relative;
}
@media (max-width: 767px) {
  .section__contact .c-btn {
    padding: 3vw 20vw;
    font-size: 3.6vw;
  }
}
.section__contact .c-btn:hover {
  opacity: 0.6;
}
.section__contact .c-btn::after {
  content: "";
  display: block;
  width: 2vw;
  height: 2vw;
  background: url(/lp02/dist/img/submit-arrow.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: 1vw;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .section__contact .c-btn::after {
    width: 6vw;
    height: 6vw;
    right: 3vw;
  }
}
.section__contact .c-form__require {
  color: #0A80B6;
  font-size: 2.4vw;
  margin-left: 0.6vw;
  position: relative;
  bottom: -0.8vw;
}
@media (max-width: 767px) {
  .section__contact .c-form__require {
    font-size: 3.6vw;
    margin-left: 1vw;
  }
}

footer .footer__wrapper {
  display: flex;
  justify-content: space-between;
  padding-top: 4vw;
}
@media (max-width: 767px) {
  footer .footer__wrapper {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    padding-left: 4vw;
  }
}
footer .footer__wrapper .footer__logo {
  width: 30%;
}
@media (max-width: 767px) {
  footer .footer__wrapper .footer__logo {
    width: 60%;
    margin-top: 6vw;
  }
  footer .footer__wrapper .footer__logo ul {
    margin-top: 2vw;
  }
  footer .footer__wrapper .footer__logo ul .zip {
    font-size: 2.4vw;
  }
  footer .footer__wrapper .footer__logo ul li {
    font-size: 2.4vw;
    padding-left: 0;
    margin-bottom: 0;
  }
}
footer .footer__wrapper ul {
  display: flex;
  width: 65%;
  font-weight: bold;
  font-size: 0.9vw;
  align-items: center;
}
@media (max-width: 767px) {
  footer .footer__wrapper ul {
    width: 100%;
    display: block;
    margin-top: 12vw;
  }
}
footer .footer__wrapper ul li {
  padding: 0vw 2vw;
  line-height: 1.8;
  color: #254C6A;
  border-right: 1px solid;
}
@media (max-width: 767px) {
  footer .footer__wrapper ul li {
    border-right: 0;
    margin-bottom: 4vw;
    font-size: 2.2vw;
    padding-left: 0;
  }
}
footer .footer__wrapper ul a {
  display: block;
  color: #254C6A;
  font-weight: bold;
}
footer .footer__wrapper ul a span {
  font-weight: bold;
}
footer .footer__wrapper ul a .en {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 1.2vw;
  letter-spacing: 2px;
}
@media (max-width: 767px) {
  footer .footer__wrapper ul a .en {
    font-size: 4.8vw;
  }
}
footer .footer__wrapper ul .zip {
  display: block;
  font-size: 0.8vw;
}
footer small {
  color: #254C6A;
  text-align: center;
  display: block;
  font-size: 0.6vw;
  margin: 4vw auto 2vw;
  font-weight: bold;
}
@media (max-width: 767px) {
  footer small {
    text-align: left;
    font-size: 2vw;
    padding-left: 4vw;
    margin: 4vw auto;
  }
}

.fixed__btn {
  position: fixed;
  bottom: 20px;
  right: 30px;
  width: 10vw;
  z-index: 100;
}
@media (max-width: 767px) {
  .fixed__btn {
    width: 20vw;
    right: 15px;
    bottom: 74px;
  }
}

.sp-cta {
  z-index: 100;
  position: relative;
  display: none;
}
.sp-cta .cta__btns {
  position: fixed;
  display: flex;
  bottom: 0;
  width: 100%;
  background: #274E6D;
}
.sp-cta a {
  color: white;
  display: flex;
  width: 50%;
  padding: 16px;
  justify-content: center;
  column-gap: 10px;
  align-items: center;
  font-size: 12px;
  line-height: 1.3;
  font-weight: bold;
  border-right: 1px solid;
}
.sp-cta a:last-of-type {
  border-right: 0;
}
.sp-cta a img {
  width: 24px;
}

@media (max-width: 767px) {
  .thanks__container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
}

.thanks__wrapper {
  padding: 4vw;
  text-align: center;
}
.thanks__wrapper .thanks__img {
  max-width: 20vw;
  margin: 0vw auto 4vw;
}
@media (max-width: 767px) {
  .thanks__wrapper .thanks__img {
    max-width: 50vw;
  }
}
.thanks__wrapper .thanks__ttl {
  font-size: 4vw;
  font-weight: 900;
  color: #007AAD;
  margin-bottom: 2vw;
}
@media (max-width: 767px) {
  .thanks__wrapper .thanks__ttl {
    font-size: 10vw;
  }
}
.thanks__wrapper p {
  color: #007AAD;
  line-height: 2.4;
  font-weight: bold;
}
.thanks__wrapper .thanks-back__btn {
  background: #004B6C;
  display: inline-block;
  color: white;
  padding: 1vw 6vw;
  border-radius: 50px;
  margin-top: 6vw;
  font-size: 1.4vw;
  font-weight: bold;
}
@media (max-width: 767px) {
  .thanks__wrapper .thanks-back__btn {
    font-size: 4vw;
    margin-top: 14vw;
    padding: 2vw 10vw;
  }
}

/* addition_css */
.section__faq .accordion-content ul {
  font-size: 3vw;
  padding-left: 6vw;
  color: #0A80B6;
}

.section__faq .accordion-content .circle-ul li,
.section__faq .accordion-content .number-ul li {
  list-style-type: disc;
  line-height: 1.5;
  color: #0A80B6;
  font-size: 1.4vw;
}

.section__faq .accordion-content .number-ul li {
  list-style-type: decimal;
}

@media (max-width: 767px) {
  
  .section__faq .accordion-content ul { 
    padding-left: 11vw;
  }

  .section__faq .accordion-content .circle-ul li,
.section__faq .accordion-content .number-ul li {
  font-size: 3vw;
}
}


@media(min-width: 1600px) {
  .section__fv {
    padding-top: 60px;
    padding-bottom: 100px;
  }
  
  p {
    font-size: 24px;
  }

  .container {
    max-width: 1300px;
  }

  .section__onayami .onayami__ttl {
    font-size: 32px;
  }

  .section__onayami .onayami_lists li {
    font-size: 32px;
  }

  .section__onayami .onayami__msg {
    font-size: 32px;
  }

  .section__onayami .onayami_lists {
    max-width: 1200px;
  }

  .section__ttl .line {
    font-size: 48px;
  }

  .section__ttl {
    line-height: 0.6;
  }

  section {
    padding: 100px 0;
  }

  .comment p {
    font-size: 24px;
  }

  .section__ttl .sm {
    font-size: 32px;
  }

  .section__why .why__msg {
    font-size: 32px;
  }

  .section__cut .term__wrapper .term {
    font-size: 36px;
  }

  .section__cut .term__wrapper .term::before {
    width: 36px;
    height: 36px;
    left: -50px;
  }

  .nallow__container {
    max-width: 1200px;
  }

  .section__points .point__ttl {
    font-size: 32px;
  }

  .section__points .point__txt {
    padding: 20px;
  }

  .section__points .point__txt p {
    font-size: 22px;
  }

  .section__points .point__img {
    width: 160px;
    margin: -120px auto -20px;
  }

  .section__points .point__item {
    padding: 24px;
  }

  .section__facility .badge01, 
  .section__facility .badge02{
    font-size: 40px;
    padding: 20px;
  }

  .facility__sample li {
    font-size: 24px;
  }

  .section__facility .facility__item {
    padding: 40px;
  }

  .section__facility p {
    font-size: 24px;
  }

  .section__flow .flow__item {
    padding: 20px;
  }

  .section__flow .flow__number {
    font-size: 60px;
  }

  .section__flow .flow__number::after {
    left: 80px;
  }

  .section__flow .flow__img {
    width: 100px;
  }

  .section__flow .flow__ttl {
    font-size: 28px;
  }

  .section__flow p {
    font-size: 18px;
  }

  .section__flow p .sm {
    font-size: 14px;
  }

  .section__faq .accordion-title {
    font-size: 28px;
    align-items: center;
  }

  .section__faq .accordion-content p {
    font-size: 24px;
    padding-left: 80px;
  }

  .section__faq .accordion-header {
    padding: 20px;
  }

  .section__faq .accordion-title::before,
  .section__faq .accordion-content::before {
    width: 60px;
    height: 60px;
  }

  .section__faq .toggle-icon {
    font-size: 48px;
  }

  .section__faq .accordion-item {
    margin-bottom: 30px;
  }

  .section__faq .accordion-content {
    padding: 30px;
  }

  .section__contact .form__wrapper {
    padding: 120px 160px;
  }

  .form__txt {
    font-size: 32px;
  }

  .section__contact .form__guide {
    font-size: 40px;
  }

  .section__contact .form__guide span {
    margin-bottom: 80px;
  }

  .section__contact .c-form__title {
    font-size: 28px;
  }

  .section__contact .c-form__require {
    font-size: 30px;
    bottom: 0;
  }

  footer .footer__wrapper ul li {
    padding: 0 30px;
    font-size: 18px;
  }

  footer .container {
    max-width: 1500px;
  }

  footer .footer__wrapper ul a .en {
    font-size: 24px;
  }

  .section__fv .fv__badge {
    width: 300px;
    bottom: -70px;
  }

  .section__shindan .container {
    max-width: 900px;
  }

  .section__shindan .shindan__copy {
    width: 600px;
    margin-bottom: 40px;
  }
}

.kome {
  position: relative;
  padding-top: 1vw;
  line-height: 1.5;
}

.kome::before {
  content: "※";
  margin-left: -1vw;
}

@media (max-width: 767px) {
  .kome::before {
    content: "※";
    margin-left: -2.4vw;
  }
}


.point__text {
  margin-top: 4vw;
  font-size: 1.3vw;
  font-weight: 500;
  line-height: 1.8;
}

.red {
  color: #ff0000;
}

.underline {
  text-decoration: underline;
}

.notification__wrapper {
  display: flex;
  max-width: 60vw;
  margin: 0 auto;
  justify-content: space-between;
  flex-wrap: wrap;
}

.notification__txt {
  width: 30%;
  margin-top: 1vw;
}

.notification__txt p {
  color: white;
  font-size: 1.3vw;
  font-weight: 500;
  line-height: 1.8;
}

.notification__img {
  width: 60%;
}

@media (max-width: 767px) {
  .point__text {
    font-size: 3.5vw;
    margin-top: 8vw;
  }

  .notification__txt p {
    font-size: 3.5vw;
  }

  .notification__txt {
    width: 100%;
  }

  .notification__img {
    width: 100%;
  }

  .notification__wrapper {
    max-width: 74vw;
    row-gap: 8vw;
  }
}


.c-form__radio-group {
  display: flex;
  gap: 1vw;
}

.c-form__radio {
      display: flex;
    align-items: center;
    justify-content: start;
    font-size: 1.4vw;
}

.c-form__radio input {
  width: auto;
}

@media (max-width: 767px) {
  .c-form__radio {
    font-size: 4vw;
  }
}

.sp-cta a {
  padding: 10px;
  font-size: 10px;
}


@media (max-width: 767px) {
.fv__main {
  padding: 20px;
  box-sizing: border-box;
}
.section__fv {
  padding-bottom: 0;
}
}