@charset "UTF-8";

/* 目次
1. resetCSS
2. sp-hidden,sp-appear,tablet-hidden,tablet-appear（デバイスによって要素を消したい時に使う）
3. font-size（https://type-scale.com/ に基づき設計）
4. font-color
5. font-style
6. text-style（文章のスタイル、多くは真ん中に寄せるクラスを用意）
7. section_layout（セクションやインナー幅を設定）
8. section_title（セクションのタイトル）
9. section-main_contents（タイトルとメインのコンテンツの余白を設定し、以下にセクションのコンテンツを入れる）
10. img,icon style
11. button Styles
12. block_layout（3,4つの要素を横に並べる）
13. header
13.1 dropdown menu
13.2 accordion menu
17.news
19. contact
20.footer
*/

/* 1. resetCSS */
html, body, h1, h2, h3, h4,
ul, ol, dl, li, dt, dd, p, div, span,
img, a, table, tr, th, td, figure {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
article, header, footer, aside, figure, figcaption, nav, section {
  display: block;
}
button{
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
	line-height: 1em;
}
/*resetCSS*/

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. 100%=1em=1rem＝16px  remの設定 https://www.pc-koubou.jp/magazine/23912*/
html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	font-size: 100%;
}
body {
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
	margin: 0;
	background-color: #FFFDF5;
	line-height: 1.6em;
	letter-spacing: 0.08em;
	font-feature-settings: "palt" 1;
}
/*paddingを、幅に含めないようにする→普通にいれる*/
* {
  box-sizing: border-box;
}
ol, ul {
  list-style: none;
  list-style-type: none;
}

/* ----------------------------------------------------------------
	2. sp-hidden,sp-appear,tablet-hidden,tablet-appear
-----------------------------------------------------------------*/
@media screen and (min-width: 415px){
.sp-appear{
	display: none;
}
}
@media screen and (max-width: 414px){
.sp-hidden{
	display: none;
}
}
@media screen and (min-width: 769px){
.tablet-appear{
	display: none;
}
}
@media screen and (max-width: 768px){
.tablet-hidden{
	display: none;
}
}
@media screen and (min-width: 1024px){
.laptop-appear{
	display: none;
}
}
@media screen and (max-width: 1023px){
.laptop-hidden{
	display: none;
}
}
@media screen and (max-width: 1199px){
.pc-hidden{
	display: none;
}
}

/* ----------------------------------------------------------------
	3. font-size
	https://type-scale.com/
-----------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.6em;
	letter-spacing: 0.05em;
	margin: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
h1 {
	font-size: 2.074rem;
}
h2 {
	font-size: 1.728rem;
}
h3 {
	font-size: 1.44rem;
}
h4 {
	font-size: 1.2rem;
}
h5{
	font-size: 1rem;
}
button,
p,
a{
	font-size: 1rem;
}
time{
	font-size: 14px;
	line-height: 0;
}
.font-small{
	font-size: 0.8rem;
}

p {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a{
	text-decoration: none;
	display: inline-block;
}

@media screen and (min-width: 769px){
h1 {
	font-size: 2.488rem;
}
h2 {
	font-size: 2.074rem;
}
h3 {
	font-size: 1.728rem;
}
h4 {
	font-size: 1.44rem;
}	
h5{
	font-size: 1.2rem;
}
time {
	font-size: 1rem;
}
}

/* ----------------------------------------------------------------
	4. font-color
-----------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
time,
button {
	color: #333333;
}
.color-white{
	color: #ffffff;
}
.color-gray {
	color: #5D5D5D;
}
.color-orange{
	color: #DC8551;
}
.bg-color-gray {
	background-color: #EEEEEE;
}
.bg-color-black {
	background-color: #333333;
}
.bg-color-orange {
	background-color: #FFE6CE;
}
.bg-color-green {
	background-color: #A1CEBF;
}

/* ----------------------------------------------------------------
	5. font-style
-----------------------------------------------------------------*/
body {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}
.font-en{
	font-family: "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
}
.font-medium {
	font-weight: 500;
}
.font-bold {
	font-weight: 700;
}

