@charset "utf-8";

/*
 * style.css
 *
 *  version --- 1.0
 *  updated --- 2017/11/30
 */

/* !HTML5 elements
---------------------------------------------------------- */
header, 
footer, 
nav, 
section, 
aside, 
article {
    display: block;
}

/* !Reseting
---------------------------------------------------------- */
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;
}

fieldset {
  border: none;
}

ul,
ol,
li {
	list-style: none;
}

img {
	max-width: 100%;
    height: auto;
	vertical-align: top;
}

table {
	border-collapse: collapse;
}

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}

select::-ms-expand {
	display: none;
}

input[type=radio]::-ms-check,
input[type=checkbox]::-ms-check{
	display: none;
}

select,
input[type=radio],
input[type=checkbox],
input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=number],
input[type=reset],
input[type=button],
input[type=submit],
textarea {
	appearance: none;
	border-radius: 0;
	font-family: "Zen Old Mincho", serif;
}

input[type=text]::-ms-clear,
input[type=tel]::-ms-clear,
input[type=number]::-ms-clear{
	display: none;
}

input[type=reset],
input[type=button],
input[type=submit]  {
	font-family: "Zen Old Mincho", serif;
	cursor: pointer;
}

*,
*:before,
*::after {
	box-sizing: border-box;
}
/* !Clearfix
---------------------------------------------------------- */
.clearfix {
    display: block;
    min-height: 1%;
}

.clearfix:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}

* html .clearfix {
    height: 1%;
}

/* !Layout
---------------------------------------------------------- */
html {
    overflow-y: scroll;
    font-size: 62.5%;
}

/*** タブレット 768x ~ 1300px***/
@media screen and (min-width: 768px) and (max-width: 1200px) {
    html {
        font-size: 0.83vw;
    }
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
    html {
        font-size: 62.5%;
    }
}

body {
	background: #E5DCC9;
	font-family: "Zen Old Mincho", serif;
    font-size: 16px;
    -webkit-text-size-adjust: none;
    line-height: 1.5;
    font-weight: normal;
    color: #191A1A;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.font-cormorant {
	text-transform: uppercase;
	font-style: italic;
	font-weight: 300;
	font-family: "Cormorant Garamond", serif;
}

@media screen and (min-width: 768px) {
	.l-sp {
		display: none;
	}
}
@media screen and (max-width: 767px) {
	body {
		font-size: 14px;
	}
	
	.l-pc {
		display: none;
	}
}

/* !Base Fonts -------------------------------------------------------------- */
a {
    color: inherit;
    text-decoration: none;
}

/*** hover ***/
@media screen and (min-width: 960px) {
    a {
        transition: all 0.5s;
    }

    a:hover {
        
    }

    .op {
        transition: opacity 0.5s ease-out;
    }

    .op:hover {
        opacity: .7;
    }

    a[href^="tel:"] {
        cursor: default;
        pointer-events:none;
    }
}

.l-hide {
    display: none;
}


/* !wrapper
---------------------------------------------------------- */
#l-wrapper {
	padding: 100px 0 0 130px;
	min-width: 1200px;
}
.home #l-wrapper {
	padding-top: 0;
}
/* sp */
@media screen and (max-width: 767px) {
	#l-wrapper {
		padding: 80px 0 50px;
		min-width: 100%;
	}
}

/* !header
---------------------------------------------------------- */
#l-header {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99;
}
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}

.l-header__inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 3;
	padding: 40px 0;
	height: 100vh;
	width: 130px;
}

.l-header__logo a {
	display: block;
}
.l-header__logo img {
	width: 80px;
}

.l-nav__btn {
	cursor: pointer;
	transition-duration: 0.5s;
	width: 46px;
	height: 46px;
	background: url(../img/common/icon_menu.svg)no-repeat center;
	background-size: 100%;
}
.l-nav__btn.active {
	background-image: url(../img/common/icon_menu_close.svg) !important;
}
#l-nav {
	opacity: 0;
	visibility: hidden;
	transition-duration: 0.5s;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 2;
	padding: 290px 0 80px 130px;
	width: 100%;
	height: 100vh;
	background: url(../img/common/bg_teppan&french.svg)no-repeat left 180px bottom -30px #E5DCC9;
	background-size: 1310px;
}
#l-nav.open {
	opacity: 1;
	visibility: visible;
}
#l-nav ul {
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
	gap: 0 60px;
}
#l-nav li a {
	display: flex;
	align-items: center;
	gap: 10px;
	height: 100%;
	writing-mode: tb-rl;
	writing-mode: vertical-rl; 
}
#l-nav li .jap {
	height: 140px;
	font-size: 28px;
}
#l-nav li .eng {
	font-size: 15px;
}
#l-nav li .eng:before {
	content: "";
	display: inline-block;
	margin-bottom: 14px;
	height: 15px;
	border-left: 1px solid #707070;
}

.l-header__cv a {
	display: block;
	background: #000000;
	letter-spacing: 0.47em;
	color: #fff;
}
.l-header__cv .reservate {
	padding: 45px 10px;
	writing-mode: tb-rl;
	writing-mode: vertical-rl; 
	border-radius: 50px;
	font-size: 17px;
	font-weight: 700;
}
.l-header__cv .tel {
	display: none;
}
.l-header__sns {
	margin-top: 47px;
}
.l-header__sns a {
	display: block;
	margin: 0 auto 20px;
	width: 22px;
	text-align: center;
}
/*** hover ***/
@media screen and (min-width: 960px) {
	.l-nav__btn:hover {
		opacity: 0.5;
	}
	.l-header__cv .reservate:hover {
		background: #fff;
		color: #191A1A;
	}
}
/* sp */
@media screen and (max-width: 767px) {
	.l-header__inner {
		align-items: flex-start;
		padding: 20px 15px;
		width: 98px;
		height: auto;
	}
	
	.l-nav__btn {
		position: fixed;
		right: 15px;
		top: 16px;
		width: 39px;
		height: 39px;
	}
	#l-nav {
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		padding: 128px 20px 168px;
		background-position: center bottom 50px;
		background-size: 397px;
	}
	#l-nav ul {
	    flex-direction: column;
		gap: 45px 0;
		margin: 0 auto;
		max-width: 200px;
	}
	#l-nav li a {
		gap: 26px;
		height: auto;
		writing-mode: lr-tb;
		writing-mode: horizontal-tb;
	}
	#l-nav li .jap {
	    height: auto;
		width: 100px;
	    font-size: 24px;
	}
	#l-nav li .eng:before {
	    content: "";
	    display: inline-block;
	    margin: 0 8px 4px 0;
	    height: 0;
		width: 14px;
	    border-left: 0;
	    border-top: 1px solid #707070;
	}
	#l-nav .btn {
		margin-top: 45px;
		text-align: center;
	}
	#l-nav .btn a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 0 50px;
		height: 38px;
		background: #000000;
		border-radius: 40px;
		color: #fff;
		font-weight: 700;
	}
	.l-header__sns {
	    margin: 27px 10px 0;
	}
	.l-header__sns a {
		margin-bottom: 18px;
	}
	.l-header__cv {
		display: flex;
		position: fixed;
		left: 0;
		bottom: 0;
		width: 100%;
	}
	.l-header__cv a {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0 8px;
		height: 50px;
		width: 50%;
		letter-spacing: 0.1em;
	}
	.l-header__cv .reservate {
		padding: 0;
		writing-mode: lr-tb;
		writing-mode: horizontal-tb;
		border-radius: 0;
		font-size: 14px;
	}
	.l-header__cv .reservate:after {
		content: "";
		width: 22px;
		height: 22px;
		background: url(../img/common/icon_link_circle_wh.svg)no-repeat center;
		background-size: 100%;
	}
	.l-header__cv .tel {
		display: flex;
		border-left: 1px solid #fff;
		font-size: 15px;
	}
	.l-header__cv .tel:before {
		content: "TEL";
		font-size: 8px;
	}
	
	.home .l-header__logo a {
		background-image: url(../img/common/logo_wh.svg);
		background-size: 100%;
	}
	/*.home .l-header__logo img,
	.home .l-header__sns img {
		opacity: 0;
	}*/
	.home .l-nav__btn {
		background-image: url(../img/common/icon_menu_wh.svg);
	}
	.home .l-nav__btn.active {
	    background-image: url(../img/common/icon_menu_close.svg);
	}
	.home .return .l-header__logo img,
	.home .return .l-header__sns img {
	    opacity: 1;
	}
	.home .l-header__sns a {
		background: no-repeat center;
	}
	.home .l-header__sns .icon_instagram {
		background-image: url(../img/common/icon_instagram_wh.svg);
	}
	.home .l-header__sns .icon_facebook {
		background-image: url(../img/common/icon_facebook_wh.svg);
	}
	
	.home .blk-st .l-nav__btn {
	    background-image: url(../img/common/icon_menu.svg);
	}
	.home .blk-st .l-header__logo img,
	.home .blk-st .l-header__sns img {
	    opacity: 1;
	}
	
}

