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

Theme Name: 藤原病院 リワークプログラム Thema
Author: Shimizu [ bran-new-days.com ]
Description: 2022/9/21

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

/* font-family: "Zen Maru Gothic", sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;700&display=swap');

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

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

 全体 style

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

:root {
	--color-text      : #28282d;
	--color-body      : #f2fbff;
	--color-bg-base   : #fffae5;
	--color-bg-yw     : #fff7d7;
	--color-bg-lbu    : #e2ecf7;
	--color-bg-sbu    : #f0f5fb;
	--color-solid     : #ccdbf7;

	--color-primary   : #14377b;
	--color-secondary : #23a0fa;
	--color-tertiary  : #6ca1d6;
	--color-quaternary: #ea7b45;
	--color-line      : #22ba4f;

	--color-white     : #FFF;
	--color-gray-100  : #EEE;
	--color-gray-200  : #CCC;
	--color-gray-600  : #666;
	--color-gray-900  : #222;
	
	--color-pink      : #f27670;
	--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;
	scroll-behavior: smooth;
}

body {
	overflow: hidden;
	position: relative;
	left: 0;
	background-color: var(--color-body);
	background-repeat: no-repeat;
	background-position: center top;
	background-image: url(./images/common/covre_bg.png);
	background-size: 400% auto;
	word-wrap: break-word;
	color: var(--color-text);
	font-size: 1rem;
	font-family: "Zen Maru Gothic", 'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
	line-height: 1.6;
}
@media only screen and (min-width: 768px) {
	body {
		background-size: 100% auto;
	}
}

a {
	color: inherit;
	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;
}

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

[hidden] {
	display: none;
}

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

 layout

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

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

 header

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

.header__wrapper {
	height: 100px;
}
.home .header__wrapper {
	height: 0;
}
.header {
	position: absolute;
	z-index: 999999;
	top: 0;
	left: 0;
	width: 100%;
	color: var(--color-primary);
	z-index: 2100;
}
.header {
	position: fixed;
}
.header_slim {
	background: linear-gradient(0deg, rgba(242, 251, 255, 0) 0%, rgba(242, 251, 255, .8) 45%);	
}
.header__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 30px 20px;
}

.heder__logo {
	width: 300px;
	max-width: 65%;
}
.heder__logo a {
	display: block;
	text-decoration: none;
}
.header__body .logo img {
	width: 100%;
}

/* tel */
.tel_block {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 1em;
}
.tel_block a {
	text-decoration: none;
}
.tel_block .number {
	font-size: min(1.5rem,6vw);
	font-family: "Cabin", sans-serif;
}
.tel_block .number::before {
	display: inline-block;
	content: '';
	width: 1em;
	height: 1em;
	margin-bottom: .1em;
	background: no-repeat center center;
	background-image: url(./images/common/icon_tel.svg);
	background-size: 75% auto;
	vertical-align: middle;
}
.tel_block .time {
	font-size: .8125rem;
}


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

.gnavi {
	display: flex;
	justify-content: space-between;
	gap: 15px;
	transition:all 300ms 0ms ease;
}
.gnavi li {
	position: relative;
	vertical-align: middle;
}
.gnavi a {
	position: relative;
	display: inline-block;
	padding: 8px 0 8px 2em;
	text-align: center;
	text-decoration: none;
	line-height: 1.4;
}
.gnavi > li > a::before {
	position: absolute;
	content: '';
	top: 1em;
	left: 0;
	width: 1.5em;
	height: 1.5em;
	background: no-repeat center center;
	background-size: contain;
}
.gnavi .top a::before {
	background-image: url(./images/common/icon_home.svg);
}
.gnavi .service a::before {
	background-image: url(./images/common/icon_human.svg);
}
.gnavi .new a::before {
	background-image: url(./images/common/icon_info.svg);
}
.gnavi .voice a::before {
	background-image: url(./images/common/icon_voice.svg);
}
.gnavi .about a::before {
	background-image: url(./images/common/icon_bill.svg);
}
.gnavi a b {
	font-weight: bold;
}
.gnavi a span {
	display: block;
	margin-top: 2px;
	color: var(--color-tertiary);
	font-size: .8125rem;
	font-family: "Cabin", sans-serif;
}

/* サブメニュー */
.gnavi .gnavi-drop {
	display: none;
	position: absolute;
	top: 3.5em;
	left: calc(50% - 120px);
	width: 240px;
	color: var(--color-black);
	z-index: 2110;
}
.gnavi .gnavi-drop .gnavi-drop-wrapper {
	position: relative;
	padding-top: 30;
}
.gnavi .gnavi-drop .gnavi-drop-box {
	position: relative;
	padding: 15px;
	background: rgba(242, 251, 255, .95);
	box-shadow: 0px 8pxpx 10px rgba(176, 185, 189, .5);
}
.gnavi .gnavi-drop li a {
	display: block;
	padding: 6px 0;
	text-align: center;
}
/* サブメニューホバー時 */
.gnavi__item--open:hover .gnavi-drop {
	display: block;
}


.contact_block a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1 / 1;
	background: no-repeat center center;
	background-image: url(./images/common/contact_bg01.svg);
	background-size: contain;
	color: var(--color-white);
	text-align: center;
	text-decoration: none;
	line-height: 1.4;
}
.contact_block a:hover {
	opacity: .5;
}
.contact_block a::after {
	position: absolute;
	content: '';
	top: -10px;
	left: -15px;
	width: 100%;
	height: 100%;
	background: no-repeat center center;
	background-image: url(./images/common/contact_bg02.svg);
	background-size: contain;
	z-index: -1;
}
.contact_block .inner::before {
	display: block;
	content: '';
	width: 1.25em;
	height: 1.25em;
	margin: 0 auto 4px;
	background: no-repeat center center;
	background-image: url(./images/common/icon_main_wh.svg);
	background-size: contain;
}
.contact_block a b {
	display: block;
}
.contact_block a span {
	display: block;
	margin-top: 2px;
	font-size: .8125rem;
	font-family: "Cabin", sans-serif;
}

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

/* menu open btn */
.burger_btn_area {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 2200;
}
input[type="checkbox"]#burger_btn {
	position: absolute;
	visibility: hidden;
	bottom: 0;
}

/* ハンバーガーメニュー */
.burger_open_btn {
	position: absolute;
	top: 25px;
	right: 20px;
	display: block;
	width: 60px;
	z-index: 2205;
}
.burger_open_btn span {
	position: relative;
	display: block;
	width: 100%;
	height: 0;
	margin: 24px auto 0;
	transition: 0.4s;
}
.burger_open_btn span::before ,
.burger_open_btn span::after {
	position: absolute;
	content: '';
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--color-primary);
	transition: 0.4s;
}
.burger_open_btn span::before {
	top: -8px;
}
.burger_open_btn span::after {
	bottom: -8px;
}

/* ハンバーガーメニューを変形 */
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(25deg);
}
input[type="checkbox"]#burger_btn:checked + .burger_open_btn span::after {
	bottom: 0;
	transform: rotate(-25deg);
}

/* メニュー：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: 2201;
	right: 0;
}

.burger_content {
	padding: 30px 20px;
	background-color: var(--color-body);
}

.burger_content .logo {
	width: 300px;
	max-width: 65%;
	margin-bottom: 30px;
}

.bnavi {
	margin-bottom: 30px;
	padding: 0 15px;
}
.bnavi li {
	border-bottom: 1px solid var(--color-solid);
}
.bnavi a {
	position: relative;
	display: block;
	height: auto;
	padding: 15px 10px;
	font-size: 1.125rem;
	text-decoration: none;
}
.bnavi a::after {
	position: absolute;
	content: '';
	top: 18px;
	right: 15px;
	width: 1.25em;
	height: 1.25em;
	background: no-repeat center center;
	background-image: url(./images/common/icon_arrow.svg);
	background-size: contain;
}
.bnavi a span {
	display: none;
}

.info_navi {
	display: flex;
	justify-content: center;
	margin: 0 auto;
	line-height: 1.2;
}
.info_navi li:not(:last-child) {
	border-right: 1px solid var(--color-primary);
}
.info_navi a {
	padding: 0 1em;
	text-decoration: none;
}

@media only screen and (max-width: 767px) {
	.header__main {
		display: none;
	}
}
@media only screen and (min-width: 768px) {
	.header__wrapper {
		height: 190px;
	}
	.header__inner {
		padding: 20px 15px;
	}	
	.header__body {
		display: flex;
		justify-content: space-between;
	}
	.heder__logo {
		width: 300px;
		max-width: 25%;
		padding-top: 25px;
		transition:all 300ms 0ms ease;
	}
	.header__main {
		flex: 1;
		display: flex;
		justify-content: flex-end;
		gap: 30px;
	}
	.header__main .gnavi_block {
		width: 640px;
	}
	.header__main .contact_block {
		width: 150px;
	}
	.burger_btn_area {
		display: none;
	}
}


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

 side bar

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

.side h4 {
	margin-bottom: 10px;
	padding: 4px 4px 10px;
	border-bottom: 2px solid var(--color-gray-200);
	font-weight: bold;
}
.side .wiget_box div {
	margin-bottom: 20px;
}
.side .wiget_box ul {
	margin-left: 10px;
	font-size: .875rem;
}


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

 .footer

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

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

.contact {
	margin-top: 30px;
}
@media only screen and (min-width: 768px) {
	.contact {
		margin-top: 40px;
	}
}


/* footer
-----------------------------------------------------------*/

.footer {
	border-top: 1px solid var(--color-solid);
	border-bottom: 1px solid var(--color-solid);
	background: no-repeat center top url(./images/common/bg_footer.jpg) var(--color-white);
	background-size: 300% auto;
}
.footer_inner {
	padding: 50px 40px 30px;
}

.footer_body {
	margin-bottom: 30px;
	border-bottom: 1px solid var(--color-solid);
}

.info_block .logo {
	width: 320px;
	margin-bottom: 40px;
}
.info_block .addr {
	margin-bottom: 30px;
}
.info_block .access_dl dt {
	color: var(--color-primary);
	font-weight: 500;
}
.info_block .access_dl dd {
	margin-bottom: 1.5em;
}

.map_block iframe {
	width: 100%;
	height: 240px;
	margin-bottom: 15px;
}


/* fnavi
------------------------------------------------------------- */

.fravi__blcok {
	margin-bottom: 20px;
}

.fnavi {
	font-size: .875rem;
	text-align: center;
	line-height: 1.4;
}
.fnavi li {
	display: inline-block;
	padding-right: .5em;
	vertical-align: middle;
}
.fnavi li:not(:last-child) a::after {
	display: inline-block;
	content: '/';
	margin-left: .75em;
}
.fnavi li a {
	display: block;
	text-decoration: none;
}

.copy_area {
	padding: 40px 20px;
	font-size: .875rem;
	text-align: center;
}


/* 固定ボタン */
.fixbtn {
	position: fixed;
	right: 0;
	bottom: 0;
	width: 50%;
	padding: 0 10px 10px;
}

