@charset "utf-8";
/* CSS Document */

/* メインビジュアル
-----------------------------------------*/
#mainvisual{
    position: relative;
    height: 700px;
    z-index: 9;
}
#mainvisual li{
    width: 100%;
    height: 700px;
}
#mainvisual li img{
    width: 100%;
    object-fit: cover;
}
@media screen and (min-width:1280px) {
#mainvisual ul{
    width: calc(100% - 100px);
    height: 700px;
    position: absolute;
    top: 0;
    left: 100px;
}
}
@media screen and (max-width:1279px) {
#mainvisual{
    height: auto;
    max-height: 700px;
}
#mainvisual ul{
    width: 100%;
    height: auto;
    max-height: 700px;
    left: 0;
}
#mainvisual li{
    height: auto;
    max-height: 700px;
}
}
@media screen and (max-width:767px) {
#mainvisual ul{
}
}

#mainvisual #catch{
    position: absolute;
    background: #c9a063;
    padding: 0 40px;
    color: #fff;
    font-family: "Noto Serif JP", serif;
    font-size: 3.8rem;
    font-weight: 500;
    line-height: 100px;
    z-index: 99;
}
@media screen and (min-width:1280px) {
#mainvisual #catch{
    top: 120px;
    left: 100px;
}
}
@media screen and (max-width:1279px) {
#mainvisual #catch{
    top: 100px;
    left: 0px;
}
}
@media screen and (min-width:768px) {
}
@media screen and (max-width:767px) {
#mainvisual #catch{
    padding: 0 20px;
    font-size: 2rem;
    line-height: 60px;
    top: 50px;
}
}

#mainvisual #scrolldown{
    position: absolute;
}
#mainvisual #scrolldown span{
    position: absolute;
    left: -6px;
    bottom: 165px;
    color: #000;
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    -ms-writing-mode: sideways-lr;
    -webkit-writing-mode: sideways-lr;
    writing-mode: sideways-lr;
}
#mainvisual #scrolldown:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -2px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #000;
    animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}
@keyframes circlemove{
      0%{bottom: 145px;}
     100%{bottom: -5px;}
 }
@keyframes cirlemovehide{
      0%{opacity: 0}
     50%{opacity: 1;}
    80%{opacity: 0.9;}
  100%{opacity: 0;}
}
#mainvisual #scrolldown:after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 2px;
    width: 1px;
    height: 150px;
    background: #000;
}
@media screen and (min-width:1280px) {
#mainvisual #scrolldown{
    bottom: 100px;
    left: 50px;
}
}
@media screen and (max-width:1279px) {
#mainvisual #scrolldown{
    bottom: 0px;
    right: 40px;
}
#mainvisual #scrolldown span{
    color: #fff;
}#mainvisual #scrolldown:before {
    background: #fff;
}
#mainvisual #scrolldown:after{
    background: #fff;
}
}
@media screen and (max-width:767px) {
#mainvisual #scrolldown{
    display: none;
}
}



/* TOP CONTENTS
-----------------------------------------*/
#top_contents h2{
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 3.8rem;
}
@media screen and (max-width:767px) {
#top_contents h2{
    font-size: 3rem;
}
}

.btn_default{
    width: 320px;
    margin: 60px auto 0 auto;
    line-height: 80px;
    border: solid 1px #000;
    text-align: center;
}
.btn_default a{
    position: relative;
    display: block;
    font-size: 1.8rem;
}
.btn_default a::after{
    display: block;
    content: '\f061';
    font: var(--fa-font-solid);
    font-size: 1.2rem;
    color: #fff;
    background: #c9a063;
    padding: 5px;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}
@media screen and (max-width:767px) {
.btn_default{
    margin: 40px auto 0 auto;
    line-height: 60px;
}
.btn_default a{
    font-size: 1.6rem;
}
}


