html{

}
body{
    color: #333;
    margin: 0;
    font-family: "kinuta-mincho-stdn","zen-kaku-gothic-antique", sans-serif;
    font-style: normal;
    font-size: 16px;
    font-feature-settings: "palt";
}
main{
    /* min-height: 100vh; */
}
input{
    background: transparent;
    border: none;
    cursor: pointer;
    color: black;
    
}
p{
    font-size: 16px;
    margin: 0;

}
ul,li{
    padding: 0;
    margin: 0;
    list-style: none;
}
h1,h2,h3,h4,h5,h6{
    margin: 0;
}
a{
    text-decoration: none;
}
.pc{
display: block;
}
.sp{
display: none;
}
header{

}
.header-inner{
    position: relative;
    top: 0;
    left: 0;
}
h1.header-logo{
    width: auto;
    padding: 20px;
    box-sizing: border-box;
    position: fixed;
    z-index: 999;
}
h1.header-logo a{
    color: #434548;
    text-align: left;
    display: grid;
    gap: 15px;
    grid-template-columns: auto 1fr;
    align-items: center;
    font-size: 12px;
}
h1.header-logo img{
    width: auto;
    height: 8.355vh;
    margin: 0 auto;
    object-fit: contain;
}
h1.header-logo span{
    font-size:10px;
    line-height: 1.5em;
}
.header-page_logo{
    padding: 0;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    z-index: 1;
    display: flex;
}
.header-page_logo::before{
    /* content: ""; */
    display: block;
    width: 100%;
    position: absolute;
    z-index: 2;
    background: url(../img/main-top.svg);
    background-repeat: no-repeat;
    background-size: cover;
    top: -20px;
    height: 0;
    padding-top: 10.6666667%;
    background-position: 50% 0;
}
h1.header-page_logo img{
    width: 100%;
    height: 8.355vh;
    margin: 0 auto;
    object-fit: contain;
    position: relative;
    z-index: 3;
}
h1.header-page_logo a{
    color: #434548;
    text-align: left;
    display: grid;
    width: auto;
    padding-left: 20px;
    gap: 15px;
    grid-template-columns: auto 1fr;
    align-items: center;
    position: relative;
}

.header-page_logo span{
    font-size: 10px;
    line-height: 1.5em;
    position: relative;
    z-index: 3;
    
}
/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    width: 35%;
    height: 100vh;
    transition: all 0.6s;
    background-image: url(../img/bg-green.jpg);
    background-size: cover;
    background-repeat: repeat;
    box-sizing: border-box;
    padding: 15vh 50px 50px;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    position: relative;
    z-index: 999;
    display: block;
    width: 100%;
    height: auto;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    position: relative;
    z-index: 999;
    display: grid;
    gap: 20px;
    padding-bottom: 30px;
}

/*リストのレイアウト設定*/

#g-nav li{
  list-style: none;
    text-align: left;
}

#g-nav li a{
    color: #fff;
    text-decoration: none;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: normal;
    font-size: 1.35rem;
}
#g-nav ol{
    padding: 0;
    padding-top: 30px;
    margin: 0;
    display: grid;
    gap: 10px;
}
#g-nav ol li{
    list-style: none;
    text-align: left;
}
#g-nav ol li a{
    color: #fff;
    text-decoration: none;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-weight: normal;
    font-size: 1rem;
}
/*========= ボタンのためのCSS ===============*/
.openbtn1{
    position: fixed;
    z-index: 9999;
    top: 20px;
    right: 20px;
    cursor: pointer;
    width: 3.5rem;
    height: 3.5rem;
    background-color: #075D40;
    background-image: url("../img/bg-green.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 50%;
    
    
}
  
/*×に変化*/  
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0.89rem;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    width: 50%;
  }

.openbtn1 span:nth-of-type(1) {
    top: 1rem;
}

.openbtn1 span:nth-of-type(2) {
    top: 1.6rem;
}

.openbtn1 span:nth-of-type(3) {
    top: 2.2rem;
}