/* ----------------------------------------------------------------
	6. text-style
-----------------------------------------------------------------*/
.text_center {
  text-align: center;
}
.flex_center{
	display: flex;
	justify-content: center;
	align-items: center;
}
.margin_auto{
	margin: 0 auto;
}
.position_center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.link_underline{
	color: #0044CC;
	border-bottom: 1px solid #0044CC;
	display: inline;
}
.under-line {
	border-bottom: 1px solid #333333;
}
.under-line-white {
	border-bottom: 1px solid #ffffff;
	display: inline;
}
@media screen and (max-width: 414px){
	.text-center-sp {
		text-align: center;
	}
}
@media screen and (min-width: 415px){
	.text-left-sp {
		text-align: center;
	}
}

/* ----------------------------------------------------------------
	7. section_layout：セクションやコンテンツの幅を規定
-----------------------------------------------------------------*/
section{
	padding: 60px 0;
}
.container {
	margin: 0 20px;
}

@media screen and (min-width: 415px){
	section{
		padding: 80px 0;
	}
	.section-sub{
		padding: 80px 0 0;
	}
	.container {
		margin: 0 40px;
	}
}
@media screen and (min-width: 769px){
	.container  {
		max-width: 770px;
		margin: 0 auto;
	}
}

/* ----------------------------------------------------------------
	8. section-title
-----------------------------------------------------------------*/
.section-en-title {
	font-size: 32px;
}
.section-title {
	font-size: 0.9rem;
	margin-top: 10px;
}
.section-title span {
	font-size: 0.7rem;
}
@media screen and (min-width: 769px){
	.section-en-title {
		font-size: 40px;
	}
	.section-title {
		font-size: 1rem;
	}
}

.section-sub-title {
	position: relative;
	margin-bottom: 32px;
}
.section-sub-title::before {
	position: absolute;
	bottom: -8px;
	left: 0;
	content: "";
	width: 40px;
	height: 3px;
	background-color: #DC8551;
}
.section-sub-title span{
	font-size: 0.8rem;
	line-height: 2.6em;
	margin-left: 8px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	color: #7f7f7f;
	vertical-align: bottom;
}

/* ----------------------------------------------------------------
	9. section-main_contents：タイトルとメインのコンテンツの余白を設定。以下に、セクションのコンテンツを入れる
-----------------------------------------------------------------*/
.section-main_contents {
	margin-top: 36px;
}
@media screen and (min-width: 769px){
	.section-main_contents {
		margin-top: 48px;
	}
}

/* ----------------------------------------------------------------
	10. img,icon style
-----------------------------------------------------------------*/
img {
	width: 100%;
	display: block;
	height: auto;
}

/* 画像の比率を調整する：object-fitを利用 */
.image{
	position: relative;
	width: 100%;
	overflow: hidden;
	mix-blend-mode: multiply;
}
.image::before{
	content: "";
	padding-top: 56.25%; /* 縦横比調節値：現在16:9 */
	display: block;
}
.image > img{
	position: absolute;
	top: 0;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
  font-family: 'object-fit: contain;'
}

/* ----------------------------------------------------------------
	11. button Styles
-----------------------------------------------------------------*/
.button_layout{
	margin-top: 32px;
}
.button_layout a {
	display: inline-block;
	position: relative;
	z-index: 3;
	background-color: #DC8551;
  border: 1px solid #DC8551;
	box-shadow: 8px 12px 12px rgba(0, 0, 0, 0.2);
	border-radius: 50px;
	width: 100%;
	max-width: 320px;
	height: 52px;
	transition: 0.3s ease-in-out;
}
.button_layout a.green {
	background-color: #386F40;
  border: 1px solid #386F40;
}
button {
	width: 100%;
	height: 100%;
	font-size: 14px;
}
.button-txt {
	line-height: 1em;
	letter-spacing: 0.1em;
	position: relative;
}
.icon-tel {
	width: 12px;
	position: absolute;
	top: 50%;
	right: 78px;
	transform: translateY(-60%);
}
.another_tab {
	width: 16px;
	height: 16px;
	position: absolute;
	top: 50%;
	right: -32px;
	transform: translateY(-55%);
}
@media screen and (max-width: 768px) {
	.button_layout{
		display: flex;
		justify-content: center;
		align-items: center;
	}
}
@media screen and (min-width: 769px){
	.button_layout {
		margin-top: 40px;
	}
	.button_layout a {
		height: 56px;
	}
	button {
		font-size: 1rem;
	}
}

