﻿@charset "UTF-8";

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 0;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 16px;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

body {
  font-family: "Noto Sans JP";
  color: #333;
  line-height: 1;
}

@media screen and (max-width: 540px) {
  body {
    margin-bottom: 30vw;
  }
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  color: #333;
}

a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
  height: auto;
}

p {
  line-height: 1.5;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 767px) {
  p {
    font-size: 16px;
  }
}

.sp-only {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

sup {
  font-size: 14px;
}

.inner {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.inner--narrow {
  max-width: 800px;
}

.orange {
  background: #FF9628;
}

.green {
  background: #64C8A0;
}

.text-link {
  text-align: right;
  max-width: 700px;
  margin: 0 auto;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .text-link {
    max-width: 500px;
  }
}

.text-link a {
  color: #333;
}

.textNotice {
  font-size: 14px;
  font-weight: 400;
  color: #828282;
  line-height: 1.5;
}

.header {
  height: 80px;
  line-height: 80px;
}

.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: inherit;
  line-height: inherit;
}

.header__logo {
  height: inherit;
  line-height: inherit;
}

.header__logo a {
  display: inline-block;
  height: inherit;
  line-height: inherit;
}

.header__logo img {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100px;
}

.header-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: inherit;
  line-height: inherit;
}

@media screen and (max-width: 980px) {
  .header-nav {
    display: none;
  }
}

.header-nav__item {
  position: relative;
}

.header-nav__item:last-child {
  margin-right: 0;
}

.header-nav__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2px;
  height: 20px;
  background: #333;
}

.header-nav__item a {
  display: inline-block;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  padding: 0 30px;
}

.hamburger {
  display: none;
}

@media screen and (max-width: 980px) {
  .hamburger {
    display: block;
    position: fixed;
    top: 10px;
    right: 20px;
    height: 60px;
    z-index: 999;
    width: 60px;
    border: none;
    background-color: transparent;
  }
}

.hamburger.-active .hamburger__line {
  background-color: transparent;
}

