@charset "EUC-JP";

sup {
  vertical-align: super;
  font-size: 0.55em;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Mobile only */
@media screen and (max-width: 1000px) {
  .spHide {
    display: none;
  }

  .container {
    padding: 0 20px;
  }
}

/* PC only */
@media screen and (min-width: 1001px) {
  .pcHide {
    display: none;
  }
}

/* bxSlider */

.bx-wrapper{
  position: relative;
}

.bx-controls-direction a,
.slick-arrow{
  width: 46px;
  height: 46px;
  background-size: contain;
  display: block;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.bx-next,
.slick-next{
  background: url(/img/icon-next03@2x.png) no-repeat top left;
  background-size: contain;
  right: 20px;
}

.bx-prev,
.slick-prev{
  background: url(/img/icon-prev03@2x.png) no-repeat top left;
  background-size: contain;
  left: 20px;
  z-index: 1;
}

.bx-next.disabled,
.bx-prev.disabled{
  display: none!important;
}

/* --------------------------------- */
/* btn */

.btns {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  font-size: 16px;
}

.btns li {
  flex: 1;
  max-width: 400px;
  position: relative;
  text-align: center;
}

.btn {
  line-height: 1;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  border-radius: 3em;
  color: #fff;
  text-align: center;
  display: inline-block; 
  padding: 19px 23px 19px 15px;
  font-size: 18px;
  font-weight: bold;
  width: 100%;
}

.btn-primary {
  background: #447355;
}

.btn-primary:hover {
  color: #fff;
  background-color: #395944;
}

.btns .btn.disabled {
  background-color: #dddddd;
  pointer-events: none;
}

.btn-secondary{
  background: #fff;
  border: 1px solid #447355;
  color: #447355;
  font-size: 18px;
  font-weight: bold;
  max-width: 400px;
}
/* 
.btn-subscribe,
.btn-purchase {
  background: #518a70 url(/img/index_arw_06.png) no-repeat 92.7% center;
  -webkit-background-size: 7px auto;
  background-size: 7px auto;
}

.btn-subscribe:hover,
.btn-purchase:hover {
  color: #fff;
  background-color: rgba(81, 138, 112, 0.8);
} */

.btns .fukidashi{
  /* position: absolute; */
  background: #EBC172;
  border-radius: 5em;
  /* color: #447355; */
  color: #000;
  /* font-size: 16px; */
  font-size: 13px;
  letter-spacing: 0.05em;
  /* line-height: 1.375; */
  line-height: 1.2;
  padding: 8px 28px;
  display: inline-block;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: -11px;
  position: relative;
}

.btns .fukidashi::after{
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
  border-top: 10px solid #EBC172;
  border-bottom: 0;
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform:translate(-50%,0);
}

@media screen and (max-width: 1000px) {
  .btns {
    justify-content: space-between;
    gap: 10px;
  }

  .btns li {
    flex: 1;
  }
}

/* --------------------------------- */
/* nav-sub */


#nav-sub {
  position: sticky;
  top: 70px;
  background: #87A28E;
  width: 100%;
  box-shadow: 0px 3px 6px -3px rgba(0, 0, 0, 0.16);
  z-index: 999;
  /* padding: 8px 0; */
  border-top: 3px solid #447355;
}

#nav-sub .wrapper .product-name{
  color: #fff;
  font-weight: bold;
}

.nav-sub-link ul {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 50px;
  font-weight: bold;
  font-size: 14px;
  /* margin: 0 16px; */
}

.nav-sub-link li {
  text-align: center;
}

.nav-sub-link li > a {
  position: relative;
  display: block;
  padding: 9px 0;
  color: #fff;
  line-height: 1;
}

.nav-sub-link li > a::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #447355;
  position: absolute;
  bottom: 0;
  left: 0;
  visibility: hidden;
}