/* !footer
---------------------------------------------------------- */
.l-story__swiper {
	overflow: hidden;
	position: relative;
	margin-top: 150px;
}
.l-story__swiper-info {
	position: absolute;
	top: 55px;
	right: auto;
	left: 130px;
	z-index: 2;
	color: #fff;
}
.l-story__swiper-info .head_middle .jap {
	font-size: 41px;
}
.l-story__swiper .swiper {
	position: relative;
	z-index: 1;
}
.l-story__swiper .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}
.l-story__swiper .swiper-slide {
	position: relative;
	width: 800px;
	aspect-ratio: 800 / 556;
}
.l-story__swiper .swiper-slide:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	mix-blend-mode: multiply;
	background: #6C6C6C;
}
.l-story__swiper .swiper-slide img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

#l-footer {
	padding: 80px 0 50px;
	background: #000;
	color: #fff;
	font-weight: 500;
}
.l-footer-inner {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
}
.l-footer__logo {
	margin-left: 40px;
}
.l-footer__logo img {
	width: 150px;
}
.l-footer__access .address {
	margin-left: 26px;
}
.l-footer__access {
	writing-mode: tb-rl;
	writing-mode: vertical-rl; 
	letter-spacing: 0.125em;
	line-height: 1.5625;
}
.l-btn__tel a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 30px;
	border: 1px solid;
	letter-spacing: 0.1em;
	white-space: nowrap;
	word-wrap: break-word;
	word-break:break-all;
	font-size: 28px;
}
.l-btn__tel a:before {
	content: "TEL";
	padding-right: 20px;
	margin-right: 20px;
	border-right: 1px solid;
	font-size: 14px;
}
.l-footer__info .time {
	margin-top: 20px;
	line-height: 1.85;
	font-size: 14px;
}
.l-footer__sns {
	display: flex;
	gap: 22px;
	margin-top: 12px;
}
.l-footer__sns a {
	width: 20px;
	text-align: center;
}
#l-copyright {
	margin-top: 100px;
	font-size: 10px;
}

/*** hover ***/
@media screen and (min-width: 960px) {
	
}
/* sp */
@media screen and (max-width: 767px) {
	.l-story__swiper {
		margin-top: 70px;
	}
	.l-story__swiper .swiper-slide {
	    width: 322px;
	    aspect-ratio: 322 / 224;
	}
	.l-story__swiper-info {
	    top: 10px;
	    left: 28px;
	}
	.l-story__swiper-info .head_middle .eng {
	    margin-left: 6px;
	    font-size: 6px;
	}
	.l-story__swiper-info .head_middle .jap {
	    margin-top: 28px;
		margin-left: 2px;
		font-size: 15px;
	}
	.l-story__swiper-info .head_middle .jap2 {
	    margin-top: 62px;
	}
	.l-story__swiper-info .head_middle .jap3 {
	    margin-top: 106px;
	}
	
	#l-footer {
	    padding: 50px 0 32px;
	}
	.l-footer-inner {
	    display: block;
	}
	.l-footer__access {
		margin: 0 auto 60px;
		font-size: 13px;
	}
	.l-footer__logo {
	    margin-left: 30px;
	}
	.l-footer__logo img {
	    width: 126px;
	}
	.l-footer__access .address {
	    margin-left: 20px;
	}
	.l-btn__tel a {
	    padding: 20px;
	    font-size: 26px;
	}
	.l-btn__tel a:before {
	    padding-right: 18px;
	    font-size: 13px;
	}
	
	#l-copyright {
	    margin-top: 42px;
		text-align: center;
	}
}


/* !common
---------------------------------------------------------- */
.l-contents {
	display: flex;
	justify-content: space-between;
}

.l-inner {
	margin: 0 auto;
	padding: 0 50px;
	max-width: 1184px;
}

#l-breadcrumb {
	margin-bottom: 24px;
	text-align: right;
}
#l-breadcrumb ul {
	display: flex;
	justify-content: flex-end;
	gap: 0 48px;
}
#l-breadcrumb li {
	position: relative;
	line-height: 1;
	font-size: 12px;
}
#l-breadcrumb li + li:before {
	content: ">";
	position: absolute;
	top: 0;
	left: -24px;
	transform: translateX(-50%);
}

#l-teaser {}
.l-teaser__display {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}
.l-teaser__display .img {
	width: calc(60% + 4px);
}
.l-teaser__display .info {
	width: calc(34% - 8px);
}
.l-teaser__display .head-large {
	display: inline-block;
    margin-bottom: 68px;
}
.l-teaser__display .l-btn__tel {
	margin: 40px 0 20px;
}
.l-teaser__display .l-btn__tel a:before {
	content: "ご予約";
}

.head-large {
	margin-bottom: 52px;
	text-align: center;
}
.head-large span + span:before {
	content: "";
	display: block;
	margin: 8px auto;
	height: 16px;
	width: 0;
	border-left: 1px solid;
}
.head-large .eng {
	display: block;
	line-height: 1;
	font-size: 60px;
	font-weight: 300;
}
.head-large .jap {
	display: block;
	font-weight: 400;
}

