@charset "UTF-8";

/*共通部分*/
html {
    font-size: 100%;
	height: 100%;
        scrollbar-gutter:stable;
}
body {
    font-family: a-otf-ryumin-pr6n, serif;
    font-weight: 300;
    font-style: normal;
    line-height: 1.5;
    color: #000000;
        height: 100%;
        -webkit-font-smoothing:antialiased;
        -webkit-text-size-adjust:100;
}
body:before {
    content:"";
        display:block;
        position: fixed;
        top:0;
        left:0;
        z-index:-2;
        width:100%;
        height: 100vh;
        background: url("../images/bg01.jpg");
	background-size: cover;
	background-position: left center;
        background-repeat: no-repeat;
	background-color: rgba(229,229,229,0.95);
	background-blend-mode: screen;
}
a {
	text-decoration: none;
	color: #000000;
}
img {
    max-width: 100%;
    margin-top: 0px;
}
ul{
	list-style: "・" 
}
hr{
	margin:3rem 5%;
	border: none;
	border-top: 1.25px solid #D9B568;
}
.shinryu{
	font-family: shinryu, sans-serif;
	font-weight: 400;
	font-style: normal;
}
.wrapper {
    max-width: 1080px;
	margin: 0 auto;
	text-align: center;
	padding: 3% 5%;
}
.wrapper a{
	color: rgba(8,128,222,1.00)
}
.wrapper a:hover {
    color: #e68e45;
}
.fadeup{
	opacity: 0;
    transition-duration: 1.1s;
    transform: translate(0, 100px);
}
.fadeleft{
	opacity: 0;
    transition-duration: 1.1s;
    transform: translate(-100px, 0);
}
.scroll-in{
	opacity: 1;
    transform: translate(0, 0);
}
.blur{
	transition: all 1.5s;
	filter: blur(10px);
}
.scroll-in{
	filter: blur(0);
}

.fadein{
	animation-name: fadein;
	animation-duration: 2.75s;
	animation-timing-function: linear;
}
@keyframes fadein{
	0%{
		opacity: 0;
	}
	50%{
		opacity: 0.35;
	}
	100%{
		opacity: 1;
	}
}
.fadeout{
	animation-name: fadeout;
	animation-duration: 2.75s;
	animation-fill-mode: forwards;
}
@keyframes fadeout{
	0%{
		opacity: 1;
	}
	80%{
		opacity: 1;
	}
	100%{
		opacity: 0;
		z-index: -100;
	}
}
.late{
	animation-name: late;
	animation-duration: 2.75s;
}
@keyframes late{
	0%{
		opacity: 0;
	}
	80%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}