.hamburger.-active .hamburger__line::before {
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hamburger.-active .hamburger__line::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.-active .hamburger__text::before {
  content: "閉じる";
}

.hamburger__line {
  display: block;
  height: 2px;
  position: absolute;
  top: 23px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 24px;
  background-color: #172e59;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.hamburger__line:before,
.hamburger__line:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  background-color: #172e59;
  -webkit-transition: inherit;
  transition: inherit;
}

.hamburger__line:before {
  top: -6px;
}

.hamburger__line:after {
  top: 6px;
}

.hamburger__text {
  position: absolute;
  bottom: 8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
}

.hamburger__text::before {
  content: "メニュー";
  text-align: center;
  color: #172e59;
  font-size: 10px;
  font-weight: 900;
}

.header__nav-area {
  position: fixed;
  top: -100%;
  z-index: 998;
  height: 70vh;
  width: 100vw;
  visibility: hidden;
  padding-top: 60px;
  background-color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.header__nav-area.-active {
  top: 0;
  visibility: visible;
}

.global-navigation {
  max-width: 500px;
  margin: 0 auto;
  padding-top: 40px;
  padding-right: 25px;
  padding-bottom: 120px;
  padding-left: 25px;
}

.global-navigation__list>li {
  position: relative;
  padding-bottom: 20px;
  border-bottom: 2px solid #929292;
}

.global-navigation__list>li::after {
  content: "＞";
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 10px;
  font-weight: bold;
  color: #333;
}

.global-navigation__list>li+li {
  margin-top: 20px;
}

.global-navigation__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #172e59;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.global-navigation__link.-accordion {
  position: relative;
  background: none;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 0;
}

.global-navigation__link.-accordion::after {
  content: "";
  display: block;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 5px;
  width: 2px;
  background-color: #ed3242;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.global-navigation__link.-accordion::before {
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  background-color: #ed3242;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.global-navigation__link.-active::after {
  -webkit-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}

.accordion {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.accordion.-active {
  height: auto;
  padding-top: 30px;
  visibility: visible;
}

.accordion__list li {
  font-size: 0.75rem;
}

.accordion__list li+li {
  margin-top: 21px;
}

.accordion__link {
  color: #172e59;
}

.mv {
  position: relative;
  background-color: #FDFF00;
  background-image: url(https://images.microcms-assets.io/assets/ece572d76912450892bb3e5b9b199a80/9f84f0ff90e44f9aa2a7f19b86c40e82/PC_KV_back.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100vw;
  border-bottom: 15px solid #F0F0F0;
}

@media screen and (max-width: 767px) {
  .mv {
    background-image: url(https://images.microcms-assets.io/assets/ece572d76912450892bb3e5b9b199a80/b541ee7afbf44e6c84c0941c487e56fb/SP_KV_back.png);
  }

  .mv__img {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}

.cta {
  padding: 50px 0;
  border-bottom: 15px solid #F0F0F0;
}

.icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 500px;
  width: 100%;
  margin: 0 auto 50px;
}

@media screen and (max-width: 767px) {
  .icons {
    gap: 10px;
  }
}

.cta__wrapper {
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
}

@media screen and (max-width: 767px) {
  .cta__wrapper {
    gap: 10px;
  }
}

.cta01,
.cta02 {
  max-width: 350px;
}

.link {
  background: #FFFA00;
  padding: 30px 0;
}

.link__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  padding: 15px;
  background: #fff;
  border: 3px solid #BE8CD2;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .link__items {
    gap: 0;
    padding: 10px 0;
  }
}

.link__item {
  width: 33.33333%;
}

.link__item:first-child {
  border-right: 3px solid #BE8CD2;
}

.link__item:last-child {
  border-left: 3px solid #BE8CD2;
}

.about {
  padding: 70px 0 0;
  background: #F3F4F6;
}

.about__img01 {
  margin-bottom: 50px;
}

.about__img02 {
  margin-bottom: 15px;
}

.about__img03 {
  margin: 70px 0 0;
}

@media screen and (max-width: 767px) {
  .about__img03 {
    margin: 50px 0;
  }
}

.background01 {
  width: 100%;
  font-size: 0;
}

.price {
  background: #FFFA00;
  padding: 70px 0 0;
}

.price__title {
  max-width: clamp(300px, 60vw, 600px);
  margin: 0 auto;
}

.tab-area {
  max-width: 600px;
  margin: 70px auto 0;
}

@media screen and (max-width: 767px) {
  .tab-area {
    margin: 50px auto 0;
  }
}

.tab-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
}

.tab {
  cursor: pointer;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #737373;
  background: #fff;
  font-size: 30px;
  font-weight: bold;
  padding-top: 2px;
  padding-bottom: 2px;
  border-radius: 15px 15px 0 0;
}

@media screen and (max-width: 767px) {
  .tab {
    font-size: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

.tab.-active {
  color: #fff;
}

.tab1 {
  border: 5px solid #FF9628;
  border-bottom: none;
}

.tab1.-active {
  background: #FF9628;
}

.tab2 {
  border: 5px solid #64C8A0;
  border-bottom: none;
}

.tab2.-active {
  background: #64C8A0;
}

.tab-panel {
  display: none;
  background: #fff;
  line-height: 1.75;
  padding: 50px 10%;
}

@media screen and (max-width: 767px) {
  .tab-panel {
    padding: 30px 3%;
  }
}

.tab-panel.-active {
  display: block;
}

.tab-panel1 {
  border: 5px solid #FF9628;
}

.tab-panel2 {
  border: 5px solid #64C8A0;
}

.background02 {
  width: 100%;
  font-size: 0;
}

.voice {
  background: #F3F4F6;
  padding: 70px 0;
}

.voice__title {
  max-width: clamp(300px, 50vw, 650px);
  margin: 0 auto 50px;
}

.voice__item {
  margin-bottom: 50px;
}

.voice-item__img {
  padding: 30px 8%;
  border-radius: 30px 30px 0 0;
}

@media screen and (max-width: 767px) {
  .voice-item__img {
    padding: 20px 3%;
  }
}

.voice-item__detail {
  cursor: pointer;
  position: relative;
  text-align: center;
  color: #fff;
  background: #767778;
  font-size: 20px;
  font-weight: bold;
  padding: 15px 5px;
  border-radius: 0 0 30px 30px;
}

@media screen and (max-width: 767px) {
  .voice-item__detail {
    font-size: 16px;
    padding: 12px 5px;
  }
}

.voice-item__detail::after {
  content: "▼";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: calc(50% - 85px);
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .voice-item__detail::after {
    font-size: 16px;
    right: calc(50% - 68px);
  }
}

.voice-item.-open .voice-item__detail {
  border-radius: 0;
}

.voice-item.-open .voice-item__detail::after {
  content: "▲";
}

.voice-item__text {
  display: none;
  background: #fff;
  font-size: 18px;
  line-height: 1.8;
  padding: 30px 10%;
  border-radius: 0 0 30px 30px;
}

@media screen and (max-width: 767px) {
  .voice-item__text {
    font-size: 16px;
    line-height: 1.5;
    padding: 15px 3%;
  }
}

.voice-item.-open .voice-item__text {
  display: block;
}

.award {
  padding: 50px 0;
  background: #F3F4F6;
}

.award__img {
  max-width: clamp(1000px, 95vw, 1200px);
  margin: 0 auto 45px;
}

.campaign {
  background: #F3F4F6;
  padding: 70px 0;
}

.campaign__title {
  max-width: clamp(300px, 50vw, 650px);
  margin: 0 auto 50px;
}

.flow {
  background: #FFFA00;
  padding: 70px 0;
}

.flow__title {
  max-width: clamp(280px, 38vw, 370px);
  margin: 0 auto 50px;
}

.flow__item {
  margin-bottom: 20px;
}

.flow-item:nth-child(1) .flow-item__heading img {
  max-width: 55%;
}

@media screen and (max-width: 540px) {
  .flow-item:nth-child(1) .flow-item__heading img {
    max-width: 70%;
  }
}

.flow-item:nth-child(2) .flow-item__heading img {
  max-width: 55%;
}

@media screen and (max-width: 540px) {
  .flow-item:nth-child(2) .flow-item__heading img {
    max-width: 70%;
  }
}

.flow-item:nth-child(3) .flow-item__heading img {
  max-width: 70%;
}

@media screen and (max-width: 540px) {
  .flow-item:nth-child(3) .flow-item__heading img {
    max-width: 90%;
  }
}

.flow-item__heading {
  position: relative;
  background: #F3F4F6;
  padding: 15px 40px 10px 15px;
  margin-bottom: 20px;
}

@media screen and (max-width: 540px) {
  .flow-item__heading {
    padding: 10px 40px 3px 15px;
  }
}

.flow-item__heading::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 15px;
  background-image: url(https://images.microcms-assets.io/assets/ece572d76912450892bb3e5b9b199a80/1160363901e5442e97edefae07608dcd/plus.png);
  background-repeat: no-repeat;
  background-size: 20px;
  width: 20px;
  height: 20px;
}

.flow-item.-open .flow-item__heading::after {
  background-image: url(https://images.microcms-assets.io/assets/ece572d76912450892bb3e5b9b199a80/1dd88f42e90f4653b2756a5ba6c338b0/minus.png);
}

.flow-item__contents {
  display: none;
}

.flow-item.-open .flow-item__contents {
  display: block;
}

.tab-area-new {
  position: relative;
  max-width: 600px;
  margin: 200px auto 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .tab-area-new {
    margin: 150px auto 0;
  }
}

@media screen and (max-width: 540px) {
  .tab-area-new {
    margin: 130px auto 0;
  }
}

.tab-area-new::before {
  content: "";
  position: absolute;
  top: -175px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-image: url(https://images.microcms-assets.io/assets/ece572d76912450892bb3e5b9b199a80/eb50b5c590fd4adeaa6ff0696bed7e48/flowPovo.png?fm=webp);
  background-repeat: no-repeat;
  background-size: 400px;
  width: 100%;
  max-width: 400px;
  height: 300px;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .tab-area-new::before {
    top: -120px;
    background-size: 270px;
    max-width: 270px;
    height: 200px;
  }
}

@media screen and (max-width: 540px) {
  .tab-area-new::before {
    top: -110px;
    background-size: 250px;
    max-width: 250px;
  }
}

.tab-list-new {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
}

.tab-new {
  cursor: pointer;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #737373;
  background: #fff;
  font-size: 30px;
  font-weight: bold;
  padding-top: 2px;
  padding-bottom: 2px;
  border-radius: 15px 15px 0 0;
}

@media screen and (max-width: 767px) {
  .tab-new {
    font-size: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

.tab-new.-active {
  color: #fff;
}

.tab1-new {
  border: 5px solid #FF9628;
  border-bottom: none;
}

.tab1-new.-active {
  background: #FF9628;
}

.tab2-new {
  border: 5px solid #64C8A0;
  border-bottom: none;
}

.tab2-new.-active {
  background: #64C8A0;
}

.tab-panel-new {
  display: none;
  background: #fff;
  line-height: 1.75;
  padding: 50px 10%;
}

@media screen and (max-width: 767px) {
  .tab-panel-new {
    padding: 30px 3%;
  }
}

.tab-panel-new.-active {
  display: block;
}

.tab-panel1-new {
  border: 5px solid #FF9628;
}

.tab-panel2-new {
  border: 5px solid #64C8A0;
}

.faq {
  padding: 70px 0 0;
}

.faq__title {
  max-width: clamp(230px, 35vw, 280px);
  margin: 0 auto 50px;
}

.faq__items {
  max-width: 680px;
  margin: 0 auto 70px;
}

.faq__item {
  border-top: 1px solid #7a7a7a;
}

.faq__item:last-child {
  border-bottom: 1px solid #7a7a7a;
}

.toggle {
  display: none;
}

.Label {
  display: block;
  color: #333;
  background: #fff;
}

.Label::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(https://images.microcms-assets.io/assets/ece572d76912450892bb3e5b9b199a80/1fca704b1faa4d2cbcd93198f51fe44e/question.png);
  background-size: 30px;
}

.Label::after {
  content: "▼";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
}

.Label,
.content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  position: relative;
  padding: 30px 60px;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {

  .Label,
  .content {
    padding: 30px 40px 30px 50px;
  }
}

.Label p,
.content p {
  font-size: 20px;
  font-weight: normal;
}

@media screen and (max-width: 767px) {

  .Label p,
  .content p {
    font-size: 16px;
  }
}

.content {
  display: none;
  height: auto;
  background: #EEEEEE;
  padding: 30px 20px 30px 60px;
  margin-bottom: 30px;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .content {
    padding: 30px 10px 30px 50px;
  }
}

.content::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: 32px;
  left: 10px;
  background-image: url(https://images.microcms-assets.io/assets/ece572d76912450892bb3e5b9b199a80/752fcd37cd22437b9a75bc2c7d4ac8cb/answer.png);
  background-size: 30px;
}

.toggle:checked+.Label+.content {
  display: block;
}

.toggle:checked+.Label::after {
  content: "▲";
}

.yallow-button {
  max-width: 320px;
}

.yallow-button a {
  display: inline-block;
  position: relative;
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  background: #fffa00;
  padding: 20px 60px 20px 20px;
  border-radius: 30px;
}

@media screen and (max-width: 540px) {
  .yallow-button a {
    font-size: 16px;
    padding: 15px 45px 15px 15px;
  }
}

.yallow-button a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(https://images.microcms-assets.io/assets/ece572d76912450892bb3e5b9b199a80/966d1d023f524420bd063d1ab678c351/arrow.png);
  background-repeat: no-repeat;
  background-size: 30px;
  width: 30px;
  height: 30px;
}

@media screen and (max-width: 540px) {
  .yallow-button a::after {
    right: 10px;
  }
}

.footer {
  text-align: center;
  background: #F0F0F0;
  padding: 50px 0 130px;
}

@media screen and (max-width: 540px) {
  .footer {
    padding: 45px 0 70px;
  }
}

.footer__text {
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 30px;
}

@media screen and (max-width: 540px) {
  .footer__text {
    font-size: 9px;
  }
}

.copyright {
  font-size: 13px;
  font-weight: 400;
  color: #828282;
}

@media screen and (max-width: 540px) {
  .copyright {
    font-size: 9px;
  }
}

.fixed {
  opacity: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #333;
  padding: 20px 0;
  z-index: 999;
}

.fixed__cta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}

@media screen and (max-width: 540px) {
  .fixed__cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 7px;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999999;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
  background: rgba(0, 0, 0, 0.5);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 900px;
  background-color: #fff;
  border-radius: 30px;
  border: none;
  padding: 40px;
}

@media screen and (max-width: 767px) {
  .modal-content {
    padding: 3.7% 2.7%;
  }
}

.modal-close {
  display: block;
  position: absolute;
  top: -21px;
  right: 0;
  border: none;
  z-index: 10;
}

.btn-close {
  width: 43px;
  height: 43px;
  /* background: url(https://povo.jp/assets/img/global/close@2x.png); */
  background-size: 43px;
  background-repeat: no-repeat;
  border: none;
  padding: 0;
}

.modal .button {
  max-width: 650px;
  font-size: 18px;
  margin: 0 auto 25px;
}

@media screen and (max-width: 767px) {
  .modal .button {
    max-width: 400px;
  }
}

.modal .button a {
  display: block;
  width: 100%;
  padding: 20px 45px;
  border-radius: 50px;
  -webkit-box-shadow: 0 3px #d6d6d6;
  box-shadow: 0 3px #d6d6d6;
  /* background-image: url(https://povo.jp/assets/img/icons/arrow@2x.png); */
  background-repeat: no-repeat;
  background-size: 40px;
  background-position: right 20px center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

@media screen and (max-width: 767px) {
  .modal .button a {
    text-align: left;
    font-size: 16px;
    background-position: right 10px center;
    padding: 15px 45px 15px 20px;
  }
}

.modal .button.yellow a {
  background-color: #fffa00;
  color: #333;
}

.tiny {
  font-size: 14px;
}

.text-bottom-modal {
  text-align: left;
  max-width: 650px;
  font-size: 14px;
  margin: 0 auto;
}

#modal1 .column-top {
  position: relative;
  text-align: center;
  border-radius: 20px;
  padding: 30px 10px;
}

@media (max-width: 767px) {
  .column-top .button a {
    background-size: 30px;
  }

  .tiny {
    font-size: 12px;
  }

  .text-bottom-modal {
    text-align: left;
  }
}

.topping-heading,
.modal-topping-heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 50px;
  margin-top: 30px;
  padding-left: 15px;
  border-left: 1px solid #FFFA00;
  border-right: 1px solid #FFFA00;
  line-height: 1;
  font-size: 18px;
  font-weight: bold;
  background-color: #FFFA00;
  cursor: pointer;
}

.topping-heading::after,
.modal-topping-heading::after {
  display: block;
  position: absolute;
  top: 13px;
  right: 15px;
  content: "";
  width: 24px;
  height: 24px;
  background: url("https://useruploads.visualwebsiteoptimizer.com/useruploads/643262/images/ec37e2c79aca2a34dd5601b850674965_1f6a2c3328c8913e4c6d7a73e344ad4ae2c68a98.svg") no-repeat 0 0/24px auto;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.topping-heading.-open::after,
.modal-topping-heading .-open::after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.modal-topping-heading .-open::after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.topping-heading::before,
.modal-topping-heading::before {
  content: "";
  width: 24px;
  height: 24px;
  margin-right: 15px;
}

.topping-heading#data::before,
.topping-heading#limited::before,
.topping-heading#plus::before {
  background: url("https://useruploads.visualwebsiteoptimizer.com/useruploads/643262/images/008ba761279cf117f40ebd2fb4359c26_0ec13b5bff3865c1e2a41c1812d5cf4623c51737.svg") no-repeat center center/18px auto;
}

.topping-heading.-open#data::before,
.modal-topping-heading.-open#data::before {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background: url("https://useruploads.visualwebsiteoptimizer.com/useruploads/643262/images/008ba761279cf117f40ebd2fb4359c26_0ec13b5bff3865c1e2a41c1812d5cf4623c51737.svg") no-repeat center center/18px auto;
}

.topping-heading#contents::before,
.modal-topping-heading#contents::before {
  background: url("https://useruploads.visualwebsiteoptimizer.com/useruploads/643262/images/1df2d93b756a7cf4eb5358db1f6b2350_eaa7d4f9432de924b64b5ccafcf28a90758fe4e9.svg") no-repeat center center/24px auto;
}

.topping-heading#call::before,
.modal-topping-heading#call::before {
  background: url("https://useruploads.visualwebsiteoptimizer.com/useruploads/643262/images/04bca1b4d084b20433232d78b5a908ad_3b871b8a3e2d133927c7772d79b0545932ff7f3e.svg") no-repeat center center/auto 24px;
}

.topping-heading#support::before,
.modal-topping-heading#support::before {
  background: url("https://useruploads.visualwebsiteoptimizer.com/useruploads/643262/images/44bca339969a440377e0d3db893582a0_10eb7725042cc89a517d1d891970850597d68930.svg") no-repeat center center/auto 24px;
}

.table-wrap {
  display: none;
}

.btn-typeA {
  margin-top: 40px;
}

.btn-typeA a {
  display: table;
  margin: 0 auto;
  padding: 12px 40px 12px 20px;
  font-size: 14px;
  background-size: 20px auto;
  background-position: right 10px center;
}

.topping-table {
  width: 100%;
}

.topping-table thead {
  text-align: center;
  color: #fff;
  border-left: 1px solid #999CA3;
  border-right: 1px solid #999CA3;
  background-color: #999CA3;
}

.topping-table thead th {
  padding: 11px 0;
  line-height: 1.1;
  font-size: 14px;
}

.topping-table tbody {
  border-left: 1px solid #DBDBDB;
  border-right: 1px solid #DBDBDB;
}

.topping-table tbody tr {
  border-bottom: 1px solid #DBDBDB;
}

.topping-table tbody th {
  padding: 11px 10px;
  line-height: 1.2;
  font-size: 14px;
  font-weight: 400;
  background-color: #F0F0F0;
}

.topping-table tbody td {
  padding: 11px 10px;
  border-left: 1px solid #DBDBDB;
  text-align: right;
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
}

.topping-table.col3 tbody td {
  width: 30%;
}

.topping-table.col2 tbody td {
  width: 50%;
}

.topping-table .notes {
  padding-left: 3px;
  vertical-align: 5px;
  font-size: 10px;
}

div#support {
  margin-bottom: 30px;
}

