@charset "utf-8";

/* --------------------
  ahamo SIM/eSIM訴求LP
-------------------- */

/* --------------------
  constants
-------------------- */
:root {
  --font_color: #000; /* ベースの文字色  */
  --acc: #ff5e1f; /* オレンジ */
  --acc2: #dd3400; /* 濃いオレンジ */
  --color: #ffebb8; /* 薄い黄色 */
  --color2: #baf5f5; /* うす青緑 */
  --color4: #fbff8d; /* 下線ラインの黄色 */
  --color5: #c9ffe1 /* 薄緑 お乗り換え手順 */;
  --color7: #00a5bd;; /* 深緑 お乗り換えSTEP */
  --color8: #fde4eb; /* 薄ピンク おすすめ */
  --color_sim: #00a5bd;
  --color_esim: #fe5d5f;
  /* ゴシック体 */
  --font_family: "Noto Sans JP", sans-serif;
}

/* --------------------
  base
-------------------- */
:root {
  font-size: 62.5%;
}

* {
  margin-top: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color:  var(--font_color);
  font-family: var(--font_family);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.8;
  background-color: #fff;
  background-image: url(../images/body_bg.jpg);
  background-size: cover;
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6, p{
  line-height: 1.3em;
  margin-top: 0;
}

ul, ol, dd {
  -webkit-padding-start: 0;
          padding-inline-start: 0; /* list-styleを設定する場合は要調整 */
  list-style: none;
  margin-bottom: 0;
}

img {
  max-width: 100%;
  object-fit: contain;
}

em {
  font-style: normal;
}

header,
main {
  max-width: 750px;
  margin: 0 auto;
}

section {
  padding: 50px 3%;
  position: relative;
}

a {
  transition: opacity .3s;
  color: #00a0e9;
}

a:hover {
  opacity: 0.7;
}

@media all and (min-width: 750px) {
  section {
    padding: 100px 38px;
  }
}

/* ---------------
  common
------------------ */

.text_right {
  text-align: right;
}

.text_center {
  text-align: center;
}

.mb_0 {
  margin-bottom: 0!important;
}

.bg_white {
  background-color: #fff;
  padding: 1px;
}

.caption {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.counter_kome {
  list-style-type: none;
}

.counter_kome li {
  display: flex;
  justify-content: start;
  align-items: start;
}

.counter_kome li .kome {
  flex-shrink: 0;
  display: inline-block;
  margin-right: .25em;
}

/*.counter_kome li {
  text-indent: -1.6em;
  padding-left: 1.5em;
}

.counter_kome li::before {
  counter-increment: count 1;
  content: "＊" counter(count) " ";
}*/

.caption_mark {
  font-size: inherit;
  display: flex;
}

.caption_mark .kome {
  flex-shrink: 0;
  display: inline-block;
  margin-right: .25em;
}

.anchor {
  margin-top: -40px;
  padding-top: 40px;
}

.wave_box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: min(55px, 7vw);
  background-size: cover;
  background-position: bottom left;
  background-repeat: no-repeat;
  margin-bottom: -2px;
}

.ahamo_text_img {
  display: inline;
  height: 1em;
}

.line_link {
  position: relative;
  padding-right: 10px;
  color: #00a0e9;
  font-weight: 500;
  letter-spacing: 2px;
  text-decoration: underline;
}

.add.line_link::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  content: "";
  width: 0.6em;
  max-width: 12px;
  height: 0.6em;
  max-height: 12px;
  border-top: solid min(3px, .7vw) #00a0e9;
  border-right: solid min(3px, .7vw) #00a0e9;
  transform: rotate(45deg) translateY(-50%);
}

@media all and (min-width: 600px) {
  .caption {
    font-size: 1.8rem;
  }
}

/* ---------------
  accordion
------------------ */
details summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

details summary::-webkit-details-marker {
  display:none;
}

.toggle_sign::before,
.toggle_sign::after {
  display: inline-block;
  content: "";
  width: 16px;
  height: 2px;
  background-color: #000;
  border-radius: 1px;
  position: absolute;
  top: 50%;
  right: .7em;
}

.accordion .toggle_sign::after {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: all .2s;
  transition: all .2s;
  -o-transition: all .2s;
}

.accordion[open] .toggle_sign::after {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}

/* --- アコーディオンアニメーション用 --- */
.accordion {
  list-style: none;
  overflow: hidden;
  height: var(--acc-height--closed ,auto);
  -webkit-transition: height .25s;
  -o-transition: height .25s;
  transition: height .25s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.accordion.is-opened{
  height: var(--acc-height--opened ,auto);
}

.accordion + .accordion {
  margin-top: -1px;
}
/* --- End アコーディオンアニメーション用 --- */

.wrapper {
  box-shadow: 0 0 20px #9a9a9a63;
  max-width: 750px;
  margin: 0 auto;
}

/* ---------------
  KV
------------------ */
.header {
  background-image: url(../images/kv_bg.png);
  background-size: cover;
  position: relative;
  padding: 78% 3.8% 50px;
  z-index: 0;
}

.kv_ttl {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.kv_menu {
  display: flex;
  align-items: end;
  margin-top: 0px;
}

.kv_menu_item {
  display: block;
  width: 50%;
  float: left;
  border-radius: 10px 10px 0 0;
  padding: 5px 3%;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: min(2.8rem, 3.8vw);
  line-height: 1.2;
  background-color: #a5a5a5;
  border: 3px solid #fff;
  border-bottom: none;
  height: 45px;
  cursor: pointer;
  transform: translate(0, 5px);
}

.kv_menu_item img {
  display: inline;
}

#tab1:checked + label,
#tab2:checked + label {
  background-color: #009b96;
  border: 5px solid #009b96;
  border-bottom: none;
  height: 50px;
  transform: translate(0, 0);
}

input[name="tab_item"],
input[name="modal1"] {
  display: none;
}

.kv_box {
  position: relative;

}

.kv_box_item {
  width: 100%;
  height: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  clear: both;
  overflow: hidden;
}

#tab1:checked ~ #content1,
#tab2:checked ~ #content2 {
  display: block;
  padding: 20px 3%;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  border: 5px solid #009b96;
  border-top: none;
  height: auto;
  opacity: 1;
  position: static;
  pointer-events: auto;
}

.kv_box_item .kv_box_link {
  display: initial;
}