@media only screen and (min-width: 768px) {
	.fixbtn {
		display: none;
	}
	.footer {
		background-size: 100% auto;
	}	
	.footer_inner {
		max-width: 1240px;
		margin: 0 auto;
		padding: 80px 20px 20px;
	}
	.footer_body {
		display: flex;
		gap: 40px;
		margin-bottom: 40px;
		padding-bottom: 20px;
	}
	.info_block {
		flex: 1;
	}
	.map_block {
		width: 640px;
		max-width: 60%;
	}
	.map_block iframe {
		height: 320px;
	}
	.fnavi:not(:last-child) {
		margin-bottom: 20px;
	}
}


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

 contents

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

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

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


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

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

.content[id] {
	scroll-margin-top: 120px;
}

.content--wh {
	border-top: 1px solid var(--color-solid);
	background-color: var(--color-white);
}
.content--yw {
	background-color: var(--color-bg-yw);
}
/* 個別(写真背景など) */
.content--support {
	background: no-repeat left bottom;
	background-image: url(./images/home/support_bg.png);
	background-size: 100% auto;
}

.content--shisetu-image {
	height: 240px;
	background: no-repeat center center;
	background-image: url(./images/home/shisetsu_img01.jpg);
	background-size: cover;
}

.content--selected {
	position: relative;
	padding-top: 40px;
	background: no-repeat center top url(./images/home/selected_bg.svg);
	background-size: 120% auto;
}
.content--selected::after {
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	width: 100%;
	height: 75%;
	background-color: var(--color-bg-yw);
	z-index: 1;
}
.content--selected .content__inner {
	position: relative;
	padding-top: 0;
	z-index: 2;
}

.content--staff {
	position: relative;
	padding-top: 40px;
	padding-bottom: 40px;
	background: no-repeat center top url(./images/home/staff_bg.png);
	background-size: auto 95%;
}
.content--staff::after {
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	width: 100%;
	height: 30%;
	background: no-repeat center bottom url(./images/home/staff_wave_bg.svg);
	background-size: 100% auto;
	z-index: 1;
}
.content--staff .content__inner {
	position: relative;
	padding-top: 0;
	z-index: 2;
}
.content--staff--service {
	background-color: var(--color-bg-yw);
}

.content--contact {
	border-top: 1px solid var(--color-solid);
	background: url(./images/common/bg_contact.png) var(--color-white);
	background-size: 12px auto;
}

.content--proflow {
	background: no-repeat center top;
	background-image: url(./images/common/bg_program-flow.webp);
	background-size: 400% auto;
}
.content--prices {
	border-top: 1px solid var(--color-solid);
	background: no-repeat center top var(--color-white);
	background-image: url(./images/common/bg_prices.jpg);
	background-size: 400% auto;
}

.content__inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 20px 20px;
}
.content__inner + .content__inner {
	padding-top: 0;
}

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


@media only screen and (min-width: 768px) {
	.contents_wrapper {
		display: flex;
		margin: 0 auto;
	}
	.content--support {
		background-size: 60% auto;
	}
	.content--shisetu-image {
		height: 400px;
	}
	.content--selected {
		padding-top: 80px;
	}
	.content--staff {
		padding-top: 80px;
		padding-bottom: 80px;
		background-size: auto 90%;
	}
	.content--proflow ,
	.content--prices {
		background-size: 100% auto;
	}	
	.content__inner {
		padding: 60px 15px;
	}
}


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

 メインコンテンツ main

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

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

.breadcrumb {
	clear: both;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
	color: var(--color-gray-600);
	font-size: .875rem;
}
.breadcrumb li {
	display: inline-block;
	margin-right: .5em;
}
.breadcrumb li a {
	display: inline-block;
	text-decoration: none;
}
.breadcrumb li:first-child a::before {
	content: '';
	display: inline-block;
	width: 1em;
	height: 1em;
	margin-right: .5em;
	background: no-repeat center center url(./images/common/icon_home_min.png);
	background-size: contain;
}
.breadcrumb li:not(:first-child)::before {
	content: '';
	display: inline-block;
	width: 2em;
	height: 1px;
	margin-right: .5em;
	background-color: var(--color-text);
	vertical-align: middle;
}
.breadcrumb li:last-child {
	color: var(--color-primary);
	font-weight: 700;
}

@media only screen and (min-width: 768px) {

}


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

.pagination {
	clear: both;
	position: relative;
	margin-bottom: 40px;
	font-size: 1.125rem;
	font-family: "Cabin", sans-serif;
	text-align: center;
	line-height: 1.2;
}
.pagination span,
.pagination a {
	display: inline-block;
	width: auto;
	margin-right: .5em;
	padding: .5em 1em;
	border-radius: 50%;
}
.pagination a {
	display: inline-block;
	border: 1px solid var(--color-solid);
	background-color: var(--color-white);
	text-decoration: none;
}
.pagination a:hover {
	color: var(--color-white);
	background-color: var(--color-solid);
}
.pagination span {
	display: none;
}
.pagination .current {
	display: inline-block;
	border: 1px solid var(--color-tertiary);
	background-color: var(--color-tertiary);
	color: var(--color-white);
}


/* ボタン
-----------------------------------------------------------*/

.btn_list--burger ,
.btn_list--map {
	display: flex;
	gap: 10px;
	margin-bottom: 30px;
}

.btn_list li:not(:last-child) {
	margin-bottom: 20px;
}

.btn_list--burger li ,
.btn_list--map li {
	width:calc((100% - 10px) / 2);
	margin-bottom: 0;
}
.btn_list a {
	display: block;
	padding: 10px 5px;
	border-radius: 50vh;
	background-color: var(--color-primary);
	color: var(--color-white);
	text-align: center;
	text-decoration: none;
}
.btn_list a:hover {
	opacity: .65;
}
.btn_list .label {
	display: block;
	line-height: 1.2;
}
.btn_list .label span {
	font-size: 80%;
}
.btn_list--contact .label ,
.btn_list--company .label {
	font-size: min(1.525rem,5.5vw);
}
.btn_list .text {
	display: block;
	padding-bottom: .5em;
	line-height: 1;
}

.btn_list .grade a {
	padding: 15px 5px;
	background-image: linear-gradient( 0deg, rgb(133,218,231) 0%, rgb(133,218,231) 1%, rgb(108,161,214) 38%, rgb(76,140,203) 66%, rgb(67,112,199) 100%);
	box-shadow: 0px 0px 16px rgba(176, 185, 189, 0.8);
}

.btn_list .tel .label::before {
	display: inline-block;
	content: '';
	width: 1.5em;
	height: 1.5em;
	margin-right: .25em;
	margin-bottom: .1em;
	background: no-repeat center center;
	background-image: url(./images/common/icon_tel_wh.svg);
	background-size: 75% auto;
	vertical-align: middle;
}
.btn_list .mail a {
	background-color: var(--color-quaternary);
}
.btn_list .mail .label::before {
	display: inline-block;
	content: '';
	width: 1.5em;
	height: 1.5em;
	margin-right: .25em;
	margin-bottom: .1em;
	background: no-repeat center center;
	background-image: url(./images/common/icon_main_wh.svg);
	background-size: 75% auto;
	vertical-align: middle;
}
.btn_list .pamph a {
	background-color: var(--color-tertiary);
}
.btn_list .pamph .label::before {
	display: inline-block;
	content: '';
	width: 1.5em;
	height: 1.5em;
	margin-right: .25em;
	margin-bottom: .1em;
	background: no-repeat center center;
	background-image: url(./images/common/icon_doc.png);
	background-size: auto 80%;
	vertical-align: middle;
}
.btn_list .map a ,
.btn_list .root a {
	border: 1px solid var(--color-tertiary);
	background-color: var(--color-white);
	color: var(--color-tertiary);
}
.btn_list .map a:hover ,
.btn_list .root a:hover {
	background-color: var(--color-bg-lbu);
}
.btn_list .map .label::before {
	display: inline-block;
	content: '';
	width: 1.5em;
	height: 1.5em;
	margin-right: .25em;
	margin-bottom: .1em;
	background: no-repeat center center;
	background-image: url(./images/common/icon_mappin.svg);
	background-size: auto 80%;
	vertical-align: middle;
}
.btn_list .root .label::before {
	display: inline-block;
	content: '';
	width: 1.5em;
	height: 1.5em;
	margin-right: .25em;
	margin-bottom: .1em;
	background: no-repeat center center;
	background-image: url(./images/common/icon_maphito.svg);
	background-size: auto 80%;
	vertical-align: middle;
}

@media only screen and (min-width: 768px) {
	.btn_list {
		display: flex;
		gap: 20px;
	}
	.btn_list--contact {
		justify-content: center;
	}
	.btn_list li {
		width: calc((100% - 40px) / 3);
	}
	.btn_list--sepa02 li ,
	.btn_list--map li {
		width: calc((100% - 20px) / 2);
	}
	.btn_list .mail a {
		padding-top: calc(10px + .7em);
		padding-bottom: calc(10px + .7em);
		background-color: var(--color-quaternary);
	}
}


p.btn_box {
	clear: both;
	margin: 0;
	padding: 30px 0 0;
	text-align: center;
}

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

.btn_box.btn_box--min a ,
.btn_box.btn_box--min label {
	width: 200px;
	max-width: 100%;
	padding: 5px 5px;
	font-size: inherit;
}

/* 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(./image/common/icon_sns_linewh.svg) no-repeat;
	background-size: cover;
	vertical-align: middle;
}


/* cta
-----------------------------------------------------------*/

.cta {
	max-width: 560px;
	margin: 0 auto;
	padding: 0;
	text-align: center;
}
.cta__catch {
	position: relative;
	display: inline-block;
	margin-bottom: .5em;
	padding: 0 .5em;
	margin-bottom: .5em;
	color: var(--color-primary);
	font-size: min(1.25rem,3.5vw);
	line-height: 1.2;
}
.cta__catch::before ,
.cta__catch::after {
	position: absolute;
	content: '';
	top: .1em;
	width: 1px;
	height: 100%;
	background-color: var(--color-primary);
}
.cta__catch::before {
	left: 0;
	transform:rotate(-25deg);
}
.cta__catch::after {
	right: 0;
	transform:rotate(25deg);
}
.cta a {
	position: relative;
	display: block;
	padding: .5em;
	border-radius: 50ch;
	background-image: linear-gradient(-90deg, rgb(225,114,122) 0%, rgb(239,146,113) 49%, rgba(241,160,77,0.99608) 100%);
	box-shadow: 0 0 15px rgba(0,0,0,.3);
	color: var(--color-white);
	font-size: min(1.6875rem,5.5vw);
	text-align: center;
	text-decoration: none;
}
.cta a:hover {
	opacity: .5;
}
.cta a::before ,
.cta a::after {
	position: absolute;
	content: '';
	bottom: 0;
	width: 4rem;
	height: 5rem;
	background: no-repeat center bottom;
	background-size: contain;
}
.cta a::before {
	left: 1em;
	background-image: url(./images/common/cat_img01.png);
}
.cta a::after {
	right: 1em;
	background-image: url(./images/common/cat_img02.png);
}
@media only screen and (min-width: 768px) {
	.cta a::before ,
	.cta a::after {
		width: 5rem;
		height: 6.5rem;
	}
}


