@charset "utf-8";
/* --------------------
  constants
-------------------- */
:root {
  --font_color: #424242; /* ベースの文字色  */
  --main_color01: #b5e546;
  --main_color02: #02673a;
  /* ゴシック体 */
  --font_family: 'Noto Sans JP','Noto Sans','Noto Sans CJK JP','ヒラギノ角ゴ','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','Hiragino Kaku Gothic',sans-serif;
}
/* --------------------
  base
-------------------- */
:root {
  font-size: 62.5%;
}
* {
  margin-top: 0;
}
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}
body {
  position: relative;
  z-index: -1;
  color:  var(--font_color);
  font-family: var(--font_family);
  font-size: 1.6rem;
  line-height: 1.5;
  padding-right: 0!important;
}
body::before {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100vw;
  height: 100vh;
  background: url("/special/amagif_202604sim/assets/images/pc_bg.webp") no-repeat center / cover #fff;
  content: "";
}
a {
  text-decoration: none;
  color: #242ee2;
}
h1, h2, h3 {
  line-height: 1.3em;
  margin-top: 0;
}
ul, ol {
  -webkit-padding-start: 0;
          padding-inline-start: 0; /* list-styleを設定する場合は要調整 */
  list-style: none;
}
dd {
  -webkit-margin-start: 0;
          margin-inline-start: 0;
}
img {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
section {
  max-width: 750px;
  margin: 0 auto;
}
.x_shadow {
  box-shadow: 0 0 .8rem rgba(164, 193, 43, 1);
  max-width: 750px;
  margin: 0 auto;
  background-color: #fff;
}
.text_red {
  color: #f00;
}
/* --------------------
  common
-------------------- */
.caption_text_wrap {
  margin-top: 2rem;
}
.caption_text_left {
  font-size: 2.4rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  padding-left: 1.55em;
  text-indent: -1.55em;
}
.caption_text_left+.caption_text_left {
  margin-top: 1rem;
}
@media all and (max-width: 750px) {
  .caption_text_left {
    padding-left: 5.2vw;
    text-indent: -5.2vw;
    font-size: 3vw;
  }
}
@media all and (max-width: 500px) {
  .caption_text_wrap {
    margin-top: 8vw;
  }
  .caption_text_left {
    padding-left: 5vw;
    text-indent: -5vw;
    margin-top: 1vw!important;
  }
}
#process_modal,
#sim_esim {
  padding: 16% 2.5rem 15%;
  position: relative;
}
#process_modal::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 80px;
  left: 0;
  top: 0;
  margin: auto;
  z-index: -1;
}
@media all and (max-width: 700px) {
  #process_modal::before {
    height: 12vw;
  }
}
@media (hover: hover) {
  a:hover {
    opacity: .7;
  }
  .cta_follow .btn a:hover::after {
    opacity: .2;
  }
  .entry_sim .entryBtn a:hover {
    -webkit-transform: translate(0, .2rem);
    -ms-transform: translate(0, .2rem);
    transform: translate(0, .2rem);
    -webkit-box-shadow: 0 1px #dd5b03;
    box-shadow: 0 .1rem #dd5b03;
    opacity: 1;
  }
  .entry_sim .entryBtn a:hover,.black_cv_btn.btn_01:hover,.bg_right_area .btn_wrap:hover {
    -webkit-transform: translate(0, .2rem);
        -ms-transform: translate(0, .2rem);
            transform: translate(0, .2rem);
    -webkit-box-shadow: 0 .1rem #d23e5c;
            box-shadow: 0 .1rem #d23e5c;
    opacity: 1;
  }
  .bg_right_area .btn_wrap a:hover {
    opacity: 1;
  }
  .line_link:hover {
    opacity: .6;
    transition: .5s;
  }
}