.kv_box_item img {
  width: 100%;
  object-fit: contain;
}

.kv_box_item1 {
  padding-top: 20px!important;
}

.kv_box_item1 .cta_btn {
  margin: 30px auto 10px;
}

.kv_box_center {
  width: fit-content;
  margin: 0 auto;
}

.kv_box_link {
  color: #4f9adb;
  font-size: min(2.8rem, 4.4vw);
  text-decoration: underline;
  cursor: pointer;
}

.kv_box_link.small {
  margin-top: 30px;
  font-size: min(2.2rem, 3.8vw);
}

.kv_box_item .caption {
  color: #737373;
}

.kv_box_item2>img {
  margin-bottom: 10px;
}

.cta_btn_MNP {
  margin-bottom: 40px!important;
}

.modal_back {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 100%;
  left: 0;
  z-index: 9998;
}

#modal1:checked ~ .modal_back {
  top: 0;
}

.kv_box_mobile_list {
  background-color: rgba(255, 255, 255, 0.98);
  width: 95vw;
  max-width: 700px;
  position: fixed;
  left: 50%;
  transform: translate(-50%, 0);
  top: 100%;
  height: 0;
  opacity: 0;
  transition: all .3s;
  overscroll-behavior: contain;
}

#modal1:checked ~ .kv_box_mobile_list {
  z-index: 9999;
  height: 95vh;
  overflow-y: auto;
  opacity: 1;
  top: 50%;
  transform: translate(-50%, -50%);
}

.kv_box_modal_wrap {
  padding: 0 3% 40px;
  overscroll-behavior: contain;
}

.kv_box_modal_close {
  margin: 0 .5em 0 2em;
  text-align: right;
  position: sticky;
  top: 0;
  right: 0;
  display: flex;
  justify-content: end;
}

.kv_box_modal_close a {
  margin-top: 2em;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: block;
  border: 3px solid #00bd93;
  position: relative;
  cursor: pointer;
}

.kv_box_modal_close a:before,
.kv_box_modal_close a:after {
  display: block;
  content: "";
  width: 1.5rem;
  height: 2px;
  background-color: #00bd93;
  position: absolute;
  top: 50%;
  left: 50%;
}

.kv_box_modal_close a:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.kv_box_modal_close a:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.kv_box_modal_wrap .mnp_supported_mobile_ttl {
  padding-top: 0;
}

.mnp_supported_mobile_ttl {
  text-align: center;
  font-size: min(4.2rem, 7.6vw);
  font-weight: 700;
  color: #00bd93;
  justify-content: center;
  position: relative;
  padding: .5em 0;
}

.mnp_supported_mobile_ttl span {
  border-radius: 50%;
  border: 3px solid #00bd93;
  background-color: #fff;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-100%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .3s;
}

.is-opened .mnp_supported_mobile_ttl span {
  transform: translate(-100%, -50%) rotate(180deg);
}

.mnp_supported_mobile_ttl span::before {
  display: block;
  content: "";
  width: .25em;
  height: .25em;
  border-top: 3px solid #00bd93;
  border-right: 3px solid #00bd93;
  transform: rotate(135deg) translate(-1px, 1px) ;
}

.mnp_supported_mobile_list {
  max-width: 500px;
  margin: 0 auto;
}

.mnp_supported_mobile_list li {
  padding: 1em 0;
  border-bottom: 1px dotted #cdcdcd;
  font-size: min(2rem, 4.2vw);
  font-weight: 500;
}

.mnp_supported_mobile_list li:last-child {
  border-bottom: none;
}

@media all and (min-width: 750px) {
  .header {
    padding: 585px 28px 100px;
  }

  .kv_menu_item {
    border-radius: 20px 20px 0 0;
    padding: 15px 3%;
    text-align: center;
    border: 5px solid #fff;
    border-bottom: none;
    height: 105px;
    transform: translate(0, 15px);
  }

  #tab1:checked + label,
  #tab2:checked + label {
    height: 120px;
  }

  .kv_box_item1 {
    padding-top: 50px!important;
  }

  .kv_box_item1 .cta_btn {
    margin: 50px auto 30px;
  }

  .kv_box_center {
    margin: 0 auto 30px;
  }

  .kv_box_item2>img {
    margin-bottom: 20px;
  }

  .cta_btn_MNP {
    margin-bottom: 60px!important;
  }

  .kv_box_modal_wrap {
    padding: 0 0 40px;
  }

  .kv_box_modal_close {
    margin: 0 2em 0 2em;
  }

  .kv_box_modal_close a {
    width: 5rem;
    height: 5rem;
  }

  .kv_box_modal_close a:before,
  .kv_box_modal_close a:after {
    width: 3rem;
    height: 5px;
  }
}

/* ---------------
  大盛りオプション
------------------ */
.oomori {
  background-color: #fff;
  padding-top: 20px;
  padding-bottom: 70px;
}

.oomori_ttl {
  font-weight: 700;
  font-size: min(3.8rem, 6vw);
  text-align: center;
  position: relative;
  width: fit-content;
  padding: 0 5px;
  margin: 0 auto;
  margin-bottom: .5em;
}

.oomori_ttl span {
  color: #ff5d20;
}

.oomori_ttl::before,
.oomori_ttl::after {
  display: block;
  content: "";
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 60%;
  width: .75em;
  height: 100%;
}

.oomori_ttl::before {
  background-image: url(../images/oomori_loud_icon_left.svg);
  left: 0;
  transform: translate(-100%, -50%);
}

.oomori_ttl::after {
  background-image: url(../images/oomori_loud_icon_right.svg);
  background-position: right center;
  right: 0;
  transform: translate(100%, -50%);
}

.oomori_bg {
  background-image: url(../images/oomori_bg.png);
  background-size: cover;
  border-radius: 20px;
  padding: min(8px, 1.5vw);
}

.oomori_cont {
  background-color: #fff;
  padding: 6% 6% 10%;
  border-radius: 12px;
}

.oomori_cont_option  img {
  width: 100%;
  margin-bottom: min(30px, 5vw);
}

.oomori_cta_lead {
  color: var(--font_color)!important;
}

.oomori_cta_lead::before {
  background-image: url(../images/oomori_cta_icon_left.png)!important;
  transform: translate(-130%, 3px)!important;
}

