@charset "utf-8";


*, *::before, *::after {
  box-sizing: border-box;
}

/*cssのリセット*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,
blockquote,pre,abbr,address,cite,code,del,dfn,em,img,
ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,
ol,ul,li,fieldset,form,label,legend,table,caption,
tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,
figcaption,figure,footer,header,hgroup,menu,nav,section,
summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    border: 0;
    outline: 0;
    background: transparent;
}
html{
	margin-top: 0!important;
}
 
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
     display: block;
}
 
ul,ol {
    list-style: none;
}
 
blockquote,
q {
    quotes: none;
}
 
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}
 
a{
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
    transition: all .5s;
}

ins {
    text-decoration: none;
    color: #000;
    background-color: #ff9;
}
 
mark {
    font-weight: bold;
    font-style: italic;
    color: #000;
    background-color: #ff9;
}
 

abbr[title],
dfn[title] {
    cursor: help;
    border-bottom: 1px dotted;
}
 
table {
    border-spacing: 0;
    border-collapse: collapse;
}
 
hr {
    display: block;
    height: 1px;
    margin: 1em 0;
    padding: 0;
    border: 0;
    border-top: 1px solid #ccc;
}
input[type="submit"],input[type="text"],input[type="email"],input[type="tel"],input[type="button"], input[type="reset"] {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
  }
  button{
    outline: none;
    padding: 0;
    appearance: none;
    background-color: transparent;
    border: none;

  }
html {
    font-size: 62.5%;
}
 
body {
    font-family: "Noto Sans JP", sans-serif;
    margin: 0;
    padding: 0;
    font-size:1.6rem;/* 16px*/
    color: #3E3E3E;
    line-height: 1.5;
}

img{
    width: 100%;
    image-rendering: -webkit-optimize-contrast;
    vertical-align: bottom;
}

.inner{
    width: 95%;
    max-width: 1140px;
    margin: 0 auto;
}
article{
    overflow: hidden;
}
@media screen and (max-width: 768px) {

	.inner{
	    width: 90%;
	}
}

.fadeIn {
  opacity: 0;
  transition: 2s;
}
.fadeIn.is-show {
  opacity: 1;
}
.fadeup {
  animation: fadeup 2.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
	display: block;
}
 
@keyframes fadeup {
  0% {
    transform: translateY(80px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*-----------------------
         header
-------------------------*/
header {
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    z-index: 999999;
    background-color: rgba(10, 10, 10, .3);
}
header.change-color {
    background-color: rgba(10, 10, 10, .9);
    transition: all .3s;
}

.header_inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	column-gap: 20px;
	width: 95%;
	max-width: 1240px;
	margin: 0 auto;
	height: 100%;
	/* margin-top: 7px; */
}
.header_logo{
	width: 31%;
	max-width: 140px;
}
.header_logo a{
	display: flex;
	align-items: center;
	color: #4B544A;
	font-weight: bold;
}

.header_logo p{
	font-size: clamp(12px, 1.39vw, 20px);
}
.header_logo p span{
	color: #fff;
	background-color: #AFC75C;
	padding: 5px 10px;
	display: inline-block;
}
.header_nav {
    width: 83%;
    display: flex;
    align-items: center;
    max-width: 470px;
    margin-left: auto;
    justify-content: center;
    column-gap: 25px;
}

.header_nav > ul{
	/* width: 56%; */
	/* max-width: 438px; */
	display: flex;
	column-gap: 32px;
	justify-content: space-between;
	align-items: center;
	text-align: center;
}
.header_nav > ul li a{
    font-size: clamp(14px, 1.53vw, 22px);
    color: #fff;
    text-align: center;
    letter-spacing: .1em;
}
.nav_menu li{
	font-size: clamp(12px, 1.39vw, 20px);
	color: #000000;
	text-align: center;
	cursor: pointer;
	position: relative;
}
.tel_btn{
	width: 61%;
	text-align: center;
	color: #fff;
	padding: 8px;
	max-width: 230px;
	border: 1px solid #fff;
	font-size: clamp(16px, 1.9299vw, 20px);
	font-weight: 500;
	letter-spacing: .1em;
}
.tel_btn img{
	width: 20%;
	max-width: 24px;
	vertical-align: middle;
	margin-right: 8px;
}
.sp_menu{
	display: none;
}


@media screen and (max-width: 1000px) {

	.header_nav {
	    padding: 10px 0;
	}
	.btn{
		padding: 20px 0;
	}
}

@media screen and (max-width: 768px) {
    
	
	.header_inner {
	    margin-top: 0;
	}
	.header_logo {
        width: 100%;
        max-width: 100px;
 }
    header{
		height: 70px;
	}
    
    .header_nav {
    	display: none;
    }
    
    .sp_menu{
        display: block;
    }
 
    .nav-menu {
        position: fixed;
        overflow-y: scroll;
        z-index: 99;
        width: 100%;
        top: 0;
        height: 100vh;
        display: none;
        background-color: rgba(0,0,0,.9);
    }

	.g-menu{
		width: 85%;
		margin: 0 auto;
		margin-top: 70px;
	}
 	.sp_logo {
	    display: block;
	    width: 100%;
	    max-width: 100px;
	    margin-top: 12px;
	    margin-left: 10px;
	}
     .g-menu .g-menu_list > li{
		 font-size: clamp(16px, 2.072vw, 18px);
        font-weight: bold;
        color: #000000;
		  border-bottom: 1px dotted #4B544A;
        margin-bottom: 20px;
        padding-bottom: 15px;
	 }
    .g-menu .g-menu_list > li > a{
        display: block;
        font-size: clamp(16px, 2.072vw, 18px);
        font-weight: 400;
        color: #fff;
        position: relative;
        letter-spacing: .1em;
    }
	
	.g-menu .tel_btn {
	    display: block;
	    width: 100%;
	    text-align: center;
	    color: #fff;
	    padding: 8px;
	    max-width: 270px;
	    margin: 0 auto;
	    border: 1px solid #fff;
	    font-size: 16px;
	    font-weight: 500;
	    letter-spacing: .1em;
	}
}



@media screen and (max-width: 768px) {
/* hamburger */
    .toggle {
        position: fixed;
        right: 15px;
        top: 18px;
        width: 36px;
        height: 36px;
        cursor: pointer;
        z-index: 999;
        display: block;
    }

    .toggle span {
        display: block;
        position: absolute;
        width: 30px;
        border-bottom: solid 2px  #fff;
        -webkit-transition: .35s ease-in-out;
        -o-transition: .35s ease-in-out;
        transition: .35s ease-in-out;
        left: 50%;
        transform: translateX(-50%);
    }

    .toggle span:nth-child(1) {
        top: 9.3px;
    }
    .toggle span:nth-child(2) {
        top: 16px;
    }
    .toggle span:nth-child(3) {
        top: 23px;
    }
   
    .toggle.active span:nth-child(1) {
        top: 10%;
        left: 45%;
        -webkit-transform: rotate(-45deg) translate(-50%,-50%);
        -ms-transform: rotate(-45deg) translate(-50%,-50%);
        transform: rotate(-45deg) translate(-50%,-50%);
        border-bottom: solid 2px  #fff;
    }
    .toggle.active span:nth-child(2),
    .toggle.active span:nth-child(3) {
        top: 72%;
        left: 41%;
        -webkit-transform: rotate(45deg) translate(-50%,-50%);
        -ms-transform: rotate(45deg) translate(-50%,-50%);
        transform: rotate(45deg) translate(-50%,-50%);
        border-bottom: solid 2px  #fff;
    }
}

.sec_ttl{
	font-family: "Zen Old Mincho", serif;
}
.sec_ttl h2 {
    font-size: clamp(23px, 2.777777vw, 40px);
    font-weight: 500;
    letter-spacing: .1em;
    line-height: 1.2;
    margin-top: 10px;
}
.sec_ttl p{
	color: #DD6656;
	font-weight: 500;
	font-size: clamp(14px, 1.53vw, 22px);
	letter-spacing: .1em;
}

@media screen and (max-width: 768px) {

	.sec_ttl h2{
    	        font-size: 28px;
 }
}

.sp_br,.sp_img{
    display: none;
}

@media screen and (max-width: 768px) {

    .sp_br,.sp_img{
        display: block;
    }
    .pc_br,.pc_img{
        display: none;
    }
}

/*-----------------------
         top
-------------------------*/
#maintop{
	position: relative;
	
}
.fv_slider{
	line-height: 0;
}
.fv_txtbox{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 90%;
	max-width: 185px;
	transform: translate(-50%, -50%);
}



@media screen and (max-width: 768px) {

	#maintop{
		height: 550px;
	}
	.fv_slider img{
		height: 550px;
		object-fit: cover;
	}
	.fv_txtbox {
	    position: absolute;
	    top: 50%;
	    left: 50%;
	    width: 90%;
	    max-width: 115px;
	    transform: translate(-50%, -50%);
	}

}