.notes-list {
  margin-top: 5px;
  color: #767778;
}

.notes-list .item {
  line-height: 1.8;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

@media screen and (max-width: 370px) {
  .topping-table thead th {
    padding: 11px 5px;
  }

  .topping-table tbody td {
    padding: 11px 5px;
  }
}

.label-modal {
  margin-top: 20px;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
}

.label-modal::before {
  display: inline-block;
  content: "";
  width: 11px;
  height: 19px;
  margin-right: 3px;
  vertical-align: -6px;
  background: url("https://useruploads.visualwebsiteoptimizer.com/useruploads/643262/images/a56a20548f6c074d3dc6c70d06298df8_4951f0f2dd9836248d087ba26b9a3fa5385ca7fa.svg") no-repeat 0 0/auto 19px;
}

.label-modal::after {
  display: inline-block;
  content: "";
  width: 11px;
  height: 19px;
  margin-left: 3px;
  vertical-align: -6px;
  background: url("https://useruploads.visualwebsiteoptimizer.com/useruploads/643262/images/a56a20548f6c074d3dc6c70d06298df8_4951f0f2dd9836248d087ba26b9a3fa5385ca7fa.svg") no-repeat 0 0/auto 19px;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}

#btn-modal {
  margin: 10px auto 20px;
  max-width: 500px;
}

