/*------------------------------------------------------------------------------

Theme Name: Salon Thema 2023-2024
Author: Shimizu [ bran-new-days.com ]
Description: 2023/3/20

------------------------------------------------------------------------------*/

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

 全体 style

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

main, article, aside, header, canvas, details, figcaption, figure, footer, nav, section, summary {
	display: block;
}

html {
	font-size: 16px;
}

body {
	position: relative;
	left: 0;
	overflow: hidden;
	word-wrap: break-word;
	color: #333;
	font-size: 1rem;
	font-family: 'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
	line-height: 1.6;
	background: #FFF;
	background-attachment: fixed;
}

a {
	color: #645b51;
	text-decoration: underline;
}

a:hover {
	color: #2b95c3;
	text-decoration: none;
}

a:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
}

.font_gothic {
	font-family: 'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
}
.font_mincho {
	font-family: '游明朝', YuMincho, 'Hiragino Mincho ProN W3', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
}

video, object {
	display: block;
	max-width: 100%;
	height: auto;
	border: none;
}

img {
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align: bottom;
}

.vibtn {
	position: absolute;
	visibility: hidden;
}

/* iframeのレスポンシブ */

.youtube_container {
	position: relative;
	margin-bottom: 8px;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}

.youtube_container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


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

 layout

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

.contents_wrapper {
	clear: both;
	max-width: 1000px;
	margin: 20px auto;
	padding: 0 15px;
}

.main_contents {
	flex: 1;
	max-width: 1000px;
	margin: 0 auto;
}
body.single-post .main_contents {
	padding: 20px;
	background: #f0eeec;
}


/* 背景横突き抜け：ブロック
------------------------------------------------------------- */

.contents {
	clear: both;
	overflow: hidden;
	zoom: 100%;
}
.contents.bg01 {
	background: #eee;
}
.contents.bg02 {
	background: #CCC;
}

.contents_inner {
	max-width: 1000px;
	margin: 0 auto;
	padding: 40px 15px;
}

.main_contents .contents {
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}


/*------------------------------------------------------------------------------

 header

------------------------------------------------------------------------------*/

.header {
	position: relative;
	background: rgb(102,102,102);
	background: linear-gradient(135deg, rgba(102,102,102,1) 0%, rgba(131,131,131,1) 100%);
	color: #FFF;
	z-index: 999999;
}

.header_inner {
	max-width: 1200px;
	min-height: 55px;
	margin: 0 auto;
	padding: 10px 10px;
}
.header_inner:after { /* modern */
	content : '';
	display : block;
	clear : both;
	height: 0;
}

.header_main .logo {
	position: relative;
	width: 120px;
	transition:all 300ms 0ms ease;
}
.header_main .logo a {
	position: relative;
	display: block;
	width: 100%;
	box-shadow: 0px 5px 10px rgba(0, 0, 0, .1);
	/*	padding: 10px 5px 10px 0; */
}

.header_main .logo a {
	position: absolute;
	top: 0;
	left: 0;
	transition:all 300ms 0ms ease;
}
.header_main .logo a:hover {
	opacity: .5;
}

.header_main h1 {
	padding: 6px 40px 6px 90px;
	font-size: .75rem;
	font-weight: normal;
	text-align: center;
	line-height: 1.4;
}


/* gnavi
------------------------------------------------------------- */

.gnavi {
	display: -webkit-flex;
	display: flex;
	margin-right: -1.5%;
	font-size: .875rem;
	transition:all 300ms 0ms ease;
}
.gnavi li {
	flex-grow: 1;
	vertical-align: middle;
}
.gnavi a {
	display: block;
	padding: 8px 0;
	color: #FFF;
	text-align: center;
	text-decoration: none;
	line-height: 1.2;
}
.gnavi a:hover {
	color: #EEE;
}
.gnavi a b {
	font-weight: bold;
}


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

/* menu open btn */

.menu_btn_area {
	position: fixed;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
}
.menu_btn_area .layer {
	position: absolute;
}
input[type="checkbox"]#menu_btn {
	position: absolute;
	visibility: hidden;
	bottom: 0;
}

/* ハンバーガーメニュー */
.menu_open_btn {
	position: absolute;
	top: 7px;
	right: 5px;
	display: block;
	width: 40px;
	height: 40px;
	z-index: 2147483647;
}
.menu_open_btn span {
	position: relative;
	display: block;
	width: 30px;
	height: 2px;
	margin: 19px auto 0;
	background: #333;
	transition: 0.4s;
}
.menu_open_btn span::before ,
.menu_open_btn span::after {
	position: absolute;
	content: '';
	left: 0;
	width: 30px;
	height: 2px;
	background: #333;
	transition: 0.4s;
}
.menu_open_btn span::before {
	top: -10px;
}
.menu_open_btn span::after {
	bottom: -10px;
}

/* ハンバーガーメニューを変形 */
input[type="checkbox"]#menu_btn:checked + .menu_open_btn span {
	background: transparent;
}
input[type="checkbox"]#menu_btn:checked + .menu_open_btn span::before {
	top: 25%;
	background: #FFF;
	transform: rotate(45deg);
}
input[type="checkbox"]#menu_btn:checked + .menu_open_btn span::after {
	bottom: 25%;
	background: #FFF;
	transform: rotate(-45deg);
}

/* レイヤー */
input[type="checkbox"]#menu_btn:checked ~ .layer {
	position: fixed;
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .4);
	top: 0;
	right: 0;
	visibility: visible;
	z-index: 2147483645;
}

/* メニューを格納 */
.menu_wrapper {
	position:fixed;
	top:0;
	right: -110%;
	width: 100%;
	height: 100%;
	transition: 0.1s ease-in-out;
}

/* メニューオープン時 */
input[type="checkbox"]#menu_btn:checked ~ .menu_wrapper {
	overflow:scroll;
	-webkit-overflow-scrolling:touch;
	z-index: 2147483646;
	right: 0;
}

.menu_wrapper {
	padding: 10px 10px 10px;
	background: #282828;
	color: #FFF;
}

.menu_wrapper a {
	color: #FFF;
}

.menu_wrapper .logo {
	position: relative;
	width: 200px;
	max-width: 40%;
	margin: 10px auto 20px;
}

.menu_wrapper .menu_sp {
	margin-bottom: 30px;
	text-align: center;
}
.menu_wrapper .menu_sp a {
	display: block;
	padding: 10px;
	text-decoration: none;
}
.menu_wrapper .menu_sp a b {
	font-weight: normal;
}

.menu_wrapper .copy_area {
	text-align: center;
}

/*------------------------------------------------------------------------------

 side bar

------------------------------------------------------------------------------*/

.side h4 {
	margin-bottom: 20px;
	font-weight: bold;
}

.side .wiget_box div {
	margin-bottom: 20px;
}

.side .wiget_box ul {
	margin-left: 10px;
	font-size: .875rem;
}

.side .tagcloud {
	margin-left: 10px;
}

.side .tagcloud a {
	display: inline-block;
	margin: 0 2px 0 0;
	font-size: 14px !important;
	font-weight: bold;
	vertical-align: middle;
}
.side .tagcloud a::before {
	content: '#';
}


/* new post
-----------------------------------------------------------*/

.newpost_area {
	margin: 0 auto 20px;
}
.list_newpost li {
	clear: both;
	border-top: 1px dotted #CCC;
}
.list_newpost li:first-child {
	border-top: none;
}
.list_newpost a {
	display: block;
	padding: 10px 0 10px;
	font-size: .875rem;
}
.list_newpost img {
	float: left;
	width: 100px;
	height: auto;
	margin: 0 10px 10px 0;
}
.list_newpost .data {
	font-size: .75rem;
}



/* calender
-----------------------------------------------------------*/

.side .calendar_wrap {
	position: relative;
	margin: 0 15px;
}

.wp-calendar-table {
	width: 100%;
}

.wp-calendar-table th {
	padding: 4px 0;
	border-bottom: 2px solid #666;
	text-align: center;
}

.wp-calendar-table td {
	padding: 4px 0;
	border-bottom: 1px solid #999;
	text-align: center;
}

.calendar_wrap .wp-calendar-nav {
	position: absolute;
	width: 100%;
	top: 0;
}

.calendar_wrap .wp-calendar-nav .wp-calendar-nav-next {
	float: right;
}



/* 検索フォーム
-----------------------------------------------------------*/

.side aside .search_area {
	position: relative;
	width: 100%;
	margin-bottom: 20px;
	padding-bottom: 0px;
}

.search_input {
	height: 34px;
	padding: 5px 65px 10px 5px;
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #CCC;
	border-radius: 4px;
	font-size: .875rem;
	z-index: 10;
}

