@charset "UTF-8";
/* 共通 .wrapクラス */
@import '../css/reset.css';
/* px to vw */
/* Basic Styles */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  height: 100%;
  color: #333333;
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 500;
  line-height: 1.4;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}

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

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

.txt_c {
  text-align: center;
}

.mb30 {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .mb30 {
    margin-bottom: 7%;
  }
}
@media (max-width: 480px) {
  .mb30 {
    margin-bottom: 15px;
  }
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

a.text_link {
  color: #0076FF;
  text-decoration: underline;
}

.wrap {
  max-width: 1110px;
  margin: 0 auto;
  padding: 0 15px;
}

.button {
  background: linear-gradient(to bottom, #FD8834, #FF6C02);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.096);
  color: #fff;
  padding: 15px 20px;
  border-radius: 100vh;
  font-size: 1.0416666667vw;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .button {
    font-size: 16px;
  }
}
.button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 16px;
  height: 10px;
  background: url(../images/common/button_arrow.png) no-repeat center/cover;
}
.button.large {
  padding: 26px 20px;
}
@media (max-width: 768px) {
  .button.large {
    padding: 15px 20px;
  }
}
.button.button_tel {
  line-height: 20px;
}

/* Header */
.header {
  background-color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.header .wrap {
  max-width: 100%;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .header .wrap {
    padding: 0;
  }
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 10px;
}
.header__container__logo {
  max-width: 167px;
}
@media (max-width: 768px) {
  .header__container__logo {
    max-width: 130px;
    padding-left: 15px;
  }
}
.header__menu-btn {
  display: none;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  background: #003288;
  height: 60px;
  padding: 18px;
}
@media (max-width: 768px) {
  .header__menu-btn {
    display: flex; /* スマホサイズで表示 */
    justify-content: center;
  }
}
.header__menu-btn .header__menu-icon {
  width: 24px;
  height: 3px;
  background-color: #fff;
  margin: 3px 0;
  position: relative;
}
.header__menu-btn .header__menu-icon:before, .header__menu-btn .header__menu-icon:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  display: block;
}
.header__menu-btn .header__menu-icon:before {
  top: -7px;
}
.header__menu-btn .header__menu-icon:after {
  bottom: -7px;
}
.header__menu-btn.is-close .header__menu-icon {
  background-color: transparent;
}
.header__menu-btn.is-close .header__menu-icon:before {
  top: 0;
  transform: rotate(45deg);
  transition: 0.3s;
}
.header__menu-btn.is-close .header__menu-icon:after {
  bottom: 0;
  transform: rotate(-45deg);
  transition: 0.3s;
}
@media (max-width: 768px) {
  .header__menu {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 100%;
    height: calc(100% - 60px);
    background: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    z-index: 99999;
  }
  .header__menu.is-open {
    right: 0;
  }
}
.header__menu ul {
  list-style: none;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .header__menu ul {
    flex-direction: column;
    align-items: center;
    border-top: 1px solid #013288;
  }
}
.header__menu ul li {
  margin: 0 5px;
}
@media (max-width: 768px) {
  .header__menu ul li {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid #013288;
  }
}
.header__menu ul li:nth-last-of-type(2), .header__menu ul li:last-child {
  margin-right: 0;
}
@media (max-width: 768px) {
  .header__menu ul li:nth-last-of-type(2), .header__menu ul li:last-child {
    display: none;
  }
}
.header__menu ul li a {
  font-size: 0.8333333333vw;
  text-decoration: none;
  color: #003288;
  padding: 20px 1.0416666667vw;
  display: block;
}
@media (max-width: 768px) {
  .header__menu ul li a {
    font-size: 20px;
    padding: 20px;
    background: url(../images/common/navi_icon.png) no-repeat 96% 50%/24px;
  }
}
.header__menu ul .header__register-btn {
  background: linear-gradient(to bottom, #FD8834, #FF6C02);
  color: #fff;
  padding: 11px 1.3020833333vw;
  text-decoration: none;
  display: inline-block;
  line-height: 1.4;
  font-size: 0.78125vw;
  border-radius: 100vh;
}
@media (max-width: 768px) {
  .header__menu ul .header__register-btn {
    display: none; /* スマホサイズで非表示 */
  }
}
.header__menu__logo {
  text-align: center;
  padding: 0 15px 20px;
  margin-top: 65px;
}
.header__menu__logo img {
  max-width: 86px;
}
.header__menu__logo p {
  color: #003288;
  margin-top: 30px;
  font-size: 10px;
}
.header__menu .header__menu-close {
  display: none;
  font-size: 1.5rem;
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .header__menu .header__menu-close {
    display: block;
  }
}
.header .header__login-btn--responsive,
.header .header__register-btn--responsive {
  background: linear-gradient(to bottom, #FD8834, #FF6C02);
  color: #fff;
  padding: 8px 15px;
  font-weight: bold;
  text-decoration: none;
  margin: 0 0 0 auto;
  display: none;
  font-size: 12px;
}
@media (max-width: 768px) {
  .header .header__login-btn--responsive,
  .header .header__register-btn--responsive {
    display: inline-block; /* ハンバーガーメニュー横に表示 */
    line-height: 32px;
    padding: 14px 15px;
    margin: 0 0 0 auto;
  }
}
.header .header__login-btn--responsive {
  margin: 0;
  border-left: 1px solid #E25F00;
}

.page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #003288;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 3;
}
@media (max-width: 768px) {
  .page-top {
    bottom: 80px;
  }
}
.page-top:hover {
  background-color: #0056b3;
}
.page-top.visible {
  opacity: 1;
  visibility: visible;
}

/* Footer */
.footer {
  background-color: #fff;
  padding: 2.6041666667vw 0 1.3020833333vw;
}
@media (max-width: 768px) {
  .footer {
    padding: 50px 0 80px;
  }
}
.footer__container {
  text-align: center;
}
.footer__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0 0 2.6041666667vw;
}
@media (max-width: 768px) {
  .footer__nav {
    border-right: none;
    position: relative;
  }
  .footer__nav:before {
    content: "";
    width: 1px;
    height: 100%;
    background: #003288;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
  }
}
.footer__nav li {
  margin: 0;
  padding: 0 20px;
  line-height: 1;
  border-right: 1px solid #003288;
}
@media (max-width: 768px) {
  .footer__nav li {
    border-right: none;
    text-align: left;
    margin-bottom: 10px;
  }
}
.footer__nav li a {
  font-size: 0.8333333333vw;
  text-decoration: none;
  color: #003288;
}
@media (max-width: 768px) {
  .footer__nav li a {
    font-size: 14px;
  }
}
.footer__nav li:last-child {
  border-right: none;
}
@media (max-width: 768px) {
  .footer__nav {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2列に配置 */
    gap: 10px;
  }
}
.footer__logo {
  max-width: 106px;
  margin: 50px auto 0;
}
@media (max-width: 768px) {
  .footer__logo {
    margin-top: 40px;
  }
}
.footer__copyright {
  font-size: 0.5208333333vw;
  color: #003288;
}
@media (max-width: 768px) {
  .footer__copyright {
    font-size: 10px;
  }
}

/* Flow Section */
.flow {
  background: url(../images/top/flow_bg.jpg) no-repeat center top/cover;
  padding: 5.2083333333vw 0;
}
@media (max-width: 768px) {
  .flow {
    padding: 60px 0 50px;
  }
}
.flow .img_margintop70 {
  margin-top: 3.6458333333vw;
}
@media (max-width: 768px) {
  .flow .img_margintop70 {
    margin-top: 0;
  }
}
.flow .img_margintop40 {
  margin-top: 2.0833333333vw;
}
@media (max-width: 768px) {
  .flow .img_margintop40 {
    margin-top: 0;
  }
}
.flow__container {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  .flow__container {
    flex-direction: column; /* 縦並びに変更 */
    align-items: center;
  }
}
.flow__container .flow__icon {
  position: absolute;
  left: -25px;
  top: -25px;
  z-index: 1;
  width: 54px;
  height: 54px;
}
.flow__box {
  background-color: #fff;
  border: 3px solid #013288;
  box-shadow: 5px 5px 0 #013288;
  border-radius: 16px;
  padding: 2.0833333333vw 20px 10px;
  margin: 0 10px;
  text-align: center;
  position: relative;
  width: calc(25% - 20px); /* 4列横並び */
}
@media (max-width: 768px) {
  .flow__box {
    padding: 30px 20px 10px;
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .flow__box__txt {
    width: 60%;
    padding-right: 4%;
  }
}
@media (max-width: 768px) {
  .flow__box__img {
    width: 40%;
  }
}
.flow__box h3 {
  margin: 0 0 1.5625vw;
  font-size: 1.0416666667vw;
  color: #013288;
}
@media (max-width: 768px) {
  .flow__box h3 {
    font-size: 18px;
    text-align: left;
  }
}
.flow__box p {
  font-size: 0.8333333333vw;
  color: #242424;
  text-align: left;
}
@media (max-width: 768px) {
  .flow__box p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .flow__box {
    width: 90%; /* 1列に配置 */
    margin: 10px 0;
  }
}
@media (max-width: 768px) {
  .flow__box__last img {
    width: 55px;
  }
}
.flow__arrow {
  font-size: 2rem;
  color: #013288;
  margin: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .flow__arrow {
    content: "▼"; /* 矢印を下向きに変更 */
    margin: 10px 0;
    transform: rotate(90deg);
  }
}
.flow h2 {
  font-size: 2.0833333333vw;
  font-weight: bold;
  color: #013288;
  margin-bottom: 3.125vw;
  text-align: center;
}
@media (max-width: 768px) {
  .flow h2 {
    font-size: 30px;
    margin-bottom: 50px;
  }
}
.flow h2 span {
  display: block;
  font-size: 0.8333333333vw;
}
@media (max-width: 768px) {
  .flow h2 span {
    font-size: 14px;
  }
}
.flow__buttons {
  display: flex;
  justify-content: center;
  margin-top: 3.6458333333vw;
  text-align: center;
}
@media (max-width: 768px) {
  .flow__buttons {
    display: block;
    margin-top: 50px;
  }
}
.flow__buttons .flow__button {
  background: linear-gradient(to bottom, #FD8834, #FF6C02);
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .flow__buttons .flow__button {
    margin: 0 0 20px;
  }
}

/* Main Visual Section */
.main-visual {
  background: url("../images/top/mv_bg_pc.jpg") no-repeat center top/100% auto;
  min-height: calc(100vh - 80px);
  margin-top: 80px;
  padding-bottom: 3.3854166667vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #003288;
}
@media (max-width: 768px) {
  .main-visual {
    display: block;
    min-height: initial;
    margin-top: 60px;
    padding-bottom: 40px;
    background: url("../images/top/mv_bg01_sp.png") no-repeat center top/100% auto;
  }
}
.main-visual__content {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 20px;
}
@media (max-width: 768px) {
  .main-visual__content {
    padding: 0 15px;
  }
}
.main-visual__logo {
  max-width: 176px;
  margin-bottom: 37px;
}
@media (max-width: 768px) {
  .main-visual__logo {
    max-width: 108px;
    padding-top: 90px;
    margin-bottom: 20px;
  }
}
.main-visual__subtext {
  font-size: 1.40625vw;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .main-visual__subtext {
    font-size: 16px;
  }
}
.main-visual__title {
  line-height: 1;
}
.main-visual__title img {
  margin: 0 auto;
}
.main-visual__description {
  font-size: 0.8854166667vw;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .main-visual__description {
    font-size: 16px;
  }
}
.main-visual__buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 4.1666666667vw;
}
@media (max-width: 768px) {
  .main-visual__buttons {
    display: block;
  }
}
.main-visual__buttons .main-visual__button {
  max-width: 360px;
}
@media (max-width: 768px) {
  .main-visual__buttons .main-visual__button {
    margin-bottom: 20px;
  }
}
.main-visual .campaign.sp {
  padding: 0 15px;
}

.system h2 {
  text-align: center;
}

p.system01, p.system02 {
  text-align: center;
  margin: 30px;
}

.campaign__bnr {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .campaign__bnr {
    margin-bottom: 7%;
  }
}
@media (max-width: 480px) {
  .campaign__bnr {
    margin-bottom: 25px;
  }
}

.about_bg {
  line-height: 0;
}

.about {
  color: #fff;
  background: #3D9FCB;
  padding-bottom: 100px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .about {
    padding: 130px 0 70px;
  }
}
.about .wrap {
  position: relative;
  max-width: 924px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .about .wrap {
    max-width: 100%;
  }
}
.about .wrap::before, .about .wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 768px) {
  .about .wrap::before, .about .wrap::after {
    bottom: auto;
    top: -130px;
  }
}
.about .wrap:before {
  content: "";
  width: 196px;
  height: 395px;
  left: -196px;
  background: url(../images/top/about_illustration01.png) no-repeat center/cover;
}
@media (max-width: 768px) {
  .about .wrap:before {
    width: 80px;
    height: 160px;
    left: 0;
  }
}
.about .wrap:after {
  content: "";
  width: 196px;
  height: 396px;
  right: -196px;
  background: url(../images/top/about_illustration02.png) no-repeat center/cover;
}
@media (max-width: 768px) {
  .about .wrap:after {
    width: 80px;
    height: 160px;
    right: 0;
  }
}
.about h2 {
  font-size: 2.0833333333vw;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.8229166667vw;
}
@media (max-width: 768px) {
  .about h2 {
    font-size: 30px;
    margin-bottom: 35px;
  }
}
.about ul {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .about ul {
    display: block;
  }
}
.about ul li {
  text-align: center;
  width: 33%;
  max-width: calc(260px + 2%);
  padding: 0 2%;
}
@media (max-width: 768px) {
  .about ul li {
    border-bottom: 1px solid #fff;
    width: 100%;
    max-width: 100%;
    padding: 0 0 45px;
    margin-bottom: 40px;
  }
}
.about ul li .about_photo {
  max-width: 10.8333333333vw;
  margin: 0 auto 1.3020833333vw;
}
@media (max-width: 768px) {
  .about ul li .about_photo {
    max-width: 208px;
  }
}
.about ul li .about_txt h3 {
  font-size: 0.9375vw;
  font-weight: bold;
  margin-bottom: 1.8229166667vw;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .about ul li .about_txt h3 {
    font-size: 18px;
  }
}
.about ul li .about_txt p {
  text-align: left;
  font-size: 0.78125vw;
}
@media (max-width: 768px) {
  .about ul li .about_txt p {
    font-size: 16px;
  }
}
.about ul li:nth-of-type(2) .about_txt {
  position: relative;
}
.about ul li:nth-of-type(2) .about_txt::before, .about ul li:nth-of-type(2) .about_txt::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: #fff;
  top: 0;
}
@media (max-width: 768px) {
  .about ul li:nth-of-type(2) .about_txt::before, .about ul li:nth-of-type(2) .about_txt::after {
    content: none;
  }
}
.about ul li:nth-of-type(2) .about_txt::before {
  left: -8%;
}
.about ul li:nth-of-type(2) .about_txt::after {
  right: -8%;
}
@media (max-width: 768px) {
  .about ul li:nth-of-type(3) {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
}
.about ul li:nth-of-type(3) h3 {
  margin-bottom: 10px;
}
.about__bottom {
  text-align: right;
  font-size: 12px;
  margin-top: 1.0416666667vw;
}
@media (max-width: 768px) {
  .about__bottom {
    margin-top: 0;
  }
}

.marker {
  background: linear-gradient(transparent 50%, #FFD700 50%);
}

.point {
  padding-bottom: 100px;
  background: url(../images/top/point_bg_pc.jpg) repeat-y center top/cover;
}
@media (max-width: 768px) {
  .point {
    background: url(../images/top/point_bg_sp.jpg) repeat-y center top/cover;
  }
}
.point h2 {
  text-align: center;
  margin: 0 auto 3.125vw;
  max-width: 576px;
}
.point .points-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.point-section {
  background-color: #fff;
  border: 2px solid #003288;
  border-radius: 15px;
  padding: 20px 0 47px;
  margin: 20px auto 70px;
  text-align: center;
  color: #003288;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .point-section {
    margin-bottom: 45px;
  }
}
.point-section__header {
  margin-top: -50px;
}
@media (max-width: 768px) {
  .point-section__header {
    max-width: 147px;
    margin: -35px auto 0;
  }
}
.point-section__title {
  margin: 20px 0;
  padding: 0 47px;
}
@media (max-width: 768px) {
  .point-section__title {
    padding: 0 15px;
  }
}
.point-section__title img {
  margin: 0 auto;
}
.point-section__description {
  font-size: 0.8333333333vw;
  font-weight: 500;
  margin-top: 10px;
  color: #003288;
  padding: 0 47px;
}
@media (max-width: 768px) {
  .point-section__description {
    padding: 0 15px;
    font-size: 16px;
    text-align: left;
  }
}
.point-section__description span {
  font-size: 0.5208333333vw;
  display: block;
  text-align: right;
}
.point-section__divider {
  border: none;
  border-top: 2px dotted #003288;
  width: 100%;
  margin: 20px auto;
  padding: 0 47px;
}
@media (max-width: 768px) {
  .point-section__divider {
    padding: 0 15px;
  }
}
.point-section__image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px 0 0;
  padding: 0 47px;
}
@media (max-width: 768px) {
  .point-section__image-container {
    padding: 0 15px;
  }
}
@media (max-width: 768px) {
  .point-section__image-container.scroll {
    overflow-x: scroll;
  }
  .point-section__image-container.scroll img {
    width: 100%;
    min-width: 800px;
    margin-left: 0;
    margin-right: auto;
  }
}
.point-section__footer-text {
  font-size: 1.0416666667vw;
  color: #333;
  margin-top: 20px;
  padding: 0 47px;
}
@media (max-width: 768px) {
  .point-section__footer-text {
    padding: 0 15px;
    font-size: 16px;
    text-align: left;
  }
}
.point-section__button {
  margin: 40px auto 0;
  padding: 0 57px;
}
@media (max-width: 768px) {
  .point-section__button {
    padding: 0 15px;
  }
}
.point-section__button a {
  max-width: 500px;
}
.point .point02_title {
  display: flex;
  justify-content: center;
  align-items: baseline;
}
@media (max-width: 768px) {
  .point .point02_title img.people {
    width: 15%;
    max-width: 90px;
  }
  .point .point02_title h3 img {
    width: 70%;
  }
}
@media (max-width: 768px) {
  .point .point02_title img.people {
    max-width: 50px;
  }
  .point .point02_title h3 img {
    width: 100%;
  }
}
.point__bottom {
  color: #fff;
  text-align: center;
}
.point__bottom p {
  font-size: 1.5625vw;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .point__bottom p {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.point__bottom h4 {
  font-size: 2.6041666667vw;
  font-weight: bold;
  margin-bottom: 2.6041666667vw;
}
@media (max-width: 768px) {
  .point__bottom h4 {
    font-size: 40px;
    margin-bottom: 35px;
    line-height: 1.2;
  }
}
.point__bottom__buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 4.1666666667vw;
}
@media (max-width: 768px) {
  .point__bottom__buttons {
    display: block;
  }
}
.point__bottom__buttons .point__bottom__button {
  max-width: 100%;
}
@media (max-width: 768px) {
  .point__bottom__buttons .point__bottom__button:nth-of-type(2) {
    margin-top: 15px;
  }
}
.point .scroll-hint-icon {
  height: 120px;
  border-radius: 100%;
  background: rgba(1, 50, 136, 0.562);
}
.point .scroll-hint-icon .scroll-hint-text {
  display: none;
}
.point .scroll-hint-icon:before {
  width: 58px;
  height: 56px;
  margin-top: 20px;
  background: url(../images/top/scroll_hand.png) no-repeat center/cover;
}
.point .scroll-hint-icon::after {
  margin-left: -30px;
  width: 59px;
  height: 28px;
  background: url(../images/top/scroll_arrow.png) no-repeat center/cover;
}

.qna-section {
  background-color: #3D9FCB; /* セクションの背景色 */
  padding: 5.2083333333vw 0;
  color: #003288;
  text-align: center;
}
@media (max-width: 768px) {
  .qna-section {
    padding: 60px 0;
  }
}
.qna-section__title {
  font-size: 2.0833333333vw;
  font-weight: bold;
  color: #fff;
  margin-bottom: 2.6041666667vw;
}
@media (max-width: 768px) {
  .qna-section__title {
    font-size: 30px;
  }
}
.qna-section__title span {
  display: block;
  text-align: center;
  font-size: 0.8333333333vw;
}
@media (max-width: 768px) {
  .qna-section__title span {
    font-size: 14px;
  }
}
.qna-section__list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin: 0 auto;
}
.qna-section__item {
  background-color: #fff;
  border: 2px solid #013288;
  border-radius: 16px;
  padding: 2.34375vw 2.6041666667vw;
  margin-bottom: 15px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .qna-section__item {
    padding: 20px;
    text-align: left;
  }
}
.qna-section__item:last-child {
  margin-bottom: 0;
}
.qna-section__item .qna-question {
  display: flex;
  align-items: center;
  padding: 0 20px 0 4.6875vw;
  cursor: pointer;
  font-size: 1.0416666667vw;
  font-weight: bold;
  position: relative;
}
.qna-section__item .qna-question:hover {
  opacity: 0.6;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .qna-section__item .qna-question {
    font-size: 20px;
    padding-left: 44px;
    padding-right: 26px;
  }
}
.qna-section__item .qna-question .qna-label {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 1.5625vw;
  color: #013288;
}
@media (max-width: 768px) {
  .qna-section__item .qna-question .qna-label {
    top: 20px;
    font-size: 20px;
  }
}
.qna-section__item .qna-question .qna-icon {
  margin-left: auto;
  font-size: 0.9375vw;
  transition: transform 0.3s ease;
  color: #fff;
  background-color: #013288;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  text-align: center;
  line-height: 32px;
}
@media (max-width: 768px) {
  .qna-section__item .qna-question .qna-icon {
    width: 25px;
    height: 25px;
    font-size: 18px;
    position: absolute;
    right: -10px;
    top: 0;
    bottom: 0;
    margin: auto;
    line-height: 1.4;
  }
}
.qna-section__item .qna-answer {
  padding: 1.5625vw 20px 15px 4.6875vw;
  font-size: 0.8333333333vw;
  color: #333;
  display: none;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 768px) {
  .qna-section__item .qna-answer {
    font-size: 16px;
    padding-left: 0;
  }
}
.qna-section__item .qna-answer.open {
  display: block;
}
.qna-section__item.open .qna-icon {
  transform: rotate(180deg); /* 回答が表示されるとアイコンが回転 */
}