.head_middle {
	writing-mode: tb-rl;
	writing-mode: vertical-rl;
	letter-spacing: 0.02em;
}
.head_middle .jap {
	display: inline-block;
	margin-left: 6px;
	border-right: 1px solid;
	font-size: 45px;
	font-weight: 400;
}
.head_middle .jap2 {
	margin-top: 93px;
}
.head_middle .jap3 {
	margin-top: 210px;
}
.head_middle .eng {
	display: inline-block;
	margin-left: 30px;
	letter-spacing: 0.1em;
	font-size: 12px;
	font-weight: 400;
}

.l-txt {
	line-height: 2.14;
	font-size: 14px;
	font-weight: 500;
}

.wp-pagenavi {
	clear: both;
}
.wp-pagenavi a, 
.wp-pagenavi span {
	text-decoration: none;
	border: 1px solid #BFBFBF;
	padding: 3px 5px;
	margin: 2px;
}
.wp-pagenavi a:hover, 
.wp-pagenavi span.current {
	border-color: #000;
}
.wp-pagenavi span.current {
	font-weight: bold;
}

.is-notactive {
	opacity: .3;
}

.l-btnlink {
	margin-top: 30px;
}
.l-btnlink .btn {
	display: inline-flex;
	align-items: center;
	transition-duration: 0.5s;
	padding: 0 50px 0 28px;
	height: 50px;
	min-width: 194px;
	background: url(../img/common/icon_link_wh.svg)no-repeat right 24px center #000;
	background-size: 28px;
	border-radius: 50px;
	color: #fff;
	font-weight: 500;
	font-size: 16px;
}
.l-btnlink .white-st {
	background-image: url(../img/common/icon_link.svg);
	background-color: #fff;
	color: #000;
}

.l-linkline {
	display: inline-block;
	position: relative;
	line-height: 1.3;
}
.l-linkline:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width:100%;
	border-bottom: 1px solid;
}
@keyframes decoration {
	0% {
		transform: none;
		transform-origin: right center;
	}
	50% {
		transform: scaleX(0);
		transform-origin: right center;
	}
	50.01% {
		transform: scaleX(0);
		transform-origin: left center;
	}
	100% {
		transform: none;
		transform-origin: left center;
	}
}

/*** hover ***/
@media screen and (min-width: 960px) {
	#l-breadcrumb li a:hover {
		text-decoration: underline;
	}
	
	.l-btnlink .btn:hover {
		background-image: url(../img/common/icon_link.svg);
		background-color: #fff;
		color: #000;
	}
	.l-btnlink .white-st:hover,
	a:hover .l-btnlink .white-st {
		background-image: url(../img/common/icon_link_wh.svg);
		background-color: #000;
		color: #fff;
	}
	
	.l-linkline:hover:after {
		animation:decoration 0.4s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
	}
}
/* sp */
@media screen and (max-width: 767px) {
	.l-contents {
		display: block;
	}
	
	.l-inner {
		padding: 0 15px;
	}
	
	#l-breadcrumb {
		margin-bottom: 10px;
	}
	#l-breadcrumb ul {
		gap: 0 24px;
	}
	#l-breadcrumb li {
		font-size: 10px;
	}
	#l-breadcrumb li + li:before {
		left: -12px;
	}
	
	.l-teaser__display {
		display: block;
	}
	.l-teaser__display .img {
		/*margin: 0 0 28px auto;
		width: calc(100% - 74px);*/
		margin: 0;
		width: 100%;
		padding-top: 70px;
		padding-bottom: 40px;
	}
	.l-teaser__display .info {
		width: auto;
	}
	.l-teaser__display .head-large {
		display: block;
	    margin-bottom: 26px;
	}
	.l-teaser__display .l-btn__tel {
		margin: 18px 0;
	}
	
	.head-large {
		margin-bottom: 26px;
	}
	.head-large .eng {
	    font-size: 40px;
	}
	.head-large .jap {
		line-height: 1.5;
		font-size: 17px;
	}
	
	.head_middle .jap {
	    margin-left: 5px;
	    font-size: 28px;
	}
	.head_middle .jap2 {
	    margin-top: 60px;
	}
	.head_middle .jap3 {
	    margin-top: 132px;
	}
	.head_middle.st2 {
		display: flex;
		justify-content: center;
		writing-mode: lr-tb;
		writing-mode: horizontal-tb;
	}
	.head_middle.st2 .jap {
		margin: 10px 0 0;
		border-right: 0;
		border-bottom: 1px solid;
	}
	.head_middle.st2 .jap2 {
		margin-left: 40px;
	}
	
	.l-txt {
		line-height: 2;
		font-size: 12px;
	}
	
	.l-btnlink {
	    margin-top: 40px;
	}
}


/* !page
---------------------------------------------------------- */
#l-mainvisual {
	position: relative;
	overflow: hidden;
	margin-left: -130px;
}
.l-mainvisual__img {
	position: relative;
	height: 100vh;
}
.l-mainvisual__iframe {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	overflow: hidden;
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	width: 3258px;
	height: 3258px;
	border-radius: 50%;
}
.l-mainvisual__swiper {
	margin: 0 auto;
	width: 100vw;
}
.l-mainvisual__swiper .swiper-slide {
	overflow: hidden;
	height: 100vh;
}
.l-mainvisual__swiper .swiper-slide img {
	-webkit-transition: 8s linear;
	transition: 8s linear;
	transform: scale(1.1, 1.1);
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.l-mainvisual__swiper .swiper-slide-active img {
	transform: scale(1, 1);
}
.l-mainvisual__info {
	position: absolute;
	right: 100px;
	top: 196px;
	z-index: 2;
}
.l-notices {
	display: flex;
	align-items: center;
	position: absolute;
	bottom: 30px;
	left: 130px;
	z-index: 3;
	padding: 25px;
	background: #fff;
	border-radius: 5px;
}
.l-notices .list {
	padding-right: 42px;
	border-right: 2px dotted #707070;
}
.l-notices .list dl {
	display: flex;
	align-items: center;
	gap: 0 28px;
	font-weight: 700;
}
.l-notices .list dl + dl {
	margin-top: 14px;
}
.l-notices .list dt {
	letter-spacing: 0.1em;
	font-size: 12px;
}
.l-notices .list dd {
	overflow:hidden;
	text-overflow:ellipsis; 
	white-space:nowrap;
}
.l-notices .list dd a {
	font-size: 15px;
}

.l-notices .tolist {
	padding-left: 32px;
}
.l-notices .tolist a {
	display: inline-block;
	padding: 3px 45px 3px 0;
	background: url(../img/common/icon_link_circle.svg)no-repeat right 5px center;
	background-size: 30px;
	font-weight: 500;
}

.home-about {
	padding: 208px 0 0;
	background: url(../img/common/bg_teppan&french.svg) no-repeat left 50px top 70px;
	background-size: 1310px;
}
.home-about__display {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}
.home-about__display .img {
	width: calc(55% - 3px);
}
.home-about__display .info {
	width: 38%;
}
.home-about__display .head {
	margin-bottom: 30px;
	font-size: 38px;
	font-weight: 400;
}

.home-menu {
	padding: 150px 0 0;
}
.home-menu_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 5px;
}
.home-menu_list li {
	position: relative;
}
.home-menu_list li .bg {
	overflow: hidden;
	aspect-ratio: 433 / 644;
}
.home-menu_list li .bg:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.39);
}
.home-menu_list li .bg img {
	object-fit: cover;
	transition-duration: 0.3s;
	width: 100%;
	height: 100%;
}
.home-menu_list li .info {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 100%;
	text-align: center;
	color: #fff;
}
.home-menu_list li .head-large {
	margin-bottom: 0;
}
.home-menu_list li .time {
	min-height: 48px;
	font-weight: 500;
}