.openbtn1.active span:nth-of-type(1) {
    top: 1.75rem;
    left: 1rem;
    transform: translateY(6px) rotate(-25deg);
    width: 60%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 2.5rem;
    left: 1rem;
    transform: translateY(-6px) rotate(25deg);
    width: 60%;
}
.header-menu_btn{
    width: auto;
    padding: 0;
    margin: 0;
    border-radius: 5px;
    border: none;
}
.header-menu_btn img{

}
.header-menu_btn a{
    display: flex;
    justify-content: center;
    gap: 5px;
    align-items: center;
    box-sizing: border-box;
    padding: 15px;
    font-size: 1.15rem;
    color: #434548;
}
footer{
    
}
.copyrights{
    font-size: 0.75rem;
    text-align: center;
    line-height: 2rem;
    background-color: #075D40;
    background-image: url(../img/bg-green.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
}
.footer-contact_List{
    display: flex;
    border-top: 1px solid #434548;
    border-bottom: 1px solid #434548;
    margin: 0 auto;
    justify-content: center;
    list-style: none;
    gap: 100px;
    position: relative;
    gap: 10vw;
}
.footer-contact_List::before{
    content: "";
    position: absolute;
    height: 40px;
    width: 1px;
    left: 50%;
    top: 10px;
    background: #434548;
}
.footer-contact_List li{
    padding: 20px 0;
}
.footer-contact_List li:nth-of-type(1){
}
.footer-contact_List li:nth-of-type(2){

}
.footer-contact_List li img{

}
.footer-contact_List li a{
    display: flex;
    gap: 10px;
    color: #434548;
    font-size: 1rem;
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-weight: 500;
}
.footer-inner{
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
    display: grid;
    grid-template-columns: auto auto;
    gap: 0;
}
.footer-nav{
    display: flex;
    gap: 30px;
    align-items: center;
}
.footer-nav li{
    list-style: none;
}
.footer-nav li a{
    font-size: 1rem;
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-weight: 500;
    color: #454348;
}
.footer-logo{
    text-align: center;
}
.footer-logo img{
    width: 100%;
    height: 15vh;
    object-fit: contain;
}
.footer-logo a{
    text-align: center;
    font-size: 0.75rem;
    color: #434548;
}
.wrapper{
overflow: hidden;
background: #F5F5F5;
}
.kv-section{
    height: calc(100vh - 70px);
    min-height: 730px;
    position: relative;
}
.kv-section::before{
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    z-index: 10;
    background:url(../img/main-top.png);
    background-repeat: no-repeat;
    background-size: cover;
    top: -20px;
    height: 0;
    padding-top: 10.6666667%;
    background-position: 50% 0;

}
.kv-section::after{
content: "";
    display: block;
    width: 100%;
    position: absolute;
    z-index: 10;
    background:url(../img/main-bottom.png);
    background-repeat: no-repeat;
    background-size: cover;
    bottom: -1px;
    height: 0;
    padding-top: 12%;
    background-position: 50% 100%;
}
.slider {
    position:relative;
      z-index: 1;
      /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
      height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  }
  /*　背景画像設定　*/
  
  
  .slider-item01 {
      background:url(../img/kv04.jpg);
  }
  
  .slider-item02 {
      background:url(../img/kv05.jpg);
  }
  .slider-item03 {
    background:url(../img/kv02.jpg);
}

.slider-item04 {
    background:url(../img/kv03.jpg);
}

  
  .slider-item {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: calc(100vh - 70px) !important;
    min-height: 730px !important;;
    position: relative !important;;
    overflow: hidden !important;;
  }
  
  /*矢印の設定*/
  
  .slick-prev, 
  .slick-next {
      position: absolute;
      z-index: 3;
      top: 42%;
      cursor: pointer;/*マウスカーソルを指マークに*/
      outline: none;/*クリックをしたら出てくる枠線を消す*/
      border-top: 2px solid #fff;/*矢印の色*/
      border-right: 2px solid #fff;/*矢印の色*/
      height: 25px;
      width: 25px;
  }
  
  .slick-prev {/*戻る矢印の位置と形状*/
      left:2.5%;
      transform: rotate(-135deg);
  }
  
  .slick-next {/*次へ矢印の位置と形状*/
      right:2.5%;
      transform: rotate(45deg);
  }
  
  /*ドットナビゲーションの設定*/
  
  .slick-dots {
      position: relative;
      z-index: 3;
      text-align:center;
      margin:-50px 0 0 0;/*ドットの位置*/
  }
  
  .slick-dots li {
      display:inline-block;
      margin:0 5px;
  }
  
  .slick-dots button {
      color: transparent;
      outline: none;
      width:8px;/*ドットボタンのサイズ*/
      height:8px;/*ドットボタンのサイズ*/
      display:block;
      border-radius:50%;
      background:#fff;/*ドットボタンの色*/
  }
  
  .slick-dots .slick-active button{
      background:#333;/*ドットボタンの現在地表示の色*/
  }
  .kv-logo{
    width: auto;
    height: 40vh;
    position: absolute;
    left: 50%;
    bottom: 35%;
    margin-left: -74px;
    z-index: 20;
    filter: drop-shadow(2px 2px 0px black);
  }
  .kv-logo img{
    width: 100%;
    height: 100%;
  }
  .content{

  }
  .concept{
    background: #fff;
    position: relative;
  }
  section.content.product {
    background: #F5F5F5;
}
  section.content.news{
    background: #F5F5F5;
  }
  .inner{
    width: calc(100% - 20vw);
    max-width:100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 100px 0 200px;
    /* padding-left: 8.25vw; */
    display: block;

  }
  .inner-type02{
    width: calc(100% - 20vw);
    max-width: 100%;

    margin: 0 auto;
    box-sizing: border-box;
    padding: 100px 0 200px;
    display: block;

  }
  .concept-title{
    font-size: 2vw;
    letter-spacing: 0.16em;
    line-height: 1.0;
    margin-right: 20px;
    margin-top: -5px;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    font-weight:100;
  }
  .concept-article{
    line-height: 3rem;
    letter-spacing: 0.16em;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    height: auto;
    display: grid;
    padding-top: 40px;
    padding-right: 40px;
    box-sizing: border-box;
    font-weight: normal;
    gap: 30px;
  }
  .concept-article p{
    margin: 0;
    font-size: 1.25vw;
  }
  .concept-box{
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
    gap:2em;
    position: relative;
    z-index: 1;
  }
  .cat-post{
    display: block;
    /* background: #F5F5F5; */
  }
  .cat-post article{
    display: block;
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-weight: 500;
    box-sizing: border-box;
    padding: 20px;
    height: 100%;
  }
  .cat-post-list__related a{
    width: 100%;
    display: block;
  }
  .cat-post-list__related article{
    display: block;
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-weight: 500;
    box-sizing: border-box;
    padding: 0;
    height: 100%;
  }
  .cat-post-list__related a{
    width: 100%;
    display: block;
  }
.cat-post-list__related a img{
    width: 100%;
    height: auto;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #efefef;
    transition: all 0.5s;
  }
  .cat-post-list__related a:hover, .cat-post-list__related a img{
opacity: 0.8;
transition: all 0.5s;
  }
  .cat-post article img{
    width: 100%;
    height: auto;
    overflow: hidden;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    background: #efefef;
  }
  .info-post-list article img{
    width: 150px;
    height: 100%;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #efefef;
  }
  .cat-post article h2{
    font-size: 0.955rem;
    text-align: justify;
    color: #434548;
  }
  .item-ttl{
    font-size: 1rem !important;
    color: #434548;
    padding-top: 20px;
  }
  .item-ttl_related{
    font-size: 13px !important;
    color: #434548 !important;
    padding: 0 !important;
    padding-top: 5px !important;
    background-color: transparent !important;
    margin-bottom: 10px !important;
    border: none !important;
    line-height: 1.5em !important;
    letter-spacing: 0.08em !important;
    font-weight: normal !important;
  }
  .tag{
    text-align: center;
  }
  .continue{
    transition: all 0.5s;
    display: block;
  }
  .continue:hover{
    background: #fff;
    transition: all 0.5s;
    box-shadow: 0px 0px 3px 3px #E8E8E8;
    -moz-box-shadow: 0px 0px 3px 3px #E8E8E8;
    -webkit-box-shadow: 0px 0px 3px 3px #E8E8E8;
  }
  h2.cat-title {
    font-size: 2vw;
    letter-spacing: 0.16em;
    line-height: 1.0;
    margin-top: -5px;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    font-weight: 100;
    position: absolute;
    left: 0px;
    top: 0;
    border-right: 2px solid;
    border-left: 2px solid;
    padding:10px 15px;
    box-sizing: border-box;
}

.cat-post_inner{
    display: flex;
    justify-content: space-between;
    gap: 100px;
    position: relative;
    padding-bottom: 8vh;
    padding-left: 10vw;
}
.cat-post-list {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    min-height: 100%;

}
.cat-post-list__related {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 30px;
    min-height:100%;
}

.info-post-list{
    display: block;
    width: 100%;
}
.cat-post_detail{
    display: block;
    width: 100%;

}
.info-post-list article{
    display: flex;
    gap: 50px;
    height: auto;
    border-bottom: 1px solid #E8E8E8;
    justify-content: space-between;
}
.cat-post_info {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
}
p.news{
    color: #ED5B14;
    font-size: 10.5px;
    box-sizing: border-box;
    padding:5px 15px;
    border: 1px solid;
    line-height: 1em;
    font-weight: 600;
}
span.cat-post_date {
    font-size: 14px;
    box-sizing: border-box;
    display: flex;
    align-items: baseline;
    justify-content: right;
    font-family: "kinuta-mincho-stdn","zen-kaku-gothic-antique", sans-serif;
    color: #434548;
}
a.link-arch {
    width: 250px;
    height: 50px;
    line-height: 50px;
    position: relative;
    display: block;
    margin: 0 auto;
    letter-spacing: 0.1em;
    text-decoration: none;
    font-weight: 500;
    color: #000;
    text-align: center;
    border: 1px solid #434548;
    transition: all 0.5s;
}
a.link-arch:hover{
    color: #ED5B14;
    background: #fff;
    border: 1px solid #ED5B14;
    transition: all 0.5s;
    box-shadow: 0px 0px 3px 3px #E8E8E8;
    -moz-box-shadow: 0px 0px 3px 3px #E8E8E8;
    -webkit-box-shadow: 0px 0px 3px 3px #E8E8E8;
}
a.link-arch::before{
    content: "";
    width: 1px;
    height: 6px;
    position: absolute;
    background: #000;
    right: 20px;
    bottom: 51%;
    -moz-transform: rotate(-20deg);
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg);

}