/* 別タブ飛ぶボタンのスタイル */
.button_tab{
	position: relative;
}
.button_tab button{
	margin-left: -12px;
}
.button_tab::after, .button_tab::before{
	display: none;
}
.button_tab .another_tab-icon{
	width: 16px;
	height: 16px;
	position: absolute;
	top: 24px;
	right: 72px;
	transition: 0.3s ease-in-out;
}
.button_tab:hover .another_tab-icon{
	right: 68px;
	transition: 0.3s ease-in-out;
}
.button_tab:hover .another_tab-icon{
	opacity: 1;
}

/* ----------------------------------------------------------------
	12. block_layout（要素を3つ横並びにする）
-----------------------------------------------------------------*/
.blocks-contents {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 1.5rem 2%;
}
.three-block-list, .two-block-list {
	display: flex;
	flex-direction: column;
	-webkit-flex-basis: -webkit-calc((100% - 2%*(2 - 1))/2);
	-ms-flex-preferred-size: calc((100% - 2%*(2 - 1))/2);
	flex-basis: -webkit-calc((100% - 2%*(2 - 1))/2);
	flex-basis: -moz-calc((100% - 2%*(2 - 1))/2);
	flex-basis: calc((100% - 2%*(2 - 1))/2);
}
@media screen and (max-width: 414px) {
	.three-block-list {
		width: 100%;
	}
}
@media screen and (min-width: 415px){
	.three-block-list {
		display: flex;
		flex-direction: column;
		-webkit-flex-basis: -webkit-calc((100% - 2%*(2 - 1))/2);
    -ms-flex-preferred-size: calc((100% - 2%*(2 - 1))/2);
    flex-basis: -webkit-calc((100% - 2%*(2 - 1))/2);
    flex-basis: -moz-calc((100% - 2%*(2 - 1))/2);
    flex-basis: calc((100% - 2%*(2 - 1))/2);
	}
}
@media screen and (min-width: 769px){
	.three-block-list {
		-ms-flex-preferred-size: calc((100% - 2%*(3 - 1))/3);
		flex-basis: -webkit-calc((100% - 2%*(3 - 1))/3);
		flex-basis: -moz-calc((100% - 2%*(3 - 1))/3);
		flex-basis: calc((100% - 2%*(3 - 1))/3);
	}
}

/*---------------------------------------------------*/
/*	13. header
/*---------------------------------------------------*/
header{
	position: relative;
	z-index: 1000;
}
#global-nav {
  margin: 0;
  width: 100%;
  z-index: 998;
	position: relative;
	background-color: #FFFDF5;
}
#global-nav.m_fixed {
  position: fixed;
  left: 0;
  top: 0;
}
.header-content{
  display: flex;
  justify-content: space-between;
  align-items: center;
	padding: 0px 20px;
	width: 100%;
	height: 56px;
}
.logo-wrapper, .logo-wrapper a{
	width: 170px;
	height: 32px;
	display: block;
}
.menu{
	font-size: 14px;
}

