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

Theme Name: Lic Thema
Author: [ bran-new-days.com ]
Description: 2022/9/21

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

/* font-family: 'Montserrat', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


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

 全体 style

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

:root {
	--color-text      : #333;
	--color-body      : #FFF;

	--color-primary   : #c4b89a;
	--color-secondary : #67b0b1;

	--color-line      : #22ba4f;
	--color-hpb       : #a62b57;
	--color-hpb2      : #e56b8b;
	--color-fb        : #315096;

	--color-white     : #FFF;
	--color-gray-100  : #EEE;
	--color-gray-200  : #CCC;
	--color-gray-400  : #999;
	--color-gray-600  : #666;
	--color-gray-700  : #414141;
	--color-gray-900  : #222;
	--color-black     : #000;
	
	--color-pink      : #cf8791;
	--color-dred      : #C00;
	
	--layer_dark      : rgba(0,0,0,.7);
}

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

html {
	font-size: 16px;
}

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

a {
	color: var(--color-text);
	text-decoration: underline;
}

a:hover {
	color: var(--color-secondary);
	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;
	vertical-align: bottom;
}

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%;
}

h1,h2,h3,h4,h5,h6,b,strong {
	font-weight: 600;
}


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

 layout

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

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

 header

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

.header__wrapper {
	height: 55px;
}
.header {
	position: fixed;
	z-index: 999999;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(255, 255, 255, .9);
}
.header__inner {
	padding: 12px 10px;
}

.header_main .logo {
	width: 85px;
	max-width: 25%;
	transition:all 300ms 0ms ease;
}
.header_main .logo a {
	display: block;
	text-decoration: none;
}
.header_main .logo img {
	width: 100%;
}


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

.gnavi {
	display: flex;
	transition:all 300ms 0ms ease;
}
.gnavi > li {
	flex-grow: 1;
}


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

/* menu open btn */

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

/* ハンバーガーメニュー */
.burger_open_btn {
	position: absolute;
	top: 7px;
	right: 5px;
	display: block;
	width: 40px;
	height: 40px;
	z-index: 2147483647;
}
.burger_open_btn span {
	position: relative;
	display: block;
	width: 30px;
	height: 2px;
	border-radius: 50vh;
	margin: 19px auto 0;
	background-color: var(--color-gray-900);
	transition: 0.4s;
}
.burger_open_btn span::before ,
.burger_open_btn span::after {
	position: absolute;
	content: '';
	left: 0;
	width: 100%;
	height: 2px;
	border-radius: 50vh;
	background-color: var(--color-gray-900);
	transition: 0.4s;
}
.burger_open_btn span::before {
	top: -10px;
}
.burger_open_btn span::after {
	bottom: -10px;
}

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

/* レイヤー */
input[type="checkbox"]#burger_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;
}

/* メニュー：OPEN/CLOSE */
.burger_content {
	position:fixed;
	top:0;
	right: -105%;
	width: 100%;
	height: 100%;
	transition: 0.1s ease-in-out;
}
input[type="checkbox"]#burger_btn:checked ~ .burger_content {
	overflow: scroll;
	overscroll-behavior-y: contain;
	-webkit-overflow-scrolling: touch;
	z-index: 2147483646;
	right: 0;
}

.burger_content {
	padding: 5% 10%;
	background-color: rgba(255, 255, 255, .85);
}
.burger__inner {
	width: 100%;
}

.burger_content .logo {
	width: 100px;
	margin: 0 auto 30px;
}

.bnavi {
	margin-bottom: 30px;
	border-top: 1px solid var(--color-gray-400);
}
.bnavi li {
	border-bottom: 1px solid var(--color-gray-400);
}
.bnavi a {
	display: block;
	height: auto;
	padding: 10px 15px;
	text-align: center;
	text-decoration: none;
	line-height: 1.6;
}

.burger_content .finfo {
	margin-bottom: 0;
	border-bottom: none;
	font-size: min(1rem,3.5vw);
}

@media only screen and (min-width: 768px) {
	.header__wrapper {
		height: 80px;
	}
	.header__inner {
		padding: 20px 20px;
	}
	.header_main {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.header_main .gnavi_block {
		width: 640px;
		max-width: 70%;
	}
	.header_slim {
		box-shadow: 0 0 4px rgba(0,0,0,.2);
	}
	.burger_open_btn {
		top: 7px;
		right: 5px;
		width: 60px;
		height: 60px;
	}
	.burger_open_btn span {
		width: 40px;
		height: 4px;
		margin: 24px auto 0;
	}
	.burger_open_btn span::before ,
	.burger_open_btn span::after {
		height: 4px;
	}
	.burger_open_btn span::before {
		top: -15px;
	}
	.burger_open_btn span::after {
		bottom: -15px;
	}
	.burger_content {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 5% 10%;
	}
	.burger__inner {
		width: 640px;
		max-width: 100%;
	}
}


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

 .footer

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

.footer {
	position: relative;
}
.footer_inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 30px 15px;
}
.footer_inner a {
	color: inherit;
}


