@charset "utf-8";



/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/sanitize.css");

/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");

/*lightbox.cssの読み込み
---------------------------------------------------------------------------*/
@import url(https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.10.0/css/lightbox.css);

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=M+PLUS+Rounded+1c');


html, body{
    scroll-behavior: smooth;
    margin: 0;padding: 0;
	font-size: 15px;
    overflow-x: hidden;
}

body{
    text-align: center;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    -webkit-text-size-adjust: none;
	letter-spacing: 0.05em;
    background-color: #fff;
    color: #474959;
    line-height: 2;	
}

h2{
    font-size: 12px;
}
@media screen and (min-width:767px){
    h2{
        font-size: 25px;
    }
}

h3{
    font-size: 11px;
}
@media screen and (min-width:767px){
    h3{
        font-size: 23px;
    }
}

h4{
    font-size: 10px;
}
@media screen and (min-width:767px){
    h4{
        font-size: 15px;
    }
}

a{
    font-size: 10px;
}
@media screen and (min-width:767px){
    a{
        font-size: 20px;
    }
}

/*section
---------------------------------------------------------------------------*/
section {
	padding: 20%;
}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

.clear{
    clear: both;
}

/*top img*/
.alcohole-img{
    width: 80%;
    
}@media screen and (min-width:767px){
    .alcohole-img{
        width: 50%;
        
    }
}

  /*slider setting*/
.bx-wrapper{
    margin: 0 !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: none !important;
    background: none !important;
  }

.slider img{
    margin:0 auto !important;
    display:block !important;
    width: 100% !important;
    height: 900px !important;
    object-fit: cover !important;
}

/*gallery part*/
.gallery-box{
    width: 100%;
    display: flex;
    text-align: center;
    font-size: 20px;
}

.gallery-box img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-background{
    background-color: #ffffff;
}

/*instagram icon
---------------------------------------------------------------------------*/
.icon{
    width: 40%;
    border-radius: 50%;
    object-fit: contain;
}
@media screen and (min-width:767px){
    .icon{
        width: 30%;
        border-radius: 50%;
        object-fit: contain;
        
    }
}

/*tab setting
---------------------------------------------------------------------------*/
.site-tab{
    display: flex;
    flex-wrap: wrap;
    gap: 0 10px;
    /*max-width: 1000px;*/
    position: fixed;
    z-index: 100;
}

.site-tab > label{
    flex: 1 1;
    order: -1;
    opacity: .9;
    padding: .6em 1em;
    width: 55px;
    height: 55px;
    /*設定値と同じ高さで真ん中に来る*/
    line-height: 45px;
    border-radius: 50%;
    background-color: #ffffff;
    font-size: 0.4em;
    text-align: center;
    cursor: pointer;
    /*list-style-type: none;*/
}@media screen and (min-width:767px){
    .site-tab > label{
        flex: 1 1;
        order: -1;
        opacity: .9;
        padding: .6em 1em;
        width: 100px;
        height: 100px;
        /*設定値と同じ高さで真ん中に来る*/
        line-height: 90px;
        border-radius: 50%;
        background-color: #ffffff;
        font-size: 0.8em;
        text-align: center;
        cursor: pointer;
        /*list-style-type: none;*/
        
    }
}

/*instagram icon setting*/
.site-tab img{
    position: inherit;
    width: 30px;
}
@media screen and (min-width:767px){
    .site-tab img{
        padding: 10px;
        position: inherit;
        width: 100%;
        
    }
}

.site-tab > label:hover {
    opacity: .6;
}

.site-tab input {
    display: none;
}

.site-tab > div {
    display: none;
    width: 100%;
    padding: 1.5em 1em;
    background-color: #fff;
}

.site-tab label:has(:checked) {
    opacity: 1;
}

.site-tab label:has(:checked) + div {
    display: block;
}

/*plan img*/
.planimg{
    width: 50%;
}

/*bg*/
.bg1{
    background-color: #6b6d80;
}

/*list
---------------------------------------------------------------------------*/
.list-container {
	display: flex;
	flex-wrap: wrap;
}
.list {
	height: 0;
	width: 23%;
	padding-top: 23%;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	margin: 1%;
	box-shadow: 2px 2px 3px rgba(0,0,0,0.1);
}
.list a {
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}
.list img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: 0.5s;
}
.list img:hover {
	transform: scale(1.1);
	filter: contrast(1.3);
}