.icon-header-map, .icon-header-phone {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.icon-header-map {
	width: 16px;
	height: 20px;
	right: 108px;
}
.icon-header-phone {
	width: 18px;
	height: 18px;
	right: 64px;
}

.toggle {
	display: block;
	position: absolute;
	right: 20px;
	top: 16px;
	width: 24px;
	height: 24px;
	cursor: pointer;
	z-index: 3;
}
.toggle__icon {
	display: block;
	width: 20px;
	border-bottom: solid 2px #333333;
	border-radius: 4px;
	-webkit-transition: .3s all;
	-moz-transition: .3s all;
	-o-transition: .3s all;
	transition: .3s all;
	will-change: transform;
	position: absolute;
	right: 0;
}
.toggle__icon:nth-child(1) {
	top: 4px;
}
.toggle__icon:nth-child(2) {
	width: 18px;
	top: 11px;
}
.toggle__icon:nth-child(3) {
	top: 18px;
}
.toggle.active{
	position: fixed;
}
.toggle.active span {
	top: 11px;
	border-bottom: solid 2.4px #333333;
	width: 22px;
	will-change: transform;
}
.toggle.active span:nth-child(1) {
	will-change: transform;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.toggle.active span:nth-child(2) {
	will-change: transform;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.toggle.active span:nth-child(3) {
	will-change: transform;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.nav-menu {
	position: fixed;
	z-index: 1001;
	top: 56px;
	left: 0;
	width: 100%;
	height: calc(100vh - 56px);
	-webkit-transition: 0.3s all;
	-moz-transition: 0.3s all;
	-o-transition: 0.3s all;
	transition: 0.3s all;
	opacity: 0;
	visibility: hidden;
	will-change: transform, opacity, visibility;
}
.nav-overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 20%;
	z-index: 1;
	width: 20%;
	height: calc(100vh - 56px);
	background: rgba(0,0,0,.6);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.3s all;
	-moz-transition: 0.3s all;
	-o-transition: 0.3s all;
	transition: 0.3s all;
}
.menu-contents {
	background-color: #DC8551;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
	height: calc(100vh - 56px);
	width: 80%;
	padding: 0 12px;
	margin: 0 0 0 auto;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.3s all;
	-moz-transition: 0.3s all;
	-o-transition: 0.3s all;
	transition: 0.3s all;
}
.nav-menu.active, .nav-menu.active .menu-contents, .nav-menu.active .nav-overlay {
	opacity: 1;
	visibility: visible;
	will-change: transform, opacity, visibility;
}

.menu-list {
	padding: 24px 12px 28px;
}
.menu-list li {
	line-height: 40px;
}
.menu-list .menu {
	color: #ffffff;
	font-weight: 500;
	letter-spacing: .03em;
	width: 100%;
	height: 100%;
	-webkit-transition: 0.3s all;
	-moz-transition: 0.3s all;
	-o-transition: 0.3s all;
	transition: 0.3s all;
}
.menu-list .menu:hover {
	opacity: .6;
	-webkit-transition: 0.3s all;
	-moz-transition: 0.3s all;
	-o-transition: 0.3s all;
	transition: 0.3s all;
}
.menu-month {
	margin: 0 0 6px;
}
.menu-month .menu {
	padding-left: 1rem;
	font-size: 0.8rem;
}

.menu-super {
	display: flex;
	align-items: center;
	position: relative;
	padding: 0 20px 0 0;
}
.menu-super::before {
	content: "";
	position: absolute;
	left: 12.5rem;
	top: 52%;
	-webkit-transform : translate(0%,-50%);
  transform : translate(0%,-50%);	
	width: 14px;
	height: 14px;
	z-index: 10;
	transition: 0.3s all;
	background: url(img/icon-another_tab-white.svg) no-repeat 0 50%/contain;
}
.menu-super:hover::before {
	left: calc(13.5rem + 4px);
	transition: 0.3s all;
}

.header__reserve {
	border-top: 1px solid #ffffff;
	padding: 28px 12px;
}
.header__reserve h3 {
	font-size: 1rem;
	margin-bottom: 0.5rem;
}
.header__reserve-txt {
	font-size: 0.78rem;
	margin-bottom: 0.5rem;
}
.header__reserve-tel {
	position: relative;
	display: flex;
}
.header__reserve-tel img {
	width: 12px;
	margin: 2px 4px 0 0;
}
.header__reserve-tel a {
	text-decoration: underline;
}

.copy-button {
	display: flex;
	align-items: center;
	margin-top: 1rem;
	font-size: 0.8rem;
}
.icon-copy {
	width: 14px;
	margin: 0 0.2rem 0.1rem;
}
.kanji {
	line-height: 1.7em;
	margin-bottom: 0.5rem;
}
#copy{
  resize: none;
  width: 100%;
  height: 80px;
	padding: 8px;
	font-size: 0.8rem;
	border: 1px solid #cccccc;
	font-family: 'Noto Sans JP', sans-serif;
	color: #333333;
	background-color: #EEEEEE;
}
text#copyarea:focus,.copy-butt:focus{
  outline: 0;
}
::moz-selection{
  background: none;
}
::selection{
  background: none;
}

.header__store_info {
	border-top: 1px solid #ffffff;
	padding: 28px 12px 200px;
}
.header__store_info-txt {
	margin: 0.5rem 0 0.2rem;
}
.header__store_info a {
	text-decoration: underline;
}
.icon-facebook_insta-wrapper {
	display: flex;
	align-items: center;
	margin-top: 1.6rem;
}
.icon-facebook_insta {
	margin-left: 1rem;
}

@media screen and (min-width: 769px) {
	.header-content{
		padding: 0px 40px;
		height: 72px;
	}
	.logo-wrapper, .logo{
		width: 212px;
		height: 40px;
	}
	.toggle {
    right: 20px;
    top: 24px;
	}
	.nav-menu {
		top: 72px;
	}
	.menu-contents {
		width: 70%;
		padding: 0 40px;
	}
	.nav-overlay {
		width: 30%;
	}
}

/*---------------------------------------------------*/
/*	13.2 accordion menu
/*---------------------------------------------------*/
.accordion {
	position: relative;
	background-color: #ffffff;
	padding: 1rem;
	box-shadow: 0 8px 8px #69696920;
}
.accordion button {
	position: absolute;
	right: 0;
	top: 1.6rem;
	display: block;
	width: 55px;
	height: 35px;
}
.accordion button .icon {
  position: absolute;
  top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
	color: #333333;
}
.accordion button .icon::before, .accordion button .icon::after {
	display: block;
  position: absolute;
  content: "";
  top: calc(50% - 8px);
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: currentColor;
	-webkit-transition: all 0.1s;
	-moz-transition: all 0.1s;
	-o-transition: all 0.1s;
	transition: all 0.1s;
}
.accordion button .icon::before {
  width: 14px;
  height: 1px;
}
.accordion button .icon::after {
  width: 1px;
  height: 14px;
}
.accordion[aria-expanded=true] button .icon::after {
  width: 0;
	-webkit-transition: all 0.1s;
	-moz-transition: all 0.1s;
	-o-transition: all 0.1s;
	transition: all 0.1s;
}

.accordion button .txt::before, .accordion button .txt::after {
	color: #333333;
	display: block;
	width: 100%;
	font-size: 10px;
	font-weight: 500;
  position: absolute;
  top: calc(50% + 8px);
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
.accordion button .txt::before {
	content: "内訳";
}
.accordion button .txt::after  {
	content: "閉じる";
	opacity: 0;
}
.accordion[aria-expanded=true] button .txt::after {
  opacity: 1;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	will-change: opacity, max-height, transition;
}
.accordion[aria-expanded=true] button .txt::before {
  opacity: 0;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	will-change: opacity, max-height, transition;
}

.accordion[aria-expanded=true] button + .accordion-content {
  opacity: 1;
  max-height: 100em;
  -webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
  will-change: opacity, max-height, transition;
}
.accordion .accordion-content {
	overflow: hidden;
  opacity: 0;
  max-height: 0;
  -webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
  will-change: opacity, max-height, transition;
}

/*---------------------------------------------------*/
/*	14. top visual
/*---------------------------------------------------*/
.top {
	padding: 0;
	position: relative;
}
.top {
	padding: 0;
	position: relative;
}
.top video{
	width: 100%;
	height: 100%;
	max-height: 600px;
	display: block;
}
.top-news {
	background-color: #DC8551;
	padding: 0.5rem;
	line-height: 1.3em;
	display: flex;
	justify-content: center;
	align-items: center;
}
.top-news img {
	width: 28px;
	height: 28px;
	margin-right: 1rem;
}

/*---------------------------------------------------*/
/*	15.feature
/*---------------------------------------------------*/
.feature-txt-wrapper {
	margin-bottom: 12px;
}
.feature-txt-wrapper h2 {
	letter-spacing: 0.08em;
	font-family: 'BIZ UDMincho', serif;
	line-height: 1.4;
}
.feature-txt-wrapper p {
	line-height: 2em;
	letter-spacing: 0.1em;
	margin-top: 12px;
	text-align: justify;
}

.scroll_up {
  transform: translateY(30px);
  opacity: 0;
	-webkit-transition: opacity 0.6s ease-out 0s;
	-moz-transition: opacity 0.6s ease-out 0s;
	-o-transition: opacity 0.6s ease-out 0s;
	transition: opacity 0.6s ease-out 0s;
	will-change: transform, opacity;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
	will-change: transform, opacity;
}
.timing02 {transition-delay: .3s;}
.timing03 {transition-delay: .2s;}

.feature-image-wrapper > img {
	padding-right: 20px;
}
.feature-image-list {
	display: flex;
	gap: 0 5%;
	padding-left: 20px;
	margin: 28px 0;
}
.feature-image-list li {
	-webkit-flex-basis: -webkit-calc((100% - 2%*(2 - 1))/2);
	-ms-flex-preferred-size: calc((100% - 2%*(2 - 1))/2);
	flex-basis: -webkit-calc((100% - 2%*(2 - 1))/2);
	flex-basis: -moz-calc((100% - 2%*(2 - 1))/2);
	flex-basis: calc((100% - 2%*(2 - 1))/2);
}
@media screen and (max-width: 768px) {
	.feature {
		padding-top: 32px;
	}
	.feature .container {
		margin: 0;
	}
	.feature-txt-wrapper {
		padding: 0 20px;
	}
	.feature-txt-wrapper p {
		font-size: 14px;
	}
}
@media screen and (min-width: 769px) {
	.feature-txt-wrapper p {
		line-height: 1.875em;
		margin-top: 1rem;
	}
	.feature-image-wrapper > img {
		padding-right: 100px;
	}
	.feature-image-list {
		padding-left: 100px;
		margin: 40px 0;
	}
}

/*---------------------------------------------------*/
/*	16.recommend
/*---------------------------------------------------*/
.food_drink-name {
	line-height: 1.5em;
	letter-spacing: 0.1em;
	font-size: 14px;
	margin: 12px 0 2px;
	height: 100%;
}
.food_drink-price {
	font-size: 0.8rem;
}
.food_drink-price span {
	font-size: 0.5rem;
}
.recommend-title {
	margin-top: 40px;
}
.course-txt {
	font-size: 0.8rem;
}
.course-txt span{
	font-size: 1rem;
}
.course-txt span.pasta-price {
	font-size: 0.92rem;
}
.course-txt-alert {
	font-size: 0.9rem;
}
@media screen and (max-width: 768px) {
	.recommend .blocks-contents {
		margin-bottom: 1.5rem;
	}
	.short-course-contents .two-block-list {
		width: 100%;
		flex-basis: auto;
	}
}

/*---------------------------------------------------*/
/*	17.lunch_dinner
/*---------------------------------------------------*/
.lunch_dinner-txt {
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
}
.lunch_dinner-txt span {
	font-size: 0.8rem;
	font-weight: 400;
}
.lunch_dinner-list {
	position: relative;
}
.lunch_dinner-list .modal__item {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
}
.icon-zoom-in {
	width: 20px;
	height: 20px;
	margin: 0 auto 8px;
}
.lunch_dinner-list > img {
	box-shadow: 0 16px 16px #69696925;
}
.lunch_dinner .position_center {
	width: 100%;
}
 @media screen and (max-width: 768px) {
	.lunch_dinner .two-block-list {
		width: 100%;
		flex-basis: auto;
	}
	.lunch_dinner .two-block-list:nth-child(2) {
		margin-top: 2rem;
	}
}
@media screen and (min-width: 769px) {
	.lunch_dinner-txt {
		height: 100%;
	}
}

.modal {
	opacity: 0;
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 1000;
	overflow-y: auto;
	transition: 0.3s all;
}
.modal.is-show {
	opacity: 1;
	visibility: visible;
	will-change: opacity, visibility;
}
.modal__inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 100%;
}
.modal__bg {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 998;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	cursor: pointer;
}
.modal__cont {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform : translate(-50%,-50%);
	transform : translate(-50%,-50%);
	width: calc(100% - 40px);
	margin: 0 auto;
	z-index: 999;
	height: 80vh;
}
.modal__scroll {
	width: 100%;
	height: 100%;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
}
.modal__cont img {
	padding: 0.5rem 0;
}

.my-parts {
	display: inline-block;
	width: 32px;
	height: 32px;
	position: absolute;
	right: -12px;
	top: -9px;
	z-index: 1001;
	border: 1px solid #DC8551;
	border-radius: 25px;
	background-color: #FFE6CE;
	cursor: pointer;
}
.my-parts span::before,
.my-parts span::after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 53%;
	height: 6%;
	margin: -2% 0 0 -25%;
	background: #DC8551;
}
.my-parts span::before {
	transform: rotate(-45deg);
}
.my-parts span::after {
	transform: rotate(45deg);
}
@media only screen and (min-width: 769px) {
	.modal__cont {
		width: 100%;
		max-width: 800px;
	}
}

