#str-contents {
  padding: 0;
}

ul {
  margin-bottom: 10px;
}

#contents-area {
  width: auto;
}

#contents-body {
  float: none;
}

.lyt-col-1 #contents-body {
  width: 100%;
}

#nav-top-area {
  bottom: 190px;
}
@media (max-width: 766px) {
  #nav-top-area {
    bottom: 110px;
  }
}

main {
  background: #FAFFFF;
}

a {
  color: #2A5DC5;
  transition: 0.3s;
}
a:hover {
  opacity: 0.8;
}

p {
  margin-bottom: 0;
}
p .red {
  color: #FF1912;
}

sup {
  vertical-align: super;
}

img {
  max-width: 100%;
}

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

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

.accordion {
  border-radius: 8px;
  border: 3px solid #4579E8;
  overflow: hidden;
  background: #FFF;
  margin-bottom: 20px;
}
.accordion-title {
  background: #ECF2FD;
  position: relative;
  box-sizing: border-box;
  cursor: pointer;
}
.accordion-title::before, .accordion-title::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 3px;
  background: #4579E8;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 766px) {
  .accordion-title::before, .accordion-title::after {
    width: 14px;
    height: 2px;
    right: 15px;
  }
}
.accordion-title::after {
  transform: translateY(-50%) rotate(90deg);
  transition: 0.4s;
}
.accordion-content {
  display: none;
}
.accordion.is-open .accordion-title::after {
  transform: translateY(-50%) rotate(0deg);
}

section {
  padding-bottom: 100px;
  padding-top: 80px;
}
@media (max-width: 766px) {
  section {
    padding-top: 30px;
    padding-bottom: 40px;
  }
}
section:has(.sec-title) {
  padding-top: 0;
}
section > .inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 960px;
  padding: 0 15px;
  margin: 0 auto;
}

.tab-wrapper {
  border-radius: 999px;
  background: #DDDDDD;
  padding: 5px;
}
@media (max-width: 766px) {
  .tab-wrapper {
    padding: 4px;
  }
}
.tab-wrapper .tab-list {
  display: flex;
  height: 80px;
  box-sizing: border-box;
  margin: 0;
}
@media (max-width: 766px) {
  .tab-wrapper .tab-list {
    height: 50px;
  }
}
.tab-wrapper .tab-list .tab-item {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  border-radius: 999px;
  font-size: 26px;
  z-index: 4;
  position: relative;
  transition: 0.3s ease;
  cursor: pointer;
}
@media (max-width: 766px) {
  .tab-wrapper .tab-list .tab-item {
    font-size: 18px;
  }
}
.tab-wrapper .tab-list .tab-item::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: #4579E8;
  z-index: -1;
  opacity: 0;
  transition: left 0.3s ease;
}
.tab-wrapper .tab-list .tab-item:nth-child(1)::before {
  left: 100%;
}
.tab-wrapper .tab-list .tab-item:nth-child(2)::before {
  left: -100%;
}
.tab-wrapper .tab-list .tab-item.is-active {
  color: #fff;
}
.tab-wrapper .tab-list .tab-item.is-active::before {
  left: 0;
  opacity: 1;
}

.tab-content {
  display: none;
}
.tab-content.is-active {
  display: block;
}

.sec-title {
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(0deg, #399DB5, #2A5DC5);
  border-radius: 8px 8px 0 0;
  color: #fff;
  font-weight: 600;
  font-size: 42px;
  margin-bottom: 80px;
}
@media (max-width: 766px) {
  .sec-title {
    height: 80px;
    font-size: 26px;
    margin-bottom: 30px;
  }
}

.btn-detail a {
  font-size: 24px;
  font-weight: 400;
  color: #2A5DC5;
  padding-left: 34px;
  position: relative;
}
@media (max-width: 766px) {
  .btn-detail a {
    font-size: 16px;
    padding-left: 21px;
  }
}
.btn-detail a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url(/mobile/set/data/special/sim-202309a/img/shared/icon_arrow_blue.svg?2023-09-04) no-repeat center center/contain;
}
@media (max-width: 766px) {
  .btn-detail a::before {
    width: 16px;
    height: 16px;
  }
}