.button{
    display: inline-block;
    border: 1px solid #D9B568;
    padding: 0.75rem 1.85rem;
    color:  #D9B568;
    font-size: 1rem;
    letter-spacing: 0.1rem;
    border-radius: 0;
    transition: all 0.7s ease-out;
    white-space: nowrap;
        font-style: normal;
}
.on{
    background: linear-gradient(150deg,rgba(0,0,0,0), rgba(0,0,0,0),#D9B568, #D9B568);
    background-size: 300% 300%;
    background-position: 1% 1%;
}
.button:hover{
    color: #FFFFFF;
    /*border: 1px solid #FFFFFF;*/
    background-position: 99% 70%;
}

.button::after{
	content:">";
	margin-left: .5rem;
}
.delay2{
	transition-delay: 0.25s;
}


/*パンくずリスト*/
.breadcrumbs{
	list-style: none;
	display: flex;
        font-size: 0.85rem;
}
.breadcrumbs a {
    color: #000;
}
.breadcrumbs a:hover {
    color: #D9B568;
}
.breadcrumbs li::after{
  content: '›';
  display: inline-block;
  padding: 0 0.5rem; 
}

.breadcrumbs li:last-child::after{
  display: none;
}


/*header*/
header{
	width:100%;
}
#load{
	background-color: #350413;
	position: absolute;
	z-index: 9998;
	inset: 0;
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	top: 0;
        left: 0;
}
#hero {
  width: 100%;
  height: 100vh;
  background-size: cover;
    background-position: center center;
        background-color: rgba(27,28,40,0.75);
	background-blend-mode: multiply;
        position: relative;
}
#hero .logo {
    max-width: 120px;
	margin-bottom: 5rem;
}
.navi-logo {
    width: 180px;
    margin-top: 35%;
}
.menu-btn{
	position: fixed;
	top: 0.75rem;
	right: 0.75rem;
	display: flex;
	height: 3rem;
	width: 3rem;
	justify-content: center;
	align-items: center;
	z-index: 10001;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after{
	content: '';
	display: block;
	height: 1.5px;
	width: 30px;
	border-radius: 3px;
	background-color: #D9B568;
	position: absolute;
}
.menu-btn span::before{
	bottom: 10px;
}
.menu-btn span::after{
	top: 10px;
}
#btn-menu-check:checked ~ .menu-btn span{
	background-color: rgba(217,181,104,0.00);
}
#btn-menu-check:checked ~ .menu-btn span::before{
	bottom: 0;
	transform: rotate(45deg);
}
#btn-menu-check:checked ~ .menu-btn span::after{
	top: 0;
	transform: rotate(-45deg);
}
#btn-menu-check{
	display: none;
}
#btn-menu-check:checked ~ #main-nav{
	right: 0;
}
#main-nav{
	background-image: url("../images/bg02.jpg");
	background-size: cover;
	background-position: left top;
    background-color: rgba(0,11,37,0.9);
	background-blend-mode: multiply;
	width: 20%;
        min-width: 300px;
	height: 100%;
    position: fixed;
    z-index: 10000;
    top: 0;
    right: -110%;
	transition: all 1s;
	text-align: center;
	overflow: auto;
}
#main-nav ul{
	padding: 3.75rem 0;
        list-style: none;
        display: inline-block;
        text-align: left;
}
#main-nav li a{
	color: #fff;
	display: inline-block;
	padding: 0.85rem 0;
	font-size: 1.25rem;
	line-height: 3.5rem;
}
#main-nav li a:hover{
	color: #D9B568;
}
.logo-box{
    text-align: center;
	position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
	z-index: 9999;
}
.scroll-down{
        position: absolute;
        bottom:1%;
        left:50%;
        animation: arrow 2s ease-in-out infinite;
}
@keyframes arrow{
        0%{
                bottom:1%;
        }
        50%{
                bottom:3%;
        }
        100%{
                bottom:1%;
        }
}
.scroll-down span{
        position: absolute;
        left:-1.25rem;
        bottom:0.9rem;
        color: #fff;
        font-size: 0.8rem;
        letter-spacing: 0.1rem;
        writing-mode:vertical-rl;
}
.scroll-down:before{
        content: "";
        position: absolute;
        bottom:0.5rem;
        left:0.4rem;
        width: 1px;
        height: 1.25rem;
        background: #fff;
        transform: skewX(-31deg);
}
.scroll-down:after{
        content: "";
        position: absolute;
        bottom:0.5rem;
        left:0;
        width: 1px;
        height: 3.5rem;
        background: #fff;
}

/*indexmain*/
#about {
        position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}
.about-image {
  position: fixed;
  z-index: -1;
  display: block;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
        background-position: left top;
        background-color: rgba(255,255,255,0.6);
	background-blend-mode: screen;
	background-repeat: no-repeat;
}
.about-text {
  width: 100%;
  height: 100%;
  display: flex;
        flex-direction: row-reverse;
        align-items: center;
	justify-content: center;
	padding: 5% 0;
        writing-mode: vertical-rl;
}
#about h2{
	color: #D9B568;
	font-size: 2.5rem;
	line-height: 8rem;
}
#about p{
	color:rgba(70,13,14,1.00);
	line-height: 6rem;
	margin-top: 3rem;
}
#about span{
	font-size: 0.8rem;
}

.parallax {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}
.parallax-inner {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  clip: rect(0, auto, auto, 0);
}
.parallax-image {
  position: fixed;
  z-index: -1;
  display: block;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center center;
}
.parallax h2{
        font-size: 3rem;
        font-weight: 500;
        position: absolute;
        color: rgba(168,138,135,1.00);
        top: 45%;
        left: 50%;
        transform: translate(-50%,-50%);
        writing-mode:vertical-rl;
        display: inline-block;
}
.parallax .button{
        position: absolute;
        top: 80%;
        left: 50%;
        transform: translate(-50%,-50%);
}
.band{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: 45%;
        max-width: 320px;
        height: 80%;
        background-color: rgba(87,42,63,0.90);
}

