@charset "UTF-8";

/* CSS変数代入 */
:root {
    --primary-color: red;
    --sub-color: orange;
    --pccol2-width: 48.5%;
    --pccol3-width: 32%;
    --pccol-margin: 3%;
    --inner-box:96%;
    --main-width:980px;
    --fontsize:14px;
--swiper-theme-color: #fff;

}

:where(nav li)::before {
    content: none;
    clear:both;
}


a:link{
    text-decoration:none;
}


body {
    font-size:var(--fontsize);
}

body.fixed {
width: 100% !important;
height: 100% !important;
position: fixed !important;
}

#headmenu {
    width: 100%;
    padding: 0;
    z-index: 1000;

}

#footer{
    background:#000;
    color:#fff;
    padding:1em 0;
    margin-top:5em;
}
#footer a{
    color:#fff;
}




.main_container {
    max-width:var(--main-width);
    margin: 0 auto;
}

.pccol2{
    margin-bottom:var(--pccol-margin);
}
.pccol2:nth-child(odd) {
    width: var(--pccol2-width);
    margin-right: var(--pccol-margin/2);
}
.pccol2:nth-child(even) {
    width: var(--pccol2-width);
    margin-left:var(--pccol-margin/2);
}

.pccol-km{
width:var(--pccol3-width);
margin-bottom:3%;
}

.pccol-m{
width:65.8%;
margin-bottom:3%;
}

.pccol3 {
    width: var(--pccol3-width);
    margin-right:var(--pccol-margin);
    margin-bottom:var(--pccol-margin);
}
.pccol3:nth-child(n + 2) {
    width: var(--pccol3-width);
    margin:0;
}


#news .pccol3 {
    width: 31.333%;
    margin:0;
}

#news .pccol3:nth-child(2n) {
    width: 31.333%;
    margin-right:2%;
    margin-left:2%;
}


#news .pccol3:nth-child(3n) {
    width: 31.333%;
    margin:0;
}


.flexcol3:after {
    content: "";
    width: var(--pccol3-width);
    margin:0;
    margin-bottom:var(--pccol-margin);
}


#totop {
    position: fixed;
    right: 1.75rem;
    bottom: 1.75rem;
    z-index: 980;
    width: 50px;
    transition: all .5s;
}

footer {

}


#copyright {
    text-align:center;
    font-size: 0.75rem;
}

.default_btn {
    border-radius: 50px;
    display: block;
    border: 1px solid #333;
    padding: .5rem 0;
    width: 100%;
    text-align: center;
}


#items .inner{
    width: 94%;
    margin: 0 2% 0 4% !important;
}



@media screen and (max-width: 979px) {

}


@media screen and (max-width: 768px) {
    .spcol1 {
        width: 100% !important;
    }
    .spcol2 {
    width: var(--pccol2-width);
    margin:0 0 1rem 0;
    }

    .spcol2:nth-child(odd) {
    width: var(--pccol2-width);
    margin-right:var(--pccol-margin/2);
    }

    .spcol2:nth-child(even) {
    width: var(--pccol2-width);
    margin-left:var(--pccol-margin/2);
    }

    .spcol3 {
        width: 31%;
        margin: 1rem 1%;
    }

    .logo {
        max-width: 180px;
        padding: .5rem;
        margin-top: 0;
    }
#totop {
    right: 1rem;
    bottom: 1rem;
    z-index: 100;
    width: 40px;
}
}

header{
  position:relative;
  top:0;
  left:0;
  z-index:333;
  width:100%;
      background:#908180;
}

nav.headernav{

}

nav.headernav ul li a{
  display:block;
  text-decoration:none;
  color:#fff;
  margin-right:1em;
  font-size:1.15em;
  font-feature-settings: "palt";
  font-weight:bold;
  -webkit-filter:drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5));
  -moz-filter:drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5));
  -ms-filter:drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5));
  filter:drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5));
}
.icon .nav_shadow{
  margin-right:1em;
    -webkit-filter:drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5));
  -moz-filter:drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5));
  -ms-filter:drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5));
  filter:drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5));
}
.headmenu_in{
  align-items:center;justify-content:space-between;padding:1em;
}

.head_obi{
padding:0.5em 0;background:rgb(154,15,66);position:relative;z-index:99999999;
}

.head_obi p {
text-align:center;color:#fff;font-weight:bold;margin:0;letter-spacing:2px;
}


@media screen and (max-width: 768px) {
nav.headernav{
  display:none;
}
.icon div{
  margin-right:0.25em;
}
.headmenu_in{
  padding:0.5em 0.25em;
}
}


@media screen and (max-width: 480px) {

}


