@charset "UTF-8";
/*******************************************************************

	リセットCSS

*******************************************************************/

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

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;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    text-decoration: none;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;  
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}


/*******************************************************************

	基本設定

*******************************************************************/


@font-face {
	font-family: 'Noto Serif JP';
	font-style: normal;
	font-weight: 400;
	src: url('../font/notoserifjp-regular.woff2') format('woff2'); 
	font-display: fallback;
}
@font-face {
	font-family: 'Noto Serif JP';
	font-style: normal;
	font-weight: 700;
	src: url('../font/notoserifjp-bold.woff2') format('woff2'); 
  font-display: fallback;
}

body {
	font-family:'Noto Serif JP';
    font-weight: 400;
	font-size: 14px;
	line-height: 2.86;
	color: #FFFFFF;
	background: #000000;
}
@media only screen and (max-width: 767px) {
	body {
		font-size: 3.7333333vw;
		min-width: inherit;
		width: 100%;
	}
}

@media print {
  body {
    width: 1200px;
    zoom: 0.6;
  }
}


/* PCのみ表示 */
.pcOnly {
  display: block !important;
}
@media only screen and (max-width: 767px) {
  .pcOnly {
    display: none !important;
  }
}

/* SPのみ表示 */
.spOnly {
  display: none !important;
}
@media only screen and (max-width: 767px) {
  .spOnly {
    display: block !important;
  }
}

img, svg {
	display: inline-block;
	max-width: 100%;
	height: auto;
	line-height: 1;
	vertical-align: middle;
}

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

.inner{
	max-width: 953px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}
@media only screen and (max-width: 767px) {
	.inner{
		width: 100%;
		padding: 0 5.3333333vw;
		box-sizing: border-box;
	  }
}

/*******************************************************************

	モジュール

*******************************************************************/

.ofi {
	object-fit: cover;
}


.hover_o a {
	display: block;
}
@media all and (min-width: 768px) {
	.hover_o a,
	.btn-gallery.hover_o{
		-webkit-transition: all .3s ease;
		transition: all .3s ease;
	}
	.hover_o a:hover,
	.btn-gallery.hover_o:hover{
		opacity: .5;
	}
}
/*
.swiper{
	z-index: -1;
}
*/

.cf::after {
	content: "";
	display: block;
	clear: both;
}

.fade {
	opacity: 0;
	transition: 4s;
}

.fade-in {
	opacity: 1;
    animation: sliderAnime 30s linear infinite 0s;	
}

@keyframes sliderAnime {
    0% {
        opacity: 0;
        animation-timing-function: ease-in;
        transform: scale(1.15);
    }

    8% {
        opacity: 1;
        animation-timing-function: ease-out;
    }

    20% {
        opacity: 1;
    }

    40%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.slide{
	opacity: 0;
	transition: 3s;
	transform: translate(-20px, 0);
	-webkit-transform: translate(-20px, 0);
}

.slide-in {
	opacity: 1;
	transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
}

@keyframes slideAnime {
    0% {
        opacity: 0;
        animation-timing-function: ease-in;
    }

    8% {
        opacity: 1;
        animation-timing-function: ease-out;
    }

    20% {
        opacity: 1;
    }

    40%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.fadeup{
	opacity: 0;
	transition: 3s;
	transform: translate(0, 20px);
	-webkit-transform: translate(0, 20px);
}

.fadeup-in {
	opacity: 1;
	transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
}

@keyframes slideAnime {
    0% {
        opacity: 0;
        animation-timing-function: ease-in;
    }

    8% {
        opacity: 1;
        animation-timing-function: ease-out;
    }

    20% {
        opacity: 1;
    }

    40%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
}


/*******************************************************************

	ヘッダー

*******************************************************************/

#hdr{
	position: fixed;
	z-index: 2;
	top: 40px;
	left: 0;
	right: 0;
}
@media all and (max-width: 767px) {
	#hdr{
		top: 20px;
	}
}

#hdr .inner{
	max-width: inherit;
	min-width: 100%;
	box-sizing: content-box;
}
@media all and (max-width: 767px) {
	#hdr .inner{
		box-sizing: border-box;
	}
}