/* 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

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

.entry_area {
	margin-bottom: 20px;
	padding: 20px 15px;
	border-radius: 15px;
	background-color: var(--color-white);
	box-shadow: 0px 0px 16px 4px rgba(215, 229, 235, 0.7);
}

.cate_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	margin-bottom: 40px;
}
.cate_list li {
	width: 100%;
}
.cate_list a {
	position: relative;
	display: block;
	padding: 20px 10px 20px 80px;
	border-radius: 15px;
	background-color: var(--color-bg-yw);
	box-shadow: 0px 0px 16px 4px rgba(215, 229, 235, 0.7);
	text-decoration: none;
	line-height: 1.2;
}
.cate_list a::before {
	position: absolute;
	content: '';
	left: 15px;
	top: calc(50% - 25px);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: no-repeat center center;
	background-color: var(--color-white);
	background-size: 60% auto;
}
.cate_list .blog a::before {
	background-image: url(./images/common/icon_blog.png);
}
.cate_list .news a::before {
	background-image: url(./images/common/icon_info.svg);
}
.cate_list .follow-up a::before {
	background-image: url(./images/common/icon_seminar.svg);
}
.cate_list a::after {
	position: absolute;
	display: block;
	content: '';
	top: calc(50% - .75rem);
	right: 15px;
	width: .75em;
	height: 1.5em;
	background: no-repeat;
	background-image: url(./images/common/icon_arrow03.svg);
	background-size: 100% auto;
	transition: 0.4s;
}
.cate_list .ja {
	display: block;
	font-weight: 1.125rem;
	font-weight: bold;
}
.cate_list .en {
	display: block;
	margin-top: 2px;
	color: var(--color-tertiary);
	font-size: .875rem;
	font-family: "Cabin", sans-serif;
}
@media only screen and (min-width: 768px) {
	.cate_list {
		gap: 20px;
	}
	.cate_list li {
		width: 360px;
	}
}


/* スケジュール一覧表示
-----------------------------------------------------------*/

.fp-schedule__lsit > li {
	border-bottom: 1px solid var(--color-solid);
}
.fp-schedule__inner {
	display: block;
	padding-top: 1em;
	padding-bottom: 1em;
	text-decoration: none;
}
.fp-schedule__info {
	display: flex;
	margin-bottom: .5em;
	gap: 15px;
}
.fp-schedule__info .data_box {
	margin-bottom: .25em;
	color: var(--color-secondary);
}
.fp-schedule__info .number {
	flex: 1;
}
.fp-schedule__content .caption {
	display: inline-block;
	margin-bottom: .25em;
	padding: .15em .5em;
	background-color: var(--color-bg-lbu);
	color: var(--color-text);
	font-size: .875rem;
	text-decoration: none;
}
.fp-schedule__content ul {
	padding-left: 30px;
	text-align: left;
}
.fp-schedule__content ul li {
	list-style-type: disc;
}
.fp-schedule__btn {
	margin-top: .5em;
	text-align: center;
}
.fp-schedule__btn .btn {
	display: inline-block;
	width: 80%;
	padding: .25em 1em;
	border-radius: 50vh;
	background: var(--color-tertiary);
	color: var(--color-white);
	text-align: center;
	text-decoration: none;
}
@media only screen and (min-width: 768px) {
	.fp-schedule__inner {
		display: flex;
		align-items: center;
		gap: 2%;
	}
	.fp-schedule__info {
		flex: 1;
		display: block;
		margin-bottom: .5em;
		text-align: center;
	}
	.fp-schedule__content {
		flex: 2;
	}
	.fp-schedule__btn {
		width: 10em;
		margin-top: 0;
	}
}

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

.entry-vertical__list dt {
	margin-bottom: .25em;
	color: var(--color-tertiary);
	font-family: "Cabin", sans-serif;
}
.entry-vertical__list dd {
	margin-bottom: 1em;
	padding-bottom: 1em;
	border-bottom: 1px solid var(--color-solid);
}
.entry-vertical__list .cate_box {
	display: inline-block;
	line-height: 1.2;
}
.entry-vertical__list .cate_box a {
	display: inline-block;
	margin-right: .5em;
	padding: .15em .5em;
	background-color: var(--color-bg-lbu);
	color: var(--color-text);
	font-size: .875rem;
	text-decoration: none;
}
.entry-vertical__list dd a {
	position: relative;
	display: block;
	text-decoration: none;
}
.entry_area .entry-vertical__list dd a::after {
	position: absolute;
	content: '';
	top: calc(50% - .5rem);
	right: 5px;
	width: .5em;
	height: 1em;
	background: no-repeat center top url(./images/common/icon_arrow03.svg);
	background-size: contain;
}
@media only screen and (min-width: 768px) {
	.entry_area {
		padding: 40px;
	}
	.entry-vertical__list dt {
		clear: both;
		float: left;
		display: flex;
		width: 20em;
		margin: 0;
		padding: 1.5em 0 1.5em 1em;
	}
	.entry-vertical__list .data_box {
		display: inline-block;
		width: 7.5em;
	}
	.entry-vertical__list .cate_box {
		display: inline-block;
		width: 14em;
	}
	.entry-vertical__list dd {
		margin: 0;
		padding: 1.5em 1em 1.5em 20em;
	}
	.news .entry-vertical__list dd a::after {
		position: absolute;
		content: '';
		top: calc(50% - .5em);
		right: 0;
		width: 1.5em;
		height: 1em;
		background: no-repeat center top url(./images/common/icon_arrow02.svg);
		background-size: contain;
		transform:rotate(-90deg);
	}
}
@media only screen and (min-width: 1000px) {
	.news .entry-vertical__list dt {
		padding-left: calc((100% - 1000px) / 2);
	}
	.news .entry-vertical__list dd {
		padding-right: calc((100% - 1000px) / 2);
	}
}


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

.entry-card__list {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
.entry-card__list li {
	position: relative;
	flex-grow: 0;
	width: calc((100% - 15px) / 2);
}
.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: -4px;
	right: -4px;
}
.entry-card__list .cate_box a {
	display: inline-block;
	margin: 0 0 2px 0;
	padding: 4px 15px;
	background: var(--color-tertiary);
	color: var(--color-white);
	font-size: .75rem;
	text-decoration: none;
	vertical-align: middle;
}

.entry-card__list em {
	display: block;
	position: relative;
	overflow: hidden;
	height: 2.8em;
	margin: 8px 0 8px;
	line-height: 1.4;
}
.entry-card__list em::before ,
.entry-card__list em::after {
	position: absolute;
	background-color: inherit;
}
.entry-card__list em::before {
	content: '\FF65\FF65\FF65';
	bottom: 0;
	right: 0;
	padding-left: 3px;
}
.entry-card__list em::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;
}

@media only screen and (min-width: 768px) {
	.entry-card__list {
		gap: 20px;
	}
	.entry-card__list li {
		width: calc((100% - 60px) / 4);
	}
}

@media only screen and (min-width: 1041px) {
	.entry-card__list li {
		width: calc((100% - 80px) / 5);
	}
}

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

 記事 single / page

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

.entry_content {
	line-height: 1.8;
}

.entry_title {
	margin-bottom: 20px;
	padding: 10px 8px 10px .75em;
	border-left: 4px solid var(--color-tertiary);
	color: var(--color-primary);
	font-size: min(2rem,6vw);
	text-align: left;
}


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

.entry_content .entry_info {
	display: flex;
	justify-content: flex-end;
	gap: 15px;
	margin-bottom: 20px;
	line-height: 1.2;
}
.entry_content .entry_info p {
	margin: 0;
}

.entry_content .cate_box a {
	display: inline-block;
	margin: 0 0 2px 0;
	padding: 4px 15px;
	background: var(--color-tertiary);
	color: var(--color-white);
	text-decoration: none;
	vertical-align: middle;
}

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

.entry_thumbs {
	margin-bottom: 40px;
}

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

.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: .5em;
	color: var(--color-primary);
	font-size: min(1.75rem,6vw);
}
.entry_content h2.title_line {
	padding: .5em 0;
	border-top: 1px solid var(--color-primary);
	border-bottom: 1px solid var(--color-primary);
	text-align: center;
}
.entry_content h2.title_circle {
	overflow: hidden;
	text-align: center;
}
.entry_content h2.title_circle em {
	position: relative;
	display: inline-block;
}
.entry_content h2.title_circle em::before ,
.entry_content h2.title_circle em::after {
	position: absolute;
	content: '';
	top: .75em;
	width: 200%;
	height: 1px;
	background-color: var(--color-primary);
}
.entry_content h2.title_circle em::before {
	left: -208%;
}
.entry_content h2.title_circle em::after {
	right: -208%;
}
.entry_content h2.title_circle::before {
	display: block;
	content: '';
	width: 2em;
	height: 2em;
	margin: 0 auto .25em;
	background: no-repeat url(./images/common/icon_title.svg);
	background-size: contain;
}

.entry_content h3 {
	margin-bottom: .75em;
	padding: .25em .5em;
	background-color: var(--color-tertiary);
	color: var(--color-white);
	font-size: min(1.5rem,5.5vw);
}

.entry_content h4 {
	margin-bottom: 1em;
	color: var(--color-primary);
	font-size: 1.25rem;
}



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

.entry_content table {
	min-width: 70%;
	margin: 10px 0 30px 10px;
	background-color: var(--color-white);
	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: 1.5em;
	padding-left: 30px;
	text-align: left;
}
.entry_content ul li {
	list-style-type: disc;
}

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


/* 引用  ------------------------------- */
/* 引用じゃないけど引用と同じデザインにしたい時 */
.entry_content blockquote ,
.quote_area {
	margin: 2em 0 2em;
	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;
}

/* もくじ [プラグイン] ------------------------------- */
#toc_container {
	width: 600px;
	max-width: 100%;
	margin: 0 auto 2em;
	padding: 1.5em;
	background: var(--color-white);
	border: none;
	box-shadow: 0px 0px 16px 4px rgba(215, 229, 235, 0.7);
}
.toc_list > li {
	font-size: min(1.25rem,3.5vw);
}
.toc_list > li li {
	font-size: min(1rem,3vw);
}
.toc_list > li::before {
	display: inline-block;
	content: '';
	width: 4px;
	height: 4px;
	margin-left: .4em;
	margin-right: .4em;
	border-radius: 50%;
	background-color: var(--color-secondary);
	vertical-align: middle;
}
@media only screen and (min-width: 768px) {

}

/* もくじ [ベタ] ------------------------------- */
.toc {
	max-width: 600px;
	margin: 0 auto 2em;
	padding: 1.5em;
	background: var(--color-white);
	box-shadow: 0px 0px 16px 4px rgba(215, 229, 235, 0.7);
}
.toc-title {
	font-weight: bold;
	margin-bottom: 0.5em;
	font-size: 1.1em;
}
.toc-list {
	counter-reset: item;
	margin: 0;
	padding-left: 1em;
}
.toc .toc-list ul {
	counter-reset: sub-item;
	margin-top: 0.3em;
	padding-left: 1em;
}
.toc .toc-list > ul li {
	position: relative;
	counter-increment: item;
	margin: 0.3em 0;
	list-style-type: none;
}
.toc .toc-list ul li {
	position: relative;
	counter-increment: sub-item;
	margin: 0.3em 0;
}
.toc .toc-list > li::before {
	content: counters(item, ".") ". ";
	position: absolute;
	left: -1.5em;
	color: #555;
}
.toc .toc-list ul li::before {
	content: "(" counter(sub-item) ") ";
	position: absolute;
	left: -1.5em;
	color: #555;
}


