@charset "UTF-8";

	/* Noto Sans JP */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');
	/* Noto Serif JP */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500&display=swap');
/*
　※Noto Sans JP、Noto Serif JPのfont-weightの値

   Regular　→ 　400
   Medium　 → 　500
   Bold   　→　 700
   Black　  →   900
*/

html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
	color: #62441f;
	font-size: 15px;
	line-height: 1.6;
	font-weight: 400;
	text-size-adjust: 100%;

	/* 明朝体セット */
	font-family: 'Noto Serif JP', serif;


}
@media screen and (min-width: 768px) {
	body {
		min-width: 1180px;
	}
}
@media screen and (max-width: 767px) {
	
}


/* ==================================================
タグ
================================================== */
/* リンク
-------------------------------------------------- */
a,
a img {
	text-decoration: none;
	color: inherit;
	transition: all .3s;
}

a:hover,a:hover img {
	opacity: .6;
}

a[href^="tel:"] {
	color: inherit;
}

@media screen and (min-width: 768px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}

/* 端末別表示非表示設定
-------------------------------------------------- */
@media screen and (max-width: 767px) {
	.pc-only { /* PCでの閲覧時にのみ表示したいコンテンツにつける */
		display: none !important;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1280px) {
	.tab-only { /* スマホでの閲覧時にのみ表示したいコンテンツにつける */
		display: block!important;
	}
}

@media screen and (min-width: 767px) {
	.sp-only { /* スマホでの閲覧時にのみ表示したいコンテンツにつける */
		display: none !important;
	}
}

/* 改行
-------------------------------------------------- */
.app-br {
	display: block;
}

/* box-sizing
-------------------------------------------------- */
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

/* js-hidden
-------------------------------------------------- */
li {
	opacity: 1;
	height:auto;
	transition: all .4s;
	overflow:hidden;
}
li.js-hidden {
  visibility: hidden;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding:0;
}

/* modal
-------------------------------------------------- */
.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 150%;
    position: absolute;
    width: 100%;
}
.modal__content{
	overflow: auto;
    background: #fff;
    border-radius: 15px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.modal_ttl {
	margin: 0 0 20px;
}
.modal_img {
	margin: 0 0 15px;
}
.modal_time {
	color: #9c7f5b;
}
.modal_close_btn {
	text-align: right;
	color: #9c7f5b;
}
.modal_close_btn a.js-modal-close {
	display: inline-block;
	margin: 0;
}
@media screen and (min-width: 768px) {
	.modal__content {
	    width: 60%;
	    max-height: 65vh;
	    padding: 40px;
	}
}
@media screen and (max-width: 767px) {
	.modal__content {
	    width: 90%;
	    max-height: 60vh;
	    padding: 20px;
	}
}


/* ==================================================
テーブル
================================================== */
.styled-table01 {
	width: 100%;
	margin: 1em 0;
	height: 100%;
	line-height: 1.7;
	border: 1px solid #f4e9df;
}

.styled-table01:first-child {
	margin-top: 0;
}

.styled-table01 th,
.styled-table01 td {
	padding: 15px;
	vertical-align: top;
	text-align: left;
	background: #fff;
}

.styled-table01 tr:not(:last-child) {
	border: 1px solid #f4e9df;
}
.styled-table01 th {
	width: 35%;
	font-weight: normal;
	background: url(../img/item_head_bg.png);
	color: #FFF;
}

.styled-table01 thead th {
	background: #e6e6e6;
}

.styled-table01 caption {
	text-align: center;
	font-size: 20px;
}

/* ==================================================
ヘッダー
================================================== */
.global-header {
}

.header-inner {
	width: 100%;
	margin: 0 auto 15px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	padding: 0 30px 0 30px;
}

.h_right_cont {
	margin-top: 10px;
	display: flex;
}


.header-area-wrap {
	position: absolute;
	z-index: 999;
	width: 100%;
}

/* 固定設定　（ヘッダーを固定しない場合はこの項目ごと消せば固定しなくなる）
-------------------------------------------------- */
@media screen and (max-width: 767px) {
	.header-area-wrap {
		height: auto;
	}

	.header-fix-area {
		position: static;
	}
}

/* h1
-------------------------------------------------- */
.header-description {
	width: 100%;
	padding: 8px 0;
	line-height: 1.2;
	font-size: 12px;
	font-weight: 300;
}

/* 問い合わせ
-------------------------------------------------- */
.header-contacts {
	line-height: 40px;
	display: flex;
	justify-content: flex-end;
}

.header-contacts li {
	margin: 0 0 10px 15px;
}

/* 電話番号 */
.header-contacts .tel a {
	text-decoration: none;
	font-size: 22px;
}

/* メール */
.header-contacts .mail a {
	padding: 0px 50px;
	color: #fff;
	font-size: 15px;
	text-decoration: none;
	background: #cccccc;
	display: flex;
}

.header-information {
	font-size: 12px;
}

.h_info_ttl {
	display: inline-block;
	background: #cce68f;
	border-radius: 2px;
	padding: 0 2px;
	width: 55px;
	text-align: center;
	margin: 0 6px 5px 20px;
}


/* スマホメニュー時 お問い合わせ関係設定
-------------------------------------------------- */
.header-contacts-sp {
	border-bottom: 0;
	padding: 20px;
}

.h_right_cont_sp .header-contacts {
	display: block;
	padding: 0 20px;
}

.h_right_cont_sp .header-contacts .tel a {
	font-size: 24px;
	padding:20px 0;
}

/* メール */
.h_right_cont_sp .header-contacts .mail a {
	display: flex;
	align-items: center;
	margin: 0;
	height: 50px;
}

.header-information-sp {
	margin-bottom: 15px;
	display: block;
	width: 100%;
	margin: 0 auto;
	padding:20px;
}

.header-information-sp .header-address {
	display: flex;
	margin-bottom: 15px;
}

/* グローバルナビ
-------------------------------------------------- */
.header-nav {
}

.header-nav > div > ul,.header-nav-scroll > div > ul {
	max-width: 1080px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.header-nav > div > ul > li,.header-nav-scroll > div > ul > li {
	flex-grow: 1;
	position: relative;
}

.header-nav a,.header-nav-scroll a {
	padding: 0 20px;
	line-height: 50px;
	color: inherit;
	font-size: 14px;
	text-decoration: none;
	display: block;
	text-align: center;
	letter-spacing: 2px;
}


/* ドロップダウンメニュー
------------------------- */
.header-nav li ul {
	width: 100%;
	background: #cfcfcf;
	opacity: 0;
	transition: all .3s;
	position: absolute;
	top: 80%;
	z-index: 100;
	pointer-events: none;
}

.header-nav li:hover ul {
	top: 100%;
	opacity: 1;
	pointer-events: auto;
}

@media screen and (max-width: 1024px) {
	.header-nav a {
		padding: 0 10px;
		font-size: 13px;
	}

	.h_info_ttl {
		margin: 0 6px 5px 10px;
	}

	.header-logo {
		width: 80%;
	}

}


/* スマホメニュー　カラー設定
------------------------- */

/* トグルの背景色 */
.um-crossBtn .um-crossBtn-basis {
	background: #ab7736;
	border-radius: 100%;
	top:10px;
	right: 10px;
}

/* 三本線の色  */
.um-crossBtn .um-crossBtn-border,
.um-crossBtn .um-crossBtn-border:before,
.um-crossBtn .um-crossBtn-border:after {
	background: #fff;
}

/* メニュー背景  */
.um-l-wrap .um-l-content {
	background: #FFFFFF;
}

/* 子要素メニュー　背景  */
.um-mianList .hasChild li {
	background: #f9f9f9;
}

/* 各メニュー　リンク色  */
.um-mianList a {
	color: #000000;
}

/* 各メニュー　ボーダー色  */
.um-mianList a:after {
	border-bottom: 1px solid #e5e5e5;
}

/* 各メニュー　ボーダー色（一番上）  */
.um-mianList .first {
	border-top: 1px solid #e5e5e5;
}


/* メインビジュアル
-------------------------------------------------- */
.header-main-visual {
	position: relative;
	height: 100vh;
	background: url(../img/mv.jpg) no-repeat center top / cover;
}

.catch {
	max-width: 1280px;
	margin: 0 auto;
	height: inherit;
	display: flex;
	align-items: center;
	padding-top: 100px;

}


@media screen and (max-width: 767px) {
	.header-main-visual {
		height: 68vh;
		background: url(../img/mv.jpg) no-repeat right -300px top / cover;
	}

	.catch {
		justify-content: center;
		align-items: flex-end;
		width: 80%;
		padding-bottom: 20px;
	}
}

/*--- ↓ JSありの場合は、ここに記述する ↓ ---*/


/* スマホ
-------------------------------------------------- */
@media screen and (max-width: 767px) {
	.header-inner {
		margin: 0;
		padding: 10px;
		display: block;
	}

	.header-description,
	.header-contacts,
	.header-information,
	.header-nav {
		display: none;
	}

	.header-contacts li {
    margin: 0;
	}

	/* ロゴ */
	.header-logo {
	}

	.header-logo img {
		width: 30%;
	}
}

@media screen and (max-width: 640px) {
	.header-logo img {
		width: 50%;
	}
}




/* ==================================================
フッター
================================================== */
.global-footer {
	background: url(../img/footer_bg.png)no-repeat center top -80px;
}

.footer-inner {
	max-width: 1080px;
	margin: 0 auto;
	padding: 100px 0 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media screen and (max-width: 767px) {
	.footer-inner {
		padding: 30px 20px;
		flex-direction: column;
		justify-content: center;
	}

	.global-footer {
    background: url(../img/footer_bg.png)no-repeat center top 0px / 100%;
}
}

@media screen and (max-width: 640px) {
	.global-footer {
    background: url(../img/footer_bg.png)no-repeat center top 100px / 100%;
}
}


/* ロゴ
-------------------------------------------------- */
.footer-logo {
	margin: 0 0 20px;
	width: 30%;
}

/* 会社概要
-------------------------------------------------- */
.footer-about {
}

.footer-about li {
	margin: 0 0 8px;
	line-height: 1.2;
}

/* 電話番号 */
.footer-about .tel {
	font-size: 22px;
}

.footer-about .tel a {
	color: inherit;
	font-weight: bold;
	letter-spacing: .1em;
	text-decoration: none;
}

/* 所在地 */
.footer-about .address {
}

/* コピーライト
-------------------------------------------------- */
.footer-copyright {
	padding: 8px;
	line-height: 1.3;
	text-align: center;
	font-size: 12px;
	display: block;
}

.footer-copyright a {
	color: inherit;
}

/* ==================================================
セクション
================================================== */

.section-inner {
	max-width: 1080px;
	margin: 0 auto;
	padding: 100px 0;
}

@media screen and (max-width: 1024px) {
.section-inner {
		padding: 80px 40px;
	}
}

@media screen and (max-width: 767px) {
.section-inner {
		padding: 80px 20px;
	}
}

@media screen and (max-width: 640px) {
.section-inner {
		padding: 60px 20px;
	}
}

/* 見出し
-------------------------------------------------- */
h2 {
	font-size: 45px;
	text-align:center;
	font-family: 'Cormorant Garamond', serif;
	font-weight: 400;
	color: #ab7736;
	background: url(../img/h2_brown.png) no-repeat center center;
	line-height: 1;
}

section:nth-child(odd) .section-inner h2 {
	background: url(../img/h2_green.png) no-repeat center center;
}

.h2_ja {
	font-size: 16px;
	display: block;
	letter-spacing: 3px;
	margin-top: 20px;
		font-family: 'Noto Serif JP', serif;
}

h2::after {
	content: "";
	display: block;
	width: 30px;
	height: 3px;
	background: #cce68f;
	margin: 30px auto 40px;
}


@media screen and (max-width: 640px) {
	h2 {
		font-size: 30px;
		background-size: 30%;
	}

	.h2_ja {
		font-size: 14px;
		display: block;
		margin-top: 10px;
	}

	h2::after {
		content: "";
		display: block;
		width: 20px;
		height: 3px;
		background: #cce68f;
		margin: 15px auto 20px;
	}

	section:nth-child(odd) .section-inner h2 {
		background-size: 30%;
	}
}


/* ==================================================
コンセプト
================================================== */

#concept {
	background:
	url(../img/concept_img_bg.png) no-repeat center top 160px,
	url(../img/concept_bg.png) no-repeat left top / 100%,
	url(../img/itm_content_top.png) no-repeat center bottom / 100%,
	url(../img/concept_bottom_img.png) no-repeat center bottom 160px,
	url(../img/concept_bottom_bg.png) no-repeat center bottom / 100%;

}

#concept .section-inner {
	padding-bottom: 130px;
}

.video_area {
	padding: 20px;
	background: url(../img/movie_bg.jpg);
	max-width: 780px;
	border-radius: 10px;
	margin: 0 auto;
}

.trouble {
	text-align: center;
	margin-top: 70px;
}

.trouble_ttl {
	font-size: 40px;
	letter-spacing: 4px;
	color: #ab7736;
	margin-bottom: 10px;
}

.trouble_ttl_back {
	background: url(../img/trouble_txt_bg.png) no-repeat center;
	color: #FFF;
	font-size: 45px;
	padding: 0 15px;
}
.greeting {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	background: #FFF;
	align-items: center;
	padding: 70px 50px 50px;
	border-radius: 10px;
	box-shadow: 0px 0px 0px 1px #ab7736 inset;
	border: 20px solid #FFF;
}

.greeting_txt {
	width: 63%;
}

.greeting_txt p {
	line-height: 30px;
	letter-spacing: 1px;
}


.greeting_ttl {
 display: inline-block;
 color: #FFFFFF;
  font-size: 18px;
  line-height: 38px;
 margin: 15px 0;
 position: relative;
 width: 200px;
 text-align: center;
}

/* それぞれの長方形のbefore（前）とafter（後ろ）に大きさゼロの要素を作ります */
.greeting_ttl:before, .greeting_ttl:after {
 content: "";
 border-style: solid;
 border-width: 0;
 position: absolute;
 width: 0;
 height: 0;
 top:0;
}


.greeting_ttl {
 background-color: #ab7736;
 padding: 10px 20px;
 width: 100%;
 font-size: 22px;
 letter-spacing: 2px;
 margin-top: -127px;
}
.greeting_ttl:before {
 border-width: 29px 0px 29px 16px;
}

.greeting_ttl::after {
 border-width: 29px 16px 29px 0;
}
.greeting_ttl:before {
 border-color:#ab7736 transparent ;
 left: -16px;
}
.greeting_ttl:after {
 border-color: #ab7736 transparent;
 right: -16px;
}

@media screen and (max-width: 767px) {
	.video_area {
		padding: 10px;
	}

	.trouble {
		margin-top: 40px;
	}

	.trouble_ttl {
		font-size: 25px;
		letter-spacing: 4px;
		color: #ab7736;
		line-height: 35px
	}

	.trouble_ttl_back {
		font-size: 30px;
		padding: 0 8px;
		background-size: 92%;
	}

	.greeting_ttl {
	 background-color: #ab7736;
	 padding: 10px 20px;
	 width: 100%;
	 font-size: 22px;
	 letter-spacing: 2px;
	 margin-top: -127px;
	}
	.greeting_ttl:before {
	 border-width: 48px 0px 48px 30px;
	}

	.greeting_ttl::after {
	 border-width: 48px 30px 48px 0;
	}
	.greeting_ttl:before {
	 border-color:#ab7736 transparent ;
	 left: -29px;
	}
	.greeting_ttl:after {
	 border-color: #ab7736 transparent;
	 right: -29px;
	}

	#concept .section-inner {
		padding-bottom: 80px;
	}
}

