@charset "UTF-8";
/**************************\
  Basic Modal Styles
\**************************/
#modal-1.is-open {
  display: block;
}

.modal {
  display: none;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(72, 72, 72, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__container {
  background-color: #fff;
  padding: 30px;
  margin-right: 20px;
  margin-left: 20px;
  max-width: 640px;
  max-height: 100vh;
  width: 100%;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
}

.modal__header .modal__close:before {
  content: "\2715";
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

.modal__btn {
  font-size: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #1b95e0;
  color: #fff;
  border-radius: 4px;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  width: 100%;
  max-width: 320px;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.modal__btn:focus,
.modal__btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/* ページネーション */
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -25px;
}

html {
  scrollbar-gutter: stable;
}

img {
  max-width: 100%;
}

.container-in {
  width: 100%;
  max-width: 1020px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}

.section-main-mv {
  width: 100%;
  background: #eff7ef;
}

.section1 {
  background: #f5f5f5;
  padding: 60px 0;
  color: #0054a7;
}
.section1 .section1-ttl {
  font-weight: bold;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
}
.section1 .section1-text {
  margin-top: 15px;
  font-size: 14px;
  line-height: 24px;
  text-align: left;
}
.section1 .box-list {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}
.section1 .box-list li {
  width: calc((100% - 30px) / 3);
  text-align: center;
  position: relative;
  z-index: 1;
  /* 影 */
  /* 画像 */
}
.section1 .box-list li:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background: #efefef;
  transform: translate(7px, 7px);
  z-index: 0;
}
.section1 .box-list li .box-in {
  position: relative;
  padding: 50px 20px 35px;
  background: #fff;
  border-radius: 40px;
  z-index: 1;
}
.section1 .box-list li .box-ttl {
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: #0054a7;
}
.section1 .box-list li .box-ttl span {
  background-color: #fff500;
}
.section1 .box-list li .box-img {
  margin-top: 25px;
}
.section1 .box-list li .box-img img {
  width: auto;
  height: 133px;
}
@media screen and (max-width: 768px) {
  .section1 {
    padding: 30px 0 40px 0;
  }
  .section1 .section1-ttl {
    font-size: 18px;
    line-height: 32px;
  }
  .section1 .section1-text {
    font-size: 12px;
    line-height: 18px;
  }
  .section1 .box-list {
    margin-top: 40px;
    display: block;
  }
  .section1 .box-list li {
    width: 100%;
    margin-top: 15px;
  }
  .section1 .box-list li:after {
    border-radius: 20px;
    transform: translate(5px, 5px);
  }
  .section1 .box-list li:first-child {
    margin-top: 0;
  }
  .section1 .box-list li .box-in {
    position: relative;
    padding: 30px 20px 30px;
    border-radius: 20px;
    z-index: 1;
  }
  .section1 .box-list li:nth-child(1) .box-img img {
    width: auto;
    height: 100px;
  }
  .section1 .box-list li:nth-child(2) .box-img img {
    width: auto;
    height: 135px;
  }
  .section1 .box-list li:nth-child(3) .box-img img {
    width: auto;
    height: 126px;
  }
}

.section2 {
  background: #f5f5f5;
  position: relative;
}
.section2 .section-bg {
  width: 100%;
  height: 390px;
  background: #ebebeb;
  clip-path: ellipse(65% 100% at 50% 100%);
  text-align: center;
  width: 1;
}
.section2 .section-contents {
  width: 100%;
  background: #ebebeb;
  padding-bottom: 80px;
  margin-top: -100px;
  position: relative;
}
.section2 .speech-ttl {
  width: 620px;
  /* 適宜調整 */
  height: 90px;
  /* 適宜調整 */
  background: #ff5885;
  /* 色 */
  border-radius: 999px;
  /* 丸み */
  position: absolute;
  top: -150px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.section2 .speech-ttl .box-in {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section2 .speech-ttl .box-in:after {
  content: "";
  position: absolute;
  bottom: -32px;
  /* 三角の位置 */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 28px solid transparent;
  border-right: 28px solid transparent;
  border-top: 50px solid #ff5885;
  /* 吹き出しと同色 */
}
.section2 .speech-ttl .box-in p {
  font-weight: 900;
  font-size: 27px;
  letter-spacing: 0.04em;
  line-height: 30px;
  text-align: center;
  color: #fff;
}
.section2 .step-list .step-box {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: 40px;
}
.section2 .step-list .step-box:first-child {
  margin-top: 0;
}
.section2 .step-list .step-box:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background: #d1d1d1;
  transform: translate(7px, 7px);
  z-index: 0;
}
.section2 .step-list .step-box .box-in {
  position: relative;
  padding: 0;
  background: #fff;
  border-radius: 40px;
  z-index: 1;
}
.section2 .step-list .step-box .box-in .step-box-ttl {
  width: 100%;
  height: 80px;
  border-radius: 40px 40px 0 0;
  background: #2c4faf;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section2 .step-list .step-box .box-in .step-box-ttl .num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section2 .step-list .step-box .box-in .step-box-ttl .num span {
  font-weight: bold;
  font-size: 26px;
  line-height: 1;
  color: #2c4faf;
}
.section2 .step-list .step-box .box-in .step-box-ttl .text1 {
  margin-left: 15px;
  font-weight: bold;
  font-size: 26px;
  line-height: 36px;
  color: #fff;
}
.section2 .step-list .step-box .box-in .step-box-ttl .note1 {
  margin-left: 10px;
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
}
.section2 .step-list .step-box:nth-child(1) .step-dec {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}
.section2 .step-list .step-box:nth-child(1) .step-dec .box-l {
  width: calc(276 / 980 * 100%);
}
.section2 .step-list .step-box:nth-child(1) .step-dec .box-r {
  text-align: left;
  margin-left: calc(56 / 980 * 100%);
  width: calc(480 / 980 * 100%);
  color: #333;
}
.section2 .step-list .step-box:nth-child(1) .step-dec .box-r .dec-text1 {
  font-size: 16px;
  line-height: 26px;
  color: #333;
}
.section2 .step-list .step-box:nth-child(1) .step-dec .box-r .dec-text2 {
  margin-top: 20px;
  font-size: 16px;
  line-height: 26px;
  color: #333;
}
.section2 .step-list .step-box:nth-child(1) .step-dec .box-r .dec-text2 span {
  font-weight: bold;
  color: #ff5885;
}
.section2 .step-list .step-box:nth-child(1) .step-dec .box-r .dec-text-note {
  margin-top: 5px;
  font-size: 14px;
  line-height: 24px;
  color: #333;
}
.section2 .step-list .step-box:nth-child(2) .step-dec {
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
  width: calc(865 / 980 * 100%);
  margin: 0 auto;
}
.section2 .step-list .step-box:nth-child(2) .step-dec .box-l {
  width: calc(169 / 865 * 100%);
  margin-top: 10px;
}
.section2 .step-list .step-box:nth-child(2) .step-dec .box-c {
  width: calc(428 / 865 * 100%);
}
.section2 .step-list .step-box:nth-child(2) .step-dec .box-c .dec-text1 {
  font-size: 16px;
  line-height: 26px;
  color: #333;
}
.section2 .step-list .step-box:nth-child(2) .step-dec .box-c .dec-btn1 {
  margin: 20px auto 0 auto;
  position: relative;
  display: inline-block;
  width: 100%;
}
.section2 .step-list .step-box:nth-child(2) .step-dec .box-c .dec-btn1:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffc9d8;
  border-radius: 9999px;
  transform: translate(4px, 4px);
  z-index: 0;
  transition: transform 0.15s ease;
}
.section2 .step-list .step-box:nth-child(2) .step-dec .box-c .dec-btn1 a {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ff5885;
  /* 黄色 */
  border-radius: 9999px;
  /* 完全な丸 */
  transition: transform 0.15s ease;
}
.section2 .step-list .step-box:nth-child(2) .step-dec .box-c .dec-btn1 a p {
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 22px;
  color: #fff;
  position: relative;
  font-weight: bold;
  text-align: center;
}
.section2 .step-list .step-box:nth-child(2) .step-dec .box-c .dec-btn1 a p span {
  font-size: 14px;
  color: #fff500;
}
.section2 .step-list .step-box:nth-child(2) .step-dec .box-c .dec-btn1 a:before {
  content: "";
  width: 13px;
  height: 15px;
  position: absolute;
  background: url(../images/icon_arrow_up.svg) no-repeat;
  background-size: 13px auto;
  top: 28px;
  right: 20px;
}
.section2 .step-list .step-box:nth-child(2) .step-dec .box-c .dec-btn1:hover a {
  transform: translate(2px, 2px);
}
.section2 .step-list .step-box:nth-child(2) .step-dec .box-c .dec-btn1:hover:before {
  transform: translate(2px, 2px);
}
.section2 .step-list .step-box:nth-child(2) .step-dec .box-c .dec-btn2 {
  margin: 20px auto 0 auto;
  position: relative;
  display: inline-block;
  width: 100%;
}
.section2 .step-list .step-box:nth-child(2) .step-dec .box-c .dec-btn2:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffc9d8;
  border-radius: 9999px;
  transform: translate(4px, 4px);
  z-index: 0;
  transition: transform 0.15s ease;
}
.section2 .step-list .step-box:nth-child(2) .step-dec .box-c .dec-btn2 a {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ff5885;
  /* 黄色 */
  border-radius: 9999px;
  /* 完全な丸 */
  transition: transform 0.15s ease;
}
.section2 .step-list .step-box:nth-child(2) .step-dec .box-c .dec-btn2 a p {
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 22px;
  color: #fff;
  position: relative;
  font-weight: bold;
  text-align: center;
}
.section2 .step-list .step-box:nth-child(2) .step-dec .box-c .dec-btn2 a:before {
  content: "";
  width: 13px;
  height: 15px;
  position: absolute;
  background: url(../images/icon_arrow_up.svg) no-repeat;
  background-size: 13px auto;
  top: 26px;
  right: 20px;
}
.section2 .step-list .step-box:nth-child(2) .step-dec .box-c .dec-btn2:hover a {
  transform: translate(2px, 2px);
}
.section2 .step-list .step-box:nth-child(2) .step-dec .box-c .dec-btn2:hover:before {
  transform: translate(2px, 2px);
}
.section2 .step-list .step-box:nth-child(2) .step-dec .box-r {
  width: calc(158 / 865 * 100%);
}
.section2 .step-list .step-box:nth-child(3) .step-dec-pc {
  padding: 40px 80px 40px;
}
.section2 .step-list .step-box:nth-child(3) .step-dec-pc .text1 {
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #333;
}
.section2 .step-list .step-box:nth-child(3) .step-dec-pc .text1 span {
  font-size: 18px;
  font-weight: bold;
  color: #0054a7;
  background-color: #fff500;
}
.section2 .step-list .step-box:nth-child(3) .step-dec-pc .step-swiper-wrapper {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
}
.section2 .step-list .step-box:nth-child(3) .step-dec-pc .step-swiper-wrapper .step-swiper-slide {
  width: calc((100% - 80px) / 2);
  margin: 0 0 0 80px;
}
.section2 .step-list .step-box:nth-child(3) .step-dec-pc .step-swiper-wrapper .step-swiper-slide .ttl1 {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-weight: bold;
  line-height: 1;
  color: #2c4faf;
}
.section2 .step-list .step-box:nth-child(3) .step-dec-pc .step-swiper-wrapper .step-swiper-slide .ttl1 .ttl-en {
  font-size: 22px;
}
.section2 .step-list .step-box:nth-child(3) .step-dec-pc .step-swiper-wrapper .step-swiper-slide .ttl1 .ttl-num {
  margin-left: 10px;
  font-size: 26px;
}
.section2 .step-list .step-box:nth-child(3) .step-dec-pc .step-swiper-wrapper .step-swiper-slide .slider-img {
  margin-top: 10px;
  position: relative;
}
.section2 .step-list .step-box:nth-child(3) .step-dec-pc .step-swiper-wrapper .step-swiper-slide .step-text {
  margin-top: 20px;
  font-size: 16px;
  color: #333333;
  text-align: left;
}
.section2 .step-list .step-box:nth-child(3) .step-dec-pc .step-swiper-wrapper .step-swiper-slide:nth-child(1) {
  margin: 0;
}
.section2 .step-list .step-box:nth-child(3) .step-dec-pc .step-swiper-wrapper .step-swiper-slide:nth-child(1) .slider-img:before {
  position: absolute;
  top: 50%;
  right: -66px;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  content: "";
  background: url(../images/icon_arrow.svg) no-repeat;
  background-size: 50px;
}
.section2 .step-list .step-box:nth-child(3) .step-dec-pc .step-swiper-wrapper .step-swiper-slide:nth-child(3) {
  margin: 65px 0 0 0;
}
.section2 .step-list .step-box:nth-child(3) .step-dec-pc .step-swiper-wrapper .step-swiper-slide:nth-child(3) .slider-img:before {
  position: absolute;
  top: 50%;
  right: -66px;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  content: "";
  background: url(../images/icon_arrow.svg) no-repeat;
  background-size: 50px;
}
.section2 .step-list .step-box:nth-child(3) .step-dec-pc .step-swiper-wrapper .step-swiper-slide:nth-child(4) {
  margin: 65px 0 0 80px;
}
.section2 .step-list .step-box:nth-child(3) .step-dec-pc .btn-modal {
  width: 100%;
  margin: 50px auto 0 auto;
  position: relative;
  text-align: center;
  cursor: pointer;
}
.section2 .step-list .step-box:nth-child(3) .step-dec-pc .btn-modal a {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff500;
  /* 黄色 */
  border-radius: 5px;
  /* 完全な丸 */
  transition: transform 0.15s ease;
  border: none;
  outline: none;
  pointer-events: none;
}
.section2 .step-list .step-box:nth-child(3) .step-dec-pc .btn-modal a p {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #0054a7;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.section2 .step-list .step-box:nth-child(3) .step-dec-pc .btn-modal a p:before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  background: url(../images/icon_plus_fill.svg) no-repeat;
  background-size: 30px;
}
.section2 .step-list .step-box:nth-child(3) .step-dec-pc .btn-modal:hover a {
  opacity: 0.7;
}
.section2 .step-list .step-box:nth-child(3) .step-dec-sp {
  display: none;
}
.section2 .step-list .step-box:nth-child(4) .step-dec {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}
.section2 .step-list .step-box:nth-child(4) .step-dec .box-l {
  width: calc(276 / 980 * 100%);
}
.section2 .step-list .step-box:nth-child(4) .step-dec .box-r {
  text-align: left;
  margin-left: calc(56 / 980 * 100%);
  width: calc(480 / 980 * 100%);
  color: #333;
}
.section2 .step-list .step-box:nth-child(4) .step-dec .box-r .dec-text1 {
  font-size: 16px;
  line-height: 26px;
  color: #333;
}
.section2 .step-list .step-box:nth-child(4) .step-dec .box-r .dec-text2 {
  margin-top: 20px;
  font-size: 16px;
  line-height: 26px;
  color: #333;
}
.section2 .step-list .step-box:nth-child(4) .step-dec .box-r .dec-text-note {
  margin-top: 5px;
  font-size: 14px;
  line-height: 24px;
  color: #333;
}
@media screen and (max-width: 768px) {
  .section2 {
    padding-top: 20px;
  }
  .section2 .section-bg {
    clip-path: ellipse(120% 100% at 50% 100%);
  }
  .section2 .section-contents {
    width: 100%;
    margin-top: -210px;
    padding-bottom: 50px;
  }
  .section2 .speech-ttl {
    width: calc(100% - 40px);
    /* 適宜調整 */
    max-width: 400px;
    height: 96px;
    /* 適宜調整 */
    top: -140px;
  }
  .section2 .speech-ttl .box-in:after {
    content: "";
    bottom: -19px;
    /* 三角の位置 */
    left: 50%;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 19px solid #ff5885;
    /* 吹き出しと同色 */
  }
  .section2 .speech-ttl .box-in p {
    font-size: 21px;
    line-height: 30px;
  }
  .section2 .step-list {
    margin-top: 35px;
  }
  .section2 .step-list .step-box {
    text-align: left;
    margin-top: 30px;
  }
  .section2 .step-list .step-box:after {
    transform: translate(5px, 5px);
  }
  .section2 .step-list .step-box .box-in .step-box-ttl {
    height: 60px;
    border-radius: 40px 40px 0 0;
  }
  .section2 .step-list .step-box .box-in .step-box-ttl .num {
    width: 36px;
    height: 36px;
  }
  .section2 .step-list .step-box .box-in .step-box-ttl .num span {
    font-size: 20px;
  }
  .section2 .step-list .step-box .box-in .step-box-ttl .text1 {
    margin-left: 10px;
    font-size: 20px;
    line-height: 1;
  }
  .section2 .step-list .step-box .box-in .step-box-ttl .note1 {
    width: 100%;
    text-align: center;
    margin: 5px 0 0 0;
    font-size: 14px;
  }
  .section2 .step-list .step-box:nth-child(1) .step-dec {
    display: block;
    padding: 20px 20px 40px 20px;
  }
  .section2 .step-list .step-box:nth-child(1) .step-dec .box-l {
    width: 100%;
  }
  .section2 .step-list .step-box:nth-child(1) .step-dec .box-r {
    width: 100%;
    text-align: left;
    margin: 20px 0 0 0;
  }
  .section2 .step-list .step-box:nth-child(1) .step-dec .box-r .dec-text1 {
    font-size: 14px;
    line-height: 24px;
  }
  .section2 .step-list .step-box:nth-child(1) .step-dec .box-r .dec-text2 {
    margin-top: 15px;
    font-size: 14px;
    line-height: 24px;
  }
  .section2 .step-list .step-box:nth-child(1) .step-dec .box-r .dec-text-note {
    margin-top: 5px;
    font-size: 12px;
    line-height: 18px;
  }
  .section2 .step-list .step-box:nth-child(2) .step-dec {
    display: block;
    padding: 20px 20px 40px 20px;
    width: 100%;
  }
  .section2 .step-list .step-box:nth-child(2) .step-dec .box-l {
    width: 100%;
    margin-top: 0;
  }
  .section2 .step-list .step-box:nth-child(2) .step-dec .box-c {
    width: 100%;
    margin: 15px 0 0 0;
  }
  .section2 .step-list .step-box:nth-child(2) .step-dec .box-c .dec-text1 {
    font-size: 14px;
    line-height: 24px;
  }
  .section2 .step-list .step-box:nth-child(2) .step-dec .box-c .dec-btn1 {
    margin: 20px auto 0 auto;
    position: relative;
    display: inline-block;
    width: 100%;
  }
  .section2 .step-list .step-box:nth-child(2) .step-dec .box-c .dec-btn1:before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffc9d8;
    border-radius: 9999px;
    transform: translate(4px, 4px);
    z-index: 0;
    transition: transform 0.15s ease;
  }
  .section2 .step-list .step-box:nth-child(2) .step-dec .box-c .dec-btn1 a {
    height: 70px;
  }
  .section2 .step-list .step-box:nth-child(2) .step-dec .box-c .dec-btn1 a p {
    font-size: 14px;
    line-height: 20px;
  }
  .section2 .step-list .step-box:nth-child(2) .step-dec .box-c .dec-btn1 a p span {
    font-size: 10px;
  }
  .section2 .step-list .step-box:nth-child(2) .step-dec .box-c .dec-btn1 a:before {
    content: "";
    width: 13px;
    height: 15px;
    position: absolute;
    background: url(../images/icon_arrow_up.svg) no-repeat;
    background-size: 13px auto;
    top: 31px;
    right: 20px;
  }
  .section2 .step-list .step-box:nth-child(2) .step-dec .box-c .dec-btn2 {
    margin: 30px auto 0 auto;
  }
  .section2 .step-list .step-box:nth-child(2) .step-dec .box-c .dec-btn2 a {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 60px;
  }
  .section2 .step-list .step-box:nth-child(2) .step-dec .box-c .dec-btn2 a:before {
    content: "";
    width: 13px;
    height: 15px;
    position: absolute;
    background: url(../images/icon_arrow_up.svg) no-repeat;
    background-size: 13px auto;
    top: 23.5px;
    right: 20px;
  }
  .section2 .step-list .step-box:nth-child(2) .step-dec .box-r {
    display: none;
  }
  .section2 .step-list .step-box:nth-child(3) .step-dec-pc {
    display: none;
  }
  .section2 .step-list .step-box:nth-child(3) .step-dec-sp {
    display: block;
    padding: 25px 20px 40px 20px;
  }
  .section2 .step-list .step-box:nth-child(3) .step-dec-sp .text1 {
    font-size: 14px;
    line-height: 24px;
    text-align: left;
    color: #333;
  }
  .section2 .step-list .step-box:nth-child(3) .step-dec-sp .text1 span {
    font-size: 18px;
    background-color: #fff500;
    color: #0054a7;
    font-weight: bold;
  }
  .section2 .step-list .step-box:nth-child(3) .step-dec-sp .swiper-slide {
    margin-top: 20px;
  }
  .section2 .step-list .step-box:nth-child(3) .step-dec-sp .swiper-slide .step-text {
    margin-top: 20px;
    font-size: 14px;
    line-height: 24px;
    text-align: left;
    color: #333;
  }
  .section2 .step-list .step-box:nth-child(3) .step-dec-sp .step-num-box {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-weight: bold;
  }
  .section2 .step-list .step-box:nth-child(3) .step-dec-sp .step-num-box .step-txt {
    font-size: 14px;
    line-height: 1;
    color: #2c4faf;
    padding-top: 3px;
  }
  .section2 .step-list .step-box:nth-child(3) .step-dec-sp .step-num-box .step-target-num {
    margin-left: 10px;
    font-size: 18px;
    line-height: 1;
    color: #2c4faf;
  }
  .section2 .step-list .step-box:nth-child(3) .step-dec-sp .step-num-box .num-hyphen {
    font-weight: 500;
    margin-left: 10px;
    font-size: 18px;
    line-height: 1;
    color: #e3e3e3;
  }
  .section2 .step-list .step-box:nth-child(3) .step-dec-sp .step-num-box .step-total-num {
    margin-left: 10px;
    font-size: 18px;
    line-height: 1;
    color: #e3e3e3;
  }
  .section2 .step-list .step-box:nth-child(3) .step-dec-sp .control-box {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: 50%;
    left: -10px;
    z-index: 100;
  }
  .section2 .step-list .step-box:nth-child(3) .step-dec-sp .control-box .btn-prev {
    transform: rotate(-180deg);
    margin-left: 0;
  }
  .section2 .step-list .step-box:nth-child(3) .step-dec-sp .control-box .btn-next {
    margin-right: -20px;
  }
  .section2 .step-list .step-box:nth-child(3) .step-dec-sp .btn-modal {
    width: 100%;
    margin: 30px auto 0 auto;
    position: relative;
    text-align: center;
  }
  .section2 .step-list .step-box:nth-child(3) .step-dec-sp .btn-modal a {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff500;
    /* 黄色 */
    border-radius: 5px;
    /* 完全な丸 */
    transition: transform 0.15s ease;
    border: none;
    outline: none;
    pointer-events: none;
  }
  .section2 .step-list .step-box:nth-child(3) .step-dec-sp .btn-modal a p {
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 1;
    color: #0054a7;
    display: inline-flex;
    align-items: center;
    position: relative;
    margin-left: -33px;
  }
  .section2 .step-list .step-box:nth-child(3) .step-dec-sp .btn-modal a p:before {
    content: "";
    width: 26px;
    height: 26px;
    position: absolute;
    top: 50%;
    right: -37px;
    transform: translateY(-50%);
    background: url(../images/icon_plus_fill.svg) no-repeat;
    background-size: 26px;
  }
  .section2 .step-list .step-box:nth-child(3) .step-dec-sp .btn-modal:hover a {
    opacity: 0.7;
  }
  .section2 .step-list .step-box:nth-child(4) .step-dec {
    display: block;
    padding: 0 20px 40px 20px;
  }
  .section2 .step-list .step-box:nth-child(4) .step-dec .box-l {
    width: 100%;
  }
  .section2 .step-list .step-box:nth-child(4) .step-dec .box-r {
    margin: 20px 0 0 0;
    width: 100%;
    color: #333;
  }
  .section2 .step-list .step-box:nth-child(4) .step-dec .box-r .dec-text1 {
    font-size: 14px;
    line-height: 24px;
  }
  .section2 .step-list .step-box:nth-child(4) .step-dec .box-r .dec-text-note {
    margin-top: 5px;
    font-size: 12px;
    line-height: 18px;
  }
}