/* entry_wrap・btn
------------------------------------------------*/
.entry_wrap {
  text-align: center;
  font-size: 1.6rem;
  width: 90%;
  max-width: 560px;
  margin: 0 auto 6rem;
}
.entry_wrap .entryBtn {
  position: relative;
  height: 10rem;
  width: 100%;
  max-width: 560px;
  margin: 3rem auto;
}
.entry_wrap input[type="checkbox"] + label, .entry_wrap input[type="checkbox"]:checked + label {
  cursor: pointer;
  position: relative;
  padding-left: 29px;
  font-size: 2.8rem;
  margin-left: 1rem;
}
.entry_wrap input[type="checkbox"] {
  display: none;
}
.entry_wrap input[type="checkbox"] + label::before, .entry_wrap input[type="checkbox"]:checked + label::after {
  position: absolute;
  top: .75rem;
  left: -1rem;
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  border: .2rem solid var(--font_color);
  background: #fff;
  border-radius: 1.5px;
  box-sizing: border-box;
}
.entry_wrap input[type="checkbox"]:checked + label::after {
  background: url("/special/amagif_202604sim/assets/images/ic_check.svg") no-repeat center / 85% auto;
}
.entry_wrap input:checked ~ .btn.disable::after {
  display: none;
}
@media screen and (max-width: 750px) {
  .entry_wrap {
    margin-bottom: 2.6rem;
  }
  .entry_wrap input[type="checkbox"] + label, .entry_wrap input[type="checkbox"]:checked + label {
    padding-left: 1em;
  }
}
@media screen and (max-width: 500px) {
  .entry_wrap .entryBtn {
    margin: 1.5rem auto .5rem;
  }
  .entry_wrap input[type="checkbox"] + label, .entry_wrap input[type="checkbox"]:checked + label {
    font-size: 4.3vw;
  }
  .entry_wrap input[type="checkbox"] + label::before, .entry_wrap input[type="checkbox"]:checked + label::after {
    width: 4vw;
    height: 4vw;
    border: .1rem solid var(--font_color);
    top: 1vw;
  }
}
@media screen and (max-width: 450px) {
  .entry_wrap .entryBtn {
    height: 16vw;
  }
}
.btn.disable::after {
  position: absolute;
  max-width: 560px;
  width: 100%;
  height: 10.565rem;
  content: '';
  background: rgba(0, 0, 0, .3);
  border-radius: 99rem;
  top: 0;
  left: 0;
}
.entry_wrap input:checked ~ .entryBtn.disable::after {
  display: none;
}
.btn.disable a::after {
  display: none;
}