/* Mobile only */
@media screen and (max-width: 1000px) {

  #nav-sub {
    position: sticky;
    top: 0;
  }
  
 
  #nav-sub .wrapper .product-name {
    padding: 9px 20px;
    line-height: 1.375;
    position: relative;
  }

  #nav-sub .wrapper .product-name::after{
    content: "";
    width: 10px;
    height: 5px;
    background: url("/img/icon-arrow.svg") no-repeat center center;
    background-size: contain;
    transform: rotate(180deg);
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
    position: absolute;
    top: 50%;
    right: 20px;
  }
  
   #nav-sub .wrapper.open > .product-name::after {
    transform: rotate(0deg);
   }

   #nav-sub .wrapper .nav-sub-link {
    display: none;
    position: absolute;
    width: 100%;
   }

   #nav-sub .wrapper .nav-sub-link ul {
    flex-direction: column;
    margin: 0;
    width: 100%;
    border-top: 1px solid #ececec;
    font-size: 14px;
    /* top: 46px; */
    background: #87A28E;
    z-index: 10;
    gap: 0;

   }
  
   #nav-sub .wrapper .nav-sub-link ul li {
    border-bottom: 1px solid #ececec;
    width: 100%;
    text-align: left;
   }
  
   #nav-sub .wrapper .nav-sub-link ul li a {
    padding: 18px 20px;
    font-weight: bold;
   }

}

/* PC only */
@media screen and (min-width: 1001px) {


  #nav-sub .wrapper {
    max-width: 1000px;
    margin: 0 auto;
    
  }

  #nav-sub .wrapper .product-name{
    display: none;
  }

  #nav-sub .wrapper .nav-sub-link{
    padding: 8px 0;
  }


  #nav-sub .wrapper .nav-sub-link ul {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    /* margin-left: 16px; */
  }

  
.nav-sub-link li > a:hover::after ,
.nav-sub-link li > a.active::after {
  visibility: visible;
}

}

/* --------------------------------- */
/* .section */

.section {
  /* padding-bottom: 50px; */
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.section h2 {
  font-size: 30px;
  color: #3C4453;
  text-align: center;
  line-height: 1.1538461538461537;
  letter-spacing: 0.1em;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 2px solid #87a28e;
  padding-bottom: 22px;
  font-weight: bold;
}


/* Mobile only */
@media screen and (max-width: 1000px) {
.section h2{
  font-size: 26px;
  padding-bottom: 12px;
}
}

/* PC only */
@media screen and (min-width: 1001px) {
  .section {
    padding: 80px 0;
  }

  /* .section::before {
    padding-top: 100px;
  } */

}


/* --------------------------------- */
/* kv */

#kv .key-visual .bx-kv-container{
  overflow: hidden;
  width: 500px;
  height: 400px;
  background: url('../img/placeholder.png') center/cover no-repeat;
}

#kv .key-visual .bx-kv-container.loaded{
  background: none;
}

.lazyload {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.lazyload.loaded {
  opacity: 1;
}

#kv .key-visual .kv-bxslider{
  display: flex;
}

#kv .key-visual .kv-bxslider li{
  text-align: center;
  position: relative;
}

#kv .key-visual .kv-bxslider li .bnr{
  position: absolute;
  top: 0;
  right: 0;
  max-width: 140px;
}

#kv .coupon{
  color: #6e89f8;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin: 30px 0 12px;
}

#kv .price{
  color: #518a70;
  font-size: 20px;
  margin-top: 22px;
}

#kv .price strong{
  font-size: 34px;
}

#kv .attention {
  font-size: 12px;
  color: #518a70;
  line-height: 1.6;
  margin-bottom: 14px;
}

#kv .attention-description {
  font-size: 12px;
  color: #518a70;
  line-height: 1.5;
  margin-top: 12px;
  margin-bottom: 12px;
}

#kv .attention-description .title {
  font-size: 16px;
  color: #518a70;
  line-height: 1.5;
  margin-top: 12px;
  margin-bottom: 12px;
}

#kv .attention-description li::before {
    content: "";
    background: url(../img/wifi-green.png) no-repeat center center;
    width: 19px;
    height: 16px;
    background-size: contain;
    display: inline-block;
    margin-right: 16px;
}

#kv .mizubuki img {
  margin-top: 12px;
  height: 35px;
  width: auto;
}

#kv .select-box {
  margin-top: 30px;
}

#kv .select-box .select-color{
  font-size: 14px;
}

.color-list{
  display: flex;
  gap: 16px;
  align-items: center;
  padding-left: 2px;
  margin: 20px 0 30px;
}

.color-list li {
  border-radius: 5px;
  line-height: 1;
  cursor: pointer;
  width: 50px;
  height: 50px;
  opacity: 0.5;
}

.color-list li.active {
  outline: 2px solid #447355;
  opacity: 1;
}

.color-list li img{
  width: 100%;
}