#hdr h1{
	width: 82px;
	height: auto;
	position: absolute;
	z-index: 100;
}
@media all and (max-width: 767px) {
	#hdr h1{
		width: 72px;
	}
}

#nav-wrapper{
	width: 100%;
	height: 100%;
	background: #000000;
	position: fixed;
	top: 0;
	left: 0;
}
@media all and (max-width: 767px) {
	#nav-wrapper{
		overflow-y: scroll;
	}
}

#glnav-btn {
    display: block !important;
    width: 50px;
    height: 40px;
    position: absolute;
	z-index: 1;
    top: 0px;
    right: 20px;
    cursor: pointer;
}
@media all and (max-width: 767px) {
	#glnav-btn {
		width: 40px;
		height: 32px;
	}
}


#glnav-btn > div,
#glnav-btn:before,
#glnav-btn:after {
	display: block;
	content: "";
	width: 100%;
	height: 1px;
	background: #fff;
	position: absolute;
	transition: all .3s ease;
}
#glnav-btn:before {
	top: 0;
}
#glnav-btn > div {
	top: 50%;
	left: 0;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}
#glnav-btn:after {
	bottom: 0;
}
#glnav-btn.close > div {
	opacity: 0;
}
#glnav-btn.close:before {
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(35deg);
	transform: translateY(-50%) rotate(35deg);
}
#glnav-btn.close:after {
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(-35deg);
	transform: translateY(-50%) rotate(-35deg);
}
#hdr .hdr-twitter {
	display: none !important;
}

#nav-wrapper{
	display: none;
}

#nav-wrapper .inner{
	max-width: 913px;
	min-width: inherit;
	width: 100%;
}

nav{
	margin: 200px 0 0;
}

nav ul li{
	text-align: center;
	margin-bottom: 20px;
}
@media all and (max-width: 767px) {
	nav ul li{
		text-align: left;
		margin-bottom: 10px;
	}
}

#nav-wrapper nav ul li a{
	font-size: 14px;
	color: #FFFFFF;
	text-align: center;
	display: inline-block;
}

#hdr-contact-contents,
#contact-contents{
	width: 100%;
	display: flex;
	justify-content: space-between;
}
@media all and (max-width: 767px) {
	#hdr-contact-contents,
	#contact-contents{
		width: 100%;
		display: inherit;
		margin-bottom: 10.6666667vw;
	}
}

.contact-content{
	max-width: 294px;
	width: 32%;
}
@media all and (max-width: 767px) {
	.contact-content{
		max-width: 100%;
		width: 100%;
	}
}

.contact-content{
	text-align: center;
}

@media all and (max-width: 767px) {
	.contact-content.contact-tel,
	.contact-content.reserve-web{
		margin-right: 0;
		margin-bottom: 10.6666667vw;
	}
}

.contact-content h3{
	margin-bottom: 20px;
}
@media all and (max-width: 767px) {
	.contact-content h3{
		margin-bottom: 5.3333333vw;
	}
}

.contact-content.contact-tel h3 img,
.contact-content.reserve-web h3 img,
.contact-content.contact-web h3 img{
	width: auto;
	height: 44px;
}
@media all and (max-width: 767px) {
	.contact-content.contact-tel h3 img,
	.contact-content.reserve-web h3 img,
	.contact-content.contact-web h3 img{
		height: 9.6vw;
	}
}


.btn-contact a{
	width: 100%;
	height: 90px;
	border: solid 1px #FFFFFF;
	padding-bottom: 5px;
	color: #FFFFFF;
	display: block;
}
@media all and (max-width: 767px) {
	.btn-contact a{
		font-size: 2.9333333vw;
		height: 19.4666667vw;
		letter-spacing: 0.1em;
		padding-bottom: 0;
	}
}







#sec-contact .contact-tel .btn-contact a{
	border: solid 1px #000000;
	background: #000000;
}

.btn-contact a span{
	font-size: 30px;
	line-height: 0;
}
@media all and (max-width: 767px) {
	.btn-contact a span{
		font-size: 6.4vw;
	}
}