@media screen and (max-width: 640px) {
	.greeting_ttl {
	 background-color: #ab7736;
	 padding: 10px 10px;
	 width: 100%;
	 font-size: 17px;
	 letter-spacing: 2px;
	 margin-top: -127px;
	 line-height: 25px;
	}
	.greeting_ttl:before, .greeting_ttl:after {
	 content: none;
	}

	.greeting {
		padding: 70px 20px 20px;
		border: 10px solid #FFF;
		margin-top: 60px;
	}

	.greeting_txt {
		width: 100%;
		margin-top: 20px;
	}
}

/* ==================================================
取扱いアイテム
================================================== */
#items {
	background: url(../img/menu_content_top.png)no-repeat center bottom / 100%;
}

#items .section-inner {
	padding: 70px 0px 100px;
}

.items_box {
	background: #f7eee3;
	border-radius: 10px;
	padding: 50px;
	line-height: 30px;
	letter-spacing: 1px;
	margin-bottom: 60px;
}

.items_box:last-child {
	margin-bottom: 0;
}

.items_detail {
	display: flex;
	flex-wrap:wrap;
	justify-content: space-between;
}

.item_outline {
	width: 56%;
}

.item_name {
	font-size: 23px;
	background: url(../img/item_ttl_bg.png) no-repeat left center;
	padding: 25px 0 25px 35px;
	margin-bottom: 30px;
	letter-spacing: 3px;
}