/* bx-nav-container */
#kv .bx-nav-container{
  position: relative;
  margin: 30px 0;
}

#kv .bx-nav-container .bx-pager{
  display: flex;
  /* gap: 0 13px; */
}

#kv .bx-nav-container .bx-pager li{
  border-radius: 5px;
  overflow: hidden;
  width: 64px;
}

#kv .bx-nav-container .bx-pager .active{
  outline: 2px solid #447355;
  outline-offset:-2px;
  display: block;
}

#kv .bx-nav-container .bx-pager img{
  width: 100%;
}


#kv .bx-nav-container .bx-controls-direction a{
  width: 35px;
  height: 35px;
  background: #6CBB86;
  border: 1px solid #fff;
  border-radius: 5em;
  display: block;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  top: 50%;
  
}

#kv .bx-nav-container .bx-controls-direction a::before{
  content: "";
  width: 20px;
  height: 20px;
  display: block;
background-color: #fff;
mask-position: center center;
mask-repeat: no-repeat;
mask-size: contain;
}

#kv .bx-nav-container .bx-prev{
  left: 0;
  transform: translate(-50%, -50%);
}

#kv .bx-nav-container .bx-prev::before{
  mask-image: url(/img/icon-prev06@2x.png);

}

#kv .bx-nav-container .bx-next{
  right: 0;
  transform: translate(50%, -50%);
}

#kv .bx-nav-container .bx-next::before{
  mask-image: url(/img/icon-next06@2x.png);

}

#kv .checks-list{
  border-top: 1px solid #e4e5e7;
  border-bottom: 1px solid #E4E5E7;
  padding: 30px 0;
  margin: 30px 0;
}

#kv .checks-list h2{
  color: #447355;
  font-size: 20px;
  margin-bottom: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

#kv .checks-list li{
  font-size: 18px;
  letter-spacing: 0.1em;
}

#kv .checks-list li::before{
  content: "";
  background: url(../img/icon-check.png) no-repeat center center;
  width: 19px;
  height: 16px;
  background-size: contain;
  display: inline-block;
  margin-right: 16px;
}

#kv .attention-list li{
  padding-left: 0;
}

#kv .attention-list span{
  min-width: auto;
  margin-left: 0;
}

/* --------------------------------------- */
/* Mobile only */
@media screen and (max-width: 1000px) {
  #kv { 
    padding-top: 23px;
    padding-bottom: 50px;
  }
  
  #kv .key-visual .bx-kv-container{
    width: 100%;
    height: auto;
  }

  #kv h1{
    margin-bottom: 30px;
  }

  #kv h1 img {
    max-height: 90px;
  }

  #kv .lead{
    margin-bottom: 30px;
  }

  #kv .key-visual .kv-bxslider img {
    width: auto;
    max-height: 250px;
  }

  #kv .mizubuki img {
  margin-top: 12px;
  height: 35px;
  width: auto;
  }

}



/* PC only */
@media screen and (min-width: 1001px) {
  #wrapper {
    padding-top: 50px;
  }

  #kv { 
    padding: 70px 0 80px;
  }

  #kv .grid{
    display: grid;
    grid-template-areas:
      "image label"
      "image text"
      ;
    grid-template-columns: 500px 1fr;
    grid-template-rows: auto auto;
    gap: 0 100px;
  }

  #kv .label {
    grid-area: label;
    margin:0 0 30px 0;
  }

  #kv .key-visual {
    margin: 0;
    grid-area: image;
  }
  
  #kv .key-visual .bx-wrapper{
    max-height: 400px;
  }


  #kv .key-visual .kv-bxslider img{
    max-height: 400px;
    width: auto;
  }

  #kv .key-visual .kv-bxslider li .bnr{
    max-width: 205px;
  }

  #kv .kv-text{
    grid-area: text;
    max-width: 400px;
  }

#kv .select-box{
  margin-top: 13px;
}

  .color-list li .price {
    font-size: 24px;
  }

  .color-list li p {
    font-size: 16px;
  }

}


/* --------------------------------- */
/* cp-slider */

.cp-slide-box {
  margin: 30px auto 20px;
}


.cp-slider li {
  max-width: 100%;
  margin-bottom: 10px;
}

.cp-slider li img {
  width: 100%;
}


/* --------------------------------- */
/* #feature */

#feature {
  background: #f4f4f4;
}


#feature .feature-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 60px;
}