/* finfo */
.finfo {
	max-width: 480px;
	margin: 0 auto 40px;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--color-gray-200);
	font-weight: normal;
	text-align: center;
}
.finfo__label {
	margin-bottom: 1em;
}
.finfo__text p {
	margin-bottom: 1em;
}


/* fnavi */
.fnavi {
	margin-bottom: 15px;
	text-align: center;
}
.fnavi li {
	display: inline-block;
	padding: 0 6px 0 8px;
	line-height: 1.1;
	vertical-align: middle;
}
.fnavi li a {
	display: block;
}

.copy_area {
	font-size: .875rem;
	text-align: center;
}


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

.page_top_fx {
	position: fixed;
	overflow: hidden;
	bottom: 10px;
	right: 10px;
	z-index: 99999;
}
.page_top_fx a {
	cursor: pointer;
	display: block;
	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;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}
.page_top_fx.is-show a {
	opacity: 1;
	visibility: visible;
}

@media only screen and (min-width: 768px) {
	.footer_inner {
		padding: 50px 20px;
	}
}


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

 contents

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

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

.main_contents {
	flex: 1;
	max-width: 1200px;
	margin: 0 auto;
}

.post-type-archive-menu .main_contents {
	max-width: 720px;
}


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

.content {
	clear: both;
	overflow: hidden;
	zoom: 100%;
}

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

.content__inner {
	max-width: 1230px;
	margin: 0 auto;
	padding: 30px 15px;
}

@media only screen and (min-width: 768px) {
	.contents_wrapper {
		display: flex;
		margin: 40px auto;
	}
	.content__inner {
		padding: 60px 15px;
	}
}


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

 メインコンテンツ

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

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

.breadcrumb {
	clear: both;
	max-width: 1230px;
	margin: 20px auto;
	padding: 0 15px;
	color: var(--color-gray-600);
	font-size: .875rem;
}
.breadcrumb li {
	display: inline-block;
	padding: 0 8px 0 0;
}


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

.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;
	border: 1px solid var(--color-gray-200);
	text-decoration: none;
}
.pagination a:hover {
	color: var(--color-white);
	background-color: var(--color-gray-100);
}
.pagination span {
	display: none;
}
.pagination .current {
	display: inline-block;
	padding: 6px 8px 5px 8px;
	border: 1px solid var(--color-gray-100);
	background-color: var(--color-gray-100);
}


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

ul.sns__list {
	display: flex;
	justify-content: center;
	max-width: 1000px;
	margin: 0 12px 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: contain;
	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(./images/common/icon_sns_fb.svg);
}
.sns li.tw a span {
	background-image: url(./images/common/icon_sns_tw.svg);
}
.sns li.insta a span {
	background-image: url(./images/common/icon_sns_insta.svg);
	background-size: 90% auto;
}
.sns li.pin a span {
	background-image: url(./images/common/icon_sns_pin.svg);
}
.sns li.line a span {
	background-size: 100% auto;
	background-image: url(./images/common/icon_sns_line.svg);
}
.sns li.linesq a span {
	background-image: url(./images/common/icon_sns_linesq.svg);
}


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

p.btn_box {
	clear: both;
	margin: 0;
	padding: 1.5em 0;
	text-align: center;
}
p.btn_box:last-child {
	padding-bottom: 0;
}

.btn_box a ,
.btn_box label {
	display: inline-block;
	width: 280px;
	max-width: 100%;
	padding: 10px 5px;
	background: var(--color-gray-700);
	color: var(--color-white);
	font-size: 1.125rem;
	text-align: center;
	text-decoration: none;
}
.btn_box a:hover ,
.btn_box label:hover {
	opacity: .65;
}

/* LINE */
.btn_box.btn_line a {
	background: var(--color-line);
	color: var(--color-white);
}
.btn_box.btn_line a::before {
	content: '';
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 2px;
	width: 1.5em;
	height: 1.45em;
	background: url(./images/common/icon_sns_linewh.svg) no-repeat;
	background-size: cover;
	vertical-align: middle;
}

