/*=============================================
=            COMMON            =
=============================================*/
main {
  margin-top: 80px;
  color: #333;
}

/* MEDIA QUERY MEDIUM */
@media only screen and (min-width: 768px) {
  main {
    margin-top: 90px;
  }
}

/*=====  End of COMMON  ======*/

/*=============================================
=            PAGEHEAD            =
=============================================*/
#pageHead {
  margin-top: 0px;
  padding-top: 80px;
  position: relative;
}
#pageHead .bgDots {
  content: "";
  position: absolute;
  top: 10px;
  left: 15px;
  width: 100px;
  z-index: 1;
}

#pageHead .bgDots.tr {
  content: "";
  position: absolute;
  top: 1;
  left: auto;
  right: 15px;
  z-index: 1;
}

#pageHead h1 {
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  color: #10347e;
  margin-bottom: 30px;
  line-height: 1.5;
}

#pageHead.feature h1 {
  margin-bottom: 100px;
}

#pageHead h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  color: #10347e;
  line-height: 1.5;
}
#pageHead p {
  text-align: center;
  font-size: 1rem;
  color: grey;
}
#pageHead .annoBox {
  margin-top: 20px;
  margin-bottom: 20px;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}
#pageHead .annoBox ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  font-size: 1.2rem;
}
#pageHead .annoBox ul li {
  padding-left: 2em;
  text-indent: -2em;
}

/* MEDIA QUERY MEDIUM */
@media only screen and (min-width: 768px) {
  #pageHead {
    margin-top: 40px;
    padding-top: 40px;
  }

  #pageHead .bgDots {
    width: 195px;
    top: 0%;
    left: 2%;
  }
  #pageHead .bgDots.tr {
    right: 2%;
  }
  #pageHead .annoBox ul {
    font-size: 1.4rem;
  }
}

/*=====  End of PAGEHEAD  ======*/

/*=============================================
=            PLAN            =
=============================================*/
#plan {
  padding-top: 30px;
}

/*----------  plan tab  ----------*/

#plan .planTab {
  padding-left: 0;
  margin-bottom: 50px;
  list-style-type: none;
}

#plan .planTab > li {
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7f7f7;

  cursor: pointer;
  color: #10347e;
  margin-bottom: 10px;
}
#plan .planTab > li.active {
  color: #fff;
}

#plan .planTab > li.new.active {
  background-color: #10347e;
}

#plan .planTab > li.divert {
  color: #e64545;
}

#plan .planTab > li.divert.active {
  color: #fff;
  background-color: #e64545;
}

#plan .planTab > li .title {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.5;
}
#plan .planTab > li .title span {
  font-size: 1.4rem;
}
#plan .planTab > li .subTitle {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
}

/* MEDIA QUERY MEDIUM */
@media only screen and (min-width: 768px) {
  #plan .planTab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 0;
  }
  #plan .planTab > li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    margin-bottom: 0;
    border-radius: 8px 8px 0 0;
  }

  #plan .planTab > li .title {
    font-size: 2.4rem;
  }
  #plan .planTab > li .title span {
    font-size: 1.6rem;
  }
}

/* MEDIA QUERY EXTRA LARGE */
@media only screen and (min-width: 1200px) {
  #plan .planTab > li .subTitle {
    font-size: 1.6rem;
  }
}

/*----------  plan wrapper  ----------*/

#plan .planWrapper {
  background-color: #e6eaf2;
  padding: 30px 15px;
  display: none;
}
#plan .planWrapper.active {
  display: block;
}
#plan .planWrapper#plan_divert {
  background-color: #fff2f2;
}

#plan .planWrapper .toDetail {
  line-height: 1.5;
  margin: 0 auto;
  text-align: center;
  font-size: 2rem;
  color: #10347e;
}

#plan .planWrapper .toDetail a {
  width: 50px;
  height: 25px;
  color: #fff;
  background: #10347e;
  margin-left: 10px;
  border-radius: 3px;
  padding: 2px 6px;
}