#feature .feature-list li{
  
  text-align: center;
  color: #6A768C;
  line-height: 1.5;
}

/* Mobile only */
@media screen and (max-width: 1000px) {

  #feature .feature-list{
    gap: 30px 0;
    margin-top: 40px;
  }

  #feature .feature-list li{
    width: 33.8%;
    width: 50%;
    font-size: 14px;
    padding: 0 13px;
    box-sizing: border-box;
  }

  #feature .feature-list li img{
    height: 60px;
    margin-bottom: 15px;
  }
}

/* PC only */
@media screen and (min-width: 1001px) {

  #feature .feature-list li{
    width: 25%;
  }

  #feature .feature-list li img{
    margin-bottom: 9px;
    /* max-width: 100px; */
    max-height: 80px;
  }

}


/* --------------------------------- */
/* #movie */

#movie .mov-list-inr{
  position: relative;
  width: 100%;
  height: max-content;
  aspect-ratio: 560 / 315;
}

.conv-movie-inr{
  width: 100%;
  height: 100%;
}

#movie .conv-movie-inr iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.conv-movie{
display: flex;
justify-content: center;
align-items: center;
position: absolute;
width: 100%;
height: 100%;
top: 0;
bottom: 0;
right: 0;
left: 0;
margin:auto;
background: #000;
opacity: 0;
}

.is_active .conv-movie{
  opacity: 1;
}

.mov-list-item-img.delete_btn{
  opacity: 0;
  pointer-events: none;
}

.mov-list-item-img{
  position: absolute;
  display: block;
  width: 100%;
  top: 0;
}

.mov-list-item-img img{
  width: 100%;
}


/* --------------------------------- */
/* #function */

#function {
  position: relative;
  background: #EAF2E6;
}

#function h2 {
  margin-bottom: 50px;
}

#function .more-box{
  height: 0;
  opacity: 0;
  transition: .3s ease-in-out;
  transform: translateY(-30px);
  pointer-events: none;
}

#function .more-box.is-open{
  height: 100%;
  opacity: 1;
  transform: translateY(0);
  pointer-events:all;
}


.function-list{
  position: relative;
}

.function-list > li{
  margin-bottom: 30px;
  padding-left: 1.3em;
}

.function-list > li::before{
  content:'¡ü';
  font-size: 0.5em;
  position: absolute;
  left: 0;
  transform: translate(0.6em, 0.6em);
}

.function-list h3{
  font-weight: bold;
  display: inline-block;
}

.function-list-container{
  margin-bottom: 100px;
}

.function-list-container .more a{
  color: #447355;
  position: relative;
}

.function-list-container .more a::after {
  content: "";
  width: 12px;
  height: 6px;
  background: #447355;
  mask-image: url(/img/index_arw_05.png);
  mask-size: 100%;
  mask-repeat: no-repeat;
  display: inline-block;
}


#function .function-point-head{
  position: relative;
  color: #447355;
  font-size: 20px;
}

#function .function-point-head::before{
  content:"";
  width: 100%;
  height: 6px;
  background: #447355;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform:translate(0, -50%);
}

#function .function-point-head span{
  background: #eaf2e6;
  padding: 0 30px;
  position: relative;
  margin-left: 50px;
  font-weight: bold;
  font-size: 28px;
}

.function-point-container{
  padding: 60px 0;
}


.function-point-slider .flex{
  display: flex;
}


#function .number{
  font-size: 17px;
  color: #518a70;
  font-weight: bold;
  background: #DCE9D5;
  display: inline-block;
  border-radius: 3em;
  width: 34px;
  height: 34px;
  text-align: center;
}

.function-point-slider .flex .text-box .slide-num{
  display: block;
  margin-bottom: 30px;
}

.function-point-slider .flex .text-box h4{
  font-size: 22px;
  margin: 30px 0;
  line-height: 1.3636;
  font-weight: bold;
}

#function .image img {
  width: 100%;
}

#function .text-box {
  letter-spacing: 0.1em;
  line-height: 1.7143;
}