/*---------------------------------------------------*/
/*	18.price
/*---------------------------------------------------*/
.price-title {
	font-size: 0.8rem;
}
.price-title .font-small {
	font-size: 0.7rem;
}
.price-title .font-bold {
	font-size: 1rem;
}

.price-set {
	margin-top: 1.5rem;
	padding: 0 0.5rem  8px;
	border-bottom: 1px solid #A7A7A7;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.price-set ul {
	width: 70%;
}
.price-set li {
	position: relative;
	line-height: 1.5em;
	padding-left: 0.6rem;
}
.price-set li + li {
	margin-top: 0.6rem;
}
.price-set li::before {
	position: absolute;
	top: 0.5rem;
	left: 0;
	content: "";
	background-color: #333333;
	width: 4px;
	height: 4px;
	border-radius: 50px;
}
.price-set li.price-category {
	padding-left: 0;
	text-decoration: underline;
}
.price-set li.price-category::before {
	content: none;
}
.price-total {
	min-width: 28%;
	max-width: 320px;
	text-align: right;
	line-height: 1.5em;
}
.price-set li.price-mt {
	margin-top: 1.6rem;
}
.price-mt {
	margin-top: 1.6rem;
}
@media screen and (max-width: 768px) {
	.price .blocks-contents > li:nth-child(1) {
		margin-bottom: 1.5rem;
	}
	.price .two-block-list {
		width: 100%;
		flex-basis: auto;
	}
}
@media only screen and (min-width: 769px) {
	.modal__cont {
		width: 100%;
		max-width: 800px;
	}
}

