@charset "utf-8";
/* CSS Document */

/*============= 【base】 ==============*/
html {
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
    font-size: 62.5%;
}

body {
    font-family: 'Noto Sans JP', 'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Meiryo', 'メイリオ', 'sans-serif';
    font-size: calc(1.6rem + ((1vw - 0.48rem) * 0.1389));
    font-size: 1.6rem;
    line-height: 1.6;
    color: #fff;
    -webkit-font-feature-settings: 'palt';
    font-feature-settings: "palt";
    letter-spacing: 0.12rem;
}

* {
    margin: 0 auto;
    padding: 0;
    word-break: break-all;
    list-style-type: none;
    border-style: none;
    font-style: normal;
}

*, *::before, *::after {
    background-repeat: no-repeat; 
    box-sizing: inherit;
}

::before, ::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

hr {
  overflow: visible; /* Show the overflow in Edge and IE */
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
    text-decoration: none;
    color: inherit;
}

a:active,
a:hover {
  outline-width: 0;
}

b,strong {
  font-weight: bolder;
}

svg:not(:root) {
  overflow: hidden;
}

@media screen {
  [hidden~="screen"] {
    display: inherit;
  }
  [hidden~="screen"]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

main > section:nth-child(2n+1) {
    background: #0d0d0d;
}

main > section:nth-child(2n) {
    background: #2f2f2f;
}

.content-wrap {
    width: 1200px;
    margin: 0 auto;
    padding: 64px 32px;
}

.content-wrap2 {
    width: 1000px;
    margin: 0 auto;
    padding: 32px 32px;
}

.wrap-inner_r{
    padding: 10px;
}

.wrap-inner_l{
    padding: 18px;
}

.d-flex {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: flex-start;
    align-items: flex-start;
}

.col-2{
    width: 16.6%;
}

.col-3{
    width: 25%;
}

.col-4{
    width: 33%;
}

.col-6{
    width: 50%;
}

.col-8{
    width: 67%;
}

.col-9{
    width: 75%;
}

.col-10{
    width: 84%;
}

.wrap-inner{
    padding: 0 18px;
	margin: 0;
}

.wrap-inner2{
    padding: 16px;
}

h1 {
    font-size: 48px;
    text-align: center;
    letter-spacing: 5px;
    font-weight: 900;
}

h1 span{
    display: block;
    font-size: 40%;
    margin-top: 10px;
}

h2 {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 20px;
}

h3 {
    font-size: 24px;
    color: #FFFFFF;
    border-left: #CEA95F 24px solid;
    background-color: #3A3A3A;
    padding: 8px 12px 8px 16px;
    border-radius: 3px;
    overflow: hidden;
    font-weight: 900;
    margin-bottom: 24px;
}

.mb-20{
    margin-bottom: 20px;
}

.mb-30{
    margin-bottom: 30px;
}

.mb-40{
    margin-bottom: 40px;
}

.mb-60{
    margin-bottom: 60px;
}

/*============= 【slider】 ==============*/
.swiper-slide {
}

/*============= 【button】 ==============*/
.menu-gradient {
    width: 100%;
    display: block;
    color: #fff;
    padding: 48px 30px;
    border-radius: 30px;
    text-decoration: none;
    outline: none;
    background: linear-gradient(270deg, #b7ae65 0%, #afc16e 25%, #8b9d4c 51%, #afbb73 100%);
        background-position-x: 0%;
        background-position-y: 0%;
        background-size: auto;
    background-position: 1% 50%;
    background-size: 200% auto;
    transition: all 0.3s ease-out;
    text-align: center;
}

.menu-gradient:hover {
    color: #fff;
    background-position: 99% 50%;
}

.btn1 {
    position: relative;
    text-decoration: none;
    display: block;
    background: #CEA95F;
    color: #fff;
    padding: 12px 40px 12px 30px;
    border-radius: 25px;
    text-align: center;
    outline: none;
    transition: ease .2s;
    font-size: 15px;
    width: 80%;
}

.btn1:hover{
	background:#F0CB81;
}


/* 矢印が右に移動 */
.btnarrow1::after {
    content: '';
    position: absolute;
    top: 40%;
    right: 13px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    transition: all .3s;
}

/*hoverした際の移動*/
.btnarrow1:hover::after{
    right: 11px;
}

/* 矢印が右に移動 */
.btnarrow2::after {
    content: '';
    position: absolute;
    top: 40%;
    left: 13px;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(45deg);
    transition: all .3s;
}

/*hoverした際の移動*/
.btnarrow2:hover::after{
    left: 11px;
}

/*============= 【page_top】 ==============*/
#page_top{
    width: 90px;
    height: 90px;
    position: fixed;
    right: 10px;
    bottom: 10px;
    background-color: #CEA95F;
    /*opacity: 0.6;*/
    border-radius: 50%;
    z-index: 999;
}

#page_top a{
    position: relative;
    display: block;
    width: 90px;
    height: 90px;
    text-decoration: none;
}