.oomori_cta_lead::after {
  background-image: url(../images/oomori_cta_icon_right.png)!important;
  transform: translate(130%, 3px)!important;
}

.oomori .wave_box {
  background-image: url(../images/nav_wave.png);
}

@media all and (min-width: 750px) {
  .oomori {
    padding-top: 50px;
    padding-bottom: 170px;
  }
}


/* ---------------
  ナビゲーション
------------------ */
.anchor_nav {
  padding: 30px 3% 60px;
  background-color: var(--color2);
}

.nav_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2%;
  text-align: center;
}

.nav_list a {
  display: block;
  background-color: #fff;
  box-shadow: 3px 4px var(--acc);
  border-radius: 20px;
  text-decoration: none;
  color: var(--font_color);
  font-size: min(2.4rem, 3vw);
  font-weight: 800;
  line-height: 1.3;
  padding: 1em 0;
  transition: all .2s;
}

.nav_list a:hover {
  opacity: 1;
  filter: brightness(0.9);
  transform: translate(0, 3px);
  box-shadow: 3px 1px var(--acc);
}

.nav_list a > img {
  height: 1em;
  display: inline-block;
}

.nav_list a span {
  display: block;
  width: fit-content;
  background-color: var(--acc);
  border-radius: 50%;
  padding: min(20px, 10%);
  margin: .5em auto 0;
  position: relative;
}

.nav_list a span::after {
  display: block;
  content: "";
  width: 30%;
  height: 30%;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, calc(-50% - 2px)) rotate(45deg);
  position: absolute;
  top: 52%;
  left: 52%;
}

.nav_ahamo_text {
  height: .75em!important;
}

@media all and (min-width: 750px) {
  .anchor_nav {
    padding: 60px 38px 100px;
  }

  .nav_list a span::after {
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: translate(-50%, calc(-50% - 4px)) rotate(45deg);
  }
}


/* ---------------
  MNP
------------------ */
.about_mnp {
  background-color: var(--color2);
  position: relative;
}

.about_mnp .wave_box {
  background-image: url(../images/mnp_wave.png);
}

/* ---------------
  process
------------------ */
.process {
  background-color: var(--color5);
  padding: 50px 3% 70px;
}

.process_ttl img {
  width: 80%;
  margin: .5em auto 0;
}

.process_ttl_lead {
  font-size: min(3.8rem, 6vw);
  text-align: center;
  font-weight: 700;
  margin-bottom: 2em;
  position: relative;
}

.process_ttl_lead .ahamo_text_img {
  height: .8em;
}

.process_ttl_lead::before {
  display: inline-block;
  content: "";
  width: 75%;
  background-color: var(--font_color);
  height: 2px;
  position: absolute;
  bottom: -.5em;
  left: 50%;
  transform: translate(-50%, 0);
}

.process_ttl_lead span {
  display: block;
  width: .75em;
  height: .75em;
  position: absolute;
  bottom: -.75em;
  left: 50%;
  transform: translate(-50%, 0) skew(-30deg);
  background-color: var(--color5);
}

.process_ttl_lead span::after {
  display: inline-block;
  content: "";
  width: 2px;
  height: .75em;
  background-color: var(--font_color);
}

.process_ttl {
  font-weight: 700;
  font-size: min(3.8rem, 6vw);
  text-align: center;
  margin-bottom: 1em;
}

.process_list_ttl {
  color: #fff;
  background-color: var(--color7);
  font-size: min(3.8rem, 7vw);
  text-align: center;
  padding: .75em .5em;
  border-radius: 20px 20px 0 0;
}

.process_steps {
  background-color: #fff;
  border: 3px solid #80f3b1;
  border-top: none;
  border-radius: 0 0 20px 20px;
  margin-bottom: 40px;
}

.process_list_item {
  padding: 60px 8vw 10px;
}

.step_ttl {
  text-align: center;
  font-size: min(3.6rem, 6.2vw);
  color: var(--color7);
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: .75em;
  border-bottom: 2px solid var(--color7);
}

.step_ttl .ahamo_text_img {
  height: .8em;
}

.step_number img {
  height: .9em;
  margin: 5px .6em 0 0;
}

.step_cont .caption {
  color: #949494;
  font-size: 1.2rem;
}

.step_requier_item > li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px dotted #000;
}

.step_requier_item > li:last-child {
  border-bottom: none;
}

.step_cont .step_cont_box:first-child {
  width: 40%;
}

.step_cont .step_cont_box:last-child {
  width: 60%;
}

.step_cont_box img {
  flex-shrink: 1;
}

.step_cont_box dl dt {
  display: flex;
  justify-content: start;
  margin-bottom: 1em;
}

.step_cont_box dl dt span {
  display: block;
  font-size: min(2.4rem, 6vw);
  color: var(--color7);
  text-align: center;
  line-height: .8;
}

.step_cont_box dl dt small {
  font-size: min(1.6rem, 4vw);
}

.step_cont_box dl ul li {
  font-size: min(1.6rem, 3.5vw);
  font-weight: 500;
}

.step_cont_box dl ul li::before {
  display: inline-block;
  content: "";
  border-radius: 50%;
  width: .5em;
  height: .5em;
  background-color: var(--color7);
  margin-right: .4em;
}

.step_cont_box .line_link {
  color: var(--color7);
}

/*.step_cont_box .line_link::after {
  border-color: var(--color7)!important;
}*/

.step_cont_p {
  font-size: min(2rem, 3.8vw);
  font-weight: 700;
  margin-bottom: 1em;
  line-height: 1.5;
}

/*.process_list .process_list_item:last-of-type .step_cont_p {
  font-size: min(3.6rem, 5.4vw);
}*/

.step_cont_p .line_link {
  font-size: 0.8em;
}

.step_scsho {
  width: 100%;
  margin: 15px 0;
  border-radius: 15px;
}

.process_link_p {
  font-size: min(4.2rem, 6vw);
  padding-bottom: .6em;
  border-bottom: 3px solid #009d97;
  width: fit-content;
  margin: 0 auto;
  padding-right: .75em;
}

.process_link.line_link {
  color: #009d97;
  font-weight: 700;
  text-decoration: none;
}

.process_link.line_link::after {
  width: 0.5em;
  max-width: 25px;
  height: 0.5em;
  max-height: 25px;
  border-top: solid 3px #009d97;
  border-right: solid 3px #009d97;
  right: -.25em;
}