.section-footer {
  width: 100%;
  background: #ebebeb;
}
.section-footer .section-contents {
  width: 100%;
  height: 390px;
  background: #2c4faf;
  clip-path: ellipse(65% 100% at 50% 100%);
  text-align: center;
  padding-top: 95px;
  position: relative;
}
.section-footer .footer-txt1 {
  width: 100%;
  max-width: 815px;
  margin: 0 auto;
  font-weight: 900;
  font-size: 27px;
  letter-spacing: 0.04em;
  line-height: 30px;
  color: #fff;
}
.section-footer .footer-btn {
  margin: 30px auto 0 auto;
  position: relative;
  display: inline-block;
}
.section-footer .footer-btn:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #253c7b;
  border-radius: 9999px;
  transform: translate(8px, 8px);
  z-index: 0;
  transition: transform 0.15s ease;
}
.section-footer .footer-btn a {
  position: relative;
  z-index: 1;
  width: 482px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff500;
  /* 黄色 */
  border-radius: 9999px;
  /* 完全な丸 */
  transition: transform 0.15s ease;
}
.section-footer .footer-btn a p {
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 30px;
  color: #2c4faf;
  position: relative;
  margin-left: -30px;
}
.section-footer .footer-btn a p:before {
  content: "";
  position: absolute;
  top: 7px;
  right: -47px;
  width: 20px;
  height: 20px;
  background: url(../images/icon_blank.svg) no-repeat;
  background-size: 20px;
}
.section-footer .footer-btn:hover a {
  transform: translate(4px, 4px);
}
.section-footer .footer-btn:hover:before {
  transform: translate(4px, 4px);
}
.section-footer .footer-btn:active a {
  transform: translate(8px, 8px);
}
.section-footer .footer-btn:active:before {
  transform: translate(0, 0);
}
.section-footer .footer-txt2 {
  margin-top: 25px;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  line-height: 30px;
}
.section-footer .footer-txt2 a {
  color: #fff500;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .section-footer .section-contents {
    height: 365px;
    clip-path: ellipse(120% 100% at 50% 100%);
    padding-top: 75px;
  }
  .section-footer .footer-txt1 {
    width: calc(100% - 40px);
    font-size: 22px;
    line-height: 34px;
  }
  .section-footer .footer-btn {
    margin: 20px auto 0 auto;
    width: calc(100% - 40px);
    max-width: 400px;
  }
  .section-footer .footer-btn:before {
    content: "";
    transform: translate(4px, 4px);
  }
  .section-footer .footer-btn a {
    width: 100%;
    height: 95px;
  }
  .section-footer .footer-btn a p {
    font-size: 20px;
    line-height: 30px;
    position: relative;
    margin-left: 0;
  }
  .section-footer .footer-btn a p:before {
    top: 7px;
    right: -35px;
    width: 16px;
    height: 16px;
    background: url(../images/icon_blank.svg) no-repeat;
    background-size: 16px;
  }
  .section-footer .footer-btn:hover a {
    transform: translate(0, 0);
  }
  .section-footer .footer-btn:hover:before {
    transform: translate(0, 0);
  }
  .section-footer .footer-btn:active a {
    transform: translate(0, 0);
  }
  .section-footer .footer-btn:active:before {
    transform: translate(0, 0);
  }
  .section-footer .footer-txt2 {
    margin-top: 30px;
    font-size: 14px;
    line-height: 24px;
  }
}