.movie {
  padding: 8.8541666667vw 0 4.1666666667vw;
  background: url(../images/top/movie_bg.jpg) #fff no-repeat center top/100% auto;
  overflow: hidden;
}
@media (max-width: 768px) {
  .movie {
    padding: 160px 0 90px;
  }
}
@media (max-width: 768px) {
  .movie .wrap {
    padding-left: 0;
    padding-right: 0;
  }
}
.movie h2 {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .movie h2 {
    margin-bottom: 50px;
  }
}
@media (max-width: 370px) {
  .movie h2 img {
    position: relative;
    max-width: 120%;
    margin: auto;
    left: -10%;
  }
}
.movie_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 0;
}
@media (max-width: 768px) {
  .movie_flex {
    display: block;
    text-align: center;
  }
}
.movie_flex_phone {
  position: relative;
  z-index: 1;
  width: 50%;
  max-width: 508px;
  text-align: center;
}
@media (max-width: 768px) {
  .movie_flex_phone {
    width: 100%;
    max-width: 100%;
  }
}
.movie_flex_phone:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 26.09375vw;
  height: 17.5vw;
  z-index: -1;
}
@media (max-width: 768px) {
  .movie_flex_phone:before {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 768px) {
  .movie_flex_phone.bg_left {
    margin-bottom: 50px;
  }
}
@media (max-width: 480px) {
  .movie_flex_phone.bg_left {
    margin-bottom: 30px;
  }
}
.movie_flex_phone.bg_left:before {
  background: url(../images/top/movie_img_bg_left.png) no-repeat center top/cover;
  z-index: -1;
}
.movie_flex_phone.bg_right:before {
  background: url(../images/top/movie_img_bg_right.png) no-repeat center top/cover;
  z-index: -1;
}
.movie_flex_phone p {
  color: #191919;
  font-size: 0.625vw;
  text-align: center;
}
@media (max-width: 768px) {
  .movie_flex_phone p {
    font-size: 10px;
  }
}
.movie_flex button {
  border: none;
  background: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .movie_flex button {
    margin-top: 6%;
  }
}
@media (max-width: 480px) {
  .movie_flex button {
    max-width: 80%;
  }
}
.movie_flex button:hover {
  opacity: 0.6;
  transition: 0.3s;
}

@media (max-width: 1050px) {
  .modal-video-movie-wrap {
    padding-bottom: 60vh !important;
  }
}

.pickup {
  padding: 5.2083333333vw 0 4.9479166667vw;
  background: url(../images/top/pickup_bg.jpg) no-repeat center/cover;
}
@media (max-width: 768px) {
  .pickup {
    padding: 60px 0 50px;
  }
}
.pickup h2 {
  font-size: 2.0833333333vw;
  font-weight: bold;
  color: #fff;
  margin-bottom: 3.125vw;
  text-align: center;
}
@media (max-width: 768px) {
  .pickup h2 {
    font-size: 30px;
    margin-bottom: 50px;
  }
}
.pickup h2 span {
  display: block;
  font-size: 0.8333333333vw;
}
@media (max-width: 768px) {
  .pickup h2 span {
    font-size: 14px;
  }
}
.pickup_flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .pickup_flex {
    display: block;
  }
}
.pickup_flex_box {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  width: 48%;
  max-width: 580px;
  margin-bottom: 50px;
  height: 100%;
}
@media (max-width: 768px) {
  .pickup_flex_box {
    width: 1100%;
    max-width: 100%;
    margin-bottom: 4%;
  }
}
.pickup_flex_box_thumbnail {
  position: relative;
}
.pickup_flex_box_thumbnail img {
  width: 100%;
}
.pickup_flex_box_thumbnail:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 30px;
  background: url(../images/top/pickup_new.png) no-repeat center/cover;
  z-index: 2;
}
.pickup_flex_box_txt {
  padding: 37px;
}
@media (max-width: 768px) {
  .pickup_flex_box_txt {
    padding: 20px;
  }
}
.pickup_flex_box_txt h3 {
  font-weight: bold;
  font-size: 1.0416666667vw;
  margin-bottom: 30px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .pickup_flex_box_txt h3 {
    font-size: 20px;
  }
}
.pickup_flex_box_txt ol li {
  color: #646464;
  position: relative;
  padding-left: 30px;
  font-size: 0.7291666667vw;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .pickup_flex_box_txt ol li {
    font-size: 14px;
  }
}
.pickup_flex_box_txt ol li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.pickup_flex_box_txt ol li:nth-of-type(1):before {
  width: 12px;
  height: 17px;
  background: url(../images/top/icon_pickup_map.png) no-repeat center/cover;
}
.pickup_flex_box_txt ol li:nth-of-type(2):before {
  width: 14px;
  height: 17px;
  background: url(../images/top/icon_pickup_people.png) no-repeat center/cover;
}
.pickup_flex_box_txt ol li:nth-of-type(3) {
  margin-bottom: 0;
}
.pickup_flex_box_txt ol li:nth-of-type(3):before {
  width: 12px;
  height: 17px;
  background: url(../images/top/icon_pickup_money.png) no-repeat center/cover;
}
.pickup_flex_box_txt_point {
  background: #eaf6fd;
  padding: 20px;
  border-radius: 5px;
  margin-top: 22px;
  text-align: center;
  color: #00499f;
  font-size: 1.3541666667vw;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 768px) {
  .pickup_flex_box_txt_point {
    font-size: 20px;
  }
}
.pickup_flex_box_txt_point img {
  vertical-align: text-top;
  padding-right: 33px;
}
@media (max-width: 480px) {
  .pickup_flex_box_txt_point img {
    max-width: 193px;
    margin-bottom: 10px;
  }
}
.pickup_flex_box:nth-last-of-type(1) {
  margin-bottom: 0;
}
.pickup_flex_box:nth-last-of-type(2) {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .pickup_flex_box:nth-last-of-type(2) {
    margin-bottom: 4%;
  }
}