/* HP */
.btn_box.btn_hp a {
	background: var(--color-hpb);
	color: var(--color-white);
}
.btn_box.btn_hp a::before {
	content: '';
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 2px;
	width: 1em;
	height: 1.5em;
	background: center center url(./images/common/icon_hp.svg) no-repeat;
	background-size: contain;
	vertical-align: middle;
}

/* TEL */
.btn_box.btn_tel a {
	background: var(--color-secondary);
	color: var(--color-white);
}
.btn_box.btn_tel a::before ,
.btn_box.btn_tel label::before {
	content: '';
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 2px;
	width: 1.5em;
	height: 1.5em;
	background: url(./images/common/icon_tel03wh.svg) no-repeat;
	background-size: cover;
	vertical-align: middle;
}


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


/* 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-color: var(--layer_dark);
	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: 800px;
	max-height: 80%;
	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-color: var(--color-gray-900);
	color: var(--color-white);
	font-size: 40px;
	line-height: 32px;
	text-align: center;
}

.modal_content__inner {
	padding: 25px 25px;
	background-color: var(--color-gray-100);
	font-size: .875rem;
}
.modal_content h1 {
	margin-bottom: 20px;
	font-size: 1.125rem;
	text-align: center;
}
.modal_content h2 {
	margin-bottom: .75em;
}
.modal_content p {
	margin-bottom: 1em;
}

.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

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

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

.entry-explain__list dt {
	position: relative;
	clear: both;
	float: left;
	width: 120px;
}
.entry-explain__list dt img {
	width: 100%;
}
.entry-explain__list dd {
	min-height: 120px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	padding-left: 140px;
	border-bottom: 1px dotted var(--color-gray-200);
}
.entry-explain__list dd:last-child {
	border-style: none;
}

/* cate */
.entry-explain__list dt .cate_box {
	position: absolute;
	display: block;
	top: 0px;
	left: 0px;
}
.entry-explain__list .cate_box a {
	display: inline-block;
	margin: 0 0 2px 0;
	padding: 4px 10px;
	background: var(--color-primary);
	color: var(--color-white);
	font-size: .75rem;
	text-decoration: none;
	line-height: 1.2;
	vertical-align: middle;
}

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


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

.entry-vertical__list {
	max-height: 120px;
	overflow-x: hidden;
	overflow-y: auto;
	font-size: .875rem;
}
.entry-vertical__list dt {
	margin-top: 1em;
}
.entry-vertical__list dd {
	margin-top: .25em;
}
.entry-vertical__list .data_box {
	display: inline-block;
}
.entry-vertical__list .cate_box {
	display: inline-block;
	margin-left: 5px;
	line-height: 1.2;
}
.entry-vertical__list .cate_box a {
	display: inline-block;
	min-width: 4em;
	margin: 0 0 2px 0;
	padding: 4px 4px;
	background: var(--color-primary);
	color: var(--color-white);
	font-size: .75rem;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
}
.entry__title {
	display: block;
}
@media only screen and (min-width: 768px) {
	.entry-vertical__list dt {
		clear: both;
		float: left;
		display: flex;
		width: 10.5em;
		margin: 0;
		padding: 6px 0;
	}
	.entry-vertical__list .data_box {
		display: block;
	}
	.entry-vertical__list .cate_box {
		display: block;
	}
	.entry-vertical__list dd {
		margin: 0;
		padding: 6px 0 6px 11em;
	}
}


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

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

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

.entry-card__list .thumb {
	display: block;
	margin-bottom: 15px;
}
.entry-card__list .thumb img {
	width: 100%;
	height: auto;
}

.entry-card__list .cate_box {
	position: absolute;
	display: block;
	top: -2px;
	right: 8px;
}
.entry-card__list .cate_box a {
	display: inline-block;
	margin: 0 0 2px 0;
	padding: 4px 15px;
	background: var(--color-primary);
	color: var(--color-white);
	font-size: .75rem;
	text-decoration: none;
	vertical-align: middle;
}

.entry-card__list em.name {
	display: block;
	position: relative;
	overflow: hidden;
	height: 2.8em;
	margin: 8px 0 8px;
	text-align: center;
	line-height: 1.4;
}
.entry-card__list em.name::before ,
.entry-card__list em.name::after {
	position: absolute;
	background: var(--color-white);
}
.entry-card__list em.name::before {
	content: '\FF65\FF65\FF65';
	bottom: 0;
	right: 0;
	padding-left: 3px;
}
.entry-card__list em.name::after {
	content: '';
	width: 100%;
	height: 100%;
}

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

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