.home-menu_photolist {
	position: relative;
	padding: 0 50px;
	margin-top: 72px;
}
.home-menu_photolist .swiper-pagination {
	position: static;
	margin-bottom: 55px;
	text-align: right;
	line-height: 1;
	font-size: 0;
}
.home-menu_photolist .swiper-pagination-current {
	padding: 0 16px;
	border-right: 1px solid #000;
	font-size: 39px;
}
.home-menu_photolist .swiper-pagination-total {
	padding-left: 16px;
	font-size: 54px;
}
.l-swiperctrl .swiper-button-prev:after,
.l-swiperctrl .swiper-button-next:after {
	display: none;
}
.home-menu_photolist .swiper-button-prev,
.home-menu_photolist .swiper-button-next {
	opacity: 0.7;
	transition-duration: 0.3s;
	width: 125px;
	height: 125px;
	background: no-repeat center;
	background-size: 100%;
}
.home-menu_photolist .swiper-button-prev {
	left: -30px;
	background-image: url(../img/common/slide_prev.svg);
}
.home-menu_photolist .swiper-button-next {
	right: -30px;
	background-image: url(../img/common/slide_next.svg);
}
.home-menu_photolist .photoimg {
	margin: 0 auto;
	max-width: 910px;
	aspect-ratio: 910 / 588;
	transition-duration: 0.5s;
}
.home-menu_photolist .photoimg img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.home-menu_photolist .swiper-slide1 .photoimg {
	transform: rotate(-4deg);
}
.home-menu_photolist .swiper-slide2 .photoimg {
	transform: rotate(3deg);
}
.home-menu_photolist .swiper-slide3 .photoimg {
	transform: rotate(-5deg); 
}
.home-menu_photolist .swiper-slide4 .photoimg {
	transform: rotate(5deg);
}
.home-menu_photolist .swiper-slide5 .photoimg {
	transform: rotate(-1deg);
}
.home-menu_photolist .swiper-slide-active .photoimg {
	transform: rotate(0deg);
}

.home-access {
	padding: 100px 0 0;
}
.home-access__display {
	display: flex;
	justify-content: space-between;
}
.home-access__display .info {
	width: calc(38% - 2px);
}
.home-access__display .map {
	width: calc(52% - 1px);
}

.home-access__display.page-access .info {
	width: 100%;
}

.home-access__traffic {
	border-top: 1px solid #AFAFAF;
}
.home-access__traffic li {
	padding: 30px 0 30px 110px;
	background: no-repeat left 10px center;
	background-size: 50px;
	border-bottom: 1px solid #ccc;
	line-height: 1.86;
	font-size: 14px;
	font-weight: 500;
}
.home-access__traffic .icon_traffic01 {
	background-image: url(../img/common/icon_access01.svg);
}
.home-access__traffic .icon_traffic02 {
	background-image: url(../img/common/icon_access02.svg);
}
.home-access__traffic .icon_traffic03 {
	background-image: url(../img/common/icon_access03.svg);
}

.home-access__traffic strong {
	font-size: 17px;
	font-weight: 700;
}

.home-news {
	padding: 100px 0 0;
}
.home-news.page-news {
	padding: 0;
	padding-bottom: 500px;
}
.home-news .l-side {
	width: 28%;
}
.home-news .l-side .head-large {
	display: inline-block;
}
.home-news .l-side .l-btnlink {
    margin-top: 0;
}
.home-news .l-main {
	width: calc(72% - 10px);
}
.l-news__list {
	border-top: 1px solid #CCCCCC;
}
.l-news__list li {
	border-bottom: 1px solid #CCCCCC;
}
.l-news__list li a {
	display: flex;
	justify-content: space-between;
	padding: 26px 130px 26px 0;
	background: url(../img/common/icon_link_circle.svg)no-repeat right center;
	background-size: 40px;
	font-weight: 500;
}
.l-news__list li .dt {
	width: 115px;
	font-size: 12px;
}
.l-news__list li .dd {
	width: calc(100% - 115px);
	font-size: 14px;
}
.l-news__list li .tit {
	margin-bottom: 6px;
	font-size: 20px;
}

.news-datails .head {
	margin-bottom: 30px;
	font-size: 38px;
	font-weight: 400;
}