#news{
	padding: 80px 0 108px;
	background-color: #EDEDED;
}
.news_contents{
	max-width: 1010px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	column-gap: 30px;
}
.news_col{
	width: 79%;
	max-width: 730px;
}
.news_data span{
	color: #DD6656;
	font-weight: 600;
	font-size: clamp(14px, 1.39vw, 20px);
}
.news_txt h3{
	color: #3E3E3E;
	font-size: clamp(16px, 1.39vw, 20px);
}
.news_txt img{
	max-width: 24px;
}
.news_txt{
	padding-top: 24px;
	padding-bottom: 35px;
	border-bottom: 1px solid #CDCDCD;
	display: flex;
	align-items: center;
	justify-content: space-between;
	column-gap: 25px;
	margin-bottom: 28px;
}

@media screen and (max-width: 768px) {

	#news {
	    padding: 70px 0 70px;
	    background-color: #EDEDED;
	}
	
	.news_contents {
	    max-width: 1010px;
	    flex-direction: column;
	    row-gap: 30px;
	}
	.news_col{
		width: 100%;
		max-width: 730px;
	}
	.news_txt {
	    padding-top: 14px;
	    padding-bottom: 15px;
	    margin-bottom: 20px;
	}
}
/*-----------------------
         about
-------------------------*/
#about{
	padding: 104px 0 60px;
	position: relative;
	background-color: #000000;
	color: #fff;
}
.about_contents{
	display: flex;
	justify-content: space-between;
	max-width: 1015px;
	column-gap: 25px;
}
.about_contents .sec_ttl{
	-ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.about_contents .sec_ttl h2{
	margin: 0;
}
.about_txt{
	width: 85%;
	max-width: 853px;
}
.about_txt p{
	line-height: 2.5;
	font-weight: 500;
	font-size: clamp(16px, 1.39vw, 20px);
	letter-spacing: .1em;
	margin-bottom: 40px;
	font-family: "Zen Old Mincho", serif;
}
.about_img{
	display: flex;
	align-items: center;
	width: 90%;
	max-width: 1198px;
	margin-left: auto;
}
.about_img img{
	width: 50%;
}
@media screen and (min-width: 1600px) {

	.about_img{
		margin: 0 auto;
	}
	
}
@media screen and (max-width: 768px) {

	.about_img{
		margin: 0 auto;
	}
	.about_contents{
		flex-direction: column;
		max-width: 1015px;
		row-gap: 25px;
	}
	.about_contents .sec_ttl{
		-ms-writing-mode: tb-rl;
		writing-mode: rl-tb;
	}
	.about_txt {
	    width: 100%;
	    max-width: 853px;
	}
}
/*-----------------------
         menu
-------------------------*/
#menu{
	background-image: url(../img/about_bg.jpg);
	background-size: cover;
	padding: 115px 0 60px;
}
#menu .inner{
	width: 95%;
	max-width: 1157px;
}
.menu_fx{
	display: flex;
	column-gap: 20px;
	justify-content: space-between;
	color: #fff;
}
.menu_fx_txt{
	width: 43%;
	max-width: 432px;
}
.menu_fx_txt p.txt{
	font-family: "Zen Old Mincho", serif;
	line-height: 2.5;
	margin-top: 40px;
	font-size: clamp(16px, 1.39vw, 20px);
	font-weight: 500;
	letter-spacing: .1em;
}
.menu_fx_img{
	width: 53%;
	max-width: 606px;
}
.more_btn{
	display: block;
	border: 1px solid #fff;
	color: #fff;
	margin-top: 50px;
	text-align: center;
	font-size: clamp(14px, 1.39vw, 20px);
	line-height: 1.4;
	max-width: 340px;
	font-weight: 600;
	position: relative;
	letter-spacing: .04em;
	padding: 18px 20px 18px 0;
}
.more_btn::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  right: 46px;
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
}
@media screen and (max-width: 768px) {

	#menu{
		background-position: center;
		padding: 50px 0 70px;
	}
	.menu_fx {
	    flex-direction: column;
		align-items: center;
	    row-gap: 50px;
	}
	.menu_fx_txt {
	    width: 100%;
	    max-width: 432px;
	}
	.menu_fx_img {
	    width: 100%;
	    max-width: 400px;
	}
	.more_btn {
	    display: block;
		margin: 0 auto;
	    margin-top: 50px;
	    font-size: 16px;
	    max-width: 300px;
	    padding: 18px 20px 18px 0;
	}
}