/* プロフ ------------------------------- */

.auther {
	max-width: 1040px;
	margin: 0 auto 2em;
	padding: 20px;
	background-color: var(--color-white);
	box-shadow: 0px 0px 16px 4px rgba(215, 229, 235, 0.7);
}
.auther__fig {
	margin-bottom: 15px;
}
.auther__head {
	margin-bottom: 1em;
	padding: .25em 0 .25em 1em;
	border-left: 4px solid var(--color-tertiary);
	color: var(--color-primary);
	font-size: min(1.125rem,5vw);
	line-height: 1.4;
}
.auther__head em {
	display: block;
}
.auther__head span {
	display: block;
	color: var(--color-tertiary);
	font-size: .875rem;
}
.auther .auther__text p {
	margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
	.auther {
		display: flex;
		gap: 30px;
		padding: 40px;
	}
	.auther__fig {
		width: 260px;
		max-width: 35%;
	}
	.auther__body {
		flex: 1;
	}
	.auther__body .btn_box {
		padding-top: 15px;
		text-align: right;
	}
}


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

/* 投稿画像 */
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;
}


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

.p_navi {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	max-width: 960px;
	margin: 0 auto 40px;
	text-align: center;
}
.p_navi li {
	width: calc((100% - 15px) / 2);
}
.p_navi .category {
	width: 100%;
}
.p_navi a {
	position: relative;
	display: block;
	padding: 10px;
	border: 1px solid var(--color-solid);
	background-color: var(--color-white);
	color: var(--color-tertiary);
	text-decoration: none;
}
.p_navi .next a::after ,
.p_navi .prev a::after {
	position: absolute;
	content: '';
	position: absolute;
	display: block;
	content: '';
	top: calc(50% - .5rem);
	right: 15px;
	width: .5em;
	height: 1em;
	background: no-repeat;
	background-image: url(./images/common/icon_arrow04.svg);
	background-size: 100% auto;
	transition: 0.4s;
}
.p_navi .next a::after {
	right: auto;
	left: 15px;
	transform:rotate(180deg);
}
.p_navi .category {
	display: inline-block;
}
.p_navi .category a {
	background-color: var(--color-primary);
	color: var(--color-white);
}
.p_navi a:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
}

@media only screen and (min-width: 768px) {
	.p_navi {
		display: block;
	}
	.p_navi li {
		width: 260px;
		max-width: 32%;
		min-height: 2em;
	}
	.p_navi .prev {
		float: right;
	}
	.p_navi .next {
		float: left;
	}
	
	.image_iblock {
		width: 44%;
		width: auto;
	}
}


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

 ページ

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

/* ページヘッド
-----------------------------------------------------------*/

.page_head {
	margin-bottom: 30px;
	padding: 30px 15px;
	background: no-repeat center center;
	background-size: 300% auto;
}
.page_head--service {
	background-image: url(./images/common/bg_title_service.jpg);
}
.page_head--voice {
	background-image: url(./images/common/bg_title_voice.jpg);
}
.page_head--about ,
.page_head--privacy ,
.page_head--follow-up ,
.page_head--privacy-policy ,
.page_head--sitemap {
	background-image: url(./images/common/bg_title_about.jpg);
}
.page_head--contact {
	background-image: url(./images/common/bg_title_contact.jpg);
}
.page_head--post {
	background-image: url(./images/common/bg_title_post.jpg);
}
.page_head .title_block {
	margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
	.page_head {
		margin-bottom: 40px;
		padding: 50px 15px;
		background-size: 100% auto;
	}
}


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

/* title */
.title_block {
	margin-bottom: 30px;
	color: var(--color-primary);
	text-align: center;
}
.title_block--dark {
	color: var(--color-text);
}
.title_block--line {
	padding: 20px 0;
	border-top: 1px solid var(--color-primary);
	border-bottom: 1px solid var(--color-primary);
}
.title_block--sideline {
	overflow: hidden;
}

.title_block--left {
	text-align: left;
}

.title_block h1 ,
.title_block h2 {
	line-height: 1.3;
}
.title_block .ja {
	display: block;
	font-size: min(1.6875rem,5.5vw);
	font-weight: normal;
}
.title_block .ja--small {
	display: block;
	font-size: min(1.25rem);
	font-weight: normal;
}
.title_block .ja--middle {
	display: block;
	font-size: min(2rem,6vw);
	font-weight: normal;
}
.title_block .ja--large {
	display: block;
	font-size: min(2.5rem,7vw);
	font-weight: normal;
}
.title_block .bold {
	font-weight: 700;
}
.title_block .en {
	display: inline-block;
	margin-top: .75em;
	color: var(--color-tertiary);
	font-size: .875rem;
	font-family: "Cabin", sans-serif;
	font-weight: normal;
}
.title_block .data {
	font-weight: normal;
}

.title_block .inline-wrap {
	display: inline-block;
}
.title_block .inline-wrap::after {
	display: inline-block;
	content: '';
	width: 3em;
	height: 1px;
	background-color: var(--color-primary);
}
.title_block .inline-wrap .ja--small ,
.title_block .inline-wrap .en {
	display: inline-block;
	padding-right: .5rem;
	vertical-align: middle;
}

.title_block--sideline .ja {
	position: relative;
	display: inline-block;
}
.title_block--sideline .ja::before ,
.title_block--sideline .ja::after {
	position: absolute;
	content: '';
	top: .75em;
	width: 500%;
	height: 1px;
	background-color: var(--color-primary);
}
.title_block--sideline .ja::before {
	left: -508%;
}
.title_block--sideline .ja::after {
	right: -508%;
}

.title_block .cta-wrap {
	position: relative;
	display: inline-block;
	padding: 0 5rem;
}
.title_block .cta-wrap::before ,
.title_block .cta-wrap::after {
	position: absolute;
	content: '';
	bottom: 0;
	width: 4rem;
	height: 5rem;
	background: no-repeat center bottom;
	background-size: contain;
}
.title_block .cta-wrap::before {
	left: 0;
	background-image: url(./images/common/cat_img01.png);
}
.title_block .cta-wrap::after {
	right: 0;
	background-image: url(./images/common/cat_img02.png);
}
@media only screen and (min-width: 768px) {
	.title_block .cta-wrap {
		padding: 0 7rem;
	}	
	.title_block .cta-wrap::before ,
	.title_block .cta-wrap::after {
		width: 5rem;
		height: 6.5rem;
	}
}

.title_block p {
	margin-top: 1.5em;
}

.title_block .title_ber {
	display: inline-block;
	padding: .25em 1em;
	border-radius: 50vh;
	background-color: #f6eedc;
	font-size: min(1.125rem,4vw);
	font-weight: 700;
}


/* title sub */

.title_sub {
	margin-bottom: 1em;
	line-height: 1.4;
}
.title_sub.about {
	padding-left: .5em;
	border-left: 4px solid var(--color-tertiary);
}
.title_sub.kanren {
	margin-bottom: 1.5em;
	padding-bottom: .5em;
	border-bottom: 1px solid var(--color-gray-600);
}
.title_sub .en {
	display: inline-block;
	margin-bottom: .25em;
	color: var(--color-tertiary);
	font-size: .875rem;
	font-family: "Cabin", sans-serif;
	font-weight: normal;
}
.title_sub .ja--min {
	display: block;
	font-size: min(1rem,4vw);
}
.title_sub .ja--small {
	display: block;
	font-size: min(1.25rem,4vw);
}
.title_sub .ja--small2 {
	display: block;
	font-size: min(1.25rem,4vw);
	font-weight: normal;
}
.title_sub .ja {
	display: block;
	font-size: min(1.6875rem,5.5vw);
	font-weight: normal;
}
.title_sub .ja--big {
	display: block;
	font-size: min(2rem,5.5vw);
	font-weight: normal;
}
.title_sub .bold {
	font-weight: 700;
}

@media only screen and (min-width: 768px) {
	.title_block {
		margin-bottom: 60px;
	}
	.title_block--line {
		padding: 25px 0;
	}
	.title_block--sideline {
		margin-bottom: 40px;
	}
}


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

.tbl {
	width: 100%;
	margin: 0 auto;
	border-collapse: collapse;
}
.tbl th {
	padding: 18px 10px;
	border-bottom: 1px solid var(--color-solid);
	text-align: center;
	color: var(--color-tertiary);
	white-space: nowrap;
}
.tbl td {
	padding: 18px 10px;
	border-bottom: 1px solid var(--color-solid);
}
.tbl tr:last-child th ,
.tbl tr:last-child td {
	border: none;
}

.tbl td a {
	display: inline-block;
	color: var(--color-quaternary);
	text-decoration: none;
}
.tbl td a::after {
	content: '';
	display: inline-block;
	width: 1em;
	height: 1em;
	margin-left: .5em;
	background: no-repeat url(./images/common/icon_otherwin.png);
	background-size: contain;
}

.tbl td .btn_box a {
	color: var(--color-white);
}
.tbl td .btn_box a::after {
	content: none;
}

table.tbl--schedule {
	margin: 0 0 30px;
	min-width: 60%;
	background-color: var(--color-white);
	border-collapse: collapse;
	text-align: left;
}
.tbl--schedule th {
	padding: 10px;
	border: 1px solid var(--color-gray-200);
	color: var(--color-tertiary);
	font-weight: bold;
	text-align: center;
}
.tbl--schedule td {
	padding: 10px;
	border: 1px solid var(--color-gray-200);
}

.tbl--schedule ul {
	padding-left: 30px;
	text-align: left;
}
.tbl--schedule ul li {
	list-style-type: disc;
}


@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;
	}
	.tbl--schedule {
		border-bottom: 1px solid var(--color-gray-200);
	}
	.tbl--schedule tr , .tbl--schedule th, .tbl--schedule td {
		display: block;
	}
	table.tbl--schedule th {
		padding-bottom: 0;
		border-bottom: none;
		text-align: left;
	}
	table.tbl--schedule td {
		padding-top: 10px;
		border-bottom: none;
	}
	table.tbl--schedule td:not(:last-child) {
		padding-bottom: 0;
	}
	table.tbl--schedule td:not(:first-child) {
		border-top: none;
	}
}


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

.check_list li {
	position: relative;
	padding: .75em 0 .75em 1.5em;
}
.check_list li:not(:last-child) {
	border-bottom: 1px dashed var(--color-gray-200);
}
.check_list li::before {
	position: absolute;
	content: '';
	top: 1em;
	left: 0;
	width: 1.1em;
	height: 1.1em;
	background: no-repeat left top url(./images/common/icon_check.png);
	background-size: 100% auto;
}