.fixed-btn {
  width: 140px;
  height: 140px;
  position: fixed;
  display: inline-block;
  right: 16px;
  bottom: 40px;
  text-align: center;
  z-index: 9999;
}
.fixed-btn:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #253c7b;
  border-radius: 9999px;
  transform: translate(6px, 6px);
  z-index: 0;
  transition: transform 0.15s ease;
}
.fixed-btn a {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff500;
  /* 黄色 */
  border-radius: 9999px;
  /* 完全な丸 */
  transition: transform 0.15s ease;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 25px;
  text-align: center;
  color: #0054a7;
}
.fixed-btn a p {
  position: relative;
}
.fixed-btn a p:before {
  content: "";
  position: absolute;
  bottom: 3px;
  right: 9px;
  width: 16px;
  height: 16px;
  background: url(../images/icon_blank.svg) no-repeat;
  background-size: 16px;
}
.fixed-btn:hover a {
  transform: translate(3px, 3px);
}
.fixed-btn:hover:before {
  transform: translate(3px, 3px);
}
.fixed-btn:active a {
  transform: translate(6px, 6px);
}
.fixed-btn:active:before {
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .fixed-btn {
    width: 100px;
    height: 100px;
    right: 10px;
    bottom: 20px;
  }
  .fixed-btn:before {
    transform: translate(4px, 4px);
  }
  .fixed-btn a {
    font-size: 16px;
    line-height: 24px;
  }
  .fixed-btn a p:before {
    bottom: 5px;
    right: 9px;
    width: 12.5px;
    height: 12.5px;
    background: url(../images/icon_blank.svg) no-repeat;
    background-size: 12.5px;
  }
  .fixed-btn:hover a {
    transform: translate(0px, 0px);
  }
  .fixed-btn:hover:before {
    transform: translate(0px, 0px);
  }
  .fixed-btn:active a {
    transform: translate(0px, 0px);
  }
  .fixed-btn:active:before {
    transform: translate(0, 0);
  }
}