a.link-arch::after{
    content: "";
    width: 1px;
    height: 6px;
    position: absolute;
    background: #000;
    right: 20px;
    top: 51%;
    -moz-transform: rotate(20deg);
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);

}
a.link-arch:hover::after{
    background: #ED5B14;
    transition: all 0.5s;

}
a.link-arch:hover::before{
    background: #ED5B14;
    transition: all 0.5s;


}
.content-kv{
    padding-right: 10vw;
    box-sizing: border-box;
}
.content-kv_l{
    padding-left: 10vw;
    position: relative;
    z-index: 2;
}
.content-kv_l img{
    width: 100%;
    height: 75vh;
    object-fit: cover;
    box-sizing: border-box;
    display: flex;
}

.content-kv img{
    width: 100%;
    height: 75vh;
    object-fit: cover;
    box-sizing: border-box;
    display: flex;
}
.story{
    width: 100%;
    height: 120vh;
    transition: all 0.6s;
    background-image: url(../img/bg-green.jpg);
    background-size: cover;
    background-repeat: repeat;
    position: relative;
    display: flex;
}
.story::before{
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    z-index: 10;
    background: url(../img/main-top.svg);
    background-repeat: no-repeat;
    background-size: cover;
    top: -1px;
    height: 0;
    padding-top: 10.6666667%;
    background-position: 50% 0;
}
.story::after{
        content: "";
        display: block;
        width: 100%;
        position: absolute;
        z-index: 10;
        background: url(../img/main-bottom.svg);
        background-repeat: no-repeat;
        background-size: cover;
        bottom: 0px;
        height: 0;
        padding-top: 12%;
        background-position: 50% 100%;
}
.story-box{
display: grid;
    grid-template-columns:1fr 1fr;
    width: calc(100% - 40vw);
    margin: 0 auto;
    box-sizing: border-box;
    align-content: center;
    text-align: center;
    gap:0;
}
.story-aticle{
        display: flex;
    justify-content: center;
}
.story-box p{
    font-size: 3.5vw;
    font-weight: normal;
        line-height: 1.8555em;
    color: #fff;
    letter-spacing: 0.5em;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}
