html {
  scroll-behavior: smooth;
  font-size: 2.5641025641vw;
}
@media only screen and (min-width: 769px) {
  html {
    font-size: 0.694444vw;
  }
}
@media only screen and (min-width: 1440px) {
  html {
    font-size: 10px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
  color: #333;
}

img, source {
  width: 100%;
  height: auto;
}

.wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
  max-width: 1280px;
}

main {
  flex: 1;
  width: 100vw;
}

.pc-only {
  display: none;
}
@media only screen and (min-width: 769px) {
  .pc-only {
    display: block;
  }
}

.sp-only {
  display: block;
}
@media only screen and (min-width: 769px) {
  .sp-only {
    display: none;
  }
}

section {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 3rem;
}
@media only screen and (min-width: 769px) {
  section {
    padding: 8rem 22rem;
  }
}

@media only screen and (min-width: 1440px) {
  .inner {
    max-width: 1000px;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 1440px) {
  .inner_800 {
    max-width: 800px;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 1440px) {
  .inner_1200 {
    max-width: 1200px;
    margin: 0 auto;
  }
}

picture {
  display: block;
}

.font-en {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.font-barlow {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.bold {
  font-weight: 700;
}

.red {
  color: #E42019;
}

.blue {
  color: #004099;
}

.yellow {
  color: #FEF400;
}

.flex {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.flex-start {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.flex-end {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

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

.flex-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media only screen and (min-width: 769px) {
  .pc_flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}

.visually-hidden {
  display: none;
}

small {
  font-size: 100%;
}

.cta_btn a {
  background: #FEF400;
  width: 100%;
  height: 6rem;
  border-radius: 999px;
  box-shadow: 0 0.5rem 0 #dcc200;
  position: relative;
  animation: yureru-s 2s infinite;
}
@media only screen and (min-width: 769px) {
  .cta_btn a {
    max-width: 50rem;
    margin: 0 auto;
  }
}
.cta_btn a p {
  font-weight: bold;
  font-size: 1.8rem;
}
.cta_btn a::before {
  content: "";
  background: url(../img/top/icon_arrow_1.svg) no-repeat center/contain;
  width: 2rem;
  height: 2rem;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}
@keyframes yureru-s {
  0% {
    transform: translate(2px, 0);
  }
  5% {
    transform: translate(-2px, 0);
  }
  10% {
    transform: translate(2px, 0);
  }
  15% {
    transform: translate(-2px, 0);
  }
  20% {
    transform: translate(2px, 0);
  }
  25% {
    transform: translate(-2px, 0);
  }
  30% {
    transform: translate(0, 0);
  }
}

.sim_btn {
  display: block;
  background: #333;
  color: #fff;
  width: 100%;
  height: 6rem;
  font-size: 1.5rem;
  border-radius: 999px;
  position: relative;
  font-weight: bold;
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .sim_btn {
    margin: 0 auto;
    width: 50rem;
  }
}
.sim_btn::before {
  content: "";
  background: url(../img/top/icon_arrow_2.svg) no-repeat center/contain;
  width: 2rem;
  height: 2rem;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.body_text {
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: justify;
}

.note {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  text-align: left;
}
@media only screen and (min-width: 769px) {
  .note {
    font-size: 1.2rem;
  }
}

.note-mark {
  font-weight: normal;
  font-size: 1rem;
}

.accordion_wrap {
  overflow: hidden;
}
.accordion_wrap .accordion_title {
  text-align: center;
  height: 5rem;
  width: 100%;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  background: #333;
  color: #fff;
  border-radius: 0.5rem;
  position: relative;
}
.accordion_wrap .accordion_title::after {
  content: "";
  background: url(../img/top/icon_plus.svg) no-repeat center/contain;
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  transition: all 0.2s ease-in-out;
}
.accordion_wrap .accordion_box {
  padding: 2rem;
  background: #fff;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 769px) {
  .accordion_wrap .accordion_box {
    padding: 2rem 3rem;
  }
}
.accordion_wrap[open] .accordion_title {
  border-radius: 0.5rem 0.5rem 0 0;
}
.accordion_wrap[open] .accordion_title::after {
  background: url(../img/top/icon_minus.svg) no-repeat center/contain;
}

.trial-monitor {
  padding-top: 15rem;
}
.trial-monitor.pt-0 {
  padding-top: 0;
}
@media only screen and (min-width: 769px) {
  .trial-monitor .pc_flex {
    gap: 5rem;
  }
}
.trial-monitor .trial-header {
  color: #fff;
  text-align: center;
}
.trial-monitor .trial-header .trial-label {
  font-size: 1.6rem;
  font-weight: bold;
  border: solid 0.2rem #fff;
  padding: 1rem 1.5rem;
  position: relative;
  display: inline-block;
}
@media only screen and (min-width: 769px) {
  .trial-monitor .trial-header .trial-label {
    font-size: 2.4rem;
    padding: 1rem 2.5rem;
  }
}
.trial-monitor .trial-header .trial-label::before, .trial-monitor .trial-header .trial-label::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
}
.trial-monitor .trial-header .trial-label::before {
  bottom: -1.1rem;
  border-width: 1rem 1rem 0 1rem;
  border-color: #fff transparent transparent transparent;
}
.trial-monitor .trial-header .trial-label::after {
  bottom: -0.85rem;
  border-width: 0.9rem 0.9rem 0 0.9rem;
  border-color: #E42019 transparent transparent transparent;
}
.trial-monitor .trial-header .trial-title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.3;
  margin-top: 1rem;
}
@media only screen and (min-width: 769px) {
  .trial-monitor .trial-header .trial-title {
    font-size: 5rem;
  }
}
.trial-monitor .trial-header .trial-title .font-en {
  font-size: 1.5em;
  line-height: 1;
}
.trial-monitor .trial-benefits {
  gap: 1.5rem;
  margin-top: 1.5rem;
}
@media only screen and (min-width: 769px) {
  .trial-monitor .trial-benefits {
    gap: 2rem;
  }
}
.trial-monitor .trial-benefits .benefit-item {
  text-align: center;
  background: #fff;
  border-radius: 1rem;
  padding: 2rem 3rem;
}
@media only screen and (min-width: 769px) {
  .trial-monitor .trial-benefits .benefit-item {
    width: 18rem;
    padding: 3rem;
  }
}
.trial-monitor .trial-benefits .benefit-item dt {
  font-size: 1.6rem;
  font-weight: bold;
}
@media only screen and (min-width: 769px) {
  .trial-monitor .trial-benefits .benefit-item dt {
    font-size: 2rem;
  }
}
.trial-monitor .trial-benefits .benefit-item dd .value {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 6rem;
  font-weight: bold;
  line-height: 1;
}
@media only screen and (min-width: 769px) {
  .trial-monitor .trial-benefits .benefit-item dd .value {
    font-size: 8rem;
  }
}
.trial-monitor .trial-benefits .benefit-item dd .unit {
  font-size: 2.4rem;
  font-weight: bold;
  margin-left: 0.5rem;
}
@media only screen and (min-width: 769px) {
  .trial-monitor .trial-benefits .benefit-item dd .unit {
    font-size: 3rem;
  }
}
.trial-monitor .cta_btn {
  margin-top: 2rem;
}
.trial-monitor .accordion_wrap {
  margin: 3rem 0 0;
}
@media only screen and (min-width: 769px) {
  .trial-monitor .accordion_wrap {
    width: 70rem;
    margin: 3rem auto 0;
  }
}
.trial-monitor .accordion_wrap .accordion_box {
  text-align: left;
}
.trial-monitor .accordion_wrap .details-list {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
}
.trial-monitor .accordion_wrap .details-list li {
  text-indent: -1em;
  padding-left: 1em;
}
.trial-monitor .note {
  margin-top: 2rem;
  color: #fff;
}
@media only screen and (min-width: 769px) {
  .trial-monitor .note {
    width: 70rem;
    margin: 3rem auto 0;
  }
}

#fv {
  margin-top: 10.5rem;
  position: relative;
  text-align: center;
  padding: 3rem 0;
}
@media only screen and (min-width: 769px) {
  #fv {
    padding: 5rem 0;
  }
}
#fv::before, #fv::after {
  content: "";
  display: block;
  background: #dad9d9;
  width: 100%;
  height: 50%;
  position: absolute;
  top: 8%;
  left: 0;
  transform: skewY(8deg);
  z-index: -1;
}
@media only screen and (min-width: 769px) {
  #fv::before, #fv::after {
    height: 90%;
    transform: skewY(5.5deg);
  }
}
#fv::after {
  background: #E42019;
  transform: skewY(-8deg);
}
@media only screen and (min-width: 769px) {
  #fv::after {
    transform: skewY(-5.5deg);
  }
}
@media only screen and (min-width: 769px) {
  #fv .pc_flex {
    gap: 4rem;
  }
}
#fv .pc_left h1 .sub {
  display: inline-block;
  background: #fff;
  color: #E42019;
  font-weight: bold;
  font-size: 1.6rem;
  padding: 0.5rem 1.5rem;
  box-shadow: 0.3rem 0.4rem 0 rgba(0, 0, 0, 0.08);
}
@media only screen and (min-width: 769px) {
  #fv .pc_left h1 .sub {
    font-size: 2.5rem;
    padding: 1rem 2rem;
    box-shadow: 0.4rem 0.6rem 0 rgba(0, 0, 0, 0.08);
  }
}
#fv .pc_left h1 .main {
  display: block;
  font-size: 4.2rem;
  font-weight: bold;
  color: #fff;
  font-style: italic;
  line-height: 1.1;
}
@media only screen and (min-width: 769px) {
  #fv .pc_left h1 .main {
    font-size: 7rem;
    margin-top: -1rem;
  }
}
#fv .pc_left h1 .main .middle {
  font-size: 2.4rem;
}
@media only screen and (min-width: 769px) {
  #fv .pc_left h1 .main .middle {
    font-size: 3.8rem;
  }
}
#fv .pc_left h1 .main .middle .small {
  font-size: 2rem;
}
@media only screen and (min-width: 769px) {
  #fv .pc_left h1 .main .middle .small {
    font-size: 3.2rem;
  }
}
#fv .pc_left picture {
  margin-left: 3rem;
}
#fv .pc_right picture {
  width: 52.8rem;
}
#fv .price_wrap {
  gap: 1rem;
}
@media only screen and (min-width: 769px) {
  #fv .price_wrap {
    margin-top: 1rem;
  }
}
#fv .price_wrap .badge {
  width: 7.5rem;
  height: 7.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.3;
  background: url(../img/top/icon_circle.svg) no-repeat center/contain;
}
@media only screen and (min-width: 769px) {
  #fv .price_wrap .badge {
    width: 12rem;
    height: 12rem;
    font-size: 2.4rem;
  }
}
#fv .price_wrap dl {
  gap: 1rem;
}
@media only screen and (min-width: 769px) {
  #fv .price_wrap dl {
    gap: 0;
    color: #fff;
    align-items: flex-end;
  }
}
#fv .price_wrap dl dt {
  font-size: 1.8rem;
  line-height: 1.1;
}
@media only screen and (min-width: 769px) {
  #fv .price_wrap dl dt {
    font-size: 5rem;
    flex-direction: row;
    transform: translateY(-18%);
  }
}
#fv .price_wrap dl dd {
  position: relative;
}
#fv .price_wrap dl dd .span1 {
  font-size: 8.4rem;
  line-height: 1;
  font-style: italic;
}
@media only screen and (min-width: 769px) {
  #fv .price_wrap dl dd .span1 {
    font-size: 12.5rem;
    color: #FEF400;
  }
}
#fv .price_wrap dl dd .yen {
  font-size: 3.8rem;
  font-weight: bold;
}
@media only screen and (min-width: 769px) {
  #fv .price_wrap dl dd .yen {
    font-size: 5rem;
  }
}
#fv .price_wrap dl dd .tax {
  font-size: 1rem;
  position: absolute;
  right: 0;
  bottom: -1rem;
}
@media only screen and (min-width: 769px) {
  #fv .price_wrap dl dd .tax {
    font-size: 1.2rem;
  }
}
#fv .price_wrap dl dd .non-tax {
  font-size: 1rem;
  position: absolute;
  right: 2.2rem;
  top: 2.7rem;
}
@media only screen and (min-width: 769px) {
  #fv .price_wrap dl dd .non-tax {
    font-size: 1.2rem;
    right: 3.2rem;
    top: 5rem;
  }
}
#fv .cta_btn {
  margin: 3rem 3rem 0;
}

#bnr {
  padding: 2rem 3rem;
}
@media only screen and (min-width: 769px) {
  #bnr {
    padding: 4rem 22rem;
  }
}
#bnr .splide {
  visibility: visible;
}
@media only screen and (min-width: 769px) {
  #bnr .splide {
    visibility: visible;
  }
}
@media only screen and (min-width: 769px) {
  #bnr .splide__track {
    overflow: visible;
  }
}
@media only screen and (min-width: 769px) {
  #bnr .splide__list {
    display: flex;
    flex-direction: center;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
}
@media only screen and (min-width: 769px) {
  #bnr .splide__slide {
    flex: 0 0 auto;
    width: 47.7rem;
    max-width: calc(50% - 1rem);
  }
}
#bnr .splide__slide a {
  display: block;
  transition: opacity 0.3s;
}
#bnr .splide__slide a:hover {
  opacity: 0.7;
}
#bnr .splide__slide picture {
  width: 33rem;
}
@media only screen and (min-width: 769px) {
  #bnr .splide__slide picture {
    width: 100%;
  }
}
#bnr .splide__slide img {
  width: 100%;
  height: auto;
  display: block;
}
@media only screen and (min-width: 769px) {
  #bnr .splide__pagination {
    display: none;
  }
}