/*-----------------------
         setting
-------------------------*/
#setting{
	color: #fff;
	padding: 72px 0 88px;
	background: linear-gradient(307deg,rgba(78, 78, 78, 1) 0%, rgba(31, 31, 31, 1) 63%);
}
#setting .sec_ttl{
	text-align: center;
}
.setting_fx{
	max-width: 1600px;
	margin: 64px auto 0;
	display: flex;
	align-items: center;
	column-gap: 3px;
}
.setting_fx img{
	width: 33%;
}
#setting .more_btn{
	margin: 40px auto 0;
}
@media screen and (max-width: 768px) {

	#setting {
	    padding: 50px 0 ;
	    background: linear-gradient(307deg, rgba(78, 78, 78, 1) 0%, rgba(31, 31, 31, 1) 63%);
	}
	

}


/*-----------------------
         insta
-------------------------*/
#insta{
	padding: 100px 0 100px;
	background-color: #3E3E3E;
}
.insta_fx{
	width: 95%;
	display: flex;
	justify-content: space-between;
	max-width: 1178px;
	margin: 0 auto;
}
.insta_fx h2{
	color: #fff;
	font-family: "Zen Old Mincho", serif;
	font-size: clamp(23px, 2.777777vw, 40px);
	letter-spacing: .1em;
}
.insta_txt{
	width: 35%;
	max-width: 340px;
	margin-top: 48px;
}
.insta_txt .more_btn{
	margin-top: 40%;
}
.insta_area{
	width: 62%;
	max-width: 730px;
}
.insta_area a{
	color: #fff; 
}
.sp_btn{
	display: none;
}
@media screen and (max-width: 768px) {

	#insta {
	    padding: 60px 0 ;
	    background-color: #3E3E3E;
	}
	.insta_fx {
	    width: 95%;
	    flex-direction: column;
		align-items: center;
	    max-width: 1178px;
	    margin: 0 auto;
		row-gap: 50px;
	}
	.insta_txt,.insta_area {
	    width: 90%;
	    max-width: 550px;
		margin-top: 0;
	}

	.insta_txt .more_btn{
		margin-top: 40px;
	}
	.pc_btn{
		display: none;
	}
	.sp_btn{
		display: block;
	}
	#insta .more_btn {
		width: 100%;
    }
}
/*-----------------------
         access
-------------------------*/
#access{
	padding: 60px 0 84px;
	color: #fff;
	background-color: #2E2E2E;
}
#access .sec_ttl{
	text-align: center;
}
#access .sec_ttl h2{
	font-size: clamp(28px, 2.777777vw, 40px);
}
.access_fx{
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	margin-top: 48px;
	max-width: 1133px;
}
.access_fx_txt{
	width: 51%;
	max-width: 430px;
	letter-spacing: .1em;
}
.access_fx_txt h3{
	font-family: "Zen Old Mincho", serif;
	font-weight: 600;
	font-size: clamp(18px, 1.944444vw, 28px);
	padding-bottom: 18px;
	border-bottom: 1px solid #939393;
}
.access_fx_txt dl{
	margin-top: 44px;
	display: flex;
	justify-content:space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	column-gap: 20px;
	row-gap: 30px;
}
.access_fx_txt dt{
	width: 28%;
	max-width: fit-content;
	border: 1px solid #fff;
	border-radius: 24px;
	text-align: center;
	font-size: 16px;
	padding: 4px 16px;
	font-weight: 500;
}
.access_fx_txt dd a{
	color: #fff;
	font-size: clamp(16px, 1.9299vw, 20px);
}
.access_fx_txt dd{
	width: 64%;
	font-size: clamp(16px, 1.9299vw, 20px);
	font-weight: 500;
	line-height:1.5;
}
.access_fx_txt dd .txtsmall{
	font-size: 14px;
}
.access_fx_txt dd .txtsmall03{
	font-size: clamp(16px, 1.39vw, 20px);
}
.access_fx_map{
	width: 48%;
	max-width: 530px;
}
.access_fx_map .map {
    position: relative;
    width: 100%;
    padding-top: 102%;
    /* 16:9のアスペクト比 */
    height: 0;
}
.access_fx_map .map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 768px) {

	.access_fx {
	    flex-direction: column;
		align-items: center;
	    margin-top: 48px;
	    max-width: 1133px;
		row-gap: 20px;
	}
	.access_fx_txt{
		width: 100%;
		max-width: 430px;
		letter-spacing: .1em;
	}
	.access_fx_map{
		width: 100%;
		max-width: 430px;
	}
	.access_fx_txt dl{
		row-gap: 10px;
	}
	.access_fx_txt dt{
		font-size: 14px;
		width: 100%;
	}
	.access_fx_txt dd{
		width: 100%;
		margin-bottom: 20px;
	}
	.access_fx_map .map {
	    padding-top: 56.5%;
	}
}
/*-----------------------
         shoplist
-------------------------*/