.floating-banner {
  position: fixed;
  z-index: 999;
  bottom: 20%;
  right: 0;
  width: 70px;
}
@media (max-width: 768px) {
  .floating-banner {
    width: 215px;
    bottom: 0;
    line-height: 0;
  }
}

/*----------------------about----------------------*/
.recruit-section {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8.8541666667vw 20px;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .recruit-section {
    padding: 80px 20px;
    flex-direction: column-reverse;
  }
}
.recruit-section__title {
  font-size: 2.7083333333vw;
  color: #003288;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .recruit-section__title {
    font-size: 30px;
    text-align: center;
  }
}
.recruit-section__subtitle {
  font-size: 0.6770833333vw;
  color: #003288;
  text-align: right;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .recruit-section__subtitle {
    font-size: 10px;
  }
}
.recruit-section__description {
  font-size: 0.8333333333vw;
  color: #191919;
  line-height: 1.8;
  margin-bottom: 30px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .recruit-section__description {
    font-size: 16px;
  }
}
.recruit-section__buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.recruit-section__buttons .recruit-section__button {
  background: linear-gradient(to bottom, #FD8834, #FF6C02);
  color: #fff;
  padding: 15px 20px;
  text-align: center;
  font-weight: bold;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  font-size: 1.0416666667vw;
}
@media (max-width: 768px) {
  .recruit-section__buttons .recruit-section__button {
    font-size: 16px;
  }
}
.recruit-section__buttons .recruit-section__button:hover {
  opacity: 0.9;
}
.recruit-section__buttons .recruit-section__button:after {
  width: 21px;
  height: 14px;
}
.recruit-section__buttons .recruit-section__button:nth-of-type(2) .icon {
  display: none;
}
@media (max-width: 768px) {
  .recruit-section__buttons .recruit-section__button:nth-of-type(2) .icon {
    display: inline-block;
  }
}
.recruit-section__buttons .recruit-section__button:nth-of-type(2)::after {
  content: none;
}
.recruit-section__buttons .recruit-section__button span {
  line-height: 0;
  display: inline-block;
}
.recruit-section__buttons .poppins-bold {
  font-size: 1.3541666667vw;
}
@media (max-width: 768px) {
  .recruit-section__buttons .poppins-bold {
    font-size: 20px;
  }
}
.recruit-section__content {
  flex: 1;
  max-width: 562px;
}
@media (max-width: 768px) {
  .recruit-section__content {
    max-width: 100%;
  }
}
.recruit-section__slideshow {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  max-width: 540px;
  height: 400px;
}
@media (max-width: 768px) {
  .recruit-section__slideshow {
    flex: initial;
    width: 100%;
    height: 52.0833333333vw;
  }
}
.recruit-section__slideshow .recruit-section__slide {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease;
  border-radius: 15px;
  object-fit: cover;
  z-index: 0;
}
.recruit-section__slideshow .recruit-section__slide.active {
  opacity: 1;
  z-index: 1;
}

.resources {
  padding: 5.2083333333vw 0;
  background: #E9F4F8;
}
.resources__bg {
  line-height: 0;
}
.resources h2 {
  color: #013288;
  font-size: 2.0833333333vw;
  text-align: center;
  margin-bottom: 2.0833333333vw;
}
@media (max-width: 768px) {
  .resources h2 {
    font-size: 30px;
    margin-bottom: 55px;
  }
}
.resources ul {
  max-width: 865px;
  margin: 0 auto 2.6041666667vw;
}
@media (max-width: 768px) {
  .resources ul {
    margin-bottom: 50;
  }
}
.resources ul li {
  position: relative;
  margin-bottom: 15px;
  margin-left: 30px;
  padding-bottom: 15px;
  border-bottom: 3px dotted #023288;
  color: #023288;
  font-size: 20px;
}
.resources ul li span {
  color: #fff;
  text-align: center;
  position: absolute;
  background: #FD8026;
  width: 24px;
  height: 24px;
  left: -30px;
  top: 0;
  border-radius: 100%;
  line-height: 22px;
}
.resources ul li.last {
  border-bottom: none;
  font-size: 10px;
  text-align: right;
  margin-bottom: 0;
  padding-bottom: 0;
}

.monitor {
  color: #fff;
  padding: 5.2083333333vw 0 4.1666666667vw;
  background: #013288;
}
@media (max-width: 768px) {
  .monitor {
    padding: 100px 0 80px;
  }
}
.monitor h2 {
  font-size: 1.5625vw;
  text-align: center;
  font-weight: bold;
  margin-bottom: 2.6041666667vw;
  position: relative;
}
@media (max-width: 768px) {
  .monitor h2 {
    font-size: 22px;
    margin-bottom: 50px;
    text-align: left;
    padding-left: 130px;
  }
}
.monitor h2:before {
  content: "";
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 8.6458333333vw;
  height: 8.6458333333vw;
  z-index: 1;
  background: url(../images/about/monitor_icon.png) no-repeat center/cover;
}
@media (max-width: 768px) {
  .monitor h2:before {
    width: 120px;
    height: 120px;
    left: 0;
  }
}
.monitor__flex {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .monitor__flex {
    flex-direction: column-reverse;
  }
}
.monitor__flex__box {
  width: 27.6041666667vw;
  max-width: 98%;
}
@media (max-width: 768px) {
  .monitor__flex__box {
    margin-bottom: 30px;
    max-width: 100%;
    width: 100%;
  }
}
.monitor p {
  margin-top: 45px;
  font-size: 14px;
  text-align: center;
}
@media (max-width: 768px) {
  .monitor p {
    margin-top: 15px;
    text-align: left;
  }
}

.worries {
  padding: 5.2083333333vw 0 2.6041666667vw;
  background: url(../images/about/worries_bg.png) no-repeat center bottom/100% auto;
}
@media (max-width: 768px) {
  .worries {
    padding: 50px 0 0;
    background-color: #E9F4F8;
  }
}

.testimonials {
  background-color: #003288;
  color: #fff;
  padding: 4.1666666667vw 20px 5.2083333333vw;
  text-align: center;
}
@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0 50px;
  }
}
.testimonials__title {
  font-size: 1.875vw;
  font-weight: bold;
  margin-bottom: 3.125vw;
}
@media (max-width: 768px) {
  .testimonials__title {
    font-size: 30px;
    margin-bottom: 70px;
  }
}
.testimonials__group {
  margin-bottom: 40px;
}
.testimonials__group-title {
  font-size: 1.25vw;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
  z-index: 1;
}
@media (max-width: 768px) {
  .testimonials__group-title {
    font-size: 20px;
  }
}
.testimonials__group-title:before {
  content: "";
  width: 100%;
  height: 3px;
  border-bottom: 3px dotted #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
}
.testimonials__group-title span {
  background: #003288;
  position: relative;
  display: inline-block;
  z-index: 2;
  padding: 0 20px;
}
.testimonials__tag {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FF6C02;
}
.testimonials__text {
  color: #191919;
  font-size: 0.8333333333vw;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .testimonials__text {
    font-size: 16px;
  }
}
.testimonials__text span {
  border-bottom: 3px dotted #013288;
  line-height: 2;
}
.testimonials__cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 3.6458333333vw;
}
@media (max-width: 768px) {
  .testimonials__cards {
    flex-direction: column;
    margin-bottom: 50px;
  }
}
.testimonials__card {
  background-color: #fff;
  color: #003288;
  padding: 1.5625vw 1.8229166667vw;
  border-radius: 10px;
  max-width: 530px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}