.story-box img{
   width: 100%;
    height: 100%;
    object-fit: contain;
    box-sizing: border-box;
    padding: 0;
}
.about{
    background:url(../img/about_background_pc.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    min-height: 100vh;
    position: relative;
    padding-bottom: 300px;

}
.about:after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    z-index: 10;
    background: url(../img/main-bottom.svg);
    background-repeat: no-repeat;
    background-size: cover;
    bottom: -1px;
    height: 0;
    padding-top: 12%;
    background-position: 50% 100%;
}
.insta-title{
width: 100%;
padding-bottom: 50px;
display: flex;
justify-content: center;
}
.insta-title img{
width:4vw;
height: auto;
object-fit: contain;
}
.item-article{
    display: flex;
    flex-wrap: wrap;
    gap:30px;
    align-content: start;

}
.for-orange{

    background: #F5F5F5;
    padding-bottom: 100px;
    position: relative;
    z-index: 2;
}
.for-orange::before{
    content: "";
    background: #F5F5F5;
    background-image: url(../img/about-bg.jpg);
    background-size: cover;
    background-repeat: repeat;
    padding-bottom: 100px;
    position: absolute;
    z-index: 1;
    height: 70vh;
    width: 100%;
    bottom: 0;
}
.action-title{
    display: flex;
    align-items: center;
    font-size: 2vw;
    position: relative;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    font-weight: 100;
    line-height: 1.5em;
    border-right: 2px solid;
    border-left: 2px solid;
    padding: 10px;
    box-sizing: border-box;
}
.action-btn span{
position: relative;
}
.aaction-btn span::before{
    content: "";
    width: 1px;
    height: 6px;
    position: absolute;
    background: #000;
    right: -20px;
    bottom: 51%;
    -moz-transform: rotate(-20deg);
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg);
}
.action-btn span::after{
    content: "";
    width: 1px;
    height: 6px;
    position: absolute;
    background: #000;
    right: -20px;
    top: 51%;
    -moz-transform: rotate(20deg);
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
}
.action-box{
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 0 0 0 100px;    
    height: 20vh;
}
.action-img{
display: flex;
}
.action-img img{
width: 100%;
height: auto;
}
.action-article{
    display: inline-flex;
    flex-wrap: wrap;
    align-content: center;
    gap: 30px;
    box-sizing: border-box;
    padding: 100px 10vw;
    justify-content: left;
    background: #fff;
    position: absolute;
    right: 0;
    top: -115px;
}
.action-article p{
    letter-spacing: 0.16em;
}
.action-article_inner{
display: grid;
    align-content: center;
    gap: 50px;
}
.item-inner{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    padding: 30px 30px 40px 30px;
    background-color: #fff;
}
.field_price {
    text-align: left !important;
    font-family: "helvetica", sans-serif;
}
h2.item-name {
    margin-bottom: 20px !important;
    font-size: 20px !important;
    line-height: 1.5;
    font-weight: normal;
}
.item-info {
    display: block;
    width: 100%;
}
#itempage .field .field_price{
    font-size: 200% !important;
    color: #333 !important;
    letter-spacing: 0.1em;
}
#itempage .itemimg img{
    margin: 0 auto;
    padding: 0px;
    width: 100%;
    height: auto;
    object-fit: contain;
}
.c-box{
    display: flex;
    justify-content: right;
    gap: 5px;
}
#itempage{
    width: 100%;
    font-family: 'Hiragino Kaku Gothic ProN', sans-serif; 
}
.itemimg{
    background: #f5f5f5;
}
.itemimg a{

}
.itemimg img{

}
em.tax{
    font-size: 1rem !important;
    font-weight: bold;
}
#itempage .field{
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    margin-bottom: 20px !important;
    align-items: baseline;
}
a.link-about {
    width: 250px;
    height: 50px;
    line-height: 50px;
    position: relative;
    display: block;
    letter-spacing: 0.1em;
    text-decoration: none;
    font-weight: 500;
    color: #000;
    text-align: center;
    border: 1px solid #434548;
    transition: all 0.5s;
}
a.link-about:hover{
    color: #ED5B14;
    background: #fff;
    border: 1px solid #ED5B14;
    transition: all 0.5s;
    box-shadow: 0px 0px 3px 3px #E8E8E8;
    -moz-box-shadow: 0px 0px 3px 3px #E8E8E8;
    -webkit-box-shadow: 0px 0px 3px 3px #E8E8E8;
}
a.link-about::before{
    content: "";
    width: 1px;
    height: 6px;
    position: absolute;
    background: #000;
    right: 20px;
    bottom: 51%;
    -moz-transform: rotate(-20deg);
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg);

}