#btn-modal span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100px;
  padding: 17px 10px;
  -webkit-box-shadow: 0 4px 0 rgb(214, 214, 214);
  box-shadow: 0 4px 0 rgb(214, 214, 214);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  background-color: #66C6A1;
  cursor: pointer;
}

#btn-modal span::before {
  content: "";
  width: 24px;
  height: 30px;
  margin-right: 15px;
  background: url("https://useruploads.visualwebsiteoptimizer.com/useruploads/643262/images/39fcd80bd1ba14c985c8ba6d07da6aed_ba1d848c3a1087d68b76a767cb1739481b8eae4e.png") no-repeat center 0/auto 30px;
}

#modal-wrap {
  display: none;
  position: fixed;
  z-index: 10001;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

#modal-wrap #modal-close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 43px;
  cursor: pointer;
  z-index: 100;
}

#modal-wrap .modal-inner {
  overflow: auto;
  width: 80%;
  height: calc(100% - 20px);
  margin: 10px auto;
  padding: 100px 20px;
  border-radius: 30px;
  background-color: #fff;
}

#modal-wrap .modal-inner input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  background-color: transparent;
  opacity: 1;
}

#modal-wrap .modal-inner input[disabled] {
  border: none;
  background-color: transparent;
}

.modal-topping-heading::after {
  background: url("https://useruploads.visualwebsiteoptimizer.com/useruploads/643262/images/9bbf86084d0f24dc083864da716cb572_827c54054ad23280ae044194d4f5828a6997b196.svg") no-repeat 0 0/24px auto;
}