/* フッター */
footer {
        background-color:#350413;
    padding-top: 1.25rem;
	padding-bottom: 0.35rem;
	position: sticky;
	top:100vh;
	z-index: 1;
	width:100%;
}
footer h3 {
	color: #D9B568;
	font-size: 1rem;
	font-weight: 300;
}
footer h3:hover {
    color: #e68e45;
}
footer a {  
	color: #FFF;
    font-size: 0.9rem;
}
footer a:hover {
    color: #e68e45;
}
.footerwrap{
	display: flex;
	flex-direction: row-reverse;
	padding-top: 1rem;
	margin: 0 20%;
}
.footerwrap1 {
	width:50%;
	margin: 7% 0 5% 0;
	padding-left: 7%;
}
.footerwrap1 ul{
	margin-left: 2rem;
}
.footerwrap1 li {
	height: 0;
	overflow: hidden;
	transition: all 0.5s;
	white-space: nowrap;
}
.footerwrap1 label::after{
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-top: 2px solid #D9B568;
    border-right: 2px solid #D9B568;
	transform: rotate(135deg);
    position: absolute;
    left: 70%;
	top: 40%;
}
.footerwrap1 input[type=checkbox]:checked + label::after{
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-top: 2px solid #D9B568;
    border-right: 2px solid #D9B568;
	transform: rotate(-45deg);
    position: absolute;
    left: 70%;
	top: 45%;
}
.footerwrap1 label {
	margin: 0 auto;
	display: block;
	padding: 0.5rem 0;
	cursor:pointer;
	position: relative;
}
.footerwrap1 input {
	display: none;
}
#type1:checked ~ #links1 li,
#type2:checked ~ #links2 li,
#type3:checked ~ #links3 li,
#type4:checked ~ #links4 li{
	height: 2rem;
	opacity: 1;
}
#type5:checked ~ #links5 li{
	height: 60px;
	opacity: 1;
}
#links5{
	display: flex;
}
#links5 li{
	padding: 15px 20px 0 0;	
}
#links5 img{
	width: 30px;	
}
.footerwrap2{
	text-align: center;
	width: 50%;
}
.footerwrap2 img{
	max-width: 200px;
	margin: 8% 0 0 0 ;
}
.sns{
	display: flex;
	list-style: none;
	justify-content: center;
	margin-top: 5%;
}
.sns li{
	padding: 15px 20px 0 0;	
}
.sns img{
	width: 30px;
}
.copyright {
	margin-top: 1.25rem;
    text-align: center;
	font-size: 0.9rem;
	color: #D9B568;
	display: block;
}


/*以下indexページ以外の子ページ用
------------------------------- */
/*子ページ共通項目*/
#header{
	background-color: #350413;
	height: 4.25rem;
	text-align: center;
    border-bottom: 2px solid #D9B568;
}
#header .logo{
	height: 2.25rem;
	margin: 0.85rem 0;
}
#page-title {
	position: relative;
	background-color: #000B25;
}
#page-title2 h2{
	text-align: center;
	color: #28285a;
	font-size: 2.5rem;
	margin-top: 1.5rem;
	padding-top: 3%;
	font-weight: 300;
	white-space: nowrap;
}
.page-title{
	position: absolute;
	color: #fff;
	font-size: 2.5rem;
	font-weight: 300;
	top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
	white-space: nowrap;
}

#page-title img{
	width: 100%;
	opacity: 0.6;
	display: block;
}
.date{
	text-align: left;
	font-size: 0.8rem;
}

/*lineup*/
#list .collection-grid{
	grid-template-columns: repeat(3,1fr);
}
.collection-grid{
	display: grid;
	gap: 0.75rem;
	grid-template-columns: repeat(6,1fr);
	list-style: none;
	text-align: center;
	margin: 0 3%;
	padding: 2rem 0;
}
.collection-grid img{
	width: 100%;
}
.collection-list{
        position: relative;
}
.collection-bigbox{
	grid-column: 1/4;
        grid-row: 1/3;
        position: relative;
}
.collection-bigbox2{
	grid-column: 4/7;
        grid-row: 1/3;
        position: relative;
}
.collection-box{
	background-color: #FFF;
	padding: 1rem 0.75rem;
        position: relative;
}
.collection-bigbox img,
.collection-bigbox2 img{
        object-fit: cover;
        width:100%;
        height: 100%;
}
.collection-box:hover,
.collection-list img:hover{
	border: solid 2px #D9B568;
}
.collection-box img{
	padding: 0.5rem 0;
	width:90%;
	object-fit: cover;
}
.collection-bigbox::after,
.collection-bigbox2::after{
        content: '';
        position: absolute;
        top:0;
        right: 0;
        bottom:0;
        left:00;
        width: 100%;
        height: 100%;
        background: linear-gradient(188deg,rgba(28,28,28,0)0%,rgba(28,28,28,0)60%,rgba(28,28,28,0.5)85%,rgba(28,28,28,1)97%);
        display: block;
        pointer-events: none;
}
.collection-grid h2{
        font-size: 1.75rem;
        position: absolute;
        color: #D9B568;
        bottom: 3%;
        left: 3%;
        padding: 0 1rem;
        z-index: 100;
        font-weight: 300;
}
.collection-grid h3{
	font-weight: 500;
}
.collection-grid h3 span{
	font-size: 0.75rem;
}
.collection-grid h4{
	font-size: 0.8rem;
	font-weight: 500;
	line-height: 1.75rem;
}
.collection-box a{
	display: block;
	width: 100%;
	height: 100%;
}
.collection-grid p{
	font-size: 0.65rem;
}