/*** hover ***/
@media screen and (min-width: 960px) {
	.l-notices .tolist a:hover {
		background-position: right center;
	}
	
	.home-menu_list li a:hover img {
		transform: scale(1.05, 1.05);
	}
	
	.home-menu_photolist .swiper-button-prev:hover,
	.home-menu_photolist .swiper-button-next:hover {
		opacity: 1;
	}
	
	.l-news__list li a:hover {
		background-position: right 9px center;
	}
}
/* sp */
@media screen and (max-width: 767px) {
	#l-mainvisual {
		margin-left: 0;
	}
	.l-mainvisual__img {
	    height: 600px;
	}
	.l-mainvisual__iframe {
	    width: 1440px;
	    height: 1440px;
	}
	.l-mainvisual__swiper .swiper-slide {
	    height: 600px;
	}
	.l-mainvisual__info {
	    right: 15px;
	    top: 170px;
		color: #fff;
	}
	
	.l-notices {
		display: block;
		position: static;
		margin: 25px 15px 0;
		padding: 20px;
	}
	.l-notices .list {
	    padding-right: 0;
	    border-right: 0;
	}
	.l-notices .list dl {
	    gap: 0 10px;
	}
	.l-notices .list dl + dl {
	    margin-top: 9px;
	}
	.l-notices .list dt {
	    font-size: 10px;
	}
	.l-notices .list dd a {
	    font-size: 13px;
	}
	.l-notices .tolist {
	    padding: 10px 0 0;
		text-align: right;
	}
	.l-notices .tolist a {
		padding: 5px 40px 5px 0;
	}
	
	.home-about {
	    padding-top: 120px;
	    background-position: center top 70px;
	    background-size: 397px;
	}
	.home-about__display {
	    display: block;
	}
	.home-about__display .img {
		margin-bottom: 10px;
		width: auto;
	}
	.home-about__display .info {
		width: auto;
	}
	.home-about__display .head {
	    margin-bottom: 10px;
	    font-size: 24px;
		padding-top: 10px;
	}
	.home-about__display .l-btnlink {
		text-align: center;
	}
	
	.home-menu {
	    padding: 100px 0 0;
	}
	.home-menu_list {
	    grid-template-columns: repeat(1, 1fr);
	    gap: 8px;
		padding: 0 15px;
	}
	.home-menu_list li .bg {
	    aspect-ratio: 344 / 284;
	}
	.home-menu_list li .head-large {
	    margin-bottom: 8px;
	}
	.home-menu_list li .head-large .eng {
		font-size: 38px;
	}
	.home-menu_list li .time {
		min-height: 35px;
		font-size: 12px;
	}
	
	.home-menu_photolist {
	    padding: 0 25px;
	    margin-top: 35px;
	}
	.home-menu_photolist .swiper-pagination {
	    margin-bottom: 28px;
	}
	.home-menu_photolist .swiper-pagination-current {
	    padding: 0 10px;
	    font-size: 15px;
	}
	.home-menu_photolist .swiper-pagination-total {
	    padding-left: 10px;
	    font-size: 18px;
	}
	.home-menu_photolist .swiper-button-prev, 
	.home-menu_photolist .swiper-button-next {
		top: 140px;
	    width: 38px;
	    height: 38px;
	}
	.home-menu_photolist .swiper-button-prev {
	    left: -6px;
	}
	.home-menu_photolist .swiper-button-next {
	    right: -6px;
	}
	.home-menu_photolist .photoimg {
	    max-width: 300px;
	    aspect-ratio: 282 / 182;
	}
	
	.home-access {
	    padding: 100px 0 0;
	}
	.home-access__display {
	    display: block;
	}
	.home-access__display .info {
		margin-bottom: 24px;
		width: auto;
	}
	.home-access__display .map {
		width: auto;
	}
	.home-access__traffic {
		border-color: #ccc;
	}
	.home-access__traffic li {
	    padding: 24px 0 24px 90px;
	    line-height: 1.833;
	    font-size: 12px;
	}
	
	.home-news {
	    padding: 100px 0 0;
	}
	.home-news .l-side {
		width: auto;
	}
	.home-news .l-main {
		width: auto;
	}
	.home-news .l-side .head-large {
	    display: block;
	}
	
	.home-news .l-btnlink {
		text-align: center;
	}
	.l-news__list li a {
	    display: block;
	    padding: 14px 55px 14px 0;
	    background-size: 30px;
	}
	.l-news__list li .dt {
		margin-bottom: 2px;
	    width: auto;
	    font-size: 10px;
	}
	.l-news__list li .dd {
	    width: auto;
	    font-size: 12px;
	}
	.l-news__list li .tit {
		margin-bottom: 8px;
		font-size: 18px;
	}
	
	.home-access.sp-pt {
		padding-top: 60px;
		padding-bottom: 40px;
}
	
	.home-news.page-news {
	padding: 0;
	padding-bottom: 100px;
		padding-top: 40px;
}
	
	.news-datails .head {
	    margin-bottom: 10px;
	    font-size: 24px;
		padding-top: 10px;
	}
	
}

/* about.html */
.about-concept {
	overflow: hidden;
	position: relative;
	margin-top: 160px;
}
.about-concept__swiper {
	z-index: 1;
}
.about-concept__swiper .swiper-wrapper {
	-webkit-transition-timing-function: linear !important;
	transition-timing-function: linear !important;
}
.about-concept__swiper .swiper-slide {
	position: relative;
	width: 1229px;
	aspect-ratio: 1229 / 785;
}
.about-concept__swiper .swiper-slide:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	mix-blend-mode: multiply;
	background: #6C6C6C;
}
.about-concept__swiper .swiper-slide img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.about-concept__info {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 2;
	transform: translate(-50%, -50%);
	padding: 100px;
	width: 100%;
	max-width: 1084px;
	color: #fff;
}
.about-concept__head {
	position: relative;
	margin-bottom: 30px;
}
.about-concept__head .eng {
	position: absolute;
	left: -45px;
	top: 16px;
	writing-mode: tb-rl;
	writing-mode: vertical-rl; 
	letter-spacing: 0.1em;
	font-size: 12px;
	font-weight: 500;
}
.about-concept__head .jap {
	font-size: 38px;
	font-weight: 400;
}
.about-concept__info .l-txt {
	max-width: 510px;
}
.about-concept__info .l-btnlink {
	margin-top: 70px;
}

.l-about__bg {
	background-image: url(../img/common/bg_teppan&french.svg);
	background-repeat: no-repeat;
	background-size: 1310px;
}

.about-wrap.l-about__bg {
	padding-top: 136px;
	background-position: left top 666px;
}
.about-shop__display .display {
	display: flex;
	justify-content: space-between;
}
.about-shop__display .display + .display {
	margin-top: 180px;
}
.about-shop__display .display.reverse {
	flex-direction: row-reverse;
}
.about-shop__display .display .info { 
	width: calc(48% + 5px);
}
.about-shop__display .display .img {
	width: calc(48% + 5px);
}
.about-shop__display .display.lunch-b .img {
	width: calc(87% + 5px);
}

.about-shop__display .head_middle .jap {
	font-size: 38px;
}
.about-shop__display .head_middle .jap2 {
    margin-top: 80px;
}
.about-shop__display .head_middle .eng {
    margin-left: 20px;
}
.about-shop__display .display .note {
	margin-top: 28px;
	font-size: 12px;
	font-weight: 500;
}
.about-wrap .about-shop__display .display .info {
	display: flex;
	justify-content: flex-end;
	gap: 0 40px;
}

.about-shop__display .display.chef-st__display {
	margin-top: 160px;
}
.about-shop__display .chef-st__display .img {
	width: calc(56% - 1px);
}
.about-wrap .about-shop__display .chef-st__display .info {
	display: block;
	width: calc(37% + 4px);
}
.about-shop__display .chef-st__display .head-large {
	margin-bottom: 28px;
	text-align: left;
}
.about-shop__display .chef-st__display .head-large span + span:before {
	content: none;
}
.about-shop__display .chef-name {
	display: flex;
	align-items: center;
	gap: 0 24px;
	margin-bottom: 24px;
}
.about-shop__display .chef-name .jap {
	font-size: 38px;
}
.about-shop__display .chef-name .eng {
	font-size: 12px;
}

/* sp */
@media screen and (max-width: 767px) {
	.about-concept {
	    margin-top: 80px;
	}
	.about-concept__swiper .swiper-slide {
	    position: relative;
	    width: 907px;
	    aspect-ratio: 907 / 579;
	}
	.about-concept__info {
		left: 0;
		top: 0;
		transform: translate(0%, 0%);
	    padding: 100px 35px 50px 55px;
	}
	.about-concept__head {
	    margin-bottom: 18px;
	}
	.about-concept__head .jap {
		line-height: 1.6667;
	    font-size: 23px;
	}
	.about-concept__head .eng {
	    left: -18px;
	    top: 10px;
	    letter-spacing: 0.1em;
	    font-size: 8px;
	}
	.about-concept__info .l-btnlink {
	    margin-top: 40px;
	}
	
	.l-about__bg {
		background-size: 397px;
	}
	
	.about-wrap.l-about__bg {
		padding-top: 70px;
		background-position: left top 800px;
	}
	.about-shop__display .display {
	    display: block;
	}
	.about-shop__display .display + .display {
	    margin-top: 90px;
	}
	.about-shop__display .display .img {
		margin-top: 28px;
		width: auto;
	}
	.about-shop__display .display .info {
	    width: auto;
	}
	.about-shop__display .head_middle {
		margin-bottom: 30px;
	}
	.about-shop__display .head_middle .jap {
	    font-size: 22px;
	}
	.about-shop__display .head_middle .jap2 {
	    margin-top: 10px;
	}
	.about-shop__display .head_middle .eng {
	    margin-left: 0;
	}
	.about-shop__display .display .note {
		margin-top: 10px;
		font-size: 10px;
	}
	.about-wrap .about-shop__display .display .info {
	    display: block;
		width: auto;
	}
	
	.about-shop__display .chef-st__display .img {
		margin: 0 0 18px;
		width: auto;
	}
	.about-shop__display .chef-st__display .head-large {
	    margin-bottom: 15px;
	}
	.about-shop__display .chef-name {
	    gap: 0 18px;
	    margin-bottom: 15px;
	}
	.about-shop__display .chef-name .jap {
	    font-size: 36px;
	}
	.about-shop__display .chef-name .eng {
	    font-size: 10px;
	}
	
	.about-shop__display .display.lunch-b .img {
		width: 100%;
}
}