/* Mobile only */
@media screen and (max-width: 1000px) {

  .function-list-container{
    margin-bottom: 70px;
  }
  .function-point-container{
    padding: 30px 0;
    margin-right: -20px;
    overflow: hidden;
  }

  .function-point-container .bx-wrapper{
    overflow: hidden;
  }

  
.function-point-container .slick-list{
  width: 97.1% !important;
  overflow: visible !important;
}

.function-point-slider .slick-slide{
  margin-right:10px;
}


  #function h2 {
    margin-bottom: 40px;
    
  }

  #function .function-point-head{
    text-align: center;
    font-size: 24px;
    line-height: 1.3333;
  }



  #function .function-point-head span{
    display: inline-block;
    margin-left: 0;
  }

  .function-point-slider .flex{
    flex-direction: column;
  }

  #function .text-box {
    margin-top: 13px;
    padding: 0 10px;
  }
  
}

/* PC only */
@media screen and (min-width: 1001px) {

  #function{
    padding-bottom: 40px;
  }

  #function h2 {
    font-size: 40px;
    margin-bottom: 50px;
  }

  .function-point-slider .flex{
    flex-direction: row-reverse;
    align-items: center;
    gap:0 60px;
  }

  .function-point-slider .flex .image{
    width: 50%;
  }

  .function-point-slider .flex .image img{
    width: 100%;
    
  }

  .function-point-slider .flex .text-box{
    max-width: 350px;
  }

  .function-point-slider .flex .text-box h4{
    font-size: 28px;
    margin: 30px 0;
    letter-spacing: 0.02em;
  }



}

/* --------------------------------- */
/* #spec */

#spec {
  position: relative;
  padding-top: 50px;
}

#spec .product-name {
  margin-bottom: 8px;
  text-align: center;
}

/* .compare-table  */
.compare-table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
}
.compare-product-header th:last-child {
  /* width: 32.8%; */
  width: 66%;
}

.compare-product-header th {
  padding-bottom: 30px;
}

.compare-product-header .product-box {
  padding: 0;
}

.compare-table-body {
  background: #fff;
  z-index: 0;
  border-top: 2px solid #518a70;
}


.compare-product-header .product-box {
  padding: 0;
}


.compare-product-header .product-box .image{
  text-align: center;
}


.compare-table-body {
  background: #fff;
  z-index: 0;
}

.compare-table-body tr.title {
  border-bottom: 2px solid #518a70;
}

.compare-table-body h3 {
  font-size: 14px;
  color: #447355;
  text-align: left;
  margin-top: 8px;
}

.compare-table tbody th,
.compare-table tbody td {
  border-bottom: 1px solid #bebebe;
  font-size: 12px;
  line-height: 1.4;
  padding: 8px;
  /* word-break: break-all; */
  overflow-wrap: break-word;
}

.compare-table tbody th {
  /* width: 113px; */
  width: 33.7%;
  color: #518a70;
  text-align: left;
  border-bottom: 1px solid #dce9d5;
}

.compare-table tbody th img {
  height: 1em;
  vertical-align: middle;
  margin-left: 6px;
}

.compare-table tbody td {
  background: #dce9d5;
  text-align: center;
  position: relative;
  border: 1px solid #fff;
  /* width: 32.8%; */
  width: 64%;
}

.compare-table tbody sup {
  vertical-align: text-top;
  font-size: 0.5em;
}

/* .compare-table tbody .check {
  color: #518a70;
} */


/* Mobile only */
@media screen and (max-width: 1000px) {

  #spec h2{
    margin-bottom: 23px;
  }

  .compare-product-header .product-box .image{
    max-width: 100px;
    margin: 0 auto;
  }

}

/* PC only */
@media screen and (min-width: 1001px) {
  #spec {
    padding-top: 90px;
  }
  
  #spec .product-name {
    margin-top: 23px;
    margin-bottom: 60px;
  }
  
  .compare-table-body h3 {
    font-size: 20px;
  }

  .compare-table-body h2 {
    font-size: 29px;
  }

  .compare-product-header th {
    padding-bottom: 46px;
  }


  .compare-table tbody th,
  .compare-product-header th:first-child {
    max-width: 340px;
    width: 34.0%;
  }
  .compare-table tbody th,
  .compare-table tbody td {
    font-size: 16px;
    padding: 16px 20px;
    line-height: 1.75;
  }

  .compare-table-body tr.title th{
    padding:0 0 5px 0;
  }
}


/* --------------------------------- */
/* #faq */

#faq{
  background: #F4F4F4;
}

#faq .btns li{
  text-align: center;
}


/* Mobile only */
@media screen and (max-width: 1000px) {

  #faq{
    padding: 50px 0;
  }
}