.contact-content.contact-web a span,
.contact-content.reserve-web a span{
	font-size: 16px;
	line-height: 90px;
}
@media all and (max-width: 767px) {
	.contact-content.contact-web a span,
	.contact-content.reserve-web a span{
		font-size: 3.4666667vw;
		line-height: 19.4666667vw;
	}
}

.reserve-web .btn-contact a{
	padding-bottom: 5px;
	display: block;
	position: relative;
}

#sec-contact .reserve-web .btn-contact a{
	padding-bottom: 5px;
	display: block;
	position: relative;
	border: solid 1px #000000;
	background: #000000;
}

.reserve-web .btn-contact a::after{
	content: "";
	position: absolute;
	width: 12px;
	height: 12px;
	background: url(../img/ico-exlink_white.png);
	background-repeat: no-repeat;
	background-size: contain;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 20px;
}

.contact-web .btn-contact a{
	border: solid 1px #FFFFFF;
	padding-bottom: 5px;
	background: #FFFFFF;
	color: #000000;
	display: block;
	position: relative;
}

.contact-web .btn-contact a::after{
	content: "";
	position: absolute;
	width: 12px;
	height: 12px;
	background: url(../img/ico-exlink.png);
	background-repeat: no-repeat;
	background-size: contain;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 20px;
}


/*******************************************************************

	メインビジュアル

*******************************************************************/

#sec-mv .mv-video {
	height: 100vh;
	position: relative;
	background: #000;
}

#sec-mv .mv-video .mv-video-dat {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: calc(100% + 2px);
	min-height: calc(100% + 2px);
	width: auto;
	height: auto;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
@media all and (max-width: 959px) {
	#sec-mv .mv-video {
		height:100vh;
	}
	#sec-mv .mv-video .mv-video-dat.ofi {
		width: 100%;
		height: 100%;
		position: static;
		min-width: none;
		min-height: none;
		top: 0;
		left: 0;
		-webkit-transform: translateX(0) translateY(0);
		transform: translateX(0) translateY(0);
	}
}


/*******************************************************************

	メインコンテンツ

*******************************************************************/

#container{
	width: 100%;
	overflow: hidden;
}


/* 概要 
*******************************************************************/

.fbox{
	display: flex;
}
@media all and (max-width: 767px) {
	.fbox{
		display: inherit;
	}
}

#sec-intro{
	padding: 120px 0 180px;
}
@media all and (max-width: 767px) {
	#sec-intro{
		padding: 24vw 0 60vw;
	}
}

.img-intro{
	max-width: 413px;
	flex: 1;
	margin-right: 9.5%;
}
@media all and (max-width: 767px) {
	.img-intro{
		max-width: inherit;
		width: 55.0666667vw;
		flex: inherit;
		margin-right: 0;
	}
}


.txt-intro{
	flex: 0 0 406px;
}
@media all and (max-width: 767px) {
	.txt-intro{
		flex: inherit;
		margin-top: -16.6666667vw;
	}
}

h2{
	writing-mode: vertical-rl;
	font-size: 32px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: -0.1em;
}
::-webkit-full-page-media, :future, :root h2{
	letter-spacing: 0.42em;
}

@media all and (max-width: 767px) {
	h2{
		font-size: 5.8666667vw;
	}
}

#sec-intro h2{
	line-height: 2.4;
	font-size: 28px;
}
@media all and (max-width: 767px) {
	#sec-intro h2{
		line-height: 1.7;
		font-size: 6.1333333vw;
	}
	::-webkit-full-page-media, :future, :root #sec-intro h2{
		line-height: 1.85;
	}
}


.subhdr-intro{
	display: flex;
	justify-content: right;
	margin-bottom: 90px;
}
@media all and (max-width: 767px) {
	.subhdr-intro{
		margin-bottom: 10.6666667vw;
	}
}

.subhdr-intro span{
	position: relative;
	margin: 0;
	left: 0.7em;
	top: -0.7em;
}
::-webkit-full-page-media, :future, :root .subhdr-intro span{
	top: 0;
}