.btn {
  display: inline-block;
}
.btn img {
  width: 50%;
}
.btn .btn_01 {
  background-color: #ef455e;
  box-shadow: 0 .6rem #d23e5c;
}
.btn_ttl {
  max-width: 72%!important;
  margin: 2rem auto .8rem;
}
.line_content .btn_01 {
  padding: .3em 0;
  margin-bottom: 5rem;
  background-color: #ff7926;
  box-shadow: 0 .6rem #dd5b03;
}
.line_content .btn_01 img {
  max-width: 60%!important;
  margin: auto;
  padding: 1rem 0;
}
.ahamo_btn a img {
  max-width: 50%!important;
  margin: auto;
  padding: .2em 0;
}
.btn_lead {
  display: flex;
  justify-content: center;
  align-items: end;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
  margin: 4.5rem 0 1rem;
  line-height: 1.1;
}
.black_cv_btn {
  color: #fff;
  font-size: min(5vw, 32px);
  font-weight: 600;
  display: block;
  padding: .6em 0;
  text-align: center;
  text-decoration: none;
  margin: 0 auto 2rem;
  border-radius: 99rem;
    -webkit-box-shadow: 1px .4rem transparent;
  box-shadow: 1px 5px transparent;
  position: relative;
  width: 100%;
  max-width: 560px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
      line-height: 1.8em;
}
.btn_01 {
  background-color: #ff7926;
  box-shadow: 0 .6rem #dd5b03;
}
.black_cv_btn::before,.entry_sim .entryBtn a::after,.bg_right_area .btn_wrap a::after {
  content: "";
  margin: auto;
  position: absolute;
  display: inline-block;
  right: 7%;
  top: 40%;
  width: 1em;
  height: 1em;
  background: url(/special/amagif_202604sim/assets/images/ic_white.svg) no-repeat;
}
.entry_sim .entryBtn {
  position: relative;
  height: 10rem;
  margin: 2.6rem auto 2.6rem;
}
.entry_sim .entryBtn a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #ef6d89;
  box-shadow: 0 .5rem #a52d2d;
  transition: .3s;
  font-size: min(5vw, 28px);
  font-weight: 600;
  border-radius: 9.9rem;
  color: #fff;
  text-decoration: none;
  font-feature-settings: "palt";
  letter-spacing: .07em;
}
@media screen and (max-width: 750px) {
  .line_content .btn_01 {
    padding: .1em 0;
    width: 85%;
  }
  .btn_lead {
    font-size: 4.2vw;
  }
  .btn_lead span {
    width:  3.5em;
  }
}
@media screen and (max-width: 620px) {
  .btn.disable::after {
    height: 16.8vw;
  }
}
@media (max-width: 500px) {
  .entry_sim .entryBtn a {
    font-size: min(4.5vw, 28px);
  }
  .btn.disable::after {
    height: 16.2vw;
  }
  .line_content .btn_01 {
    margin-bottom: 3rem;
    box-shadow: 0 1vw #dd5b03;
  }
  .btn_lead {
    margin-top: 2.6rem;
  }
  .btn .btn_01 {
    box-shadow: 0 1vw #d23e5c;
  }
  .btn_01 {
    box-shadow: 0 1vw #dd5b03;
  }
  .entry_sim .entryBtn a {
    box-shadow: 0 1vw #a52d2d;
  }
}
/* bg_contents
------------------------------------------------*/
.bg_contents {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  max-width: calc((100% - 500px) / 2);
  font-feature-settings: "palt";
}
.bg_contents .benefits {
  position: absolute;
  top: calc((100% - 330px) / 2);
  left: calc((100% - 21.5vw) / 2);
  width: 12vw;
  max-width: 80%;
  background: #2b9b07;
  border-radius: .5vw;
  padding: .7em 0 1em;
}
.bg_contents .benefits .access {
  padding-bottom: 1em;
  color: #fff;
  font-size: 1.3vw;
  font-weight: bold;
  text-align: center;
}
.bg_contents .benefits img {
  width: 60%;
  margin: 0 auto;
}
.bg_contents .bg_right_area {
  position: fixed;
  top: calc((100% - 300px) / 2);
  right: 0;
  width: 100%;
  max-width: calc((100% - 750px) / 2);
  margin-top: 0;
}
.bg_period {
  position: relative;
  width: 20vw;
  height: 13vw;
  margin: auto;
  border-radius: 1vw;
  border: .3rem solid #96bf00;
  background: #fff;
  text-align: center;
}
.bg_period::before,.bg_period::after {
  position: absolute;
  width: 4vw;
  height: 3.8vw;
  background: url("/special/amagif_202604sim/assets/images/bg_ic_flower.svg") no-repeat center/contain;
  content: "";
}
.bg_period::before {
  top: -1.7vw;
  left: -1.5vw;
}
.bg_period::after {
  bottom: -1.7vw;
  right: -1.5vw;
}
.entry_sub_tx span {
  font-size: 1.6vw;
  font-weight: bold;
}
.entry_sub_tx,
[class*=cdt_date] small {
  padding: 5% 0 2%;
  font-size: 1.1vw;
  font-weight: bold;
  letter-spacing: .06em;
}
.bg_right_area .CDT_btn_p {
  width: 100%;
  height: 3.5vw;
}
.bg_right_area .btn_wrap {
  width: 90%;
  margin: 1.1vw auto 0;
  background: #ef455e;
  box-shadow: 0 .4rem #d23e5c;
  border-radius: 99rem;
  transition: .3s;
}
.bg_right_area .btn_wrap a {
  position: relative;
  display: inline-block;
  padding: .5vw;
  width: 100%;
  height: 100%;
  color: #fff;
  font-weight: bold;
  font-size: 1.3vw;
}
.bg_right_area .btn_wrap a::after{
  right: 8%;
  top: 30%;
  width: 1.1vw;
  transform: rotate(90deg);
}
@media screen and (min-width: 1920px) {
  .entry_sub_tx span {
    margin-bottom: 1rem;
    font-size: 3rem;
  }
}
@media screen and (max-width: 1450px) {
  .bg_period {
    width: 18vw;
  }
  .bg_right_area .btn_wrap {
    margin-top: 1.2vw;
  }
}
@media screen and (max-width: 1300px) {
  .bg_right_area .btn_wrap a::after {
    right: 1.2vw;
    width: 1em;
  }
  .bg_period {
    width: 17.5vw;
    height: 12.5vw!important;
  }
  .bg_period::before {
    left: -1.3vw;
    width: 3.5vw;
  }
  .bg_period::after {
    right: -1.3vw;
    width: 3.5vw;
  }
  .bg_right_area .btn_wrap a {
    font-size: 1.15vw;
  }
}
@media screen and (max-width: 1250px) {
  .bg_contents {
    display: none;
  }
}
/*カウントダウンタイマー
------------------------------------------------*/
.cdt_num {
  display: inline-block;
  height: auto;
  width: 3.3vw;
  min-width: 2.6vw;
  margin: 0 .4vw;
  padding: .2rem .5rem .4rem;
  border-radius: 1rem;
  border: solid .3rem #ef455e;
  background-clip: padding-box;
  background: #fff;
  color: #ef455e;
  font-size: 1.7vw;
  font-weight: bold;
  font-family: inherit;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 1450px) {
  .cdt_num {
    padding: .3rem .2rem .4rem;
    line-height: 1.2;
    width: 2.75vw;
    font-size: 1.5vw;
  }
  [class*=cdt_date] small {
    font-size: 1vw;
  }
}
/* cta_follow
------------------------------------------------*/
.cta_follow {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 750px;
  z-index: 10;
  background: rgba(224, 247, 178,.7);
  padding: 1rem 0;
  margin: auto;
  right: 0;
  text-align: center;
}
.cta_follow .btn {
  width: 100%;
}
  .cta_follow .black_cv_btn {
  margin: 0 auto;
}
  .cta_follow .black_cv_btn::before {
  transform: rotate(90deg);
  top: 35%;
}
@media screen and (max-width: 750px) {
  .cta_follow {
    padding: 1.2rem 0;
    width: 100%;
  }
  .cta_follow .btn {
    width: 90%;
  }

}
/* --------------------
  kv
----------------------- */
.kv::after {
  content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 80px;
    margin: auto;
    bottom: -50px;
    left: 0;
    z-index: 3;
    background: url("/special/amagif_202604sim/assets/images/wave_green_top.svg") no-repeat bottom center / 102%;
    transform: rotate(180deg) scale(1, 1);
}
.kv {
  background: linear-gradient(0,rgba(248, 255, 220, 1) 0%, rgba(241, 255, 193, 1) 69%, rgba(233, 255, 164, 1) 100%);
  position: relative;
}
h1 {
  font-size: 1rem;
  margin-bottom: -4rem;
  padding-top: 7.7rem;
}
h1 img{
  margin: 0 auto;
}
.kv_tx01 {
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  padding: 2rem 0 2.5rem;
  line-height: 1;
  font-feature-settings: "palt";
  letter-spacing: .32rem;
}
.kv_tx01 span {
  font-size: 2.5rem;
}
/*----- 上部追従 -----*/
#kv_follow {
  position: fixed;
  z-index: 99;
  max-width: 750px;
  width: 100%;
  padding: 0 1.5rem;
  background: #2b9b07;
  color: #fff;
}
#kv_follow.is-shadow {
  box-shadow: 0 .5rem .5rem rgba(29, 63, 26,.2);
  transition: .1s;
}
@media (max-width: 750px) {
  h1 {
    margin-bottom: -5vw;
    padding-top: 9.9vw;
  }
  .kv::after {
    bottom: -75px;
  }
  .kv_tx01 {
    padding: 3% 0;
    font-size: 4.2vw;
    letter-spacing: .44vw;
  }
  .kv_tx01 span {
    font-size: 3vw;
  }
}
@media (max-width: 500px) {
  .kv_tx01 {
    letter-spacing: .35vw;
  }
}
/*date_wrap
--------------------------------------------------------------*/
.date_wrap {
  padding: 5rem 2.2rem 8rem;
  text-align: center;
}
.date_wrap dt {
  color: #333;
  font-size: 3.4rem;
  font-weight: 600;
  padding: .5rem;
  margin-top: 3rem;
  background: var(--main_color01);
}
.date_wrap dt:first-of-type {
  margin-top: 0;
}
.date_wrap dd {
  color: #333;
  margin-top: 2rem;
  font-size: 3.4rem;
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: .3rem;
}
.date_wrap dd span {
  font-size: 2.2rem;
}
.date_wrap .indMark {
  margin: 1rem 1.5rem;
  font-feature-settings: normal;
  letter-spacing: normal;
}
.date_wrap .indMark>li {
  text-align: left;
  color: #e51a1a;
  font-weight: 500;
  width: fit-content;
  margin: 0 auto;
}
.date_wrap .dd_tx {
  font-size: 2.5rem;
  text-align: center;
}
.date_wrap .dd_tx p+p {
  margin-top: 1.5rem;
}
@media screen and (max-width: 750px) {
  .date_wrap dd {
    font-size: 2.6rem;
    margin-top: 1.5rem;
  }
  .date_wrap {
    padding: 4rem 3vw 5rem;
  }
  .date_wrap dd span {
    font-size: 2.3rem;
  }
  .date_wrap dt {
    margin-top: 2rem;
  }
  .date_wrap .indMark {
    margin: 1rem .5rem;
  }
  .date_wrap .indMark>li {
    font-size: 3vw;
  }
  .date_wrap .dd_tx {
    font-size: 3.1vw;
  }
  .date_wrap .dd_tx p+p {
    margin-top: 2vw;
  }
}
@media screen and (max-width: 500px) {
  .date_wrap dt {
    font-size: 5vw;
    margin-top: 1.5rem;
    line-height: 1;
    padding: .7rem;
  }
  .date_wrap dd {
    font-size: 5vw;
    letter-spacing: .2rem;
    margin-top: 1rem;
  }
  .date_wrap dd span {
    font-size: 4vw;
  }
  .date_wrap {
    padding: 3rem 0;
    margin: 0 1rem;
  }
}