#page_top a::before{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f102';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -40px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}
#page_top a::after{
    content: 'PAGE TOP';
    font-size: 13px;
    color: #fff;
    position: absolute;
    top: 45px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}

/*============= 【top cap】 ==============*/
.top-cap{
    font-weight: 700;
}

/*============= 【Concept】 ==============*/
.concept-wrap{
    border: 1px solid #E4E4E4;
    background-color: #000000;
    border-radius: 2px;
    overflow: hidden;
}

.concept-wrap-h1 {
  font-weight: 900;
  font-size: 110%;
  text-align: center;
  padding: 0 20px 15px;
}

.concept-wrap p{
    padding: 0 16px 24px;
	font-size: 90%;
}

/*============= 【Products】 ==============*/

.products-wrap-h1 {
  font-weight: 900;
  font-size: 110%;
  text-align: left;
  line-height: 130%;
}

.comment-wrap{
    margin-top: 14px;
    border: 2px solid #E4E4E4;
    background-color: #2D2D2D;
    border-radius: 5px;
    overflow: hidden;
    font-size: 90%;
    line-height: 130%;
}

.comment-wrap img{
    border-radius: 50%;
}

.comment-wrap figcaption {
  text-align: center;
  font-size: 60%;
  line-height: 120%;
  margin-top: 3px;
}

.comment-wrap figcaption p{
    margin-bottom: 4px;
}

.comment-q{
    font-size: 110%;
}

.comment-q_e{
    font-size: 90%;
    font-style:italic;
    margin-bottom: 10px;
}
.comment-q_j{
    font-size: 110%;
    font-weight: 800;
    line-height: 140%;
    color: #00DC94;
}

/*============= 【access】 ==============*/
.store-mame {
  font-size: 140%;
  font-weight: 800;
  margin-bottom: 10px;
  text-align: center;
}
.address{
    font-weight: 600;
}

.address p{
}

/*============= 【copyright】 ==============*/
.copyright {
    line-height: 20px;
    text-align: center;
    padding: 20px 0 20px;
    font-size: 10px;
    background-color: #222222;
    color: #DFDFDF;
}
.copyright a img{
    margin-bottom: 4px;
}

.copyright p{
    margin-bottom: 0px;
}


@media screen and (max-width: 1024px) {
    .content-wrap {
        width: 100%;
        padding: 64px 20px;
    }
    
    .content-wrap2 {
        width: 100%;
        padding: 34px 20px;
    }
}
@media screen and (max-width: 599px) {
    body {
    font-size: 1.4rem;
    line-height: 1.4;
    }
    .content-wrap {
        width: 100%;
        padding: 40px 14px;
    }
    .content-wrap2 {
        width: 100%;
        padding: 40px 14px;
    }
    .wrap-inner2 {
      padding: 8px;
    }
    .col-2 {
        width: 33.3%;
    }
    .col-6 {
        width: 100%;
    }
    
    .menu-gradient {
        font-size: 10px;
        padding: 30px 0px;
        border-radius: 12px;
    }
        h1 {
          font-size: 20px;
            letter-spacing: 2px;
          margin-bottom: 23px;
    }
    
    h1 span {
      font-size: 50%;
      margin-top: 5px;
    }
    
    h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    h3 {
        font-size: 14px;
        border-left: #CEA95F 13px solid;
        padding: 8px 7px 8px 10px;
        border-radius: 2px;
    }
    .top-cap {
        font-size: 14px;
        font-weight: 700;
    }
    .col-4 {
        width: 100%;
    }
    .col-8 {
        width: 100%;
    }
    
    .store-mame {
      font-size: 18px;
      margin-bottom: 15px;
      text-align: center;
    }
    #page_top {
        width: 60px;
        height: 60px;
    }
    #page_top a {
        width: 60px;
        height: 60px;
    }
    #page_top a::before {
        top: -33px;
    }
    #page_top a::after {
        content: 'PAGE TOP';
        font-size: 7px;
        top:38px;
    }
}