.way .btn-detail a,
.plan .btn-detail a {
  font-size: 16px;
  padding-left: 21px;
}
.way .btn-detail a::before,
.plan .btn-detail a::before {
  width: 16px;
  height: 16px;
}

.btn-green a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  background: #3BCE9A;
  border-radius: 8px;
  height: 80px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  background: #3BCE9A url(/mobile/set/data/special/sim-202309a/img/shared/icon_arrow_white_right.svg?2023-09-04) no-repeat right 60px center/10px 16px;
}
@media (max-width: 766px) {
  .btn-green a {
    font-size: 16px;
    height: 50px;
    width: 81.3333333333%;
    max-width: 305px;
    background: #3BCE9A url(/mobile/set/data/special/sim-202309a/img/shared/icon_arrow_white_right.svg?2023-09-04) no-repeat right 35px center/6px 10px;
  }
}

.swiper-container {
  display: inline-block;
  padding: 15px 15px 32px;
  overflow: hidden;
  max-width: 100vw;
  box-sizing: border-box;
}
.swiper-container .swiper {
  overflow: visible;
}
.swiper-container .swiper .swiper-wrapper {
  width: auto;
}
.swiper-container .swiper .swiper-slide {
  height: auto;
  width: 300px;
}
.swiper-container .swiper .swiper-slide > div {
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
}

.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin-right: 5px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #CCCCCC;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #4579E8;
}

.notes li {
  font-size: 14px;
}
@media (max-width: 766px) {
  .notes li {
    font-size: 10px;
  }
}
.notes li.num {
  display: flex;
  width: 100%;
}
.notes li.num span:nth-child(1) {
  display: inline-block;
  flex: 2em 0 0;
}
.notes li.nakaguro {
  display: flex;
}
.notes li.nakaguro span:nth-child(1) {
  display: inline-block;
  flex: 1em 0 0;
}