/* --------------------
  method_cp
----------------------- */
.method_cp_content {
  border: 3px #f06d89 solid;
  border-radius: 1.5rem;
  background-color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 4%;
}
.method_cp_content:first-of-type {
    margin-top: 3%;
}
.method_cp_content:last-of-type {
    margin-bottom: 0;
}
.method_cp_content h3 {
  display: block;
  background-color: #f06d89;
  color: #fff;
  font-weight: normal;
  padding: .4% 4% .8%;
  border-radius: 1rem 1rem 0 0;
}
.method_cp_content > div {
  margin: 3% 3% 6% 3%;
}
.method_cp_content .blue span {
  color: #a52d2d;
}
.tx_step3 {
  color: #a52d2d;
  font-size: 3.3rem;
}
@media screen and (max-width: 500px) {
  .method_cp_content h3 {
    border-radius: .5rem .5rem 0 0;
  }
  .method_cp_content {
    border-width: .2em;
    border-radius: 1rem;
    font-size: 4.2vw;
  }
  .method_cp_content > div {
    margin: 5% 3%;
  }
}
/* --------------------
  about plan_ahamoはすべてコミコミ
----------------------- */
.about_plan {
  background: url("/special/amagif_202604sim/assets/images/about_plan_bg.webp") no-repeat center / contain, #ffdec5;
}
.about_plan_wrap {
  padding: 12% 2.5rem 20%;
}
.about_plan_wrap h2 {
  padding-top: 6%;
}
.about_plan_ttl {
  text-align: center;
}
.about_plan_ttl img {
  object-fit: contain;
}
.plan_img img {
  max-width: 100%;
}
@media screen and (max-width: 750px) {
  .about_plan_wrap {
    padding: 12% 1.5rem 17%;
  }
  .about_plan_wrap h2 {
    padding-top: 10%;
  }
}
@media screen and (max-width: 500px) {
  .about_plan_wrap {
    padding: 13% 1.5rem 21%;
  }
  .about_plan_wrap h2 {
    padding-top: 6%;
  }
}
/* --------------------
  process_modal_お乗り換え（MNP）手順
----------------------- */
#process_modal::before{
  background: url("/special/amagif_202604sim/assets/images/wave_yellow.svg") no-repeat bottom center / 102%;
  margin-top: -1px;
  top: -75px;
}
#process_modal::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 80px;
  margin: auto;
  bottom: -65px;
  z-index: 2;
  left: 0;
  background: url("/special/amagif_202604sim/assets/images/wave_yellow.svg") no-repeat bottom center / 102%;
  transform: rotate(180deg) scale(1, 1);
}
#process_modal {
  background: #fffdc7;
  padding: 4% 2.5rem 5em;
  z-index: 2;
}
#process_modal .process_modal_ttl {
  text-align: center;
}
#process_modal .process_modal_ttl span:first-of-type{
  display: inline-block;
  background-color: #f06d89;
  color: #fff;
  font-feature-settings: "palt";
  border-radius: .5rem;
  padding: .7%;
  line-height: 1.1;
  margin-right: 1%;
}
#process_modal .process_modal_ttl span{
  color: #f06d89;
  font-size: 3rem;
  font-weight: bold;
  margin-top: 2.3%;
}
#process_modal .recomend_diff_border {
  display: block;
  position: absolute;
  width: 85%;
  height: 2px;
  left: 0;
  right: 0;
  margin: auto;
  background-image: radial-gradient(circle,#313131 1px , transparent 1px);
  background-size: 12px 2px;
}
#process_modal .method_cp_content .item {
  font-weight: bold;
  margin: 4.5%;
}
.lit_bg {
  background-color: #ffe9ed;
  padding: 2rem 3% 3%;
  margin-top: 2rem;
}
.left_right_bottom_round{
  border-radius: 0 0 13px 13px;
}
#process_modal .method_cp_content > div {
  margin:3% 0 0 0;
}
#process_modal .method_cp_content.item > div {
  margin: 3%;
}
#process_modal .method_cp_content .l_tx {
  font-size: 3.3rem;
  margin-top: .1%;
}
.step_requier_item {
  margin: 0 auto;
}
.step_cont{text-align: left;}
.step_requier_item > li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
.step_requier_item > li:last-of-type{
  padding: 15px 0 5%;
}
.step_requier_item > li:first-of-type {
  padding-top: 0;
}
.step_cont .step_cont_box:first-child {
  width: 40%;
  margin: 0 10% 0 15%;
}
.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;
  color: #a52d2d;
  text-align: center;
}
.step_cont_box dl dt small {
  font-size: min(1.6rem, 4vw);
}
.step_cont_box dl ul li {
  font-size: min(1.8rem, 3.5vw);
  font-weight: 500;
  line-height: 1.9;
}
.step_cont_box dl ul li::before {
  display: inline-block;
  content: "";
  border-radius: 50%;
  width: .5em;
  height: .5em;
  background-color: #893700;
  margin-right: .4em;
}
.step_cont_box .line_link {
  color: #a52d2d;
  text-decoration: underline;
}
.step_cont_p {
  font-size: min(2rem, 3.8vw);
  margin-bottom: 1em;
  line-height: 1.5;
}
.step_cont_p .line_link {
  font-size: .9em;
}
#process_modal .entry_sim .entryBtn {
  position: relative;
  height: 8rem;
  margin: 1.5rem 4rem;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  #process_modal::before {
    top: -9.5vw;
  }
  #process_modal .entry_sim .entryBtn {
    margin: 1.5rem auto;
  }
  .step_cont_p .line_link {
    font-size: min(1.8rem, 3.5vw);
  }
  #process_modal::after {
    height: 4.5em;
  }
  .tx_step3,#process_modal .method_cp_content .l_tx {
    font-size: 5vw;
  }
}
@media screen and (max-width: 500px) {
  #process_modal{
    padding: 2em 1.5rem 4em;
  }
  #process_modal::after {
    height: 3em;
    bottom: -3%;
  }
  #process_modal h2{
    font-size: 7vw;
  }
  #process_modal .process_modal_ttl span:first-of-type{
    border-radius: 5px;
    padding: .7%;
    line-height: 1.1;
    margin-right: 1%;
  }
  #process_modal .process_modal_ttl span{
    font-size: 5vw;
  }
  .step_cont .step_cont_box:first-child {
    margin: 0 10%;
  }
  .left_right_bottom_round{
    border-radius: 0 0 8px 8px;
  }
  #process_modal .entry_sim .entryBtn{
    height: 5rem;
    margin: 1rem 0;
  }
  .tx_step3,#process_modal .method_cp_content .l_tx {
    font-size: 5.3vw;
  }
}
/* --------------------
sim_esim_SIMとeSIM両方選べる
----------------------- */
#sim_esim {
  background: url("/special/amagif_202604sim/assets/images/sim_esim_bg.webp") no-repeat top center / cover #ffe1f0;
}
#sim_esim::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 80px;
  margin: auto;
  bottom: -2px;
  left: 0;
  background: url("/special/amagif_202604sim/assets/images/wave_green_bottom.svg") no-repeat bottom center / 100.2%;
  transform: scale(-1,1)
}
.indMark_num>li {
  color: #e20000;
  font-size: 2.4rem;
  font-feature-settings: "palt";
  padding-left: 2.8em;
  margin-top: 3%;
  text-indent: -2.8em;
}
.indMark_num>li+li {
  margin-top: 1rem;
}
@media all and (max-width: 750px) {
  .indMark_num>li {
    font-size: 3vw;
    margin-top: 2%;
  }
  .indMark_num>li+li {
    margin-top: 1vw;
  }
}
  @media all and (max-width: 500px) {
  #sim_esim {
    padding: 18% 1.5rem;
  }
  #sim_esim::after {
    height: 12vw;
  }
}
#sim_esim .method_cp_content {
  margin: 3% 0;
  border-color: #4eae66;
}
#sim_esim .method_cp_content > div {
  margin: 3% 5% 3% 1%;
}
#sim_esim h2 img {
  width: 100%;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.recomend_diff {
  width: 100%;
  margin-bottom: 30px;
  border-collapse:collapse;
}
.left_top_round {
  border-radius: 16px 0 0 0;
}
.left_center_round {
  color: var(--font_color)!important;
}
.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:first-child img {
  width: 4em;
}
.recomend_diff tr td:first-of-type {
  background-color: #D7F5FF;
}
.recomend_diff tr td:last-child {
  background-color: #ffeef9;
}
.recomend_diff tr:first-child * {
  background-color: inherit;
}
.recomend_diff th,
.recomend_diff td {
  padding: 2%;
}
.recomend_diff th {
  width: 30%;
  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: 500; 
  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);
}
.recomend_diff tr td:first-of-type strong {
  color: #0093d7;
}
.recomend_diff tr td:last-child strong {
  color: #e51a1a;
}
.recomend_diff .line_link {
  color: #0093d7;
  font-weight: 700;
  letter-spacing: 0;
  font-size: min(2.4rem, 3.3vw);
  text-decoration: underline;
}
.recomend_desc_icon {
  width: 1.5em;
  display: inline-block;
}
.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: #fffca1;
    z-index: -1;
}
@media all and (min-width: 750px) {
  .recomend_diff th,
  .recomend_diff td {
    padding: 15px 5px;
  }
}
.recomend_diff_wrap .recomend_diff_border {
  display: block;
  position: absolute;
  width: 85%;
  height: 2px;
  left: 50%;
  margin: auto;
  background-image: radial-gradient(circle,#313131 1px , transparent 1px);
  background-size: 12px 2px;
}
.recomend_diff_wrap .recomend_diff_border:first-of-type {
  top: 43%;
  transform: translate(-50%, 0);
}
.recomend_diff_wrap .recomend_diff_border:nth-of-type(2) {
  top: 68%;
  transform: translate(-50%, 0);
}
@media all and (max-width: 750px) {
  .recomend_diff_wrap .recomend_diff_border:first-of-type {
    top: 40%;
  }
  .recomend_diff_wrap .recomend_diff_border:nth-of-type(2) {
    top: 66%;
  }
  .right_top_round {
    border-radius: 0 1rem 0 0;
  }
  .left_top_round {
    border-radius: 1rem 0 0 0;
  }
  .right_bottom_round {
    border-radius: 0 0 1rem 0;
  }
  .left_bottom_round {
    border-radius: 0 0 0 1rem;
  }
}
@media all and (max-width: 500px) {
  .recomend_diff_wrap .recomend_diff_border:first-of-type {
    top: 38%;
  }
  .recomend_diff_wrap .recomend_diff_border:nth-of-type(2) {
    top: 64%;
  }
}

/* --------------------
  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);
}
.information{
  position: relative;
  z-index: 2;
  border: solid .2rem #8abc00;
  border-radius: 3rem;
  background-color: #fff;
  padding: 2rem 3.5%;
  margin: 0 2.2rem;
}
.information p {
  font-size: 2.4rem;
  text-align: justify;
}
.information .Btx {
  font-size: 3rem;
  font-weight: bold;
  color: #3a7236;
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1;
}
.date_wrap .dd_tx a,.information a {
  text-decoration: underline;
  transition: .3s;
}
@media screen and (max-width: 750px) {
  .information {
    margin: 0 3vw;
  }
  .information p {
    font-size: 2.1rem;
  }
  .information .Btx {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 500px) {
  .information {
    margin: 0 1rem;
    padding: 0 3.5% 1.5rem;
    border-radius: 1.8rem;
  }
  .information p {
    font-size: 1.3rem;
  }
  .information .Btx {
    margin: 1rem;
    font-size: 1.8rem;
  }
}

/* terms
------------------------------------------------*/
#terms {
  padding: 6rem 0;
  background: #f5ffe6;
  scroll-margin-top: 7rem;
}
#terms a {
  transition: .3s;
}
#terms h2 {
  position: relative;
  width: fit-content;
  margin: auto;
  color: var(--main_color02);
  font-size: 4.8rem;
  line-height: 1;
  text-align: center;
}
#terms h2::before {
  position: absolute;
  left: -3.2rem;
  top: -2.3rem;
  width: .8em;
  height: 1.2em;
  background: url(/special/amagif_202604sim/assets/images/ic_terms_l.svg) no-repeat center / contain;
  content: "";
}
#terms h2::after {
  position: absolute;
  right: -3rem;
  bottom: -2.5rem;
  width: .65em;
  height: .8em;
  background: url(/special/amagif_202604sim/assets/images/ic_terms_r.svg) no-repeat center / contain;
  content: "";
}
@media screen and (max-width: 750px) {
  #terms {
    scroll-margin-top: 6vw;
  }
  #terms h2::before {
    left: -5.5vw;
    top: -3.5vw;
  }
  #terms h2::after {
    right: -5vw;
    bottom: -4vw;
  }
}
#terms #termsContent {
  width: 86%;
  height: 42rem;
  border: .3rem solid var(--main_color02);
  border-radius: 1.2rem;
  overflow: hidden;
  background: #fff;
  margin: 4.5rem auto;
  text-align: justify;
  word-break: break-all;
}
#terms #termsContent * {
  font-weight: normal;
  background: #fff;
}
#terms #termsContent a::after {
  display: inline-block;
  vertical-align: baseline;
  content: "";
  background: url(/special/amagif_202604sim/assets/images/ic_link.svg) no-repeat center / contain;
  margin: 0 .5rem;
  width: 1.4rem;
  height: 1.4rem;
}
#terms #termsContent .wrap {
  width: calc(100% - 3.4rem);
  height: calc(100% - 6.5rem);
  margin: 3rem 1.4rem 3rem 2.5rem;
  padding-right: 2rem;
  border-radius: 0;
  overflow-y: scroll;
  scrollbar-color: var(--main_color02) #fff;
  scrollbar-width: thin;
}
.span_indent {
  display: block;
  text-indent: -1em;
  padding-left: 1em;
}
.indMark > li {
  text-indent: -1em;
  padding-left: 1em;
}
.indMark > li {
  font-size: 2.4rem;
}
.indMark.size-m > li {
  font-size: 1.6rem;
  position: relative;
  margin-left: 1rem;
  padding-left: 2.1rem;
}
.indMark.size-m > li > .num {
  color: #fff;
  background-color: var(--main_color02)!important;
  border-radius: 50%;
  width: 2.2rem;
  height: 2.2rem;
  text-align: center;
  position: absolute;
  top: .5rem;
  left: -1rem;
  align-items: center;
  display: flex;
  justify-content: space-around;
  font-size: 1.4rem;
}
.cp_prize .size-s {
  margin-top: 1.2rem;
}
.campaignCode {
  font-size: 2.3rem;
  text-align: center;
}
.campaignCode span {
  font-size: 3.2rem;
}
.website-link {
  font-size: 1.8rem;
  text-align: center;
  margin-top: 2rem;
}
.website-link a {
  transition: .3s;
}
#terms #termsContent .wrap .indMark {
  padding: 1rem 0 0;
}
#termsContent .wrap > section.line {
  border-bottom: .2rem solid var(--main_color02);
  padding: 0 .5rem 2.2rem;
  width: 100%;
}
#termsContent .wrap > section + section {
  margin-top: 2.2rem;
}
#terms #termsContent h3 {
  margin-bottom: .6rem;
  font-weight: bold;
  font-size: 2.6rem;
}
#terms #termsContent p {
  font-size: 2.2rem;
  margin-top: .8rem;
  margin-bottom: .8rem;
  padding-left: 0;
}
#terms #termsContent ul li {
  font-size: 2.2rem;
}
#terms #termsContent .cp_prize .size-s {
  margin-top: 6px;
}
#terms #termsContent p + * {
  margin-top: 6px;
}
#terms #termsContent .indMark > li {
  font-weight: normal;
  text-indent: -.5em;
  padding-left: .5em;
}
#terms #termsContent .size-s li,
#terms #termsContent p.size-s {
  font-size: 1.8rem;
}
#terms #termsContent .size-s.indMark li {
  text-indent: -1em;
  padding-left: .9em;
}
#terms #termsContent .indMark.size-m > li {
  text-indent: 0;
  padding-left: 2.6rem;
  font-size: 2rem;
}
#terms #termsContent .indMark > li + li {
  margin-top: .4rem;
}
#terms #termsContent .weightNormal {
  font-weight: normal;
}
#terms #termsContent .text_red.size-m {
  margin-top: 3rem;
}
@media screen and (max-width: 500px) {
  .indMark > li {
    font-size: 3.5vw;
  }
  .indMark.size-m > li > .num {
    top: 0;
    height: auto;
  }
  #terms {
    padding: 3.5rem 1.5rem 3rem;
  }
  #terms #termsContent {
    height: 30rem;
    margin: 1.5rem auto 2rem;
    border-width: .2rem;
    width: 100%;
  }
  #terms #termsContent .wrap {
    width: calc(100% - 2rem);
    height: calc(100% - 3.5rem);
    margin: 1.5rem 1.4rem 1.5rem 1rem;
    padding-right: 1.5rem;
  }
  #terms h2 {
    font-size: 3.5rem;
    margin: 0 auto 2.5rem;
  }
  #terms #termsContent h3 {
    font-size: 4.8vw;
  }
  #terms #termsContent p,#terms #termsContent ul li {
    font-size: 4.2vw;
  }
  #terms #termsContent .indMark.size-m > li {
    font-size: 4.2vw;
    padding-left: 2rem;
  }
  #terms #termsContent .size-s li {
    font-size: 3.7vw;
  }
  #terms #termsContent p.size-s,#terms #termsContent .size-s2 li {
    font-size: 4vw;
  }
  #terms #termsContent a::after {
    width: 3.2vw;
    height: 3.2vw;
  }
  #termsContent .wrap > section.line {
    padding-bottom: 1.5rem;
  }
  #termsContent .wrap > section + section {
    margin-top: 1.5rem;
  }
  #terms #termsContent .text_red.size-m {
    margin-top: 5vw;
  }
}
@media screen and (max-width: 400px) {
  #terms h2 {
    font-size: 7.5vw;
  }
}
/* footer
------------------------------------------------*/
footer .copy {
  position: relative;
  padding: 4rem 0;
  background-color: var(--main_color02);
  color: #fff;
  z-index: 1;
}
footer .cp {
  font-size: 2.2rem;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .campaignCode {
    font-size: 2rem;
  }
  .campaignCode span {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .campaignCode {
    font-size: 3.4vw;
  }
  .campaignCode span {
    font-size: 4.5vw;
  }
  .website-link {
    font-size: 3.2vw;
    margin-top: 1rem;
  }
  footer .copy {
    padding: 7vw 0;
  }
  footer .cp {
    font-size: 3.5vw;
  }
}