@media only screen and (min-width: 768px) {
	.entry-card__list {
		margin: 0 -15px;
	}
	.entry-card__list li {
		width: 25%;
	}
	.entry-card__list li > div {
		padding: 0 15px 30px;
	}
	.entry-card__list .cate_box {
		right: 13px;
	}
}



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

 archive : menu

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

.menu_block {
	margin-bottom: 20px;
}
.menu_block h2 {
	margin-bottom: 10px;
	padding: 8px;
	background-color: var(--color-gray-100);
	font-size: 1.25rem;
	text-align: center;
}
.menu_block .menu_desc {
	margin-bottom: 10px;
}

.menu_list {
	padding-bottom: 15px;
}
.menu_list dt {
	display: -webkit-flex;
	display: flex;
	border-top: 1px solid #CCC;
	margin-top: 8px;
	padding: 8px 4px 0;
}
.menu_list dt:first-child {
	margin-top: 0;
	border-top: none;
}
.menu_list dt em ,
.menu_list dt em a {
	display: block;
	width: 60%;
}
.menu_list dt .time {
	display: block;
	width: 20%;
	text-align: center;
}
.menu_list dt .price {
	display: block;
	width: 20%;
	text-align: right;
}
.menu_list dd {
	padding: 5px 5px 0;
	font-size: .875rem;
}


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

 記事 single / page

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

.entry_content {
	line-height: 1.8;
}

.entry_title {
	margin-bottom: 20px;
	padding: 10px 8px;
	border-bottom: 1px solid var(--color-gray-200);
	font-size: 140%;
	text-align: left;
	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: var(--color-primary);
	color: var(--color-white);
	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;
}

.page_content hr {
	margin-top: 1.6em;
	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 var(--color-gray-200);
	font-weight: bold;
}
.entry_content table td {
	padding: 10px;
	border: 1px solid var(--color-gray-200);
}


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

.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') var(--color-gray-100) 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;
	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;
	background: var(--layer_dark);
	color: var(--color-white);
	text-align: center;
}
.image_iblock .wp-caption-text a,
.image_iblock .wp-caption-text {
	font-size: 100%;
	color: var(--color-white);
}


/* 画像位置 */

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;
}


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

.share_area {
	max-width: 600px;
	margin: 20px auto;
}
 
.share__list {
	display: flex;
}
.share__list li {
	width: 25%;
	padding: 2px;
}
.share__list li span {
	display: none;
}
.share__list li a {
	display: block;
	padding: 2px;
	border-radius: 50vh;
	color: var(--color-white);
	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: var(--color-line);
}
.share__list .facebook a {
	background: var(--color-fb);
}
.share__list .hatena a {
	background: #008fde;
}
.fa-hatena:before {
	font-family: Verdana;
	font-weight: bold;
	content: 'B!';
}


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

.p_navi {
	margin-bottom: 40px;
	padding: 20px 0;
	border-top: 1px solid var(--color-gray-200);
	border-bottom: 1px solid var(--color-gray-200);
	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 var(--color-gray-200);
}
.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: var(--color-gray-200);
	color: var(--color-white);
}
.p_navi a b {
	display: block;
	font-weight: normal;
}
.p_navi a:hover em {
	opacity: 0.7;
	filter: alpha(opacity=70);
}

@media only screen and (min-width: 768px) {
	.share_area {
		margin: 40px auto;
	}
	.share__list li span {
		display: inline-block;
	}	
	.image_iblock {
		width: 44%;
		width: auto;
	}
}


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

 product

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

.product_info_area {
	padding: 40px 0;
}
.product_info_area .thumb_list {
	padding-left: 0;
}
.product_info_area .thumb_list li {
	list-style-type: none;
}
.product_info_area h1 {
	margin-bottom: 1em;
	font-size: 1.25rem;
}
.product_info_area .price_box {
	margin-bottom: 1em;
}
.product_info_area .price_box em {
	display: inline-block;
	font-weight: normal;
}
.product_info_area .price_box .prices {
	display: inline-block;
	font-size: 1.125rem;
	font-weight: 600;
}
.product_info_area h2 {
	color: #928678;
}

.product_info_area .note ,
.product_info_area .point {
	margin-bottom: 2em;
	padding: 20px;
}
.product_info_area .note {
	background-color: #f6f2ed;
}
.product_info_area .point {
	background-color: #edf6f5;
}
.product_info_area .note h2 ,
.product_info_area .note h3 {
	margin-bottom: .5em;
	padding-left: .5em;
	color: #333;
}
.product_info_area .note ul ,
.product_info_area .note ol {
	margin-bottom: 0;
}