.process .wave_box {
  background-image: url(../images/process_wave.png);
}

.mnp_text_img {
  display: inline-block;
  height: .8em;
  transform: translate(0, .05em);
  margin-right: .1em;
}

/* --- splideのカスタム ---- */
.custom_arrow {
  width: min(7rem, 10vw);
  height: min(7rem, 10vw);
  background-color: #004148;
  opacity: 1!important;
}

.custom_prev {
  left: 0;
  transform: translate(-30%, -50%);
}

.custom_next {
  right: 0;
  transform: translate(30%, -50%);
}

.custom_arrow svg {
  fill: #fff;
  width: 45%;
  height: 45%;
}

.custom_pagination {
  bottom: initial;
  top: 5%;
  gap: 8%;
}

.custom_page {
  width: 10px;
  height: 10px;
}

.custom_page.is-active {
  background-color: #00a5bd;
  transform: none;
}

@media all and (min-width: 750px) {
  .custom_pagination {
    top: 25px;
    gap: 30px;
  }

  .custom_page {
    width: 10px;
    height: 10px;
  }
}

/* --- ここまで --- */

@media all and (min-width: 600px) {
  .step_cont_box {
    flex: 1;
  }
}

@media all and (min-width: 750px) {
  .process {
    padding: 100px 38px 170px;
  }

  .process_list_ttl {
    padding: .5em;
  }

  .process_steps {
    margin-bottom: 60px;
  }

  .process_list_item {
    padding: 70px 80px 20px;
  }

  .step_requier_item > li {
    padding: 20px 0;
  }

  .step_cont_box img {
    max-height: 140px;
    margin: 0 auto;
  }

  .step_scsho {
    margin: 30px auto 15px;
    width: 80%;
  }

  .custom_prev {
    left: 0;
    transform: translate(-45%, -50%);
  }

  .custom_next {
    right: 0;
    transform: translate(45%, -50%);
  }

  .process_link.line_link::after {
    border-top: solid 7px #009d97;
    border-right: solid 7px #009d97;
  }
}

/* ---------------
  recomend
------------------ */
.recomend {
  background-color: var(--color8);
  padding-bottom: 5vw;
}

.recomend_ttl {
  text-align: center;
  font-size: min(3.8rem, 6vw);
  margin-bottom: 1em;
}

.recomend_ttl .ahamo_text_img {
  height: .8em;
}

.recomend_ttl_text {
  width: 80%;
  margin: .25em auto 0;
}

.rounded {
  border-radius: 20px;
}

.recomend_cont {
  background-color: #fff;
  border: 4px solid #b4f9f9;
  padding: 30px 5%;
}

.recomend_subttl {
  text-align: center;
  font-size: min(4.2rem, 7vw);
  line-height: 1.75;
  font-weight: 800;
  margin-bottom: 1em;
}

.recomend_type {
  display: flex;
  align-items: stretch;
  gap: 3%;
  margin-bottom: 30px;
}

.recomend_type_item {
  flex: 1;
  border-radius: 10px;
  padding: 6%;
  font-size: min(2.5rem, 3.5vw);
  font-weight: 700;
  text-align: center;
}

.recomend_type .recomend_type_item:first-child {
  border: 1px solid var(--color_sim);
  background-color: #f1feff;
}

.recomend_type .recomend_type_item:last-child {
  border: 1px solid var(--color_esim);
  background-color: #fff5f7;
}

.recomend_type_name img {
  height: min(2em, 10vw);
  margin: 0 auto 15px;
}

.recomend_type_name + img {
  height: 4em;
  margin: 0 auto 15px;
}

.recomend_type_desc p strong {
  font-size: 1.2em;
  font-weight: bold;
}

.recomend_type .recomend_type_item:first-child .recomend_type_desc p strong {
  color: var(--color_sim);
}

.recomend_type .recomend_type_item:last-child .recomend_type_desc p strong {
  color: var(--color_esim);
}

.recomend_diff_ttl {
  font-size: min(4.8rem, 7vw);
  text-align: center;
  margin-bottom: 1em;
  white-space: nowrap;
}

.recomend_diff_ttl img {
  display: inline-block;
  height: .8em;
}

.recomend_diff_wrap {
  position: relative;
}

.recomend_diff_wrap .recomend_diff_border {
  display: block;
  position: absolute;
  width: 90%;
  height: 1px;
  border-bottom: 1px dashed #999;
  left: 50%;
}

.recomend_diff_wrap .recomend_diff_border:first-of-type {
  top: 40%;
  transform: translate(-50%, 0);
}

.recomend_diff_wrap .recomend_diff_border:last-of-type {
  top: 70%;
  transform: translate(-50%, 0);
}

@media all and (min-width: 500px) {
  .recomend_diff_wrap .recomend_diff_border:first-of-type {
    top: 41%;
  }

  .recomend_diff_wrap .recomend_diff_border:last-of-type {
    top: 70%;
  }
}

@media all and (min-width: 700px) {
  .recomend_diff_wrap .recomend_diff_border:first-of-type {
    top: 42%;
  }

  .recomend_diff_wrap .recomend_diff_border:last-of-type {
    top: 71%;
  }
}


.recomend_diff {
  width: 100%;
  margin-bottom: 30px;
  border-collapse:collapse;
}

.left_top_round {
  border-radius: 16px 0 0 0;
}

.right_top_round {
  border-radius: 0 16px 0 0;
}

.right_bottom_round {
  border-radius: 0 0 16px 0;
}

.left_bottom_round {
  border-radius: 0 0 0 16px;
}

.recomend_diff tr {
  position: relative;
}
/*
.recomend_diff tr::before {
  display: block;
  content: "";
  width: 90%;
  height: 0;
  border: .1px dashed #999;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}*/

.recomend_diff tr:first-child::before,
.recomend_diff tr:last-child::before {
  width: 0;
}

.recomend_diff tr:first-child img {
  width: 4em;
}

.recomend_diff tr td:first-of-type {
  background-color: #f1feff;
}

.recomend_diff tr td:last-child {
  background-color: #fff5f7;
}

.recomend_diff tr:first-child * {
  background-color: inherit;
}

.recomend_diff th,
.recomend_diff td {
  padding: 2%;
}