#plan {
  position: relative;
  padding-top: 2rem;
}
#plan::before, #plan::after {
  content: "";
  display: block;
  background: #dad9d9;
  width: 100%;
  height: 98%;
  position: absolute;
  top: 5rem;
  left: 0;
  transform: skewY(8deg);
  z-index: -1;
}
@media only screen and (min-width: 769px) {
  #plan::before, #plan::after {
    transform: skewY(5.5deg);
    height: 97%;
  }
}
#plan::after {
  background: #E42019;
  transform: skewY(-8deg);
}
@media only screen and (min-width: 769px) {
  #plan::after {
    transform: skewY(-5.5deg);
  }
}
#plan .plan-features {
  gap: 1.5rem;
}
@media only screen and (min-width: 769px) {
  #plan .plan-features {
    gap: 4rem;
  }
}
#plan .plan-features .feature-item {
  flex: 1;
  text-align: center;
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
  font-weight: bold;
  height: 15rem;
}
@media only screen and (min-width: 769px) {
  #plan .plan-features .feature-item {
    padding: 0;
    height: 12rem;
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
  }
}
#plan .plan-features .feature-item dt {
  font-size: 1.3rem;
  font-weight: bold;
}
@media only screen and (min-width: 769px) {
  #plan .plan-features .feature-item dt {
    font-size: 2rem;
  }
}
#plan .plan-features .feature-item dd {
  font-size: 2.4rem;
  line-height: 1.4;
}
@media only screen and (min-width: 769px) {
  #plan .plan-features .feature-item dd {
    font-size: 4rem;
    line-height: 1;
  }
}
#plan .plan-features .feature-item dd .capacity {
  display: block;
  margin: -1.7rem 0;
  font-size: 5rem;
  font-weight: bold;
}
@media only screen and (min-width: 769px) {
  #plan .plan-features .feature-item dd .capacity {
    display: inline;
    font-size: 5rem;
  }
}
#plan .plan-features .feature-item dd .capacity .unit {
  font-size: 0.6em;
}
#plan .online-plan {
  margin-top: 2rem;
  border-radius: 1rem;
  background: #fff;
  position: relative;
}
@media only screen and (min-width: 769px) {
  #plan .online-plan {
    margin-top: 3rem;
  }
}
#plan .online-plan::before {
  content: "";
  background: url(../img/top/icon_plus_red.svg) no-repeat center/contain;
  width: 4rem;
  height: 4rem;
  position: absolute;
  left: 50%;
  bottom: -2rem;
  transform: translateX(-50%);
}
@media only screen and (min-width: 769px) {
  #plan .online-plan::before {
    width: 6rem;
    height: 6rem;
    bottom: -3rem;
  }
}
#plan .online-plan .plan-header {
  background: #fdebeb;
  position: relative;
  border-radius: 1rem 1rem 0 0;
  padding: 1.3rem 0;
  text-align: center;
}
@media only screen and (min-width: 769px) {
  #plan .online-plan .plan-header {
    padding: 2.5rem 0;
  }
}
#plan .online-plan .plan-header::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -1.2rem;
  border: 1.2rem solid transparent;
  border-top: 1.2rem solid #fdebeb;
  z-index: 2;
}
#plan .online-plan .plan-header h2 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
}
@media only screen and (min-width: 769px) {
  #plan .online-plan .plan-header h2 {
    font-size: 3.6rem;
  }
}
#plan .online-plan .plan-header h2 .plan-type {
  font-size: 1.4rem;
}
@media only screen and (min-width: 769px) {
  #plan .online-plan .plan-header h2 .plan-type {
    font-size: 2.4rem;
  }
}
#plan .online-plan .plan-list {
  padding: 2rem 2rem 2.5rem 2rem;
}
@media only screen and (min-width: 769px) {
  #plan .online-plan .plan-list {
    padding: 3rem 5rem 4rem 5rem;
    flex-direction: row;
  }
}
#plan .online-plan .plan-card {
  text-align: center;
  position: relative;
  border-radius: 0;
}
@media only screen and (min-width: 769px) {
  #plan .online-plan .plan-card {
    width: 50%;
    padding-right: 4rem;
  }
}
#plan .online-plan .plan-card + .plan-card {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: solid 0.1rem #ccc;
}
@media only screen and (min-width: 769px) {
  #plan .online-plan .plan-card + .plan-card {
    margin-top: 0;
    padding: 0;
    padding-left: 4rem;
    border-top: none;
    border-left: solid 0.1rem #ccc;
  }
}
#plan .online-plan .plan-card .badge-new {
  width: 7rem;
  height: 7rem;
  font-size: 1.4rem;
  position: absolute;
  top: -1rem;
  left: -3rem;
  background: url(../img/top/icon_circle.svg) no-repeat center/contain;
  color: #333;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 0.5rem;
  line-height: 1.3;
  animation: fluffy 2s ease-in-out infinite;
}
@media only screen and (min-width: 769px) {
  #plan .online-plan .plan-card .badge-new {
    left: 2rem;
  }
}
#plan .online-plan .plan-card .device-image {
  margin: 0 auto 1.5rem;
  width: 20rem;
}
@media only screen and (min-width: 769px) {
  #plan .online-plan .plan-card .device-image {
    width: 25rem;
    height: 17.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem;
  }
}
#plan .online-plan .plan-card .device-image.air-1 {
  margin: 0 auto 2rem;
}
@media only screen and (min-width: 769px) {
  #plan .online-plan .plan-card .device-image.air-1 {
    margin: 0 auto 2rem;
  }
}
#plan .online-plan .plan-card .capacity-price {
  gap: 1rem;
}
#plan .online-plan .plan-card .capacity-price .data-capacity {
  font-size: 1.8rem;
  font-weight: bold;
  background: #eee;
  width: 6rem;
  height: 5rem;
  line-height: 1;
}
@media only screen and (min-width: 769px) {
  #plan .online-plan .plan-card .capacity-price .data-capacity {
    width: 8rem;
    height: 6rem;
    font-size: 2.4rem;
  }
}
#plan .online-plan .plan-card .capacity-price .data-capacity .unit {
  font-size: 0.6em;
}
#plan .online-plan .plan-card .capacity-price .price dt {
  font-size: 1.8rem;
  font-weight: bold;
}
@media only screen and (min-width: 769px) {
  #plan .online-plan .plan-card .capacity-price .price dt {
    font-size: 3rem;
  }
}
#plan .online-plan .plan-card .capacity-price .price dd .price-value {
  font-size: 5rem;
  font-weight: bold;
  line-height: 1;
}
@media only screen and (min-width: 769px) {
  #plan .online-plan .plan-card .capacity-price .price dd .price-value {
    font-size: 7.6rem;
  }
}
#plan .online-plan .plan-card .capacity-price .price dd .price-unit {
  font-size: 2.4rem;
  font-weight: bold;
}
@media only screen and (min-width: 769px) {
  #plan .online-plan .plan-card .capacity-price .price dd .price-unit {
    font-size: 3.6rem;
  }
}
#plan .online-plan .plan-card .capacity-price .price dd .price-tax {
  display: block;
  font-size: 1.2rem;
  color: #666;
  margin-top: 0.5rem;
}
@media only screen and (min-width: 769px) {
  #plan .online-plan .plan-card .capacity-price .price dd .price-tax {
    font-size: 1.4rem;
  }
}
#plan .plan-options {
  margin-top: 2rem;
}
@media only screen and (min-width: 769px) {
  #plan .plan-options {
    margin-top: 4rem;
  }
}
#plan .plan-options .options-intro {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
}
@media only screen and (min-width: 769px) {
  #plan .plan-options .options-intro {
    font-size: 3.6rem;
  }
}
#plan .plan-options .options-intro .font-en {
  font-size: 1.3em;
}
#plan .plan-options .options-list {
  margin-top: 1.8rem;
  gap: 1.5rem;
}
@media only screen and (min-width: 769px) {
  #plan .plan-options .options-list {
    margin-top: 2.5rem;
    gap: 4rem;
  }
}
#plan .plan-options .option-card {
  width: calc((100% - 1.5rem) / 2);
  background: #fff;
  border-radius: 1rem;
  text-align: center;
}
#plan .plan-options .option-card .option-title {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.3;
  background: #fdebeb;
  padding: 1rem 0;
  border-radius: 1rem 1rem 0 0;
  position: relative;
}
@media only screen and (min-width: 769px) {
  #plan .plan-options .option-card .option-title {
    font-size: 2rem;
    padding: 2rem 0;
  }
}
#plan .plan-options .option-card .option-title::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -0.9rem;
  border: 0.9rem solid transparent;
  border-top: 0.9rem solid #fdebeb;
  z-index: 2;
}
@media only screen and (min-width: 769px) {
  #plan .plan-options .option-card .option-title::before {
    margin-left: -1.2rem;
    border: 1.2rem solid transparent;
    border-top: 1.2rem solid #fdebeb;
  }
}
#plan .plan-options .option-card .option-content {
  padding: 2rem 1rem;
}
#plan .plan-options .option-card .option-content .option-price {
  font-weight: bold;
}
#plan .plan-options .option-card .option-content .option-price .option-name {
  display: block;
  font-size: 1.2rem;
}
@media only screen and (min-width: 769px) {
  #plan .plan-options .option-card .option-content .option-price .option-name {
    font-size: 1.6rem;
  }
}
#plan .plan-options .option-card .option-content .option-price .price-label {
  font-size: 1.6rem;
}
@media only screen and (min-width: 769px) {
  #plan .plan-options .option-card .option-content .option-price .price-label {
    font-size: 1.8rem;
  }
}
#plan .plan-options .option-card .option-content .option-price .price-value {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 4rem;
  color: #E42019;
}
@media only screen and (min-width: 769px) {
  #plan .plan-options .option-card .option-content .option-price .price-value {
    font-size: 7rem;
  }
}
#plan .plan-options .option-card .option-content .option-price .price-unit {
  font-size: 2rem;
}
@media only screen and (min-width: 769px) {
  #plan .plan-options .option-card .option-content .option-price .price-unit {
    font-size: 2.4rem;
  }
}
#plan .plan-options .option-card .option-content .option-tax {
  font-size: 1.2rem;
  color: #666;
}
@media only screen and (min-width: 769px) {
  #plan .plan-options .option-card .option-content .option-tax {
    font-size: 1.4rem;
  }
}
#plan .options-benefit {
  margin: 3rem 0;
  text-align: center;
}
@media only screen and (min-width: 769px) {
  #plan .options-benefit {
    margin-top: 4rem;
    margin-bottom: 7rem;
  }
}
#plan .options-benefit .benefit-title {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  display: inline-block;
  position: relative;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 769px) {
  #plan .options-benefit .benefit-title {
    font-size: 3.6rem;
    margin-bottom: 2rem;
  }
}
#plan .options-benefit .benefit-title::before, #plan .options-benefit .benefit-title::after {
  content: "";
  display: block;
  background: #fff;
  width: 0.2rem;
  height: 100%;
  position: absolute;
  left: -1.5rem;
  bottom: 0;
  transform: rotate(-30deg);
}
@media only screen and (min-width: 769px) {
  #plan .options-benefit .benefit-title::before, #plan .options-benefit .benefit-title::after {
    left: -2rem;
  }
}
#plan .options-benefit .benefit-title::after {
  left: auto;
  right: -1.5rem;
  transform: rotate(30deg);
}
@media only screen and (min-width: 769px) {
  #plan .options-benefit .benefit-title::after {
    right: -2rem;
  }
}
#plan .options-benefit .benefit-box {
  background: #fff;
  border-radius: 1rem;
}
@media only screen and (min-width: 769px) {
  #plan .options-benefit .benefit-box {
    width: 70rem;
    margin: 0 auto;
  }
}
#plan .options-benefit .benefit-box .benefit-text {
  font-size: 1.8rem;
  font-weight: bold;
  background: #fdebeb;
  border-radius: 1rem 1rem 0 0;
  padding: 1.5rem 0;
  position: relative;
}
@media only screen and (min-width: 769px) {
  #plan .options-benefit .benefit-box .benefit-text {
    font-size: 2.4rem;
  }
}
#plan .options-benefit .benefit-box .benefit-text::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -0.9rem;
  border: 0.9rem solid transparent;
  border-top: 0.9rem solid #fdebeb;
  z-index: 2;
}
#plan .options-benefit .benefit-box .benefit-text .font-en {
  font-size: 2.8rem;
}
@media only screen and (min-width: 769px) {
  #plan .options-benefit .benefit-box .benefit-text .font-en {
    font-size: 4rem;
  }
}
#plan .options-benefit .benefit-box .benefit-content {
  padding: 2rem 2rem;
}
#plan .options-benefit .benefit-box .benefit-content .benefit-price {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
@media only screen and (min-width: 769px) {
  #plan .options-benefit .benefit-box .benefit-content .benefit-price {
    font-size: 2.4rem;
  }
}
#plan .options-benefit .benefit-box .benefit-content .benefit-price .price-value {
  font-size: 5rem;
  color: #E42019;
}
@media only screen and (min-width: 769px) {
  #plan .options-benefit .benefit-box .benefit-content .benefit-price .price-value {
    font-size: 7rem;
  }
}
#plan .options-benefit .benefit-box .benefit-content .benefit-price .note {
  font-size: 1.2rem;
}
#plan .options-benefit .benefit-box .benefit-content .benefit-tax {
  font-size: 1.2rem;
  color: #666;
}
@media only screen and (min-width: 769px) {
  #plan .options-benefit .benefit-box .benefit-content .benefit-tax {
    font-size: 1.4rem;
  }
}
#plan .cta_btn {
  margin-top: 2rem;
}
@media only screen and (min-width: 769px) {
  #plan .cta_btn {
    margin-top: 3rem;
  }
}
#plan .note {
  color: #fff;
  margin-top: 1.5rem;
}
@media only screen and (min-width: 769px) {
  #plan .note {
    margin: 3rem auto 0;
    width: 70rem;
  }
}
#plan .sim_btn {
  margin-top: 2rem;
}

#data-capacity .capacity-intro {
  text-align: center;
}
#data-capacity .capacity-intro h2 {
  flex-wrap: wrap;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}