.item_img {
	border-radius: 10px;
	overflow: hidden;
}

h3 {
	background: url(../img/item_head_bg.png);
	padding: 10px 20px;
	border-radius: 10px;
	color: #FFF;
	letter-spacing: 2px;
	font-size: 18px;
	margin-top: 40px;
}

.items_comment_txt {
	padding: 0 0 0 20px;
	margin-top: 15px;

}

.btn {
	max-width: 500px;
	margin: 0 auto;
}
.btn a {
	display: block;
	max-width: 500px;
	padding: 20px;
	background: url(../img/btn_bg.png);
	margin: 0 auto;
	border-radius: 10px;
	font-size: 18px;
	text-align: center;
	letter-spacing: 2px;
}
.btn p {
	display: block;
	max-width: 500px;
	padding: 20px;
	background: url(../img/btn_bg.png);
	margin: 0 auto;
	border-radius: 10px;
	font-size: 18px;
	text-align: center;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all .3s;
}
.btn p:hover {
	opacity: .7;
}

.mb30 {
	margin-bottom: 30px;
}

@media screen and (max-width: 1024px) {
#items .section-inner {
	padding: 70px 40px;
}
.item_outline {
	width: 50%;
}
}

@media screen and (max-width: 767px) {
	#items .section-inner {
		padding: 70px 20px 90px;
	}

	.items_box {
		padding: 30px;
	}

	.item_outline {
		width: 50%;
	}

	.item_img {
		width: 44%;
	}
}