.recomend_diff th {
  width: 30%;
  background-color: #f9f9f9;
  font-size: min(2.8rem, 3.7vw);
}

.recomend_diff th img {
  margin: 0 auto;
  max-width: 80%;
}

.recomend_diff td {
  width: 35%;
  font-size: min(2.4rem, 3.7vw);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.recomend_diff td strong {
  font-size: 1.1em;
  position: relative;
}

.recomend_diff td sup {
  font-size: min(1.6rem, 2.4vw);
}

.sup_abs {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(75%, 25%);
  color: #000;
  display: inline-block;
  width: 2em;
}

.recomend_diff tr td:first-of-type strong {
  color: var(--color_sim);
}

.recomend_diff tr td:last-child strong {
  color: var(--color_esim);
}

.recomend_diff .line_link {
  color: var(--color_sim);
  font-weight: 700;
  letter-spacing: 0;
  font-size: min(2.4rem, 3vw);
}

/*.recomend_diff .line_link::after {
  border-color: var(--color_sim)!important;
}*/

.recomend_desc_icon {
  width: 1.5em;
  display: inline-block;
}

.recomend .caption {
  color: #949494;
  font-weight: 400;
}

.recomend .cta {
  padding: 40px 5% 60px;
}

.recomend .wave_box {
  background-image: url(../images/recomend_wave.png);
}

.yellow_line {
  position: relative;
  z-index: 1;
}

.yellow_line::before {
  display: block;
  content: "";
  width: 105%;
  height: 40%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color4);
  z-index: -1;
}

@media all and (min-width: 600px) {
  .recomend .cta {
    padding: 70px 5%;
  }
}


@media all and (min-width: 750px) {
  .recomend {
    padding-bottom: 80px;
  }

  .recomend_type {
    margin-bottom: 60px;
  }

  .recomend_type_item {
    text-align: left;
    margin-bottom: 0!important;
  }

  .recomend_diff th,
  .recomend_diff td {
    padding: 15px 5px;
  }
}


/* ---------------
  CTA
------------------ */
.cta {
  padding: 30px 5%;
  text-align: center;
}

.section_cta {
  background: var(--color);
}

.cta_lead {
  color: var(--font_color);
  margin: 0 auto 15px;
  font-size: min(3.8rem, 5.3vw);
  font-weight: bold;
  position: relative;
  width: fit-content;
}

.cta_lead::before,
.cta_lead::after {
  display: inline-block;
  content: "";
  background-size:contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
}

.cta_lead::before {
  background-image: url(../images/cta_icon_left.svg);
  left: 0;
  transform: translate(-100%, -25%);
}

.cta_lead::after {
  background-image: url(../images/cta_icon_right.svg);
  left: 100%;
  transform: translate(0, -25%);
}

.cta_lead em {
  color: var(--acc);
  font-size: min(4.2rem, 7vw);
  font-weight: 900;
  letter-spacing: 0;
}

.cta_lead em.svg img{
  display: inline-block;
  height: 1.2em;
  margin: 0 .2em;
  transform: translateY(5px);
}

.cta_btn {
  text-align: center;
  display: block;
  font-size: min(4rem, 4.5vw);
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  letter-spacing: .1em;
  background-color: var(--acc);
  box-shadow: 1px 5px var(--acc2);
  border-radius: 999px;
  padding: .5em 1.5em;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  transition: all .2s;
}

.cta_btn:hover {
  opacity: 1;
  filter: brightness(130%);
  transform: translate(0, 3px);
  box-shadow: 1px 2px #7d0605;
}

.cta_btn::after {
  display: block;
  content: "";
  width: .6em;
  height: .6em;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  position: absolute;
  left: 90%;
  top: 50%;
  transform: translate(0, -50%) rotate(45deg);
}

@media all and (min-width: 600px) {
  .cta {
    padding: 40px 5% 60px;
  }

  .cta_btn {
    box-shadow: 1px 10px var(--acc2);
  }

  .cta_btn:hover {
    transform: translate(0, 8px);
    box-shadow: 1px 2px #7d0605;
  }

  .cta_btn::after {
    border-top: 7px solid #fff;
    border-right: 7px solid #fff;
  }
}



/* ---------------
  reason
------------------ */
.reason {
  background-color: #fced6c;
}

.reason_ttl {
  margin-bottom: 30px;
}

.reason_ttl img {
  width: 70%;
  margin: 0 auto;
}

.white_box {
  background-color: #fff;
}

.reason_rounded {
  border: 4px solid #d1ba34;
  border-radius: 20px;
  padding: 30px 5%;
  margin-bottom: 60px;
}

.reason_desc_ttl {
  font-size: min(4rem, 7vw);
  text-align: center;
  line-height: 1.75;
  margin-bottom: 1em;
}

.loud_line {
  color: #3A4043;
  font-size: min(2.8rem, 4vw);
  text-align: center;
  font-weight: 700;
  padding: .2em 0;
  margin: 0 auto .25em;
  width: fit-content;
  position: relative;
}

.loud_line::before,
.loud_line::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  background-size: contain;
  background-repeat: no-repeat;
  width: 1em;
  height: 1.5em;
}

.loud_line::before {
  left: 0;
  transform: translateX(-100%);
  background-image: url(../images/reason_lead_icon_left.png);
}

.loud_line::after {
  right: 0;
  transform: translateX(150%);
  background-image: url(../images/reason_lead_icon_right.png);
}

.loud_line img {
  display: inline-block;
  width: 3.6em;
  max-width: 95px;
  margin: 0 .2em;
  transform: translate(0, .1em);
}

.reason_plus {
  display: inline-block;
  background-color: #000;
  border-radius: 50%;
  width: min(10vw, 5rem);
  height: min(10vw, 5rem);
  position: relative;
  margin: .75em 0;
}