a.link-about::after{
    content: "";
    width: 1px;
    height: 6px;
    position: absolute;
    background: #000;
    right: 20px;
    top: 51%;
    -moz-transform: rotate(20deg);
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);

}
a.link-about:hover::after{
    background: #ED5B14;
    transition: all 0.5s;

}
a.link-about:hover::before{
    background: #ED5B14;
    transition: all 0.5s;


}
.page-title_box{
    display: grid;
    grid-template-columns: 1fr;
    height: 45vh;
    overflow: hidden;
    margin-top: 0;
    position: relative;
}
.page-title_box::after{

}
.page-title_box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-title_box h1{
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    height: auto;
    margin: 0 auto;
    text-align: left;
    font-size: 2rem;
    line-height: 1.5;
    padding-right: 0;
    white-space: nowrap;
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    /* background: rgba(255, 255, 255, 0.5); */
    padding: 15px;
    border-radius: 10px;
    color: #fff;
    font-weight: 100;
}
.instagram{
    padding: 100px 0;  
    background: #fff;
}
.page{
    width: calc(100% - 20vw);
    padding: 100px 0;
}
.page h2{
    font-size: 2.25rem;
    letter-spacing: 0.12em !important;
    line-height: 1.5;
    margin-bottom: 10px;
    font-weight: 500;
    text-align: left !important;

}
.page h3{
    font-size: 2rem;
    letter-spacing: 0.12em;
    line-height: 2;
    margin-bottom: 30px;
    font-weight: 100;
    border-bottom: 1px solid;
}
.p-section_text{

}
.p-section_text p{
    font-size: 1rem;
    line-height: 2.1;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}
.item-title{

}
.item-list{

}
.item-btn {
    width: 250px;
    height: 50px;
    line-height: 50px;
    position: relative;
    display: block;
    margin: 0 auto;
    letter-spacing: 0.1em;
    text-decoration: none;
    font-weight: 500;
    color: #000;
    text-align: center;
    border: 1px solid #434548;
    transition: all 0.5s;
    box-sizing: border-box;
}
.item-btn:hover{
    color: #ED5B14;
    background: #fff;
    border: 1px solid #ED5B14;
    transition: all 0.5s;
    /* box-shadow: 0px 0px 3px 3px #E8E8E8;
    -moz-box-shadow: 0px 0px 3px 3px #E8E8E8;
    -webkit-box-shadow: 0px 0px 3px 3px #E8E8E8; */
}
.item-btn::before{
    content: "";
    width: 1px;
    height: 6px;
    position: absolute;
    background: #000;
    right: 20px;
    bottom: 51%;
    -moz-transform: rotate(-20deg);
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg);

}