@media screen and (max-width: 640px) {

	.items_box {
		padding: 25px;
		margin-bottom: 40px;
	}

	.item_outline {
		width: 100%;
	}

	.item_img {
		width: 100%;
		margin-bottom: 20px;
	}

	.items_comment_txt {
		padding: 0;
		margin-top: 15px;
	}

	.item_name {
		font-size: 18px;
		background-size: 15%;
		padding: 10px 0 10px 15px;
		margin-bottom: 13px;
		letter-spacing: 2px;
	}

	.btn a,
	.btn p {
		font-size: 16px;
	}
}


/* ==================================================
メニュー
================================================== */
#menu {
	background:
	url(../img/menu_left_bg.png) repeat-y left 100px top 130px fixed,
	url(../img/menu_right_bg.png) repeat-y right 100px top 130px fixed,
	 #f5fae9;
}

@media screen and (max-width: 767px) {
	#menu {
		background:
		url(../img/menu_left_bg.png) repeat-y left top,
		url(../img/menu_right_bg.png) repeat-y right top,
		 #f5fae9;
	}
}

.recommended {
	background: #FFF;
	align-items: center;
	padding: 60px;
	border-radius: 10px;
	border: 20px solid #FFF;
	position: relative;
	margin-top: 50px
}

.recommended::after {
    content: "";
    position: absolute;
    border: 1px solid #ab7736;
    display: block;
    width: 100%;
    height: 100%;
		top:0;
		left: 0;
		border-radius: 8px;
	pointer-events: none;
}