#modal-wrap .modal-inner .select-group {
  font-size: 14px;
}

#modal-wrap .modal-inner .select-group input[type=checkbox] {
  width: 20px;
  height: 20px;
  border: 2px solid #66C6A1;
  border-radius: 4px;
}

#modal-wrap .modal-inner .select-group input[type=radio] {
  width: 20px;
  height: 20px;
  border: 2px solid #66C6A1;
  border-radius: 100px;
}

#modal-wrap .modal-inner .select-group input[type=text] {
  width: 1em;
  text-align: center;
  color: #66C6A1;
  font-size: 21px;
  font-weight: bold;
}

#modal-wrap .modal-inner .select-group .select-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 5px;
  padding: 7px 10px 6px;
  border: 1px solid #E6E6E6;
  border-radius: 6px;
  cursor: pointer;
}

#modal-wrap .modal-inner .select-group .select-row.-on {
  border: 1px solid #EBFAF4;
  background-color: #EBFAF4;
}

#modal-wrap .modal-inner .select-group .select-row input {
  margin-right: 10px;
  background: #fff url("https://useruploads.visualwebsiteoptimizer.com/useruploads/643262/images/cddf20ee3b3ac0bd6d0bf255bf9841fb_0bc788e7c7877fbdc3d231407624875c9357a5b9.svg") no-repeat center center/12px auto;
}