.arrow_list li {
	position: relative;
	padding-left: 1.5em;
}
.arrow_list li::before {
	position: absolute;
	content: '';
	top: .5em;
	left: 0;
    width: .4em;
    height: .4em;
    border-bottom: 2px solid var(--color-secondary);
    border-right: 2px solid var(--color-secondary);
    transform: rotate(-45deg);
}

.dot_list li {
	position: relative;
	padding-left: 1.5em;
}
.dot_list li::before {
	position: absolute;
	content: '';
	top: .75em;
	left: .5em;
    width: .4em;
    height: .4em;
	border-radius: 50%;
	background-color: var(--color-secondary);
}
.dot_list--or li::before {
	background-color: var(--color-quaternary);
}


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

.text_block {
	line-height: 2;
}
.text_block--large {
	font-size: min(1.125rem);
}
.text_block--contact {
	margin-bottom: 40px;
	font-size: min(1.125rem);
	text-align: center;
}
.text_block p {
	margin-bottom: 1.8em;
}
.text_block p:last-child {
	margin-bottom: .4em;
}

@media only screen and (min-width: 768px) {
	.text_block--contact {
		margin-bottom: 60px;
	}
}

.color--or {
	color: var(--color-quaternary);
}
.color--sky {
	color: var(--color-tertiary);
}
.color--rd {
	color: var(--color-dred);
}

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

.text_bg--grade {
	display: inline-block;
	margin-bottom: .25em;
	padding: .25em .5em;
	background-image: linear-gradient(90deg, rgba(241,160,77,0.99608) 0%, rgb(239,146,113) 49%, rgb(225,114,122) 100%);	
	color: var(--color-white);
}

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


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

.mark_list li {
	margin-bottom: .5em;
	padding-left: 1em;
	text-indent: -1em;
}


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

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

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

.image__list {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
.image__list li {
	flex-grow: 0;
	width: 100%;
}
.image__list.sepa03 li ,
.image__list.sepa04 li {
	width: calc((100% - 15px) / 2);
}
.image__list p {
	margin-top: 1em;
}

@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;
	}
	.image__list {
		gap: 40px;
	}
	.image__list.sepa03 ,
	.image__list.sepa04 {
		gap: 30px;
	}
	.image__list li {
		width: calc((100% - 40px) / 2);
	}
	.image__list.sepa01 li {
		width: 70%;
	}
	.image__list.sepa03 li {
		width: calc((100% - 60px) / 3);
	}
	.image__list.sepa04 li {
		width: calc((100% - 90px) / 4);
	}
}



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

 index

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

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

.cover {
	padding-top: 100px;
}
.cover__inner {
	position: relative;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
	color: var(--color-primary);
}

.cover__catch {
	position: relative;
	z-index: 20;
}
.cover__catch .catch02 {
	display: inline-block;
	width: 12em;
	padding: .4em 0 1.4em;
	background: no-repeat center top url(./images/home/cover_fuki_sp.svg);
	background-size: contain;
	font-size: min(1.6875rem,4vw);
	font-weight: 500;
	text-align: center;
	line-height: 1.2;
}
.cover__catch .catch01 {
	margin-bottom: .75em;
	line-height: 1.4;
	font-size: min(4rem,6vw);
	font-weight: 500;
	letter-spacing: -.05em;
	font-feature-settings: "palt";
}
.cover__catch .catch01 em {
	color: var(--color-secondary);
}

.circle-catch_list {
	display: flex;
	gap: 10px;
}
.circle-catch_list li {
	width: calc((100% - 20px) / 3);
}
.circle-catch_list .circle {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	aspect-ratio: 1/1;
	border-radius: 50%;
	border: 1px solid var(--color-secondary);
	background: no-repeat center center url(./images/home/cover_circle_bg.jpg);
	background-size: cover;
	box-shadow: 0px 0px 16px 4px rgba(215, 229, 235, 0.7);
	text-align: center;
}
.circle-catch_list .point {
	display: inline-block;
	margin-bottom: .5em;
	padding: 0 1em;
	border-radius: 50vh;
	background-image: linear-gradient( 0deg, rgb(32,156,255) 0%, rgb(54,173,235) 51%, rgb(117,176,255) 100%);
	color: var(--color-white);
	font-size: .875rem;
	font-family: "Cabin", sans-serif;
}
.circle-catch_list .text {
	font-size: min(1.25rem,3.5vw);
	line-height: 1.4;
}