#shoplist{
	padding: 80px 0 94px;
	color: #fff;
	background-color: #3E3E3E;
}
#shoplist .sec_ttl{
	text-align: center; 
}
#shoplist ul{
	max-width: 1120px;
	margin:64px auto 0;
	display: flex;
	align-items: flex-start;
	column-gap: 10px;
	justify-content:space-between;
}
#shoplist ul li{
	max-width: 360px;
}
#shoplist ul li img{
	margin-bottom: 12px;
}
#shoplist ul li a{
	display: block;
	color: #fff;
	font-size: clamp(18px, 1.9299vw, 22px);
	font-weight: 500;
	letter-spacing: .1em;
	text-align: center;
	line-height: 1.6;
	    font-family: "Zen Old Mincho", serif;
}

@media screen and (max-width: 768px) {

	#shoplist {
	    padding: 50px 0 ;
	    color: #fff;
	    background-color: #3E3E3E;
	}
	#shoplist ul{
		margin:40px auto 0;
		flex-direction: column;
		align-items: center;
		row-gap: 50px;
	}
	#shoplist ul li{
		max-width: 360px;
	}

}


/*-----------------------
         others
-------------------------*/
#others{
	padding: 80px 0;
	background-color: #E8E8E8;
}
#others ul{
	max-width: 1120px;
	margin: 0 auto 0;
	display: flex;
	align-items: flex-start;
	column-gap: 10px;
	justify-content:space-between;
}
#others ul li {
	width: 49.47%;
	max-width: 554px;
	text-align: center;
}
#others ul li a{
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 417px;
	color: #fff;
}
.recruit_link{
	background-image: url('../img/recruit_img01.jpg');
	background-size: cover;
	background-position: center;
}
.recruit_link img{
	max-width: 56px;
	margin-right: 9px;
}
.recruit_link h3{
	color: #DD6656;
	font-family: "Zen Old Mincho", serif;
	font-size: clamp(27px, 3.055555vw, 44px);
	letter-spacing: .1em;
	line-height: .97;
	margin-bottom: 40px;
}
.recruit_link p{
	margin-bottom: 35px;
	letter-spacing: .1em;
	line-height: 1.833;
    font-size: 18px;
	font-weight: 500;
}
.recruit_link span{
	letter-spacing: .1em;
	    font-family: "Zen Old Mincho", serif;
	    font-size: clamp(30px, 3.47222vw, 50px);
	    letter-spacing: .1em;
	    line-height: .97;
	    margin-bottom: 40px;
}
.recruit_link span:last-child{
	margin-bottom: 0;
}
.kasuhara_link{
	background-color: rgba(0,0,0,.6);
}
.kasuhara_link h3{
	letter-spacing: .1em;
	line-height: 1.75;
	font-family: "Zen Old Mincho", serif;
	font-size: clamp(18px, 2.499999vw, 32px);
}
.kasuhara_link img{
	margin:64px auto 0;
	max-width: 92px;
}


@media screen and (max-width: 768px) {

	#others ul{
		max-width: 1120px;
		margin: 0 auto 0;
		flex-direction: column;
		align-items: center;
		column-gap: 10px;
		justify-content:space-between;
	}
	#others ul li {
		width: 100%;
		max-width: 450px;
		text-align: center;
	}
	#others ul li a{
		height: 300px;
	}

	.recruit_link p {
	    margin-bottom: 15px;
	    font-size: 14px;
	}
	.recruit_link h3{
		margin-bottom: 20px;
	}
	.recruit_link img{
		max-width: 26px;
		margin-right: 9px;
	}
	.kasuhara_link img {
	    margin: 34px auto 0;
	    max-width: 92px;
	}
}


/*-----------------------
         footer
-------------------------*/
footer{
	padding: 73px 0 135px;
	background-color: #222222;
}