#modal-wrap .modal-inner .select-group .select-row input:checked {
  background-color: #66C6A1;
}

#modal-wrap .modal-inner .select-group .select-row .in {
  width: 100%;
}

#modal-wrap .modal-inner .select-group .select-row .in td {
  font-size: 14px;
  line-height: 1.2;
}

/* contents */
#modal-wrap .modal-inner .select-group.-contents .select-row .in tr td:nth-child(1) {
  width: 54%;
}

#modal-wrap .modal-inner .select-group.-contents .select-row .in tr td:nth-child(2) {
  width: 26%;
}

#modal-wrap .modal-inner .select-group.-contents .select-row .in tr td:nth-child(3) {
  width: 20%;
}

/* call */
#modal-wrap .modal-inner .select-group.-call .select-row .in tr td:nth-child(1) {
  width: 58%;
}

#modal-wrap .modal-inner .select-group .subtotal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: bold;
}

#modal-wrap .modal-inner .select-group .subtotal input[disabled] {
  width: 22px;
  color: #66C6A1;
  -webkit-text-fill-color: #66C6A1;
}

#modal-wrap .modal-inner .total-wrap {
  margin-top: 20px;
}

#modal-wrap .modal-inner .total-wrap .in {
  margin-left: auto;
  font-weight: bold;
}

#modal-wrap .modal-inner .total-wrap .in tr td:nth-child(1) {
  text-align: right;
}

#modal-wrap .modal-inner .total-wrap .in tr td:nth-child(3) {
  width: 16px;
}

#modal-wrap .modal-inner .total-wrap .in tr td input {
  width: 22px;
  text-align: center;
  font-weight: bold;
}

#modal-wrap .modal-inner .total-wrap .total {
  margin-bottom: 3px;
}

#modal-wrap .modal-inner .total-wrap .total .in td {
  font-size: 14px;
}

#modal-wrap .modal-inner .total-wrap .total .in tr td:nth-child(2) {
  width: 22px;
}

#modal-wrap .modal-inner .total-wrap .total .in input {
  color: #66C6A1;
  -webkit-text-fill-color: #66C6A1;
  font-size: 21px;
}

#modal-wrap .modal-inner .total-wrap .day-total {
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 6px;
  background-color: #FAEBEB;
}

#modal-wrap .modal-inner .total-wrap .day-total .in tr td {
  font-size: 14px;
}

#modal-wrap .modal-inner .total-wrap .day-total .in tr td:nth-child(2) {
  width: 26px;
  text-align: center;
}

#modal-wrap .modal-inner .total-wrap .day-total .in input {
  width: 26px;
  color: #B34747;
  -webkit-text-fill-color: #B34747;
  font-size: 30px;
}

.useExample-box {
  margin-top: 20px;
}

.useExample-box .box {
  margin-top: 20px;
  border-radius: 10px;
  background-color: #fff;
}

.useExample-box .box .heading {
  margin: 0;
  padding: 10px 0;
  text-align: center;
  color: #fff;
  font-weight: bold;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-color: #999CA3;
}

.useExample-box .box .in {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px;
}

.useExample-box .box .in .fig {
  width: 80px;
  margin: 0;
}

.useExample-box .box .in .txt {
  width: calc(100% - 80px - 20px);
  margin: 0;
}

.useExample-box .box .in .txt .emp {
  font-weight: bold;
  background-color: #FFEFD9;
}

.useExample-box .voice-txt {
  margin: 20px 0 10px;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
}

.btn-typeB {
  margin: 0 auto;
}