.item-btn::after{
    content: "";
    width: 1px;
    height: 6px;
    position: absolute;
    background: #000;
    right: 20px;
    top: 51%;
    -moz-transform: rotate(20deg);
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);

}
.item-btn:hover::after{
    background: #ED5B14;
    transition: all 0.5s;

}
.item-btn:hover::before{
    background: #ED5B14;
    transition: all 0.5s;


}
.item-price{
    font-size: 1em;
    line-height: 1;
    text-align: left;
    margin-bottom: 30px;
    color: #434548;
    letter-spacing: 0.1em;
}
.item-price_related{
    font-size: 12px;
    line-height: 1;
    text-align: left;
    margin-bottom: 10px;
    color: #434548;
    letter-spacing: 0.1em;
}
.cart-button{
    background: #0076d7;
    display: flex;
    align-items: center;
    padding: 0 15px;
    border-radius: 3px;
    width: auto;
    text-align: center;
    justify-content: center;
    cursor: pointer;

}
.cart-button::before{
    background-image: url(../img/shop-cart.svg);
    content: "";
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    width: 23px;
    height: 23px;
    margin: -6px 10px 0 0;
    background-size: 23px;

}
input.to_customerinfo_button {
    color: #fff;
    font-size: 1rem;
    line-height: 3rem;
    background: #0076d7;
    border-radius: 3px;

}
#itempage .skuform .skuquantity{
    text-align: right;
    width: 5em;
    margin: 0 5px;
    border: 1px solid #ddd;
    background: #f5f5f5;
    font-size: 1rem;
    line-height: 2rem;
    padding: 0 10px;
}
#cart input.quantity{
    background: #efefef;
    border: 1px solid #ddd;
    border-radius: 3px;
    line-height: 1.7em;
}
.quantity,input[type="text" i] {

}
span.quantity{
    display: grid;
    grid-template-columns:auto 1fr;
    align-items: center;  
}
.item-description{

}
.item-description p{
    font-size: 14px;
    line-height: 1.5rem;
    letter-spacing: 0.08em;
    text-align: justify;
}
.welcart-icon_bk{
    position: fixed;
    z-index: 100;
    top:30px;
    right: 95px;

}
.welcart-icon_bk ul{

}
.welcart-icon_bk li{
    list-style: none;
}
.welcart-icon_bk li:nth-child(1){
    background: #434548;
    border-radius: 100px;
}
.welcart-icon_bk a{
    display: flex;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    line-height: 4em;
    color: #fff;
    align-items: center;
    gap: 10px;
    width: 2rem;
    height: 2rem;
    justify-content: center;
}
.welcart-icon_bk img{

}
#cart input.delButton{
    color: #999;
    font-size: 2rem;
    font-family: "zen-kaku-gothic-antique", sans-serif;
}
input[name="upButton"]{
    color: #fff;
    background: #0076d7;
    padding: 7px 15px;
    margin-left: 10px;
    box-sizing: border-box;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: normal;
    border-bottom: 3px solid #434548;
    
}
.to_customerinfo_button{
    background: #434548;
    
}
.to_reganddeliveryinfo_button{
    background: #434548;
    color: #fff;
    box-sizing: border-box;
    font-size: 1rem;
    line-height: 3rem;
    border-radius: 3px;
}
.to_deliveryinfo_button{
    color: #fff;
    box-sizing: border-box;
    font-size: 1rem;
    line-height: 3rem;
    background: #0076d7;
    border-radius: 3px;
}
input#purchase_button{
    color: #fff;
    box-sizing: border-box;
    font-size: 1rem;
    line-height: 3rem;
    background: #0076d7;
    border-radius: 3px; 
}
.back_cart_button{
    background: #efefef;
    color: #434548;
    box-sizing: border-box;
    font-size: 1rem;
    line-height: 3rem;
    border-radius: 3px;
}
.back_to_customer_button{
    background: #efefef;
    color: #434548;
    box-sizing: border-box;
    font-size: 1rem;
    line-height: 3rem;
    border-radius: 3px;
}
.back_to_delivery_button{
    background: #efefef;
    color: #434548;
    box-sizing: border-box;
    font-size: 1rem;
    line-height: 3rem;
    border-radius: 3px;
    margin-bottom: 20px;
}
input[name="customerinfo"]{
    
}
.cart-page{
    width: calc(100% - 20vw);
    max-width: 1000px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 100px 0 200px;
    display: block; 
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-weight: 500;
}
.itemcode {
    font-size: 12px;
}
.zaikostatus{
    font-size: 12px;
}
.news-single_ttl{
    margin-bottom: 50px;
    /* font-family: "zen-kaku-gothic-antique", sans-serif; */
    font-size: 2.25rem;
    line-height: 1.55em;
}
.news-single_content{
    /* font-family: "zen-kaku-gothic-antique", sans-serif; */

}
.news-single_content h2{
    font-size: 1.75rem;
    margin: 20px 0 15px;
    line-height: 1.55em;
    border-bottom: 1px solid;
    padding-bottom: 10px;

}
.news-single_content h3{
    font-size: 1.55rem;
    margin: 20px 0 15px;
    line-height: 1.55em;
    border-left: 2px solid;
    padding-left: 10px;
}
.news-single_content h4{
    font-size: 1.25rem;
    margin: 20px 0 15px;
    line-height: 1.55em;
}
.news-single_content h5{
    font-size: 1rem;
    margin: 20px 0 15px;
    line-height: 1.55em;
}
.news-single_content p{
    font-size:14px;
    margin-bottom:10px;
    line-height: 1.55em;
}
.news-single_date{
    /* font-family: "zen-kaku-gothic-antique", sans-serif; */
    font-weight: nomal;
    margin-top: 30px;
    line-height: 1;
    font-size: 12px;

}
.news-single_content ul{
    padding-left: 15px;
    font-size: 14px;
}
.news-single_content ul li{
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    padding-left: 0px;
}
.itemsoldout{
color:#888888 ;
font-weight: bold;
}