/* --------------------------------- */
/* #benefits */

#benefits {
  position: relative;
}

#benefits h2 {
  margin-bottom: 80px;
  font-size: 30px;
  border-bottom: 0;
}



.benefits-list-wrapper .bx-wrapper {
  margin-left: 20px;
  overflow: hidden;
}

.benefits-list-wrapper .bx-viewport {
  overflow: visible !important;
  width: 59.1% !important;
  margin-right: auto;
}


/* .benefits-list */

.benefits-list {
  display: flex;
}

.benefits-list li {
  text-align: center;
  max-width: 240px;
  font-size: 14px;
  color: #518a70;
  padding: 20px 8px 9px;
  display: block;
  background: #D8EAD2;
}

.benefits-list li .image {
  max-width: 140px;
  height: 84px;
  margin: 0 auto;
}

.benefits-list li .image img {
  width: 100%;
}

.benefits-list li a {
  display: block;
  color: #447355;
}

.benefits-list .label {
  font-size: 24px;
  margin-top: 17px;
  line-height: 1.25;
  font-weight: 600;
  color: #447355;
}


.benefits-list .lead {
  line-height: 1.4286;
  margin-top: 6px;
  color: #447355;
}

.benefits-list .link {
  color: #6cb86a;
  text-decoration: underline;
  position: relative;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}

.benefits-list .link::after {
  content: "";

  width: 8px;
  height: 16px;
  display: inline-block;
  margin-left: 8px;
  mask-image: url(/img/index_arw_06.png);
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: 7px auto;
  background: #6cb86a;
}


/* Mobile only */
@media screen and (max-width: 1000px) {
  #benefits h2 {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .benefits-list-wrapper .bx-viewport{
    width: 67.6% !important;
  }

}

/* PC only */
@media screen and (min-width: 1001px) {
  #benefits {
    padding: 100px 0;
  }

  .benefits-list-wrapper{
    margin-bottom: 80px;
  }

  .benefits-list {
    display: flex;
    justify-content: center;
    gap: 13px;

  }

  .benefits-list .image img {
    width: 100%;
  }

  .benefits-list li {
    width: 24%;
    max-width: 240px;
    font-size: 14px;
    padding: 11px 16px 22px 16px;
  }

  .benefits-list .label strong {
    font-size: 24px;
  }
}

.paypay-box {
  border-radius: 8px;
  border: 1px solid #000;
  padding: 20px 40px;
  text-align: center;
  margin: 50px 0;
}

.paypay-box .title {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 13px;
}

.paypay-box .image {
  max-width: 70px;
  margin: 0 auto;
}

.paypay-box .image img {
  width: 100%;
}

/* PC only */
@media screen and (min-width: 1001px) {
  .paypay-box {
    margin: 60px 0;
    max-width: 456px;
    margin-left: auto;
    margin-right: auto;
    padding: 28px;
  }

  .paypay-box .image {
    max-width: 60px;
  }
  .paypay-box .title {
    margin-bottom: 20px;
  }
}


.attention-box {
  font-size: 12px;
  padding: 30px 18px;
  border: 1px solid #447355;
  line-height: 1.6667;
  margin: 50px 0;
}

.attention-box p {
  margin-bottom: 30px;
}

.attention-box a {
  color: #447355;
  text-decoration: underline;
}

.attention-box .title {
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 15px;
}

.attention-box .dot {
  position: relative;
  padding-left: 1em;
  margin: 0;
}

.attention-box .dot::before {
  content: "";
  width: 4px;
  height: 4px;
  display: inline-block;
  background: #000;
  position: absolute;
  top: 8px;
  left: 0;
} 

/* PC only */
@media screen and (min-width: 1001px) {
  .attention-box {
    padding: 30px;
    margin-bottom: 80px;
  }

  .attention-box p {
    margin-bottom: 20px;
  }
}

/* -------------------------------------------- */
/* attention-list */

.attention-list {
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
}

.attention-list li {
  padding-left: 3em;
  margin-top: 4px;
  position: relative;
  letter-spacing: 0.1em;
  /* display: flex; */
}

.attention-list span {
  display: inline-block;
  min-width: 3em;
  margin-left: -3em;
}

.attention-list a {
  text-decoration: underline;
  color: #447355;
  display: contents;
}

/* PC only */
@media screen and (min-width: 1001px) {
  .attention-list li {
    margin-top: 6px;
  }
}