.btn-typeB a {
  display: table;
  margin: 0 auto;
  padding: 12px 40px 12px 20px;
  font-size: 14px;
  background-size: 20px auto;
  background-position: right 10px center;
}

#custom-ab__spec {
  margin-top: 30px;
}

#custom-ab__spec .custom-ab__title {
  font-size: 14px;
  margin-bottom: 20px;
  text-align: center;
}

#custom-ab__spec .custom-ab__title a {
  text-decoration: underline;
}

#myProgress .loading-adjusted {
  background-position: 50% 40vh;
}

.btn-mt {
  margin: 15px 0;
}

.btn-lineup a {
  display: block;
  padding: 15px 45px;
  border-radius: 50px;
  -webkit-box-shadow: 0 3px #d6d6d6;
  box-shadow: 0 3px #d6d6d6;
  background-color: #fff;
  /* background-image: url(/assets/img/icons/icon-circle-yellow-arrow-right.svg); */
  background-repeat: no-repeat;
  background-size: 40px;
  background-position: right 20px center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  max-width: 460px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  #custom-ab__spec {
    margin-top: 15px;
  }

  .label-modal {
    font-size: 13px;
  }

  .useExample-box .voice-txt {
    font-size: 13px;
  }

  .btn-mt {
    max-width: 100%;
  }

  .btn-lineup a {
    background-position: right 12px center;
    font-size: 16px;
    text-align: center;
    background-size: 30px;
  }

  #modal-wrap .modal-inner {
    width: calc(100% - 20px);
  }

  .button.hover.button_01 {
    margin-bottom: 15px;
  }
}

.button a {
  padding: 15px 45px;
  background-size: 30px;
}

#front .povo1 .button a {
  padding: 15px 45px !important;
}

.button_01 a,
.button_02 a {
  font-size: 17px;
  padding: 15px 45px;
}

@media (max-width: 767px) {

  .button_01 a,
  .button_02 a {
    font-size: 15px;
    background-size: 30px;
  }
}

@media (min-width: 768px) {
  div#modal-close {
    right: 10vw !important;
  }
}

@media (max-width: 767px) {
  #modal-wrap .modal-inner .select-group.-contents .select-row .in tr td:nth-child(1) {
    font-size: 12px;
  }

  #modal-wrap .modal-inner .select-group.-data .select-row .in tr td:nth-child(3) {
    width: 20%;
  }
}

.column-plan .planList li .item p a {
  font-size: 13px;
  font-weight: 400;
}

@media (max-width: 767px) {

  .col-md-5,
  .col-md-7 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .column-plan .planList li .item p a {
    font-size: 10px;
  }
}

#modal-wrap .modal-inner .select-group .in td:nth-of-type(1) {
  width: 50%;
}

#modal-wrap .modal-inner .select-group .in td:nth-of-type(2) {
  width: 30%;
}

.select-group .in {
  width: 100%;
}

.select-group table thead {
  color: #fff;
  border-left: 1px solid #999CA3;
  border-right: 1px solid #999CA3;
  background-color: #999CA3;
}

.select-group table thead th {
  font-size: 14px;
  padding: 11px 0;
  line-height: 1.1;
}

.select-group table thead th:nth-of-type(1) {
  width: 51%;
  padding-left: 37px;
}

.select-group table thead th:nth-of-type(2) {
  width: 29%;
}

#modal-wrap>div.modal-inner>div.modal-lower>div.total-wrap>div.day-total>table:nth-child(2)>tbody>tr>td:nth-child(3)::after {
  position: absolute;
  content: "※2";
  font-size: 10px;
  top: 2px;
  left: 0;
  min-width: 50px;
}

p.item {
  line-height: 1.8;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  #modal-wrap .modal-inner .select-group .in td:nth-of-type(1) {
    width: 46%;
  }

  .select-group table thead th:nth-of-type(2) {
    width: 23%;
  }

  #modal-wrap .modal-inner .select-group .in td:nth-of-type(2) {
    width: 28%;
  }

  #modal-wrap>div.modal-inner>div.select-group.-plus>label>table>tbody>tr>td.plusAlpha_topping_name {
    font-size: 12px;
    padding-right: 6px;
  }

  #modal-wrap>div.modal-inner>div.select-group.-data>table>thead>tr>th:nth-child(1) {
    width: 42%;
  }
}

@media (min-width: 768px) {
  #modal-wrap>div.modal-inner>div.select-group.-data>table>thead>tr>th:nth-child(1) {
    width: 50%;
  }

  #modal-wrap>div.modal-inner>div.select-group.-contents>table>thead>tr>th:nth-child(1) {
    width: 61%;
  }

  #modal-wrap>div.modal-inner>div.select-group.-call>table>thead>tr>th:nth-child(1) {
    width: 57%;
  }
}