.f_contents{
	display: flex;
	justify-content: space-between;
	column-gap: 25px;
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	color: #fff;
}
.f_txt{
	width: 45%;
	max-width: 540px;
}
.f_txt img{
	max-width: 140px;
	margin-bottom: 50px;
}
.f_txt p{
	font-size: clamp(15px, 1.9299vw, 20px);
	font-weight: 400;
	letter-spacing: .1em;
	line-height: 2;
	margin-bottom: 16px;
}
.f_txt p a{
	color: #fff;
}
.f_txt p:last-child{
	margin-bottom: 0;
}
.f_txt p:nth-of-type(3) span{
	padding-left: 21%;
}
.footer_nav li a{
	display: block;
	font-size: clamp(16px, 1.9299vw, 20px);
	color: #fff;
	font-weight: 400;
	letter-spacing: .1em;
	margin-bottom: 40px;
}
.footer_nav li:last-child a{
	margin-bottom: 0;
}
@media screen and (max-width: 768px) {

	footer{
		padding: 50px 0 100px;
	}
	.footer_nav {
	    margin: 0 auto;
	    margin-top: 40px;
	    text-align: center;
	}
	.footer_nav > li{
		/* width: 50%; */
	}
	.f_txt p:nth-of-type(3) span {
	    padding-left: 20%;
	}
	.footer_nav li:nth-of-type(1){
		font-size: 13px;
	}
	.footer_nav li a{
		font-size: 16px;
	}
	.footer_nav .drop-menu-list {
	    opacity: 1;
	    visibility: visible;
	    position: static;
	    padding-left: 22px;
	}
	.f_contents {
	    flex-direction: column;
	    align-items: center;
	    row-gap: 25px;
	    max-width: 840px;
	}
	.f_txt {
	    width: 100%;
	    margin-top: 0px;
	}
	.f_txt img {
	    max-width: 140px;
	    margin-bottom: 30px;
	}
	.f_banner{
		width: 90%;
		max-width: 351px;
	}
	.sns_link {
	    margin-top: 20px;
		column-gap: 30px;
	}
	.sns_link img{
		width: 40px;
	}
}

/*-----------------------
    下層ページ common
-------------------------*/

.page_fvbox{
	position: relative;
}
.page_fvbox{
	height: 380px;
}
.page_fvbox img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media screen and (max-width: 768px) {

	.page_fvbox{
		height: 350px;
	}
}

.basic_page_txt{
	text-align: center;
	position: absolute;
	left: 50%;
	top: 65%;
	transform: translate(-50%,-50%);
	z-index: 1;
	width: 100%;
	color: #fff;
	font-family: "Zen Old Mincho", serif;
}
.basic_page_txt2{
	top: 60%;
}
.basic_page_txt h1{
	font-size: clamp(22px, 2.499999vw, 36px);
	font-weight: 500;
	letter-spacing: .1em;
}
.basic_page_txt p{
	font-weight: 500;
	font-size: 18px;
	color: #DD6656;
	margin-bottom: 10px;
}

@media screen and (max-width: 1000px) {

	.basic_page_txt{
		left: 50%;
		top: 55%;
	}
	.basic_page_txt2{
		top: 55%;
	}
	.basic_page_txt p {
	    font-size: 16px;
	    margin-bottom: 5px;
	}

}


/*-----------------------
	    menu
-------------------------*/

.menupage_contents {
    padding: 96px 0 0 0;
    background-color: rgba(168, 168, 168, .2);
}
.menupage_contents .read{
	font-weight: 500; 
	font-size: clamp(16px, 1.39vw, 20px);
	letter-spacing: .1em;
	line-height: 2.12;
	text-align: center;
	max-width: 716px;
	margin: 0 auto;
	font-family: "Zen Old Mincho", serif;
}