.cover__images {
	position: relative;
	z-index: 10;
}
.cover__images::before ,
.cover__images::after {
	position: absolute;
	content: '';
	width: 60%;
	height: 55%;
	background: no-repeat center center url(./images/home/cover_kira.svg);
}
.cover__images::before {
	top: -5%;
	left: -15%;
}
.cover__images::after {
	bottom: 60px;
	right: -20%;
}
.cover__images .image {
	position: relative;
	z-index: 11;
}
.cover__images .image::before {
	position: absolute;
	content: '';
	top: -18px;
	left: 0;
	width: 100%;
	height: 100%;
	background: no-repeat left top;
	background-image: url(./images/home/cover_frame_bg.svg);
	background-size: contain;
	z-index: -1;
}
.cover__images .image::after {
	position: absolute;
	content: '';
	left: -7%;
	bottom: 2%;
	width: 140%;
	height: 60%;
	background: no-repeat left bottom;
	background-image: url(./images/home/covre_re.png);
	background-size: contain;
	z-index: 12;
}
.cover__images .image img {
	position: relative;
	clip-path: url(#cloudFrame);
	z-index: 11;
}

.cover .cta {
	position: relative;
	z-index: 20;
}

@media only screen and (max-width: 767px) {
	.cover__catch {
		margin-bottom: 15px;
	}
	.cover__images {
		position: absolute;
		top: 0;
		right: -10%;
		width: 55%;
	}
	.cover__images .image::after {
		position: absolute;
		content: '';
		left: 4%;
		bottom: 8%;
		width: 120%;
		height: 50%;
	}
	.circle-catch_list {
		margin-left: -10px;
		margin-right: -10px;
	}
}
@media only screen and (min-width: 768px) {
	.cover {
		padding-top: 180px;
	}
	.cover__inner {
		display: flex;
		align-items: flex-end;
	}
	.cover__catch {
		width: 52%;
	}
	.cover__images {
		width: 48%;
	}
	.cover__catch .catch02 {
		width: 18em;
		margin-bottom: .5em;
		padding: .5em 0 1.2em;
		background-image: url(./images/home/cover_fuki.svg);
	}
}


/* vacancy
-----------------------------------------------------------*/

.vacancy {
	overflow: hidden;
	border: 1px solid var(--color-primary);
	background-color: var(--color-white);
	border-radius: 15px;
	color: var(--color-primary);
}
.vacancy .title_block {
	margin-bottom: 0;
	padding: 20px;
	background-color: var(--color-bg-base);
}
.vacancy__body {
	padding: 20px 10px;
	text-align: center;
}
.vacancy__data {
	padding-bottom: .25em;
	border-bottom: 1px solid var(--color-primary);
	font-size: min(1.6875rem,7vw);
	line-height: 1.2;
}
.vacancy_status {
	font-size: min(3.125rem,12vw);
	line-height: 1.2;
}

@media only screen and (min-width: 768px) {
	.vacancy {
		display: flex;
		align-items: stretch;
	}
	.vacancy .title_block {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 40%;
	}
	.vacancy__body {
		flex: 1;
		padding: 20px 40px;
	}
}



/* 不安
-----------------------------------------------------------*/

.huan__list {
	position: relative;
	margin-bottom: 120px;
}
.huan__list::after {
	position: absolute;
	content: '';
	bottom: -80px;
	left: calc(50% - 100px);
	width: 200px;
	height: 60px;
	background: no-repeat center bottom;
	background-image: url(./images/home/arrow_pink.svg);
	background-size: cover;
}

.huan__list .text {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 0;
	background: no-repeat center center;
	background-size: 100% auto;
	color: var(--color-white);
	font-size: min(1.25rem,4vw);
	text-align: center;
}
.huan__list .text em {
	color: #fff4c5;
}
.huan__list li:nth-child(1) .text {
	aspect-ratio: 7 / 4;
	background-image: url(./images/home/huan_bg01.png);
}
.huan__list li:nth-child(2) .text {
	aspect-ratio: 7 / 5;
	background-image: url(./images/home/huan_bg02.png);
}
.huan__list li:nth-child(3) .text {
	aspect-ratio: 7 / 4;
	background-image: url(./images/home/huan_bg03.png);
}
.huan__list li:nth-child(4) .text {
	aspect-ratio: 7 / 5;
	background-image: url(./images/home/huan_bg04.png);
}

@media only screen and (max-width: 767px) {
	.huan__list li {
		display: flex;
		align-items: center;
		margin-bottom: -10px;
	}
	.huan__list li:nth-child(odd) {
		padding-right: 10%;
		flex-direction: row-reverse;
	}
	.huan__list li:nth-child(even) {
		padding-left: 10%;
	}
	.huan__list .fig {
		position: relative;
		width: 80px;
		z-index: 2;
	}
	.huan__list li:nth-child(odd) .fig img {
		margin-left: -20px;
	}
	.huan__list li:nth-child(even) .text {
		margin-left: -20px;
	}
}
@media only screen and (min-width: 768px) {
	.huan__list {
		display: flex;
		align-items: center;
		margin-bottom: 160px;
	}
	.huan__list::after {
		bottom: -120px;
		left: calc(50% - 130px);
		width: 260px;
		height: 80px;
	}
	.huan__list li {
		width: 25%;
	}
	.huan__list .fig {
		position: relative;
		margin-bottom: -40px;
		text-align: center;
		z-index: 2;
	}
	.huan__list li:nth-child(even) .fig {
		margin-bottom: -50px;
	}
	.huan__list .fig img {
		width: auto;
		height: 100px;
	}
	.huan__list li:nth-child(odd) .fig img {
		height: 120px;
	}
}


.anshin {
	max-width: 850px;
	margin: 0 auto;
}
.anshin__fig {
	position: relative;
	width: 30%;
	margin: 0 auto;
}
.anshin__fig .fig {
	display: block;
	padding-right: 20px;
}
.anshin__fig .text {
	position: absolute;
	top: -30px;
	right: -80px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 120px;
	height: 120px;
	background: no-repeat center center;
	background-image: url(./images/home/huan_anshin_bg.png);
	background-size: contain;
	color: var(--color-pink);
	z-index: -1;
}
.anshin__text {
	font-size: min(2.25rem,5.5vw);
	text-align: center;
}

@media only screen and (min-width: 768px) {
	.anshin {
		display: flex;
		align-items: flex-end;
	}
	.anshin__fig {
		width: 25%;
	}
	.anshin__fig .fig {
		padding-right: 40%;
	}
	.anshin__fig .text {
		top: -50px;
		right: -20px;
		width: 160px;
		height: 160px;
		font-size: 1.25rem;
	}
	.anshin__text {
		flex: 1;
		text-align: left;
		line-height: 1.2;
	}
}


/* support
-----------------------------------------------------------*/

.support-fig_list li:nth-child(1) {
	padding-left: 10%;
}
.support-fig_list li:nth-child(2) {
	margin-top: -30px;
	padding-right: 40%;
}
@media only screen and (min-width: 768px) {
	.support .btn_box {
		text-align: left;
	}
}


/* content
-----------------------------------------------------------*/

@media only screen and (max-width: 767px) {
	.content_area > *:not(:last-child) {
		margin-bottom: 20px;
	}
}
@media only screen and (min-width: 768px) {
	.content_area.flex {
		display: flex;
		gap: 50px;
	}
	.content_area.reverse {
		flex-direction: row-reverse;
	}
	.content_area .fig_block {
		width: calc(50% - 50px);
	}
	.content_area .text_block {
		flex: 1;
	}
	.content_area.support .text_block {
		font-size: 1.125rem;
	}
}


/* feature
-----------------------------------------------------------*/

.feature__item:not(:last-child) {
	margin-bottom: 40px;
}
.feature__fig {
	position: relative;
	margin-bottom: 40px;
}
.feature__fig.illust::before ,
.feature__fig::after {
	position: absolute;
	content: '';
}
.feature__fig::before {
	left: -10px;
	bottom: -10px;
	width: 40%;
	height: 80%;
	background: no-repeat left bottom;
	background-size: 100% auto;
}
.feature__item--actual .feature__fig::before {
	background-image: url(./images/home/reason_illust01.png);
}
.feature__item--program .feature__fig::before {
	width: 55%;
	background-image: url(./images/home/reason_illust02.png);
}
.feature__item--support .feature__fig::before {
	background-image: url(./images/home/reason_illust03.png);
}
.feature__fig::after {
	right: -10px;
	bottom: -50px;
	width: 70%;
	height: 80%;
	background: no-repeat left bottom;
	background-size: 100% auto;
}
.feature__item--actual .feature__fig::after {
	background-image: url(./images/home/reason_en01.png);
}
.feature__item--program .feature__fig::after {
	bottom: -40px;
	width: 98%;
	background-image: url(./images/home/reason_en02.png);
}
.feature__item--support .feature__fig::after {
	width: 65%;
	background-image: url(./images/home/reason_en03.png);
}
.feature__item .title_sub .ja {
	color: var(--color-primary);
}

@media only screen and (min-width: 768px) {
	.feature__item {
		display: flex;
		gap: 40px;
	}
	.feature__item:nth-child(odd) {
		flex-direction: row-reverse;
	}
	.feature__fig {
		width: 50%;
	}
	.feature__fig::before {
		bottom: -12px;
		width: 32%;
	}
	.feature__item--program .feature__fig::before {
		width: 42%;
	}
	.feature__fig::after {
		bottom: -30px;
		width: 50%;
	}
	.feature__item--program .feature__fig::after {
		bottom: -30px;
		width: 60%;
	}
	.feature__item--support .feature__fig::after {
		width: 38%;
	}
	.feature__text {
		flex: 1;
	}
}


/* selected
-----------------------------------------------------------*/

.selected__list {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 15px;
}
.selected__list li {
	width: calc((100% - 15px) / 2);
	padding: 20px 15px;
	border-radius: 15px;
	background-color: var(--color-white);
	box-shadow: 0px 0px 21px 9px rgba(203, 208, 210, 0.3);
}
.selected__fig {
	margin-bottom: .5em;
	text-align: center;
}
.selected__fig img {
	width: auto;
	height: 4em;
}
.selected__text h3 {
	margin-bottom: .5em;
	margin-left: .5em;
	margin-right: -.5em;
	color: var(--color-quaternary);
	text-align: center;
	line-height: 1.4;
}

@media only screen and (min-width: 768px) {
	.selected__list {
		display: flex;
		flex-wrap: wrap;
		align-items: stretch;
		gap: 20px;
	}
	.selected__list li {
		width: calc((100% - 60px) / 4);
		padding: 30px 25px;
		border-radius: 20px;
	}
}


/* service
-----------------------------------------------------------*/

.service__item {
	overflow: hidden;
	margin-bottom: 20px;
	border-radius: 15px;
	background-color: var(--color-white);
	box-shadow: 0px 0px 21px 9px rgba(203, 208, 210, 0.3);
}
.service__body {
	padding: 15px;
}
.service__body .title_sub {
	position: relative;
	padding-left: .5em;
	border-left: 4px solid var(--color-primary);
	color: var(--color-primary);
}
.service__body .title_sub label {
	display: block;
}
.service__body p {
	margin-bottom: .5em;
}

.service-btn__list {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
.service-btn__list li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 15px;
	width: calc((100% - 15px) / 2);
	border-radius: 15px;
	background-color: var(--color-bg-yw);
}
.service-btn__list .icon {
	display: block;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: var(--color-white);
	line-height: 56px;
	text-align: center;
}
.service-btn__list .icon img {
	width: 36px;
	vertical-align: middle;
}
.service-btn__list .label {
	display: block;
	line-height: 1.2;
}

/* voice */
.staff-voice {
	margin-bottom: 40px;
}
.staffSwiper .swiper-slide {
	padding: 0 20px 20px;
	border-radius: 15px;
	background-color: var(--color-bg-yw);
}
.staff-voice__head {
	position: relative;
	margin-bottom: 1em;
	padding-left: 85px;
	border-bottom: 1px solid var(--color-solid);
}
.staff-voice__head .fig {
	position: absolute;
	top: -10px;
	left: -10px;
	width: 80px;
}
.staff-voice__head .from {
	padding: .95em 0;
	font-size: min(1.25rem,5vw);
}

/* swiper */
.swiper-wrapper {
	margin-bottom: 40px;
}

/* 高さそろえ */
.staffSwiper .swiper-wrapper {
	height: auto !important;
	align-items: stretch !important;
	padding-top: 10px;
}
.staffSwiper .swiper-slide {
	height: auto !important;
}

/* pagination/navigation */
.staffSwiper .swiper-pagination {
	display: inline-block;
}
.staffSwiper .swiper-pagination-bullet {
	background-color: var(--color-tertiary);
}
.staffSwiper .swiper-button-next ,
.staffSwiper .swiper-button-prev {
	top: -1em;
	width: 2em;
	height: 2em;
	border-radius: 50%;
	background-color: var(--color-primary);
}
.staffSwiper .swiper-button-next:after ,
.staffSwiper .swiper-button-prev:after {
  color: var(--color-white);
  font-size: 1rem;
}


@media only screen and (max-width: 767px) {
	/* OPEN/CLOSE */
	.service__body .title_sub label::after {
		position: absolute;
		display: block;
		content: '';
		top: calc(50% - .75em);
		right: 0;
		width: 2em;
		height: 1.5em;
		background: no-repeat;
		background-image: url(./images/common/icon_arrow02.svg);
		background-size: 100% auto;
		transition: 0.4s;
	}
	.service__body .service__inner {
		position: relative;
		opacity: 0;
		height: 0;
		transition: 0.4s;
	}
	.service__body .vibtn:checked ~ .service__inner {
		display: block;
		height: auto;
		opacity: 1;
		padding-bottom: 15px;
	}
	.service__body .vibtn + .title_sub {
		margin-bottom: 0;
	}
	.service__body .vibtn:checked + .title_sub {
		margin-bottom: 1em;
	}
	.service__body .vibtn:checked + .title_sub label::after {
		transform:rotate(180deg);
	}
	.staffSwiper .control-box {
		position: relative;
		text-align: center;
	}	
}
@media only screen and (min-width: 768px) {
	.service {
		display: flex;
		flex-wrap: wrap;
		gap: 30px;
		margin-bottom: 40px;
	}
	.service__item {
		margin-bottom: 0px;
	}
	.service__item:not(.wide) {
		width: calc((100% - 30px) / 2);
	}
	.service__item.wide {
		width: 100%;
		display: flex;
	}
	.service__body {
		padding: 40px;
	}
	.service__fig {
		width: 500px;
		max-width: 40%;
	}
	.service__body {
		flex: 1;
	}
	.service-btn__list {
		gap: 20px;
	}
	.service-btn__list li {
		padding: 20px;
		width: calc((100% - 60px) / 4);
	}
}


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

.staff__message {
	margin-bottom: 30px;
}
.staff__imgae .image {
	position: relative;
	z-index: 10;
}
.staff__imgae .image::before {
	position: absolute;
	content: '';
	top: 20px;
	left: -15px;
	width: 100%;
	height: 100%;
	background: no-repeat left top;
	background-image: url(./images/home/staff_img_bg.svg);
	background-size: contain;
	z-index: -11;
}
.staff__imgae .image img {
	position: relative;
	clip-path: url(#staffFrame);
	z-index: 11;
}

.staff__head {
	margin-bottom: 1em;
}
.staff__head .title {
	position: relative;
	margin-bottom: .5em;
	color: var(--color-quaternary);
	font-size: min(1.5rem,6vw);
	font-weight: normal;
}
.staff__head .title::before ,
.staff__head .title::after {
	position: absolute;
	opacity: .3;
	font-size: min(5.75rem ,16vw);
	line-height: .5;
}
.staff__head .title::before {
	content: '“';
	top: -.25em;
	left: 0;
}
.staff__head .title::after {
	content: '”';
	bottom: -.25em;
	right: 0;
}
.staff__head .caption {
	color: var(--color-tertiary);
	font-size: min(1.25rem,4.7vw);
}

.jobtype-list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 40px;
}
.jobtype-list li {
	width: calc((100% - 15px) / 2);
	padding: 10px;
	border-radius: 10px;
	text-align: center;
}

@media only screen and (max-width: 767px) {
	.jobtype-list li:nth-child(1) ,
	.jobtype-list li:nth-child(4) ,
	.jobtype-list li:nth-child(5) ,
	.jobtype-list li:nth-child(8) ,
	.jobtype-list li:nth-child(9) {
		background-color: var(--color-bg-lbu);
	}
	.jobtype-list li:nth-child(2) ,
	.jobtype-list li:nth-child(3) ,
	.jobtype-list li:nth-child(6) ,
	.jobtype-list li:nth-child(7) ,
	.jobtype-list li:nth-child(10) ,
	.jobtype-list li:nth-child(11) {
		background-color: var(--color-bg-sbu);
	}
	.staff-voice {
		margin-left: -20px;
		margin-right: -20px;
	}
	.swiper.staffSwiper {
		width: 80%;
		margin: auto;
		overflow: visible;
	}
}
@media only screen and (min-width: 768px) {
	.staff__message {
		display: flex;
		gap: 50px;
	}
	.staff__imgae {
		width: 460px;
		max-width: 45%;
	}
	.staff__imgae .image {
		margin-top: -100px;
	}
	.staff__text {
		flex: 1;
	}
	.staff__head .title {
		display: inline-block;
	}
	.staff__head .title::before {
		top: 0;
		left: -.5em;
	}
	.staff__head .title::after {
		bottom: -.4em;
		right: -.4em;
	}
	.jobtype-list li {
		width: calc((100% - 60px) / 5);
	}
	.jobtype-list li:nth-child(odd) {
		background-color: var(--color-bg-lbu);
	}
	.jobtype-list li:nth-child(even) {
		background-color: var(--color-bg-sbu);
	}
}


/* voice
-----------------------------------------------------------*/

.voice__item {
	overflow: hidden;
	border-radius: 15px;
	border: 1px solid var(--color-primary);
	background-color: var(--color-white);
}

.voice__head label {
	position: relative;
	display: block;
	background-color: var(--color-bg-sbu);
}

.voice__body h4 {
	margin-bottom: 1em;
	padding-left: .5em;
	border-left: 4px solid var(--color-tertiary);
	color: var(--color-tertiary);
}
.voice__body p {
	margin-bottom: 1.5em;
}
.voice-return {
	background-color: var(--color-bg-base);
}

/* OPEN/CLOSE */
.voice__item .voice__head label::after {
	position: absolute;
	display: block;
	content: '';
	top: 3em;
	right: 20px;
	width: 2em;
	height: 1.5em;
	background: no-repeat;
	background-image: url(./images/common/icon_arrow02.svg);
	background-size: 100% auto;
	transition: 0.4s;
}
.voice__item .voice__body {
	position: relative;
	opacity: 0;
	height: 0;
	padding: 0;
	transition: 0.4s;
}
.voice__item .vibtn:checked ~ .voice__body {
	display: block;
	height: auto;
	opacity: 1;
}
.voice__item .vibtn:checked + .voice__head label::after {
	transform:rotate(180deg);
}

@media only screen and (max-width: 767px) {
	.voice__item:not(:last-child) {
		margin-bottom: 20px;
	}
	.voice__head label {
		padding: 15px;
	}
	.voice__head .prof_box {
		display: flex;
		align-items: center;
		gap: 15px;
		margin-bottom: 10px;
	}
	.voice__head .prof_box .icon {
		width: 80px;
	}
	.voice__head .prof_box .name {
		flex: 1;
		font-size: 4vw;
	}
	.voice__head .title_box {
		color: var(--color-primary);
		font-size: 4.25vw;
		font-weight: normal;
	}
	.voice__item .voice__body {
		padding: 0 15px;
	}
	.voice__item .vibtn:checked ~ .voice__body {
		padding: 15px 15px;
	}
	.voice-return__head {
		display: flex;
		align-items: center;
		gap: 15px;
		margin-bottom: 10px;
	}
	.voice-return {
		margin: 0 -15px -15px;
		padding: 15px;
	}
	.voice-return__head .fig {
		width: 80px;
	}
	.voice-return .caption {
		flex: 1;
		margin-bottom: 0;
		font-size: 4vw;
		font-weight: 600;
		color: var(--color-primary);
	}
}
@media only screen and (min-width: 768px) {
	.voice__item:not(:last-child) {
		margin-bottom: 40px;
	}
	.voice__head label {
		display: flex;
		align-items: center;
		gap: 20px;
		padding: 20px 50px;
	}
	.voice__head .prof_box {
		width: 120px;
	}
	.voice__head .title_box {
		flex: 1;
	}
	.voice__head .title_box .name {
		display: block;
		font-weight: normal;
	}
	.voice__head .title_box .title {
		color: var(--color-primary);
		font-size: 1.375rem;
		font-weight: normal;
	}
	.voice__item .voice__head label::after {
		top: calc(50% - 1em);
		right: 30px;
		width: 3em;
		height: 2em;
	}	
	.voice__item .voice__body {
		padding: 0 50px;
	}
	.voice__item .vibtn:checked ~ .voice__body {
		padding: 30px 50px 40px;
	}
	.voice-return {
		display: flex;
		gap: 20px;
		padding: 30px 30px;
	}
	.voice-return__head {
		width: 100px;
	}
	.voice-return__body {
		flex: 1;
	}
	.voice-return__body .caption {
		margin-bottom: 1em;
		font-size: 1.375rem;
		font-weight: 600;
		color: var(--color-primary);
	}

}



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

 service

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

/* schedule program
-----------------------------------------------------------*/

.schedule-image {
	padding: 20px;
	border-radius: 15px;
	background-color: var(--color-white);
	box-shadow: 0px 0px 21px 9px rgba(203, 208, 210, 0.3);
}

.program__block {
	overflow: hidden;
	margin-top: 30px;
	border-radius: 15px;
	background-color: var(--color-white);
	box-shadow: 0px 0px 21px 9px rgba(203, 208, 210, 0.3);
}
.program__head {
	padding: .5em;
	font-size: min(1.6875rem,5.5vw);
	color: var(--color-white);
	text-align: center;
	line-height: 1.2;
}
.orange .program__head {
	background-color: var(--color-quaternary);
}
.navy .program__head {
	background-color: var(--color-primary);
}
.program__body {
	padding: 0 20px 10px;
}

.weekly__head {
	text-align: center;
}
.weekly__head .caption {
	display: block;
	font-size: min(1.125rem,4vw);
	font-weight: 700;
}
.weekly__head .week {
	display: block;
	padding: 4px;
	border-radius: 6px;
}
.orange .weekly__head .week {
	background-color: #efe9e6;
}
.navy .weekly__head .week {
	background-color: var(--color-bg-lbu);
}

.weekly__wrap:not(:last-child) {
	border-bottom: 1px solid var(--color-solid);
}

@media only screen and (max-width: 767px) {
	.weekly__head label {
		position: relative;
		display: flex;
		align-items: center;
		padding: 15px 50px 15px 0;
	}
	.weekly__head .caption ,
	.weekly__head .week {
		width: 50%;
	}
	/* OPEN/CLOSE */
	.weekly__wrap .weekly__head label::after {
		position: absolute;
		display: block;
		content: '';
		top: calc(50% - .65em);
		right: 0;
		width: 2em;
		height: 1.5em;
		background: no-repeat;
		background-image: url(./images/common/icon_arrow02.svg);
		background-size: 100% auto;
		transition: 0.4s;
	}
	.weekly__wrap .weekly__inner {
		position: relative;
		opacity: 0;
		height: 0;
		transition: 0.4s;
	}
	.weekly__wrap .vibtn:checked ~ .weekly__inner {
		display: block;
		height: auto;
		opacity: 1;
		padding-bottom: 20px;
	}
	.weekly__wrap .vibtn:checked + .weekly__head label::after {
		transform:rotate(180deg);
	}
}
@media only screen and (min-width: 768px) {
	.schedule-image {
		padding: 40px;
	}
	.program__block {
		margin-top: 50px;
	}
	.program__body {
		padding: 0 70px 20px;
	}
	.weekly__head label {
		display: block;
	}
	.weekly__wrap {
		display: flex;
		align-items: center;
		gap: 40px;
		padding: 30px 0;
	}
	.weekly__head {
		width: 200px;
	}
	.weekly__inner {
		flex: 1;
	}
	.weekly__head .week {
		margin-top: .5em;
		padding: 2px;
	}
}

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

.proflow-list {
	margin-top: 60px;
	counter-reset: number 0;
}
.proflow-list li {
	position: relative;
}

.proflow-list__fig {
	position: absolute;
	width: 45%;
	z-index: 10;
}
.proflow-list li:nth-child(odd) .proflow-list__fig {
	top: -38px;
	left: -12%;
}
.proflow-list li:nth-child(even) .proflow-list__fig {
	top: -38px;
	right: -12%;
}

.proflow-list__head h3 {
	margin-bottom: .5em;
	color: var(--color-primary);
	font-size: min(1.5rem,5vw);
}

@media only screen and (max-width: 767px) {
	.proflow-list li:nth-child(odd) {
		border-radius: 20px;
		border-left: 5px solid var(--color-solid);
		border-bottom: 5px solid var(--color-solid);
	}
	.proflow-list li:nth-child(even) {
		border-radius: 20px;
		border-right: 5px solid var(--color-solid);
		border-bottom: 5px solid var(--color-solid);
	}
	.proflow-list li:last-child {
		border: none;
	}
	.proflow-list li:first-child .proflow-list__fig {
		top: -18px;
	}
	.proflow-list li:nth-child(odd) .proflow-list__head {
		padding-top: 15px;
		padding-left: 35%;
	}
	.proflow-list li:nth-child(even) .proflow-list__head {
		padding-top: 15px;
		padding-right: 35%;
	}
	.proflow-list li:first-child .proflow-list__head {
		position: relative;
		margin-top: -40px;
		padding-top: 0;
	}
	.proflow-list__head::before {
		display: block;
		counter-increment: number 1;
		content: '0' counter(number);
		color: var(--color-bg-lbu);
		font-size: 15vw;
		font-family: "Cabin", sans-serif;
		line-height: 1;
	}
	.proflow-list li:nth-child(odd) .proflow-list__text {
		padding-left: 20px;
		padding-bottom: 40px;
	}
	.proflow-list li:nth-child(even) .proflow-list__text {
		padding-right: 20px;
		padding-bottom: 40px;
	}
}
@media only screen and (min-width: 768px) {
	.proflow-list {
		width: 880%;
		max-width: 80%;
		margin: auto;
	}
	.proflow-list li {
		margin-bottom: 5px;
		padding: 60px 16% 60px 30%;
	}
	.proflow-list li:first-child {
		margin-bottom: -5px;
	}
	.proflow-list li::before {
		position: absolute;
		left: 15%;
		width: 1.5em;
		counter-increment: number 1;
		content: '0' counter(number);
		color: var(--color-bg-lbu);
		font-size: 5.5rem;
		font-family: "Cabin", sans-serif;
		text-align: cener;
		line-height: 1;
	}
	.proflow-list__inner::before {
		position: absolute;
		content: '';
		width: 60%;
		height: 100%;
		border-top: 5px solid var(--color-solid);
		border-bottom: 5px solid var(--color-solid);
	}
	.proflow-list li:nth-child(odd) .proflow-list__inner::before {
		top: 0;
		left: 0;
		border-top-left-radius: 40px;
		border-bottom-left-radius: 40px;
		border-left: 5px solid var(--color-solid);
	}
	.proflow-list li:first-child .proflow-list__inner::before {
		top: auto;
		bottom: 0;
		height: 75%;
		border-top: none;
	}
	.proflow-list li:nth-child(even) .proflow-list__inner::before {
		top: 0;
		right: 0;
		border-top-right-radius: 40px;
		border-bottom-right-radius: 40px;
		border-right: 5px solid var(--color-solid);
	}
	.proflow-list li:last-child .proflow-list__inner::before {
		height: 50%;
		border-bottom: 0;
	}
	.proflow-list__fig {
		position: absolute;
		width: 25%;
	}
	.proflow-list li:nth-child(odd) .proflow-list__fig {
		top: -15px;
		left: -10%;
	}
	.proflow-list li:nth-child(even) .proflow-list__fig {
		top: 20px;
		right: -10%;
	}
}


/* prices
-----------------------------------------------------------*/

.prices {
	max-width: 960px;
	margin: 0 auto;
}

.prices-list li {
	margin-bottom: 20px;
	color: var(--color-primary);
	font-weight: 700;
	text-align: center;
}
.prices-list__head {
	margin-bottom: 10px;
	padding: 10px;
	border-radius: 8px;
	border: 1px solid var(--color-primary);
	font-size: min(1.375rem,5vw);
	line-height: 1.2;
}
.prices-list__head .min {
	display: block;
	font-size: 80%;
}
.prices-list__body {
	font-size: min(3.5rem,10vw);
	line-height: 1;
}
.prices-list__body .small {
	font-size: 70%;
}
.prices-list__body .price {
	font-family: "Cabin", sans-serif;
}
.prices-list__body .unit {
	font-size: 70%;
}
.prices-list__body .min {
	margin-top: .5em;
	font-size: min(1rem,4vw);
}
@media only screen and (min-width: 768px) {
	.prices-list {
		max-width: 600px;
		margin: 0 auto 60px;
	}
	.prices-list li {
		display: flex;
		align-items: center;
	}
	.prices-list__head {
		width: 45%;
		margin-bottom: 0;
	}
	.prices-list__body {
		flex: 1;
	}
}


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

.flow {
	counter-reset: number 0;
}
.flow__item {
	position: relative;
	margin-top: 40px;
	padding: 25px 20px 20px;
	border-radius: 15px;
	background-color: var(--color-white);
	box-shadow: 0px 0px 21px 9px rgba(203, 208, 210, 0.3);
}
.flow__item:not(:last-child)::after {
	position: absolute;
	content: '';
	left: calc(50% - 3px);
	bottom: -40px;
	width: 6px;
	height: 40px;
	background-color: var(--color-solid);
}
.flow__fig {
	margin-bottom: 10px;
}
.flow__fig img {
	border-radius: 15px;
}
.flow__body h3 {
	margin-bottom: .5em;
	color: var(--color-primary);
	font-size: min(1.5rem,5.25vw);
	font-weight: 700;
	text-align: center;
}
.flow__body p {
	line-height: 1.8;
}
.flow__body p:not(:last-child) {
	margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
	.flow__item::before {
		position: absolute;
		counter-increment: number 1;
		content: 'STEP.' counter(number);
		top: -.6em;
		left: 0;
		width: 100%;
		color: var(--color-secondary);
		font-size: 1.25rem;
		font-family: "Cabin", sans-serif;
		font-weight: 700;
		text-align: center;
		line-height: 1;
	}
}
@media only screen and (min-width: 768px) {
	.flow__item {
		display: flex;
		padding: 35px;
		gap: 50px;
	}
	.flow__fig {
		width: 320px;
		max-width: 30%;
	}
	.flow__body {
		flex: 1;
	}
	.flow__body::before {
		display: block;
		counter-increment: number 1;
		content: 'STEP.' counter(number);
		color: var(--color-secondary);
		font-size: 1.25rem;
		font-weight: 700;
		font-family: "Cabin", sans-serif;
		line-height: 1.2;
	}
	.flow__body h3 {
		text-align: left;
	}
	
}

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

.faq__item {
	margin-bottom: 15px;
}
.faq__item label {
	position: relative;
	cursor: pointer;
	display: block;
	padding: 15px 50px 15px 50px;
	border-radius: 15px;
	border: 1px solid var(--color-solid);
	background-color: var(--color-white);
	color: var(--color-primary);
	font-size: 1.125rem;
	font-weight: 700;
}
.faq__item label::before {
	position: absolute;
	top: 1.5em;
	left: 18px;
	font-size: 125%;
	font-family: "Cabin", sans-serif;
}
.faq__item label::before {
	content: 'Q';
	top: .5em;
	color: var(--color-tertiary);
}
/* icon */
.faq__item label::after {
	position: absolute;
	display: block;
	content: '';
	top: calc(50% - .5em);
	right: 15px;
	width: 1.5em;
	height: 1em;
	background: no-repeat;
	background-image: url(./images/common/icon_arrow02.svg);
	background-size: 100% auto;
	transition: 0.4s;
}
.faq__item .vibtn:checked + label::after {
	transform:rotate(180deg);
}

/* OPEN/CLOSE */
.faq__item .text {
	position: relative;
	opacity: 0;
	height: 0;
	margin: 0;
	line-height: 1.8;
	transition: 0.4s;
}
.faq__item .vibtn:checked ~ .text {
	height: auto;
	opacity: 1;
	padding-top: 10px;
}
@media only screen and (min-width: 768px) {
	.faq__item {
		margin-bottom: 30px;
	}
	.faq__item label {
		padding: 25px 70px 25px 70px;
		border-radius: 15px;
	}
	.faq__item label::before {
		top: 1em;
		left: 30px;
	}
	.faq__item .text {
		padding-left: 70px;
		line-height: 2;
	}
	.faq__item label::after {
		top: calc(50% - .75em);
		right: 30px;
		width: 2em;
		height: 1.25em;
	}
}


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

 follow up

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

.fp-huan {
	margin-bottom: 2em;
	padding: 20px;
	border-radius: 8px;
	background-color: var(--color-bg-lbu);
}
.fp-huan .arrow_list li:not(:last-child) {
	margin-bottom: .5em;
}
.fp-activity .dot_list li:not(:last-child) {
	margin-bottom: .5em;
}

.fp-desc {
	margin-bottom: 2em;
	padding: 20px;
	border-radius: 15px;
	background-color: var(--color-white);
	box-shadow: 0px 0px 16px 4px rgba(215, 229, 235, 0.7);
}
.fp-desc .tbl:not(:last-child) {
	margin-bottom: 2em;
}

.fp-contact {
	padding: 20px;
	border-radius: 8px;
	background-color: var(--color-body);
	text-align: center;
}
.fp-contact .tel_block {
	margin: 1.5em auto;
	justify-content: center;
}
.fp-contact .tel_block .number {
	color: var(--color-primary);
	font-size: min(2rem,6vw);
}

.fp-schedule {
	margin-bottom: 2em;
}
.fp-schedule__nextday {
	margin-bottom: 1em;
	text-align: center;
}
.fp-schedule__nextday .day {
	display: inline-block;
	padding: .25em 1.5em;
	border-radius: 50vh;
	background-color: var(--color-bg-lbu);
	color: var(--color-primary);
	font-size: min(1.5rem,6vw);
	font-weight: 600;
}


@media only screen and (min-width: 768px) {
	.fp-huan {
		padding: 40px;
	}
	.fp-desc {
		padding: 40px;
	}
}


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

 about

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

.about__caption {
	margin-right: -.5em;
	margin-bottom: 1em;
	color: var(--color-primary);
	font-size: min(2.25rem,5vw);
}

.philosophy__item {
	margin-bottom: 20px;
	padding: 20px 15px;
	border-radius: 15px;
	background-color: var(--color-white);
	box-shadow: 0px 0px 16px 4px rgba(215, 229, 235, 0.7);
}

.philosophy__list {
	counter-reset: number 0;
	background-color: var(--color-white);
	background-position: left -1px;
	background-image:
		linear-gradient(90deg, transparent 0%, transparent 50%, var(--color-white) 50%, var(--color-white) 100%),
		linear-gradient(180deg, #ccc 1px, transparent 1px);
	background-size: 6px 100%, 100% 2.2em;
	line-height: 2.2em;
	padding-bottom: 1px;	
}
.philosophy__list li {
	padding-left: 1em;
	text-indent: -.5em;
}
.philosophy__list li::before {
	counter-increment: number 1;
	content: counter(number);
	display: inline-block;
	width: .75em;
	color: var(--color-primary);
	font-family: "Cabin", sans-serif;
	font-weight: 700;
}

.company {
	margin-bottom: 20px;
	padding: 20px 15px;
	border-radius: 15px;
	background-color: var(--color-white);
	box-shadow: 0px 0px 16px 4px rgba(215, 229, 235, 0.7);
}


@media only screen and (min-width: 768px) {
	.about__message {
		display: flex;
	}
	.about__inner {
		flex: 1;
	}
	.about__message .staff__imgae {
		width: 420px;
	}
	.about__message .staff__imgae .image {
		margin-top: -80px;
	}
	.philosophy {
		display: flex;
		align-items: stretch;
		gap: 40px
	}
	.philosophy__item {
		padding: 40px;
		flex: 1;
	}
	.about__access {
		display: flex;
		align-items: center;
		gap: 40px;
		margin-bottom: 40px;
	}
	.about__access .info_block {
		padding-left: 40px;
	}
	.company {
		margin-bottom: 40px;
		padding: 40px;
	}
}


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

 reserve / contact

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

.reserve {
	margin-bottom: 20px;
	padding: 20px 15px;
	border-radius: 15px;
	background-color: var(--color-white);
	box-shadow: 0px 0px 16px 4px rgba(215, 229, 235, 0.7);
}

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

.form_box {
	max-width: 1000px;
	margin: 0 auto 20px;
}
.form_box dt {
	padding: 15px 0;
}
.form_box dt .req {
	display: inline-block;
	margin-right: .5em;
	padding: 2px 6px;
	border-radius: 4px;
	background: var(--color-tertiary);
	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 0 15px;
	border-bottom: 1px solid var(--color-gray-200);
}
.form_box dd:last-child {
	border: none;
}

.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;
	margin-bottom: .25em;
}
.form_box .zip_wrap input {
	display: inline-block;
	width: 8em;
}
.form_box .date_wrap {
	display: block;
	margin-bottom: .25em;
}
.form_box .date_wrap > * {
	display: inline-block;
	margin-right: 1em;
}
.form_box .date_wrap input[type="text"] {
	max-width: 18em;
}

::placeholder{
	color: var(--color-gray-200);
}

.wpcf7-list-item {
	margin: 0 1em 0 0;
}

.wpcf7-turnstile > div {
	max-width: 300px;
	margin: 0 auto;
}

.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: no-repeat 95% 50% var(--color-primary) url(./images/common/icon_arrow_wh.svg);
	background-size: 15px auto;
	color: var(--color-white);
	font-size: 1.125rem;
}
.form_btn_box input:hover ,
.form_btn_box button:hover {
	opacity: .5;
}
.form_btn_box button.back {
	background: var(--color-gray-200);
}

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