/*---------------------------------------------------*/
/*	19.news
/*---------------------------------------------------*/
.table_wrapper{
	padding: 20px 0;
	border-bottom: 1px solid #CCCCCC;
	position: relative;
}
.table_wrapper:nth-child(1){
	border-top: 1px solid #CCCCCC;
}
.table_text{
	position: relative;
	margin-top: 0.7rem;
	transition: 0.3s ease;
}
.table_wrapper:hover .table_text {
	color: #DC8551;
}
/* 詳細ページへ */
.table_link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.news-button_layout {
	position: relative;
	margin-top: 32px;
}
.news-button_layout a {
	width: 160px;
	padding: 12px;
	border-bottom: 1.5px solid #DC8551;
}
.news-button_layout button {
	display: flex;
	justify-content: space-between;
}
.news_arrow {
	width: 16px;
	height: 16px;
	transition: all 0.3s ease;
}
.news-button_layout a:hover .news_arrow {
	transform: translateX(4px);
	transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
	.news-contents {
		margin-top: 32px;
	}
	#news .section-en-title, #news .section-title {
		text-align: center;
	}
}
@media screen and (min-width: 769px){
	.news-section-layout {
		display: flex;
		justify-content: space-between;
	}
	.news-contents {
		max-width: 720px;
		width: 76%;
	}
	.table_wrapper{
		display: flex;
		justify-content: flex-start;
		align-items: center;
		padding: 40px 0;
	}
	.table_text{
		margin-top: 0;
		margin-left: 32px;
	}
	.news-button_layout {
		text-align: right;
		margin-top: 40px;
	}
}

