@charset "UTF-8";
.slide_wrap {
  padding-top: 80px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .slide_wrap {
    padding-top: 60px;
  }
}

.slide_row {
  margin-top: 20px;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 480px) {
  .slide_row {
    margin-top: 10px;
  }
}

.slide_track {
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.slide_track img {
  width: 250px; /* 好きなサイズ */
  margin-right: 20px;
}
@media (max-width: 480px) {
  .slide_track img {
    margin-right: 10px;
    width: 160px;
  }
}

/* 上段 左 → 右 */
.slide_top .slide_track {
  -webkit-animation: slideRight 80s linear infinite;
          animation: slideRight 80s linear infinite;
}

/* 下段 右 → 左 */
.slide_bottom .slide_track {
  -webkit-animation: slideLeft 80s linear infinite;
          animation: slideLeft 80s linear infinite;
}

/* 右へ */
@-webkit-keyframes slideRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slideRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
/* 左へ */
@-webkit-keyframes slideLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes slideLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.btn_wrap {
  display: flex;
  justify-content: center;
  gap: 30px;
  /* ホバー時：沈む */
  /* クリック時：さらに沈む */
  /* ホバー時：沈む */
  /* クリック時：さらに沈む */
}
@media (max-width: 1050px) {
  .btn_wrap {
    gap: 15px;
  }
}
@media (max-width: 700px) {
  .btn_wrap {
    display: block;
  }
}
.btn_wrap .btn-primary {
  display: inline-block;
  width: 460px;
  height: 70px;
  background: #ec1e79; /* メインピンク */
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 14px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  /* 立体感 */
  box-shadow: 0 6px 0 #c31e79; /* 下の濃い影 */
  /* アニメーション */
  transition: all 0.4s ease;
}
@media (max-width: 700px) {
  .btn_wrap .btn-primary {
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
@media (max-width: 600px) {
  .btn_wrap .btn-primary {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .btn_wrap .btn-primary {
    font-size: 24px;
    height: 55px;
    margin-bottom: 20px;
  }
}
.btn_wrap .btn-primary:hover {
  transform: translateY(3px);
  box-shadow: 0 3px 0 #c31e79;
}
.btn_wrap .btn-primary:active {
  transform: translateY(6px);
  box-shadow: 0 0 0 #c31e79;
}
.btn_wrap .btn-primary2 {
  display: inline-block;
  width: 460px;
  height: 70px;
  background: #989898; /* メインピンク */
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 14px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  /* 立体感 */
  box-shadow: 0 6px 0 #808080; /* 下の濃い影 */
  /* アニメーション */
  transition: all 0.4s ease;
}
@media (max-width: 700px) {
  .btn_wrap .btn-primary2 {
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .btn_wrap .btn-primary2 {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .btn_wrap .btn-primary2 {
    font-size: 24px;
    height: 55px;
  }
}
.btn_wrap .btn-primary2:hover {
  transform: translateY(3px);
  box-shadow: 0 3px 0 #808080;
}
.btn_wrap .btn-primary2:active {
  transform: translateY(6px);
  box-shadow: 0 0 0 #808080;
}

.fv_main {
  padding-bottom: 110px;
}
@media (max-width: 480px) {
  .fv_main {
    padding-bottom: 65px;
  }
}
.fv_main .fv_main_ttl_con {
  margin-top: 30px;
}
.fv_main .fv_main_ttl_con .inner {
  width: 925px;
  margin: 0 auto;
}
@media (max-width: 1050px) {
  .fv_main .fv_main_ttl_con .inner {
    width: calc(100% - 100px);
  }
}
@media (max-width: 480px) {
  .fv_main .fv_main_ttl_con .inner {
    width: calc(100% - 60px);
  }
}
.fv_main .fv_main_ttl_con .inner .sub1 {
  margin-bottom: 10px;
  text-align: center;
}
.fv_main .fv_main_ttl_con .inner .sub1 span {
  padding: 0 60px;
  display: inline-block;
  color: #fff;
  background: #1b357d;
  font-weight: bold;
  font-size: 28px;
  text-align: center;
  border-radius: 9999px;
}
@media (max-width: 600px) {
  .fv_main .fv_main_ttl_con .inner .sub1 span {
    font-size: 22px;
    padding: 5px 30px;
  }
}
@media (max-width: 480px) {
  .fv_main .fv_main_ttl_con .inner .sub1 span {
    font-size: 18px;
  }
}
.fv_main .fv_main_ttl_con .inner .sub1 .sp_only {
  display: none;
}
@media (max-width: 800px) {
  .fv_main .fv_main_ttl_con .inner .sub1 .sp_only {
    display: block;
  }
}
.fv_main .fv_main_ttl_con .inner .main {
  text-align: center;
  font-size: 35px;
  letter-spacing: 0.1em;
  color: #1b357d;
  line-height: 1.35;
}
@media (max-width: 700px) {
  .fv_main .fv_main_ttl_con .inner .main {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .fv_main .fv_main_ttl_con .inner .main {
    font-size: 20px;
  }
}
.fv_main .fv_main_ttl_con .inner .main span {
  font-size: 50px;
  color: #1b357d;
}
@media (max-width: 700px) {
  .fv_main .fv_main_ttl_con .inner .main span {
    font-size: 38px;
  }
}
@media (max-width: 480px) {
  .fv_main .fv_main_ttl_con .inner .main span {
    font-size: 28px;
  }
}
.fv_main .fv_main_ttl_con .inner .main span .sp_only {
  display: none;
}
@media (max-width: 1020px) {
  .fv_main .fv_main_ttl_con .inner .main span .sp_only {
    display: block;
  }
}
@media (max-width: 480px) {
  .fv_main .fv_main_ttl_con .inner .main span.span1 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .fv_main .fv_main_ttl_con .inner .main span.span2 {
    display: block;
    margin: 7px 0;
  }
}
.fv_main .fv_main_ttl_con .inner .sub2 {
  margin-bottom: 10px;
  color: #1b357d;
  font-size: 38px;
  text-align: center;
  font-weight: bold;
}
@media (max-width: 700px) {
  .fv_main .fv_main_ttl_con .inner .sub2 {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .fv_main .fv_main_ttl_con .inner .sub2 {
    font-size: 18px;
  }
}

.about_program {
  padding: 50px 0 110px;
  background: #1b357d;
}
@media (max-width: 480px) {
  .about_program {
    padding: 50px 0 65px;
  }
}
.about_program .inner {
  width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .about_program .inner {
    width: calc(100% - 100px);
  }
}
@media (max-width: 480px) {
  .about_program .inner {
    width: calc(100% - 60px);
  }
}
.about_program .inner .p_wrap1 {
  display: flex;
  gap: 15px;
}
@media (max-width: 800px) {
  .about_program .inner .p_wrap1 {
    display: block;
  }
}
.about_program .inner .p_wrap1 .left {
  margin-top: 50px;
}
@media (max-width: 800px) {
  .about_program .inner .p_wrap1 .left {
    margin-top: 15px;
  }
}
@media (max-width: 480px) {
  .about_program .inner .p_wrap1 .left {
    margin-top: 9px;
  }
}
.about_program .inner .p_wrap1 .left .p_ttl {
  margin-bottom: 32px;
  color: #fff;
  font-size: 38px;
  letter-spacing: 0.1em;
  line-height: 1.35;
}
@media (max-width: 905px) {
  .about_program .inner .p_wrap1 .left .p_ttl {
    font-size: 32px;
  }
}
@media (max-width: 800px) {
  .about_program .inner .p_wrap1 .left .p_ttl {
    font-size: 38px;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .about_program .inner .p_wrap1 .left .p_ttl {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .about_program .inner .p_wrap1 .left .p_ttl {
    margin-bottom: 24px;
    font-size: 24px;
  }
}
.about_program .inner .p_wrap1 .left .p_txt {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.075em;
}
@media (max-width: 600px) {
  .about_program .inner .p_wrap1 .left .p_txt {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .about_program .inner .p_wrap1 .left .p_txt {
    font-size: 18px;
  }
}
.about_program .inner .p_wrap1 .left .p_txt span {
  color: #fbed21;
}
.about_program .inner .p_wrap1 .right {
  width: 500px;
  flex: 0 0 500px;
}
@media (max-width: 1215px) {
  .about_program .inner .p_wrap1 .right {
    width: 46%;
    flex: none;
  }
}
@media (max-width: 800px) {
  .about_program .inner .p_wrap1 .right {
    width: 100%;
  }
}
.about_program .inner .p_wrap1 .right img {
  width: 100%;
}
.about_program .inner .l_sec .ttl_con {
  margin-top: 90px;
  text-align: center;
}
@media (max-width: 480px) {
  .about_program .inner .l_sec .ttl_con {
    margin-top: 50px;
  }
}
.about_program .inner .l_sec .ttl_con .ttl {
  display: inline-block;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  font-size: 35px;
  color: #fff;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (max-width: 900px) {
  .about_program .inner .l_sec .ttl_con .ttl {
    line-height: 1.5;
  }
}
@media (max-width: 600px) {
  .about_program .inner .l_sec .ttl_con .ttl {
    font-size: 24px;
    padding: 10px 0;
  }
}
@media (max-width: 480px) {
  .about_program .inner .l_sec .ttl_con .ttl {
    font-size: 20px;
  }
}
.about_program .inner .l_sec .ttl_con .ttl .span1 {
  font-size: 55px;
}
@media (max-width: 600px) {
  .about_program .inner .l_sec .ttl_con .ttl .span1 {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .about_program .inner .l_sec .ttl_con .ttl .span1 {
    font-size: 35px;
  }
}
.about_program .inner .l_sec .ttl_con .ttl .span2 {
  font-size: 55px;
}
@media (max-width: 600px) {
  .about_program .inner .l_sec .ttl_con .ttl .span2 {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .about_program .inner .l_sec .ttl_con .ttl .span2 {
    font-size: 35px;
  }
}
.about_program .inner .l_sec .ttl_con .ttl .sp_only {
  display: none;
}
@media (max-width: 900px) {
  .about_program .inner .l_sec .ttl_con .ttl .sp_only {
    display: block;
  }
}
.about_program .inner .l_sec .l_point_con .l_point_wrap1 {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
}
@media (max-width: 1200px) {
  .about_program .inner .l_sec .l_point_con .l_point_wrap1 {
    gap: 30px;
  }
}
@media (max-width: 800px) {
  .about_program .inner .l_sec .l_point_con .l_point_wrap1 {
    display: block;
    margin-top: 0;
  }
}
.about_program .inner .l_sec .l_point_con .l_point_wrap1 .l_point_b {
  position: relative;
  border-radius: 16px;
  width: 340px;
}
@media (max-width: 1200px) {
  .about_program .inner .l_sec .l_point_con .l_point_wrap1 .l_point_b {
    width: 30%;
  }
}
@media (max-width: 800px) {
  .about_program .inner .l_sec .l_point_con .l_point_wrap1 .l_point_b {
    width: 340px;
    margin: 0 auto;
    margin-bottom: 50px;
  }
}
@media (max-width: 430px) {
  .about_program .inner .l_sec .l_point_con .l_point_wrap1 .l_point_b {
    width: 100%;
  }
}
@media (max-width: 800px) {
  .about_program .inner .l_sec .l_point_con .l_point_wrap1 .l_point_b:first-of-type {
    margin-top: 50px;
  }
}
@media (max-width: 800px) {
  .about_program .inner .l_sec .l_point_con .l_point_wrap1 .l_point_b:last-of-type {
    margin-bottom: 0;
  }
}
.about_program .inner .l_sec .l_point_con .l_point_wrap1 .l_point_b:before {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.about_program .inner .l_sec .l_point_con .l_point_wrap1 .l_point_b .l_p_pic img {
  width: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px 16px 0 0;
}
.about_program .inner .l_sec .l_point_con .l_point_wrap1 .l_point_b .l_p_txt {
  background: #fff;
  color: #1b357d;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding: 10px;
  border-radius: 0 0 16px 16px;
}
@media (max-width: 1200px) {
  .about_program .inner .l_sec .l_point_con .l_point_wrap1 .l_point_b .l_p_txt {
    font-size: 16px;
  }
}
@media (max-width: 800px) {
  .about_program .inner .l_sec .l_point_con .l_point_wrap1 .l_point_b .l_p_txt {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .about_program .inner .l_sec .l_point_con .l_point_wrap1 .l_point_b .l_p_txt {
    font-size: 16px;
  }
}
.about_program .inner .l_sec .l_point_con .l_point_wrap1 .b1:before {
  background-image: url(../img/num1.png);
  width: 80px;
  height: 69px;
  top: -35px;
  right: -10px;
}
@media (max-width: 480px) {
  .about_program .inner .l_sec .l_point_con .l_point_wrap1 .b1:before {
    width: 50px;
    height: 39px;
    top: -21px;
    right: -6px;
  }
}
.about_program .inner .l_sec .l_point_con .l_point_wrap1 .b2:before {
  background-image: url(../img/num2.png);
  width: 90px;
  height: 69px;
  top: -35px;
  right: -23px;
}
@media (max-width: 480px) {
  .about_program .inner .l_sec .l_point_con .l_point_wrap1 .b2:before {
    width: 50px;
    height: 39px;
    top: -21px;
    right: -12px;
  }
}
.about_program .inner .l_sec .l_point_con .l_point_wrap1 .b3:before {
  background-image: url(../img/num3.png);
  width: 90px;
  height: 69px;
  top: -35px;
  right: -23px;
}
@media (max-width: 480px) {
  .about_program .inner .l_sec .l_point_con .l_point_wrap1 .b3:before {
    width: 50px;
    height: 39px;
    top: -20px;
    right: -11px;
  }
}
.about_program .inner .l_sec .l_point_con .l_point_wrap1 .b4:before {
  background-image: url(../img/num4.png);
  width: 93px;
  height: 69px;
  top: -35px;
  right: -26px;
}
@media (max-width: 480px) {
  .about_program .inner .l_sec .l_point_con .l_point_wrap1 .b4:before {
    width: 53px;
    height: 39px;
    top: -20px;
    right: -9px;
  }
}
.about_program .inner .l_sec .l_point_con .l_point_wrap1 .b5:before {
  background-image: url(../img/num5.png);
  width: 90px;
  height: 69px;
  top: -35px;
  right: -22px;
}
@media (max-width: 480px) {
  .about_program .inner .l_sec .l_point_con .l_point_wrap1 .b5:before {
    width: 50px;
    height: 39px;
    top: -20px;
    right: -11px;
  }
}

.member_benefits {
  padding: 110px 0;
}
@media (max-width: 480px) {
  .member_benefits {
    padding: 65px 0;
  }
}
.member_benefits .inner {
  width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .member_benefits .inner {
    width: calc(100% - 100px);
  }
}
@media (max-width: 480px) {
  .member_benefits .inner {
    width: calc(100% - 60px);
  }
}
.member_benefits .inner .ttl_con {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.member_benefits .inner .ttl_con .ttl {
  border-top: 1px solid #1b357d;
  border-bottom: 1px solid #1b357d;
  font-size: 35px;
  color: #1b357d;
}
@media (max-width: 600px) {
  .member_benefits .inner .ttl_con .ttl {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .member_benefits .inner .ttl_con .ttl {
    font-size: 22px;
  }
}
.member_benefits .inner .ttl_con .ttl span {
  position: relative;
  color: #fff;
  font-size: 60px;
  padding: 0 16px;
}
@media (max-width: 600px) {
  .member_benefits .inner .ttl_con .ttl span {
    font-size: 45px;
    padding: 0 10px;
  }
}
@media (max-width: 480px) {
  .member_benefits .inner .ttl_con .ttl span {
    font-size: 40px;
  }
}
.member_benefits .inner .ttl_con .ttl span:before {
  position: absolute;
  background-image: url(../img/ttl-bubble-bg.png);
  z-index: -1;
  content: "";
  width: 80px;
  height: 80px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  right: 6px;
  top: -8px;
}
@media (max-width: 600px) {
  .member_benefits .inner .ttl_con .ttl span:before {
    width: 60px;
    height: 60px;
    right: 1px;
    top: -6px;
  }
}
@media (max-width: 480px) {
  .member_benefits .inner .ttl_con .ttl span:before {
    width: 55px;
    height: 55px;
    right: 2px;
  }
}
.member_benefits .inner .benefit_img {
  margin-top: 50px;
  margin-bottom: 50px;
}
.member_benefits .inner .benefit_img img {
  width: 100%;
}
.member_benefits .inner .thinking {
  position: relative;
  border: 7px solid #1b357d;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  gap: 10px;
  margin-top: 105px;
  margin-bottom: 80px;
  padding: 30px;
}
.member_benefits .inner .thinking .ssp_only {
  display: none;
}
@media (max-width: 480px) {
  .member_benefits .inner .thinking .ssp_only {
    display: block;
  }
}
@media (max-width: 480px) {
  .member_benefits .inner .thinking {
    margin-top: 65px;
    padding: 15px;
  }
}
.member_benefits .inner .thinking .deco1 {
  position: absolute;
  width: 35px;
  top: -7.5px;
  right: -7px;
}
@media (max-width: 480px) {
  .member_benefits .inner .thinking .deco1 {
    top: -8.5px;
    right: -8px;
  }
}
.member_benefits .inner .thinking .deco1 img {
  width: 100%;
}
.member_benefits .inner .thinking .deco2 {
  position: absolute;
  width: 35px;
  bottom: -12.5px;
  right: -3px;
  transform: rotate(90deg);
}
@media (max-width: 480px) {
  .member_benefits .inner .thinking .deco2 {
    right: -4px;
  }
}
.member_benefits .inner .thinking .deco2 img {
  width: 100%;
}
.member_benefits .inner .thinking .deco3 {
  position: absolute;
  width: 35px;
  bottom: -12.5px;
  left: -3px;
  transform: rotate(270deg);
}
@media (max-width: 480px) {
  .member_benefits .inner .thinking .deco3 {
    left: -4px;
  }
}
.member_benefits .inner .thinking .deco3 img {
  width: 100%;
}
.member_benefits .inner .thinking .deco4 {
  position: absolute;
  width: 35px;
  top: -7.9px;
  left: -7px;
  transform: rotate(360deg);
}
@media (max-width: 480px) {
  .member_benefits .inner .thinking .deco4 {
    left: -8px;
  }
}
.member_benefits .inner .thinking .deco4 img {
  width: 100%;
}
.member_benefits .inner .thinking .t_ttl {
  font-size: 35px;
  color: #1b357d;
  text-align: center;
  letter-spacing: 0.1em;
  width: 100%;
}
@media (max-width: 700px) {
  .member_benefits .inner .thinking .t_ttl {
    line-height: 1.5;
  }
}
.member_benefits .inner .thinking .t_ttl .sp_only {
  display: none;
}
@media (max-width: 700px) {
  .member_benefits .inner .thinking .t_ttl .sp_only {
    display: block;
  }
}
@media (max-width: 600px) {
  .member_benefits .inner .thinking .t_ttl {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .member_benefits .inner .thinking .t_ttl {
    font-size: 24px;
  }
}
.member_benefits .inner .thinking .t_txt {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 600px) {
  .member_benefits .inner .thinking .t_txt {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .member_benefits .inner .thinking .t_txt {
    font-size: 18px;
  }
}
.member_benefits .inner .model .m_ttl {
  font-size: 35px;
  color: #1b357d;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .member_benefits .inner .model .m_ttl {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .member_benefits .inner .model .m_ttl {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.member_benefits .inner .model .m_wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .member_benefits .inner .model .m_wrap {
    gap: 30px;
  }
}
@media (max-width: 800px) {
  .member_benefits .inner .model .m_wrap {
    flex-direction: column-reverse;
  }
}
@media (max-width: 480px) {
  .member_benefits .inner .model .m_wrap {
    margin-bottom: 30px;
  }
}
.member_benefits .inner .model .m_wrap .left {
  width: 550px;
}
@media (max-width: 800px) {
  .member_benefits .inner .model .m_wrap .left {
    width: 100%;
  }
}
.member_benefits .inner .model .m_wrap .left .left_img {
  width: 200px;
  margin: 0 auto;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .member_benefits .inner .model .m_wrap .left .left_img {
    width: 150px;
  }
}
.member_benefits .inner .model .m_wrap .left .left_img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.member_benefits .inner .model .m_wrap .left .left_txt {
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .member_benefits .inner .model .m_wrap .left .left_txt {
    font-size: 20px;
  }
}
@media (max-width: 800px) {
  .member_benefits .inner .model .m_wrap .left .left_txt {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .member_benefits .inner .model .m_wrap .left .left_txt {
    font-size: 18px;
  }
}
.member_benefits .inner .model .m_wrap .right {
  width: 510px;
}
@media (max-width: 800px) {
  .member_benefits .inner .model .m_wrap .right {
    margin: 0 auto;
  }
}
@media (max-width: 630px) {
  .member_benefits .inner .model .m_wrap .right {
    width: 100%;
  }
}
.member_benefits .inner .model .m_wrap .right img {
  width: 100%;
}
.member_benefits .inner .achieve_img img.pc_only {
  width: 100%;
}
@media (max-width: 750px) {
  .member_benefits .inner .achieve_img img.pc_only {
    display: none;
  }
}
.member_benefits .inner .achieve_img img.sp_only {
  display: none;
}
@media (max-width: 750px) {
  .member_benefits .inner .achieve_img img.sp_only {
    width: 100%;
    display: block;
  }
}
.member_benefits .inner .achieve_img2 {
  margin-top: -110px;
}
@media (max-width: 1200px) {
  .member_benefits .inner .achieve_img2 {
    margin-top: 50px;
  }
}
.member_benefits .inner .achieve_img2 img.pc_only {
  width: 100%;
}
@media (max-width: 750px) {
  .member_benefits .inner .achieve_img2 img.pc_only {
    display: none;
  }
}
.member_benefits .inner .achieve_img2 img.sp_only {
  display: none;
}
@media (max-width: 750px) {
  .member_benefits .inner .achieve_img2 img.sp_only {
    width: 100%;
    display: block;
  }
}
.member_benefits .inner .intro_txt {
  margin-top: 40px;
  color: #ed1e79;
  font-size: 38px;
  font-weight: bold;
  line-height: 1.35;
  letter-spacing: 0.075em;
}
@media (max-width: 750px) {
  .member_benefits .inner .intro_txt {
    text-align: center;
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .member_benefits .inner .intro_txt {
    font-size: 24px;
  }
}
.member_benefits .inner .intro_txt .sp_only {
  display: none;
}
@media (max-width: 480px) {
  .member_benefits .inner .intro_txt .sp_only {
    display: block;
  }
}

@media (max-width: 480px) {
  .benefit_img {
    position: relative;
  }
  .benefit_img .zoom_hint {
    position: absolute;
    right: 0;
    bottom: 7px;
    width: 50px !important;
    height: auto;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s linear;
    pointer-events: none;
  }
  .benefit_img.show-zoom .zoom_hint {
    opacity: 1;
  }
}
.benefit_img img.zoom_hint {
  display: none;
}
@media (max-width: 480px) {
  .benefit_img img.zoom_hint {
    display: block;
  }
}

.right img.zoom_hint {
  display: none;
}
@media (max-width: 480px) {
  .right img.zoom_hint {
    display: block;
  }
}

@media (max-width: 480px) {
  .member_benefits .inner .model .m_wrap .right {
    position: relative;
  }
  .member_benefits .inner .model .m_wrap .right .zoom_hint {
    position: absolute;
    right: 0;
    bottom: 19px;
    width: 50px;
    height: auto;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s linear;
    pointer-events: none;
  }
  .member_benefits .inner .model .m_wrap .right.show-zoom .zoom_hint {
    opacity: 1;
  }
}
.benefit_modal_content {
  position: relative;
}

.modal_zoom_hint {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 42px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

/* 表示アニメ */
.modal_zoom_hint.show {
  -webkit-animation: zoomFade 3s ease forwards;
          animation: zoomFade 3s ease forwards;
}

@-webkit-keyframes zoomFade {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  15% {
    opacity: 1;
    transform: translateY(0);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@keyframes zoomFade {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  15% {
    opacity: 1;
    transform: translateY(0);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}
.benefit_modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.benefit_modal_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.benefit_modal_content {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.benefit_modal_content img {
  width: 90vw;
  height: auto;
  display: block;
  transition: width 0.4s ease;
}
.benefit_modal_close {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
  transition: transform 0.2s ease;
}
.benefit_modal_close:hover {
  transform: scale(1.2);
}
.benefit_modal.active {
  visibility: visible;
  opacity: 1;
}
.benefit_modal.active .benefit_modal_content {
  transform: scale(1);
  opacity: 1;
}
.benefit_modal.active .modal_pic {
  position: relative;
}
.benefit_modal.zoomed .benefit_modal_content {
  overflow: auto;
  justify-content: flex-start;
}
.benefit_modal.zoomed img {
  width: 180vw;
  max-width: none;
}

.modal_zoom_hint {
  position: absolute;
  right: 0px;
  bottom: 10px;
  width: 50px !important;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  z-index: 10;
  display: none;
}
@media (max-width: 480px) {
  .modal_zoom_hint {
    display: block;
  }
}

/* モーダルが開いたら自動再生 */
.benefit_modal.active .modal_zoom_hint {
  -webkit-animation: modalZoomFade 3s ease forwards;
          animation: modalZoomFade 3s ease forwards;
}

@-webkit-keyframes modalZoomFade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes modalZoomFade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* モバイル専用カーソル表示 */
@media (max-width: 479px) {
  .benefit_img {
    cursor: pointer;
  }
}
.voice_sec .voice_ttl {
  margin-top: 20px;
  color: #ed1e79;
  font-size: 38px;
  font-weight: bold;
  line-height: 1.35;
  text-align: center;
  letter-spacing: 0.075em;
}
@media (max-width: 600px) {
  .voice_sec .voice_ttl {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .voice_sec .voice_ttl {
    font-size: 24px;
  }
}
.voice_sec .voice_ttl .sp_only {
  display: none;
}
@media (max-width: 900px) {
  .voice_sec .voice_ttl .sp_only {
    display: block;
  }
}
.voice_sec .swiper {
  padding: 50px 0 0;
}
@media (max-width: 480px) {
  .voice_sec .swiper {
    padding: 30px 0 0;
  }
}
.voice_sec .swiper .swiper-wrapper .swiper-slide img {
  height: auto;
  width: 100%;
  border-radius: 12px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.qa {
  padding: 130px 0 100px;
  background: #1b357d;
}
@media (max-width: 480px) {
  .qa {
    padding: 65px 0;
  }
}
.qa .inner {
  width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .qa .inner {
    width: calc(100% - 100px);
  }
}
@media (max-width: 480px) {
  .qa .inner {
    width: calc(100% - 60px);
  }
}
.qa .inner .q_ttl {
  color: #fff;
  font-size: 38px;
  font-weight: bold;
  line-height: 1.35;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 480px) {
  .qa .inner .q_ttl {
    margin-bottom: 30px;
  }
}
@media (max-width: 600px) {
  .qa .inner .q_ttl {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .qa .inner .q_ttl {
    font-size: 24px;
  }
}
.qa .inner .qa_con {
  /* Q行 */
  /* A行 */
  /* Q / A ラベル */
}
.qa .inner .qa_con .qa_b {
  margin-bottom: 50px;
  /* 共通行デザイン */
}
@media (max-width: 480px) {
  .qa .inner .qa_con .qa_b {
    margin-bottom: 30px;
  }
}
.qa .inner .qa_con .qa_b:last-of-type {
  margin-bottom: 75px;
}
@media (max-width: 480px) {
  .qa .inner .qa_con .qa_b:last-of-type {
    margin-bottom: 50px;
  }
}
.qa .inner .qa_con .qa_b .qa_q,
.qa .inner .qa_con .qa_b .qa_a {
  padding: 12px 24px;
  display: flex;
  font-weight: bold;
  font-size: 25px;
  color: #243b7b;
}
@media (max-width: 700px) {
  .qa .inner .qa_con .qa_b .qa_q,
.qa .inner .qa_con .qa_b .qa_a {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .qa .inner .qa_con .qa_b .qa_q,
.qa .inner .qa_con .qa_b .qa_a {
    font-size: 16px;
    padding: 12px;
  }
}
.qa .inner .qa_con .qa_q {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #fff;
  background: #fff;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
  border-radius: 12px 12px 0 0;
}
.qa .inner .qa_con .qa_a {
  position: relative;
  z-index: 0;
  background: #f1f1f1;
  border-radius: 0 0 12px 12px;
}
.qa .inner .qa_con .qa_a .a_text .ssp_only {
  display: none;
}
@media (max-width: 480px) {
  .qa .inner .qa_con .qa_a .a_text .ssp_only {
    display: block;
  }
}
.qa .inner .qa_con .q_label,
.qa .inner .qa_con .a_label {
  font-size: 25px;
}
@media (max-width: 825px) {
  .qa .inner .qa_con .q_label,
.qa .inner .qa_con .a_label {
    width: 33px;
    flex: 0 0 33px;
  }
}
@media (max-width: 700px) {
  .qa .inner .qa_con .q_label,
.qa .inner .qa_con .a_label {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .qa .inner .qa_con .q_label,
.qa .inner .qa_con .a_label {
    font-size: 16px;
    width: 24px;
    flex: 0 0 24px;
  }
}

.contact_txt {
  margin: 50px 0;
  color: #fff;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 480px) {
  .contact_txt {
    font-size: 20px;
    margin: 50px 0 30px;
  }
}
.contact_txt .ssp_only {
  display: none;
}
@media (max-width: 480px) {
  .contact_txt .ssp_only {
    display: block;
  }
}

.contact_b {
  text-align: center;
}
.contact_b a {
  padding: 15px 20px;
  border: 2px solid #fff;
  display: inline-block;
}
.contact_b a .c_txt1 {
  color: #fff;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 600px) {
  .contact_b a .c_txt1 {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .contact_b a .c_txt1 {
    font-size: 16px;
  }
}
.contact_b a .c_txt2 {
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
@media (max-width: 600px) {
  .contact_b a .c_txt2 {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .contact_b a .c_txt2 {
    font-size: 32px;
  }
}

.hdr_main .hdr_wrap .left a {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
}

@media (max-width: 1200px) {
  .hdr_main .hdr_wrap .left a {
    font-size: 18px;
  }
}
.member_benefits .inner .achieve_sec {
  position: relative;
  background: #1b357d;
}

.member_benefits .inner .achieve_sec .date {
  position: absolute;
  color: #fff;
  top: 10px;
  right: 10px;
  font-weight: bold;
}

.member_benefits .inner .achieve_sec .achieve_ttl {
  text-align: center;
  color: #fff;
  padding: 8px 0;
  font-size: 24px;
}

.member_benefits .inner .achieve_sec .achieve_wrap {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 30px 0;
}

.member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b1 {
  display: inline-block;
  position: relative;
  background: #fff;
  padding: 10px;
}

.member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b1:before {
  position: absolute;
  background-image: url(../img/achieve-i1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 110px;
  height: 72px;
  content: "";
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
}

.member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b1 .b_wrap {
  display: flex;
  align-items: center;
  gap: 5px;
}

.member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b1 .b_wrap .left_i {
  width: 28px;
  flex: 0 0 28px;
}

.member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b1 .b_wrap .left_i img {
  width: 100%;
}

.member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b1 .b_wrap .right_txt {
  font-size: 24px;
  font-weight: bold;
  color: #1b357d;
}

.member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b1 .b_wrap .right_txt span {
  color: #1b357d;
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 80px;
  line-height: 1.25;
}

.member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b1 .a_txt2 {
  text-align: center;
  color: #1b357d;
  font-size: 20px;
  font-weight: bold;
}

.member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b2 {
  display: inline-block;
  position: relative;
  background: #fff;
  padding: 10px;
}

.member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b2:before {
  position: absolute;
  background-image: url(../img/achieve-i2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 110px;
  height: 72px;
  content: "";
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
}

.member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b2 .b_wrap {
  display: flex;
  align-items: center;
  gap: 5px;
}

.member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b2 .b_wrap .left_i {
  width: 28px;
  flex: 0 0 28px;
}

.member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b2 .b_wrap .left_i img {
  width: 100%;
}

.member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b2 .b_wrap .right_txt {
  font-size: 24px;
  font-weight: bold;
  color: #1b357d;
}

.member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b2 .b_wrap .right_txt span {
  color: #1b357d;
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 80px;
  line-height: 1.25;
}

.member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b2 .a_txt2 {
  text-align: center;
  color: #1b357d;
  font-size: 20px;
  font-weight: bold;
}

@media (max-width: 1125px) {
  .member_benefits .inner .achieve_sec .achieve_ttl {
    padding: 20px 0;
  }
}
@media (max-width: 1125px) {
  .member_benefits .inner .achieve_sec .achieve_wrap {
    flex-direction: column;
    gap: 100px;
    padding: 70px 0 30px;
  }
}
@media (max-width: 1125px) {
  .member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con {
    text-align: center;
  }
}
@media (max-width: 800px) {
  .member_benefits .inner .achieve_sec .achieve_ttl {
    padding: 40px 0 20px;
  }
}
@media (max-width: 665px) {
  .member_benefits .inner .achieve_sec .achieve_wrap {
    padding: 50px 0 30px;
    gap: 70px;
  }
}
@media (max-width: 665px) {
  .member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b1 {
    width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 665px) {
  .member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b1 .b_wrap {
    justify-content: center;
  }
}
@media (max-width: 665px) {
  .member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b1 .b_wrap .right_txt span {
    font-size: 45px;
  }
}
@media (max-width: 665px) {
  .member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b1 .b_wrap .left_i {
    width: 19px;
    flex: 0 0 19px;
  }
}
@media (max-width: 665px) {
  .member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b2 {
    width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 665px) {
  .member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b2 .b_wrap {
    justify-content: center;
  }
}
@media (max-width: 665px) {
  .member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b2 .b_wrap .left_i {
    width: 19px;
    flex: 0 0 19px;
  }
}
@media (max-width: 665px) {
  .member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b2 .b_wrap .right_txt span {
    font-size: 45px;
  }
}
@media (max-width: 600px) {
  .member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b1:before {
    width: 80px;
    height: 52px;
    content: "";
    top: -39px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 600px) {
  .member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b2:before {
    width: 80px;
    height: 52px;
    content: "";
    top: -39px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 550px) {
  .member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b1 {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .member_benefits .inner .achieve_sec .achieve_wrap {
    padding: 30px 20px 30px;
    gap: 50px;
  }
}
@media (max-width: 480px) {
  .member_benefits .inner .achieve_sec .achieve_ttl {
    font-size: 20px;
  }
}
@media (max-width: 450px) {
  .member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b1 .b_wrap .left_i {
    width: 16px;
    flex: 0 0 16px;
    position: relative;
    top: 4px;
  }
}
@media (max-width: 450px) {
  .member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b1 .b_wrap .right_txt {
    font-size: 18px;
  }
}
@media (max-width: 450px) {
  .member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b1 .b_wrap .right_txt span {
    font-size: 35px;
  }
}
@media (max-width: 450px) {
  .member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b1 .a_txt2 {
    font-size: 12px;
  }
}
@media (max-width: 550px) {
  .member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b2 {
    width: 100%;
  }
}
@media (max-width: 450px) {
  .member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b2 .b_wrap .left_i {
    width: 16px;
    flex: 0 0 16px;
    position: relative;
    top: 4px;
  }
}
@media (max-width: 450px) {
  .member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b2 .b_wrap .right_txt {
    font-size: 18px;
  }
}
@media (max-width: 450px) {
  .member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b2 .b_wrap .right_txt span {
    font-size: 35px;
  }
}
@media (max-width: 450px) {
  .member_benefits .inner .achieve_sec .achieve_wrap .achieve_b_con .achieve_b2 .a_txt2 {
    font-size: 12px;
  }
}/*# sourceMappingURL=top.css.map */