@media (max-width: 768px) {
  .testimonials__card {
    padding: 35px 20px;
    max-width: 100%;
  }
}
.testimonials__logo {
  margin: 40px 0;
}
.testimonials__logo img {
  width: 15.8854166667vw;
  max-width: 305px;
}
@media (max-width: 768px) {
  .testimonials__logo img {
    width: 185px;
  }
}
.testimonials__features {
  list-style: none;
  padding: 50px;
  margin: 0;
  background-color: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .testimonials__features {
    flex-direction: column;
    padding: 25px;
    border-radius: 16px;
  }
}
.testimonials__feature {
  padding: 20px 40px 20px 5.7291666667vw;
  text-align: left;
  border-bottom: 3px dotted #013288;
  position: relative;
}
@media (max-width: 768px) {
  .testimonials__feature {
    padding: 10px 0 48px 40px;
  }
}
.testimonials__feature h4 {
  color: #003288;
  font-size: 1.6666666667vw;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .testimonials__feature h4 {
    font-size: 20px;
  }
}
.testimonials__feature p {
  font-size: 0.8333333333vw;
  line-height: 1.5;
  color: #191919;
}
@media (max-width: 768px) {
  .testimonials__feature p {
    font-size: 16px;
  }
}
.testimonials__feature__icon {
  position: absolute;
  left: 1.5625vw;
  bottom: 20px;
  font-size: 2.6041666667vw;
  line-height: 0.9;
}
@media (max-width: 768px) {
  .testimonials__feature__icon {
    font-size: 30px;
    bottom: auto;
    top: 10px;
  }
}
.testimonials ul li:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .testimonials ul li:last-child {
    padding-bottom: 0;
  }
}