.related-item_bk{
    margin: 20px 0 30px;
    padding: 30px;
    background-color: #ffffff;
}
#cart table#cart_table{
    margin-bottom: 10px;
    width: 100%;
    border: none;
    /* border-top: 1px solid #eee; */
    border-bottom: 1px solid #eee !important;
}
#cart .upbutton{
    padding-right: 0 !important;  
    margin-bottom: 20px;
}
.cart_navi{

}
.cart_navi ul{
    display: flex;
    list-style: none;
    width: 700px;
    height: 50px;
    border-radius: 5px;
    margin: 50px auto 30px auto;
    background-color: #efefef;
    line-height: 51px;
    overflow: hidden;
}
.cart_navi ul li{
position: relative;
    float: left;
    width: 175px;
    height: 50px;
    font-weight: bold;
    color: #434548;
    text-align: center;
    text-indent: 0.5em;
    letter-spacing: 0.03em;
}
.cart_navi ul li:first-child{
    border-radius: 5px 0px 0px 5px;
}
.cart_navi ul li:last-child{
    border-radius: 0 5px 5px 0;
}
.cart_navi ul li::before{
    content: "";
    position: absolute;
    top: 0;
    right: -15px;
    z-index: 1;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 0 25px 15px;
    border-color: transparent transparent transparent #cccccc;
}
.cart_navi ul li::after{
    content: "";
    position: absolute;
    top: 0;
    right: -14px;
    z-index: 2;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 0 25px 15px;
    border-color: transparent transparent transparent #efefef;
}
.cart_navi ul li.current{
background-color: #434548;
color: #ffffff;

}

.cart_navi ul li.current::before,
.cart_navi ul li.current::after{
    border-color: transparent transparent transparent #434548 !important;
}
.cart_navi ul li.current::before{
        content: "";
    position: absolute;
    top: 0;
    right: -15px;
    z-index: 1;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 0 25px 15px;
    border-color: transparent transparent transparent #cccccc;
}
.cart_navi ul li.current::after{
    content: "";
    position: absolute;
    top: 0;
    right: -14px;
    z-index: 2;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 0 25px 15px;
    border-color: transparent transparent transparent #efefef;
}
#cart_table tfoot{

}
#cart_table tfoot tr{

}
#cart_table tfoot tr th{

}
#cart-total{

}
#cart-total tbody tr{

}
.cart-total_list{
    display: flex;
    justify-content: right;
    gap: 100px;
    align-items: baseline;

}
.cart-total_list li{
    font-weight: bold;

}
.cart-total_list li:nth-child(1){
    font-size: 1rem;
}
.cart-total_list li:nth-child(2){
    letter-spacing: 0.05em;
    font-size: 1.5rem;
}
.send {
    margin: 0 auto;
    margin-top: 30px !important;
    display: grid;
    justify-content: center;
    grid-template-columns: 1fr;
    max-width: 350px;
    border: none !important;
}
input#previouscart{
    order: 2;
    margin-top: 20px;
    color: #0076d7;
    text-decoration: none;
    transition: opacity ease .2s;
    cursor: pointer;
}
#cart th{
    color: #434548 !important;
    background-color: #fff !important;  
    border: none !important;
    border-bottom: 1px solid #eee !important;
}
#cart td{
    color: #434548 !important;
    background-color: #fff !important;  
    border: none !important;
    border-bottom: 1px solid #eee !important; 
}
.skubutton{
    color: #fff !important;
    line-height: 3rem;

}
#cart_table thead tr{
    border-bottom: 1px solid #eee;

}
#customer-info h5{
    color: #434548 !important;
    background-color: #fff !important;
    font-size: 1rem;
}
.to_memberlogin_button{
    color: #fff;
    box-sizing: border-box;
    font-size: 1rem;
    line-height: 3rem;
    background: #0076d7;
    border-radius: 3px;
}
input.to_confirm_button{
    color: #fff;
    box-sizing: border-box;
    font-size: 1rem;
    line-height: 3rem;
    background: #0076d7;
    border-radius: 3px;
}
#customer-info .send{
    margin-bottom: 15px; 
    border-top: none !important;
}
#customer-info .customer_form input{
    width: 100% !important;
    margin-right: 3px;
    background: #f5f5f5;
    line-height: 200%;
    padding: 0 10px;
    box-sizing: border-box;
}
#customer-info table{
    width: 100%;
}
#customer-info td{
    color: #999 !important;
    padding-top: 10px;
    padding-bottom: 10px;  
}