#plan .planWrapper .planInner {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
#plan .planWrapper .planInner .innerNavWrapper {
  margin-bottom: 0px;
}
#plan .planWrapper .planInner .innerNavWrapper ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

#plan .planWrapper .planInner .innerNavWrapper ul a {
  text-decoration: none;
  background-color: #fff;
  color: #10347e;
  border: 1px solid #10347e;
  font-size: 1.2rem;
  padding: 5px 10px;
  display: block;
  margin: 3px;
}
#plan .planWrapper#plan_divert .planInner .innerNavWrapper ul a {
  color: #e64545;
  border-color: #e64545;
}

#plan .planWrapper .planInner .innerNavWrapper ul a i {
  margin-left: 5px;
}
#plan .planSection {
  padding-top: 30px;
  margin-bottom: 10px;
}

#plan .planSection:last-child {
  margin-bottom: 0px;
}
#plan .planSection h3 {
  font-size: 1.65rem;
  color: #10347e;
  margin-bottom: 13px;
  padding-left: 1em;
  text-indent: -1em;
}
#plan .planSection h3 .small {
  font-size: 1.4rem;
  color: #333;
  display: block;
}

#plan #plan_divert .planSection h3 {
  color: #e64545;
}

/* MEDIA QUERY MEDIUM */
@media only screen and (min-width: 768px) {
  #plan .planSection {
    margin-bottom: 30px;
  }
  #plan .planWrapper {
    padding: 60px 15px;
  }

  #plan .planWrapper .planInner .innerNavWrapper {
    margin-bottom: 30px;
  }

  #plan .planWrapper .planInner .innerNavWrapper ul a {
    font-size: 1.4rem;
    margin: 5px;
    padding: 5px 15px;
  }

  #plan .planSection h3 {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  #plan .planSection h3 .small {
    display: inline;
  }
}

/*----------  CHART  ----------*/

#plan .planSection .chartWrapper {
  margin-bottom: 30px;
}

#plan .planSection .chartWrapper dl {
  border-bottom: 1px solid #e6eaf2;
  margin-bottom: 0;
  background-color: #fff;
  color: #10347e;
  margin-bottom: 15px;
}
#plan #plan_divert .planSection .chartWrapper dl {
  color: #e64545;
}

#plan .planSection .chartWrapper dl:last-child {
  border: none;
}

#plan .planSection .chartWrapper dl dt {
  background-color: #10347e;
  color: #fff;
  padding: 10px 20px;
  font-size: 1.6rem;
  line-height: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: block;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#plan #plan_divert .planSection .chartWrapper dl dt {
  background-color: #e64545;
}

#plan .planSection .chartWrapper dl dd {
  font-size: 1.6rem;
  padding: 10px 20px;
  line-height: 1.5em;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#plan .planSection .chartWrapper dl.cols-3 .discountCol {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: bold;
}

#plan .planSection .chartWrapper dl.cols-3 .standardCol {
  background-color: #f9fafc;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#plan #plan_divert .planSection .chartWrapper dl.cols-3 .standardCol {
  background-color: #fcf9f9;
}

#plan .planSection .chartWrapper dl.cols-3 dd {
  text-align: center;
}

/* detail3 遷移 */
#plan .planSection .chartWrapper dl.cols-3 a {
  font-size: 1.4rem;
  color: #ffff00;
  text-decoration: underline;
}
#plan .planSection .chartWrapper dl.cols-3 a:hover {
  opacity: 0.7;
}
/* detail3 遷移 */

#plan .planSection .chartWrapper dl.titleRow {
  display: none;
}
#plan .planSection .chartWrapper dl.titleRow > * {
  background-color: #333 !important;
  color: #fff;
  border-right: #e6eaf2 1px solid;
}
#plan .planSection .chartWrapper .planMoBox {
  margin-bottom: 5px;
}

#plan .planSection .chartWrapper .planMoBox:last-child {
  margin-bottom: 0px;
}
#plan .planSection .chartWrapper .planMoBox h6 {
  margin-bottom: 0;
  background-color: #10347e;
  color: #fff;
  padding: 10px 15px;
  font-size: 1.4rem;
}