/* menu.html */
.menu-wrap.l-about__bg {
	background-position: left top 666px;
}

.menu-lunch {
	padding: 150px 0 0;
}
.menu-lunch .display .info {
	max-width: 460px;
}
.menu-lunch__set li + li {
	margin-top: 75px;
}
.menu-lunch__set li .tit {
	margin-bottom: 20px;
	font-size: 23px;
	font-weight: 700;
}
.menu-lunch__set li .l-txt p + p {
	margin-top: 28px;
}

.menu-dinner {
	padding: 170px 0 0;
}
.menu-dinner .display + .display {
    margin-top: 124px;
}
.menu-dinner .display .info {
	max-width: 475px;
}
.menu-dinner__price .tit {
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: 500;
}
.menu-dinner__price li {
	display: flex;
	justify-content: space-between;
	padding: 11px 0;
	margin-top: -1px;
	border-bottom: 1px solid #B5B5B5;
	border-top: 1px solid #B5B5B5;
	font-size: 14px;
	font-weight: 500;
}

.menu-drink {
	padding: 170px 0 0;
}
.menu-drink .head-large {
	margin-bottom: 28px;
}
.menu-drink__part + .menu-drink__part {
	margin-top: 75px;
}
.menu-drink__list {
	display: grid;
}
.menu-drink__list.col2 {
	grid-template-columns: repeat(2, 1fr);
	gap: 0 127px;
}
.menu-drink__list.col3 {
	grid-template-columns: repeat(3, 1fr);
	gap: 0 116px;
}

/* sp */
@media screen and (max-width: 767px) {
	.menu-wrap.l-about__bg {
		background-position: left top 857px;
	}
	
	.menu-lunch {
	    padding: 120px 0 0;
	}
	.menu-lunch .display .img,
	.menu-dinner .display .img{
		margin: 0 0 28px;
	}
	.menu-lunch__set li + li {
	    margin-top: 28px;
	}
	.menu-lunch__set li .tit {
	    margin-bottom: 10px;
	    font-size: 18px;
	}
	.menu-lunch__set li .l-txt p + p {
	    margin-top: 24px;
	}
	
	.menu-dinner {
		padding: 150px 0 0;
	}
	.menu-dinner .display + .display {
	    margin-top: 66px;
	}
	
	.menu-dinner__price .tit {
	    font-size: 16px;
	}
	.menu-dinner__price li {
	    padding: 12px 0;
	    font-size: 12px;
	}
	
	.menu-drink {
	    padding: 150px 0 0;
	}
	.menu-drink__part + .menu-drink__part {
	    margin-top: 50px;
	}
	.menu-drink__list.col2,
	.menu-drink__list.col3 {
	    grid-template-columns: repeat(1, 1fr);
	    gap: 0;
	}
	
}

/******************************
 * util margin
 ******************************/
.u-mt-5 {
  margin-top: 5px;
}

.u-mr-5 {
  margin-right: 5px;
}

.u-mt-5 {
  margin-top: 5px;
}

.u-mb-5 {
  margin-bottom: 5px;
}

.u-ml-5 {
  margin-left: 5px;
}

.u-mt-10 {
  margin-top: 10px;
}

.u-mr-10 {
  margin-right: 10px;
}

.u-mt-10 {
  margin-top: 10px;
}

.u-mb-10 {
  margin-bottom: 10px;
}

.u-ml-10 {
  margin-left: 10px;
}

.u-mt-15 {
  margin-top: 15px;
}

.u-mr-15 {
  margin-right: 15px;
}

.u-mt-15 {
  margin-top: 15px;
}

.u-mb-15 {
  margin-bottom: 15px;
}

.u-ml-15 {
  margin-left: 15px;
}

.u-mt-20 {
  margin-top: 20px;
}

.u-mr-20 {
  margin-right: 20px;
}

.u-mt-20 {
  margin-top: 20px;
}

.u-mb-20 {
  margin-bottom: 20px;
}

.u-ml-20 {
  margin-left: 20px;
}

.u-mt-30 {
  margin-top: 30px;
}

.u-mr-30 {
  margin-right: 30px;
}

.u-mt-30 {
  margin-top: 30px;
}

.u-mb-30 {
  margin-bottom: 30px;
}

.u-ml-30 {
  margin-left: 30px;
}

.u-mt-40 {
  margin-top: 40px;
}

.u-mr-40 {
  margin-right: 40px;
}

.u-mt-40 {
  margin-top: 40px;
}

.u-mb-40 {
  margin-bottom: 40px;
}

.u-ml-40 {
  margin-left: 40px;
}

.u-mt-50 {
  margin-top: 50px;
}

.u-mr-50 {
  margin-right: 50px;
}

.u-mt-50 {
  margin-top: 50px;
}

.u-mb-50 {
  margin-bottom: 50px;
}

.u-ml-50 {
  margin-left: 50px;
}

.u-mt-60 {
  margin-top: 60px;
}

.u-mr-60 {
  margin-right: 60px;
}

.u-mt-60 {
  margin-top: 60px;
}

.u-mb-60 {
  margin-bottom: 60px;
}

.u-ml-60 {
  margin-left: 60px;
}

.u-mt-70 {
  margin-top: 70px;
}

.u-mr-70 {
  margin-right: 70px;
}

.u-mt-70 {
  margin-top: 70px;
}

.u-mb-70 {
  margin-bottom: 70px;
}

.u-ml-70 {
  margin-left: 70px;
}

.u-mt-80 {
  margin-top: 80px;
}

.u-mr-80 {
  margin-right: 80px;
}

.u-mt-80 {
  margin-top: 80px;
}

.u-mb-80 {
  margin-bottom: 80px;
}

.u-ml-80 {
  margin-left: 80px;
}

.u-mt-90 {
  margin-top: 90px;
}

.u-mr-90 {
  margin-right: 90px;
}

.u-mt-90 {
  margin-top: 90px;
}

.u-mb-90 {
  margin-bottom: 90px;
}

.u-ml-90 {
  margin-left: 90px;
}

.u-mt-100 {
  margin-top: 100px;
}

.u-mr-100 {
  margin-right: 100px;
}