.graph {
  padding: 5.2083333333vw 0 4.6875vw;
}
@media (max-width: 768px) {
  .graph {
    padding: 55px 0;
  }
}
.graph__flex {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 768px) {
  .graph__flex {
    display: block;
    text-align: center;
  }
}
.graph__flex::before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  left: 50%;
  background: #013288;
  opacity: 0.2;
}
@media (max-width: 768px) {
  .graph__flex::before {
    content: none;
  }
}
.graph__flex img {
  width: 48%;
}
@media (min-width: 1050px) {
  .graph__flex img {
    max-width: 510px;
  }
}
@media (max-width: 768px) {
  .graph__flex img {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .graph__flex img:nth-of-type(2) {
    margin-top: 50px;
  }
}

.flow-section {
  background-color: #E8F4FA;
  padding: 5.2083333333vw 0;
  text-align: center;
}
@media (max-width: 768px) {
  .flow-section {
    padding: 55px 0;
  }
}
.flow-section__title {
  font-size: 1.875vw;
  font-weight: bold;
  color: #003288;
  margin-bottom: 3.125vw;
}
@media (max-width: 768px) {
  .flow-section__title {
    font-size: 30px;
  }
}
.flow-section__steps {
  list-style: none;
  padding: 0;
  margin: 0;
}
.flow-section__step {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 35px 20px 35px 60px;
  transition: transform 0.3s;
  position: relative;
}
@media (max-width: 768px) {
  .flow-section__step {
    flex-direction: column;
    text-align: left;
    padding: 20px 20px 20px 30px;
    margin-left: 20px;
  }
}
.flow-section__step-number {
  background-color: #003288;
  color: #fff;
  font-size: 1.25vw;
  font-weight: bold;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  position: absolute;
  z-index: 1;
  left: -25px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 768px) {
  .flow-section__step-number {
    font-size: 16px;
    margin-right: 0;
  }
}
.flow-section__step-content {
  flex: 1;
  text-align: left;
}
.flow-section__step-title {
  font-size: 1.0416666667vw;
  font-weight: bold;
  color: #003288;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .flow-section__step-title {
    font-size: 20px;
  }
}
.flow-section__step-description {
  font-size: 0.8333333333vw;
  line-height: 1.6;
  color: #666;
}
@media (max-width: 768px) {
  .flow-section__step-description {
    font-size: 16px;
  }
}