/* detail3 遷移 */
#plan .planSection .chartWrapper .planMoBox h6 a {
  font-size: 1.2rem;
  color: #ffff00;
  text-decoration: underline;
}
/* detail3 遷移 */

#plan #plan_divert .planSection .chartWrapper .planMoBox h6 {
  background-color: #e64545;
}
#plan .planSection .chartWrapper dl.cols-mo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
}

#plan .planSection .chartWrapper dl.cols-mo dt {
  background: #333;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 130px;
  font-size: 1.2rem;
  padding: 10px;
}
#plan #plan_divert .planSection .chartWrapper dl.cols-mo dt {
  background-color: #333;
}

#plan .planSection .chartWrapper dl.cols-mo dd {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
#plan .planSection .chartWrapper dl.cols-mo dd.discountCol {
  font-weight: bold;
  font-size: 1.2em;
}

#plan .planSection .annoBox ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  margin-top: 15px;
  font-size: 1.2rem;
}
#plan .planSection .annoBox ul li {
  padding-left: 1em;
  text-indent: -1em;
}

#plan .planSection .chartWrapper dl.cols-2 a {
  text-decoration: underline;
}
#plan .planSection .chartWrapper dl.cols-2 a:hover {
  opacity: 0.7;
}

/* MEDIA QUERY MEDIUM */
@media only screen and (min-width: 768px) {
  #plan .planSection .chartWrapper dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
  }
  #plan .planSection .chartWrapper dl dt {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 250px;
    flex: 0 0 250px;
    max-width: 250px;
    padding: 15px;
    font-size: 1.6rem;
  }

  #plan .planSection .chartWrapper dl dd {
    font-size: 1.6rem;
  }

  #plan .planSection .chartWrapper dl.cols-3 .discountCol {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 220px;
    flex: 0 0 220px;
    max-width: 220px;
  }

  #plan .planSection .annoBox ul {
    font-size: 1.4rem;
  }

  #plan .planSection .chartWrapper dl.titleRow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  #plan .planSection .chartWrapper.options dl dd {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  #plan .planSection .chartWrapper.options dl dt {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 350px;
    flex: 0 0 350px;
    max-width: 350px;
  }
}

/* MEDIA QUERY LARGE */
@media only screen and (min-width: 992px) {
  #plan .planSection .chartWrapper dl dt {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
    max-width: 300px;
    padding: 20px;
    font-size: 1.8rem;
  }

  #plan .planSection .chartWrapper dl.cols-3 .discountCol {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
    max-width: 300px;
    font-size: 2.2rem;
  }

  #plan .planSection .chartWrapper dl dd {
    font-size: 1.8rem;
  }

  #plan .planSection .chartWrapper.options dl dt {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 500px;
    flex: 0 0 500px;
    max-width: 500px;
  }
}

/*----------  PAYMENT  ----------*/

#plan .planSection .paymentWrapper {
  background-color: #fff;
  padding: 40px 20px;
  text-align: center;
}
#plan .planSection .paymentWrapper h6 {
  color: #10347e;
  font-size: 1.8rem;
  margin-bottom: 0;
}

#plan #plan_divert .planSection .paymentWrapper h6 {
  color: #e64545;
}
#plan .planSection .paymentWrapper p {
  font-size: 1.4rem;
  margin-bottom: 0;
}
/* #plan .planSection .paymentWrapper img {
  width: 500px;
  margin-left: auto;
  margin-right: auto;
} */
.card-size img {
  width: 70%;
}
.saison img {
  width: 90%;
}

/*----------  flow  ----------*/
#plan .flowWrapper {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
  position: relative;
}

#plan .flowWrapper:before {
  position: absolute;
  content: "";
  width: 30px;
  height: 75%;
  top: 50%;
  left: 70px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 0;
  background-color: #9ba9c6;
}