/* 鮨たかまさについて
*******************************************************************/

#sec-about{
	padding-bottom: 160px;
}
@media all and (max-width: 767px) {
	#sec-about{
		padding-bottom: 26.6666667vw;
	}
}

.sec-kvimg{
	overflow: hidden;
	position: relative;
	z-index: -1;
}

.sec-kvimg-container{
	width: 100%;
	height: 100%;
    overflow: hidden;
}

#sec-about .sec-kvimg-wrapper{
	width: 100%;
	height: 600px;
	overflow: hidden;
}
@media all and (max-width: 767px) {
	#sec-about .sec-kvimg-wrapper{
		height: 80vw;
	}
}

.sec-kvimg img{
	width: 100%;
	height: 600px;
    object-fit: cover;
}
@media all and (max-width: 767px) {
	.sec-kvimg img{
		height: 80vw;
	}
}

#sec-info .sec-kvimg img{
	height: 500px;
}
@media all and (max-width: 767px) {
	#sec-info .sec-kvimg img{
		height: 66.6666667vw;
	}
}



#sec-about h2{
	margin-top: -400px;
}
@media all and (max-width: 767px) {
	#sec-about h2{
		margin-top: -120vw;
	}
}


#about-contents{
	margin-bottom: 200px;
}
@media all and (max-width: 767px) {
	#about-contents{
		margin-bottom: 12vw;
	}
}

#swiper-about1{
	max-width: 500px;
	width: 54.76%;
	line-height: 1;
}
@media all and (max-width: 767px) {
	#swiper-about1{
		max-width: inherit;
		width: 78.6666667vw;
		margin: 44vw 0 16vw auto;
	}
}

.about-content{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items:flex-start;
}
@media all and (max-width: 767px) {
	.about-content{
		display: inherit;
		margin-bottom: 26.6666667vw;
	}
}

.about-content:first-child{
	flex-direction: row-reverse;
	margin-bottom: 80px;
}
@media all and (max-width: 767px) {
	.about-content:first-child{
		margin-bottom: 12vw;
	}
}

.about-leadtxt{
	margin-top: 130px;
	font-size: 28px;
    writing-mode: vertical-rl;
    font-weight: 400;
    letter-spacing: -0.1em;
    line-height: 2.4;
	margin-left: -20px;
}
::-webkit-full-page-media, :future, :root .about-leadtxt{
    letter-spacing: 0.3em;
}
@media all and (max-width: 767px) {
	.about-leadtxt{
		margin-top: 0;
		font-size: 6vw;
		line-height: 1.7;
		margin-left: -10px;
	}
}

.swiper-container{
	position: relative;
	width: 100%;
}

.swiper-container .swiper-pagination{
	width: 100%;
	bottom: -20px;
	margin-left: -5px;
	line-height: 1;
}

@media all and (max-width: 767px) {
	.swiper-container .swiper-pagination{
		bottom: -10px;
	}
	.swiper-pagination-bullet {
		width: 8.5333333vw;
	}
}


.menu-content .swiper-container .swiper-pagination{
	bottom: -40px;
}
@media all and (max-width: 767px) {
	.menu-content .swiper-container .swiper-pagination{
		bottom: -20px;
	}
}


.about-content:first-child{
	flex-direction: row-reverse;
	margin-bottom: 100px;
}
@media all and (max-width: 767px) {
	.about-content:first-child{
		margin-bottom: 15vw;
	}
}

#swiper-about2{
	max-width: 413px;
	width: 45.23%;
	margin-right: 9.25%;
}
@media all and (max-width: 767px) {
	#swiper-about2{
		max-width: inherit;
		width: 78.6666667vw;
		margin-right: 0;
	}
}

.about-txt{
	display: flex;
	margin: auto;
}
@media all and (max-width: 767px) {
	.about-txt{
		flex: inherit;
		display: inherit;
		margin-top: 20vw;
	}
}