.cta {
  text-align: center;
  padding: 6.25vw 0 4.6875vw;
}
@media (max-width: 768px) {
  .cta {
    padding: 60px 0;
  }
}
.cta h2 {
  margin-bottom: 1.5625vw;
}
@media (max-width: 768px) {
  .cta h2 {
    margin-bottom: 15px;
  }
}
.cta h2 img {
  margin: 0 auto;
}
.cta p {
  color: #013288;
  font-size: 16px;
}
.cta__buttons {
  margin-top: 2.6041666667vw;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .cta__buttons {
    margin-top: 30px;
    display: block;
  }
}
.cta__buttons a {
  width: 48%;
  background: linear-gradient(to bottom, #FD8834, #FF6C02);
  color: #fff;
  padding: 15px 20px;
  text-align: center;
  font-weight: bold;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  font-size: 1.0416666667vw;
}
@media (max-width: 768px) {
  .cta__buttons a {
    font-size: 16px;
    width: 100%;
  }
}
.cta__buttons a:hover {
  opacity: 0.9;
}
.cta__buttons a:after {
  width: 21px;
  height: 14px;
}
.cta__buttons a:nth-of-type(2) {
  font-size: 1.5625vw;
}
@media (max-width: 768px) {
  .cta__buttons a:nth-of-type(2) {
    margin-top: 15px;
    font-size: 20px;
  }
}
.cta__buttons a:nth-of-type(2) .icon {
  display: none;
}
@media (max-width: 768px) {
  .cta__buttons a:nth-of-type(2) .icon {
    display: inline-block;
  }
}
.cta__buttons a:nth-of-type(2)::after {
  content: none;
}
.cta__buttons a span {
  line-height: 0;
  display: inline-block;
}

/* PC画面サイズのみで `tel:` リンクを無効化 */
@media screen and (min-width: 768px) {
  a[href^=tel] {
    pointer-events: none;
    text-decoration: none; /* 見た目の変更（任意） */
  }
}
/** 山口キャンペーンページ **/
.marker {
  background: linear-gradient(transparent 70%, #ffff00 70%);
}

.yamaguchi main {
  overflow: hidden;
}
.yamaguchi .mv {
  margin-top: 62px;
  padding-top: 35px;
  text-align: center;
  background: url(../images/yamaguchi/mv-bg.png) no-repeat center/auto;
}
.yamaguchi .mv__logo {
  margin-bottom: 20px;
}
.yamaguchi .mv h2 {
  font-size: 1.3020833333vw;
  margin-bottom: 45px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .yamaguchi .mv h2 {
    margin-bottom: 6.5%;
    font-size: 25px;
  }
}
@media screen and (max-width: 480px) {
  .yamaguchi .mv h2 {
    font-size: 20px;
    margin-bottom: 25px;
  }
}
.yamaguchi__txt {
  margin-top: 60px;
  padding-bottom: 100px;
}
.yamaguchi__txt .wrap {
  position: relative;
}
.yamaguchi__txt .wrap:before, .yamaguchi__txt .wrap:after {
  content: "";
  position: absolute;
  bottom: -200px;
}
@media screen and (max-width: 480px) {
  .yamaguchi__txt .wrap:before, .yamaguchi__txt .wrap:after {
    bottom: -170px;
  }
}
.yamaguchi__txt .wrap:before {
  width: 12.2395833333vw;
  height: 28.1770833333vw;
  left: -100px;
  background: url(../images/yamaguchi/yamaguchi__txt-leftimg.png) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .yamaguchi__txt .wrap:before {
    width: 117.5px;
    height: 270.5px;
    left: -20px;
  }
}
@media screen and (max-width: 480px) {
  .yamaguchi__txt .wrap:before {
    width: 78.3px;
    height: 180.3px;
  }
}
.yamaguchi__txt .wrap::after {
  width: 10.4166666667vw;
  height: 27.3958333333vw;
  right: -100px;
  background: url(../images/yamaguchi/yamaguchi__txt-rightimg.png) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .yamaguchi__txt .wrap::after {
    width: 100px;
    height: 263px;
    right: -20px;
  }
}
@media screen and (max-width: 480px) {
  .yamaguchi__txt .wrap::after {
    width: 66.6px;
    height: 175.3px;
  }
}
.yamaguchi__txt p {
  line-height: 2;
}
.yamaguchi__txt h2 {
  margin-bottom: 30px;
}
.yamaguchi__txt h2 .marker {
  font-size: 2.3958333333vw;
  font-weight: 900;
  color: #003288;
}
@media screen and (max-width: 768px) {
  .yamaguchi__txt h2 .marker {
    font-size: 33px;
  }
}
@media screen and (max-width: 480px) {
  .yamaguchi__txt h2 .marker {
    font-size: 24px;
  }
}
.yamaguchi__txt h2 .fs__small {
  display: block;
  margin-top: 10px;
}
.yamaguchi__list {
  padding: 100px 120px;
  color: #fff;
  background: url(../images/yamaguchi/border-bg.png) no-repeat center top/cover;
}
@media screen and (max-width: 768px) {
  .yamaguchi__list {
    padding: 12% 0;
  }
}
@media screen and (max-width: 768px) {
  .yamaguchi__list {
    padding: 50px 0;
  }
}
.yamaguchi__list .ttl__border {
  font-size: 1.5625vw;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .yamaguchi__list .ttl__border {
    font-size: 20px;
    margin-bottom: 4%;
  }
}
@media screen and (max-width: 480px) {
  .yamaguchi__list .ttl__border {
    margin-bottom: 10px;
  }
}
.yamaguchi__list .ttl__border span {
  position: relative;
  padding: 0 35px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .yamaguchi__list .ttl__border span {
    padding: 0 5.5%;
  }
}
@media screen and (max-width: 480px) {
  .yamaguchi__list .ttl__border span {
    padding: 0 20px;
  }
}
.yamaguchi__list .ttl__border span:before, .yamaguchi__list .ttl__border span:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 24px;
  height: 39px;
}
@media screen and (max-width: 480px) {
  .yamaguchi__list .ttl__border span:before, .yamaguchi__list .ttl__border span:after {
    width: 12px;
    height: 19px;
  }
}
.yamaguchi__list .ttl__border span:before {
  right: 0;
  background: url(../images/yamaguchi/ttl-border-right.png) no-repeat center/cover;
}
.yamaguchi__list .ttl__border span:after {
  left: 0;
  background: url(../images/yamaguchi/ttl-border-left.png) no-repeat center/cover;
}
.yamaguchi__list h2 {
  font-size: 4.4791666667vw;
  margin-bottom: 76px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .yamaguchi__list h2 {
    font-size: 46px;
  }
}
@media screen and (max-width: 480px) {
  .yamaguchi__list h2 {
    font-size: 36px;
  }
}
.yamaguchi__list h2 span {
  position: relative;
}
.yamaguchi__list h2 span:before, .yamaguchi__list h2 span:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.yamaguchi__list h2 span:before {
  width: 110px;
  height: 86px;
  left: -122px;
  background: url(../images/yamaguchi/left-img.png) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .yamaguchi__list h2 span:before {
    width: 110px;
    height: 86px;
  }
}
@media screen and (max-width: 480px) {
  .yamaguchi__list h2 span:before {
    width: 36.6px;
    height: 28.6px;
    left: -50px;
  }
}
.yamaguchi__list h2 span:after {
  width: 163px;
  height: 88px;
  right: -180px;
  background: url(../images/yamaguchi/right-img.png) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .yamaguchi__list h2 span:after {
    width: 163px;
    height: 88px;
  }
}
@media screen and (max-width: 480px) {
  .yamaguchi__list h2 span:after {
    width: 54.3px;
    height: 29.3px;
    right: -70px;
  }
}
.yamaguchi__list ol {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 7.4%;
}
.yamaguchi__list ol li {
  width: 46.3%;
  background: #fff;
  border-radius: 40px;
  border: 4px solid #013288;
  padding: 30px 40px;
  margin-bottom: 4%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .yamaguchi__list ol li {
    width: 100%;
  }
}
.yamaguchi__list ol li .obi {
  background: #013288;
  border-radius: 100vh;
  padding: 5px 15px;
  margin-bottom: 17px;
  display: inline-block;
  text-align: center;
}
.yamaguchi__list ol li h3 {
  color: #013288;
  font-size: 2.1875vw;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .yamaguchi__list ol li h3 {
    font-size: 32px;
  }
}
@media screen and (max-width: 480px) {
  .yamaguchi__list ol li h3 {
    font-size: 22px;
  }
}
.yamaguchi__list ol li p {
  color: #191919;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .yamaguchi__list ol li p {
    min-height: 115px;
  }
}
@media screen and (max-width: 768px) {
  .yamaguchi__list ol li p {
    margin-bottom: 4%;
  }
}
@media screen and (max-width: 480px) {
  .yamaguchi__list ol li p {
    margin-bottom: 15px;
    font-size: 14px;
  }
}
.yamaguchi__list ol li .photo {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
.yamaguchi__list ol li .photo img {
  width: 49%;
  margin-bottom: 2%;
}
.yamaguchi__list ol li:last-child {
  width: 100%;
}
.yamaguchi__list ol li:last-child .photo {
  flex-direction: row;
  justify-content: center;
  gap: 2%;
}
.yamaguchi__list ol li:last-child .photo img {
  width: 23%;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .yamaguchi__list ol li:last-child .photo img {
    width: 49%;
    margin-bottom: 2%;
  }
}
.yamaguchi .yamaguchi__pickup .ttl__border {
  color: #fff;
  font-size: 1.5625vw;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .yamaguchi .yamaguchi__pickup .ttl__border {
    font-size: 20px;
    margin-bottom: 4%;
  }
}
@media screen and (max-width: 480px) {
  .yamaguchi .yamaguchi__pickup .ttl__border {
    margin-bottom: 10px;
  }
}
.yamaguchi .yamaguchi__pickup .ttl__border span {
  position: relative;
  padding: 0 35px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .yamaguchi .yamaguchi__pickup .ttl__border span {
    padding: 0 5.5%;
  }
}
@media screen and (max-width: 480px) {
  .yamaguchi .yamaguchi__pickup .ttl__border span {
    padding: 0 20px;
  }
}
.yamaguchi .yamaguchi__pickup .ttl__border span:before, .yamaguchi .yamaguchi__pickup .ttl__border span:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 24px;
  height: 39px;
}
@media screen and (max-width: 480px) {
  .yamaguchi .yamaguchi__pickup .ttl__border span:before, .yamaguchi .yamaguchi__pickup .ttl__border span:after {
    width: 14px;
    height: 22px;
  }
}
.yamaguchi .yamaguchi__pickup .ttl__border span:before {
  right: 0;
  background: url(../images/yamaguchi/ttl-border-right.png) no-repeat center/cover;
}
.yamaguchi .yamaguchi__pickup .ttl__border span:after {
  left: 0;
  background: url(../images/yamaguchi/ttl-border-left.png) no-repeat center/cover;
}
.yamaguchi .yamaguchi__pickup h2 {
  color: #fff;
  font-size: 4.4791666667vw;
  margin-bottom: 76px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .yamaguchi .yamaguchi__pickup h2 {
    font-size: 46px;
  }
}
@media screen and (max-width: 480px) {
  .yamaguchi .yamaguchi__pickup h2 {
    font-size: 36px;
  }
}
.yamaguchi .yamaguchi__pickup .goto {
  color: #fff;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .yamaguchi .yamaguchi__pickup .goto {
    margin-top: 10%;
  }
}
@media screen and (max-width: 480px) {
  .yamaguchi .yamaguchi__pickup .goto {
    margin-top: 40px;
  }
}
.yamaguchi .yamaguchi__pickup .ttl_sub {
  color: #fff;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .yamaguchi .yamaguchi__pickup .ttl_sub {
    margin-bottom: 5%;
  }
}
@media screen and (max-width: 480px) {
  .yamaguchi .yamaguchi__pickup .ttl_sub {
    margin-bottom: 15px;
  }
}
.yamaguchi .yamaguchi__pickup .ttl_sub span {
  padding: 0 20px;
  font-size: 1.4583333333vw;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .yamaguchi .yamaguchi__pickup .ttl_sub span {
    font-size: 22px;
  }
}
@media screen and (max-width: 480px) {
  .yamaguchi .yamaguchi__pickup .ttl_sub span {
    font-size: 18px;
  }
}
.yamaguchi .yamaguchi__pickup .pickup__buttons {
  text-align: center;
}
.yamaguchi .yamaguchi__pickup .pickup__buttons a {
  max-width: 530px;
  margin: 60px auto 0;
}
.yamaguchi .yamaguchi__pickup .comingsoon {
  position: relative;
}
.yamaguchi .yamaguchi__pickup .comingsoon:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
  width: 34.375vw;
  height: 6.25vw;
  background: url(../images/yamaguchi/comingsoon__img.png) no-repeat center/cover;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .yamaguchi .yamaguchi__pickup .comingsoon:before {
    width: 330px;
    height: 60px;
    top: 20vh;
    bottom: auto;
  }
}
.yamaguchi .yamaguchi__pickup .comingsoon .pickup_flex_box {
  opacity: 0.3;
}/*# sourceMappingURL=style.css.map */