.reason_plus::before,
.reason_plus::after {
  display: inline-block;
  content: "";
  width: min(5vw, 2.5rem);
  height: 3px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.reason_plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.reason_point {
  margin: 20px auto 0;
  width: 85%;
}

.reason_point_item {
  font-size: min(4.4rem, 6vw);
  font-weight: 700;
  position: relative;
  width: fit-content;
  z-index: 1;
}

.reason_point_item::before {
  display: inline-block;
  content: "";
  background-image: url(../images/reason_point_check.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: .5em;
  width: .8em;
  height: .8em;
}

.reason_point_item::after {
  display: block;
  content: "";
  width: calc(100% - 1.25em);
  height: .5em;
  bottom: .25em;
  border-radius: 999px;
  right: 0;
  position: absolute;
  z-index: -1;
}

.reason_point .reason_point_item:first-child::after {
  background-color: #b8ffcb;
}

.reason_point .reason_point_item:nth-child(2)::after {
  background-color: #ffc3e6;
}

.reason_point .reason_point_item:last-child::after {
  background-color: #b9f5ff;
}

.reason_rounded .caption {
  color: #949494;
}

.reason .cta {
  padding: 40px 0 1.5em;
}

.reason_ctt_box_ttl .main {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: min(72px, 10.7vw);
  margin-bottom: 1vw;
  border-radius: 5.35vw;
  border: solid min(4px, 0.8vw) #000;
  font-size: min(3.8rem, 5.6vw);
  z-index: 2;
  font-weight: 600;
}

.reason_ctt_box_ttl .main .icon {
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 40px;
  height: 18px;
  background: #ffed6c;
  z-index: -1;
}

.reason_ctt_box_ttl .main .icon::after {
  position: absolute;
  top: 4px;
  left: 12px;
  display: block;
  content: "";
  width: min(4px, 0.6vw);
  height: 30px;
  background: #000;
  transform: rotate(34deg);
}

.reason_ctt_box_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 5.2vw 0 min(30px, 5vw);
  text-align: center;
}

.type_01 .reason_ctt_box_list {
  justify-content: center;
  margin-top: 30px;
}

.reason_ctt_box_list li {
  letter-spacing: 0.13020833333333331vw;
  line-height: 1.4;
  padding-top: min(300px, 39vw);
  position: relative;
  width: 50%;
  color: #3b4043;
  font-size: min(2.4rem, 3.8vw);
}

.reason_ctt_box_list li:before {
  background-color: #fff;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
  content: "";
  display: block;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: min(277px, 37vw);
  height: min(277px, 37vw);
  max-width: 100%;
}

.reason_ctt_box_list.first li:first-of-type:before {
  background-image: url("../images/reason_cct_05.png");
}

.reason_ctt_box_list.second li:first-of-type:before {
  background-image: url("../images/reason_cct_01.png");
}

.reason_ctt_box_list.second li:last-of-type:before{
  background-image: url("../images/reason_cct_02.png");
}

.reason_ctt_box_list.third li:first-of-type:before {
  background-image: url("../images/reason_cct_03.png");
}

.reason_ctt_box_list.third li:last-of-type:before{
  background-image: url("../images/reason_cct_04.png");
}

.reason_ctt_box_voice {
  margin: 0 0 50px;
}

.reason_ctt_box_voice img {
  margin: 0 auto;
}

.reason_ctt_box+.reason_ctt_box {
  margin-top: min(50px, 7.8125vw);
}

.reason_ctt_box_list sup {
  font-size: 1.2rem;
}

.reason_ctt_box.type_02 dl {
  border: solid 8px #15c3cc;
  border-radius: 20px;
  background: #15c3cc;
}

.reason_ctt_box.type_02 dl dt {
  padding: 8px 8px 16px;
  background: #15c3cc;
  color: #fff;
  font-size: min(3.2rem, 5.1vw);
  font-weight: bold;
  line-height: 1.5;
}

.reason_ctt_box.type_02 dl dd {
  padding: 13px 20px;
  border-radius: 0 0 16px 16px;
  background: #fff5c5;
}

.reason_ctt_box.type_02 dl dd ul {
  display: flex;
  flex-direction: column;
  gap: min(13px, 3vw);
}

.reason_ctt_box.type_02 dl dd ul li {
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
  color: #3b4043;
  font-size: min(27px, 3.7vw);
}

.reason_ctt_box.type_02 dl dd ul li img {
  width: 16%;
  height: 16%;
  border-radius: 50%;
  margin-right: 18px;
  background: #fff;
}

.reason + .wave_box {
  background-color: #fced6c;
}


@media all and (min-width: 750px) {
  .reason_ctt_box_ttl .main {
    padding: 0;
  }

  .reason_ctt_box_list {
    margin: 40px 0 30px;
  }

  .reason_ctt_box_voice {
    margin: 0 auto 80px;
  }

  .reason_rounded {
    padding: 60px 5%;
    margin-bottom: 100px;
  }
}


/* --------------------
  LINE
----------------------- */
.line {
  background-color: #f4f4f4;
  padding: 0;
}

.line_content {
  padding: 30px 5%;
}

.line_content h2 {
  text-align: center;
  margin-bottom: 15px;
}

.line_content h2 img {
  object-fit: contain;
  width: 78%;
  max-width: 500px;
  margin: 0 auto;
}

.line_btn {
  max-width: 600px;
  margin: 0 auto 10px;
  background-color: #00c302;
  color: #fff;
  font-size: min(4rem, 4.5vw);
  font-weight: 600;
  display: block;
  padding: .75em 0;
  text-align: center;
  text-decoration: none;
  border-radius: 2em;
  position: relative;
  -webkit-box-shadow: 1px 4px #018e04;
          box-shadow: 1px 4px #018e04;
  -webkit-transition: all .2s;
          transition: all .2s;
  letter-spacing: .05em;
}

.line_btn::before{
  display: block;
  content: "";
  width: .6em;
  height: .6em;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  position: absolute;
  left: 90%;
  top: 50%;
  transform: translate(0, -50%) rotate(45deg);
}

.line_btn::after {
  display: block;
  content: "";
  background-image: url("../images/hukidashi_line.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 16vw;
  max-width: 90px;
  height: 16vw;
  max-height: 90px;
  position: absolute;
  top: -6px;
  left: -10px;
}

.line_btn:hover {
  -webkit-transform: translate(0, 4px);;
  -ms-transform: translate(0, 4px);;
      transform: translate(0, 4px);
  -webkit-box-shadow: 0 0 #047660;
          box-shadow: 0 0 #047660;
}

@media all and (min-width: 750px) {
  .line_btn::before {
    border-top: 7px solid #fff;
    border-right: 7px solid #fff;
  }
}


/* --------------------
  faq
----------------------- */
.faq {
  background-color: #fff;
}

.faq .sec_inner {
  padding: 0 4%;
}

.faq .sec_ttl {
  font-size: min(6.8rem, 9.1vw);
  font-weight: 700;
  letter-spacing: min(5px, 0.9114583333333334vw);
  line-height: 1.4;
  text-align: center;
  color: #3a4043;
}

.faq_ctt {
  margin-top: min(68px, 9.114583333333332vw);
}

.faq_ctt_acc {
  border-bottom: solid 1px #cccccc;
}

.faq_accodion {
  border-top: solid 1px #cccccc;
  overflow: hidden;
  font-size: min(2.5rem, 3.3854166666666665vw);
}

.faq_q {
  color: #3B4043;
  font-weight: 400;
  line-height: 1.4;
  min-height: 22vw;
  max-height: 170px;
  padding: min(33px, 4.3vw) min(78px, 10.4vw);
}

.faq_accodion[open] .faq_q{
  color: #0ca3af;
}

.faq .toggle_sign::before,
.faq .toggle_sign::after {
  background-color: #15c3cc;
  height: 4px;
  width: 20px;
}

.faq_q_text {
  position: relative;
}

.faq_q_text::before,
.faq_a::before {
  position: absolute;
  content: "";
  display: block;
  transform: translateY(-50%);
  width: 4.6vw;
  height: 4.6vw;
}

.faq_q_text::before {
  top: 3vw;
  left: -7.5vw;
  background: url(../images/faq_q.svg) no-repeat center / contain;
}

.faq_a::before {
  top: 7vw;
  left: 3vw;
  background: url(../images/faq_a.svg) no-repeat center / contain;
}

.faq_a {
  background: #e9fdff;
  font-weight: 400;
  line-height: 1.8;
  padding: min(33px, 4.3vw) min(78px, 10.4vw);
  font-weight: 400;
  position: relative;
  min-height: 22vw;
}

.faq_a p {
  margin-bottom: 2em;
  line-height: 1.8;
}

.faq_a a {
  color: #00a0e9;
}

.faq_a em {
  font-weight: bold;
}

.faq_ctt_link {
  margin-top: 30px;
  text-align: center;
}

.faq_ctt_link .line_link {
  position: relative;
  padding-right: 10px;
  color: #00a0e9;
  font-size: min(2rem, 4vw);
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: underline;
}

/*.faq_ctt_link .line_link::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 2px #009eef;
  border-right: solid 2px #009eef;
  transform: rotate(45deg) translateY(-50%);
}*/

@media all and (min-width: 750px) {
  .faq_q {
    padding: 0 88px 4px;
    position: relative;
    height: 150px;
    min-height: auto;
    max-height: none;
    font-size: 2.4rem;
  }

  .faq_q:before {
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: url(../images/faq_q.svg) no-repeat center / contain;
  }

  .faq_q_text::before{
    display: none;
  }

  .faq_a {
    padding: 24px 50px 34px 88px;
  }

  .faq_a::before {
    top: 45px;
    left: 30px;
    transform: translateY(-50%);
    width: 25px;
  }

  .faq_a p {
    font-size: 1.8rem;
  }
}

.ahamo_link_wrap {
  margin: 0 5.2vw;
}

.ahamo_link_btn {
  display: block;
  background-color: #666;
  text-decoration: none;
  border-radius: 15px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto 60px;
  padding: 1em;
  line-height: 1;
  transition: all .3s;
}

.ahamo_link_btn img {
  display: inline;
  height: min(27px, 4.4vw);
  width: auto;
}

.ahamo_link_icon {
  margin-left: 15px;
}

@media all and (min-width: 750px) {
  .ahamo_link_btn {
    padding: 30px;
  }
}


/* --------------------
  address
----------------------- */
.address {
  padding: 0 5% 50px;
  font-size: min(2rem, 3.6vw);
  font-weight: 400;
  color: #4d4d4d;
}

.address address {
  font-style: normal;
  margin-bottom: 20px;
}

.address a {
  color: #00a0e9;
  font-weight: 700;
}


/* --------------------
  footer
----------------------- */
footer {
  max-width: 750px;
  margin: 0 auto;
  background-color: var(--color);
}

.copy {
  background-color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 2.604166666666667vw;
  font-weight: 600;
  letter-spacing: .15em;
  line-height: 1;
}

@media all and (min-width: 750px) {
  .copy {
    font-size: 1.4rem;
    padding: 1.5em;
  }
}


/* --------------------
  追従CTA
----------------------- */
.fixed_cta {
  padding: min(15px, 3%) 5% min(15px, 4%);
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 999;
  opacity: 0;
}

.cv_area_fade.fixed_cta {
  opacity: 1;
}

.fixed_cta .cta_lead {
  font-size: min(2.4rem, 3.4vw);
  margin: 0 auto 3px;
}

.fixed_cta .cta_lead em {
  font-size: 1.4em;
}

.fixed_cta .cta_btn {
  padding: .5em 1.5em;
  font-size: min(3.2rem, 4vw);
}

@media all and (min-width: 750px) {
  .fixed_cta .cta_btn::after {
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
  }
}

/* --------------------
  fade Animation
----------------------- */
.fade-in {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 100px);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}


/* --------------------
  キャンペーン追加
-------------------- */
.bg_light_green {
  background-color: #e1fff5;
  max-width: 750px;
  margin: 0 auto;
}

.camp_header {
  background-color: #fd5d60;
  display: block;
  padding: 10px;
}

.camp_header_cont {
  width: 100%;
  max-width: 1102px;
  margin: 0 auto;
}

.camp_header_cont img {
  object-fit: contain;
}

.norikae {
  margin: 0 auto 0;
}

.norikae2 {
  margin: -50px auto 0;
  padding-top: 50px;
}

.norikae,
.norikae2 {
  max-width: calc(100% - 3% * 2);
}

.norikae_info {
  padding: 30px 0 20px;
  position: relative;
}

.norikae_info .norikae_info_cont {
  position: relative;
  padding-bottom: 0;
}

.norikae_info_cont p {
  position: absolute;
  bottom: 0.8em;
  color: #fff;
  width: 100%;
  font-size: 9px;
  text-align: center;
  text-shadow: 1px 1px 0 #42050d, -1px -1px 0 #42050d,
    -1px 1px 0 #42050d, 1px -1px 0 #42050d,
    0px 1px 0 #42050d, 0-1px 0 #42050d,
    -1px 0 0 #42050d, 1px 0 0 #42050d;
}

.norikae_info_cont p a {
  color: #e6ba03;
}

.norikae_info2 {
  margin: 30px 0 0;
}

.norikae_btn {
  background-color: #019bff;
  border-radius: 999px;
  color: #fff;
  text-align: center;
  font-size: min(2em, 5.6vw);
  line-height: 1;
  display: block;
  position: relative;
  padding: 1.25em 1.5em;
  margin: 10px auto;
  text-decoration: none;
  transition: all .3s;
  box-shadow: 2px 5px 0px #09466A;
}

.norikae_btn:hover {
  transform: translate(0, 3px);
  box-shadow: 2px 2px 0px #09466A;
}

.norikae_btn::before {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translate(0, -50%);
  position: absolute;
  top: 50%;
  right: 8%;
}

.notice {
  font-style: normal;
  color: #777;
  font-size: min(16px, 2.5vw);
  text-align: center;
}

.sns_area .style_flex img {
  object-fit: contain;
}

.camp_ttl {
  margin: 0 auto;
}

@media all and (min-width: 750px) {
  .norikae,
  .norikae2 {
    max-width: calc(100% - 38px* 2);
  }

  .norikae_info {
    padding: 50px 0 50px;
  }

  .norikae_info_cont p {
    font-size: 1.6rem;
  }
}

/* --------------------
add 251224
-------------------- */
/* modal */
.is-modal-open .fixed_cta {
  z-index: -1;
}
.is-modal-open .header {
  position: relative;
  z-index: 100;
}
#content1 .modalBtn li {
  margin-bottom: 2em;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  #content1 .modalBtn li {
    margin-bottom: 1em;
  }
}
.modal .txtLink {
  text-align: center;
  font-size: 23px;
}
@media screen and (max-width: 750px) {
  .modal .txtLink {
    font-size: 4vw;
  }
}
.modal img {
  width: auto;
}