.searchsubmit {
	overflow: hidden;
	position: absolute;
	right: 2px;
	top: 2px;
	width: 40px;
	height: 30px;
	border: none;
	background: url('data:image/svg+xml,%3Csvg%20enable-background%3D%22new%200%200%20512%20512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22%234b4b4b%22%3E%3Cpath%20d%3D%22m361.7%20301.5c19.4-30.4%2030.6-66.5%2030.6-105.2%200-108.3-88-196.3-196.1-196.3-38.7%200-74.8%2011.2-105.2%2030.7-24.3%2015.4-44.9%2036.1-60.3%2060.3-19.4%2030.4-30.7%2066.6-30.7%20105.3%200%20108.2%2088%20196.3%20196.2%20196.3%2038.7%200%2074.8-11.3%20105.2-30.7%2024.2-15.5%2044.8-36.1%2060.3-60.4zm-101.9%2018.7c-19.1%209.8-40.7%2015.4-63.6%2015.4-76.8%200-139.3-62.5-139.3-139.4%200-22.9%205.6-44.6%2015.4-63.6%2013.3-25.9%2034.5-47%2060.3-60.3%2019.1-9.8%2040.7-15.4%2063.6-15.4%2076.8%200%20139.3%2062.5%20139.3%20139.4%200%2022.9-5.6%2044.5-15.4%2063.6-13.4%2025.8-34.5%2047-60.3%2060.3z%22%2F%3E%3Cpath%20d%3D%22m499.5%20439.2-113.2-113c-16.1%2023.6-36.8%2044.2-60.3%2060.3l113.2%20113c8.3%208.3%2019.2%2012.5%2030.1%2012.5s21.8-4.2%2030.2-12.5c16.7-16.7%2016.7-43.7%200-60.3z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') 50% 50% no-repeat;
	background-size: auto 80%;
	text-indent: 200%;
	white-space: nowrap;
	z-index: 20;
}


/* RSS購読するボタン
-----------------------------------------------------------*/

.rss_box a {
	display: block;
	width: 100%;
	margin-bottom: 10px;
	padding: 5px 10px;
	box-sizing: border-box;
	box-sizing: border-box;
	background: #333;
	color: #FFF;
	font-size: .875rem;
	text-decoration: none;
}

.rss_box a:hover {
	-moz-opacity: 0.8;
	opacity: 0.8;
}


/* -----------------------------------------------------------------------------

 .footer

----------------------------------------------------------------------------- */

.footer {
	margin-top: 120px;
	background: #282828;
	color: #FFF;
}
.footer a {
	color: #FFF;
}
.footer_inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 15px 80px;
}

/* logo */
.footer_inner .logo {
	position: relative;
	width: 200px;
	max-width: 40%;
	margin: 0 auto 30px;
}
.footer_inner .logo a {
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	width: 100%;
	box-shadow: 0px -5px 10px rgba(0, 0, 0, .1);
	transition:all 300ms 0ms ease;
}

/* fnavi */
.fnavi_area {
	text-align: center;
}
.fnavi li a {
	display: block;
	padding: 10px;
	text-decoration: none;
}
.copy_area {
	margin-top: 30px;
	font-size: .875rem;
}


/* page top
-----------------------------------------------------------*/

.page_top_fx {
	position: fixed;
	overflow: hidden;
	bottom: 70px;
	right: 10px;
	z-index: 99999;
}

.page_top_fx a {
	display: block;
	cursor: pointer;
	width: 60px;
	height: 60px;
	border-radius: 50vw;
	background: url('data:image/svg+xml,%3Csvg%20enable-background%3D%22new%200%200%2036%2020%22%20height%3D%2220%22%20viewBox%3D%220%200%2036%2020%22%20width%3D%2236%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m35.6%2018.1c0%20.5-.2.9-.5%201.3-.7.7-1.8.7-2.5%200l-14.8-15.2-14.8%2015.2c-.7.7-1.8.7-2.5%200s-.7-1.8%200-2.5l16.1-16.4c.7-.7%201.8-.7%202.5%200l16%2016.4c.3.3.5.8.5%201.2z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') rgba(0,0,0,0.3)  50% 45% no-repeat;
	background-size: 40% auto;
	text-indent: 100%;
	white-space: nowrap;
}


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

 メインコンテンツ

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

/* パンくず
-----------------------------------------------------------*/

.breadcrumb {
	clear: both;
	max-width: 1200px;
	margin: 40px auto 60px;
	padding: 0 15px;
	box-sizing: border-box;
	color: #666;
	font-size: .875rem;
	text-align: right;
}
.breadcrumb li {
	display: inline-block;
	padding: 0 8px 0 0;
}
.breadcrumb a {
	color: #645b51;
}
.breadcrumb a:hover {
	text-decoration: none;
}


/* ページタイトル
-----------------------------------------------------------*/

.contents_title {
	padding: 20px 0 20px;
}

.contents_title h1 {
	margin: 0 auto;
	width: 1000px;
	font-size: 150%;
	font-weight: normal;
	text-align: center;
}

.entry_title {
	margin-bottom: 20px;
	padding: 10px 8px;
	border-bottom: 1px solid #CCC;
	font-size: 140%;
	text-align: left;
	line-height: 1.8;
}

/* title */
.title_block {
	margin-bottom: 20px;
	text-align: center;
}
.main_contents > .title_block {
	margin-bottom: 0;
}
.title_block h1 {
	font-size: 1.25rem;
	line-height: 1.6;
}
.title_block p {
	margin-top: 20px;
	font-size: .875rem;
	text-align: left;
}

.title_block_min {
	margin-bottom: 20px;
	text-align: center;
}
.title_block_min h2 {
	font-size: 1.125rem;
}
.title_block_min .point {
	display: inline-block;
	margin-bottom: 25px;
	padding: 6px 2em;
	border-radius: 50vh;
	background: #a6937c;
	color: #FFF;
	font-size: .875rem;
}



/* ページネーション/ページャー
-----------------------------------------------------------*/

.pagination {
	clear: both;
	position: relative;
	font-size: .875rem;
	line-height: 1.2;
}

.pagination span,
.pagination a {
	width: auto;
	margin-right: 4px;
	padding: 6px 8px 5px 8px;
	border-radius: 4px;
}

.pagination a {
	display: inline-block;
	background: #FFF;
	color: #645b51;
	text-decoration: none;
}

.pagination a:hover {
	opacity: .5;
}

.pagination span {
	display: none;
}

.pagination .current {
	display: inline-block;
	padding: 6px 8px 5px 8px;
	background: #d6cfc3;
}



/* ボタンボックス
-----------------------------------------------------------*/

.btn_box {
	clear: both;
	margin: 0;
	padding: 20px 0 30px;
	text-align: center;
}
.btn_box a {
	display: inline-block;
	width: 400px;
	max-width: 100%;
	padding: 12px 4px;
	border-radius: 50vh;
	background: rgb(102,102,102);
	background: linear-gradient(135deg, rgba(102,102,102,1) 0%, rgba(131,131,131,1) 100%);
	color: #FFF;
	text-decoration: none;
	line-height: 1.2;
}
.btn_box a span {
	display: inline-block;
}
.btn_box a:hover {
	opacity: .5;
}

.btn_box.stk a {
	background: #15bfab;
}
.btn_box.line a {
	background: #47b444;
}
.btn_box.line a::before {
	content: '';
	display: inline-block;
	margin: -3px 10px 0 0;
	width: 24px;
	height: 24px;
	background: url(./image/common/icon_sns_linewh.svg) no-repeat;
	background-size: 100% auto;
	vertical-align: middle;
}
.btn_box.hp a {
	background: #ae2c5a;
	background: linear-gradient(135deg, rgba(174,44,90,1) 0%, rgba(217,119,145,1) 100%);
}
.btn_box.hp a::before {
	content: '';
	display: inline-block;
	margin: -3px 10px 0 0;
	width: 16px;
	height: 24px;
	background: url(./image/common/icon_hotpepper.svg) no-repeat;
	background-size: 100% auto;
	vertical-align: middle;
}
.btn_box.insta a {
	background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}
.btn_box.insta a::before {
	content: '';
	display: inline-block;
	margin: -3px 10px 0 0;
	width: 22px;
	height: 22px;
	background: url(./image/common/icon_sns_insta.svg) no-repeat;
	background-size: 100% auto;
	vertical-align: middle;
}

.btn_box.line a:hover ,
.btn_box.insta a:hover {
	opacity: .5;
}

/* coupon */
.btn_box.btn_coupon {
	padding: 0;
}
.btn_box.btn_coupon a {
	width: 100%;
	border-radius: 10px;
	background: rgb(232,100,106);
	background: linear-gradient(0deg, rgba(232,100,106,1) 0%, rgba(243,150,153,1) 100%);
}

.link_box label {
	cursor: pointer;
	color: #1e4b82;
	text-decoration: underline;
}
.link_box label:hover {
	color: #4088af;
	text-decoration: none;
}

/* sns
-----------------------------------------------------------*/

ul.sns_list {
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	margin: 0 auto 20px;
	padding-left: 0;
	line-height: 1;
}
ul.sns_list li {
	margin: 0 8px;
	list-style-type: none;
}

.sns a {
	display: block;
	text-align: center;
	text-decoration: none;
}
.sns a span {
	display: inline-block;
	width: 36px;
	height: 36px;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: auto 100%;
	text-indent: -9999px;
}
.sns a em {
	display: block;
	margin-top: 8px;
	font-size: .875rem;
	font-weight: normal;
}
.sns a:hover {
	opacity: 0.5;
	filter: alpha(opacity=50);
}
.sns li.fb a span {
	background-image: url(./image/common/icon_sns_fb.svg);
}
.sns li.tw a span {
	background-image: url(./image/common/icon_sns_tw.svg);
}
.sns li.insta a span {
	background-image: url(./image/common/icon_sns_insta.svg);
}
.sns li.insta.color a span {
	background-image: url(./image/common/icon_sns_instacl2.png);
}
.sns li.pin a span {
	background-image: url(./image/common/icon_sns_pin.svg);
}
.sns li.line a span {
	background-size: 100% auto;
	background-image: url(./image/common/icon_sns_line.svg);
}
.sns li.linesq a span {
	background-image: url(./image/common/icon_sns_linesq.svg);
}