@media only screen and (min-width: 769px) {
  #data-capacity .capacity-intro h2 {
    font-size: 4rem;
  }
}
#data-capacity .capacity-intro h2 img {
  width: 14rem;
  transform: translateY(-13%);
}
@media only screen and (min-width: 769px) {
  #data-capacity .capacity-intro h2 img {
    width: 25rem;
  }
}
#data-capacity .capacity-intro h2 .price-info {
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
}
@media only screen and (min-width: 769px) {
  #data-capacity .capacity-intro h2 .price-info {
    gap: 1rem;
  }
}
#data-capacity .capacity-intro h2 .price-info .label {
  font-size: 1.5rem;
  writing-mode: vertical-lr;
  line-height: 1;
  transform: translateY(14%);
}
@media only screen and (min-width: 769px) {
  #data-capacity .capacity-intro h2 .price-info .label {
    font-size: 3rem;
  }
}
#data-capacity .capacity-intro h2 .price-info .value {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 5rem;
  line-height: 1;
}
@media only screen and (min-width: 769px) {
  #data-capacity .capacity-intro h2 .price-info .value {
    font-size: 9.3rem;
  }
}
#data-capacity .capacity-intro h2 .price-info .unit {
  font-size: 0.8em;
}
@media only screen and (min-width: 769px) {
  #data-capacity .capacity-intro h2 .price-info .unit {
    font-size: 1em;
  }
}
#data-capacity .capacity-intro h2 .price-info .tax {
  font-size: 1rem;
  font-weight: normal;
  position: absolute;
  bottom: -1.3rem;
  right: -0.5rem;
}
@media only screen and (min-width: 769px) {
  #data-capacity .capacity-intro h2 .price-info .tax {
    font-size: 1.2rem;
  }
}
#data-capacity .capacity-intro .capacity-title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.4;
}
@media only screen and (min-width: 769px) {
  #data-capacity .capacity-intro .capacity-title {
    font-size: 4rem;
    margin-bottom: 2rem;
  }
}
#data-capacity .capacity-intro .capacity-title .capacity {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  margin: 0 0.5rem;
  font-size: 5rem;
  line-height: 1;
}
@media only screen and (min-width: 769px) {
  #data-capacity .capacity-intro .capacity-title .capacity {
    font-size: 9.6rem;
  }
}
#data-capacity .capacity-intro .capacity-title .capacity .unit {
  font-size: 0.8em;
}
#data-capacity .capacity-intro .capacity-description {
  font-size: 1.3rem;
  line-height: 1.5;
}
@media only screen and (min-width: 769px) {
  #data-capacity .capacity-intro .capacity-description {
    font-size: 1.6rem;
  }
}
#data-capacity .capacity-intro.capacity-intro-20gb {
  margin-top: 3rem;
}
@media only screen and (min-width: 769px) {
  #data-capacity .capacity-intro.capacity-intro-20gb {
    margin-top: 5rem;
  }
}
#data-capacity .capacity-intro.capacity-intro-20gb .capacity-title {
  font-size: 2.2rem;
}
@media only screen and (min-width: 769px) {
  #data-capacity .capacity-intro.capacity-intro-20gb .capacity-title {
    font-size: 4rem;
  }
}
#data-capacity .capacity-intro.capacity-intro-20gb .capacity-title .capacity {
  font-size: 4rem;
}
@media only screen and (min-width: 769px) {
  #data-capacity .capacity-intro.capacity-intro-20gb .capacity-title .capacity {
    font-size: 9.6rem;
  }
}
#data-capacity .usage-table {
  margin-top: 2rem;
}
@media only screen and (min-width: 769px) {
  #data-capacity .usage-table {
    margin-top: 3rem;
  }
}
#data-capacity .usage-table .table-caption {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  background: #E42019;
  color: #fff;
  height: 4rem;
  line-height: 4rem;
}
@media only screen and (min-width: 769px) {
  #data-capacity .usage-table .table-caption {
    font-size: 2rem;
    height: 5.5rem;
    line-height: 5.5rem;
  }
}
#data-capacity .usage-table table {
  width: 33rem;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 0.3rem 1.5rem rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  overflow: hidden;
}
@media only screen and (min-width: 769px) {
  #data-capacity .usage-table table {
    width: 100%;
  }
}
#data-capacity .usage-table th, #data-capacity .usage-table td {
  text-align: center;
  vertical-align: middle;
  height: 3.5rem;
  border: solid 0.1rem #ddd;
  font-size: 1.4rem;
}
@media only screen and (min-width: 769px) {
  #data-capacity .usage-table th, #data-capacity .usage-table td {
    font-size: 1.6rem;
    height: 4.5rem;
  }
}
#data-capacity .usage-table thead {
  background: #F8F8F8;
}
#data-capacity .usage-table thead th {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  width: 12rem;
  background: #f6f6f6;
}
@media only screen and (min-width: 769px) {
  #data-capacity .usage-table thead th {
    font-size: 1.8rem;
    width: 33.3333333333%;
  }
}
#data-capacity .usage-table thead th:first-child {
  width: 9rem;
}
@media only screen and (min-width: 769px) {
  #data-capacity .usage-table thead th:first-child {
    width: 33.3333333333%;
  }
}
#data-capacity .usage-table tbody tr {
  border-bottom: 0.1rem solid #eee;
  transition: background 0.2s;
}
#data-capacity .usage-table tbody tr:last-child {
  border-bottom: none;
}
#data-capacity .usage-table tbody tr:hover {
  background: #fafafa;
}
#data-capacity .usage-table tbody tr th {
  font-weight: bold;
  background: #f6f6f6;
}
#data-capacity .usage-table tbody tr td {
  text-align: center;
  color: #333;
}
#data-capacity .note {
  margin-top: 2rem;
}
@media only screen and (min-width: 769px) {
  #data-capacity .note {
    margin-top: 3rem;
  }
}

#device-detail {
  background: #fff5f5;
  padding: 4rem 0;
}
@media only screen and (min-width: 769px) {
  #device-detail {
    padding: 8rem 22rem;
  }
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section .device-header {
    gap: 5rem;
  }
}
#device-detail .device-section .device-header .device-intro {
  text-align: center;
}
#device-detail .device-section .device-header .device-intro .intro-bubble {
  color: #fff;
  background: #E42019;
  padding: 0.5rem 2rem;
  border-radius: 999px;
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section .device-header .device-intro .intro-bubble {
    font-size: 2.4rem;
  }
}
#device-detail .device-section .device-header .device-intro .intro-bubble::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -0.9rem;
  border: 0.9rem solid transparent;
  border-top: 0.9rem solid #E42019;
}
#device-detail .device-section .device-header .device-intro h2 {
  font-size: 2.8rem;
  font-weight: bold;
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section .device-header .device-intro h2 {
    font-size: 5.8rem;
  }
}
#device-detail .device-section .device-header .device-image {
  margin-top: 2rem;
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section .device-header .device-image {
    margin: 0;
    width: 35rem;
  }
}
#device-detail .device-section .device-features {
  margin-top: 2rem;
  padding: 0 3rem;
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section .device-features {
    margin-top: 3rem;
    padding: 0;
    gap: 2rem;
  }
}
#device-detail .device-section .device-features .feature-item {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section .device-features .feature-item {
    width: calc((100% - 4rem) / 3);
    height: 23rem;
  }
}
#device-detail .device-section .device-features .feature-item + li {
  margin-top: 2rem;
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section .device-features .feature-item + li {
    margin-top: 0;
  }
}
#device-detail .device-section .device-features .feature-item .feature-header {
  gap: 1.5rem;
}
#device-detail .device-section .device-features .feature-item .feature-header .feature-icon {
  width: 6rem;
}
#device-detail .device-section .device-features .feature-item .feature-header .feature-title {
  font-weight: bold;
}
#device-detail .device-section .device-features .feature-item .feature-header .feature-title .point-label {
  font-size: 2rem;
}
#device-detail .device-section .device-features .feature-item .feature-header .feature-title h3 {
  font-size: 2.4rem;
}
#device-detail .device-section .device-features .feature-item .body_text {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: solid 0.1rem #ccc;
}
#device-detail .device-section .usage-guide {
  margin: 3rem 3rem 0;
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section .usage-guide {
    margin: 3rem 0 0;
  }
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section .usage-guide .accordion_box {
    padding: 4rem;
  }
}
#device-detail .device-section .usage-guide h4 {
  font-weight: bold;
  font-size: 1.6rem;
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section .usage-guide h4 {
    text-align: center;
    font-size: 2.4rem;
  }
}
#device-detail .device-section .usage-guide .usage-scenes {
  margin-top: 2rem;
  gap: 2rem;
  flex-wrap: wrap;
}
#device-detail .device-section .usage-guide .usage-scenes .scene-item {
  width: calc((100% - 2rem) / 2);
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section .usage-guide .usage-scenes .scene-item {
    width: calc((100% - 6rem) / 4);
  }
}
#device-detail .device-section .usage-guide .usage-scenes p {
  font-weight: bold;
  font-size: 1.4rem;
  margin-top: 1rem;
  text-align: center;
}
#device-detail .device-section .usage-guide .cable-info {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: solid 0.1rem #ccc;
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section .usage-guide .cable-info {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    gap: 4rem;
  }
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section .usage-guide .cable-info .text_wrap {
    flex: 1;
  }
}
#device-detail .device-section .usage-guide .cable-info .cable-examples {
  margin-top: 2rem;
  gap: 2rem;
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section .usage-guide .cable-info .cable-examples {
    margin: 0;
    width: 40%;
  }
}
#device-detail .device-section .usage-guide .cable-info .cable-examples .cable-example {
  width: calc((100% - 2rem) / 2);
}
#device-detail .device-section .usage-guide .cable-info .cable-examples .cable-example p {
  margin-top: 1rem;
  text-align: center;
  font-weight: bold;
  font-size: 1.4rem;
}
#device-detail .device-section .usage-guide .usage-steps {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: solid 0.1rem #ccc;
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section .usage-guide .usage-steps {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    gap: 4rem;
  }
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section .usage-guide .usage-steps .steps-intro {
    width: 50%;
  }
}
#device-detail .device-section .usage-guide .usage-steps picture {
  margin: 1.5rem 0;
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section .usage-guide .usage-steps picture {
    margin: 1.5rem 0 0;
  }
}
#device-detail .device-section .usage-guide .usage-steps .steps-list {
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: justify;
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section .usage-guide .usage-steps .steps-list {
    flex: 1;
  }
}
#device-detail .device-section .wifi6-info {
  margin: 2rem 3rem 0;
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section .wifi6-info {
    margin: 2rem 0 0;
  }
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section .wifi6-info .accordion_box {
    padding: 4rem;
  }
}
#device-detail .device-section .wifi6-info .content-heading {
  font-weight: bold;
  text-align: center;
  font-size: 1.8rem;
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section .wifi6-info .content-heading {
    font-size: 2.4rem;
  }
}
#device-detail .device-section .wifi6-info .content-heading .red {
  font-size: 2rem;
  background: linear-gradient(to bottom, transparent 70%, #FFFDD0 70%);
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section .wifi6-info .content-heading .red {
    font-size: 3.6rem;
  }
}
#device-detail .device-section .wifi6-info .wifi6-graph {
  margin: 2rem 0;
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section .wifi6-info .wifi6-graph {
    width: 60rem;
    margin: 3rem auto;
  }
}
#device-detail .device-section .wifi6-info .subsection-title {
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section .wifi6-info .subsection-title {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }
}
#device-detail .device-section .wifi6-info .wifi6-feature + .wifi6-feature {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: solid 0.1rem #ccc;
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section .wifi6-info .wifi6-feature + .wifi6-feature {
    margin-top: 2rem;
    padding-top: 2rem;
  }
}
#device-detail .device-section .wifi6-info .wifi6-feature .feature-title {
  font-weight: bold;
  font-size: 1.6rem;
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section .wifi6-info .wifi6-feature .feature-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
}
#device-detail .device-section.device-air-1 {
  margin-top: 3rem;
  padding: 3rem 3rem 0;
  position: relative;
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section.device-air-1 {
    margin-top: 5rem;
    padding: 0;
    padding-top: 5rem;
  }
}
#device-detail .device-section.device-air-1::before {
  content: "";
  display: block;
  width: 33rem;
  height: 0.1rem;
  background: #ccc;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section.device-air-1::before {
    width: 100%;
  }
}
#device-detail .device-section.device-air-1 .device-image {
  margin: 2rem auto 0;
  width: 21.8rem;
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section.device-air-1 .device-image {
    margin: 0;
    width: 30rem;
  }
}
#device-detail .device-section.device-air-1 .device-merits {
  margin-top: 3rem;
}
#device-detail .device-section.device-air-1 .device-merits .merit-item {
  background: #fff;
  border-radius: 1rem;
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section.device-air-1 .device-merits .merit-item {
    background: none;
    border-radius: 0;
    gap: 5rem;
  }
}
#device-detail .device-section.device-air-1 .device-merits .merit-item.merit-item {
  margin-top: 2rem;
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section.device-air-1 .device-merits .merit-item:first-child {
    flex-direction: row-reverse;
  }
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section.device-air-1 .device-merits .merit-item .merit-image {
    width: 35rem;
  }
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section.device-air-1 .device-merits .merit-item .merit-image img {
    border-radius: 1rem;
  }
}
#device-detail .device-section.device-air-1 .device-merits .merit-item .merit-content {
  padding: 2rem;
  text-align: center;
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section.device-air-1 .device-merits .merit-item .merit-content {
    padding: 0;
    flex: 1;
    text-align: left;
  }
}
#device-detail .device-section.device-air-1 .device-merits .merit-item .merit-content .point-label {
  font-size: 1.6rem;
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section.device-air-1 .device-merits .merit-item .merit-content .point-label {
    font-size: 2rem;
  }
}
#device-detail .device-section.device-air-1 .device-merits .merit-item .merit-content .merit-title {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
}
@media only screen and (min-width: 769px) {
  #device-detail .device-section.device-air-1 .device-merits .merit-item .merit-content .merit-title {
    font-size: 2.4rem;
  }
}
#device-detail .device-section.device-air-1 .device-merits .merit-item .merit-content .body_text {
  margin-top: 1rem;
}

#comparison-table {
  padding-bottom: 1rem;
}
@media only screen and (min-width: 1440px) {
  #comparison-table {
    padding-bottom: 8rem;
  }
}
#comparison-table h2 {
  text-align: center;
  font-weight: bold;
  font-size: 2.6rem;
  line-height: 1.3;
}
@media only screen and (min-width: 769px) {
  #comparison-table h2 {
    font-size: 4rem;
  }
  #comparison-table h2 .red {
    font-size: 5rem;
  }
}
#comparison-table table {
  margin-top: 3rem;
}
@media only screen and (min-width: 769px) {
  #comparison-table table {
    margin: 0 auto;
    margin-top: 5rem;
  }
}
#comparison-table table th, #comparison-table table td {
  width: 11rem;
  text-align: center;
  vertical-align: middle;
  line-height: 1.2;
}
@media only screen and (min-width: 769px) {
  #comparison-table table th, #comparison-table table td {
    width: 30rem;
  }
}
#comparison-table table thead th {
  height: 8rem;
}
@media only screen and (min-width: 769px) {
  #comparison-table table thead th {
    height: 12rem;
  }
}
@media only screen and (min-width: 769px) {
  #comparison-table table thead th:first-child {
    width: 18.5rem;
  }
}
#comparison-table table thead th picture {
  width: 7.7rem;
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  #comparison-table table thead th picture {
    width: 14rem;
  }
}
#comparison-table table thead th.frame {
  position: relative;
}
#comparison-table table thead th.frame::before {
  content: "";
  display: block;
  width: 10.8rem;
  height: 32rem;
  border-radius: 1rem;
  border: solid 0.2rem #E42019;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  box-shadow: 0 0rem 1rem rgba(0, 0, 0, 0.08);
}
@media only screen and (min-width: 769px) {
  #comparison-table table thead th.frame::before {
    width: 29rem;
    border: solid 0.3rem #E42019;
    height: 36.6rem;
  }
}
#comparison-table table tbody tr th, #comparison-table table tbody tr td {
  height: 6rem;
  font-weight: bold;
}
#comparison-table table tbody tr th {
  font-size: 1.2rem;
}
@media only screen and (min-width: 769px) {
  #comparison-table table tbody tr th {
    font-size: 1.6rem;
  }
}
#comparison-table table tbody tr td {
  font-size: 1.4rem;
}
@media only screen and (min-width: 769px) {
  #comparison-table table tbody tr td {
    font-size: 2rem;
  }
}
#comparison-table table tbody tr td .font-en {
  font-size: 2.2rem;
}
@media only screen and (min-width: 769px) {
  #comparison-table table tbody tr td .font-en {
    font-size: 3.2rem;
  }
}
#comparison-table table tbody tr.gray {
  background: #F5F5F5;
}