/* NEWS
-----------------------------------------*/
#news{
    background: #000;
    position: relative;
    padding: 100px 40px;
}
#news *{
    color: #fff;
}
#news_contents{
    max-width: 1200px;
    margin: 0 auto;
}
#news_title p{
    font-size: 1.5rem;
}
#news_title p a::before{
    content: '\f061';
    font: var(--fa-font-solid);
    font-size: 1.2rem;
    color: #fff;
    background: #c9a063;
    padding: 5px;
    vertical-align: middle;
    margin-right: 10px;
}
#news_list{
    border-top: solid 1px rgba(255,255,255,.5);
}
#news_list li{
    border-bottom: solid 1px rgba(255,255,255,.5);
    padding: 25px 20px;
}
@media screen and (min-width:1280px) {
#news{
    top: -100px;
    left: 0;
    margin-bottom: -100px;
    padding-top: 200px;
}
}
@media screen and (min-width:768px) {
#news_contents{
    display: flex;
    justify-content: space-between;
}
#news_title{
    width: 200px;
}
#news_title p{
    margin-top: 40px;
}
#news_list{
    width: calc(100% - 300px);
}
#news_list li{
    display: flex;
}
#news_list li span{
    margin-right: 40px;
}
}
@media screen and (max-width:767px) {
#news{
    padding: 80px 20px;
}
#news_title{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#news_list{
    margin-top: 40px;
}
#news_list li{
    padding: 20px 0;
}
#news_list li span{
    display: block;
    margin-bottom: 10px;
}
}








/* INSTAGRAM
-----------------------------------------*/
#instagram{
    padding: 100px 40px;
}
#instagram h2{
    text-align: center;
}
#instagram #sb_instagram{
	max-width: 1200px;
	margin: 60px auto 0 auto;
}
@media screen and (max-width:767px) {
#instagram{
    padding: 80px 20px;
}
#instagram #sb_instagram{
	margin: 30px auto 0 auto;
}
.sbi_item:last-child{
	display: none !important;
}
}

/* ABOUT
-----------------------------------------*/
#about{
    /*background: #eee;*/
	background: url("../images/top/bk_about.jpg") no-repeat;
	background-position: top center;
	background-size: cover;
    padding: 100px 40px;
    position: relative;
}
#about_intro dt{
    font-size: 3.2rem;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
#about_intro dd{
    margin-top: 40px;
    line-height: 2;
}
#about_intro img{
    position: absolute;
    width: 100%;
    object-fit: cover;
}
@media screen and (min-width:1280px) {
#about_intro{
    max-width: calc(50% + 600px);
    position: relative;
    top: 0;
    left: calc(50% - 600px);
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
#about_intro dl{
    width: 660px;
    padding: 40px 0;
}
#about_intro figure{
    width: calc(100% - 700px);
    position: relative;
}
}
@media screen and (max-width:1279px) {
#about_intro figure{
    margin-top: 40px;
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    height: 0;
}
#about_intro img{
    top: 0;
    left: 0;
    height: 100%;
}
}
@media screen and (max-width:767px) {
#about{
    padding: 80px 20px;
}
#about_intro dt{
    font-size: 2.4rem;
}
}


/* HOW TO USE
-----------------------------------------*/
#howtouse{
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px;
    background: #000;
}
#howtouse *{
    color: #fff;
}
#howtouse h2{
    text-align: center;
}
#howtouse ol{
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
}
#howtouse li{
    position: relative;
    display: flex;
    flex-direction: column; 
}
#howtouse li::after{
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    background: #c9a063;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 3.8rem;
}
#howtouse li:nth-child(1)::after{
    content: '1';
}
#howtouse li:nth-child(2)::after{
    content: '2';
}
#howtouse li:nth-child(3)::after{
    content: '3';
}
#howtouse li:nth-child(4)::after{
    content: '4';
}
#howtouse li span{
    margin-top: 20px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
#howtouse .btn_default{
    border-color: #fff;
}
@media screen and (min-width:1280px) {
#howtouse li{
    width: calc((100% - 120px) / 4);
}
}
@media screen and (max-width:1279px) {
#howtouse ol{
    flex-wrap: wrap;
}
#howtouse li{
    width: calc((100% - 40px) / 2);
}
#howtouse li:nth-child(n+3){
    margin-top: 40px;
}
}
@media screen and (max-width:767px) {
#howtouse{
    padding: 80px 20px;
}
#howtouse li::after{
    width: 50px;
    height: 50px;
    font-size: 3rem;
}
}


/* SHOP
-----------------------------------------*/
#shop{
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}
#shop table{
    width: 100%;
    max-width: 800px;
    margin: 60px auto 0 auto;
    border-top: solid 1px rgba(0,0,0,.5);
}
@media screen and (min-width:768px) {
#shop th,
#shop td{
    padding: 25px 20px;
    border-bottom: solid 1px rgba(0,0,0,.5);
}
}
@media screen and (max-width:767px) {
#shop{
    padding: 80px 20px;
}
#shop th,
#shop td{
    display: block;
}
#shop th{
    padding: 20px 0 10px 0;
}
#shop td{
    border-bottom: solid 1px rgba(0,0,0,.5);
    padding-bottom: 20px;
}
}