.wrap {
  font-size: 27px;
  text-align: center;
  font-weight: 600;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.wrap span.step {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin: 0 10px 0 0;
  padding: 5px 20px;
  border-radius: 50px;
  background-color: #707070;
  font-size: 22px;
  font-weight: 700;
  font-family: "Josefin Sans";
  line-height: 1;
  vertical-align: middle;
  color: #FFFA00;
}

.step::before {
  content: "STEP ";
  font-size: 14px;
}

.modal-lower {
  display: none;
}

.textNotice.-step {
  margin-top: 10px;
  text-align: center;
}

.modal-navigation {
  position: fixed;
  padding: 20px 0;
  bottom: 5px;
  width: 80%;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #fff;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 5px 3px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 5px 3px;
}

.modal-inner::-webkit-scrollbar {
  display: none;
}

#to_step02,
#to_step01,
.to_step01 {
  display: none;
}

.modal-step {
  padding: 30px 0 30px;
}

.modal-topping-heading:nth-of-type(1) {
  margin-top: 0;
}

.modal-step {
  padding: 30px 0;
  position: fixed;
  top: 0;
  z-index: 10;
  background: #fff;
  width: 80%;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 5px 3px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 5px 3px;
}

.to_step02,
.to_step01 {
  width: 200px;
  margin: 0 auto;
}

.to_step02 label {
  width: 100%;
  background-color: rgb(214, 214, 214);
  text-align: center;
  color: rgb(255, 255, 255);
  padding: 10px 0;
  margin: 0 auto;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 500;
  display: block;
  -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.to_step01 label {
  width: 100%;
  text-align: center;
  padding: 10px 0;
  margin: 0 auto;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 500;
  display: block;
  -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 8px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 8px;
  background-color: transparent;
  cursor: pointer;
  color: #464749;
}

.ttl-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.limited-subttl {
  font-size: 13px;
  margin-top: 4px;
}

@media (max-width: 767px) {

  .modal-navigation,
  .modal-step {
    width: calc(100% - 20px);
    padding: 20px 0;
  }

  .wrap {
    font-size: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 85%;
    margin: 0 auto;
    -webkit-box-pack: left;
    -webkit-justify-content: left;
    -ms-flex-pack: left;
    justify-content: left;
  }

  .wrap span.step {
    margin: 0 10px 0 0;
    padding: 10px 10px;
    border-radius: 10px;
    background-color: #707070;
    font-size: 18px;
    font-weight: 700;
    font-family: "Josefin Sans";
    line-height: 1;
    vertical-align: middle;
    color: #FFFA00;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .wrap span.step::before {
    display: block;
    font-size: 12px;
  }

  .modal-upper,
  .modal-lower {
    padding-bottom: 15px;
  }

  .ttl-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: unset;
    -webkit-align-items: unset;
    -ms-flex-align: unset;
    align-items: unset;
  }

  .limited-subttl {
    font-size: 10px;
  }
}

#custom-ab__spec {
  margin-top: 30px;
}

@media only screen and (max-width: 767px) {
  #custom-ab__spec {
    margin-top: 15px;
  }
}

.btn-simulator {
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 45px;
}

.btn-simulator a {
  max-width: 420px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .btn-simulator {
    gap: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

#modal-wrap>div.modal-inner>div.modal-lower>div.total-wrap>div.day-total>table:nth-child(2)>tbody>tr>td:nth-child(3)::after {
  position: absolute;
  content: "※3";
  font-size: 10px;
  top: 2px;
  left: 0;
  min-width: 50px;
}

/**
 * Swiper 11.1.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: August 21, 2024
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical>.swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-css-mode>.swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal>.swiper-wrapper {
  -webkit-scroll-snap-type: x mandatory;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical>.swiper-wrapper {
  -webkit-scroll-snap-type: y mandatory;
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper {
  -webkit-scroll-snap-type: none;
  -ms-scroll-snap-type: none;
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered>.swiper-wrapper::before {
  content: "";
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
  -webkit-order: 9999;
  -ms-flex-order: 9999;
  order: 9999;
}

.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  /* top: var(--swiper-navigation-top-offset, 50%); */
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transform-origin: center;
  transform-origin: center;
}

.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "";
}

.swiper-pagination {
  position: relative;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled>.swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0;
  padding-top: 20px;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: #6e6e6e;
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical>.swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical>.swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  -ms-touch-action: none;
  touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode>.swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid>.swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-grid-column>.swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next+.swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property: opacity, height, -webkit-transform;
  transition-property: opacity, height, -webkit-transform;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

#offer01,
#offer02,
#offer03 {
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {

  #offer01,
  #offer02,
  #offer03 {
    margin-bottom: 60px;
  }
}

.swiper-button-prev {
  bottom: -14px !important;
  left: calc(50% - 100px) !important;
}

.swiper-button-next {
  bottom: -14px !important;
  right: calc(50% - 100px) !important;
}

.slider {
  margin-top: 30px;
}

.slider-container {
  position: relative;
  margin-bottom: 50px;
}

.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  height: 40px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  width: 40px;
  height: 40px;
  margin: auto;
}

.swiper-button-prev::after {
  background-image: url(https://images.microcms-assets.io/assets/ece572d76912450892bb3e5b9b199a80/09d52f7ec193497e839d5fa5c774a3c5/PC_arrow-left.png);
}

.swiper-button-next::after {
  background-image: url(https://images.microcms-assets.io/assets/ece572d76912450892bb3e5b9b199a80/609b63e85bee48babda6fc564059322b/PC_arrow-right.png);
}