#no-construction {
  overflow: hidden;
  position: relative;
  padding: 8rem 3rem 4rem;
}
@media only screen and (min-width: 769px) {
  #no-construction {
    padding: 18rem 22rem 8rem;
  }
}
@media only screen and (min-width: 1440px) {
  #no-construction {
    padding: 8rem 22rem;
  }
}
#no-construction .no-construction_top h2 {
  font-size: 3.2rem;
  font-weight: bold;
}
@media only screen and (min-width: 769px) {
  #no-construction .no-construction_top h2 {
    font-size: 5.6rem;
  }
}
#no-construction .no-construction_top h2 .text-strong {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 3.8rem;
  height: 3.8rem;
  font-size: 1.5rem;
  background: url(../img/top/icon_circle_red.svg) no-repeat center/contain;
  margin-right: 0.3rem;
  transform: translateY(-16%);
}
@media only screen and (min-width: 769px) {
  #no-construction .no-construction_top h2 .text-strong {
    width: 6rem;
    height: 6rem;
    font-size: 2rem;
  }
}
#no-construction .no-construction_top .lead-text {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-top: 2rem;
}
@media only screen and (min-width: 769px) {
  #no-construction .no-construction_top .lead-text {
    font-size: 1.6rem;
  }
}
#no-construction .bg-item-1 {
  position: absolute;
  left: 0;
  top: -5rem;
  background: url(../img/top/no-construction_bg.webp) no-repeat right 43% top 10%/cover;
  width: 100%;
  height: 124%;
  z-index: -1;
}
@media only screen and (min-width: 1440px) {
  #no-construction .bg-item-1 {
    background: url(../img/top/no-construction_bg.webp) no-repeat right 43% top 25%/cover;
  }
}
#no-construction .bg-item-2 {
  position: absolute;
  width: 100%;
  height: 10rem;
  background: #fff;
  left: 0;
  top: -4.5rem;
  transform: translate3d(0, 0, 0) skewY(-8deg);
  transform-origin: left top;
  overflow: hidden;
}
@media only screen and (min-width: 769px) {
  #no-construction .bg-item-2 {
    height: 22rem;
    top: -2rem;
  }
}
@media only screen and (min-width: 1440px) {
  #no-construction .bg-item-2 {
    display: none;
  }
}
#no-construction .bg-item-2::before {
  content: "";
  background: #dad9d9;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -4.5rem;
  transform: translate3d(0, 0, 0) skewY(16deg);
  transform-origin: left bottom;
  height: 100%;
}
@media only screen and (min-width: 769px) {
  #no-construction .bg-item-2::before {
    bottom: -2rem;
  }
}
#no-construction .note {
  margin-top: 3rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 2rem;
  border-radius: 1rem;
}
@media only screen and (min-width: 769px) {
  #no-construction .note {
    margin-top: 4rem;
    padding: 3rem;
  }
}

#about-option h2 {
  font-weight: bold;
  text-align: center;
  font-size: 3.5rem;
}
@media only screen and (min-width: 769px) {
  #about-option h2 {
    font-size: 5.8rem;
  }
}
#about-option h2 .middle {
  font-size: 2.4rem;
}
@media only screen and (min-width: 769px) {
  #about-option h2 .middle {
    font-size: 4.6rem;
  }
}
#about-option h2 .note-mark {
  font-size: 1rem;
  font-weight: normal;
}
#about-option .option-description {
  text-align: center;
  font-size: 1.4rem;
  margin-top: 1.5rem;
  line-height: 1.5;
}
#about-option .note {
  text-align: center;
  font-size: 1rem;
  margin-top: 0.5rem;
}
#about-option .cancellation-steps {
  margin-top: 3rem;
}
@media only screen and (min-width: 769px) {
  #about-option .cancellation-steps {
    gap: 4rem;
  }
}
#about-option .cancellation-steps .step-item + .step-item {
  margin-top: 2rem;
}
@media only screen and (min-width: 769px) {
  #about-option .cancellation-steps .step-item + .step-item {
    margin-top: 0;
  }
}
#about-option .cancellation-steps .step-item .step-image {
  width: 33rem;
  height: 18rem;
}
@media only screen and (min-width: 769px) {
  #about-option .cancellation-steps .step-item .step-image {
    width: 40rem;
    height: 22rem;
  }
}
#about-option .cancellation-steps .step-item .step-image img {
  border-radius: 1rem 1rem 0 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#about-option .cancellation-steps .step-item .step-text {
  text-align: center;
  background: #E42019;
  color: #fff;
  font-size: 1.4rem;
  padding: 1rem;
  border-radius: 0 0 1rem 1rem;
}
@media only screen and (min-width: 769px) {
  #about-option .cancellation-steps .step-item .step-text {
    font-size: 1.6rem;
  }
}

#cancellation-policy {
  background: #f8f8f8;
}
#cancellation-policy h2 {
  text-align: center;
}
#cancellation-policy h2 span {
  display: inline-block;
  font-weight: bold;
  font-size: 2.4rem;
  font-style: italic;
  position: relative;
}
@media only screen and (min-width: 769px) {
  #cancellation-policy h2 span {
    font-size: 3.6rem;
  }
}
#cancellation-policy h2 span::before, #cancellation-policy h2 span::after {
  content: "";
  display: block;
  background: #E42019;
  width: 0.3rem;
  height: 100%;
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: rotate(30deg) translateY(-50%);
}
@media only screen and (min-width: 769px) {
  #cancellation-policy h2 span::before, #cancellation-policy h2 span::after {
    left: -4rem;
  }
}
#cancellation-policy h2 span::after {
  left: auto;
  right: -1rem;
}
@media only screen and (min-width: 769px) {
  #cancellation-policy h2 span::after {
    right: -1.5rem;
  }
}
#cancellation-policy .body_text {
  margin-top: 2rem;
}
@media only screen and (min-width: 769px) {
  #cancellation-policy .body_text {
    text-align: center;
  }
}
#cancellation-policy .cancellation-timeline {
  margin-top: 2rem;
}
@media only screen and (min-width: 769px) {
  #cancellation-policy .cancellation-timeline {
    margin-top: 3rem;
  }
}
#cancellation-policy .cancellation-timeline .timeline-section + .timeline-section {
  margin-top: 2rem;
}
#cancellation-policy .cancellation-timeline .timeline-section .timeline-year {
  font-weight: bold;
  font-size: 1.6rem;
}
@media only screen and (min-width: 769px) {
  #cancellation-policy .cancellation-timeline .timeline-section .timeline-year {
    font-size: 2.4rem;
  }
}
#cancellation-policy .cancellation-timeline .timeline-section .timeline-image {
  margin-top: 1rem;
  width: 33rem;
}
@media only screen and (min-width: 769px) {
  #cancellation-policy .cancellation-timeline .timeline-section .timeline-image {
    width: 100%;
  }
}
#cancellation-policy .accordion_wrap {
  margin-top: 3rem;
}
@media only screen and (min-width: 769px) {
  #cancellation-policy .accordion_wrap {
    margin-top: 4rem;
  }
}
#cancellation-policy .accordion_wrap .accordion_box .notes-list {
  line-height: 1.8;
  font-size: 1.2rem;
}
#cancellation-policy .accordion_wrap .accordion_box .notes-list li {
  text-indent: -1em;
  padding-left: 1em;
}
#cancellation-policy .option-highlight {
  margin-top: 3rem;
  gap: 2rem;
}
@media only screen and (min-width: 769px) {
  #cancellation-policy .option-highlight {
    margin-top: 4rem;
    gap: 4rem;
  }
}
#cancellation-policy .option-highlight .option-badge {
  width: 14.2rem;
  height: 14.2rem;
  background: #fff;
  border-radius: 999px;
  border: solid 0.1rem #E42019;
  text-align: center;
  line-height: 1.5;
}
@media only screen and (min-width: 769px) {
  #cancellation-policy .option-highlight .option-badge {
    width: 20.5rem;
    height: 20.5rem;
  }
}
#cancellation-policy .option-highlight .option-badge p {
  font-weight: bold;
  font-size: 1.6rem;
}
@media only screen and (min-width: 769px) {
  #cancellation-policy .option-highlight .option-badge p {
    font-size: 2.4rem;
  }
}
#cancellation-policy .option-highlight .option-text {
  font-weight: bold;
  font-style: italic;
  font-size: 1.8rem;
  line-height: 1.5;
}
@media only screen and (min-width: 769px) {
  #cancellation-policy .option-highlight .option-text {
    font-size: 3.6rem;
  }
}
#cancellation-policy .option-highlight .option-text .font-en {
  font-size: 3.6rem;
  font-style: italic;
}
@media only screen and (min-width: 769px) {
  #cancellation-policy .option-highlight .option-text .font-en {
    font-size: 4.8rem;
  }
}
#cancellation-policy .note {
  margin-top: 2rem;
}
@media only screen and (min-width: 769px) {
  #cancellation-policy .note {
    text-align: center;
  }
}
#cancellation-policy .cta_btn {
  margin-top: 2rem;
}
@media only screen and (min-width: 769px) {
  #cancellation-policy .cta_btn {
    margin-top: 3rem;
  }
}

#plans {
  position: relative;
  overflow: visible;
  z-index: 2;
}
#plans::before, #plans::after {
  content: "";
  display: block;
  background: #dad9d9;
  width: 100%;
  height: 98%;
  position: absolute;
  top: 0rem;
  left: 0;
  transform: skewY(8deg);
  z-index: -1;
}
@media only screen and (min-width: 769px) {
  #plans::before, #plans::after {
    transform: skewY(5.5deg);
    height: 97%;
  }
}
#plans::after {
  background: #E42019;
  transform: skewY(-8deg);
}
@media only screen and (min-width: 769px) {
  #plans::after {
    transform: skewY(-5.5deg);
  }
}
#plans h2 {
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  font-size: 2.2rem;
  color: #fff;
}
@media only screen and (min-width: 769px) {
  #plans h2 {
    font-size: 4rem;
  }
}
#plans .sim_btn {
  margin-top: 3rem;
}
@media only screen and (min-width: 769px) {
  #plans .sim_btn {
    margin-top: 4rem;
  }
}