/******************************/
/** コンタクトフォームの装飾 **/
/******************************/
/*　フォーム全体　*/
#cf7-area {
    width:100%;
    margin: 0 auto;
    /* font-family: "zen-kaku-gothic-antique", sans-serif; */
 }
    
    .cf7-item {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        margin: 0 0 1em;
    }
    
    .cf7-q {
        width: 30%;
        margin: 0;
        text-align: right;
    }
    
    .cf7-a {
    width: 60%;
    }
    
    /*　見出し　*/
    .form-heading
    {
    width: 100%;
    background-color: #191970;
    border-left: 1em solid #6495ED;
    border-radius: 2px;
    color: #ffffff;
    font-weight: bold;
    padding: 1em .8em;
    margin: 0 0 2em;
    }
    
    .form-heading p {
    margin: 0;
    }
    
    /* 各項目共通 */
    #cf7-area label{
    font-weight:bold;
    }
    
    #cf7-area input[type=”text”],#cf7-area input[type=”email”],#cf7-area input[type=”tel”],#cf7-area textarea {
    background: #F0F8FF;
    width:500px;
    margin-left:10px;
    }
    
    #cf7-area input[type=”text”]:focus,#cf7-area input[type=”email”]:focus,#cf7-area input[type=”tel”]:focus,#cf7-area textarea:focus {
    background: #FFE4E1;
    border: 2px solid #FF1493;
    outline: 0;
    }
    
    #cf7-area input[type=”checkbox”], #cf7-area input[type=”radio”]{
    appearance: auto;
    }
    
    #cf7-area .wpcf7-list-item {
    display: block;
    }
    
    #cf7-area textarea{
        height: 200px;
        padding: 15px 15px;
        width: 100%;
        box-sizing: border-box;
        margin: 0;
        background: #fff;
        border: none;
    }
    
    .cf7-accept-check{
    text-align: center;
    margin: 50px auto;
    }
    
    .cf7-submit {
        width: 40%;
    margin: 0 auto;
    text-align: center;
    background: #434548;
    border-radius: 3px;
    }
    .wpcf7-spinner{
        display: none !important;
    }
    input.wpcf7-form-control.wpcf7-submit.has-spinner{
        color: #fff;
        line-height: 3rem;
        width: 100%;
    }
    .wpcf7 .wpcf7-submit:disabled{
        cursor: not-allowed;
        color: #fff;  
    }
    #cf7-area input[type=”submit”]
    {
    width: 100%;
    background-color: #191970;
    color: #ffffff;
    border-radius: 5px;
    font-size: 1.2em;
    padding: 1em 10px;
    }
    
    #cf7-area input[type=”submit”]:hover
    {
    background-color:#ffffff;
    border: 2px solid #191970;
    color:#191970;
    }
    
    .cf7-btn{
    width: 40%;
    margin: 0 auto;
    text-align: center;
    }
    
    /*　必須ラベル　*/
    .cf7-req{
    font-size:.8em;
    padding: 0 6px;
    line-height: 1.3rem;
    border-radius: 3px;
    background: #eb2a2a;
    color: #ffffff;
    margin-left: 10px;
    display:inline-block;
    }
    .cf7-any{
            font-size:.8em;
            padding: 0 6px;
            line-height: 1.3rem;
            border-radius: 3px;
            background: #ddd;
            color: #999;
            margin-left: 10px;
            display:inline-block;  
    }
    input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required,
    input.wpcf7-form-control.wpcf7-text{
        position: relative;
        background: #fff;
        width: 100%;
        display: block;
        line-height: 3rem;
        box-sizing: border-box;
        padding: 0 15px;
    }
    .sns-bk{

    }
    .swiper-slide img {
        height: auto;
        width: 100%;
      }
      .slider-thumbnail .swiper-slide {
        opacity: .5;
        transition: opacity .5s;
        width: calc(100% / 3);
      }
      .slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
        opacity: 1;
      }
      .swiper{
        height: auto !important;
      }
      .item-img-box{
        display: block;
        overflow: hidden;
        position: relative;
      }
      .item-img-main img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 11;
    object-fit: contain;
      }
      .item-img-thumb {
        display: flex;
        flex-wrap: wrap;
        margin-top: 10px;
      }
      .item-img-thumb .thumbnail-item {
        width: 25%;
        padding: 5px;
        cursor: pointer;
        box-sizing: border-box;
      }
      .item-img-thumb .thumbnail-item img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    object-fit: contain;
      }
      .item-img-thumb .thumbnail-current {
        opacity: 0.8;
        border:1px solid #0076d7;
        box-sizing: border-box;
        display: flex;
        align-items: center;
      }
      .concept-kv_bg{
        width: 100%;
        height: auto;
        position: absolute;
        bottom: -10px;
        left: 0;
      }
      .concept-kv_bg img{
        width: 100%;
        height: auto;
      }
      #delivery-info #delivery_table input{
        background: #f7f7f7;
      }
      #search_zipcode{
        background: #0076d7 !important;
    color: #fff;
    border-radius: 3px;
      }
      #policy{

      }
      #policy p{
        margin-bottom: 20px;
      }
      #policy h2{
        
      }
      #policy h3{
        
      }
      #policy ul{
        margin-bottom: 30px;
      }
      #policy ul li{
        
      }