/* -------------------------------------------- */
/* #bottom-nav */

#bottom-nav {
  /* display: none; */
  display: block;
    background: #fff;
    box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.16);
    position: fixed;
    left: 0;
    width: 100%;
    padding: 20px 10px;
    text-align: center;
    bottom: -140px;
    z-index: 2;
}

#bottom-nav .btns .fukidashi{
  position: absolute;
  top: -60%;
  left: calc(50% - 108.5px);
}


@media screen and (max-width: 1000px) {
  #bottom-nav {
    padding: 16px;
  }
}

/* PC only */
@media screen and (min-width: 1001px) {
  
  /* #bottom-nav li{
    max-width: 300px;
  } */
}

/* 2025.06.02 ADD */
.kv-pricedown {
  position: relative;
}
.kv-pricedown-bnr {
  position: absolute;
  top: 0;
  right: 0;
  width: 20vw;
  min-width: 140px;
  max-width: 200px;
}
#kv .key-visual .kv-bxslider .kv-pricedown-bnr img {
  width: 100%;
}
.price-normal {
  position: relative;
  display: block;
  font-size: 13px;
  line-height: 1.5;
  align-items: center;
  color: #6E89F8;
  margin: 0;
}
.price-dawn {
  display: block;
  line-height: 1;
  font-size: 20px;
  color: #6E89F8;
  margin: 0 0 15px 0;
}
#bottom-nav .btns .fukidashi {
  top: calc(-110% + 18px);
  left: calc(55% - 91.5px);
}
#bottom-nav .btns .fukidashi.btm-follow {
  top: calc(-100% + 18px);
}
@media screen and (max-width: 1000px) {
  #bottom-nav .btns .fukidashi.btm-follow {
    top: calc(-100% + 10px);
    left: calc(50% - 97.74px);
  }
}

/* FAQ */
.faq-ol {
  max-width: 1040px;
  padding: 0 20px;
  margin: 30px auto 50px;
}
.faq-list > li {
  position: relative;
  padding: 25px 30px 25px 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
  border-bottom: 1px solid #E4E5E7;
}
.faq-list > li:hover {
  opacity: 0.7;
}
.faq-list > li::before {
  content: "";
  display: block;
  position: absolute;
  width: 26px;
  height: 26px;
  border: 2px solid #447355;
  border-radius: 50px;
  top: 26px;
  right: 0;
}
.faq-list > li .item-q,
.faq-list > li .item-a {
  position: relative;
}
.faq-list > li .item-q > div,
.faq-list > li .item-a > div {
  padding-left: 25px;
  position: relative;
  color: #447355;
  line-height: 1.8;
  text-align: justify;
}
.faq-list > li .item-q > div:before,
.faq-list > li .item-a > div:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  font-size: 18px;
  line-height: 1.2;
}
.faq-list > li .item-q {
  font-size: 18px;
  color: #2e3a3a;
  cursor: pointer;
  position: relative;
  padding-right: 15px;
}
.faq-list > li .item-q:before,
.faq-list > li .item-q:after {
  background-color: #447355;
}
.faq-list > li .item-q:before {
  content: "";
  display: block;
  position: absolute;
  left: auto;
  top: 18px;
  width: 2px;
  height: 12px;
  right: -16px;
  margin-top: -7px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.faq-list > li .item-q:after {
  content: "";
  display: block;
  position: absolute;
  left: auto;
  top: 18px;
  width: 12px;
  height: 2px;
  right: -21px;
  margin-top: -2px;
}
.faq-list > li .item-q.opened:before {
  filter: alpha(opacity=0);
  opacity: 0;
}
.faq-list > li .item-q > div:before {
  font-size: 18px;
  font-weight: bold;
  content: 'Q.';
  top: 18px;
  margin: -12px 0 0 0;
  color: #447355;
}
.faq-list > li .item-a {
  display: none;
  font-size: 14px;
  padding-top: 20px;
  padding-right: 15px;
}
.faq-list > li .item-a > div:before {
  content: 'A.';
  top: 0px;
  margin-top: 2px;
  color: #393F45;
}
.faq-list > li .item-a > div p {
  color: #393F45;
}
.item-a-note {
  display: block;
  font-size: 12px;
  margin-top: 10px;
  position: relative;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1000px) {
  .faq-list > li:hover {
    opacity: 1;
  }
}