.plan-card {
  margin-top: 3rem;
  border-radius: 1rem;
  background: #fff;
  position: relative;
}
@media only screen and (min-width: 769px) {
  .plan-card {
    margin-top: 4rem;
  }
}
.plan-card .plan-badge {
  position: absolute;
  top: -2rem;
  left: -2.5rem;
  width: 6.5rem;
  height: 6.5rem;
  background: url(../img/top/icon_circle.svg) no-repeat center/contain;
  z-index: 2;
  transform: rotate(-6deg);
}
@media only screen and (min-width: 769px) {
  .plan-card .plan-badge {
    top: -3rem;
    left: -5rem;
    width: 13.8rem;
    height: 13.8rem;
  }
}
.plan-card .plan-badge span {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}
@media only screen and (min-width: 769px) {
  .plan-card .plan-badge span {
    font-size: 1.7rem;
  }
}
.plan-card .plan-header {
  background: #fdebeb;
  border-radius: 1rem 1rem 0 0;
  padding: 1.5rem 0;
  position: relative;
}
@media only screen and (min-width: 769px) {
  .plan-card .plan-header {
    padding: 2.5rem 0;
  }
}
.plan-card .plan-header::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -0.9rem;
  border: 0.9rem solid transparent;
  border-top: 0.9rem solid #fdebeb;
}
.plan-card .plan-header h3 {
  font-weight: bold;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .plan-card .plan-header h3 {
    font-size: 2.8rem;
  }
}
.plan-card .plan-header h3 .plan-catch {
  font-size: 1.2rem;
}
@media only screen and (min-width: 769px) {
  .plan-card .plan-header h3 .plan-catch {
    font-size: 2rem;
  }
}
.plan-card .plan-body {
  padding: 2rem 1.5rem;
}
@media only screen and (min-width: 769px) {
  .plan-card .plan-body {
    padding: 3rem 6rem 4rem;
  }
}
.plan-card .plan-body .campaign-ribbon {
  width: 26rem;
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  .plan-card .plan-body .campaign-ribbon {
    width: 24rem;
    margin: 0 auto 1rem;
  }
}
.plan-card .plan-body .plan-info {
  margin-top: 1.5rem;
  gap: 1rem;
}
@media only screen and (min-width: 769px) {
  .plan-card .plan-body .plan-info {
    margin-top: 0;
    gap: 4rem;
  }
}
.plan-card .plan-body .plan-info.mt-0 {
  margin-top: 0;
}
.plan-card .plan-body .plan-info .device-name {
  text-align: center;
}
.plan-card .plan-body .plan-info .device-name .device-label {
  font-size: 1.4rem;
  color: #777;
  position: relative;
}
@media only screen and (min-width: 769px) {
  .plan-card .plan-body .plan-info .device-name .device-label {
    font-size: 2.4rem;
  }
}
.plan-card .plan-body .plan-info .device-name .device-label::before, .plan-card .plan-body .plan-info .device-name .device-label::after {
  content: "";
  display: block;
  background: #777;
  height: 0.1rem;
  width: 3rem;
  position: absolute;
  left: 0;
  top: 50%;
}
@media only screen and (min-width: 769px) {
  .plan-card .plan-body .plan-info .device-name .device-label::before, .plan-card .plan-body .plan-info .device-name .device-label::after {
    width: 7rem;
  }
}
.plan-card .plan-body .plan-info .device-name .device-label::after {
  left: auto;
  right: 0;
}
.plan-card .plan-body .plan-info .device-name .device-label.air-1::before, .plan-card .plan-body .plan-info .device-name .device-label.air-1::after {
  width: 4.5rem;
}
@media only screen and (min-width: 769px) {
  .plan-card .plan-body .plan-info .device-name .device-label.air-1::before, .plan-card .plan-body .plan-info .device-name .device-label.air-1::after {
    width: 11rem;
  }
}
.plan-card .plan-body .plan-info .plan-name {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-top: 0.5rem;
}
@media only screen and (min-width: 769px) {
  .plan-card .plan-body .plan-info .plan-name {
    font-size: 4rem;
  }
}
.plan-card .plan-body .plan-info .price-info dt {
  text-align: center;
  width: 1.28em;
  line-height: 1.28;
  font-size: 1.6rem;
  font-weight: bold;
}
@media only screen and (min-width: 769px) {
  .plan-card .plan-body .plan-info .price-info dt {
    font-size: 2.8rem;
  }
}
.plan-card .plan-body .plan-info .price-info dd {
  position: relative;
}
.plan-card .plan-body .plan-info .price-info dd .price-value {
  font-size: 4.6rem;
}
@media only screen and (min-width: 769px) {
  .plan-card .plan-body .plan-info .price-info dd .price-value {
    font-size: 8.4rem;
  }
}
.plan-card .plan-body .plan-info .price-info dd .price-unit {
  font-weight: bold;
  font-size: 2rem;
  transform: translateY(26%);
}
@media only screen and (min-width: 769px) {
  .plan-card .plan-body .plan-info .price-info dd .price-unit {
    font-size: 3.6rem;
  }
}
.plan-card .plan-body .plan-info .price-info dd .price-tax {
  font-weight: normal;
  font-size: 1rem;
  position: absolute;
  bottom: -1rem;
  right: 0;
}
.plan-card .plan-body .plan-info .device-image {
  width: 14rem;
}
@media only screen and (min-width: 769px) {
  .plan-card .plan-body .plan-info .device-image {
    width: 26.8rem;
  }
}
.plan-card .plan-body .plan-specs {
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
}
.plan-card .plan-body .plan-specs .spec-item {
  width: calc((100% - 2rem) / 3);
  height: 12rem;
  background: #f6f6f6;
  border-radius: 0.5rem;
  gap: 0.5rem;
}
@media only screen and (min-width: 769px) {
  .plan-card .plan-body .plan-specs .spec-item {
    width: calc((100% - 5rem) / 6);
    height: 16rem;
  }
}
.plan-card .plan-body .plan-specs .spec-item .spec-icon {
  height: 5.5rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 769px) {
  .plan-card .plan-body .plan-specs .spec-item .spec-icon {
    height: 6.2rem;
  }
}
.plan-card .plan-body .plan-specs .spec-item .spec-icon img.device {
  width: 5.3rem;
}
@media only screen and (min-width: 769px) {
  .plan-card .plan-body .plan-specs .spec-item .spec-icon img.device {
    width: 7rem;
  }
}
.plan-card .plan-body .plan-specs .spec-item .spec-icon img.speed {
  width: 4.5rem;
}
@media only screen and (min-width: 769px) {
  .plan-card .plan-body .plan-specs .spec-item .spec-icon img.speed {
    width: 6rem;
  }
}
.plan-card .plan-body .plan-specs .spec-item .spec-icon img.speed_down {
  width: 4.5rem;
  transform: rotate(180deg);
}
@media only screen and (min-width: 769px) {
  .plan-card .plan-body .plan-specs .spec-item .spec-icon img.speed_down {
    width: 6rem;
  }
}
.plan-card .plan-body .plan-specs .spec-item .spec-icon img.earth {
  width: 4.5rem;
}
@media only screen and (min-width: 769px) {
  .plan-card .plan-body .plan-specs .spec-item .spec-icon img.earth {
    width: 5.5rem;
  }
}
.plan-card .plan-body .plan-specs .spec-item .spec-icon img.weight {
  width: 5.3rem;
}
@media only screen and (min-width: 769px) {
  .plan-card .plan-body .plan-specs .spec-item .spec-icon img.weight {
    width: 6rem;
  }
}
.plan-card .plan-body .plan-specs .spec-item .spec-icon img.clock {
  width: 5.3rem;
}
@media only screen and (min-width: 769px) {
  .plan-card .plan-body .plan-specs .spec-item .spec-icon img.clock {
    width: 6rem;
  }
}
.plan-card .plan-body .plan-specs .spec-item .spec-icon img.data {
  width: 4rem;
}
.plan-card .plan-body .plan-specs .spec-item .spec-text {
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.4;
}
@media only screen and (min-width: 769px) {
  .plan-card .plan-body .plan-specs .spec-item .spec-text {
    font-size: 2rem;
  }
}
.plan-card .plan-body .plan-specs .spec-item .spec-text .big {
  font-size: 1.5rem;
}
@media only screen and (min-width: 769px) {
  .plan-card .plan-body .plan-specs .spec-item .spec-text .big {
    font-size: 2.6rem;
  }
}
.plan-card .plan-body .note {
  margin-top: 2rem;
}
.plan-card .plan-body .accordion_wrap {
  margin-top: 2rem;
}
@media only screen and (min-width: 769px) {
  .plan-card .plan-body .accordion_wrap {
    margin-top: 3rem;
  }
}
.plan-card .plan-body .accordion_wrap .accordion_box {
  padding: 0;
}

#options {
  padding-bottom: 3rem;
}
@media only screen and (min-width: 769px) {
  #options {
    padding-bottom: 4rem;
  }
}
#options .options-header h2 {
  text-align: center;
  font-weight: bold;
  font-size: 2.2rem;
}
@media only screen and (min-width: 769px) {
  #options .options-header h2 {
    font-size: 4.4rem;
  }
}
#options .options-list {
  margin-top: 3rem;
}
@media only screen and (min-width: 769px) {
  #options .options-list {
    margin-top: 4rem;
    gap: 4rem;
    align-items: flex-start;
  }
}
#options .options-list .option-card {
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.08);
}
@media only screen and (min-width: 769px) {
  #options .options-list .option-card {
    width: calc((100% - 4rem) / 2);
  }
}
#options .options-list .option-card + .option-card {
  margin-top: 2rem;
}
@media only screen and (min-width: 769px) {
  #options .options-list .option-card + .option-card {
    margin-top: 0;
  }
}
#options .options-list .option-card .option-header {
  background: #fdebeb;
  border-radius: 1rem 1rem 0 0;
  padding: 1.5rem 0;
  position: relative;
}
@media only screen and (min-width: 769px) {
  #options .options-list .option-card .option-header {
    padding: 2.5rem 0;
  }
}
#options .options-list .option-card .option-header::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -0.9rem;
  border: 0.9rem solid transparent;
  border-top: 0.9rem solid #fdebeb;
}
#options .options-list .option-card .option-header h3 {
  font-weight: bold;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
@media only screen and (min-width: 769px) {
  #options .options-list .option-card .option-header h3 {
    font-size: 2.8rem;
  }
}
#options .options-list .option-card .option-header h3 .option-catch {
  font-size: 1.2rem;
}
@media only screen and (min-width: 769px) {
  #options .options-list .option-card .option-header h3 .option-catch {
    font-size: 2rem;
  }
}
#options .options-list .option-card .option-body {
  padding: 2rem;
}
#options .options-list .option-card .option-body .option-pricing {
  gap: 3rem;
}
#options .options-list .option-card .option-body .option-pricing .price-info dt {
  text-align: center;
  width: 1.28em;
  line-height: 1.28;
  font-size: 1.6rem;
  font-weight: bold;
}
@media only screen and (min-width: 769px) {
  #options .options-list .option-card .option-body .option-pricing .price-info dt {
    font-size: 2.8rem;
  }
}
#options .options-list .option-card .option-body .option-pricing .price-info dd {
  position: relative;
}
#options .options-list .option-card .option-body .option-pricing .price-info dd .price-value {
  font-size: 4.6rem;
}
@media only screen and (min-width: 769px) {
  #options .options-list .option-card .option-body .option-pricing .price-info dd .price-value {
    font-size: 8.4rem;
  }
}
#options .options-list .option-card .option-body .option-pricing .price-info dd .price-unit {
  font-weight: bold;
  font-size: 2rem;
  transform: translateY(26%);
}
@media only screen and (min-width: 769px) {
  #options .options-list .option-card .option-body .option-pricing .price-info dd .price-unit {
    font-size: 3.6rem;
  }
}
#options .options-list .option-card .option-body .option-pricing .price-info dd .price-tax {
  font-weight: normal;
  font-size: 1rem;
  position: absolute;
  bottom: -1rem;
  right: 0;
}
#options .options-list .option-card .option-body .option-pricing .option-icon {
  width: 9.2rem;
}
@media only screen and (min-width: 769px) {
  #options .options-list .option-card .option-body .option-pricing .option-icon {
    height: 11rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
#options .options-list .option-card .option-body .option-pricing .option-icon.anshin {
  width: 6rem;
}
#options .options-list .option-card .option-body .accordion_wrap {
  margin-top: 2rem;
}
#options .options-list .option-card .option-body .accordion_wrap .accordion_box {
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: justify;
  border: solid 0.1rem #333;
}
@media only screen and (min-width: 769px) {
  #options .options-list .option-card .option-body .accordion_wrap .accordion_box {
    padding: 2rem;
  }
}
#options .options-list .option-card .option-body .accordion_wrap .accordion_box .details-list li {
  text-indent: -1em;
  padding-left: 1em;
}
#options .options-list .option-card .option-body .accordion_wrap .accordion_box .comparison-table {
  margin-top: 1rem;
}
#options .options-list .option-card .option-body .accordion_wrap .accordion_box .comparison-table h4 {
  background: #E42019;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 1.4rem;
  width: 100%;
  height: 3.5rem;
  line-height: 3.5rem;
}
#options .options-list .option-card .option-body .accordion_wrap .accordion_box .comparison-table table {
  width: 100%;
}
#options .options-list .option-card .option-body .accordion_wrap .accordion_box .comparison-table table th, #options .options-list .option-card .option-body .accordion_wrap .accordion_box .comparison-table table td {
  border: 0.1rem solid #ccc;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
}
@media only screen and (min-width: 769px) {
  #options .options-list .option-card .option-body .accordion_wrap .accordion_box .comparison-table table th, #options .options-list .option-card .option-body .accordion_wrap .accordion_box .comparison-table table td {
    font-size: 1.2rem;
  }
}
#options .options-list .option-card .option-body .accordion_wrap .accordion_box .comparison-table table thead tr th {
  background: #f6f6f6;
  font-weight: bold;
  width: 33.3333333333%;
  height: 2.5rem;
}
#options .options-list .option-card .option-body .accordion_wrap .accordion_box .comparison-table table tbody tr td {
  height: 5rem;
  line-height: 1.3;
}
#options .options-list .option-card .option-body .accordion_wrap .accordion_box .comparison-table table tbody tr td .font-en {
  font-size: 2rem;
}
@media only screen and (min-width: 769px) {
  #options .options-list .option-card .option-body .accordion_wrap .accordion_box .comparison-table table tbody tr td .font-en {
    font-size: 2.4rem;
  }
}
#options .options-benefit {
  margin-top: 3rem;
  background: #fff;
  padding: 2rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
}
@media only screen and (min-width: 769px) {
  #options .options-benefit {
    margin-top: 4rem;
    padding: 4rem 6rem;
  }
}
#options .options-benefit .benefit-intro {
  background: #E42019;
  text-align: center;
  color: #fff;
  font-weight: bold;
  padding: 0.5rem 1.5rem;
  transform: skewX(-13deg);
}
@media only screen and (min-width: 769px) {
  #options .options-benefit .benefit-intro {
    padding: 1rem;
  }
}
#options .options-benefit .benefit-intro p {
  transform: skewX(13deg);
  font-size: 1.8rem;
}
@media only screen and (min-width: 769px) {
  #options .options-benefit .benefit-intro p {
    font-size: 3.2rem;
  }
}
#options .options-benefit .benefit-intro p .font-en {
  font-size: 2.4rem;
}
@media only screen and (min-width: 769px) {
  #options .options-benefit .benefit-intro p .font-en {
    font-size: 4rem;
  }
}
#options .options-benefit .benefit-options {
  margin-top: 2rem;
  gap: 1rem;
}
@media only screen and (min-width: 769px) {
  #options .options-benefit .benefit-options {
    gap: 4rem;
    margin-top: 3rem;
  }
}
#options .options-benefit .benefit-options .benefit-option {
  background: #fff;
  border: 0.1rem solid #E42019;
  box-shadow: 0.3rem 0.3rem 0 #e42019;
  padding: 2rem 1rem;
  text-align: center;
  font-weight: bold;
  width: calc((100% - 1rem) / 2);
  height: 22rem;
}
@media only screen and (min-width: 769px) {
  #options .options-benefit .benefit-options .benefit-option {
    height: auto;
    padding: 3rem;
    box-shadow: 0.5rem 0.5rem 0 #e42019;
    width: calc((100% - 4rem) / 2);
  }
}
#options .options-benefit .benefit-options .benefit-option .option-title {
  text-align: center;
  font-size: 1.2rem;
  height: 4.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 769px) {
  #options .options-benefit .benefit-options .benefit-option .option-title {
    height: auto;
    font-size: 1.8rem;
  }
}
#options .options-benefit .benefit-options .benefit-option .option-name {
  margin-top: 1rem;
  font-size: 1.4rem;
  color: #E42019;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 769px) {
  #options .options-benefit .benefit-options .benefit-option .option-name {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 769px) {
  #options .options-benefit .benefit-options .benefit-option .option-price {
    display: block;
  }
}
#options .options-benefit .benefit-options .benefit-option .price-label, #options .options-benefit .benefit-options .benefit-option .price-unit {
  font-size: 1.2rem;
}
@media only screen and (min-width: 769px) {
  #options .options-benefit .benefit-options .benefit-option .price-label, #options .options-benefit .benefit-options .benefit-option .price-unit {
    font-size: 2rem;
  }
}
#options .options-benefit .benefit-options .benefit-option .price-value {
  font-size: 4rem;
  color: #E42019;
}
@media only screen and (min-width: 769px) {
  #options .options-benefit .benefit-options .benefit-option .price-value {
    font-size: 8.4rem;
  }
}
#options .options-benefit .benefit-options .benefit-option .option-tax {
  font-weight: normal;
  font-size: 1rem;
}
@media only screen and (min-width: 769px) {
  #options .options-benefit .benefit-options .benefit-option .option-tax {
    font-size: 1.2rem;
  }
}
#options .options-benefit .benefit-result {
  margin-top: 5rem;
  text-align: center;
  position: relative;
}
@media only screen and (min-width: 769px) {
  #options .options-benefit .benefit-result {
    margin-top: 6rem;
  }
}
#options .options-benefit .benefit-result::before {
  content: "";
  background: url(../img/top/triangle_3.svg) no-repeat center/contain;
  width: 2rem;
  height: 5.3rem;
  position: absolute;
  left: 50%;
  top: -4.5rem;
  transform: translateX(-50%);
}
#options .options-benefit .benefit-result .benefit-badge {
  color: #E42019;
  font-size: 1.7rem;
  font-weight: bold;
  border: solid 0.1rem #E42019;
  transform: skewX(-13deg);
  padding: 0.8rem 1.5rem;
}
@media only screen and (min-width: 769px) {
  #options .options-benefit .benefit-result .benefit-badge {
    font-size: 3.2rem;
    padding: 1rem;
  }
}
#options .options-benefit .benefit-result .benefit-badge p {
  display: inline-block;
  transform: skewX(13deg);
}
#options .options-benefit .benefit-result .benefit-content {
  margin-top: 2rem;
}
@media only screen and (min-width: 769px) {
  #options .options-benefit .benefit-result .benefit-content {
    margin-top: 3rem;
  }
}
#options .options-benefit .benefit-result .benefit-content .bubble {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
}
@media only screen and (min-width: 769px) {
  #options .options-benefit .benefit-result .benefit-content .bubble {
    font-size: 2rem;
  }
}
#options .options-benefit .benefit-result .benefit-content .bubble::before, #options .options-benefit .benefit-result .benefit-content .bubble::after {
  content: "";
  display: block;
  background: #E42019;
  width: 0.1rem;
  height: 100%;
  position: absolute;
  left: -1rem;
  top: 50%;
  transform: translateY(-50%) rotate(-30deg);
}
#options .options-benefit .benefit-result .benefit-content .bubble::after {
  left: auto;
  right: -1rem;
  transform: translateY(-50%) rotate(30deg);
}
#options .options-benefit .benefit-result .benefit-content .benefit-box {
  background: #fff;
  border: solid 0.1rem #E42019;
  padding: 2rem;
  transform: skewX(-10deg);
  margin-top: 1rem;
  box-shadow: 0.4rem 0.4rem 0 #e42019;
}
@media only screen and (min-width: 769px) {
  #options .options-benefit .benefit-result .benefit-content .benefit-box {
    width: 65%;
    margin: 2rem auto 0;
    padding: 3rem;
  }
}
#options .options-benefit .benefit-result .benefit-content .benefit-box .benefit-box-wrap {
  transform: skewX(10deg);
  font-weight: bold;
  font-size: 1.6rem;
}
@media only screen and (min-width: 769px) {
  #options .options-benefit .benefit-result .benefit-content .benefit-box .benefit-box-wrap {
    font-size: 2.4rem;
  }
}
#options .options-benefit .benefit-result .benefit-content .benefit-box .benefit-box-wrap .benefit-highlight .font-en {
  font-size: 2rem;
}
@media only screen and (min-width: 769px) {
  #options .options-benefit .benefit-result .benefit-content .benefit-box .benefit-box-wrap .benefit-highlight .font-en {
    font-size: 3.2rem;
  }
}
#options .options-benefit .benefit-result .benefit-content .benefit-box .benefit-box-wrap .benefit-price .price-value {
  font-size: 4rem;
}
@media only screen and (min-width: 769px) {
  #options .options-benefit .benefit-result .benefit-content .benefit-box .benefit-box-wrap .benefit-price .price-value {
    font-size: 6rem;
  }
}
#options .options-benefit .benefit-result .benefit-content .benefit-box .benefit-box-wrap .benefit-tax {
  font-weight: normal;
  font-size: 1.2rem;
}
#options .options-benefit .cta_btn {
  margin-top: 2rem;
}
@media only screen and (min-width: 769px) {
  #options .options-benefit .cta_btn {
    margin-top: 3rem;
  }
}
#options .options-benefit .note {
  margin-top: 2rem;
}
#options .options-benefit .note a {
  text-decoration: underline;
}
#options .options-benefit .sim_btn {
  margin-top: 2rem;
}
@media only screen and (min-width: 769px) {
  #options .options-benefit .sim_btn {
    margin-top: 3rem;
  }
}