.icon-window {
  position: relative;
  padding-right: 1.2em;
}
.icon-window::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 1em;
  height: 1em;
  background-color: currentColor;
  mask-image: url(/mobile/set/data/special/sim-202309a/img/shared/icon_window.svg);
  -webkit-mask-image: url(/mobile/set/data/special/sim-202309a/img/shared/icon_window.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.tax p {
  margin-bottom: 0;
  font-size: 12px;
  text-align: right;
  color: #828282;
  line-height: 1.4;
}
@media (max-width: 766px) {
  .tax p {
    font-size: 10px;
  }
}

.kv {
  width: 100%;
  aspect-ratio: 1920/960;
  text-align: center;
}
@media (max-width: 766px) {
  .kv {
    height: auto;
    width: 100%;
  }
}

.kv-bnr {
  max-width: 980px;
  padding: 0 15px;
  margin: 40px auto 200px;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .kv-bnr {
    max-width: 500px;
  }
}
@media (max-width: 766px) {
  .kv-bnr {
    margin-top: 0;
    margin-bottom: 60px;
  }
}

@keyframes img-wrap {
  100% {
    clip-path: inset(0);
  }
}
.sv-img {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: min(38.3333333333vw, 460px);
  position: relative;
}
@media (max-width: 766px) {
  .sv-img {
    padding-top: 74.6666666667vw;
  }
}
.sv-img .sv-txt {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  max-width: 744px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.sv-img .sv-txt1 {
  height: min(4.9166666667vw, 59px);
  margin-bottom: 15px;
}
.sv-img .sv-txt1 > img {
  height: 100%;
}
@media (max-width: 766px) {
  .sv-img .sv-txt1 {
    height: 7.2vw;
    margin-bottom: 3px;
  }
}
.sv-img .sv-txt2 {
  height: min(11.9166666667vw, 143px);
}
.sv-img .sv-txt2 > img {
  height: 100%;
}
@media (max-width: 766px) {
  .sv-img .sv-txt2 {
    height: 18.4vw;
  }
}
.sv-img .sv-txt1, .sv-img .sv-txt2 {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s;
}
.sv-img .sv-txt2 {
  transition-delay: 0.2s;
}
.sv-img .sv-txt.animation .sv-txt1, .sv-img .sv-txt.animation .sv-txt2 {
  clip-path: inset(0);
}
.sv-img > img {
  position: absolute;
  max-height: 100%;
  right: 0;
  bottom: 1.5em;
  display: inline-block;
  width: 66.6666666667%;
}
@media (max-width: 766px) {
  .sv-img > img {
    width: 96%;
    bottom: 4.5em;
  }
}
@media screen and (max-width: 370px) {
  .sv-img > img {
    bottom: 4.5em;
  }
}
@media screen and (min-width: 767px) and (max-width: 1040px) {
  .sv-img > img {
    bottom: 3em;
  }
}
@media (max-width: 766px) {
  .sv .notes.notes-limit {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.sv .accordion {
  margin-top: 60px;
}
@media (max-width: 766px) {
  .sv .accordion {
    margin-top: 20px;
  }
}
.sv .accordion-title {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 74px;
}
@media (max-width: 766px) {
  .sv .accordion-title {
    min-height: 56px;
  }
}
.sv .accordion-title .sv-icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
@media (max-width: 766px) {
  .sv .accordion-title .sv-icon {
    width: 30px;
    height: 30px;
    margin-right: 5px;
  }
}
.sv .accordion-title .txt {
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 0;
}
@media (max-width: 766px) {
  .sv .accordion-title .txt {
    font-size: 18px;
  }
}
.sv .accordion-content {
  padding: 30px 40px 40px;
}
@media (max-width: 766px) {
  .sv .accordion-content {
    padding: 20px 20px 25px;
  }
}
.sv .accordion-content .heading {
  text-align: center;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 30px;
}
@media (max-width: 766px) {
  .sv .accordion-content .heading {
    font-size: 13px;
    margin-bottom: 15px;
  }
}
.sv .accordion-content .inner {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
}
.sv .accordion-content .inner img {
  margin-bottom: 20px;
}
@media (max-width: 766px) {
  .sv .accordion-content .inner img {
    margin-bottom: 10px;
  }
}
@media (min-width: 767px) {
  .sv .accordion .btn-green {
    margin-top: 40px;
  }
}
@media (max-width: 766px) {
  .sv .accordion .btn-green a {
    width: 100%;
    background: #3BCE9A url(/mobile/set/data/special/sim-202309a/img/shared/icon_arrow_white_right.svg?2023-09-04) no-repeat right 15px center/6px 10px;
  }
}

.way {
  text-align: center;
}
.way .tab-content > .img {
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}
.way .tab-content > .img img {
  height: 100%;
}
@media (max-width: 766px) {
  .way .tab-content > .img {
    height: 36vw;
    margin: 30px 0;
  }
}
.way .tab-content > .txt {
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 10px;
}
@media (max-width: 766px) {
  .way .tab-content > .txt {
    font-size: 16px;
    padding: 0 15px;
  }
}
.way .tab-content > .notes {
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}
@media (max-width: 766px) {
  .way .tab-content > .notes {
    padding: 0 15px;
  }
}
.way .tab-content > .notes li {
  text-align: left;
}
@media (max-width: 766px) {
  .way .tab-content > .notes li {
    justify-content: start;
  }
}
.way .tab-content > .notes li.u-subscript {
  align-items: baseline;
}
.way .tab-content > .notes li.num {
  width: auto;
}
.way .tab-content .btn-green {
  margin-top: 40px;
  margin-bottom: 60px;
}
@media (max-width: 766px) {
  .way .tab-content .btn-green {
    margin-top: 30px;
    margin-bottom: 40px;
  }
}
.way .tab-content > .heading {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 25px;
}
@media (max-width: 766px) {
  .way .tab-content > .heading {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
.way .tab-content .swiper-slide > div {
  padding: 15px 15px 30px;
  text-align: center;
  background: #fff;
}
.way .tab-content .swiper-container .img-num {
  width: 66px;
  height: 66px;
  display: inline-block;
}
.way .tab-content .swiper-container .txt {
  margin-top: 5px;
  font-size: 18px;
  font-weight: 600;
}
.way .tab-content .swiper-container .img {
  margin-top: 15px;
  margin-bottom: 20px;
}
.way .tab-content .swiper-container .txt-red {
  font-size: 16px;
  font-weight: 400;
  color: #FF1912;
}

.question .accordion + .accordion {
  margin-top: 20px;
}
@media (max-width: 766px) {
  .question .accordion + .accordion {
    margin-top: 8px;
  }
}
.question .accordion {
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 766px) {
  .question .accordion {
    font-size: 14px;
  }
}
.question .accordion .accordion-title .txt,
.question .accordion .accordion-content .txt {
  padding: 18px 40px 16px 75px;
  position: relative;
}
@media (max-width: 766px) {
  .question .accordion .accordion-title .txt,
.question .accordion .accordion-content .txt {
    padding: 12px 37px 12px 48px;
  }
}
.question .accordion .accordion-title .txt::before,
.question .accordion .accordion-content .txt::before {
  position: absolute;
  left: 25px;
  top: 17px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: #FFF;
  font-family: "din-2014", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 10px;
}
@media (max-width: 766px) {
  .question .accordion .accordion-title .txt::before,
.question .accordion .accordion-content .txt::before {
    left: 10px;
    top: 9px;
    width: 30px;
    height: 30px;
    margin-right: 8px;
  }
}
.question .accordion .accordion-title .txt .txt-small,
.question .accordion .accordion-content .txt .txt-small {
  font-size: 18px;
}
@media (max-width: 766px) {
  .question .accordion .accordion-title .txt .txt-small,
.question .accordion .accordion-content .txt .txt-small {
    font-size: 10px;
  }
}
.question .accordion .accordion-title .txt::before {
  content: "Q";
  background: #4579E8;
}
.question .accordion .accordion-content .txt::before {
  content: "A";
  background: #EE81A5;
}
.question a svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
  margin-left: 0.2em;
  transform: translateY(0.2em);
}

.paypay {
  background: #ECF2FD;
}
.paypay .title {
  text-align: center;
  font-size: 42px;
  font-weight: 600;
}
@media (max-width: 766px) {
  .paypay .title {
    font-size: 26px;
  }
}
.paypay .title .red {
  color: #FF1912;
}
.paypay .title .dot i {
  position: relative;
  font-style: normal;
  padding-top: 10px;
}
@media (max-width: 766px) {
  .paypay .title .dot i {
    padding-top: 6px;
  }
}
.paypay .title .dot i::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: currentColor;
  border-radius: 999px;
}
@media (max-width: 766px) {
  .paypay .title .dot i::before {
    width: 6px;
    height: 6px;
  }
}
.paypay .img {
  margin-bottom: 30px;
}
@media (max-width: 766px) {
  .paypay .img {
    margin-bottom: 10px;
  }
}
.paypay .paytoku {
  text-align: center;
}
.paypay .notes {
  margin-bottom: 30px;
}
@media (max-width: 766px) {
  .paypay .notes {
    margin-bottom: 20px;
  }
}

.plan {
  text-align: center;
}
.plan .swiper-slide:nth-of-type(1) {
  --plan-color: #4579E8;
}
.plan .swiper-slide:nth-of-type(2) {
  --plan-color: #707070;
}
.plan .swiper-slide:nth-of-type(3) {
  --plan-color: #4ABB00;
}
.plan .swiper-slide .content {
  margin: 10px 10px 15px;
}
.plan .swiper-slide .content .info-list {
  display: flex;
  justify-content: space-between;
}
.plan .swiper-slide .content .info-list li {
  width: 135px;
  background: #ECF2FD;
  border-radius: 4px;
  color: var(--plan-color);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 25px;
}
.plan .swiper-slide .content .info-list li svg {
  width: 13px;
  height: 13px;
  margin-right: 5px;
  fill: var(--plan-color);
}
.plan .swiper-slide .content .info-list li span {
  font-size: 11px;
  font-weight: 500;
}
.plan .swiper-slide .content .info-box {
  border: var(--plan-color) 2px solid;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 15px;
}
.plan .swiper-slide .content .info-box-title {
  background: var(--plan-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  height: 39px;
}
.plan .swiper-slide .content .info-box-list {
  padding: 15px 10px 15px 20px;
  margin-bottom: 0;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
}
.plan .swiper-slide .content .info-box-list li {
  position: relative;
  padding-left: 21px;
}
.plan .swiper-slide .content .info-box-list li::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: 1px;
  left: 0;
  background-color: var(--plan-color);
  mask-image: url(/mobile/set/data/special/sim-202309a/img/shared/icon_check.svg);
  -webkit-mask-image: url(/mobile/set/data/special/sim-202309a/img/shared/icon_check.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.plan .swiper-slide .content .info-box-list li + li {
  margin-top: 4px;
}

.fixed-btn-area {
  position: fixed;
  z-index: 10000;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(51, 51, 51, 0.8);
  color: #FFF;
  text-align: center;
  padding-top: 14px;
  padding-bottom: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
@media (max-width: 766px) {
  .fixed-btn-area {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.fixed-btn-area.is-active {
  opacity: 1;
  pointer-events: all;
}
.fixed-btn-area .txt {
  font-size: 22px;
  font-weight: 500;
}
@media (max-width: 766px) {
  .fixed-btn-area .txt {
    font-size: 12px;
  }
}
.fixed-btn-area .txt span {
  position: relative;
}
.fixed-btn-area .txt span::before, .fixed-btn-area .txt span::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 20px;
  background: #FFF;
  border-radius: 1px;
  top: 2px;
  transform-origin: center bottom;
}
@media (max-width: 766px) {
  .fixed-btn-area .txt span::before, .fixed-btn-area .txt span::after {
    width: 1px;
    height: 12px;
    top: 0px;
  }
}
.fixed-btn-area .txt span::before {
  transform: rotate(-20deg);
  left: -10px;
}
.fixed-btn-area .txt span::after {
  transform: rotate(20deg);
  right: -10px;
}
.fixed-btn-area .fixed-btn-list {
  display: flex;
  justify-content: center;
  width: calc(100% - 30px);
  max-width: 900px;
  margin: 0 auto;
}
.fixed-btn-area .fixed-btn-list .fixed-btn + .fixed-btn {
  margin-left: 20px;
}
@media (max-width: 766px) {
  .fixed-btn-area .fixed-btn-list .fixed-btn + .fixed-btn {
    margin-left: 5px;
  }
}
.fixed-btn-area .fixed-btn-list .fixed-btn {
  width: calc(50% - 10px);
  height: 100px;
}
@media (max-width: 766px) {
  .fixed-btn-area .fixed-btn-list .fixed-btn {
    width: calc((100% - 5px) / 2);
    height: 60px;
  }
}
.fixed-btn-area .fixed-btn-list .fixed-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #3BCE9A;
  border: 3px solid #FFF;
  border-radius: 6px;
  color: #FFF;
  height: 100%;
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 766px) {
  .fixed-btn-area .fixed-btn-list .fixed-btn a {
    border-width: 2px;
    font-size: 14px;
  }
}
.fixed-btn-area .fixed-btn-list .fixed-btn a img {
  display: inline-block;
  margin-right: 15px;
  height: 37px;
}
@media (max-width: 766px) {
  .fixed-btn-area .fixed-btn-list .fixed-btn a img {
    height: 27px;
    margin-right: 8px;
  }
}

#obtain-lp .txt-type {
  font-size: 24px;
  font-weight: 700;
  margin-top: 40px;
}
@media (max-width: 766px) {
  #obtain-lp .txt-type {
    margin-top: 20px;
    font-size: 20px;
  }
}
#obtain-lp .btn-plan-detail .btn-appeal {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1em;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
@media (max-width: 766px) {
  #obtain-lp .btn-plan-detail .btn-appeal {
    font-size: 18px;
  }
}
#obtain-lp .btn-plan-detail .btn-appeal::before, #obtain-lp .btn-plan-detail .btn-appeal::after {
  content: "";
  display: block;
  height: 0.75lh;
  width: 2px;
  background-color: currentColor;
}
#obtain-lp .btn-plan-detail .btn-appeal::before {
  rotate: -15deg;
}
#obtain-lp .btn-plan-detail .btn-appeal::after {
  rotate: 15deg;
}

.kv {
  position: relative;
}