.recommended_menu_list li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 30px;
	background: url(../img/dash.png)repeat-x center;
}

.recommended_menu_list li:last-child {
	margin-bottom: 0px;
}

.recomen_menu_name {
	font-size: 23px;
	letter-spacing: 2px;
	margin-right: 20px;
	background: #FFF;
	padding-right: 30px
}

.recomen_menu_price {
	font-size: 23px;
	letter-spacing: 2px;
	margin-left: 20px;
	background: #FFF;
	width: 140px;
	padding-left: 30px;
}

.recomen_menu_time {
	padding: 2px 10px;
	font-size: 23px;
	letter-spacing: 2px;
	background: url(../img/btn_bg.png);
	border-radius: 8px;
	text-align: center;
	margin-left: 10px;
}

.small_time,.small_price {
	font-size: 18px;
}

.recomen_menu_border {
	height: 1px;
	width: 50%;
	border-top: 1px dashed #ab7736;
}

.recommended_ttl {
	position: absolute;
	top:-90px;
	left: 0;
	z-index: 10;
}

.menu_list {
	margin-top: 40px;
}


.menu_list,.menu_list li {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.menu_list li {
	width: calc((100% - 100px)/2);
	margin-right: 100px;
	background: url(../img/dash.png)repeat-x center bottom;
	padding: 25px 0 25px 10px;
	letter-spacing: 1px;
}

.menu_list li:nth-child(2n) {
	margin-right: 0px;
}


.menu_price {
	width: 93px;
}

.option {
	border: 4px double #e97c7c;
	padding: 15px;
	text-align: center;
	letter-spacing: 2px;
	font-size: 16px;
	margin-top: 30px;
	color: #e97c7c;
	background: #f5fae9;
}

.op_bnr {
	margin-top: 40px;
}

@media screen and (max-width: 767px) {
	.recomen_menu_time {
		font-size: 20px;
		margin-left: 0px;
	}

	.recomen_menu_name {
		font-size: 20px;
	}

	.recomen_menu_price {
		font-size: 20px;
	}

	.recommended_ttl {
		width: 40%;
		top: -55px;
		left: 16px;
	}

	.recommended {
		padding: 60px 40px 40px;
	}

	#menu .section-inner {
		padding: 70px 20px;
	}

	.menu_list li {
		width: calc((100% - 50px)/2);
		margin-right: 50px;
		align-items: center;
		padding: 18px 10px;
	}

	.menu_price {
		margin: 0 0 0 auto;
		line-height: 35px;
	}
}