#abroad {
  padding-top: 0;
}
#abroad .abroad-box {
  border-radius: 1rem;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
}
#abroad .abroad-box .abroad-header {
  background: #fdebeb;
  padding: 2rem 0;
  border-radius: 1rem 1rem 0 0;
  position: relative;
}
#abroad .abroad-box .abroad-header::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -0.9rem;
  border: 0.9rem solid transparent;
  border-top: 0.9rem solid #fdebeb;
}
#abroad .abroad-box .abroad-header h2 {
  font-weight: bold;
  text-align: center;
  font-size: 2rem;
}
#abroad .abroad-box .abroad-body {
  padding: 2rem;
}
@media only screen and (min-width: 769px) {
  #abroad .abroad-box .abroad-body {
    padding: 3rem 6rem 4rem;
  }
}
@media only screen and (min-width: 769px) {
  #abroad .abroad-box .abroad-body .pc_flex {
    gap: 5rem;
  }
}
@media only screen and (min-width: 769px) {
  #abroad .abroad-box .abroad-body .pc_flex .abroad-plans {
    width: 50%;
  }
}
#abroad .abroad-box .abroad-body .pc_flex .abroad-plans .abroad-plan + .abroad-plan {
  margin-top: 2rem;
}
@media only screen and (min-width: 769px) {
  #abroad .abroad-box .abroad-body .pc_flex .abroad-plans .abroad-plan + .abroad-plan {
    margin-top: 3rem;
  }
}
#abroad .abroad-box .abroad-body .pc_flex .abroad-plans .abroad-plan .plan-header {
  width: 60%;
}
#abroad .abroad-box .abroad-body .pc_flex .abroad-plans .abroad-plan .plan-header h3 {
  font-size: 2.2rem;
  font-weight: bold;
}
@media only screen and (min-width: 769px) {
  #abroad .abroad-box .abroad-body .pc_flex .abroad-plans .abroad-plan .plan-header h3 {
    font-size: 3rem;
  }
}
#abroad .abroad-box .abroad-body .pc_flex .abroad-plans .abroad-plan .plan-header .plan-area {
  margin-top: 0.8rem;
  font-size: 1.2rem;
  line-height: 1.3;
}
@media only screen and (min-width: 769px) {
  #abroad .abroad-box .abroad-body .pc_flex .abroad-plans .abroad-plan .plan-header .plan-area {
    font-size: 1.4rem;
  }
}
#abroad .abroad-box .abroad-body .pc_flex .abroad-plans .abroad-plan .plan-pricing .data-amount {
  background: #ddd;
  font-size: 1rem;
  text-align: center;
  border-radius: 0.3rem;
  margin-bottom: 0.5rem;
  padding: 0.3rem;
}
@media only screen and (min-width: 769px) {
  #abroad .abroad-box .abroad-body .pc_flex .abroad-plans .abroad-plan .plan-pricing .data-amount {
    font-size: 1.4rem;
  }
}
#abroad .abroad-box .abroad-body .pc_flex .abroad-plans .abroad-plan .plan-pricing .price-info {
  position: relative;
}
#abroad .abroad-box .abroad-body .pc_flex .abroad-plans .abroad-plan .plan-pricing .price-info .price-value {
  font-size: 4.6rem;
  line-height: 1;
}
@media only screen and (min-width: 769px) {
  #abroad .abroad-box .abroad-body .pc_flex .abroad-plans .abroad-plan .plan-pricing .price-info .price-value {
    font-size: 6.2rem;
  }
}
#abroad .abroad-box .abroad-body .pc_flex .abroad-plans .abroad-plan .plan-pricing .price-info .price-unit {
  font-weight: bold;
  font-size: 1.8rem;
}
@media only screen and (min-width: 769px) {
  #abroad .abroad-box .abroad-body .pc_flex .abroad-plans .abroad-plan .plan-pricing .price-info .price-unit {
    font-size: 2.8rem;
  }
}
#abroad .abroad-box .abroad-body .pc_flex .abroad-plans .abroad-plan .plan-pricing .price-info .price-note {
  font-weight: normal;
  font-size: 1rem;
  position: absolute;
  right: 0;
  bottom: -1rem;
}
@media only screen and (min-width: 769px) {
  #abroad .abroad-box .abroad-body .pc_flex .abroad-plans .abroad-plan .plan-pricing .price-info .price-note {
    bottom: -1.5rem;
  }
}
#abroad .abroad-box .abroad-body .pc_flex .abroad-features {
  margin-top: 3rem;
}
@media only screen and (min-width: 769px) {
  #abroad .abroad-box .abroad-body .pc_flex .abroad-features {
    width: 50%;
    margin-top: 0;
  }
}
#abroad .abroad-box .abroad-body .pc_flex .abroad-features .feature-list {
  flex-wrap: wrap;
  gap: 1rem;
}
#abroad .abroad-box .abroad-body .pc_flex .abroad-features .feature-list .feature-item {
  width: calc((100% - 2rem) / 3);
  background: #f6f6f6;
  height: 12rem;
  border-radius: 0.3rem;
  padding: 1.2rem 1rem;
}
@media only screen and (min-width: 769px) {
  #abroad .abroad-box .abroad-body .pc_flex .abroad-features .feature-list .feature-item {
    height: 14rem;
  }
}
#abroad .abroad-box .abroad-body .pc_flex .abroad-features .feature-list .feature-item .feature-icon {
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 769px) {
  #abroad .abroad-box .abroad-body .pc_flex .abroad-features .feature-list .feature-item .feature-icon {
    height: 6rem;
  }
}
#abroad .abroad-box .abroad-body .pc_flex .abroad-features .feature-list .feature-item .feature-icon img.sim {
  width: 3.5rem;
}
@media only screen and (min-width: 769px) {
  #abroad .abroad-box .abroad-body .pc_flex .abroad-features .feature-list .feature-item .feature-icon img.sim {
    width: 4.3rem;
  }
}
#abroad .abroad-box .abroad-body .pc_flex .abroad-features .feature-list .feature-item .feature-icon img.earth {
  width: 4rem;
}
@media only screen and (min-width: 769px) {
  #abroad .abroad-box .abroad-body .pc_flex .abroad-features .feature-list .feature-item .feature-icon img.earth {
    width: 5.5rem;
  }
}
#abroad .abroad-box .abroad-body .pc_flex .abroad-features .feature-list .feature-item .feature-icon img.wifi {
  width: 5rem;
}
@media only screen and (min-width: 769px) {
  #abroad .abroad-box .abroad-body .pc_flex .abroad-features .feature-list .feature-item .feature-icon img.wifi {
    width: 5.8rem;
  }
}
#abroad .abroad-box .abroad-body .pc_flex .abroad-features .feature-list .feature-item .feature-text {
  text-align: center;
  line-height: 1.3;
  margin-top: 0.4rem;
  font-size: 1.1rem;
}
@media only screen and (min-width: 769px) {
  #abroad .abroad-box .abroad-body .pc_flex .abroad-features .feature-list .feature-item .feature-text {
    margin-top: 0.6rem;
    font-size: 1.4rem;
  }
}
#abroad .abroad-box .abroad-body .pc_flex .abroad-features .feature-list .feature-item .feature-text .red {
  font-weight: bold;
}
#abroad .abroad-box .abroad-body .pc_flex .abroad-features .feature-link {
  margin-top: 2rem;
}
#abroad .abroad-box .abroad-body .pc_flex .abroad-features .feature-link .btn-link {
  height: 6rem;
  width: 100%;
  background: #fff;
  border: solid 0.2rem #E42019;
  color: #E42019;
  font-weight: bold;
  font-size: 1.5rem;
  border-radius: 999px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
#abroad .abroad-box .abroad-body .pc_flex .abroad-features .feature-link .btn-link::before {
  content: "";
  background: url(../img/top/icon_arrow_red.svg) no-repeat center/contain;
  width: 2rem;
  height: 2rem;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}
#abroad .abroad-box .abroad-body .pc_flex .abroad-features .feature-link .btn-link:hover {
  color: #fff;
  background: #E42019;
}
#abroad .abroad-box .abroad-body .accordion_wrap {
  margin-top: 2rem;
}
@media only screen and (min-width: 769px) {
  #abroad .abroad-box .abroad-body .accordion_wrap {
    margin-top: 3rem;
  }
}
#abroad .abroad-box .abroad-body .accordion_wrap .accordion_box {
  border: solid 0.1rem #333;
}
#abroad .abroad-box .abroad-body .accordion_wrap .accordion_box .body_text {
  font-size: 1.2rem;
}
#abroad .abroad-box .abroad-body .accordion_wrap .accordion_box .note {
  margin-top: 1rem;
}
#abroad .related-service {
  margin-top: 3rem;
  text-align: center;
}
@media only screen and (min-width: 769px) {
  #abroad .related-service {
    margin-top: 4rem;
  }
}
#abroad .related-service .service-intro {
  font-size: 1.6rem;
  line-height: 1.3;
  display: inline-block;
  font-weight: bold;
  position: relative;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 769px) {
  #abroad .related-service .service-intro {
    font-size: 2.4rem;
  }
}
#abroad .related-service .service-intro::before, #abroad .related-service .service-intro::after {
  content: "";
  display: block;
  background: #333;
  width: 0.1rem;
  height: 100%;
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%) rotate(-30deg);
}
#abroad .related-service .service-intro::after {
  left: auto;
  right: -2rem;
  transform: translateY(-50%) rotate(30deg);
}