/* animation parts
------------------------------------------------------------- */

/* fadein */
.fadein {
	opacity : 0;
	transform : translate(0, 50px);
	transition : all 800ms;
}
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}

.fadein.fast {
	opacity : 0;
	transform : translate(0, 50px);
	transition : all 250ms;
}
.fadein.fast.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}

.fadein.left {
	opacity : 0;
	transform : translate(-100px, 0);
	transition : all 250ms;
}
.fadein.left.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}


/* fix btn
------------------------------------------------------------- */

.fix_btn {
	position: fixed;
	z-index: 2147483;
	bottom: 0;
	left: 0;
	width: 100%;
}

.fix_btn .fix_catch {
	display: block;
	margin-bottom: 4px;
	text-align: center;
}
.fix_btn .fix_catch span {
	position: relative;
	display: inline-block;
	width: 560px;
	max-width: 90%;
	padding: 2px 8px;
	background: rgb(253,101,77);
	background: linear-gradient(135deg, rgba(253,101,77,1) 0%, rgba(241,142,38,1) 100%);
	color: #FFF;
	font-size: 3.2vw;
	font-weight: bold;
}
.fix_btn .fix_catch span::after {
	content: '';
	position: absolute;
	display: block;
	bottom: -12px;
	left: calc(52%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 14px 8px 0 8px;
	border-color: #f48033 transparent transparent transparent;
}

.fixbtn_list {
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	padding: 10px 5px;
	background: rgba(255,255,255,.7);
	text-align: center;
	line-height: 1.4;
}

.fixbtn_list li {
	padding: 0 1px;
}
.fixbtn_list li:first-child {
	border-right: 1px solid transparent;
}
.fix_btn .fixbtn_list .hp {
	width: 34%;
	width: 50%;
	max-width: 240px;
}
.fix_btn .fixbtn_list .line {
	width: 40%;
	width: 50%;
	max-width: 280px;
}

.fixbtn_list a ,
.fixbtn_list label {
	display: block;
	padding: 8px 8px 8px;
	border-radius: 8px;
	color: #FFF;
	font-size: min(3.6vw,1.5rem);
	font-weight: 800;
	text-decoration: none;
}

/* LINE */
.fixbtn_list li.line a {
	position: relative;
	background: #47b444;
}
/*.fixbtn_list li.line a::before {
	content: '';
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 2px;
	width: 21px;
	height: 20px;
	background: url(./image/common/icon_sns_linewh.svg) no-repeat;
	background-size: cover;
	vertical-align: middle;
}*/

/* STEKiNA */
.fixbtn_list li.stk a {
	background: #15bfab;
}

/* HP */
.fixbtn_list li.hp a {
	background: #ae2c5a;
}
/*.fixbtn_list li.hp a::before {
	content: '';
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 2px;
	width: 14px;
	height: 20px;
	background: url(./image/common/icon_hotpepper.svg) no-repeat;
	background-size: cover;
	vertical-align: middle;
}*/


.fixbtn_list .tel a ,
.fixbtn_list .tel label {
	background: #648eb4;
}
.fixbtn_list .tel a::before {
	content: '';
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 2px;
	width: 24px;
	height: 24px;
	background: url(./image/common/icon_tel03wh.svg) no-repeat;
	background-size: cover;
	vertical-align: middle;
}

/* modal
------------------------------------------------------------- */

.modal_wrap input {
	display: none;
}
.modal_wrap label {
	text-decoration: none;
}
.modal_layer {
	display: flex;
	justify-content: center;
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999999;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	opacity: 0;
	transition: opacity 0.5s, transform 0s 0.5s;
	transform: scale(0);
}
.modal_layer_close {
	position: absolute;
	cursor: pointer;
	width: 100%;
	height: 100%;
}
.modal_content {
	position: relative;
	align-self: center;
	width: 90%;
	max-width: 640px;
	max-height: 85%;
	transform: scale(0.3);
	transition: 0.25s;
}
.modal_close_button {
	position: fixed;
	cursor: pointer;
	top: -15px;
	right: -15px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #333;
	color: #FFF;
	font-size: 40px;
	line-height: 32px;
	text-align: center;
}

.modal_content_inner {
	padding: 25px 25px;
	background: #ece7dd;
	font-size: .875rem;
}
.modal_content h2 {
	margin-bottom: 20px;
	font-size: 1.125rem;
	text-align: center;
}
.modal_content h3 ,
.modal_content h4 {
	margin-bottom: 10px;
	font-size: 1rem;
	text-align: center;
}
.modal_content p {
	margin-bottom: 1.5em;
}
.modal_content .note {
	max-width: 320px;
	margin: 0 auto 30px;
	padding: 20px;
	background: #FFF;
}
.modal_content .note p {
	margin-bottom: 0;
}

.modal_wrap input:checked + .modal_layer {
	opacity: 1;
	transform: scale(1);
	transition: opacity 0.5s;
}
.modal_wrap input:checked + .modal_layer .modal_content {
	transform: scale(1);
}



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

 投稿 post

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

/*------------------------------------------------------------------------------

 アーカイブ archive / blog

------------------------------------------------------------------------------*/

/* アーカイブ一覧表示
-----------------------------------------------------------*/

.entry_list {
	margin-bottom: -20px;
}

.entry_list dt {
	position: relative;
	clear: both;
	float: left;
	width: 120px;
}

.entry_list dt img {
	width: 100%;
}

.entry_list dd ,
.entry_list li {
	min-height: 120px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	padding-left: 140px;
	border-bottom: 1px dotted #999;
}
.entry_list li {
	min-height: auto;
	padding-left: 20px;
}
.entry_list dd:last-child ,
.entry_list li:last-child {
	border-style: none;
}

/* cate */
.entry_list dt .cate_box {
	position: absolute;
	display: block;
	top: 0px;
	left: 0px;
}
.entry_list .cate_box a {
	display: inline-block;
	margin: 0 0 2px 0;
	padding: 4px 10px;
	background: #c4b89a;
	color: #FFF;
	font-size: .75rem;
	text-decoration: none;
	line-height: 1.2;
	vertical-align: middle;
}

.entry_list h3 {
	overflow: hidden;
	height: 1.4em;
	margin: 4px 0 8px;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.entry_list .entry_info {
	margin-bottom: 8px;
	color: #666;
	font-size: .875rem;
	line-height: 1.2;
}

/* tag */
.entry_list .tag_box a {
	display: inline-block;
	margin: 0 2px 0 0;
	font-size: .875rem;
	font-weight: bold;
	vertical-align: middle;
}
.entry_list .tag_box a::before {
	content: '#';
}



/* アーカイブ一覧表示 block
-----------------------------------------------------------*/

.entryblock_list {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}
.entryblock_list li {
	flex-grow: 0;
	width: 50%;
}
.entryblock_list li > div {
	position: relative;
	padding: 0 10px 30px;
}

.entryblock_list a {
	display: block;
	text-decoration: none;
}

.entryblock_list .fig {
	display: block;
}
.entryblock_list .fig img {
	width: 100%;
	height: auto;
}

.entryblock_list .cate_box {
	position: absolute;
	display: block;
	top: -2px;
	right: 8px;
}
.entryblock_list .cate_box a {
	display: inline-block;
	margin: 0 0 2px 0;
	padding: 4px 15px;
	background: #c4b89a;
	color: #FFF;
	font-size: .75rem;
	text-decoration: none;
	vertical-align: middle;
}

.entryblock_list em {
	display: block;
	position: relative;
	overflow: hidden;
	height: 2.8em;
	margin: 8px 0 8px;
	line-height: 1.4;
}
.entryblock_list em::before ,
.entryblock_list em::after {
	position: absolute;
	background: #FFF;
}
.entryblock_list em::before {
	content: '\FF65\FF65\FF65';
	bottom: 0;
	right: 0;
	padding-left: 3px;
}
.entryblock_list em::after {
	content: '';
	width: 100%;
	height: 100%;
}

.entryblock_list em.one_line {
	height: 1.4em;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.entryblock_list .entry_info {
	height: 1.2em;
	margin-bottom: 8px;
	font-size: .875rem;
	line-height: 1.2;
}
.entryblock_list .entry_txt {
	display: block;
	height: 5em;
	font-size: .875rem;
	line-height: 1.4;
}


/* staff list
-----------------------------------------------------------*/

.staff_list {
	padding: 40px 15px;
	background: #f0eeec;
}
.staff_list li {
	max-width: 600px;
	margin: 0 auto 40px;
	text-align: center;
}
.staff_list a {
	display: block;
	text-decoration: none;
}
.staff_list .thumb {
	position: relative;
	display: inline-block;
	width: 320px;
	max-width: 80%;
	margin-bottom: 10px;
}
.staff_list img {
	width: 100%;
	height: auto;
}
.staff_list .staff_posi {
	display: inline-block;
	margin-bottom: 8px;
	padding: 4px 35px;
	border-radius: 50vh;
	background: #FFF;
	font-size: 75%;
}
.staff_list .staff_job {
	display: inline-block;
	margin: 30px 0 15px;
	font-size: .875rem;
	font-style: normal;
}
.staff_list .staff_job span {
	display: inline-block;
	padding: 5px 1em;
	border-radius: 50vh;
	background: #c3b18b;
	color: #FFF;
}

.staff_list .staff_name {
	margin-bottom: 20px;
}
.staff_list .staff_name em {
	display: block;
	font-weight: bold;
}
.staff_list .staff_name em b {
	display: block;
	margin-bottom: 8px;
	font-size: 1.125rem;
}
.staff_list .staff_name em span {
	display: block;
	color: #999;
	font-size: .75rem;
}

.staff_list .sns_list {
	margin: 0 auto 20px;
}

/* text */
.staff_list .text {
	margin-bottom: 20px;
	text-align: left;
}
.staff_list .staff_dl {
	position: relative;
}
.staff_list .staff_dl dt {
	padding: 8px 0 0;
	font-weight: bold;
}
.staff_list .staff_dl dd {
	padding: 4px 0 8px;
	border-bottom: 1px solid #CCC;
}
.staff_list .staff_dl dd:last-child {
	border-bottom: none;
}


/* calender wrapper ------------------------------------ */

.cal_area {
	margin: 0 -10px;
}

.cal_info {
	margin: 0 0 20px;
}
.cal_info em {
	font-weight: bold;
}

.cal_info .holyday {
	display: inline-block;
	float: right;
	margin-left: 4px;
	padding: 4px 10px;
	background: #f8f6f5;
	font-size: .875rem;
}
.cal_info .sholyday {
	display: inline-block;
	float: right;
	padding: 4px 10px;
	color: #666;
	background: #CCC;
	font-size: .875rem;
}

/* calener
-----------------------------------------------------------*/

.cal_wrapper {
	padding: 0 10px 10px;
	flex-grow: 1;
}

.cal_wrapper table.cal {
	width: 100%;
}

.cal_wrapper table.cal tr th p {
	padding: 0 0 4px;
	font-weight: normal;
}

.cal_wrapper table.cal tr th .cal_ui {
	display: none;
}

.cal_wrapper table.cal tr td {
	padding: 0;
	border: solid 1px #DDD;
	background: #FFF;
	text-align: center;
	vertical-align: top;
	line-height: 1.2;
}

.cal_wrapper table.cal tr.headline {
	background: none;
}

.cal_wrapper table.cal tr.headline td {
	padding: 8px 0;
}

.cal_wrapper table.cal tr td div {
	position: relative;
	padding: 2px 0 15px;
	text-align: center;
}

.cal_wrapper table.cal tr td div span {
	display: none;
	position: absolute;
	top: 20px;
	left: 50%;
	padding: 8px;
	width: 100px;
	border: solid 1px #EEE;
	background: #FFF;
	box-shadow: 1px 1px 2px #999;
	z-index: 10;
	color: #333;
	font-size: 87.5%;
	text-align: center;
}

/* 日にちクラス指定 */
.cal_wrapper table.cal tr.headline td:last-child ,
.cal_wrapper table.cal tr td .Sat ,
.cal_wrapper table.cal tr td .Sat.workday ,
.cal_wrapper table.cal tr td .Sat.sworkday {
	color: #00479d;
}
.cal_wrapper table.cal tr.headline td:first-child ,
.cal_wrapper table.cal tr td .Sun ,
.cal_wrapper table.cal tr td .Sun.workday ,
.cal_wrapper table.cal tr td .Sun.sworkday {
	color: #a40000;
}
.cal_wrapper table.cal tr td .Today {
	font-weight: bold;
}
.cal_wrapper table.cal tr td .day {
	color: #a40000;
}
.cal_wrapper table.cal tr td .holyday {
	padding: 2px 0 2px;
	background: #f8f6f5;
}
.cal2 table.cal tr td .sholyday2 ,
.cal4 table.cal tr td .sholyday4 ,
.cal6 table.cal tr td .sholyday6 ,
.cal8 table.cal tr td .sholyday8 {
	padding: 2px 0 2px;
	background: #f8f6f5;
}
.cal_wrapper table.cal tr td div::after {
	content: '';
	display: block;
	font-size: .75rem;
}
.cal_wrapper table.cal tr td .holyday::after ,
.cal2 table.cal tr td .sholyday2::after ,
.cal4 table.cal tr td .sholyday4::after ,
.cal6 table.cal tr td .sholyday6::after ,
.cal8 table.cal tr td .sholyday8::after {
	content: '\4f11';
	color: #999;
}

.cal_wrapper table.cal tr td .workday {
	background: none !important;
}
.cal_wrapper table.cal tr td .holyday.workday::after ,
.cal_wrapper table.cal tr td .sholyday.workday::after {
	content: none;
}


/*------------------------------------------------------------------------------

 記事 single / page

------------------------------------------------------------------------------*/

.entry_content {
	line-height: 1.8;
}

.page_content {
	line-height: 1.8;
}


/* title 下
-----------------------------------------------------------*/

.entry_content .entry_info {
	margin-bottom: 10px;
	line-height: 1.2;
	font-size: .875rem;
}
.entry_content .entry_info p {
	margin: 0;
}

.entry_content .cate_box {
	float: left;
}
.entry_content .cate_box a {
	display: inline-block;
	margin: 0 0 2px 0;
	padding: 4px 15px;
	background: #c4b89a;
	color: #FFF;
	text-decoration: none;
	vertical-align: middle;
}

.entry_content .data_box {
	padding: 0 8px;
	text-align: right;
}

.entry_content .data_box span {
	display: inline-block;
}

.entry_content .tag_box a {
	display: inline-block;
	margin: 0 2px 0 0;
	font-size: .875rem;
	font-weight: bold;
	vertical-align: middle;
}
.entry_content .tag_box a::before {
	content: '#';
}


/* 汎用
-----------------------------------------------------------*/

.entry_content p {
	margin-bottom: 1.6em;
}

.entry_content hr {
	margin-bottom: 1.6em;
}

.entry_content em {
	display: inline-block;
	font-weight: bold;
}


/* 記事内見出し ----------------------------- */

.entry_content h2 {
	position: relative;
	margin-bottom: 20px;
	font-size: 110%;
}

.entry_content h3 {
	margin-bottom: 20px;
	font-size: 110%;
}

.entry_content h4 {
	margin-bottom: 15px;
}

.entry_content h5 {
	margin-bottom: 15px;
}

.entry_content h6 {
	margin-bottom: 10px;
}


/* テーブル ----------------------------- */

.entry_content table {
	min-width: 70%;
	margin: 10px 0 30px 10px;
	border-collapse: collapse;
	text-align: left;
}
.entry_content table th {
	padding: 10px;
	border: 1px solid #CCC;
	font-weight: bold;
}
.entry_content table td {
	padding: 10px;
	border: 1px solid #CCC;
}


/* リスト ----------------------------- */

.entry_content ul {
	margin-bottom: 30px;
	padding-left: 30px;
	text-align: left;
}
.entry_content ul li {
	list-style-type: disc;
}

.entry_content ol {
	margin-bottom: 30px;
	padding-left: 30px;
	text-align: left;
}
.entry_content ol li {
	list-style-type: decimal;
}


/* 引用  ------------------------------- */
/* 引用じゃないけど引用と同じデザインにしたい時 */

.entry_content blockquote ,
.quote_area {
	margin: 20px 0 20px 10px;
	padding: 30px 20px 20px 40px;
	background: url('data:image/svg+xml,%3Csvg%20enable-background%3D%22new%200%200%20512%20512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22%23ddd%22%3E%3Cpath%20d%3D%22m392.5%20445.4c66%200%20119.5-53.5%20119.5-119.5s-53.5-119.5-119.5-119.5c0%200%20.6-44.4%2036.6-108.3%204-12.8-3.1-26.4-15.9-30.4-9.1-2.9-18.7-.1-24.8%206.4-82.9%2090.7-115.4%20197.4-115.4%20251.8%200%2066%2053.5%20119.5%20119.5%20119.5z%22%2F%3E%3Cpath%20d%3D%22m119.5%20445.4c66%200%20119.5-53.5%20119.5-119.5s-53.5-119.5-119.5-119.5c0%200%20.6-44.4%2036.6-108.3%204-12.8-3.1-26.4-15.9-30.4-9.1-2.9-18.7-.1-24.8%206.4-82.9%2090.7-115.4%20197.4-115.4%20251.8%200%2066%2053.5%20119.5%20119.5%20119.5z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') #f2f2f2 no-repeat 10px 10px;
	background-size: 80px auto;
}

.entry_content blockquote p ,
.quote_area p {
	margin: 0;
}

/* 画像 ------------------------------- */

/* 投稿画像 */

img.size-full ,
img.size-large {
	margin-bottom: 10px;
}

.image_iblock {
	display: inline-block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	margin: 10px 10px 20px;
	font-size: .75rem;
	vertical-align: top;
}

.image_iblock .wp-caption {
	position: relative;
	max-width: 100%;
	height: auto;
}

.image_iblock .wp-caption-text {
	position: absolute;
	bottom: -10px;
	width: 100%;
	margin-bottom: 0;
	padding: 5px;
	box-sizing: border-box;
	background: rgba(0,0,0,0.5);
	color: #FFF;
	text-align: center;
}

.image_iblock .wp-caption-text a,
.image_iblock .wp-caption-text {
	font-size: 100%;
	color: #FFF;
}

image_iblock .wp-caption-text a,
image_iblock .wp-caption-text {
	color: #666;
	font-size: .75rem;
}

/* 画像位置 */

img.alignright {
	display: block;
	margin: 0 0 0 auto;
}
img.alignleft {
	display: block;
	margin: 0 auto 0 0;
}
img.aligncenter {
	display: block;
	margin: 0 auto;
}
img.float-left {
	float: left;
}
img.float-right {
	float: right;
}
.wp-caption {
	text-align: center;
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.ie8 img {
	width: auto;
}


/* SNS share
-----------------------------------------------------------*/

.share_area {
	max-width: 600px;
	margin: 20px auto;
}
 
.share_list {
	display: -webkit-flex;
	display: flex;
}
 
.share_list li {
	width: 25%;
	padding: 2px;
	box-sizing: border-box;
}

.share_list li span {
	display: none;
}

.share_list li a {
	display: block;
	padding: 2px;
	border-radius: 50vh;
	color: #fff;
	font-size: 14px;
	text-align: center;
	text-decoration: none;
}
.share_list li a:hover {
	opacity: .8;
}

.share_list li i {
	margin-right: .3em;
}

.share_list .tweet a {
	background: #55acee;
}
.share_list .line a {
	background: #1dcd00;
}
.share_list .facebook a {
	background: #315096;
}
.share_list .googleplus a {
	background: #dd4b39;
}
.share_list .hatena a {
	background: #008fde;
}

.fa-hatena:before {
	font-family: Verdana;
	font-weight: bold;
	content: 'B!';
}


/* 関連記事
-----------------------------------------------------------*/

.kanren_area {
	margin-bottom: 40px;
}

.kanren_area h3 {
	margin-bottom: 20px;
}


/* コメント
-----------------------------------------------------------*/

.comments_area {
	margin-bottom: 20px;
	padding: 15px;
	background: #FFF;
}

.commets-list {
	padding-left: 0px;
	list-style-type: none;
}

.comment-body p {
	padding-bottom: 10px;
}

.comment-author.vcard .avatar {
	float: left;
	margin-right: 10px;
}

/* 投稿者名 より */
.commets-list .fn {
	font-size: .75rem;
	font-style: normal;
}
 .commets-list .says {
	font-size: .875rem;
}

.commentmetadata {
	padding-bottom: 20px;
	font-size: .875rem;
}

/* 返信 */
.commets-list .reply {
	font-size: .875rem;
	text-align: right;
}
.commets-list .reply a {
	display: inline-block;
	padding: 4px 20px;
	background: #777;
	border-radius: 4px;
	color: #FFF;
	line-height: 1.4;
	text-decoration: none;
}

.comment-respond {
	margin-bottom: 10px;
}

/* コメント欄の下にある使用できるタグ */
.form-allowed-tags {
	display: none;
}

.comments_area h3 {
	margin-bottom: 10px;
	font-size: 1.125rem;
}

.comments_area textarea {
	width: 100%;
	border: 1px #CCC solid;
	box-sizing: border-box;
}
.comments_area input {
	border-radius: 2px;
	border: 1px #CCC solid;
	box-sizing: border-box;
}
.comments_area input[type="text"] {
	width: 100%;
}
.comments_area input[type="checkbox"] {
	margin-right: 8px;
}

.logged-in-as {
	font-size: .875rem;
}

.comment-form-cookies-consent {
	font-size: .875rem;
}

.comment-form p {
	margin-bottom: 10px;
}

/* コメントボタン */

.form-submit {
	margin: 20px 0;
}
.comments_area input[type="submit"] {
	max-width: 80%;
	padding: 10px 30px;
	border-radius: 4px;
	background-color: #777;
	-webkit-appearance: none;
	appearance: none;
	color: #FFF;
}

.comment-notes {
	font-size: .875rem;
}


/* PREV NEXT
-----------------------------------------------------------*/

.p-navi {
	margin-bottom: 40px;
	padding: 20px 0;
	border-top: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	font-size: .875rem;
}

.p-navi .prev {
	float: right;
	width: 50%;
	text-align: right;
}
.p-navi .prev div {
	padding: 0 15px 0 10px;
}
.p-navi .prev img {
	float: right;
	width: 100px;
	margin-left: 15px;
}

.p-navi .next {
	float: left;
	width: 50%;
}
.p-navi .next div {
	padding: 0 10px 0 15px;
	border-right: 1px solid #CCC;
}
.p-navi .next img {
	float: left;
	width: 100px;
	margin-right: 15px;
}

.p-navi a {
	display: block;
	text-decoration: none;
}

.p-navi a span {
	display: block;
}

.p-navi a em {
	display: inline-block;
	margin-bottom: 8px;
	padding: 2px 10px;
	background: #999;
	color: #FFF;
}

.p-navi a b {
	display: block;
	font-weight: normal;
}

.p-navi a:hover em {
	opacity: 0.7;
	filter: alpha(opacity=70);
}




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

 ページ

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


/* text_block */
.text_block {
	margin-bottom: 40px;
}
.contents_inner .text_block:last-child {
	margin-bottom: 0;
}
.text_block p {
	margin-bottom: 1.6em;
}
.text_block p:last-child {
	margin-bottom: 0;
}
.text_block b {
	color: #d15b5b;
	font-weight: bold;
}

/* catch_block */
.catch_block {
	position: relative;
	margin-bottom: 40px;
	padding: 15px;
	font-size: 1.125rem;
	text-align: center;
}
.catch_block::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 40px;
	height: 40px;
	border-top: 1px solid #362e2b;
	border-left: 1px solid #362e2b;
}
.catch_block::after {
	position: absolute;
	content: '';
	right: 0;
	bottom: 0;
	width: 40px;
	height: 40px;
	border-right: 1px solid #362e2b;
	border-bottom: 1px solid #362e2b;
}
.catch_block p {
	margin: 6px 0 4px;
	border-bottom: dashed 2px #d1bfa5;
}

.catch_block.slim ,
.text_block.slim {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}



/* vbox */
.vbox-container {
	overflow-y: hidden!important;
}
.vbox-container img {
	max-height: 90vh!important;
}


/* -----------------------------------------------------------------------------

 index

----------------------------------------------------------------------------- */

/* cover
------------------------------------------------------------- */

.cover_container {
	position: relative;
}

/* swiper */
.cover_swiper01 ,
.cover_swiper02 {
	position: relative;
}
.cover_swiper01 .swiper-wrapper ,
.cover_swiper02 .swiper-wrapper {
	transition-timing-function: linear;
}

/* kari */
.cover_slide img {
	width: 100%;
}

.cover_text {
	position: relative;
	padding: 20px 10px;
	background: #BBB;
	z-index: 1;
}

.cover_text .logo {
	width: 30%;
	margin: 0 auto 20px;
}
.cover_text .logo.pc_hide {
	margin-top: -80px;
}
.cover_text h1 {
	color: #FFF;
	font-size: 5vw;
	font-weight: normal;
	text-align: center;
}


/* infinite slide
------------------------------------------------------------- */

.infinite_slide {
	position: relative;
}
.infinite_slide_inner {
	display: flex;
}
.infinite_slide_list {
	display: flex;
}
.infinite_slide_list.left {
	animation :infinity-scroll-left 40s infinite linear .4s both;
}
.infinite_slide_list.right {
	animation :infinity-scroll-right 40s infinite linear .4s both;
}
.infinite_slide_list li {
	width: 160px;
}
@media only screen and (min-width: 769px) {
	.infinite_slide_list li {
		width: 320px;
	}
}

@keyframes infinity-scroll-left {
	from { transform: translateX(0); }
	to { transform: translateX(-100%); }
}
@keyframes infinity-scroll-right {
	from { transform: translateX(-100%); }
	to { transform: translateX(0%); }
}


/* aver
-----------------------------------------------------------*/

.aver_block {
	max-width: 680px;
	margin: 0 auto 40px;
}

.aver_block .inner {
	max-width: 590px;
	margin: 0 auto 15px;
	padding: 5% 4%;
	background: #FFF;
}

.aver_block .inner h2 {
	margin-bottom: 20px;
}
.aver_block .inner h2 em {
	display: inline-block;
	padding: 8px 1.5em;
	border-radius: 50vh;
	background: #EEE;
}

.aver_tbl {
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
.aver_tbl th {
	padding: 5px;
	font-weight: normal;
	font-size: 1.125rem;
}
.aver_tbl td {
	padding: 5px;
	font-size: 1.5rem;
	font-weight: bold;
}


/* check
-----------------------------------------------------------*/

.check_block {
	max-width: 680px;
	margin: 0 auto 40px;
	padding: 5% 5% 5% 7%;
	background: #CCC;
}
.check_list li {
	position: relative;
	padding: 10px 0 10px 25px;
	border-bottom: 2px dotted #CCC;
	font-size: .875rem;
	font-weight: bold;
}
.check_list li:last-child {
	border: none;
}
.check_list > li::before {
	position: absolute;
	display: block;
	content: '';
	top: .9em;
	left: 0;
	width: 18px;
	height: 14px;
	background: url(./image/common/icon_check.svg) no-repeat;
	background-size: 100% auto;
}


/* kodawari
-----------------------------------------------------------*/

.kodawari_block {
	margin: 0 auto 20px;
	padding: 20px;
	background: #f0eeec;
}
.kodawari_block .fig {
	margin-bottom: 20px;
	text-align: center;
}
.kodawari_block .fig img {
	border-radius: 20px 0 20px 0;
}
.kodawari_block h2 {
	margin-bottom: 20px;
	color: #928678;
	font-size: 1.25rem;
	text-align: center;
}
.kodawari_block p {
	margin-bottom: 1.6em;
	font-size: .875rem;
}
.kodawari_block p:last-child {
	margin-bottom: 0;
}


/* bafaft
-----------------------------------------------------------*/

.befaft_list li {
	margin-bottom: 20px;
}
.befaft_list li > div {
	background: #f0eeec;
}
.befaft_list a {
	color: #645b51;
	text-decoration: none;
}
.befaft_list a:hover {
	color: #2b95c3;
	text-decoration: none;
}
.befaft_list .fig_block {
	display: flex;
	align-items: flex-end;
}
.befaft_list .fig {
	position: relative;
	display: block;
	width: 50%;
}
.befaft_list .fig::before {
	position: absolute;
	display: block;
	bottom: 0;
	padding: 4px 10px;
	color: #FFF;
	font-size: 2rem;
	font-family: 'shabby chic';
	line-height: 1;
}
.befaft_list .fig.before::before {
	content: 'Before';
	left: 0;
}
.befaft_list .fig.after::before {
	content: 'After';
	left: 0;
}
.befaft_list .text_block {
	margin-bottom: 0;
	padding: 20px;
}
.befaft_list .text_block h2 {
	margin-bottom: 15px;
	text-align: center;
}
.befaft_list .text_block p {
	font-size: .875rem;
}


/* review
-----------------------------------------------------------*/

.review_list {
	max-width: 800px;
	margin: 0 auto -20px;
}
.review_list li {
	overflow: hidden;
	margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
	border-radius: 10px 10px;
	background: #FFF;
}
.review_head {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 15px 15px;
}
.review_head .fig_block {
	width: 60px;
	margin-right: 15px;
}
.review_head .fig_block img {
	border-radius: 50%;
}
.review_head .name_block {
	position: relative;
	flex: 1;
	font-size: .875rem;
}
.review_head .type {
	margin-bottom: 0;
	font-size: .75rem;
}

.review_main {
	padding: 15px;
	font-size: .875rem;
}
.review_main .star_block {
	margin-bottom: 10px;
	font-size: 1rem;
}
.review_main .star_block .star {
	color: #cf5075;
}
.review_main .data {
	margin-top: 10px;
	font-size: .8125rem;
	text-align: right;
}



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

.menu_area {
	max-width: 800px;
	margin: 0 auto 40px;
	font-size: .875rem;
}

.menu_block {
	margin-bottom: 40px;
	font-size: .875rem;
}

.menu_block h2 {
	padding: 10px 1em;
	border-radius: 10px;
	background: #EEE;
}

.menu_block .menu_desc {
	padding: 15px 15px;
	font-size: 90%;
}

.menu_list {
	padding-bottom: 15px;
}

.menu_list dt {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #CCC;
	margin-top: 15px;
	padding: 15px 5px 0;
}

.menu_list dt:first-child {
	margin-top: 0;
	border-top: none;
}

.menu_list dt em {
	display: block;
	width: 100%;
	font-weight: bold;
}
.menu_list dt .time {
	display: block;
	width: 33%;
}
.menu_list dt .price {
	display: block;
	width: 33%;
	font-weight: bold;
	text-align: right;
}

.menu_list dd {
	padding: 5px 5px 0;
	font-size: 90%;
}

.menu_list dt.one_line {
	display: block;
}

.menu_list dt.one_line em ,
.menu_list dt.one_line .time ,
.menu_list dt.one_line .price {
	width: auto;
}

/* faq
-----------------------------------------------------------*/

.faq_area {
	max-width: 800px;
	margin: 0 auto 40px;
}

.faq_block {
	position: relative;
	margin-bottom: 5px;
	padding: 10px 0 5px;
}
.faq_block label {
	display: block;
	border-radius: 10px;
	padding: 10px 2.5em 10px 2.5em;
	background: #f6f2ed;
	z-index: 999999;
}
.faq_block label span {
	display: block;
}

.faq_block label::before ,
.faq_block .txt::before {
	position: absolute;
	left: .5em;
	font-size: 125%;
}
.faq_block label::before {
	content: 'Q';
	top: .75em;
	color: #00479d;
}
.faq_block .txt::before {
	content: 'A';
	top: .25em;
	color: #a40000;
	transition: 0.4s;
}

/* アコーディオン */
.faq_block .txt {
	position: relative;
	height: auto;
	margin: 0;
	padding-top: 10px;
	padding-left: 2.5em;
	padding-right: 2.5em;
	transition: 0.4s;
	opacity: 1;
}

/* アコーディオン */
.faq_block .vibtn {
	position: absolute;
	visibility: hidden;
}


/* salon
-----------------------------------------------------------*/

.salon_area {
	padding: 40px 20px;
	background: #f0eeec;
}

.salon_image {
	margin-bottom: 20px;
	text-align: center;
}
.salon_image .fig {
	display: block;
	margin-bottom: 30px;
}
.salon_image .fig img {
	display: inline-block;
	width: 460px;
	max-width: 100%;
}
.salon_image .logo {
	display: inline-block;
	width: 200px;
	max-width: 30%;
	margin-top: -100px;
	transition:all 300ms 0ms ease;
}

.salon_text {
	margin-bottom: 20px;
	text-align: center;
}
.salon_text .inner {
	display: inline-block;
}
.salon_text h2 {
	margin-bottom: 20px;
	font-size: 1.125rem;
}
.salon_text .inner p {
	margin-bottom: 1.2em;
	text-align: left;
}
.salon_dl {
	text-align: left;
}
.salon_dl dd {
	margin-bottom: 1.2em;
}

.reserve_block h2 {
	margin: 0 -15px 20px;
}
.reserve_block h3 {
	margin-bottom: 1em;
}
.reserve_block p {
	margin-bottom: 1em;
}

.reserve_btn_list li {
	margin-bottom: 20px;
}
.reserve_btn_list .btn_box {
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 10px;
}



/* access
-----------------------------------------------------------*/

.access_area .text_block {
	margin-bottom: 15px;
}
.access_area .text_block h2 {
	margin-bottom: 15px;
}
.access_area .text_block p {
	margin-bottom: 15px;
}
.access_area .map_block iframe{
	width: 100%;
	height: 400px;
}

.inline_bg {
	display: inline-block;
	padding: 4px 8px;
	background: #e7ddce;
}


/* flow
------------------------------------------------------------- */

.flow_list li {
	margin-bottom: 40px;
	padding: 20px;
	background: #f0eeec;
}
.flow_list .fig {
	margin-bottom: 20px;
	text-align: center;
}
.flow_list .fig img {
	border-radius: 20px 0 20px 0;
}
.flow_list h2 {
	margin-bottom: 10px;
	color: #928678;
	font-size: 1.25rem;
	text-align: center;
}
.flow_list .text p {
	margin-bottom: 1.6em;
	font-size: .875rem;
}


/*------------------------------------------------------------------------------

  coupon

------------------------------------------------------------------------------*/

.contents.contents_coupon .contents_inner {
	max-width: 800px;
}

/* link */
.coupon_link {
	overflow: hidden;
	display: flex;
	margin: 20px 0;
	border: 3px solid #8a5e71;
	border-radius: 12px;
	text-align: center;
	text-decoration: none;
}
.coupon_link li {
	flex: 1;
}
.coupon_link li a ,
.coupon_link li span {
	display: block;
	padding: 15px 10px;
	border-right: 3px solid #8a5e71;
	color: #8a5e71;
	font-weight: bold;
	text-decoration: none;
}
.coupon_link li span {
	background-color: #a68392;
	color: #FFF;
}
.coupon_link li a:hover {
	background: #8a5e71;
	color: #FFF;
}
.coupon_link li:last-child a {
	border-right: none;
}


/* contents */

.content_box.content_coupon {
	margin: 0 -5px 20px;
	padding: 15px;
	border: 1px solid #CCC;
}

.coupon_head {
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.content_coupon .icon_wrap span {
	display: inline-block;
	margin: 0 4px 4px 0;
	padding: 1px 8px;
	background: #f29292;
	color: #FFF;
	font-size: .875rem;
}

.content_coupon .price_coupon {
	color: #e8646a;
	font-size: 1.125rem;
	font-weight: bold;
	line-height: 1.4;
}

.content_coupon h3 {
	margin-bottom: 15px;
}

.coupon_main {
	display: -webkit-flex;
	display: flex;
}
.coupon_main .fig {
	width: 240px;
	width: 35%;
	margin-right: 15px;
}
.coupon_main .txt {
	position: relative;
	flex: 1;
	padding-bottom: 3em;
	font-size: .875rem;
}
.coupon_main .txt .btn_coupon {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}

.coupon_main .fig img {
	border: 1px solid #CCC;
	border-radius: 10px;
}



/* -----------------------------------------------------------------------------

 aboutus

----------------------------------------------------------------------------- */

/* company
------------------------------------------------------------- */

.tbl {
	width: 100%;
	margin: 0 auto 20px;
	border-collapse: collapse;
	border-top: 1px solid #FFF;
}
.tbl th {
	padding: 25px 40px;
	border-bottom: 1px solid #FFF;
	text-align: center;
	white-space: nowrap;
}
.tbl td {
	padding: 25px 40px;
	border-bottom: 1px solid #FFF;
}


/* -----------------------------------------------------------------------------

 recruit

----------------------------------------------------------------------------- */

.recruit_area {
	padding: 30px 20px;
	background: #f2ece4;
}

.recruit_block {
	margin-bottom: 40px;
}
.recruit_area .recruit_block:last-child {
	margin-bottom: 0;
}
.recruit_block p {
	margin-bottom: 2em;
	line-height: 2;
}

.recruit_box {
	margin-bottom: 30px;
	padding: 20px;
	background: #FFF;
}
.recruit_block .recruit_box:last-child {
	margin-bottom: 0;
}
.recruit_box h3 {
	margin-bottom: 15px;
	font-size: 1.125rem;
	text-align: center;
}
.recruit_box p:last-child {
	margin-bottom: 0;
}



/* -----------------------------------------------------------------------------

 contact

----------------------------------------------------------------------------- */

.form_info {
	max-width: 800px;
	margin: 0 auto 20px;
}

.form_info > p {
	margin-bottom: 20px;
}

.form_info .privacy_area {
	overflow-y: auto;
	height: 140px;
	padding: 20px;
	margin-bottom: 20px;
	font-size: .875rem;
	border: 1px solid #CCC;	
}

.form_info .privacy_area p {
	margin-bottom: 1.6em;	
}

.contact_txt {
	max-width: 800px;
	margin: 0 auto 40px;
}

.contact_txt .catch {
	margin-bottom: 20px;
	font-weight: bold;
}


/* step
------------------------------------------------------------- */

.form_step {
	overflow: hidden;
	max-width: 800px;
	margin: 0 auto 40px;
	background: #c4b89a;
	font-size: 100%;
}

.form_step li {
	float: left;
	width: 34%;
}
.form_step li:first-child {
	width: 32%;
}

.form_step em {
	position: relative;
	display: block;
	padding: 10px 0 10px 25px;
	background: #DDD;
	font-size: .875rem;
	text-align: center;
	text-decoration: none;
}

.form_step em span {
	display: block;
}

.form_step li:first-child em {
	padding-left: 20px;
}

.form_step em::after,
.form_step em::before {
	content: "";
	position: absolute;
	top: 50%;
	margin-top: -45px;
	border-top: 45px solid transparent;
	border-bottom: 45px solid transparent;
	border-left: 30px solid;
	right: -30px;
}

.form_step em::after {
	z-index: 2;
	border-left-color: #DDD;
}

.form_step em::before {
	border-left-color: #FFF;
	right: -32px;
	z-index: 1;
}

.form_step li:last-child::before ,
.form_step li:last-child::after {
	content: normal;
}

/* class:active型 */
.form_step .active {
	color: #FFF;
	font-weight: bold;
	background: none;
}
.form_step .active::after {
	z-index: 2;
	border-left-color: #c4b89a;
}

/* ラッパーで判断するが型 */
.mw_wp_form_input .form_step li:nth-child(1) em ,
.mw_wp_form_confirm .form_step li:nth-child(2) em ,
.mw_wp_form_complete .form_step li:nth-child(3) em {
	color: #FFF;
	font-weight: bold;
	background: none;
}
.mw_wp_form_input .form_step li:nth-child(1) em::after ,
.mw_wp_form_confirm .form_step li:nth-child(2) em::after ,
.mw_wp_form_complete .form_step li:nth-child(3) em::after {
	border-left-color: #c4b89a;
}


/* form
------------------------------------------------------------- */

.form_box {
	max-width: 840px;
	margin: 0 auto 20px;
	border-top: 1px solid #CCC;
}

.form_box dt {
	padding: 10px 10px 5px;
}

.form_box dt em {
	display: inline-block;
	margin-left: 10px;
	padding: 4px 8px;
	border-radius: 2px;
	background: #E7CACA;
	color: #C00;
	font-size: .8125rem;
	font-weight: normal;
	line-height: 1.4;
	white-space: nowrap;
}

.form_box dd {
	padding: 0 10px 10px;
	border-bottom: 1px solid #CCC;
}

.form_box input[type="text"] ,
.form_box input[type="email"] ,
.form_box textarea {
	box-sizing: border-box;
	border: 1px solid #CCC;
	border-radius: 4px;
}

.form_box input[type="text"] ,
.form_box input[type="email"] {
	max-width: 100%;
}

.form_box textarea {
	width: 100%;
}

.form_btn_box {
	text-align: center;
}

::placeholder{
	color: #999;
}


.form_btn_box .btn_confm {
	position: relative;
	display: inline-block;
	width: 80%;
}
.mw_wp_form_confirm .form_btn_box .btn_confm {
	display: none;
}
.form_btn_box .btn_confm::before{
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-top: -5px;
	border: 0px;
	border-top: solid 2px #FFF;
	border-right: solid 2px #FFF;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index: 99999;
}

.form_btn_box input {
	cursor: pointer;
	position: relative;
	display: inline-block;
	width: 100%;
	padding: 16px 10px;
	box-sizing: border-box;
	border: none;
	background: #c4b89a;
	color: #FFF;
	font-size: 1.125rem;
}

.form_btn_box button {
	cursor: pointer;
	position: relative;
	display: inline-block;
	width: 45%;
	margin: auto 4px;
	padding: 16px 10px;
	border: none;
	background: #c4b89a;
	color: #FFF;
	font-size: 1.125rem;
}

.form_btn_box button.back {
	background: #CCC;
}

.form_btn_box button.back::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 20px;
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-top: -5px;
	border: 0px;
	border-bottom: solid 2px #FFF;
	border-left: solid 2px #FFF;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.form_btn_box button.send::before{
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-top: -5px;
	border: 0px;
	border-top: solid 2px #FFF;
	border-right: solid 2px #FFF;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}



/* privacy
------------------------------------------------------------- */

.privacy_box {
	margin: 0 auto 40px;
}



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

 汎用CSS

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

/* テキスト関係 --------------------- */

.attention { /* 注意色(基本赤) */
	color: #CC0000;
}

.attentionB { /* 注意色(基本赤) */
	color: #CC0000;
	font-weight: bold;
}

.bold {
	font-weight: bold;
}

.text_SS {
	font-size: 75%;
}

.text_S {
	font-size: 86%;
}

.text_L {
	font-size: 120%;
}

.text_LL {
	font-size: 150%;
}

.text_LLL {
	font-size: 180%;
}


/* テキスト位置設定 ---------------- */

.entry_content p.center ,
.center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}


/* マージン関係 ------------------- */

.m0 {
	margin: 0;
}

.m10 {
	margin: 10px;
}

.mT10 {
	margin-top: 10px;
}

.mT20 {
	margin-top: 20px;
}

.mB5 {
	margin-bottom: 5px;
}

.mB10 {
	margin-bottom: 10px;
}

.mB20 {
	margin-bottom: 20px;
}

.mR5 {
	margin-right: 5px;
}

.mR10 {
	margin-right: 10px;
}

.mR20 {
	margin-right: 20px;
}

.mL5 {
	margin-left: 5px;
}

.mL10 {
	margin-left: 10px;
}

.mL20 {
	margin-left: 20px;
}

.mRL10 {
	margin: auto 10px;
}

/*　パディング関係 ------------------ */
.p0 {
	padding: 0;
}

.p10 {
	padding: 10px;
}

.pT5 {
	padding-top: 5px;
}

.pT10 {
	padding-top: 10px;
}

.pB10 {
	padding-bottom: 10px;
}

.pR10 {
	padding-right: 10px;
}

.pL10 {
	padding-left: 10px;
}

.pB20 {
	padding-bottom: 20px;
}

.pRL10 {
	padding: auto 10px;
}

/* フロート関係 ------------------- */

.floatLeft {
	float: left;
}

.floatRight {
	float: right;
}

.clear,
.clearBoth {
	clear: both;
}

.clearfix:after { /* modern */
	content : '';
	display : block;
	clear : both;
	height: 0;
}


/* 画像関係
-----------------------------------------------------------*/

.figOne {
	margin-bottom: 40px;
}

.figLeft,
.figRight {
	display: block;
	margin: 0 auto 15px;
	text-align: center;
}

.fig_list {
	margin: 0 -10px 20px;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.fig_list li {
	flex-grow: 0;
	width: 33.33333%;
}

.fig_list li div {
	padding: 0 10px 20px;
}



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

 デバイス別

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

/*media Queries スマホのみ
-----------------------------------------------------------*/

@media only screen and (max-width: 768px) {
	.sp_hide ,
	.gnavi_block {
		display: none;
	}
	body.single-post .main_contents {
		margin-left: -15px;
		margin-right: -15px;
		margin-bottom: 40px;
	}
	.home .header_inner ,
	.home .header_main .logo img {
		display: none;
	}

	/* main ////////////////////////// sp */
	.tbl tr , .tbl th , .tbl td {
		display: block;
		width: 100%;
	}
	.tbl th {
		padding: 10px 10px 0;
		border-bottom: none;
		text-align: left;
	}
	.tbl td {
		padding: 5px 10px 10px;
	}

	/* index ------------------------- sp */
	.salon_area , .staff_area {
		margin-left:  -15px;
		margin-right: -15px;
	}
}


/*media Queries タブレット 〜 PCサイズ
-----------------------------------------------------------*/

@media only screen and (min-width: 769px) {
	.pc_hide ,
	.fix_btn {
		display: none;
	}
	.contents_inner {
		padding: 60px 20px;
	}
	.header_wrapper {
		height: 120px;
	}
	.home .header_wrapper {
		height: 110px;
	}
	.header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		background: rgb(150,150,150);
	}
	.header_main {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
	.header_main .logo {
		width: 200px;
		max-width: 20%;
	}
	.header_main h1 {
		margin-right: -.15em;
		padding: 10px 0 10px;
		font-size: .875rem;
		text-align: right;
		line-height: 1.2;
	}
	.header_main .gnavi_block {
		width: 880px;
		max-width: 80%;
	}
	.header_inner {
		padding: 20px 15px;
	}
	.header_slim {
		box-shadow: 0 0 4px rgba(0,0,0,.2);
	}
	.header_slim .header_inner {
		padding: 10px 20px;
	}
	.header_slim .header_inner .logo {
		width: 100px;
		max-width: 15%;
	}
	.header_slim .header_main h1 {
		display: none;
	}
	.menu_btn_area {
		display: none;
	}
	.footer {
		margin-top: 160px;
	}
	.footer_inner {
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		padding: 40px 20px 60px;
	}
	.footer_inner .logo {
		margin-bottom: 0;
	}
	.fnavi_area {
		flex: 1;
		text-align: right;
	}
	.fnavi {
		margin-bottom: 10px;
		margin-right: -10px;
		font-size: .875rem;
	}
	.fnavi_area .fnavi:first-child {
		border: none;
	}
	.fnavi li {
		display: inline-block;
		padding: 0 3px 0 4px;
		border: none;
		line-height: 1.1;
		vertical-align: middle;
	}
	.fnavi li:last-child {
		padding-right: 6px;
	}
	.fnavi li a {
		padding: 0 2px;
	}
	.page_top_fx {
		bottom: 20px;
		right: 20px;
	}

	/* contents */
	.contents_wrapper {
		display: -webkit-flex;
		display: flex;
		margin: 40px auto;
	}
	body.single-post .main_contents {
		padding: 40px;
	}
	.side {
		width: 280px;
		margin-left: 40px;
	}

	/* main ////////////////////////// pc */
	.btn_box a {
		font-size: 1.25rem;
	}
	.contents_title  {
		padding: 40px 0 40px;
	}
	.title_block {
		margin-bottom: 40px;
	}
	.title_block h1 {
		font-size: 2rem;
	}
	.title_block p {
		font-size: 1rem;
	}
	.title_block_min {
		margin-bottom: 40px;
	}
	.title_block_min h2 {
		font-size: 1.375rem;
	}
	.entryblock_list {
		margin: 0 -15px;
	}
	.entryblock_list li {
		width: 25%;
	}
	.entryblock_list li > div {
		padding: 0 15px 30px;
	}
	.entryblock_list .cate_box {
		right: 13px;
	}
	.staff_list .staff_dl dt {
		clear: both;
		float: left;
		width: 8em;
		padding: 8px 0;
	}
	.staff_list .staff_dl dd {
		padding: 8px 0;
		padding-left: 8.5em;
	}
	.cal_inner {
		display: flex;
		justify-content: space-between;
	}
	.cal_wrapper {
		width: 50%;
	}
	
	/* single ------------------------- pc */
	.share_area {
		margin: 40px auto;
	}
	.share_list li span {
		display: inline-block;
	}	
	.image_iblock {
		width: 44%;
		width: auto;
	}
	.comments_area {
		padding: 20px;
	}
	
	/* page ////////////////////////// pc */
	.text_block {
		font-size: 1.125rem;
	}
	.catch_block {
		font-size: 1.5rem;
	}

	/* index ------------------------- pc */
	/* cover */
	.cover_text h1 {
		font-size: 1.5rem;
	}

	/* check */
	.check_list li {
		padding: 10px 0 10px 40px;
		font-size: 1.125rem;
	}
	.check_list > li::before {
		top: .45em;
		width: 33px;
		height: 24px;
	}

	/* kodawari */
	.kodawari_area {
		display: flex;
		max-width: 890px;
		margin: 0 auto;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.kodawari_area .kodawari_block {
		width: calc(50% - 15px);
		margin: 0 0 30px;
		padding: 30px;
	}
	.kodawari_page_area .kodawari_block {
		padding: 40px 50px;
	}
	.kodawari_page_area .kodawari_block .heading {
		display: flex;
		align-items: center;
	}
	.kodawari_block .fig img {
		border-radius: 30px 0 30px 0;
	}
	.kodawari_block h2 {
		flex: 1;
		font-size: 1.5rem;
	}
	.kodawari_block h2.one_line {
		line-height: 3.2em;
	}

	/* step */
	.step_wrapp {
		margin-top: 40px;
	}

	/* befaft */
	.befaft_list {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin: 0 -15px;
	}
	.befaft_list li {
		width: calc(50% - 30px);
		margin: 0 15px 30px;
	}
	.befaft_list li > div {
		height: calc(100%);
	}

	/* review */

	/* menu */
	.menu_block {
		font-size: 1rem;
	}
	.menu_block h2 {
		margin-bottom: 10px;
		padding: 15px 1em;
		border-radius: 1.75em;
		font-size: 1.25rem;
	}
	.menu_list dt {
		flex-wrap: nowrap;
		padding: 15px 15px 0;
		font-size: 1.125rem;
	}
	.menu_list dt em {
		width: 70%;
	}
	.menu_list dt .time {
		width: 15%;
		text-align: center;
	}
	.menu_list dt .price {
		width: 15%;
	}
	.menu_list dd {
		padding: 5px 15px 0;
	}

	/* faq */
	.faq_block {
		margin-bottom: 30px;
	}
	.faq_block label {
		padding: 10px 4em 10px 4em;
		border-radius: 1.5em;
	}
	.faq_block .txt {
		padding-left: 4em;
		padding-right: 4em;
	}
	.faq_block .icon::before ,
	.faq_block .icon::after {
		right: 1.5;
	}
	.faq_block label::before ,
	.faq_block .txt::before {
		left: 1.5em;
	}

	/* salon */
	.salon_area {
		padding: 60px 30px;
	}
	.salon_image {
		margin-bottom: 40px;
	}
	.salon_text {
		margin-bottom: 40px;
	}
	.salon_text h2 {
		font-size: 1.375rem;
	}
	.salon_dl dt {
		clear: both;
		float: left;
		width: 4em;
	}
	.salon_dl dd {
		min-height: 1.6em;
		padding-left: 4em;
	}
	.reserve_block h3 {
		margin-bottom: 2em;
		font-size: 1.125rem;
	}
	.reserve_block p {
		margin-bottom: 2em;
	}
	.reserve_block h2 {
		font-size: 1.25rem;
	}
	.reserve_btn_list {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.reserve_btn_list li {
		max-width: 400px;
		margin: 0 10px;
	}

	/* message */
	.message_area .fig_block {
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
		width: 90%;
		margin: 0 auto;
	}
	.message_area .fig_block .text {
		width: 50%;
		margin-bottom: 0;
		font-size: 1.375rem;
	}
	.message_area .fig_block .fuki {
		margin: 0 5px 10px;
	}
	.message_area .fig_block .fig {
		width: 50%;
	}
	.message_area .text_block {
		padding: 40px 40px;
	}
	
	/* access */
	.access_area {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.access_area .text_block {
		width: calc(50% - 20px);
	}
	.access_area .map_block {
		width: calc(50% - 20px);
		margin-left: 40px;
	}

	/* flow */
	.flow_list {
		margin-bottom: -60px;
	}
	.flow_list li {
		padding: 40px 50px;
	}
	.flow_list li .heading {
		display: flex;
		align-items: center;
		margin-bottom: 20px;
	}
	.flow_list .fig {
		width: 400px;
		max-width: 50%;
		margin-bottom: 0;
		margin-right: 40px;
	}
	.flow_list .fig img {
		border-radius: 30px 0 30px 0;
	}
	.flow_list h2 {
		flex: 1;
		font-size: 1.5rem;
	}
	.flow_list h2.one_line {
		line-height: 3.2em;
	}

	/* coupon ----------------------- pc */
	.content_coupon h3 {
		margin-bottom: 20px;
		font-size: 1.125rem;
	}
	.content_coupon .price_coupon {
		font-size: 1.25rem;
	}

	/* recruit ----------------------- pc */
	.recruit_area {
		padding: 50px 75px;
	}
	.recruit_block {
		margin-bottom: 80px;
	}
	.recruit_block p {
		margin-bottom: 2.4em;
		line-height: 2.4;
	}
	.recruit_box {
		padding: 40px;
	}

	/* contact ----------------------- pc */
	.form_info {
		margin-bottom: 40px;
	}
	.form_step em {
		padding: 20px 15px 20px 45px;
		font-size: 1rem;
	}
	.form_step em span {
		display: inline-block;
	}
	.form_box dt {
		padding: 20px 40px 10px;
	}
	.form_box dd {
		padding: 0 40px 20px;
	}
	.form_btn_box .btn_confm {
		width: auto;
		min-width: 30%;
	}
	.form_btn_box button {
		width: 45%;
		width: auto;
		min-width: 30%;
	}
	
	/* common //////////////////////// pc */
	.figLeft {
		float: left;
		margin-right: 30px;
		margin-bottom: 10px;
	}
	.figRight {
		float: right;
		margin-left: 20px;
		margin-bottom: 10px;
	}
}