@media screen and (max-width: 640px) {
	.recommended {
		padding: 45px 15px 15px;
		border: 10px solid #FFF;
		margin-top: 65px;
	}

	.recommended_menu_list li {
		justify-content: flex-end;
		background: url(../img/dash.png)repeat-x center bottom 14px;
		line-height: 30px;
		margin-bottom: 20px
	}

	.recommended_ttl {
		width: 75%;
		top: -55px;
		left: 40px;
	}

	.recomen_menu_name {
		font-size: 15px;
		width: 100%;
		margin-right: 0px;
		padding-right: 0px;
		letter-spacing: 0px;
	}

	.recomen_menu_time {
		font-size: 16px;
		margin-left: 0px;
		padding: 2px 5px;
		border-radius: 5px;
	}

	.small_time, .small_price {
		font-size: 13px;

	}

	.recomen_menu_price {
		font-size: 15px;
		margin-left: 0px;
		width: 95px;
		padding-left: 15px;
	}
	.menu_list li {
		width: calc((100% - 0px)/1);
		margin-right: 0px;
		align-items: center;
		padding: 18px 10px;
		background: url(../img/dash.png)repeat-x center bottom, #f5fae9;
	}
}



/* ==================================================
メニュー
================================================== */
#case {
	background:url(../img/case_bg.png) no-repeat left top;
}