#modal2_1 .ttl2 {
  width: 84%;
  margin: 0 auto 2em;
}
#modal2_1 .txt1 {
  margin-bottom: 2em;
}
@media screen and (max-width: 750px) {
  #modal2_1 .ttl2,
  #modal2_1 .txt1 {
    margin-bottom: 1em;
  }
}
#modal2_1 .txt2 {
  margin-bottom: 2em;
}
#modal2_2 .ttl2 {
  width: 94%;
  margin: 0 auto 1em;
}
#modal2_2 .bnrList {
  text-align: center;
}
#modal2_2 .bnrList li {
  margin-bottom: 2em;
}
#modal2_2 .bnrList li:last-child {
  margin-bottom: 0;
}
#modal2_2 .bnrList li .bnr {
  margin-bottom: 1em;
  position: relative;
}
#modal2_2 .bnrList li .bnr .img {
  position: relative;
  z-index: 1;
}
#modal2_2 .bnrList li .bnr .txt {
  position: absolute;
  bottom: 0.8em;
  z-index: 2;
  color: #fff;
  width: 100%;
  font-size: 18px;
  text-align: center;
  text-shadow: 1px 1px 0 #42050d, -1px -1px 0 #42050d,
    -1px 1px 0 #42050d, 1px -1px 0 #42050d,
    0px 1px 0 #42050d, 0-1px 0 #42050d,
    -1px 0 0 #42050d, 1px 0 0 #42050d;
}
@media screen and (max-width: 750px) {
  #modal2_2 .bnrList li .bnr .txt {
    bottom: 0.8em;
    font-size: 2.4vw;
  }
}
#modal2_2 .bnrList li .bnr .txt a {
  color: #e6ba03;
}
#modal2_2 .bnrList li .notice {
  margin-bottom: 1em;
}
#modal2_2 .bnrList li .txtLink {
  font-size: 23px;
}
@media screen and (max-width: 750px) {
  #modal2_2 .bnrList li .txtLink {
    font-size: 4.5vw;
  }
}
#modal2_3 .flow {
  margin-bottom: 1em;
  border: 3px solid var(--color7);
  border-top: none;
}
#modal2_3 .flow > li {
  margin-bottom: 2em;
  padding-top: 1.5em;
  border-top: 2px solid var(--color7);
}
#modal2_3 .flow .step_cont {
  width: 82%;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  #modal2_3 .flow .step_scsho {
    margin: 15px auto;
  }
}
#modal2_3 .flow .li1 .step_cont {
  width: 90%;
}
#modal2_3 .flow .li4 .step_cont {
  width: 50%;
}
#modal2_3 .flow .step_cont .caption {
  margin: 0 1em;
}
#modal2_3 .flow .step_requier_item {
  padding-top: 1em;
}
.step_cont .step_cont_box:first-child {
  margin-left: 3%;
}
#modal2_3 .flow .step_cont .step_cont_box:last-child {
  width: 52%;
}
#modal2_3 .txtLink {
  margin-bottom: 1em;
}