/*tos&privacy*/
.tos,
.privacy{
	display: inline-block;
	margin-bottom: 2rem;
}
.tos li,
.privacy li{
	text-align: left;
	font-size: 0.85rem;
	margin: 0 0 0.5rem 3.5rem;
	line-height: 1.75rem;
}
.tos h3,
.privacy h3{
	margin-top: 1.5rem;
    font-weight: 300;
	font-size: 1.15rem;
	line-height: 2.5rem;
	color: #28285a;
	text-align: left;
}
.tos h4,
.privacy h4 {
	line-height: 2.25rem;
	margin: 0.5rem 1.75rem 0;
	font-weight: 300;
	text-align: left;
	font-size: 0.9rem;
}
.privacy h4 {
        line-height: 1.25rem;
}
.privacy h5 {
	margin-top: 0.75rem;
        margin-left: 1.75rem;
    font-weight: 300;
	font-size: 1rem;
	line-height: 2.25rem;
        text-align: left;
	color: #28285a;
}
.tos p,
.privacy p{
	line-height: 1.75rem;
	margin: 0 0 0.5rem 3.5rem;
	text-align: left;
	font-size: 0.85rem;
}
.tos span,
.privacy span
{
	font-size: 0.7rem;
}

/*law*/
.law-table{
	text-align: left;
}
.law-table td {
	font-size: 0.85rem;
    border-bottom: 0.1px solid #D9B568;
    line-height: 2.5rem;
	padding: 0 1rem;
}
.law-table p {
	line-height: 1.5rem;
    padding: 0.25rem 0 0.5rem 0;
}

/*contact,repair*/
.contact,.repair{
	margin-bottom: 3rem;
        text-align: center;
}
.contact p,.repair p {
	text-align: left;
	font-size: 0.9rem;
	line-height: 1.75rem;
}

/*care*/
#care h2{
	color: rgba(0,11,37,0.65);
	font-size: 1.25rem;
	margin: 0.5rem 0 1rem;
}
.step{
        text-align: left;
}
.step h2{
	font-size: 1rem;
	color: #ED6F1F;
	margin:1rem 2rem 0.25rem 0 ;
}
.step h3{
	padding: 0.5rem 0 ;
	font-size: 1rem;
}
.step h4{
	padding: 0 0 0.5rem 2.5rem;
	font-size: 0.8rem;
        font-weight:300;
}
.step span{
	font-size: 0.9rem;
}
.product-navi {
    display: flex;
    justify-content: center;
	list-style: none;
	width: 100%;
}
.product-navi li {
    margin:3% 2%;
}
.product-navi img{ 
	max-width:380px;
	width:100%;
}
.step-text{
	flex-basis: 65%;
}
.product-list{
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	width: 100%;
	text-align: center;
	margin-bottom: 1rem;
}
.product-list li{
	padding: 0.5%;
	max-width: 150px;
	width:100%;
}
.product-list a{
	color: #000;
	font-size: 0.7rem;
}
.product-list a:hover{
	color: #0077bb;
}
.product-list a:hover img{
	border:2px solid #D9B568;
}