#reviews {
  background: #f8f8f8;
}
@media only screen and (min-width: 769px) {
  #reviews {
    padding-bottom: 10rem;
  }
}
#reviews .reviews-header h2 {
  text-align: center;
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 1.3;
}
@media only screen and (min-width: 769px) {
  #reviews .reviews-header h2 {
    font-size: 4rem;
  }
}
#reviews .reviews-header h2 img {
  width: 12.8rem;
}
@media only screen and (min-width: 769px) {
  #reviews .reviews-header h2 img {
    width: 24rem;
    transform: translateY(-16%);
  }
}
#reviews .reviews-list {
  margin-top: 3rem;
}
@media only screen and (min-width: 769px) {
  #reviews .reviews-list {
    margin-top: 4rem;
    flex-wrap: wrap;
    gap: 3rem;
  }
}
#reviews .reviews-list .review-card {
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  padding: 2rem 2rem 2rem 6rem;
  position: relative;
}
@media only screen and (min-width: 769px) {
  #reviews .reviews-list .review-card {
    width: calc((100% - 3rem) / 2);
    padding: 3rem 3rem 3rem 8rem;
  }
}
#reviews .reviews-list .review-card + .review-card {
  margin-top: 2rem;
}
@media only screen and (min-width: 769px) {
  #reviews .reviews-list .review-card + .review-card {
    margin-top: 0;
  }
}
#reviews .reviews-list .review-card .review-header h3 {
  font-weight: bold;
  color: #E42019;
  font-size: 1.6rem;
}
@media only screen and (min-width: 769px) {
  #reviews .reviews-list .review-card .review-header h3 {
    font-size: 2rem;
  }
}
#reviews .reviews-list .review-card .review-header .review-author {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}
@media only screen and (min-width: 769px) {
  #reviews .reviews-list .review-card .review-header .review-author {
    font-size: 1.4rem;
  }
}
#reviews .reviews-list .review-card .body_text {
  margin-top: 1rem;
  font-size: 1.2rem;
}
@media only screen and (min-width: 769px) {
  #reviews .reviews-list .review-card .body_text {
    font-size: 1.4rem;
  }
}
#reviews .reviews-list .review-card .review-image {
  position: absolute;
  width: 6.5rem;
  height: 15.8rem;
  left: -1.5rem;
  top: 1rem;
}
@media only screen and (min-width: 769px) {
  #reviews .reviews-list .review-card .review-image {
    width: 9rem;
    height: 22rem;
    left: -2rem;
    top: -2rem;
  }
}
#reviews .reviews-list .review-card:nth-child(2) {
  padding: 2rem 6rem 2rem 2rem;
}
@media only screen and (min-width: 769px) {
  #reviews .reviews-list .review-card:nth-child(2) {
    padding: 3rem 8rem 3rem 3rem;
  }
}
#reviews .reviews-list .review-card:nth-child(2) .review-image {
  position: absolute;
  width: 9.4rem;
  height: 11.4rem;
  left: auto;
  right: -3rem;
  top: 3rem;
}
@media only screen and (min-width: 769px) {
  #reviews .reviews-list .review-card:nth-child(2) .review-image {
    width: 12.8rem;
    height: 18.2rem;
    right: -4rem;
    top: 1rem;
  }
}
#reviews .reviews-list .review-card:nth-child(3) .review-image {
  position: absolute;
  width: 5.3rem;
  height: 16.4rem;
  left: -2rem;
  top: -1rem;
}
@media only screen and (min-width: 769px) {
  #reviews .reviews-list .review-card:nth-child(3) .review-image {
    width: 7.5rem;
    height: 23.3rem;
    left: -2rem;
    top: 0;
  }
}
#reviews .reviews-list .review-card:nth-child(4) {
  padding: 2rem 6rem 2rem 2rem;
}
@media only screen and (min-width: 769px) {
  #reviews .reviews-list .review-card:nth-child(4) {
    padding: 3rem 8rem 3rem 3rem;
    height: 19rem;
  }
}
#reviews .reviews-list .review-card:nth-child(4) .review-image {
  position: absolute;
  width: 6.9rem;
  height: 17.4rem;
  left: auto;
  right: -0.5rem;
  top: -2rem;
}
@media only screen and (min-width: 769px) {
  #reviews .reviews-list .review-card:nth-child(4) .review-image {
    width: 9.7rem;
    height: 24.6rem;
    right: -2rem;
    top: -2rem;
  }
}

#trial {
  position: relative;
  overflow: visible;
  z-index: 2;
  text-align: center;
}
@media only screen and (min-width: 769px) {
  #trial {
    padding: 10rem 22rem 8rem;
  }
}
#trial::before, #trial::after {
  content: "";
  display: block;
  background: #dad9d9;
  width: 100%;
  height: 98%;
  position: absolute;
  top: 0rem;
  left: 0;
  transform: skewY(8deg);
  z-index: -1;
}
@media only screen and (min-width: 769px) {
  #trial::before, #trial::after {
    transform: skewY(5.5deg);
    height: 97%;
  }
}
#trial::after {
  background: #E42019;
  transform: skewY(-8deg);
}
@media only screen and (min-width: 769px) {
  #trial::after {
    transform: skewY(-5.5deg);
  }
}

#faq h2 {
  font-weight: bold;
  text-align: center;
  font-size: 3rem;
}
@media only screen and (min-width: 769px) {
  #faq h2 {
    font-size: 4rem;
  }
}
#faq .faq-item + .faq-item {
  margin-top: 1rem;
}
@media only screen and (min-width: 769px) {
  #faq .faq-item + .faq-item {
    margin-top: 1.5rem;
  }
}
#faq .faq-item:first-child {
  margin-top: 3rem;
}
@media only screen and (min-width: 769px) {
  #faq .faq-item:first-child {
    margin-top: 4rem;
  }
}
#faq .faq-item dt .accordion_wrap .accordion_title {
  background: #E42019;
  color: #fff;
  justify-content: flex-start;
  text-align: left;
  line-height: 1.4;
  font-size: 1.4rem;
  height: auto;
  padding: 1.8rem 3.5rem;
}
#faq .faq-item dt .accordion_wrap .accordion_title::before {
  content: "Q.";
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 2rem;
  line-height: 1;
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
#faq .faq-item dt .accordion_wrap .accordion_box {
  border: solid 0.1rem #E42019;
}
#faq .faq-item dt .accordion_wrap .accordion_box p {
  font-size: 1.2rem;
  line-height: 1.8rem;
  text-align: justify;
  font-weight: normal;
}
#faq .faq-more {
  margin-top: 2rem;
  text-align: right;
}
#faq .faq-more a {
  display: block;
  font-size: 1.4rem;
  padding-right: 2.5rem;
  position: relative;
  transition: all 0.3s ease-in-out;
}
#faq .faq-more a::before {
  content: "";
  background: url(../img/top/icon_arrow_1.svg) no-repeat center/contain;
  width: 2rem;
  height: 2rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
#faq .faq-more a:hover::before {
  transform: translateY(-50%) translateX(1rem);
}
#faq .support-center {
  margin-top: 2rem;
  background: #eee;
  border: solid 0.3rem #ccc;
  padding: 1rem 2rem;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media only screen and (min-width: 769px) {
  #faq .support-center {
    width: 50%;
    margin: 3rem auto 0;
  }
}

#topics {
  background: #f8f8f8;
}
#topics h2 {
  font-weight: bold;
  text-align: center;
  font-size: 3rem;
}
@media only screen and (min-width: 769px) {
  #topics h2 {
    font-size: 4rem;
  }
}
#topics .topics-list-wrap {
  padding: 2rem;
  background: #fff;
  border: solid 0.2rem #E42019;
  margin-top: 2rem;
  height: 20rem;
  overflow-y: scroll;
}
@media only screen and (min-width: 769px) {
  #topics .topics-list-wrap {
    padding: 3rem 4rem;
    height: 30rem;
    margin-top: 4rem;
  }
}
#topics .topics-list-wrap .topics-item + .topics-item {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: solid 0.1rem #ccc;
}
#topics .topics-list-wrap .topics-item p {
  font-size: 1.2rem;
  line-height: 1.6;
}
#topics .topics-list-wrap .topics-item p a {
  text-decoration: underline;
}

@media only screen and (min-width: 769px) {
  .to-top {
    position: fixed;
    right: 5rem;
    bottom: 8rem;
    z-index: 9999;
  }
  .to-top a {
    width: 10rem;
    height: 10rem;
    border-radius: 999px;
    border: solid 0.3rem #E42019;
    background: #fff;
  }
  .to-top a img {
    width: 2.5rem;
    margin-bottom: 0.5rem;
    transform: rotate(-90deg);
  }
  .to-top a p {
    color: #E42019;
    font-weight: bold;
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.3;
  }
}

body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
body.modal-open .fwh-sec10_pagetop {
  display: none;
}