.u-mt-100 {
  margin-top: 100px;
}

.u-mb-100 {
  margin-bottom: 100px;
}

.u-ml-100 {
  margin-left: 100px;
}

.u-mb-120 {
  margin-bottom: 120px;
}

.u-mt-120 {
  margin-top: 120px;
}

.u-mb-130 {
  margin-bottom: 130px;
}

.u-mb-150 {
  margin-bottom: 150px;
}

.u-mt-150 {
  margin-top: 150px;
}

.u-mt-200 {
  margin-top: 200px;
}

.u-mb-200 {
  margin-bottom: 200px;
}

.u-mb-300 {
  margin-bottom: 300px;
}

.reset-mt {
  margin-top: 0;
}

.reset-mr {
  margin-right: 0;
}

.reset-mb {
  margin-bottom: 0;
}

.reset-ml {
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .u-sp-mb-3 {
    margin-bottom: 3vw;
  }
  .u-sp-mt-5 {
    margin-top: 5vw;
  }
  .u-sp-mr-5 {
    margin-right: 5vw;
  }
  .u-sp-mt-5 {
    margin-top: 5vw;
  }
  .u-sp-mb-5 {
    margin-bottom: 5vw;
  }
  .u-sp-ml-5 {
    margin-left: 5vw;
  }
  .u-sp-mt-10 {
    margin-top: 10vw;
  }
  .u-sp-mr-10 {
    margin-right: 10vw;
  }
  .u-sp-mt-10 {
    margin-top: 10vw;
  }
  .u-sp-mb-10 {
    margin-bottom: 10vw;
  }
  .u-sp-ml-10 {
    margin-left: 10vw;
  }
  .u-sp-mt-15 {
    margin-top: 15vw;
  }
  .u-sp-mr-15 {
    margin-right: 15vw;
  }
  .u-sp-mt-15 {
    margin-top: 15vw;
  }
  .u-sp-mb-15 {
    margin-bottom: 15vw;
  }
  .u-sp-ml-15 {
    margin-left: 15vw;
  }
  .u-sp-mt-20 {
    margin-top: 20vw;
  }
  .u-sp-mr-20 {
    margin-right: 20vw;
  }
  .u-sp-mt-20 {
    margin-top: 20vw;
  }
  .u-sp-mb-20 {
    margin-bottom: 20vw;
  }
  .u-sp-ml-20 {
    margin-left: 20vw;
  }
  .u-sp-mt-30 {
    margin-top: 30vw;
  }
  .u-sp-mr-30 {
    margin-right: 30vw;
  }
  .u-sp-mt-30 {
    margin-top: 30vw;
  }
  .u-sp-mb-30 {
    margin-bottom: 30vw;
  }
  .u-sp-ml-30 {
    margin-left: 30vw;
  }
  .u-sp-mt-40 {
    margin-top: 40vw;
  }
  .u-sp-mr-40 {
    margin-right: 40vw;
  }
  .u-sp-mt-40 {
    margin-top: 40vw;
  }
  .u-sp-mb-40 {
    margin-bottom: 40vw;
  }
  .u-sp-ml-40 {
    margin-left: 40vw;
  }
  .u-sp-mt-50 {
    margin-top: 50vw;
  }
  .u-sp-mr-50 {
    margin-right: 50vw;
  }
  .u-sp-mt-50 {
    margin-top: 50vw;
  }
  .u-sp-mb-50 {
    margin-bottom: 50vw;
  }
  .u-sp-ml-50 {
    margin-left: 50vw;
  }
  .u-sp-mt-60 {
    margin-top: 60vw;
  }
  .u-sp-mr-60 {
    margin-right: 60vw;
  }
  .u-sp-mt-60 {
    margin-top: 60vw;
  }
  .u-sp-mb-60 {
    margin-bottom: 60vw;
  }
  .u-sp-ml-60 {
    margin-left: 60vw;
  }
  .u-sp-mt-70 {
    margin-top: 70vw;
  }
  .u-sp-mr-70 {
    margin-right: 70vw;
  }
  .u-sp-mt-70 {
    margin-top: 70vw;
  }
  .u-sp-mb-70 {
    margin-bottom: 70vw;
  }
  .u-sp-ml-70 {
    margin-left: 70vw;
  }
  .u-sp-mt-80 {
    margin-top: 80vw;
  }
  .u-sp-mr-80 {
    margin-right: 80vw;
  }
  .u-sp-mt-80 {
    margin-top: 80vw;
  }
  .u-sp-mb-80 {
    margin-bottom: 80vw;
  }
  .u-sp-ml-80 {
    margin-left: 80vw;
  }
  .u-sp-mt-90 {
    margin-top: 90vw;
  }
  .u-sp-mr-90 {
    margin-right: 90vw;
  }
  .u-sp-mt-90 {
    margin-top: 90vw;
  }
  .u-sp-mb-90 {
    margin-bottom: 90vw;
  }
  .u-sp-ml-90 {
    margin-left: 90vw;
  }
  .u-sp-mt-100 {
    margin-top: 100vw;
  }
  .u-sp-mr-100 {
    margin-right: 100vw;
  }
  .u-sp-mt-100 {
    margin-top: 100vw;
  }
  .u-sp-mb-100 {
    margin-bottom: 100vw;
  }
  .u-sp-ml-100 {
    margin-left: 100vw;
  }
  .reset-sp-mt {
    margin-top: 0;
  }
  .reset-sp-mr {
    margin-right: 0;
  }
  .reset-sp-mb {
    margin-bottom: 0;
  }
  .reset-sp-ml {
    margin-left: 0;
  }
}
/******************************
 * util padding
 ******************************/
.u-pt-5 {
  padding-top: 5px;
}

.u-pr-5 {
  padding-right: 5px;
}

.u-pt-5 {
  padding-top: 5px;
}

.u-pb-5 {
  padding-bottom: 5px;
}

.u-pl-5 {
  padding-left: 5px;
}

.u-pt-10 {
  padding-top: 10px;
}

.u-pr-10 {
  padding-right: 10px;
}

.u-pt-10 {
  padding-top: 10px;
}

.u-pb-10 {
  padding-bottom: 10px;
}

.u-pl-10 {
  padding-left: 10px;
}

.u-pt-15 {
  padding-top: 15px;
}

.u-pr-15 {
  padding-right: 15px;
}

.u-pt-15 {
  padding-top: 15px;
}

.u-pb-15 {
  padding-bottom: 15px;
}

.u-pl-15 {
  padding-left: 15px;
}

.u-pt-20 {
  padding-top: 20px;
}

.u-pr-20 {
  padding-right: 20px;
}

.u-pt-20 {
  padding-top: 20px;
}

.u-pb-20 {
  padding-bottom: 20px;
}

.u-pl-20 {
  padding-left: 20px;
}

.u-pt-30 {
  padding-top: 30px;
}

.u-pr-30 {
  padding-right: 30px;
}

.u-pt-30 {
  padding-top: 30px;
}

.u-pb-30 {
  padding-bottom: 30px;
}

.u-pl-30 {
  padding-left: 30px;
}

.u-pt-40 {
  padding-top: 40px;
}