#block-oshinagaki h3{
	writing-mode: vertical-rl;
	font-size: 32px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: -0.1em;
	margin: 0 auto 80px;
}
::-webkit-full-page-media, :future, :root #block-oshinagaki h3{
	letter-spacing: 0.3em;
}
@media all and (max-width: 767px) {
	#block-oshinagaki h3{
		font-size: 6vw;
		margin: 0 auto 8vw;
	}
}

#menu-contents{
	max-width: 913px;
	display: flex;
	flex-wrap: wrap;
}
@media all and (max-width: 767px) {
	#menu-contents{
		max-width: 100%;
		display: inherit;
	}
}

#block-oshinagaki #menu-contents .menu-content:last-child{
	margin-top: 120px;
}
@media all and (max-width: 767px) {
	#block-oshinagaki #menu-contents .menu-content:last-child{
		margin-top: 13.3333333vw;
	}
}

.menu-content{
	max-width: 413px;
	width: 45.23%;
	border-left: solid 1px #FFFFFF;
	padding-left: 10px;
}
@media all and (max-width: 767px) {
	.menu-content{
		max-width: 100%;
		width: 100%;
	}
}

.menu-content:first-child{
	margin-right: 9.5%;
}
@media all and (max-width: 767px) {
	.menu-content:first-child{
		margin-right: 0;
		margin-bottom: 13.3333333vw;
	}
}

.menu-content:last-child{
	margin-right: 0;
}

.menu-tit{
	font-size: 18px;
	font-weight: 700;
	line-height: 2;
}
@media all and (max-width: 767px) {
	.menu-tit{
		font-size: 4.8vw;
		line-height: 1.5;
		margin-bottom: 0;
	}
	.menu-list{
		line-height: 1.5;

	}
}

.menu-content-dinner{
	display: flex;
}


.menu-list{
	margin-top: 20px;
}
@media all and (max-width: 767px) {
	.menu-list{
		margin-top: 4vw;
	}
}

.menu-content-dinner{
	display: flex;
	justify-content: space-between;
}

.menu-price{
	text-align: right;
	font-size: 18px;
	margin-top: 10px;
	line-height: 2;
}
@media all and (max-width: 767px) {
	.menu-price{
		font-size: 4.8vw;
		margin-top: 1.3333333vw;
	}
}

.menu-content-dinner .menu-price{
	margin-top: 20px;
}
@media all and (max-width: 767px) {
	.menu-content-dinner .menu-price{
		margin-top: 1.3333333vw;
	}
}

.menu-price span{
	font-size: 14px;
}
@media all and (max-width: 767px) {
	.menu-price span{
		font-size: 3.2vw;
	}
}


.attention-reserve{
	display: inline-block;
	border: solid 1px #FFFFFF;
	padding: 16px 60px;
	line-height: 1;
	margin: 80px 0;
}
@media all and (max-width: 767px) {
	.attention-reserve{
		margin: 13.3333333vw 0;
		padding: 3.7333333vw 16vw;
	}
}


@media all and (max-width: 767px) {
	.img-profile-container{
		/*
		width: 100%;
		height: 100%;
		*/
		overflow: hidden;
	}
}

.profile-intro{
	display: flex;
	margin-bottom: 40px;
}
@media all and (max-width: 767px) {
	.profile-intro{
		margin-bottom: 6.6666667vw;
	}
}



.img-profile{
	width: 954px;
	margin-right: -236px;
}
@media all and (max-width: 767px) {
	.img-profile{
		width: 100vw;
		margin-right: inherit;
		overflow: hidden;
		position: relative;
		z-index: -1;
		margin-left: -8vw;
	}
}

.img-profile img{
	width: 100%;
	height: auto;
}
@media all and (max-width: 767px) {
	.img-profile img{
		width: 100%;
		height: 84.8vw;
		object-fit: cover;
	}
}

.profile-intro .subhdr-intro{
	display: flex;
	justify-content: left;
	margin: 0 154px 90px 0;
}
@media all and (max-width: 767px) {
	.profile-intro .subhdr-intro{
		margin: -1.33333vw 4.8vw 0 0;
	}
}