.price-simulation-btn {
  display: block;
  background: #333;
  color: #f6f6f6;
  width: 100%;
  height: 4rem;
  line-height: 4rem;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  border-radius: 999px;
  box-shadow: 0rem 0.6rem 0.7rem rgba(51, 51, 51, 0.1);
  margin-top: 2rem;
  cursor: pointer;
  position: relative;
}
@media only screen and (min-width: 769px) {
  .price-simulation-btn {
    margin: 0 auto;
    margin-top: 1.8rem;
    width: 50rem;
    height: 7rem;
    line-height: 7rem;
    font-size: 2.4rem;
    box-shadow: 0rem 0.6rem 0.7rem rgba(51, 51, 51, 0.1);
  }
}
.price-simulation-btn::before {
  content: "";
  background: url(/assets/img/top/icon_arrow_2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 1.5rem;
  height: 1.5rem;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 1rem;
}
@media only screen and (min-width: 769px) {
  .price-simulation-btn::before {
    width: 2.8rem;
    height: 2.8rem;
    right: 2rem;
  }
}

.fwh-sec07_inwrap .price-simulation-btn {
  margin-top: -2rem;
}

.popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.price-simulation-wrapper {
  max-height: 100%;
  width: 100%;
  overflow: auto;
  padding: 4rem 3rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}
@media only screen and (min-width: 769px) {
  .price-simulation-wrapper {
    padding: 6rem 14rem;
  }
}
.price-simulation-wrapper .close-button {
  display: block;
  text-align: center;
  position: absolute;
  top: 2.5rem;
  right: 1.5rem;
  width: 4rem;
  height: 4rem;
  background: #fff;
  cursor: pointer;
  font-size: 2.4rem;
  line-height: 4rem;
  border-radius: 99px;
  z-index: 1001;
}
@media only screen and (min-width: 769px) {
  .price-simulation-wrapper .close-button {
    top: 4rem;
    right: 12rem;
    width: 6rem;
    height: 6rem;
    font-size: 3rem;
    line-height: 6rem;
  }
}
.price-simulation-wrapper .close-button:hover {
  background-color: #f1f1f1;
}

.price-simulation {
  width: 33rem;
  background: #f6f6f6;
  padding: 0 0rem 4rem;
  overflow-y: auto;
  max-height: 2000px;
}
@media only screen and (min-width: 769px) {
  .price-simulation {
    width: 100%;
    padding: 0rem 0rem 7rem;
  }
}
.price-simulation--ttl {
  color: #fff;
  background: #E42019;
  padding: 1rem 0;
  text-align: center;
  line-height: 1.2;
  font-weight: bold;
  font-size: 1.8rem;
  position: relative;
}
@media only screen and (min-width: 769px) {
  .price-simulation--ttl {
    padding: 2rem;
    font-size: 2.4rem;
  }
}
.price-simulation .selection {
  padding: 0 2rem;
  margin-top: 2rem;
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .price-simulation .selection {
    margin-top: 4rem;
    padding: 0 18rem;
  }
}
.price-simulation .selection .selection-ttl {
  font-size: 1.8rem;
  font-weight: bold;
}
@media only screen and (min-width: 769px) {
  .price-simulation .selection .selection-ttl {
    font-size: 2.4rem;
  }
}
.price-simulation .selection .selection-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
@media only screen and (min-width: 769px) {
  .price-simulation .selection .selection-btn-wrap {
    margin-top: 2rem;
    gap: 3rem;
    flex-direction: row;
  }
}
.price-simulation .selection .selection-btn-wrap .plan-option {
  width: 100%;
  height: 13rem;
  background: #F6F6F6;
  border: #E0E0E0 solid 0.2rem;
  color: #888888;
  border-radius: 0.8rem;
  position: relative;
}
@media only screen and (min-width: 769px) {
  .price-simulation .selection .selection-btn-wrap .plan-option {
    width: calc((100% - 6rem) / 3);
    height: 21.5rem;
  }
}
.price-simulation .selection .selection-btn-wrap .plan-option.selected {
  background: #FAECEC;
  border: #E42019 solid 0.2rem;
  color: #333;
}
.price-simulation .selection .selection-btn-wrap .plan-option .radio {
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  accent-color: #E42019;
  width: 1.6rem;
  height: 1.6rem;
}
@media only screen and (min-width: 769px) {
  .price-simulation .selection .selection-btn-wrap .plan-option .radio {
    left: 1.3rem;
    top: 1rem;
  }
}
.price-simulation .selection .selection-btn-wrap .plan-option label {
  display: block;
  width: 100%;
  height: 13rem;
  cursor: pointer;
}
@media only screen and (min-width: 769px) {
  .price-simulation .selection .selection-btn-wrap .plan-option label {
    height: 21.5rem;
  }
}
.price-simulation .selection .selection-btn-wrap .plan-option .sub {
  font-size: 1.2rem;
  margin-top: 2rem;
}
@media only screen and (min-width: 769px) {
  .price-simulation .selection .selection-btn-wrap .plan-option .sub {
    margin-top: 3.5rem;
  }
}
.price-simulation .selection .selection-btn-wrap .plan-option .flex-wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media only screen and (min-width: 769px) {
  .price-simulation .selection .selection-btn-wrap .plan-option .flex-wrap {
    flex-direction: column;
  }
}
.price-simulation .selection .selection-btn-wrap .plan-option .flex-wrap .device-img {
  width: 10rem;
  padding-top: 1rem;
}
.price-simulation .selection .selection-btn-wrap .plan-option .device {
  font-weight: bold;
  font-size: 1.4rem;
}
.price-simulation .selection .selection-btn-wrap .plan-option .device .gb {
  font-weight: normal;
  font-size: 1rem;
}
.price-simulation .selection .selection-btn-wrap .plan-option .price {
  font-size: 1.3rem;
  margin-top: 0.5rem;
}
.price-simulation .selection .selection-btn-wrap .plan-option .price .font-en {
  font-size: 2.8rem;
  color: #E42019;
  line-height: 1.2;
}
.price-simulation .selection .selection-btn-wrap .plan-option .price .tax {
  font-size: 1rem;
}
.price-simulation .selection.selection-option {
  margin-top: 2rem;
}
@media only screen and (min-width: 769px) {
  .price-simulation .selection.selection-option {
    margin-top: 4rem;
  }
}
.price-simulation .selection.selection-option .selection-btn-wrap {
  flex-direction: row;
  gap: 1.8rem;
}
@media only screen and (min-width: 769px) {
  .price-simulation .selection.selection-option .selection-btn-wrap {
    gap: 3rem;
  }
}
.price-simulation .selection.selection-option .selection-btn-wrap .plan-option {
  width: 13.7rem;
  height: 20rem;
  background: #F6F6F6;
  border: #E0E0E0 solid 0.2rem;
  color: #888888;
  border-radius: 0.8rem;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 769px) {
  .price-simulation .selection.selection-option .selection-btn-wrap .plan-option {
    flex-direction: row;
    width: calc((100% - 3rem) / 2);
    height: 14rem;
    gap: 1rem;
  }
}
.price-simulation .selection.selection-option .selection-btn-wrap .plan-option.selected {
  background: #FAECEC;
  border: #E42019 solid 0.2rem;
  color: #333;
}
.price-simulation .selection.selection-option .selection-btn-wrap .plan-option.selected .option-img {
  position: relative;
}
.price-simulation .selection.selection-option .selection-btn-wrap .plan-option.selected .option-img::before {
  content: "";
  background: url(/assets/img/top/option-01-red.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 6rem;
  height: 6.274rem;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
}
.price-simulation .selection.selection-option .selection-btn-wrap .plan-option.selected .option-img.option-img-option2 {
  position: relative;
}
.price-simulation .selection.selection-option .selection-btn-wrap .plan-option.selected .option-img.option-img-option2::before {
  content: "";
  background: url(/assets/img/top/option-02-red.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 5.5rem;
  height: 5.135rem;
  position: absolute;
  left: 0;
  top: 0;
}
.price-simulation .selection.selection-option .selection-btn-wrap .plan-option .option-checkbox {
  width: 2rem;
  height: 2rem;
  accent-color: #E42019;
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  z-index: -1;
}
.price-simulation .selection.selection-option .selection-btn-wrap .plan-option .option-img {
  width: 6rem;
}
@media only screen and (min-width: 769px) {
  .price-simulation .selection.selection-option .selection-btn-wrap .plan-option .option-img {
    margin: 0;
  }
}
.price-simulation .selection.selection-option .selection-btn-wrap .plan-option .option-img.option-img-option2 {
  width: 5.5rem;
}
@media only screen and (min-width: 769px) {
  .price-simulation .selection.selection-option .selection-btn-wrap .plan-option .option-img.option-img-option2 {
    margin-top: 0;
  }
}
.price-simulation .arrow {
  margin: 0 auto;
  width: 2rem;
}
.price-simulation .result {
  margin: 1rem 2rem 0;
  padding: 2rem 1rem;
  text-align: center;
  background: #fff;
}
@media only screen and (min-width: 769px) {
  .price-simulation .result {
    margin: 1rem 18rem 0;
    padding: 3rem 10rem;
  }
}
.price-simulation .result .result-ttl {
  font-size: 1.8rem;
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .price-simulation .result .result-ttl {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 769px) {
  .price-simulation .result .monthly-price {
    margin-top: 1rem;
  }
}
.price-simulation .result .monthly-price dl {
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-bottom: #E0E0E0 0.1rem solid;
  padding: 0 1rem;
  color: #888;
}
@media only screen and (min-width: 769px) {
  .price-simulation .result .monthly-price dl {
    padding: 0 2rem;
  }
}
.price-simulation .result .monthly-price dl.monthly-price-total {
  border-bottom: #E0E0E0 0.2rem solid;
  color: #333;
}
.price-simulation .result .monthly-price dl.monthly-price-total dt {
  font-size: 1.6rem;
}
@media only screen and (min-width: 769px) {
  .price-simulation .result .monthly-price dl.monthly-price-total dt {
    font-size: 2rem;
  }
}
.price-simulation .result .monthly-price dl dt {
  width: 50%;
  font-size: 1.4rem;
}
@media only screen and (min-width: 769px) {
  .price-simulation .result .monthly-price dl dt {
    font-size: 1.6rem;
  }
}
.price-simulation .result .monthly-price dl dd {
  width: 50%;
  text-align: right;
  font-size: 1.4rem;
}
@media only screen and (min-width: 769px) {
  .price-simulation .result .monthly-price dl dd {
    font-size: 1.6rem;
  }
}
.price-simulation .result .monthly-price dl dd .total {
  font-size: 3.2rem;
  color: #E42019;
}
@media only screen and (min-width: 769px) {
  .price-simulation .result .monthly-price dl dd .total {
    font-size: 3.6rem;
  }
}
.price-simulation .result .monthly-price dl dd .tax {
  font-size: 1rem;
}
@media only screen and (min-width: 769px) {
  .price-simulation .result .monthly-price dl dd .tax {
    font-size: 1.2rem;
  }
}
.price-simulation .result .monthly-price .total-detail {
  margin-top: 1rem;
}
.price-simulation .result .monthly-price .total-detail dl {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  border: none;
  line-height: 1.5;
}
.price-simulation .result .monthly-price .total-detail dl dt {
  width: 60%;
  font-size: 1.3rem;
  white-space: nowrap;
  text-align: left;
}
@media only screen and (min-width: 769px) {
  .price-simulation .result .monthly-price .total-detail dl dt {
    font-size: 1.6rem;
  }
}
.price-simulation .result .monthly-price .total-detail dl dd {
  width: 40%;
  text-align: right;
  font-size: 1.4rem;
}
@media only screen and (min-width: 769px) {
  .price-simulation .result .monthly-price .total-detail dl dd {
    font-size: 1.6rem;
  }
}
.price-simulation .result .monthly-price .total-detail dl dd .total {
  font-size: 4rem;
  color: #E42019;
}
@media only screen and (min-width: 769px) {
  .price-simulation .result .monthly-price .total-detail dl dd .total {
    font-size: 5rem;
  }
}
.price-simulation .result .monthly-price .total-detail dl dd .tax {
  font-size: 1rem;
}
@media only screen and (min-width: 769px) {
  .price-simulation .result .monthly-price .total-detail dl dd .tax {
    font-size: 1.2rem;
  }
}
.price-simulation .result .monthly-price .total-detail dl dd .font-en {
  font-size: 2.5rem;
  line-height: 1;
}
@media only screen and (min-width: 769px) {
  .price-simulation .result .monthly-price .total-detail dl dd .font-en {
    font-size: 3rem;
  }
}
.price-simulation .result .plus {
  margin: 1rem auto;
  width: 2.2rem;
  height: 2.2rem;
}
.price-simulation .result .initial-administrative-fee dl {
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 769px) {
  .price-simulation .result .initial-administrative-fee dl {
    padding: 0 3rem;
  }
}
.price-simulation .result .initial-administrative-fee dl dt {
  width: 50%;
  font-size: 1.4rem;
}
.price-simulation .result .initial-administrative-fee dl dd {
  width: 50%;
  text-align: right;
  font-size: 1.4rem;
  font-weight: bold;
}
.price-simulation .result .initial-administrative-fee dl dd .total {
  font-size: 4rem;
  color: #E42019;
}
.price-simulation .result .initial-administrative-fee dl dd .tax {
  font-size: 1rem;
}
.price-simulation .result .initial-administrative-fee dl dd .font-en {
  font-size: 2.5rem;
}
@media only screen and (min-width: 769px) {
  .price-simulation .result .initial-administrative-fee dl dd .font-en {
    font-size: 3rem;
  }
}
.price-simulation .result .initial-administrative-fee dl.initial-administrative-fee-total dt {
  font-size: 1.6rem;
}
@media only screen and (min-width: 769px) {
  .price-simulation .result .initial-administrative-fee dl.initial-administrative-fee-total dt {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 769px) {
  .price-simulation .result .initial-administrative-fee dl.initial-administrative-fee-total dd {
    font-size: 2rem;
  }
}
.price-simulation .result .initial-administrative-fee dl.initial-administrative-fee-total dd .font-en {
  font-size: 2rem;
}
@media only screen and (min-width: 769px) {
  .price-simulation .result .initial-administrative-fee dl.initial-administrative-fee-total dd .font-en {
    font-size: 2.8rem;
  }
}
.price-simulation .accordion_wrap {
  margin-top: 3rem;
  padding: 0 2rem;
}
@media only screen and (min-width: 769px) {
  .price-simulation .accordion_wrap {
    margin-top: 4rem;
    padding: 0 18rem;
  }
}
.price-simulation .accordion_wrap .accordion_title {
  background: #333;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  line-height: 4rem;
  height: 4rem;
}
.price-simulation .accordion_wrap .accordion_title .cross {
  width: 2rem;
  height: 2rem;
}
.price-simulation .accordion_wrap .accordion_box {
  background: #fff;
  padding: 3rem 2rem;
}
@media only screen and (min-width: 769px) {
  .price-simulation .accordion_wrap .accordion_box {
    padding: 4rem 18rem;
  }
}
.price-simulation .cta_btn {
  margin: 2rem 2rem 0;
}
@media only screen and (min-width: 769px) {
  .price-simulation .cta_btn {
    margin: 4rem auto 0;
  }
}

.timeline-container {
  position: relative;
}
.timeline-container .timeline-line {
  display: block;
  background: #E42019;
  width: 0.2rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 6.4rem;
}
@media only screen and (min-width: 769px) {
  .timeline-container .timeline-line {
    left: 8.4rem;
  }
}
.timeline-container .timeline-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
}
.timeline-container .timeline-item + .timeline-item {
  margin-top: 2rem;
}
.timeline-container .timeline-item .time-label {
  font-size: 1rem;
  font-weight: bold;
  width: 4.5rem;
}
@media only screen and (min-width: 769px) {
  .timeline-container .timeline-item .time-label {
    font-size: 1.4rem;
    width: 6.5rem;
  }
}
.timeline-container .timeline-item .marker-wrap .dot {
  display: block;
  width: 2rem;
  height: 2rem;
  background: #E42019;
  border-radius: 99px;
}
.timeline-container .timeline-item .info-box {
  font-size: 1rem;
  line-height: 1.4;
}
@media only screen and (min-width: 769px) {
  .timeline-container .timeline-item .info-box {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 769px) {
  .timeline-container .timeline-item .info-box .pc-only {
    display: inline;
  }
}
.timeline-container .timeline-item .info-box .font-en {
  font-size: 1.8rem;
}
@media only screen and (min-width: 769px) {
  .timeline-container .timeline-item .info-box .font-en {
    font-size: 2.4rem;
  }
}
.timeline-container .timeline-item .info-box .dynamic-option {
  display: block;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.08);
}
header .call-center {
  background: #333;
  color: #fff;
  height: 4.5rem;
  padding: 0 1rem;
  font-size: 1.4rem;
  text-align: right;
  line-height: 1.1;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (min-width: 769px) {
  header .call-center {
    height: 3rem;
    padding: 0 2rem;
    pointer-events: none;
  }
}
header .call-center a {
  color: inherit;
  text-decoration: none;
}
header .header_wrap {
  background: #fff;
  height: 6rem;
  padding: 0 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 769px) {
  header .header_wrap {
    padding: 0 5rem;
  }
}
header .left_wrap {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
header .left_wrap .logo {
  width: 10rem;
}
@media only screen and (min-width: 769px) {
  header .left_wrap .logo {
    width: 15rem;
  }
}
header .left_wrap .logo img {
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 769px) {
  header nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }
}
@media only screen and (min-width: 769px) {
  header .anchor-link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.2rem;
  }
  header .anchor-link a {
    transition: opacity 0.3s;
  }
  header .anchor-link a:hover {
    opacity: 0.6;
  }
}
header .btn_wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}
@media only screen and (min-width: 769px) {
  header .btn_wrap {
    gap: 1rem;
  }
}
header .btn_wrap a,
header .btn_wrap button {
  display: block;
  padding: 0 1.4rem;
  height: 4.5rem;
  font-size: 1rem;
  border-radius: 99.9rem;
  background: #666;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
header .btn_wrap a:hover,
header .btn_wrap button:hover {
  opacity: 0.6;
}
@media only screen and (min-width: 769px) {
  header .btn_wrap a,
  header .btn_wrap button {
    font-size: 1.1rem;
  }
}
header .btn_wrap .btn_cv {
  background: #FEF400;
  font-weight: bold;
  color: #333;
}
@media only screen and (min-width: 769px) {
  header .btn_wrap .btn_cv {
    font-size: 1.2rem;
  }
}

.fwh-header_mobile_btn {
  width: 4rem;
  height: 4rem;
}
.fwh-header_mobile_btn button {
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.fwh-header_mobile_btn button .span1 {
  position: relative;
  width: 2.4rem;
  height: 1.8rem;
  display: block;
}
.fwh-header_mobile_btn button .span2,
.fwh-header_mobile_btn button .span3,
.fwh-header_mobile_btn button .span4 {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background: #333;
  transition: all 0.3s ease;
}
.fwh-header_mobile_btn button .span2 {
  top: 0;
}
.fwh-header_mobile_btn button .span3 {
  top: 50%;
  transform: translateY(-50%);
}
.fwh-header_mobile_btn button .span4 {
  bottom: 0;
}
.fwh-header_mobile_btn.is-active button .span2 {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.fwh-header_mobile_btn.is-active button .span3 {
  opacity: 0;
}
.fwh-header_mobile_btn.is-active button .span4 {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 10.5rem;
  left: 0;
  width: 100%;
  height: calc(100vh - 10.5rem);
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  z-index: 99;
}
.mobile-menu.is-open {
  transform: translateX(0);
}
.mobile-menu .mobile-menu_inner {
  padding: 3rem;
}
.mobile-menu .mobile-anchor-link {
  margin-bottom: 2rem;
}
.mobile-menu .mobile-anchor-link li {
  border-bottom: 1px solid #eee;
}
.mobile-menu .mobile-anchor-link li a {
  display: block;
  padding: 1.5rem 0;
  font-size: 1.6rem;
  color: #333;
  text-decoration: none;
  transition: opacity 0.3s;
}
.mobile-menu .mobile-anchor-link li a:active {
  opacity: 0.6;
}
.mobile-menu .mobile-btn-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu .mobile-btn-list a {
  display: block;
  padding: 1.5rem;
  text-align: center;
  border-radius: 0.8rem;
  background: #666;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  font-weight: bold;
}
.mobile-menu .mobile-btn-list a.btn_biz {
  background: #f0f0f0;
  color: #333;
}

body.menu-open {
  overflow: hidden;
}

#footer {
  margin-top: auto;
  position: relative;
  z-index: 10;
}
#footer .footer-main {
  background: #555;
  color: #fff;
  text-align: center;
  padding: 3rem;
}
#footer .footer-logo {
  width: 11.4rem;
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  #footer .footer-logo {
    width: 21rem;
  }
}
#footer .footer-nav-list {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 1rem;
  row-gap: 1.2rem;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
@media only screen and (min-width: 769px) {
  #footer .footer-nav-list {
    margin-top: 2.5rem;
  }
}
#footer .footer-nav-list a {
  color: #fff;
  text-decoration: underline;
  transition: opacity 0.3s;
}
#footer .footer-nav-list a:hover {
  text-decoration: none;
  opacity: 0.8;
}
#footer .footer-copyright {
  color: #fff;
  background: #333;
  width: 100%;
  text-align: center;
}
#footer .footer-copyright small {
  display: block;
  padding: 1em 0;
  font-size: 1rem;
}
@media (max-width: 768px) {
  #footer .footer-copyright small {
    padding-bottom: calc(1em + env(safe-area-inset-bottom));
  }
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/NotoSansJP-Regular.woff2") format("woff2"), url("../font/NotoSansJP-Regular.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../font/NotoSansJP-Bold.woff2") format("woff2"), url("../font/NotoSansJP-Bold.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../font/NotoSansJP-Black.woff2") format("woff2"), url("../font/NotoSansJP-Black.woff") format("woff");
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../font/BarlowCondensed-SemiBold.woff2") format("woff2"), url("../font/BarlowCondensed-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Barlow";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../font/Barlow-SemiBoldItalic.woff2") format("woff2"), url("../font/Barlow-SemiBoldItalic.woff") format("woff");
}
@font-face {
  font-family: "Barlow";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../font/Barlow-BoldItalic.woff2") format("woff2"), url("../font/Barlow-BoldItalic.woff") format("woff");
}
#moniter {
  padding-top: 12rem;
  margin-top: -12rem;
}
@media only screen and (min-width: 769px) {
  #moniter {
    padding-top: 9rem;
    margin-top: -9rem;
  }
}/*# sourceMappingURL=main_2.css.map */