.product_info_area .detail_list {
	margin-bottom: 2em;
	padding: 20px;
	border: 1px solid #beb5a4;
	font-size: .875rem;
}
.product_info_area .detail_list dt {
	margin-bottom: .4em;
	padding-bottom: .25em;
	border-bottom: 1px dotted #928678;
	color: #928678;
	font-weight: 600;
}
.product_info_area .detail_list dd:not(:last-child) {
	margin-bottom: 2em;
}

@media only screen and (min-width: 769px) {
	.product_info_area {
		display: flex;
		padding: 60px 0;
	}
	.product_info_area .thumb_block {
		width: 40%;
		margin-right: 40px;
	}
	.product_info_area .txt_block {
		flex: 1;
		max-width: 100%;
	}
}

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

 single : staff

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

.contents.staff_single {
	max-width: 720px;
	margin: 0 auto;
}

.staff_single .staff_thumb {
	position: relative;
	margin: 0 auto 20px;
	text-align: center;
}

.staff_gallery_area ,
.staff_blog_area {
	margin: 0 auto 40px;
}

.staff_info_area .staff_name {
	margin-bottom: 20px;
	text-align: center;
}
.staff_info_area .staff_name .staff_posi {
	display: inline-block;
	font-size: 1.4rem;
	font-weight: normal;
}
.staff_info_area .staff_name em {
	display: block;
	padding-left: 0.2em;
	font-size: 2rem;
	letter-spacing: 0.2em;
}
.staff_info_area .staff_name .staff_job {
	display: inline-block;
	margin-bottom: 5px;
	font-weight: normal;
}
.staff_info_area .staff_name .name_under_txt {
	margin-bottom: 10px;
}

.staff_info_area .staff_txt {
	margin-bottom: 40px;
	line-height: 1.75;
}
.staff_info_area .staff_txt h2 {
	margin-bottom: 10px;
}
.staff_info_area .staff_txt p {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px dotted #CCC;
}

.staff_info_area .staff_cal {
	margin-top: -40px;
	margin-bottom: 40px;
	padding-top: 80px;
}
.staff_info_area .staff_cal .title_block {
	margin-bottom: 10px;
}


/* staff intro 3 */
.staff_intro {
	margin-bottom: 20px;
	padding: 20px 20px;
	background: #c8c8c8;
}
.staff_intro h3 {
	margin-bottom: 10px;
	padding-left: 0.1em;
	font-size: 2rem;
	letter-spacing: 0.1em;
	text-align: center;
}
.staff_intro h3 span {
	display: inline-block;
}
.staff_intro h3 span em {
	padding-left: 0.25em;
	font-size: 1.8rem;
}
.staff_intro .inner {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px dotted #666;
}
.staff_intro .inner:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}
.staff_intro .inner .fig {
	display: block;
	margin-bottom: 15px;
	text-align: center;
}
.staff_intro .inner .fig img {
	width: 100%;
}
.staff_intro .inner .txt {
	overflow: hidden;
}

.staff_intro .inner .txt em {
	position: relative;
	display: block;
	margin-bottom: 15px;
	padding: 4px 0 4px 45px;
	font-weight: bold;
}
.staff_intro .inner .txt em::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 36px;
	height: 36px;
	background: #FFF;
	border-radius: 50%;
	color: #339;
	text-align: center;
	line-height: 36px;
}
.staff_intro .inner:nth-child(2) .txt em::before {
	content: '1';
}
.staff_intro .inner:nth-child(3) .txt em::before {
	content: '2';
}
.staff_intro .inner:nth-child(4) .txt em::before {
	content: '3';
}


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

 ページ

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

/* タイトル
-----------------------------------------------------------*/

/* title */
.title_block {
	margin-bottom: 25px;
	text-align: center;
}
.title_block h1 {
	line-height: 1.6;
}

.title--line {
	width: 1000px;
	max-width: 100%;
	margin: 0 auto;
	border-top: 6px double var(--color-gray-200);
	border-bottom: 6px double var(--color-gray-200);
}

.title_inner--en {
	position: relative;
	padding: 1.5em 0;
}
.title_inner--en::before {
	position: absolute;
	top: calc(50% - .5em);
	left: 0;
	width: 100%;
	display: block;
	content: attr(data-en);
	font-size: min(5rem,12vw);
	color: var(--color-gray-100);
	line-height: 1;
	z-index: -1;
}