/*---------------------------------------------------*/
/*	17.1.tag
/*---------------------------------------------------*/
.tag_wrapper{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.single_tag_wrapper{
	margin: 20px 0;
}
.tag {
	margin-left: 0.8rem;
	padding: 4px 0;
	width: 100px;
	height: 1.2rem;
	font-size: 0.7rem;
	margin-top: 0;
	line-height: 1em;
	border-radius: 50px;
}
.tag-orange {
	background-color: #DC8551;
}
.tag-green {
	background-color: #8FD14F;
}
.tag-blue {
	background-color: #487AB9;
}
@media screen and (min-width: 769px){
	.tag_wrapper{
		width: 240px;
	}
	.tag{
		margin-left: 24px;
		width: 120px;
		height: 28px;
	}
}

/*---------------------------------------------------*/
/*	20.store_info
/*---------------------------------------------------*/
.store_info-image {
	margin-bottom: 2rem;
}
.store_info-wrapper{
	padding: 0.5rem 0;
	border-bottom: 1px solid #CCCCCC;
	display: flex;
	justify-content: flex-start;
}
.store_info-wrapper:nth-child(1){
	border-top: 1px solid #CCCCCC;
	margin-top: 1rem;
}
.store_info-title {
	margin-right: 1.5rem;
	min-width: 84px;
}
.map {
	margin-top: 2rem;
	width: 100%;
	height: 300px;
}
.gm-inset-map, .gm-inset-light, .gmnoprint {
	display: none!important;
}

/*---------------------------------------------------*/
/*	20.footer
/*---------------------------------------------------*/
footer{
	background-color: #DC8551;
	padding: 40px 20px 60px;
	text-align: center;
}
.footer-txt-wrapper {
	margin-top: 1.5rem;
}
.footer-txt {
	margin-top: 1rem;
	line-height: 1em;
}
.copy-right {
	margin-top: 1rem;
	font-size: 0.7rem;
}
footer .icon-facebook_insta-wrapper {
	justify-content: center;
}

/*---------------------------------------------------*/
/*	19. special menu
/*---------------------------------------------------*/
#special_menu {
	position: relative;
	overflow: hidden;
}
.special_menu-wrapper {
	margin: 0 6px;
	position: relative;
}
.special_menu-image {
	position: relative;
	width: 100%;
	overflow: hidden;
	margin-bottom: 1rem;
}
.special_menu-image::before {
	content: "";
	padding-top: 100%;
	display: block;
}
.special_menu-image > img{
	position: absolute;
	top: 0;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
  font-family: 'object-fit: contain;'
}
.multiple-items .slick-list{
	padding: 0 12px!important;
}
.special_menu-mt {
	margin-top: 2.5rem;
}