.profile-intro h3{
	writing-mode: vertical-rl;
	font-size: 32px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: -0.1em;
}
::-webkit-full-page-media, :future, :root .profile-intro h3{
	letter-spacing: 0.3em;
}
@media all and (max-width: 767px) {
	.profile-intro h3{
		font-size: 5.8666667vw;
	}
}

.profile-leadtxt{
	font-size: 14px;
	line-height: 2.86;
	display: flex;
	justify-content: right;
	margin-bottom: 40px;
}
@media all and (max-width: 767px) {
	.profile-leadtxt{
		justify-content: inherit;
		margin-bottom: 6.6666667vw;
		margin-left: 10.6666667vw;
	}
}


.profile-name{
	font-size: 18px;
	margin-bottom: 80px;
	text-align: right;
	line-height: 1;
}
@media all and (max-width: 767px) {
	.profile-name{
		font-size: 4.8vw;
		margin-bottom: 16vw;
	}
}

.profile-detail{
	float: right;
	max-width: 728px;
	width: 100%;
	margin-bottom: 180px;
}
@media all and (max-width: 767px) {
	.profile-detail{
		margin-bottom: 26.6666667vw;
	}
}

.profile-detail .subhdr{
	font-size: 14px;
}
@media all and (max-width: 767px) {
	.profile-detail .subhdr{
		font-size: 3.7333333vw;
	}
}


.profile-detail .txt{
	font-size: 14px;
	line-height: 2;
	padding: 12px;
	border: solid 1px #FFFFFF;
}
@media all and (max-width: 767px) {
	.profile-detail .txt{
		font-size: 3.7333333vw;
		padding: 2.6666667vw;
	}
}







#sec-info{
	padding-bottom: 50px;
}
@media all and (max-width: 767px) {
	#sec-info{
		padding-bottom: 6.6666667vw;
	}
}

#sec-info h2{
	margin: -88px 0 80px auto;
}
@media all and (max-width: 767px) {
	#sec-info h2{
		margin: -16.2vw 0 10vw auto;
	}
}

.table-info{
	margin-bottom: 120px;
}
@media all and (max-width: 767px) {
	.table-info{
		margin-bottom: 13.8666667vw;
	}
}

tr{
	display: block;
	margin-bottom: 40px;
}
@media all and (max-width: 767px) {
	tr{
		margin-bottom: 12vw;
	}
}

tr:nth-child(3),
tr:nth-child(4){
	margin-bottom: 0;
}

th{
	font-weight: 400;
	width: 78px;
	text-align: left;
}
@media all and (max-width: 767px) {
	th{
		width: 18.6666667vw;
		line-height: 1.6;
	}
	th span{
		margin-left: -1.2vw;
	}
}

td{
	width: 640px;
}
@media all and (max-width: 767px) {
	td{
		width: inherit;
	}
}

td a{
	text-decoration: none;
	color: #F0DFA9;
}

td a:hover,
td a:visited{
	color: #F0DFA9;
}

.gmap {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 75%; /* 比率を4:3に固定 */
  }
   
  /* Google Mapのiframe */
  .gmap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  }

.txt-accessplan{
	display: inline-block;
	border: 1px solid #FFFFFF;
	padding: 10px 10px 10px 15px;
	line-height: 2;
	margin: 20px 0 40px;
}
@media all and (max-width: 767px) {
	.txt-accessplan{
		padding: 2.6666667vw;
		margin: 8vw 0;
	}
}

#sec-contact{
	position: relative;
	padding-top: 88px;
}
@media all and (max-width: 767px) {
	#sec-contact{
		padding-top: 27.4666667vw;
	}
}

.sec-contact-wrapper {
	background: #817242;
	padding-top: 190px;
	padding-bottom: 180px;
}
@media all and (max-width: 767px) {
	.sec-contact-wrapper {
		padding-top: 29.3333333vw;
		padding-bottom: 10.6666667vw;
	}
}

#sec-contact h2{
	position: absolute;
	writing-mode: vertical-rl;
	line-height: 1.5;
	width: 96px;
	margin: 0 auto 80px;
	top: 0;
	right: 0;
	left: 0;
}
@media all and (max-width: 767px) {
	#sec-contact h2{
		width: 18.8vw;
		margin: 0 auto;
	}
}