.title_block .ja_S {
	display: block;
	font-size: min(1.375rem,4.5vw);
	font-weight: normal;
}
.title_block .ja {
	display: block;
	font-size: min(1.75rem,6vw);
	font-weight: normal;
}
.title_block .en {
	display: block;
	font-size: min(1.75rem,6vw);
	font-weight: normal;
}


@media only screen and (min-width: 768px) {
	.title_block {
		margin-bottom: 40px;
	}
}


/* テキスト
-----------------------------------------------------------*/

.text_block {
	line-height: 2;
}
.text_block p {
	margin-bottom: 1.8em;
}
.text_block p:last-child {
	margin-bottom: .4em;
}
.text_block .btn_box {
	padding-top: 0;
}

.marker__txt {
	display: inline;
}
.marker__txt.yw {
	background: #faf6c6;
}
.marker__txt.ywh {
	background: linear-gradient(transparent 50%, #faf6c6 0%);
}

.color--red {
	color: var(--color-dred);
}

.text__ls500 {
	padding-left: .5em;
	letter-spacing: .5em;
}
.text__ls200 {
	padding-left: .2em;
	letter-spacing: .2em;
}

.text__dots {
	padding-top: .5em;
	background-position: top left 0px;
	background-repeat: repeat-x;
	background-size: 1.0em .3em;
	background-image: radial-gradient(.15em .15em at center center,var(--color-text),var(--color-text) 100%,transparent,transparent);
}
.text__ls200 .text__dots {
	background-size: 1.2em 0.3em;
}
@media print {
	.text__dots {
		background: none;
		text-emphasis: circle;
		-webkit-text-emphasis: circle;
	}
}


/* table
------------------------------------------------------------- */

.tbl {
	width: 100%;
	margin: 0 auto;
	border-collapse: collapse;
	border-top: 1px solid var(--color-gray-200);
}
.tbl th {
	padding: 15px 10px;
	border-bottom: 1px solid var(--color-gray-200);
	text-align: center;
	white-space: nowrap;
}
.tbl td {
	padding: 15px 10px;
	border-bottom: 1px solid var(--color-gray-200);
}

@media only screen and (max-width: 767px) {
	.tbl tr ,.tbl th,.tbl td{
		display: block;
	}
	.tbl th {
		padding-bottom: 0;
		border-bottom: none;
		text-align: left;
	}
	.tbl td {
		padding-top: 5px;
	}
}


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

.fig_block img {
	border-radius: 20px;
}

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

.fig__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 -5px 20px;
}
.fig__list li {
	flex-grow: 0;
	width: 50%;
	padding: 0 5px 10px;
}
.fig__list.sepa01 li {
	width: 100%;
}
@media only screen and (min-width: 768px) {
	.figLeft {
		float: left;
		margin-right: 30px;
		margin-bottom: 10px;
	}
	.figRight {
		float: right;
		margin-left: 20px;
		margin-bottom: 10px;
	}
	.fig__list {
		margin: 0 -10px;
	}
	.fig__list li {
		padding: 0 10px 20px;
	}
	.fig__list.sepa01 li {
		width: 70%;
	}
	.fig__list.sepa02 li {
		width: 50%;
	}
	.fig__list.sepa03 li {
		width: 33.33333%;
	}
	.fig__list.sepa04 li {
		width: 25%;
	}
}


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

 index

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

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

.cover {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
}
.cover__catch {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	color: var(--color-white);
	z-index: 1;
}
.cover__image {
	position: relative;
}
.cover__image img {
	width: 100%;
}

.cover__catch .catchs {
	padding: 4%;
}
.cover__catch .catch01 {
	margin-bottom: 2em;
	font-size: min(1rem,4vw);
	font-weight: normal;
}
.cover__catch .catch02 {
	font-size: min(1rem,4vw);
}


/* pnavi
-----------------------------------------------------------*/

.pnavi__list {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
.pnavi__list.concept {
	margin-bottom: 40px;
}
.pnavi__item {
	position: relative;
	width: calc((100% - 15px) / 2);
}
.pnavi__item a {
	display: block;
}
.pnavi__item .fig {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3; /* スマホ初期値 */
	overflow: hidden;
}
.pnavi__item .fig img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: translate(-50%, -50%);
}
.pnavi__item .label {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding-top: calc(50% - 2.2em);
	color: var(--color-white);
	font-size: min(1.5rem,4vw);
	text-align: center;
	text-decoration: none;
	z-index: 2;
}