.modal__container {
  max-width: 880px;
  border-radius: 20px;
  padding: 0 0 40px 0;
  overflow: visible;
  max-height: none;
  margin: auto;
}
.modal__container .modal__content {
  margin: 0;
}
.modal__container .btn_modal__close {
  width: 60px;
  position: absolute;
  top: -60px;
  right: -10px;
  cursor: pointer;
  transition: opacity 0.15s ease;
  background: transparent;
  border: none;
  padding: 0;
  outline: none;
}
.modal__container .btn_modal__close:hover {
  opacity: 0.7;
}
.modal__container .box-ttl1 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70px;
  border-radius: 20px 20px 0 0;
  background: #fff500;
}
.modal__container .box-ttl1 p {
  font-weight: 900;
  font-size: 21px;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
  color: #0054a7;
}
.modal__container .dec-text {
  margin-top: 25px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  color: #333;
}
.modal__container .cashless-ttl {
  background-color: #ebebeb;
  width: 100%;
  max-width: 656px;
  margin: 30px auto 0 auto;
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  color: #333;
  padding: 9px 0;
}
.modal__container .cashless1 {
  margin-top: 20px;
  text-align: center;
}
.modal__container .cashless1 img {
  width: 560px;
}
.modal__container .cashless2 {
  margin-top: 30px;
  text-align: center;
}
.modal__container .cashless2 img {
  width: 656px;
}
.modal__container .cashless3 {
  margin-top: 40px;
  text-align: center;
}
.modal__container .cashless3 img {
  width: 656px;
}
.modal__container .btn-close {
  width: 295px;
  margin: 40px auto 0 auto;
  position: relative;
  text-align: center;
  cursor: pointer;
}
.modal__container .btn-close:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffc9d8;
  border-radius: 9999px;
  transform: translate(4px, 4px);
  z-index: 0;
  transition: transform 0.15s ease;
}
.modal__container .btn-close a {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ff5885;
  /* 黄色 */
  border-radius: 9999px;
  /* 完全な丸 */
  transition: transform 0.15s ease;
  border: none;
  outline: none;
  pointer-events: none;
}
.modal__container .btn-close a p {
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #fff;
  position: relative;
}
.modal__container .btn-close:hover a {
  transform: translate(2px, 2px);
}
.modal__container .btn-close:hover:before {
  transform: translate(2px, 2px);
}
@media screen and (max-width: 768px) {
  .modal__container {
    max-width: 880px;
    border-radius: 20px;
    padding: 0 0 40px 0;
    overflow: visible;
    max-height: none;
  }
  .modal__container .modal__content {
    margin: 0;
  }
  .modal__container .btn_modal__close {
    width: 60px;
    position: absolute;
    top: -60px;
    right: -10px;
    cursor: pointer;
    transition: opacity 0.15s ease;
  }
  .modal__container .btn_modal__close:hover {
    opacity: 0.7;
  }
  .modal__container .box-ttl1 {
    height: 60px;
  }
  .modal__container .box-ttl1 p {
    font-size: 17px;
  }
  .modal__container .dec-text {
    margin-top: 30px;
    font-size: 14px;
  }
  .modal__container .cashless-ttl {
    width: calc(100% - 40px);
    margin: 30px auto 0 auto;
    font-size: 14px;
    padding: 9px 0;
  }
  .modal__container .cashless1 {
    margin-top: 15px;
    padding: 0 20px;
  }
  .modal__container .cashless1 img {
    width: 100%;
  }
  .modal__container .cashless2 {
    margin-top: 15px;
    padding: 0 20px;
  }
  .modal__container .cashless2 img {
    width: 100%;
  }
  .modal__container .cashless3 {
    margin-top: 30px;
    padding: 0 20px;
  }
  .modal__container .cashless3 img {
    width: 100%;
  }
  .modal__container .btn-close {
    width: 295px;
    margin: 30px auto 0 auto;
    position: relative;
    text-align: center;
    cursor: pointer;
  }
  .modal__container .btn-close:before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffc9d8;
    border-radius: 9999px;
    transform: translate(4px, 4px);
    z-index: 0;
    transition: transform 0.15s ease;
  }
  .modal__container .btn-close a {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 60px;
  }
  .modal__container .btn-close a p {
    font-size: 16px;
  }
}

.modal__overlay {
  overscroll-behavior: contain;
  overflow-y: auto;
  padding: 80px 20px 40px 20px;
  -webkit-overflow-scrolling: touch;
}

#tpl-pagetop {
  display: none !important;
}