@media only screen and (min-width: 768px) {
	.reserve {
		padding: 40px;
	}
	.form_box dt {
		clear: both;
		float: left;
		width: 15em;
		min-height: calc(1.6em + 40px);
		padding: 20px 40px 20px;
	}
	.form_box dd {
		padding: 20px 40px 20px 15.5em;
	}
}


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

 privacy

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

.privacy ,
.sitemap {
	padding: 20px;
	border-radius: 15px;
	background-color: var(--color-white);
	box-shadow: 0px 0px 21px 9px rgba(203, 208, 210, 0.3);
}

.privacy h2 {
	margin-bottom: 1em;
}
.privacy h3 {
	margin-bottom: 1em;
}
.privacy p {
	margin-bottom: 1.5em;
}

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

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

@media only screen and (min-width: 768px) {
	.privacy ,
	.sitemap {
		padding: 40px;
	}
}

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

 sitemap

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

.sitemap__list {
	margin-bottom: 30px;
	padding: 0 15px;
}
.sitemap__list li {
	border-bottom: 1px solid var(--color-solid);
}
.sitemap__list a {
	position: relative;
	display: block;
	height: auto;
	padding: 15px 10px;
	font-size: 1.125rem;
	text-decoration: none;
}
.sitemap__list a::after {
	position: absolute;
	content: '';
	top: 18px;
	right: 15px;
	width: 1.25em;
	height: 1.25em;
	background: no-repeat center center;
	background-image: url(./images/common/icon_arrow.svg);
	background-size: contain;
}



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

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

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