.special_menu-table {
	margin-top: 1rem;
	text-align: left;
	border-collapse: collapse;
	font-size: 0.9rem;
	padding-left: 1rem;
	color: #333333;
}
.special_menu-table tr {
	height: 2.2em;
	position: relative;
}
.special_menu-table tr::before {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-35%);
	content: "";
	background-color: #333333;
	width: 7px;
	height: 7px;
	border-radius: 50%;
}
.special_menu-table th {
	font-weight: 400;
	width: 40%;
	padding-left: 1rem;
	vertical-align: middle;
}
.special_menu-table td {
	vertical-align: middle;
}
.special_menu-table .link_underline {
	font-size: 0.9rem;
}
.special_menu-table-alert {
	font-size: 0.75rem;
	margin-top: 1rem;
}

.special_menu-wrapper h5 {
	font-size: 1rem;
}
.special_menu-list li {
	position: relative;
	padding-left: 1rem;
}
.special_menu-list li::before {
	position: absolute;
	top: 11px;
	left: 0;
	content: "";
	background-color: #333333;
	width: 6px;
	height: 6px;
	border-radius: 50%;
}
.special_menu-alert {
	padding: 0 20px;
}
@media screen and (max-width: 768px){
	#special_menu .blocks-contents > li:nth-child(1) {
		margin-bottom: 1.5rem;
	}
	#special_menu .section-sub-title, .stay {
		margin-left: 20px;
	}
	.stay {
		margin-bottom: 1rem;
	}
}

/* ----------------------------------------------------------------
	7. lp-style
-----------------------------------------------------------------*/
.page-title {
	letter-spacing: 0.1em;
	font-size: 1.6rem;
	display: grid;
}
.page-title span {
	font-size: 1.2rem;
}
.recipe-content {
	margin-top: 40px;
}
.print-button {
	margin-top: 20px;
	width: 100%;
}
.recipe-title {
	letter-spacing: 0.1em;
	font-size: 1.1rem;
	margin-top: 12px;
}
.recipe-section-title {
	margin-top: 20px;
	font-size: 1rem;
}
.step {
	margin-top: 28px;
}
.material {
	border-collapse: collapse;
	text-align: left;
	width: 100%;
	margin-top: 10px;
}
.material tr {
	width: 100%;
	border-bottom: solid 1px #cdcdcd;
}
.material th, .material td {
	font-weight: 300;
	font-size: 0.9rem;
	border-top: solid 1px #cdcdcd;
	padding: 6px 0;
	color: #333333;
}
.material th {
	min-width: 160px;
	width: 40%;
}
.step-wrap {
	list-style: auto;
	list-style-type: decimal;
	padding-left: 20px;
}
.step-wrap li {
	padding-left: 8px;
	line-height: 1.8;
	font-size: 0.9rem;
	padding-top: 8px;
	color: #333333;
}

.qr_code-content {
	max-width: 280px;
	margin: 32px auto 0;
}
.qr_code-image {
	width: 80%;
	margin: 0 auto;
}
.qr_code-sectin-title {
	font-size: 1.2rem;
}
.qr_code-title {
	font-size: 0.9rem;
}