#plan .flowSubTitle {
  text-align: center;
  color: #e64545;
  font-size: 1.8rem;
  margin-top: 40px;
}
#plan .flowSubTitle span {
  font-size: 1.4rem;
}
#plan #plan_divert .flowWrapper:before {
  background-color: #ff9a9a;
}

#plan .flowWrapper .flowBox {
  color: #10347e;
  margin-left: 20px;
  margin-right: 20px;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}
#plan .flowWrapper .flowBox img {
  margin-right: 20px;
  width: 100px;
}
#plan #plan_divert .flowWrapper .flowBox {
  color: #e64545;
}

#plan .flowWrapper .flowBox h6 {
  font-size: 1.8rem;
  margin-bottom: 0;
}

#plan .flowWrapper .flowBox p {
  font-size: 1.4rem;
  margin-bottom: 0;
}

/* MEDIA QUERY MEDIUM */
@media only screen and (min-width: 768px) {
  .card-size_sp img {
    width: 45%;
  }
  .saison_sp img {
    width: 70%;
  }
  #plan .flowWrapper:before {
    position: absolute;
    content: "";
    width: 75%;
    height: 30px;
    top: 65px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 0;
    background-color: #9ba9c6;
  }

  #plan .flowWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #plan .flowWrapper .flowBox {
    display: block;
    margin-bottom: 0;
    text-align: center;
  }
  #plan .flowWrapper .flowBox img {
    margin-bottom: 20px;
    margin-right: 0;
    width: 130px;
  }
}

/*----------  AREA INNER  ----------*/
#plan .areaInner {
  margin-top: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  text-align: center;
  padding: 30px 15px 40px;
  border-radius: 8px;
  -webkit-box-shadow: 0px 0px 20px rgb(0 0 0 / 8%);
  box-shadow: 0px 0px 20px rgb(0 0 0 / 8%);
}

#plan .areaInner h5 {
  color: #10347e;
  display: inline-block;
  font-size: 2rem;
  padding: 10px 20px;
  border-bottom: 1px solid #10347e;
  margin-bottom: 30px;
}
#plan .areaInner h6 {
  font-size: 1.6rem;
  margin-bottom: 0.5em;
  margin-top: 2em;
}

#plan #plan_divert .areaInner h5 {
  color: #e64545;
  border-color: #e64545;
}

#plan .areaInner .btnRow .areaBtn {
  background-color: #10347e;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 8px 0px;
  width: 100%;
  max-width: 100%;
  height: 60px;
  font-weight: bold;
  font-size: 1.6rem;
}

#plan #plan_divert .areaInner .btnRow .areaBtn {
  background-color: #e64545;
}

/* MEDIA QUERY MEDIUM */
@media only screen and (min-width: 768px) {
  #plan .areaInner {
    padding: 35px 15px 60px;
  }
  #plan .areaInner .btnRow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  #plan .areaInner .btnRow .areaBtn {
    width: 390px;
    margin: 5px 10px;
    height: 90px;
    font-size: 2rem;
  }
}

/*----------  TENYOU  ----------*/

#plan #plan_divert .tenyouBox {
  padding: 25px 15px;
  text-align: left;
  background-color: #f7f7f7;
  margin-bottom: 10px;
}

#plan #plan_divert .tenyouBox h6 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 0;
}
#plan #plan_divert .tenyouBox .tel {
  color: #e64545;
  font-weight: bold;
  font-size: 2.4rem;
  display: inline-block;
  margin-bottom: 5px;
}

#plan #plan_divert .tenyouBox p {
  font-size: 1.4rem;
  margin-bottom: 0px;
}
#plan #plan_divert .tenyouBox .link {
  font-size: 1.2rem;
  color: #e64545;
  text-decoration: underline;
}

/* MEDIA QUERY MEDIUM */
@media only screen and (min-width: 768px) {
  #plan #plan_divert .tenyouBox {
    padding: 30px;
    margin-bottom: 0;
  }
}