.menupage_contents .sec_ttl{
	text-align: center;
}
.menupage_contents .sec_ttl h2 {
    font-size: clamp(20px, 2.499999vw, 40px);
    font-weight:bold;
    letter-spacing: .1em;
    line-height: 1.2;
    margin-top: 16px;
}
.menupage_contents .sec_ttl p {
    color: #DD6656;
    font-weight: bold;
    font-size: clamp(17px, 1.667vw, 24px);
    letter-spacing: .1em;
}
.menupage_contents .sec_ttl p:last-child{
	color: #3E3E3E;
	font-weight: 400;
	font-size: 18px;
	margin-top: 48px;
	font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {

	.menupage_contents {
	    padding:70px 0 0 0;
	}
	.menupage_contents .read {
	    font-size: 14px;
	    text-align: left;
	    max-width: 400px;
	}
	.menupage_contents .sec_ttl p:last-child {
	    font-size: 16px;
	    margin-top: 30px;
	}
}

/*--------- lunch ---------- */

.lunch_area{
	padding-top: 64px;
}
.menu_col{
	max-width: 1120px;
	margin: 0 auto 32px;
	background-color: #F2F2F2;
	align-items: flex-start !important;
}
.lunch_area .menu_col:nth-of-type(2){
	margin-top: 40px;
}
.menu_col_img{
	width: 50%;
	max-width: 510px;
}
.menu_col_txt{
	width: 50%;
	max-width: 609px;
	padding: 64px 0 0 5.715%;
}
.menu_col_txt h3{
	margin-bottom: 26px;
	font-weight: 500;
    font-size: clamp(18px, 1.944444vw, 28px);
}
.menu_col_txt p{
	margin-bottom: 26px;
	font-weight: 500;
	font-size: 16px;
	line-height: 2.25;
}
.menu_col_txt .price_txt{
	margin-bottom: 26px;
	line-height: 1.5;
	font-weight: 500;
	color: #DD6656;
	font-size: clamp(16px, 1.667vw, 24px);
}

.menu_col02{
	border: 1px solid #AFAFAF;
	max-width: 372px;
	width: 33%;
	height: 268px;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	text-align: center;
	background-color: #F2F2F2;

}

.menu_col02_fx {
	column-gap: 2px;
	max-width: 1120px;
	margin: 0 auto;
}
.menu_col02 h3{
	margin-bottom: 20px;
	font-weight: 500;
	letter-spacing: .1em;
	font-size: clamp(16px, 1.944444vw, 28px);
}
.lunch_area .menu_col02:last-child h3{
	margin-bottom: 16px;
}
.menu_col02 p{
	font-size: 16px;
	line-height: 2;
	font-weight: 500;
	letter-spacing: .1em;
}
.menu_col02 p.price_txt{
	color: #DD6656; 
	margin-bottom: 20px;
	font-weight: 500;
	font-size: clamp(16px, 1.667vw, 24px);
}
.lunch_area .menu_col02:first-child p{
	color: #DD6656; 
	width: 80%;
	max-width: 262px; 
	margin: 0 auto;
}

@media screen and (max-width: 768px) {

	.menu_col {
		flex-direction: column;
		max-width: 400px;
		margin: 0 auto 32px;
		align-items: center !important;
		row-gap: 0;
	}
	.menu_col_img{
		width: 100%;
	}
	.menu_col_txt{
		width: 100%;
		padding: 30px 20px 0 ;
		letter-spacing: .1em;
	}
	.menu_col_txt h3 {
	    margin-bottom: 10px;
	}
	.menu_col_txt p {
	    margin-bottom: 20px;
	    font-size: 15px;
	    line-height: 1.7;
	}
	.menu_col02_fx {
	    column-gap: 2px;
	    max-width: 1120px;
	    margin: 0 auto;
	}
	.menu_col02_fx {
		flex-direction: row;
		column-gap: 2px;
		max-width: 600px;
		margin: 0 auto;
	}
	.menu_col02 {
	    max-width: 372px;
	    width: 100%;
	    height: 200px;
	}
	.lunch_area .menu_col02:first-child p {
	    width: 90%;
	    max-width: 262px;
	    line-height: 1.5;
	    font-size: 10px;
	}
	.lunch_area .menu_col02:last-child h3 {
	    margin-bottom: 10px;
	}
	.menu_col02 p {
	    font-size: 13px;
	    line-height: 1.5;
	}
}
/*------- dinner -------*/
.dinner_area {
    padding-top: 80px;
}
.dinner_area .menu_col {
    margin-top: 40px;
}
.dinner_area .menu_col_txt {
    padding: 56px 0 0 64px;
}
.dinner_area .menu_col_txt h3 {
    margin-bottom: 40px;
    font-weight: 500;
    font-size: clamp(18px, 1.944444vw, 28px);
}
.dinner_area .menu_col p{
	font-weight: 500;
	margin-bottom: 8px;
	color: #3E3E3E; 
	line-height: 2.3;
	font-size: clamp(16px, 1.667vw, 24px);
}
.dinner_area .menu_col .red_txt{
    color: #DD6656;
}
.dinner_area .menu_col02_fx {
    column-gap: 8px;
}
.dinner_area .menu_col02{
	max-width: 363px;
    width: 33%;
}
.dinner_area .menu_col02 h3 span{
    font-size: clamp(16px, 1.667vw, 24px);
}
.dinner_area .menu_col02 p{
	 color: #DD6656;
	font-weight: 500;
    font-size: clamp(16px, 1.667vw, 24px);
}

@media screen and (max-width: 768px) {

	.dinner_area .menu_col_txt {
	    padding: 30px 20px;
	}
	.dinner_area .menu_col02 {
	    max-width: 363px;
	    width: 100%;
	    height: 160px;
	}
	.dinner_area .menu_col_txt h3 {
	    margin-bottom: 20px;
	}
}
/*------- common -------*/
.common_area {
    padding-top: 80px;
}
.common_area .menu_col02_fx {
    column-gap: 8px;
    align-items: flex-start !important;
    margin-top: 64px;
}
.common_area .menu_col02{
	height: 384px;
}
.common_area .menu_col02_02{
	max-width: 363px;
    width: 33%;
	height: 384px;
}
.common_area .menu_col02_02 > div{
	height: 100%;
}
.common_area .menu_col02_02 .menu_col02{
	width: 100%;
	height: 48.96%;
}
.common_area .menu_col02_02 .menu_col02:first-child{
	margin-bottom: 8px;
}
.common_area .menu_col02 h3 span{
	font-size:clamp(16px, 1.9299vw, 20px);
}
.common_area .menu_col02 p {
    color: #DD6656;
    font-weight: 500;
    font-size: clamp(16px, 1.667vw, 24px);
    line-height: 2;
}
.common_area .menu_col02_02 .menu_col02 h3{
	line-height: 1.3;
	margin-bottom: 7px;
}
.common_area .menu_col02_02 .menu_col02  span{
	color: #3E3E3E;
}
@media screen and (max-width: 768px) {

	.common_area .menu_col02 {
	    width: 48.5%;
	    height: 170px;
	}
	.common_area .menu_col02_02 {
	    max-width: 363px;
	    width: 100%;
	    height: 154px;
	}
	.common_area .menu_col02_fx {
	    column-gap: 8px;
	    align-items: flex-start !important;
	    margin-top: 30px;
	    flex-wrap: wrap;
	}
	.common_area .menu_col02_02 > div {
	    display: flex;
	    column-gap: 8px;
	    height: 154px;
	}
	.common_area .menu_col02_02 .menu_col02 {
	    width: 48.5%;
	    height: 100%;
	}
	.common_area .menu_col02 p {
	    color: #DD6656;
	    font-weight: 500;
	    font-size: clamp(15px, 1.667vw, 24px);
	    line-height: 1.5;
	}
	.common_area .menu_col02 h3 span {
	    font-size: 12px;
	}
}

/*------ alacarte_area ---------*/

.alacarte_area {
    padding-top: 80px;
}
.alacarte_area .menu_col:nth-of-type(2) {
    margin-top: 40px;
}
.alacarte_area .menu_col_txt p:not(.price_txt) {
    margin-bottom: 0;
    display: flex;
}
.alacarte_area .menu_col_txt p span{
    width: 70%;
}
.alacarte_area .menu_col02_fx {
    column-gap: 8px;
}
.alacarte_area .menu_col02 p.price_txt{
	margin-bottom: 0;
}
.alacarte_area .menu_col02{
	max-width: 368px;
	width: 32.6%;
}
.last_txt{
	    font-weight: 500;
	line-height: 1.5;
	text-align: center;
	margin-top: 64px;
	letter-spacing: .1em;
    font-size: clamp(16px, 1.667vw, 24px);
}

@media screen and (max-width: 768px) {

	.alacarte_area .menu_col_txt{
		padding-bottom: 20px;
	}
	.alacarte_area .menu_col02 {
	    max-width: 324px;
	    width: 48%;
	    height: 150px;
	}
	.last_txt {
	    text-align: left;
	    margin-top: 30px;
	    font-size: 14px;
	}
	.alacarte_area .menu_col_txt p {
	   flex-direction: column;
	}
	.alacarte_area .menu_col_txt p span{
	    width: 100%;
	}
}
/*------ alacarte_area02 ---------*/

.alacarte_area02 {
    padding-top: 80px;
}
.alacarte_area02 .menu_col02_fx{
	flex-wrap: wrap;
	margin-top: 64px;
	row-gap: 32px;
}
.alacarte_area02 .menu_col02 h3{
	margin-bottom: 50px;
}
.alacarte_area02 .menu_col02:last-child h3{
	margin-bottom: 20px;
}
.alacarte_area02 .menu_col02 p.price_txt {
    margin-bottom: 0;
	line-height: 1.5;
}
@media screen and (max-width: 768px) {
	
	.alacarte_area02 .menu_col02_fx {
	    margin-top: 40px;
	    row-gap: 10px;
	    flex-direction: row;
	}
	.alacarte_area02 .menu_col02 h3 {
	    margin-bottom: 25px;
	    font-size: 14px;
	}
	.alacarte_area02 .menu_col02 p.price_txt span{
		font-size: 12px;
	}
}
/*------ alacarte_area02 ---------*/

.lunchbox_area{
    padding-top: 80px;
}
.lunchbox_area .menu_col:nth-of-type(2) {
    margin-top: 64px;
}
.lunchbox_area .menu_col02_fx {
    column-gap: 8px;
}
.lunchbox_area .menu_col02 {
    max-width: 368px;
    width: 33%;
}
.lunchbox_area .menu_col02 h3{
	margin-bottom: 60px;
}
.lunchbox_area .menu_col02 p.price_txt{
	margin-bottom: 0;
}
@media screen and (max-width: 768px) {

	.lunchbox_area .menu_col02 h3 {
	    margin-bottom: 20px;
	}
	.lunchbox_area .menu_col02 {
	    height: 150px;
	}
}
/*--------- drink_area --------*/

.drink_area {
    padding-top: 80px;
    padding-bottom: 96px;
}
.menu_list{
	max-width: 1120px;
	margin: 70px auto 0;
	padding: 93px 0 70px;
	background-color: #F2F2F2;
}
.menuPrice,.menu_list h3,
.menu_list .attention_txt{
    width: 95%;
	max-width: 977px;
    margin: 0 auto;
}
.menuPrice > div{
	position: relative;
	z-index: 0;
	width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
.menu_list h3{
	font-size: clamp(20px, 2.22222vw, 32px);
	font-weight: bold;
	letter-spacing: .1em;
	position: relative;
	margin-bottom: 24px;
	margin-top: 56px;
}
.menu_list h3:first-child{
	margin-top: 0;
}
.menu_list h3:before{
	content: '';
	display: inline-block; 
	width: 16px;
	height: 16px;
	background-color: #DD6656;
	vertical-align: middle;
	margin-right: 20px;
	margin-bottom: 3px;
}

.menu_left {
	font-weight: 500;
	letter-spacing: .1em;
	font-size: clamp(16px, 1.944444vw, 28px);
	padding-right: 40px;
	line-height: 1.71;
	z-index: 2;
	background-color: #F2F2F2;
}
 .menu_right {
	 padding-left: 27px;
	 z-index: 2;
	 color: #DD6656;
	 line-height: 2;
	 font-weight: 500;
	 font-size: clamp(16px, 1.667vw, 24px);
	 background-color: #F2F2F2;
}
.menu_list .attention_txt{
	font-size: 16px;
	font-weight: 500;
	margin-top: 10px;
}
.menuPrice > div:after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	z-index: 1;
	width: 100%;
	height: 7px;
	flex-grow: 2;
	background-image: radial-gradient(circle, #3e3e3e 1.5px, transparent 1.5px);
	background-position: center;
	background-repeat: repeat-x;
	background-size: 19px 3px;
}
@media screen and (max-width: 768px) {

	.menu_list {
	    max-width: 6000px;
	    margin: 30px auto 0;
	    padding: 50px 0 ;
	}
	.menu_left {
	    padding-right: 10px;
	}
	.menu_right {
	    padding-left: 15px;
	    line-height: 1.4;
	}
	.beerprice .menu_left {
	    padding-right: 5px;
	}
	.beerprice .menu_right {
	    padding-left: 5px;
	    line-height: 1.4;
	    margin-top: auto;
	}
	.menu_list .attention_txt {
	    font-size: 12px;
	}
	.menuPrice > div:after {
	    top: 41%;
	    z-index: 1;
	    width: 100%;
	    height: 6px;
	    flex-grow: 2;
	    background-image: radial-gradient(circle, #3e3e3e 1.5px, transparent 1.5px);
	    background-position: center;
	    background-repeat: repeat-x;
	    background-size: 15px 3px;
	}
	.beerprice > div:first-child:after{
        top: 76%;
    }
}
.place_area{
	background-color: #3E3E3E;
	color: #fff;
	padding: 100px 0 108px;
	margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.place_fx{
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 95%;
	max-width:1120px;
	margin: 0 auto;
}
.place_fx_txt{
	width: 51%;
    max-width: 555px;
}
.place_fx_txt .sec_ttl{
	text-align: left;
	margin-bottom: 48px;
}
.place_fx_txt .sec_ttl p {
    font-size:16px;
}
.place_fx_txt .sec_ttl h2 {
    font-size: clamp(18px, 2.23vw, 32px);
}
.place_fx_txt p {
    font-size: clamp(16px, 1.39vw, 20px);
	line-height: 2.5;
	font-weight: 500;
	letter-spacing: .1em;
	    font-family: "Zen Old Mincho", serif;
}
.place_fx_img{
	width: 43%;
	max-width: 472px;
}
@media screen and (max-width: 768px){

	.place_area {
	    padding: 50px 0 ;
	}
	.place_fx{
		flex-direction: column;
		width: 90%;
		max-width:550px;
		margin: 0 auto;
		row-gap: 30px;
	}
	.place_fx_txt{
		width: 100%;
		max-width: 518px;
	}
	.place_fx_txt .sec_ttl{
		text-align: left;
		margin-bottom: 30px;
	}
	
	.place_fx_txt .sec_ttl h2 {
		margin-top: 5px;
	}
	.place_fx_txt p {
	    font-size: 14px;
		line-height: 2;
	}
	.place_fx_img{
		width: 100%;
		max-width: 472px;
	}
	
}


.policy_area{
	padding: 100px 0;
	background-color: rgba(168, 168, 168, .2);
	margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.policyarea_col{
	width: 95%;
	max-width:1120px;
	margin: 0 auto;
}
.policyarea_col .sec_ttl {
    text-align: left;
	margin-bottom: 48px;
}
.policyarea_col .sec_ttl p {
    font-size:16px;
}
.policyarea_col .sec_ttl h2 {
    font-size: clamp(18px, 2.23vw, 32px);
}
.policyarea_col p {
    font-size: clamp(16px, 1.39vw, 20px);
	line-height: 2.5;
	font-weight: 500;
	letter-spacing: .1em;
	    font-family: "Zen Old Mincho", serif;
	width: 95%;
	max-width:1120px;
}

@media screen and (max-width: 768px){

	.policy_area{
		padding: 50px 0;
	}
	.policyarea_col{
		width: 90%;
		max-width:550px;
		margin: 0 auto;
	}
	.policyarea_col .sec_ttl {
	    text-align: left;
		margin-bottom: 30px;
	}
	.policyarea_col .sec_ttl p {
	    font-size:16px;
	}
	.policyarea_col .sec_ttl h2 {
	    margin-top: 5px;
	}
	.policyarea_col p {
	    font-size: 14px;
		line-height: 2;
	}

}


#basic_page{
	height: 380px;
	position: relative;
	background: linear-gradient(141deg,rgba(78, 78, 78, 1) 16%, rgba(31, 31, 31, 1) 63%);
}
#basic_page .basic_page_txt {
    left: 50%;
    top: 60%;
}
.basic_contents{
	background-color: #424242;
	color: #fff;
	padding: 100px 0;
}
.basic_contents .inner{
	width: 90%;
	max-width: 1120px;
}
.basic_contents a{
	color: #fff;
}
.basic_contents h2,
.basic_contents h3{
	color: #F2867E;
	font-weight: bold;
	letter-spacing: .1em;
}
.basic_contents h2{
	font-size: clamp(18px, 1.667vw, 24px);
}
.basic_contents h3{
	font-size: clamp(16px, 1.667vw, 24px);
	margin-top: 70px;
	margin-bottom: 30px;
	line-height: 2;
}
.basic_contents p{
	line-height: 3.125;
	font-size: 16px;
	font-weight: 400;
}
.guideline_list h3:not(:first-child){
	margin-top: 10px;
}
.guideline_last{
	font-weight: bold !important;
	margin-top: 80px;
	line-height: 2 !important; 
}

@media screen and (max-width: 768px){
	#basic_page {
	    height: 350px;
	}
	#basic_page .page_fvbox {
        height: 350px;
    }
	#basic_page img{
	    height: 100%;
		object-fit: cover;
	}
	#basic_page .basic_page_txt {
	    left: 50%;
	    top: 55%;
	}
	.basic_contents p{
		line-height: 2;
		font-size: 14px;
	}
	.basic_contents h2{
		text-align: center;
	}
	.basic_contents h3{
		margin-top: 50px;
		margin-bottom: 20px;
	}
}
.policy_contents{
	padding: 72px 0 128px;
}
.policy_contents h2{
    font-weight: 600;
	margin: 45px 0 20px;	
}
.policy_contents h2:first-child{
	margin-top: 0;
}

@media screen and (max-width: 768px){

	.policy_contents h2{
		text-align: left;
	}
}
.newspage_contents {
    background-color: #424242;
    color: #fff;
    padding: 100px 0;
}
.newspage_contents .inner{
	width: 90%;
	max-width: 1000px;
}
.newspage_contents h3{
	font-size: clamp(18px, 1.667vw, 24px);
	padding-bottom: 20px;
	border-bottom: 1px solid #fff;
	margin-bottom: 60px;
}
.newspage_contents img{
	text-align: center;
	width: 85%;
	display: block;
	margin: 30px auto;
}
.newspage_contents p{
	line-height: 2;
    font-size: 16px;
    font-weight: 400;
	letter-spacing: .1em;
}
@media screen and (max-width: 768px){

	.newspage_contents p{
	    font-size: 14px;
	}
}

/* フェードイン(初期値) */
.js-fadeUp {
  opacity: 0; /* 最初は非表示 */
  transform: translateY(30px); /* 下に30pxの位置から */
  transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}
/* フェードイン(スクロールした後) */
.js-fadeUp.is-show {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: translateY(0); /* 30px上に移動する */
  transition-delay: .5s; /* フェード開始を0.5秒遅らせる */
}



