@charset "UTF-8";

/* 商品スライド */
div.slide_wrap{
    position:relative;
    margin:clamp(30px,2.604vw,50px) auto 0;
}
@media screen and (max-width:480px){
div.slide_wrap{width:330px;}
}

div.model-slide div.swiper-wrapper{
  display:flex;
  justify-content:space-between;
}

div.model-slide div.box{
    position:relative;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding:50px 15px;
    height:auto;
    background:#fff;
    border-radius:10px;
    box-shadow:0 0 10px rgba(0,0,0,0.1);
}

div.model-slide img{
    display:block;
    max-height:120px;
    margin:0 auto;
}

div.model-slide span.more{
    position:relative;
    display:table;
    font-size:12px;
    padding-right:25px;
    margin:25px auto 0;
    cursor:pointer;
}
div.model-slide span.more::after{
    position:absolute;
    right:0;
    top:1px;
    content:"+";
    display:flex;
    justify-content:center;
    align-items:center;
    line-height:1;
    width:20px;
    height:20px;
    border-radius:11px;
    padding-bottom:1px;
    border:1px solid #e0e0e0;
    box-sizing:border-box;
}

div.model-slide h3{
    font-size:16px;
    font-weight:600;
    text-align:center;
    padding-top:30px;
}
div.model-slide p.txt{
    font-size:14px;
    min-height:6em;
    padding-top:10px;
    height:100px;
    overflow-y: scroll;
}
div.model-slide p.fee{
    font-size:18px;
    font-weight:600;
    text-align:center;
    padding-top:25px;
}
div.model-slide p.fee span{color:#E92B66;}

div.swiper-slide a{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    width:200px;
    height:40px;
    color:#fff;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    margin:15px auto 0;
    background:#407FD5;
    border-radius:25px;
    transition:0.3s ease;
}
div.swiper-slide a::after{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    right:15px;
    content:"";
    display:inline-block;
    width:15px;
    height:12.42px;
    background:url(../img/first/arrow-i.svg) top left/contain no-repeat;
}
div.swiper-slide a:hover{opacity:0.75;}

.swiper-android .swiper-slide, .swiper-wrapper {transform: translate3d(0px, 0, 0)}
.swiper-pointer-events {touch-action: pan-y;}
.swiper-pointer-events.swiper-vertical {touch-action: pan-x;}
.swiper-slide {
  flex-shrink: 0;
  transition-property: transform;
}
.swiper-button-lock {display: none}
.swiper-pagination {
  position: relative;
  bottom:0;
  text-align: center;
  transition: .3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 1;
  margin-top:20px;
}
.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  display: inline-block;
  border-radius: 50%;
  background: #E0E0E0;
}
.swiper-pagination-bullet + .swiper-pagination-bullet{margin-left:10px;}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-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: 1;
  background:#00B19F;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity:0;
    cursor: auto;
    pointer-events: none
}

.swiper-button-next,
.swiper-button-prev {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:30px;
  height:30px;
  margin-top:-20px;
  cursor:pointer;
}
.swiper-button-prev {
  left:-15px;
  background:url(../img/first/slide/arrow-l.svg) center/contain no-repeat;
}
.swiper-button-next {
  right:-15px;
  background:url(../img/first/slide/arrow-r.svg) center/contain no-repeat;
}


/* スマホセットがとにかくお得ここまで */


/* modalここから */ /* 商品詳細ここから */
div.modal_box {
  position: fixed;
  z-index:40;
  display: none;
  width:640px;
  max-width:calc(100% - 30px);
  max-height: 55pc;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding:50px clamp(15px,4.6875vw,30px);
  text-align: center;
  background: #fff;
  box-sizing: border-box;
  overflow-y: scroll;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.modal_box img.iteminfo-img{
  display:block;
  max-height:250px;
  margin:0 auto;
}
.modal_box p.iteminfo-name{
  color:#273343;
  font-size:14px;
  font-weight:600;
  text-align:center;
  line-height:1.5;
  margin-top:15px;
}
.modal_box p.iteminfo-price{
  font-weight:600;
  font-size:18px;
  text-align:center;
}
.modal_box p.iteminfo-price span.pink{color:#E92B66;}
.modal_box p.iteminfo-price span.taxin{
  color:#273343;
  font-size:12px;
}
.modal_box h4{
  font-size:14px;
  line-height:1;
  text-align:left;
  font-weight:600;
  margin-top:30px;
  padding:0 0 10px;
  border-bottom:1px solid #273343;
}
.modal_box h4 + p{margin-top:10px;}
.modal_box div.spec{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  margin-top:15px;
}

.modal_box div.spec div{
  display:flex;
  flex-direction:column;
  align-items:center;
  width:calc((100% - 20px)/3);
  padding:15px 5px 10px;
  border:1px solid #e0e0e0;
  border-radius:10px;
}
.modal_box div.spec div:nth-child(n + 4){margin-top:10px;}

.modal_box div.spec div img{width:50px;}
.modal_box div.spec div p{
  font-size:12px;
  line-height:1.3;
  letter-spacing:0;
  padding-top:5px;
}
.modal_box div.spec div p.head{
  color:#00B19F;
  padding-top:10px;
}
.modal_box span.b-btn{
  display:flex;
  justify-content:center;
  align-items:center;
  color:#fff;
  font-size:12px;
  line-height:1;
  letter-spacing:0;
  width:100px;
  height:30px;
  background:#273343;
  border:1px solid #273343;
  border-radius:15px;
  margin:30px auto 0;
  cursor:pointer;
  transition:0.2s ease;
}
.modal_box span.b-btn:hover{
  color:#273343;
  background:#fff;
  border:1px solid #273343;
}

@media screen and (max-width:480px){

.modal_box div.spec div{
  width:calc((100% - 10px)/2);
  border-radius:4px;
}
.modal_box div.spec div:nth-child(n + 3){margin-top:10px;}  

}
/* modalここまで */ /* 商品詳細ここまで */