/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 99999999;
    /*ナビのスタート位置と形状*/
    top:0;
    right: -120%;
    height: 100dvh;/*ナビの高さ*/
    width:100%;
  background:rgba(255, 255, 255, 0.9);
    /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}



/*ナビゲーション*/
#g-nav ul.nav_contents{
    z-index: 9999999999999;
    margin:auto;
/*    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);*/
}


#g-nav-list{
  display:flex;
  justify-content:space-around;
  height: 100%;
}


/*リストのレイアウト設定*/

#g-nav ul .nav_contents li{
  list-style: none;
  
}

#g-nav ul.nav_contents ul {
    text-align:left;
  padding-left:2em;

}

#g-nav ul.nav_contents ul li{
    text-align:left;
  list-style: disc;
  margin-left:1em;

}


#g-nav li a{
  color: #333;
  text-decoration: none;
  padding:10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size:1em;
  font-weight: bold;
}


#g-nav ul.nav_contents ul li a{
  font-size:1em;

}



/*========= ボタンのためのCSS ===============*/
.openbtn{
  position:relative;
    z-index: 99999999999999;/*ボタンを最前面に*/

  bottom:0;
  cursor: pointer;
    width: 50px;
    height:50px;
}
  
/*×に変化*/  
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 1px;
    border-radius: 2px;
  background-color: #fff;
    width: 45%;
  }

.openbtn span:nth-of-type(1) {
  top:15px; 
}

.openbtn span:nth-of-type(2) {
  top:23px;
}

.openbtn span:nth-of-type(3) {
  top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
    background:#333;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
    background:#333;
}


#news h2,#items h2{
  text-align:center;
  margin-bottom:3rem;
}

.wrap{
overflow:hidden;
position:relative;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img{
  /*animation: zoomUp 10s linear 0s 1 normal both;*/
}
/*.slide-img img{
  display: block;
  object-fit:cover;
height:100dvh;
min-height:900px;
}*/





#youto,#news{
  margin:0 auto 5rem auto;
}

#youto .pccol3{
  width:33.3333333333%;
  margin:0;
}




/* CSS */  
.arrow-btn{
  width: 10rem;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  border:1px solid #333;
  padding:0.5rem 0.5rem 0.5rem 1rem;
    color:#333;
}

.arrow-btn::before{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1rem;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 0.4rem;   /* arrow-btn size */
  height: 0.4rem;  /* arrow-btn size */
  border-top: 1px solid #808080;  /* thickness, color */
  border-right: 1px solid #808080;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media (min-width: 1px){
.label input[type=radio] + .label_icon:after {
    margin: -9px 0 0 -9px !important;
    width: 18px;
    height: 18px;
}
}


.cart_button.in {
    max-width: initial;
}


.item_detail .item_image_block {
     text-align:left; 
}


.ordermade_area.layout1 .ordermade_contents {
    padding: 1em;
    background: #f8f8f8;
}



.ordermade_area.layout1 .ordermade_contents_parent {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    border-bottom: 2px solid #aaa;
}


.item_detail .item_name {
    font-weight: bold;
    font-size: 1.75em;
    line-height: 1.6;
    letter-spacing:0.1em;
}

  .linkbtn a{
    display:block;
    padding:1em;
    border:1px solid rgb(154,15,66);
margin-right:0.25em;
margin-bottom:0.5em;
background:#908180;
border-radius:6px;
color:#fff;
  }


.review_star:before, .review_star.half:after{
      -webkit-text-stroke: 1px #ccc;
    text-stroke: 1px #333;
}

.footer_menu_content{
  margin:1em 2em;
}

.footer_menu2 .footer_menu_content{
  font-size:0.8em;
    margin:1em;
}


@media screen and (max-width: 768px) {
.slide-img img{
  object-fit:contain;
height:100%;
min-height:initial;
}
#youto .spcol1{
  width:100%;
}
#g-nav li a{
  font-size:1.25em;
}

#g-nav ul.nav_contents ul li a{
  font-size:0.85em;

}

#news h3{
  font-size:1.25em;
}
#news .spcol1{
  margin-bottom:2em;
}

.item_detail .item_name {
    font-weight: bold;
    font-size: 1.25em;
}

.linkbtn a {
    font-size: 0.8em;
    padding: 0.5em;
}
.inner{
  width:96%;
  margin:0 2%;
}

.footer_menu1 {
  margin-bottom:2em;
}

.footer_menu1 .footer_menu_content{
    width: 100%;
    text-align: center;
    margin:1em 0;
}

.footer_menu2 .footer_menu_content{
    width: 100%;
    text-align: center;
    margin:0.5em 0;
}

}

.swiper-container2 .swiper-pagination-clickable .swiper-pagination-bullet {
    background: #fff;
}