/*FAQ*/
.faq{
    border-bottom: 1px solid #D9B568;
	text-align: left;
}
#faq h3{
	font-size: 1.5rem;
	color: #350413;
	font-weight: 400;
	margin: 1.25rem 0;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary {
    display: block;
    position: relative;
    padding: 1rem 0rem 1rem 5rem;
    font-weight: 500;
}
.faq summary::before,
.faq p::before {
    position: absolute;
	left: 1rem;
}
.faq summary::before {
    content: "Q";
}
.faq p::before {
    content: "A";
}
.faq summary::after {
    position: absolute;
    width: 5px;
    height: 5px;
    right: 3%;
        top: 50%;
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
    content: '';
	display: block;
	transform: rotate(45deg);
}
.faq[open] summary::after {
    transform: rotate(225deg);
}
.faq p {
	position: relative;
    opacity: 0;
    padding: 1rem 0rem 1rem 5rem;
}
.faq[open] p {
    opacity: 1;
}
.faq img{
        margin: 0 20% 1rem;
        width:60%;
}

/*store*/
#stores{
        text-align: center;
        margin-top:5%;
}
#stores p{
        text-align: left;
        display: inline-block;
}
#stores h3{
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.5rem;
        margin: 3%;
        color: #28285a;
}
#stores h3::before,
#stores h3::after{
        content:"";
        width:1rem;
        height: 1px;
        background-color: #28285a;
}
#stores h3::before{
        margin-right: 2rem;
}
#stores h3::after{
        margin-left: 2rem;
}
#store h4{
        font-size:1.1rem;
}
.store_category{
        margin-bottom:10%;
}
.store_list{
        display: flex;
        justify-content: space-between;
        padding: 3%;
        max-width:1280px;
        margin: 0 auto;
}
.store_list iframe{
        width: 45%;
        max-width: 500px;
        aspect-ratio:16/9;
        text-align: left;
}
.store_info{
        width: 45%;
        text-align: end;
}
.store_info h4{
        font-size: 1.25rem;
        margin-bottom: 1rem;
        text-align: center;
}
.store_info p{
        text-align: left;
        display: inline-block;
        font-size: 0.9rem;
        line-height: 1.5rem;
}

/*タブレット横等のPCデザイン縮小表示、961～1080px用*/
@media (max-width:1080px){
/*共通部分*/
html {
	font-size: 95%;
}
}

/*タブレット縦、スマホ横等スマホ版デザイン、521～960px用*/
@media (max-width:960px){
html {
	font-size: 80%;
}

/*indexmain*/
#about h2{
	line-height: 5rem;
}
#about p{
	line-height: 3.75rem;
}

/* フッター */
.footerwrap{
      margin: 0 5%;          
}
.footerwrap2 img{
	max-width: 150px;
}
           
/*lineup*/
.collection-grid{
	grid-template-columns: repeat(4,1fr);
}  
.collection-bigbox{
	grid-column: 1/3;
}
.collection-bigbox2{
	grid-column: 3/5;
}
}

/*スマホ縦用スマホ版デザイン、320～520px以下用*/
@media (max-width:520px){
html {
	font-size: 65%;
}

#main-nav{
         width: 100%;       
}
#main-nav li a{
        font-size: 1.75rem;
        padding: 1rem 0;
}

/*indexmain*/
#about h2{
	line-height: 3.75rem;
}
#about p{
	line-height: 3.5rem;
}

/* フッター */
.footerwrap{
        display: block;
}
.footerwrap1,.footerwrap2{
        width: 100%;
}
.footerwrap1 {
        padding: 0 25%;
}
.footerwrap1 label::after{
    left: 90%;
}
.footerwrap1 input[type=checkbox]:checked + label::after{
    left: 90%;
}   
.footerwrap2 img{
	max-width: 120px;
        margin-top:3%;
}
.sns img{
	width: 25px;	
}

/*以下indexページ以外の子ページ用
------------------------------- */
/*子ページ共通項目*/
#page-title2 h2,.page-title{
	font-size: 2.25rem;
}

/*lineup*/
#list .collection-grid{
	grid-template-columns: repeat(2,1fr);
}

.collection-grid{
	grid-template-columns: repeat(2,1fr);
}
.collection-bigbox2{
	grid-column: 1/3;
}
        
/*care*/
.product-navi {
    display: block;
}
.product-navi img{ 
	max-width:520px;
}
.product-list li{
        max-width: 260px;
        width:50%;
}

/*store*/
.store_list{
        display: block;
}
.store_list iframe{
        width: 60%;
        max-width: 300px;
        aspect-ratio:3/2;
}
.store_info{
        width: 100%;
        text-align: center;
        margin-bottom: 2rem;
}
}