.btn-gallery{
	width: 413px;
	height: 90px;
	margin: 0 auto 150px;
	border: solid 1px #FFFFFF;
	color: #FFFFFF;
	font-size: 30px;
	line-height: 90px;
	position: relative;
	cursor: pointer;
	text-align: center;
}
@media all and (max-width: 767px) {
	.btn-gallery{
		width: 100%;
		height: 19.4666667vw;
		margin: 0 auto 26.6666667vw;
		font-size: 6.4vw;
		line-height: 19.4666667vw;
	}
}

.btn-gallery::after{
	content: "";
	position: absolute;
	width: 26px;
	height: 14px;
	background: url(../img/ico-more.png);
	background-repeat: no-repeat;
	background-size: contain;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 20px;
}
.btn-gallery.op-gallery{
	display: none;
}

.btn-gallery.op-gallery::after{
	content: "";
	position: absolute;
	width: 26px;
	height: 14px;
	background: url(../img/ico-more.png);
	background-repeat: no-repeat;
	background-size: contain;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 20px;
	transform: scaleY(-1);
}


.galleryimg-new{
	margin-bottom: 20px;
}
@media all and (max-width: 767px) {
	.galleryimg-new{
		margin-bottom: 2.1333333vw;
	}
}


.galleryimg-all{
	opacity: 0;
	height: 0;
	transition: 0;
	transform: translate(0, 20px);
	-webkit-transform: translate(0, 20px);
}

.galleryimg-all.op-gallery{
	opacity: 1;
	height: auto;
	transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
	margin-bottom: 180px;
}
@media all and (max-width: 767px) {
	.galleryimg-all.op-gallery{
		margin-bottom: 26.6666667vw;
	}
}

.img-shopexterior{
	width: 500px;
	margin: 0 auto;
}
@media all and (max-width: 767px) {
	.img-shopexterior{
		width: 66.6666667vw;
	}
}


/*******************************************************************

	フッター

*******************************************************************/

#ftr{
	position: relative;
	padding-top: 170px;
}
@media all and (max-width: 767px) {
	#ftr{
		padding-top: 47.3333333vw;
	}
}

#ftr .inner{
	position: absolute;
}

.ftr-logo{
	position: absolute;
	right: 40px;
	width: 60px;
	height: auto;
	margin: 0 0 0 auto;
}
@media all and (max-width: 767px) {
	.ftr-logo{
		right: 5.3333333vw;
		width: 15.2vw;
	}
}





#ftr p{
	text-align: center;
	padding-top: 40px;
	padding-bottom: 170px;
	line-height: 1;
}
@media all and (max-width: 767px) {
	#ftr p{
		padding-top: 12.6666667vw;
		padding-bottom: 21.3333333vw;
	}
}


#pagetop {
	width: 50px;
	height: 50px;
	cursor: pointer;
	position: fixed;
	right: 40px;
	bottom: 50px;
	z-index: 1;
	opacity: 0;
	  -webkit-transition: all .3s ease;
	  transition: all .3s ease;
}
@media all and (max-width: 767px) {
	#pagetop {
		width: 50px;
		height: 50px;
		cursor: pointer;
		position: fixed;
		right: 40px;
		bottom: 50px;
		z-index: 1;
		opacity: 0;
		  -webkit-transition: all .3s ease;
		  transition: all .3s ease;
	}
}


  #pagetop.scrolltop {
	opacity: 1;
  }
  #pagetop img {
	display: block;
	width: 100%;
  }
  @media all and (min-width: 768px) {
	#pagetop:hover {
	  opacity: .6 !important;
	}
	#pagetop.scrolltop.ab {
	  position: absolute;
	  top: 60px;
	}
  }
  @media all and (max-width: 767px) {
	#pagetop {
		width: 15.2vw;
	  	height: 15.2vw;
	  	top: 5.3333333vw;
		right: 5.3333333vw;
	  	bottom: auto;
	  	position: absolute;
	  	opacity: 1 !important;
	}
  }