.case_list {
	display: flex;
	flex-flow: wrap;
	margin-bottom: 40px;
	justify-content: flex-start;
}


.case_list li:hover .case_img {
	opacity: .7;
}

.case_img {
	width: 100%;
	height: 330px;
	border-radius: 10px;
	overflow: hidden;
	transition: all .3s;
}

.case_ttl {
	background: url(../img/item_head_bg.png);
	border-radius: 10px;
	margin-top: 20px;
	padding: 10px;
	color: #FFF;
	letter-spacing: 1px;
}

.case_button {
	margin-top: -30px;
}

.faq_btn a {
	background: url(../img/item_head_bg.png);
	color: #FFF;
}

@media screen and (min-width: 768px) {
	.case_list li {
		width: 330px;
		margin-right: 45px;
	}

	.case_list li:nth-child(3n) {
		margin-right: 0px;
	}
	.case_list li:nth-child(n+4) {
		margin-top: 40px;
	}
}
@media screen and (max-width: 640px) {


	.case_list li {
		width: 80%;
		margin: 0 auto 30px;
	}

	.case_img {
		height: 71.47vw;
	}

	.case_ttl {
		margin-top: 10px;
	}

	.case_list li:last-child {
		margin-bottom: 0px;
	}
}


/* ==================================================
店舗情報
================================================== */
#salon {
	background:url(../img/salon_bg.jpg) no-repeat center / cover fixed;
}

@media screen and (max-width: 767px) {
	#salon {
		background: url(../img/salon_bg.jpg) no-repeat center / cover;
	}
}

/* ==================================================
カラム設定
================================================== */
.table-column-wrap {
	display: flex;
	justify-content: space-between;
}

.table-column-wrap .table-column {
	width: 510px;
}

.table-column-wrap .map-column {
	width: 510px;
}

/* スマホ
-------------------------------------------------- */
@media screen and (max-width: 767px) {
	.table-column-wrap {
		display: block;
	}

	.table-column-wrap .table-column {
		width: auto;
		margin: 0 0 10px;
	}

	.table-column-wrap .map-column {
		width: auto;
		height: 400px;
	}
}


/* ==================================================
お知らせ
================================================== */
#info {
	margin: 5% 5% 1% 5%;
	background:
	url(../img/news_bg_left.png) repeat-y left 180px top 180px fixed,
	url(../img/news_bg_right.png) repeat-y right 180px top 180px fixed,
	 #f7eee3;
	 border-radius: 20px;
}

.news_list li > a {
	display: block;
	letter-spacing: 1px;
	padding: 15px 20px;
	background: url(../img/news_list_bg.png);
	border-radius: 10px;
	margin-bottom: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.news_button {
	margin-top: 20px;
}

.bnr_area {
	margin-top: 60px;
	display: flex;
	/*justify-content: space-between;*/
	justify-content: center;
	flex-wrap: wrap;
}
.bnr_area a:not(:last-child) {
	margin-right: 40px;
}

@media screen and (max-width: 767px) {
	#info {
		background:
		url(../img/news_bg_left.png) repeat-y left top,
		url(../img/news_bg_right.png) repeat-y right top,
		 #f7eee3;
	}
	.bnr_area {
		margin-top: 60px;
		display: flex;
		justify-content: space-between;
		justify-content: center;
	}

	.bnr_area a {
		margin-bottom: 20px;
	}

	.bnr_area a:last-child {
		margin-bottom: 0px;
	}
}


/* ==================================================
スクローるナビ
================================================== */

.scroll_nav {
	background: #FFF;
	position: fixed;

	top: 0;
	z-index: 999;
	width: 100%;
}

.s_nav_innner {
	display: flex;
	justify-content: space-between;
		align-items: center;
	padding: 10px 30px;
}

.scroll_rignt {
	display: flex;
}

.scroll_logo {
	width: 9%;
}