.modal{
  display: none;
}
.modal.is-open {
  display: block;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}
.modalOuter {
  position: relative;
}
.modal-content {
  max-width: 750px;
  max-height: 90vh;
  margin: 0 auto;
  padding: 30px;
  line-height: 1.5;
  background-color: #fff;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}
@media screen and (max-width: 750px) {
  .modal-content {
    max-width: 95%;
    max-height: 90vh;
    padding: 2vw;
  }
}
.modal__close {
  width: 1.5em;
  height: 1.5em;
  color: #fff;
  font-size: 200%;
  background-color: #888;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}
@media screen and (max-width: 750px) {
  .modal__close {
    font-size: 150%;
    transform: translate(-10%, -50%);
  }
}
.modal__close:before {
  content: "\2715";
  padding-bottom: .2em;
  line-height: 1;
}
@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%);}
}
.modal[aria-hidden="false"] .overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal[aria-hidden="false"] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal[aria-hidden="true"] .overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal[aria-hidden="true"] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal .modal__container,
.modal .overlay {
  will-change: transform;
}

/* contents */
.kv_transfer .ttl1 {
  width: 92.47%;
  margin: 0 auto 2em;
}
@media screen and (max-width: 750px) {
  .kv_transfer .ttl1 {
    margin-bottom: 1.5em;
  }
}
.kv_transfer .modalBtn {
  width: 95.428%;
  margin: 0 auto;
}