.u-pr-40 {
  padding-right: 40px;
}

.u-pt-40 {
  padding-top: 40px;
}

.u-pb-40 {
  padding-bottom: 40px;
}

.u-pl-40 {
  padding-left: 40px;
}

.u-pt-50 {
  padding-top: 50px;
}

.u-pr-50 {
  padding-right: 50px;
}

.u-pt-50 {
  padding-top: 50px;
}

.u-pb-50 {
  padding-bottom: 50px;
}

.u-pl-50 {
  padding-left: 50px;
}

.u-pt-60 {
  padding-top: 60px;
}

.u-pr-60 {
  padding-right: 60px;
}

.u-pt-60 {
  padding-top: 60px;
}

.u-pb-60 {
  padding-bottom: 60px;
}

.u-pl-60 {
  padding-left: 60px;
}

.u-pt-70 {
  padding-top: 70px;
}

.u-pr-70 {
  padding-right: 70px;
}

.u-pt-70 {
  padding-top: 70px;
}

.u-pb-70 {
  padding-bottom: 70px;
}

.u-pl-70 {
  padding-left: 70px;
}

.u-pt-80 {
  padding-top: 80px;
}

.u-pr-80 {
  padding-right: 80px;
}

.u-pt-80 {
  padding-top: 80px;
}

.u-pb-80 {
  padding-bottom: 80px;
}

.u-pl-80 {
  padding-left: 80px;
}

.u-pt-90 {
  padding-top: 90px;
}

.u-pr-90 {
  padding-right: 90px;
}

.u-pt-90 {
  padding-top: 90px;
}

.u-pb-90 {
  padding-bottom: 90px;
}

.u-pl-90 {
  padding-left: 90px;
}

.u-pt-100 {
  padding-top: 100px;
}

.u-pr-100 {
  padding-right: 100px;
}

.u-pt-100 {
  padding-top: 100px;
}

.u-pb-100 {
  padding-bottom: 100px;
}

.u-pl-100 {
  padding-left: 100px;
}

.u-reset-pt {
  padding-top: 0;
}

.u-reset-pr {
  padding-right: 0;
}

.u-reset-pb {
  padding-bottom: 0;
}

.u-reset-pl {
  padding-left: 0;
}

.u-pad-top {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .u-pad-top {
    margin-top: 14vw;
  }
  .u-sp-pad {
    padding-right: var(--sp-pad);
    padding-left: var(--sp-pad);
  }
  .u-sp-pt-5 {
    padding-top: 5vw;
  }
  .u-sp-pr-5 {
    padding-right: 5vw;
  }
  .u-sp-pt-5 {
    padding-top: 5vw;
  }
  .u-sp-pb-5 {
    padding-bottom: 5vw;
  }
  .u-sp-pl-5 {
    padding-left: 5vw;
  }
  .u-sp-pt-10 {
    padding-top: 10vw;
  }
  .u-sp-pr-10 {
    padding-right: 10vw;
  }
  .u-sp-pt-10 {
    padding-top: 10vw;
  }
  .u-sp-pb-10 {
    padding-bottom: 10vw;
  }
  .u-sp-pl-10 {
    padding-left: 10vw;
  }
  .u-sp-pt-15 {
    padding-top: 15vw;
  }
  .u-sp-pr-15 {
    padding-right: 15vw;
  }
  .u-sp-pt-15 {
    padding-top: 15vw;
  }
  .u-sp-pb-15 {
    padding-bottom: 15vw;
  }
  .u-sp-pl-15 {
    padding-left: 15vw;
  }
  .u-sp-pt-20 {
    padding-top: 20vw;
  }
  .u-sp-pr-20 {
    padding-right: 20vw;
  }
  .u-sp-pt-20 {
    padding-top: 20vw;
  }
  .u-sp-pb-20 {
    padding-bottom: 20vw;
  }
  .u-sp-pl-20 {
    padding-left: 20vw;
  }
  .u-sp-pt-30 {
    padding-top: 30vw;
  }
  .u-sp-pr-30 {
    padding-right: 30vw;
  }
  .u-sp-pt-30 {
    padding-top: 30vw;
  }
  .u-sp-pb-30 {
    padding-bottom: 30vw;
  }
  .u-sp-pl-30 {
    padding-left: 30vw;
  }
  .u-sp-pt-40 {
    padding-top: 40vw;
  }
  .u-sp-pr-40 {
    padding-right: 40vw;
  }
  .u-sp-pt-40 {
    padding-top: 40vw;
  }
  .u-sp-pb-40 {
    padding-bottom: 40vw;
  }
  .u-sp-pl-40 {
    padding-left: 40vw;
  }
  .u-sp-pt-50 {
    padding-top: 50vw;
  }
  .u-sp-pr-50 {
    padding-right: 50vw;
  }
  .u-sp-pt-50 {
    padding-top: 50vw;
  }
  .u-sp-pb-50 {
    padding-bottom: 50vw;
  }
  .u-sp-pl-50 {
    padding-left: 50vw;
  }
  .u-sp-pt-60 {
    padding-top: 60vw;
  }
  .u-sp-pr-60 {
    padding-right: 60vw;
  }
  .u-sp-pt-60 {
    padding-top: 60vw;
  }
  .u-sp-pb-60 {
    padding-bottom: 60vw;
  }
  .u-sp-pl-60 {
    padding-left: 60vw;
  }
  .u-sp-pt-70 {
    padding-top: 70vw;
  }
  .u-sp-pr-70 {
    padding-right: 70vw;
  }
  .u-sp-pt-70 {
    padding-top: 70vw;
  }
  .u-sp-pb-70 {
    padding-bottom: 70vw;
  }
  .u-sp-pl-70 {
    padding-left: 70vw;
  }
  .u-sp-pt-80 {
    padding-top: 80vw;
  }
  .u-sp-pr-80 {
    padding-right: 80vw;
  }
  .u-sp-pt-80 {
    padding-top: 80vw;
  }
  .u-sp-pb-80 {
    padding-bottom: 80vw;
  }
  .u-sp-pl-80 {
    padding-left: 80vw;
  }
  .u-sp-pt-90 {
    padding-top: 90vw;
  }
  .u-sp-pr-90 {
    padding-right: 90vw;
  }
  .u-sp-pt-90 {
    padding-top: 90vw;
  }
  .u-sp-pb-90 {
    padding-bottom: 90vw;
  }
  .u-sp-pl-90 {
    padding-left: 90vw;
  }
  .u-sp-pt-100 {
    padding-top: 100vw;
  }
  .u-sp-pr-100 {
    padding-right: 100vw;
  }
  .u-sp-pt-100 {
    padding-top: 100vw;
  }
  .u-sp-pb-100 {
    padding-bottom: 100vw;
  }
  .u-sp-pl-100 {
    padding-left: 100vw;
  }
  .u-reset-sp-ml {
    margin-left: 0;
  }
  .u-reset-sp-pt {
    padding-top: 0;
  }
  .u-reset-sp-pr {
    padding-right: 0;
  }
  .u-reset-sp-pb {
    padding-bottom: 0;
  }
  .u-reset-sp-pl {
    padding-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .u-sp-only {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none;
  }
}