/*----------  discount modal  ----------*/
.discountDsc {
  font-size: 1.4rem;
  margin-top: 10px;
}
.discountDsc a {
  text-decoration: underline;
  font-weight: bold;
}

.modaal-wrapper .modaal-close {
  border: #10347e 2px solid;
  background: #fff;
}
.modaal-close:after,
.modaal-close:before,
.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #10347e;
}
.modaal-close:after,
.modaal-close:before {
  top: 13px;
  left: 22px;
  width: 3px;
}

.modaal-content-container {
  padding: 15px 10px;
}

.modaal-wrapper .discountBox {
  margin-bottom: 50px;
}
.modaal-wrapper .discountBox:last-child {
  margin-bottom: 0px;
}

.modaal-wrapper .discountBox h3 {
  color: #10347e;
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 5px;
}
.modaal-wrapper .discountBox p {
  font-weight: bold;
  margin-bottom: 0px;
  font-size: 1.4rem;
}
.modaal-wrapper .discountBox ul {
  font-size: 1rem;
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.modaal-wrapper .discountBox .priceBox {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-top: 20px;
}
.modaal-wrapper .discountBox .priceBox dl {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
  font-size: 1.4rem;
}
.modaal-wrapper .discountBox .priceBox dl:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.modaal-wrapper .discountBox .priceBox dl dd {
  color: #e64545;
  font-weight: bold;
  margin-bottom: 0;
}

/* MEDIA QUERY MEDIUM */
@media only screen and (min-width: 768px) {
  .modaal-close {
    top: 15px;
    right: 40px;
  }
  .modaal-content-container {
    padding: 35px 25px;
  }

  .modaal-wrapper .discountBox h3 {
    font-size: 2.4rem;
  }
  .modaal-wrapper .discountBox p {
    font-size: 1.6rem;
  }
  .modaal-wrapper .discountBox ul {
    font-size: 1.2rem;
  }
  .modaal-wrapper .discountBox .priceBox {
    padding: 30px;
  }

  .modaal-wrapper .discountBox .priceBox dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1.6rem;
  }

  .modaal-wrapper .discountBox .priceBox dl dt {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 500px;
    flex: 0 0 500px;
  }
}

/*=====  End of PLAN  ======*/

/*=============================================
=            PAGE BOTTOM            =
=============================================*/
#pageBottom {
  position: relative;
  height: 100px;
}
#pageBottom .bgDots {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  width: 100px;
  z-index: 1;
  -webkit-transform: rotate(180deg) translateY(50%);
  -ms-transform: rotate(180deg) translateY(50%);
  transform: rotate(180deg) translateY(50%);
}

#pageBottom .bgDots.br {
  content: "";
  position: absolute;
  left: auto;
  right: 15px;
  z-index: 1;
}

/* MEDIA QUERY MEDIUM */
@media only screen and (min-width: 768px) {
  #pageBottom {
    height: 195px;
  }
  #pageBottom .bgDots {
    width: 195px;
  }

  #pageBottom .bgDots {
    left: 2%;
  }

  #pageBottom .bgDots.br {
    right: 2%;
  }
}

/*=====  End of PAGE BOTTOM  ======*/

/*=============================================
=            BENEFIT            =
=============================================*/
#benefit {
  margin-top: 0px;
  padding-top: 30px;
}
#benefit .planWrapper {
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.24);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.24);
  border-radius: 5px;
  margin-bottom: 30px;
}

#benefit .planWrapper .planTitleWrapper {
  background-color: #002f7b;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  border-radius: 5px 5px 0 0;
  height: 70px;
}
#benefit .planWrapper .planTitleWrapper h3 {
  margin-bottom: 0px;
  /* font-size: 1.6rem; */
  font-size: 1.4rem;
  line-height: 40px;

  color: transparent;
  background: linear-gradient(
    0deg,
    #b67b03 0%,
    #daaf08 45%,
    #fee9a0 70%,
    #daaf08 85%,
    #b67b03 90% 100%
  );
  -webkit-background-clip: text;
}
#benefit .planWrapper .dscWrapper {
  padding: 20px 20px;
}