@media (min-width: 768px) {
	.pnavi__list {
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
	}
	.pnavi__item {
		width: calc((100% - 40px) / 3);
	}
	.pnavi__item .fig {
		aspect-ratio: 1 / 1;
	}
	.pnavi__item .label {
		padding-top: calc(50% - 1.75em);
	}
}

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

 concept

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

.concept_mv {
	position: relative;
}
.concept_mv__images {
	padding-left: 15%;
}
.concept_mv__catch {
	position: absolute;
	top: 35%;
	left: 0;
	width: 100%;
}
.concept_mv__catch .logo {
	display: block;
	width: 200px;
	max-width: 20%;
	margin-bottom: 25px;
}
.concept_mv__catch .text {
	font-size: min(1.25rem,4vw);
	line-height: 1.4;

}

@media (min-width: 768px) {
	.concept_mv__catch {
		top: 40%;
	}
}

.concept .reserve {
	max-width: 1000px;
	margin: 0 auto;
	padding: 20px;
	background-color: var(--color-gray-100);
}
.reserve__list dt {
	margin-bottom: .5em;
	font-weight: 600;
}
.reserve__list dd:not(:last-child) {
	margin-bottom: 20px;
}

@media (min-width: 768px) {
	.concept .reserve {
		padding: 40px 100px;
		font-size: 120%;
	}
	.reserve__list dt {
		clear: both;
		float: left;
		width: 7em;
		margin-bottom: 0;
	}
	.reserve__list dd {
		padding-left: 8em;
	}
	.reserve__list dd:not(:last-child) {
		margin-bottom: 0;
		padding-bottom: 20px;
	}
}


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

 recruit

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

.recruit_mv {
	position: relative;
	text-align: center;
}
.recruit_mv__data {
	position: absolute;
	top: 20px;
	left: 0;
	width: 100%;
	color: var(--color-white);
	font-size: min(4rem,8vw);
	font-weight: 600;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	line-height: 1;
	z-index: 2;
}
.recruit_mv__images {
	position: relative;
}
.recruit_mv__logo {
	position: absolute;
	left: 12%;
	bottom: 5%;
	width: 120px;
	max-width: 20%;
	color: var(--color-white);
	font-size: min(1rem,3vw);
}
.recruit_mv__text {
	position: absolute;
	top: 25%;
	right: 8%;
	color: var(--color-white);
	font-size: min(1rem,3vw);
	text-align: left;
	line-height: 1.2;
}
.recruit_mv__catch {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.recruit_mv__circle {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 320px;
	max-width: 40%;
	background: rgba(255, 255, 255, .5);
	border-radius: 50%;
	aspect-ratio: 1/1;
	font-size: min(1.75rem,4vw);
	line-height: 1;
}
.recruit_mv__circle.circle01 {
	top: 30%;
	left: 2%;
}
.recruit_mv__circle.circle02 {
	bottom: 5%;
	right: 2%;
}
.recruit_mv__circle .text_L {
	display: inline-block;
	margin: .25em 0;
}

@media only screen and (max-width: 767px) {
	.recruit_mv__circle.circle02 {
		max-width: 50%;
	}
}
@media only screen and (min-width: 768px) {
	.recruit_mv__text {
		top: 25%;
		right: 20%;
	}
	.recruit_mv__circle.circle01 {
		top: 25%;
		left: 5%;
	}
	.recruit_mv__circle.circle02 {
		bottom: 15%;
		right: 5%;
	}
}


/* interview
------------------------------------------------------------- */

.interview {
	margin-bottom: 30px;
	padding: 20px;
	background: no-repeat center center url(./images/recruit/bg_intaview.jpg);
	background-size: cover;
}
.interview__image {
	position: relative;
	margin-bottom: 20px;
}
.interview__image::before ,
.interview__image::after {
	position: absolute;
	display: block;
	content: '';
	width: 50px;
	height: 50px;
}
.interview__image::before {
	top: 0;
	left: 0;
	border-top: 1px solid var(--color-gray-700);
	border-left: 1px solid var(--color-gray-700);
}
.interview__image::after {
	bottom: 0;
	right: 0;
	border-bottom: 1px solid var(--color-gray-700);
	border-right: 1px solid var(--color-gray-700);
}
.interview__text {
	padding: 20px;
	background-color: var(--color-white);
}
.interview__posi {
	margin-bottom: 1em;
	font-size: min(1.125rem,4vw);
	font-weight: 600;
}
.interview__text h3 {
	margin-bottom: 1em;
	font-size: min(1.375rem,4.5vw);
}
@media only screen and (min-width: 768px) {
	.interview {
		display: flex;
		margin-bottom: 60px;
		padding: 60px 100px;
		gap: 50px;
	}
	.interview__image {
		width: 460px;
		max-width: calc(50% - 25px);
		margin-bottom: 0;
	}
	.interview__text {
		flex: 1;
	}
}


/* outline
------------------------------------------------------------- */

.outline {
	padding: 30px 20px;
	background-color: var(--color-gray-100);
}
.outline .tbl {
	margin-bottom: 30px;
}

@media only screen and (min-width: 768px) {
	.outline {
		padding: 60px 100px;
	}
}



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

 aboutus

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




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

 reserve / contact

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

/* reserve
------------------------------------------------------------- */

.reserve_area {
	text-align: center;
}

.reserve_block.tel a svg {
	display: inline-block;
	width: 32px;
	margin-right: .2em;
	fill: #4d2b16;
}
.reserve_block.tel .tel a:hover svg {
	fill: #75685d;
}

.dot_line {
	width: 500px;
	max-width: 90%;
	margin: 20px auto 40px;
	height: 14px;
	border: none;
	background-color: transparent;
	background-image: radial-gradient(#999 30%, transparent 30%);
	background-size: 3.5px 3.5px;
}

.reserve_block .btn_box {
	padding-top: 0;
}


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

.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 var(--color-gray-200);
}
.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: var(--color-primary);
	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: var(--color-gray-100);
	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: var(--color-gray-100);
}
.form_step em::before {
	border-left-color: var(--color-white);
	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: var(--color-white);
	font-weight: bold;
	background: none;
}
.form_step .active::after {
	z-index: 2;
	border-left-color: var(--color-primary);
}