#benefit .planWrapper .dscWrapper h4 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0;
}
#benefit .planWrapper .dscWrapper h4 span {
  font-size: 60%;
}
#benefit .planWrapper .dscWrapper .dscBox {
  color: #333;
  font-size: 1.4rem;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

#benefit .planWrapper .dscWrapper .dscBox a {
  text-decoration: underline;
  color: #002f7b;
}

#benefit .planWrapper .dscWrapper .dscBox h6 {
  margin-bottom: 0;
  margin-top: 10px;
  font-size: 1.4rem;
}

#benefit .planWrapper .dscWrapper .moreBtn {
  display: block;
  max-width: 200px;
  /* margin-top: 30px; */
  margin-top: 0px;
  margin-left: auto;
  margin-right: auto;
  background-color: #ffff00;
  color: #002f7b;
  text-align: center;
  text-decoration: none;
  padding: 18px 10px;
  border-radius: 3px;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);
}

/* MEDIA QUERY MEDIUM */
@media only screen and (min-width: 768px) {
  #benefit {
    margin-top: 30px;
    margin-top: 60px;
  }
  #benefit .planWrapper .planTitleWrapper {
    padding: 20px 10px;
  }
  #benefit .planWrapper .planTitleWrapper h3 {
    font-size: 2.4rem;
    /* font-size: 1.6rem; */
  }

  #benefit .planWrapper .dscWrapper {
    padding: 40px 20px;
  }

  #benefit .planWrapper .dscWrapper h4 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }

  #benefit .planWrapper .dscWrapper .moreBtn {
    /* margin-top: 50px; */
    margin-top: 30px;
  }
  #benefit .planWrapper .dscWrapper .dscBox {
    font-size: 1.6rem;
  }
  #benefit .planWrapper .dscWrapper .dscBox span {
    font-size: 1rem;
  }
  #benefit .planWrapper .dscWrapper p {
    font-size: 1rem;
    text-align: center;
  }
}

/*----------  SWIPER NAV  ----------*/

#benefit .swiperNavWrapper {
  margin-top: 30px;
  max-width: 310px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 700;
  position: relative;
  height: 10px;
}

#benefit .swiperNavWrapper .swiper-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

#benefit .swiperNavWrapper .swiper-nav.swiper-button-disabled {
  opacity: 0.3;
}
#benefit .swiperNavWrapper .swiper-nav.swiper-next {
  right: 0;
}

#benefit .swiperNavWrapper .swiper-scrollbar {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 50;
  height: 2px;
  width: 98%;
  max-width: 210px;
  background-color: #b4adad;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#benefit .container {
  margin-bottom: 60px;
}

#benefit .contactBtn {
  background-color: #ffff00;
  color: #002f7b;
  display: block;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  text-decoration: none;
  padding: 30px 15px;
  font-size: 2.4rem;
  line-height: 1;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}
/*----------  End of SWIPER NAV  ----------*/

/*=====  End of BENEFIT  ======*/

/* FEATURE */

.feature h1 {
  margin-bottom: 60px;
}

.feature .panelWrapper .panel {
  position: relative;
}

.feature .panelWrapper img {
  width: 100%;
  display: block;
  padding: 2%;
}

.feature .panelWrapper .textWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  width: 55%;
}

.feature .panelWrapper h3 {
  font-size: 3rem;
  color: #fff;
  text-shadow: 0 0 10px #fff, 0 0 15px #fff;
  margin: 0 auto;
  text-align: center;
}

.feature .panelWrapper .textWrapper h4 {
  color: #0fb9f5;
  margin: 0 auto 1rem;
  text-align: center;
}

.feature .panelWrapper .textWrapper p {
  width: 70%;
  margin: 0 auto;
}

/* End of FEATURE */

#keyVisual {
  margin-bottom: 60px;
}

#keyVisual .keyVisualWrapper {
  width: calc(100vw - 200px);
  max-width: 1300px;
  margin: 0 auto;
  content: "";
  /* position: relative; */
}