/* ラッパーで判断するが型 */
.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: var(--color-white);
	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: var(--color-primary);
}


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

.form_box {
	max-width: 840px;
	margin: 0 auto 20px;
	border-top: 1px solid var(--color-gray-200);
}
.form_box dt {
	padding: 10px 10px 5px;
	font-weight: 600;
}
.form_box dt .req {
	display: inline-block;
	margin-left: 10px;
	padding: 2px 6px;
	border-radius: 2px;
	background: var(--color-pink);
	color: var(--color-white);
	font-size: .75rem;
	font-weight: normal;
	line-height: 1.4;
	white-space: nowrap;
	vertical-align: middle;
}
.form_box dd {
	padding: 0 10px 10px;
	border-bottom: 1px solid var(--color-gray-200);
}

.form_box input[type="text"] ,
.form_box input[type="email"] ,
.form_box input[type="tel"] ,
.form_box textarea {
	border: 1px solid var(--color-gray-200);
	background-color: var(--color-white);
	border-radius: 4px;
}
.form_box input[type="text"] ,
.form_box input[type="email"] ,
.form_box input[type="tel"] {
	max-width: 100%;
}
.form_box textarea {
	width: 100%;
}
.form_box .zip_wrap {
	display: block;
}
.form_box .zip_wrap input {
	display: inline-block;
	width: 4em;
}
::placeholder{
	color: var(--color-gray-200);
}

.form_btn_box {
	margin-left: -5px;
	margin-right: -5px;
	text-align: center;
}
.form_btn_box input ,
.form_btn_box button {
	cursor: pointer;
	position: relative;
	display: inline-block;
	width: 320px;
	max-width: 46%;
	padding: 10px;
	border: none;
	border-radius: 50vh;
	background: var(--color-tertiary);
	color: var(--color-white);
	font-size: 1.125rem;
}
.form_btn_box input:hover ,
.form_btn_box button:hover {
	opacity: .5;
}
.form_btn_box button.confirm::before ,
.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 var(--color-white);
	border-right: solid 2px var(--color-white);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.form_btn_box button.back {
	background: var(--color-gray-200);
}
.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 var(--color-white);
	border-left: solid 2px var(--color-white);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.form_btn_box .wpcf7-spinner {
	display: block;
}

@media only screen and (min-width: 768px) {
	/* 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;
	}
}



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

 汎用CSS

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

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

.attention { /* 注意色(基本赤) */
	color: var(--color-dred);
}

.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;
}

.mB40 {
	margin-bottom: 40px;
}

.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 {
	/zoom : 1; /* IE6-7 */
}
.clearfix:after { /* modern */
	content : '';
	display : block;
	clear : both;
	height: 0;
}


@media only screen and (max-width: 767px) {
	.sp_hide {
		display: none;
	}
	.sp_center {
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}
}
@media only screen and (min-width: 768px) {
	.pc_hide {
		display: none;
	}
	.pc_center {
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}
}
