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

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

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

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

 全体 style

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

/* font-family: 'Prompt', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@400;600&display=swap');

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

	--color-primary   : #3fb2c9;
	--color-secondary : #f29b76;
	--color-tertiary  : #dcc52e;
	--color-quaternary: #EEE;


	--color-line      : #22ba4f;
	--color-fb        : #315096;
	
	--color_white     : #FFF;
	--color_pgray     : #EEE;
	--color_lgray     : #CCC;
	--color_gray      : #666;
	--color_dark      : #222;
	--color_pink      : #d88181;
	--color_lred      : #E7CACA;
	--color_dred      : #C00;
	--color-lbu       : #a3bbce;
	--color-lbu2      : #f0f3f7;

	--layer_dark      : rgba(0,0,0,.7);
}

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

html {
	font-size: 16px;
}

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

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

a:hover {
	color: var(--color-secondary);
	text-decoration: none;
}

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

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

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

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

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

/* iframeのレスポンシブ */
.youtube_container {
	position: relative;
	margin-bottom: 8px;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.youtube_container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


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

 layout

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

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

 header

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

.header_wrapper {
	height: 60px;
}
.home .header_wrapper ,
.page-id-2 .header_wrapper {
	height: 0;
}
.header {
	position: fixed;
	z-index: 999999;
	top: 0;
	left: 0;
	width: 100%;
}
.header__inner {
	max-width: 1360px;
	margin: 0 auto;
	padding: 6px 10px;
}

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


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

.gnavi {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-right: -1%;
}
.gnavi li {
	flex-grow: 1;
}
.gnavi a {
	display: block;
	padding: 8px 4px;
	text-align: center;
	text-decoration: none;
	line-height: 1.2;
}
.gnavi a b {
	display: inline-block;
}
.gnavi a:hover ,
.fnavi a:hover {
	color: var(--color-primary);
}

/* btn */
.gnavi .contact {
	width: 200px;
	margin-left: 15px;
}
.gnavi .contact a {
	padding: .75em 1em;
	border-radius: 50vh;
	background-image: linear-gradient(-45deg, rgb(235, 99, 39) 0%, rgb(250, 179, 57) 100%);
	box-shadow: 0px 11px 9.5px 0.5px rgba(0, 0, 0, 0.32);
	color: var(--color_white);
}
.gnavi .contact a:hover {
	opacity: .5;
}


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

/* menu open btn */

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

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

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

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

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

.burger_content {
	padding: 10px 10px 10px;
	background-color: var(--color_white);
}

.burger_content .logo {
	width: 150px;
	max-width: 45%;
	margin-bottom: 15px;
}

.burger_content .bnavi {
	margin-bottom: 30px;
	border-top: 1px solid var(--color_lgray);
}
.burger_content .bnavi li {
	border-bottom: 1px solid var(--color_lgray);
}
.burger_content .bnavi a {
	display: block;
	height: auto;
	padding: 10px 10px;
	text-decoration: none;
	line-height: 1.6;
}
.burger_content .bnavi a span {
	display: block;
	font-size: .75rem;
}

@media only screen and (max-width: 767px) {
	.header_line ,
	.gnavi {
		display: none;
	}
}
@media only screen and (min-width: 768px) {
	.header_wrapper {
		height: 120px;
	}
	.header__inner {
		padding: 30px 20px;
	}
	.header__main {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.header__main .logo {
		max-width: 20%;
	}
	.header__main .gnavi_block {
		width: 800px;
		max-width: 75%;
	}
	.header_slim {
		background-color: rgba(255, 255, 255, .75);
		box-shadow: 0 0 4px rgba(0,0,0,.2);
	}
	.header_slim .header__inner {
		padding: 15px 20px;
	}
	.header_slim .header__inner .logo {
		width: 8%;
	}
	.burger_btn_area {
		display: none;
	}
}

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

 side bar

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

.side h4 {
	margin-bottom: 10px;
	padding: 4px 4px 10px;
	border-bottom: 2px solid var(--color_lgray);
	font-weight: bold;
}

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

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

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

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


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

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


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

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

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

.wp-calendar-table th {
	padding: 4px 0;
	border-bottom: 2px solid var(--color_gray);
	text-align: center;
}

.wp-calendar-table td {
	padding: 4px 0;
	border-bottom: 1px solid var(--color_lgray);
	text-align: center;
}

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

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



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

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


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

 .contact

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

.contact_area {
	padding-top: 30px;
}
.contact_area .btn_box {
	margin-top: 20px;
}


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

 .footer

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

.footer {
	background: var(--color_white);
}
.footer_inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 40px 15px;
}
.footer_inner a {
	color: inherit;
}

.footer_inner .logo {
	margin-bottom: 20px;
	text-align: center;
}
.footer_inner .logo a {
	display: inline-block;
	width: 150px;
}


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

.fnavi {
	margin-bottom: 15px;
	font-size: .875rem;
	text-align: center;
}
.fnavi li {
	display: inline-block;
	padding: 0 .5em;
}
.fnavi li a {
	display: block;
}

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


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

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

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

@media only screen and (min-width: 768px) {
	.footer_inner {
		padding: 60px 20px;
	}
	.fnavi li {
		padding: 0 1em;
	}
}


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

 contents

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

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

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

body.page .main_contents {
	max-width: 880px;
}


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

.content {
	clear: both;
	zoom: 100%;
}
.content a {
	color: inherit;
}

.content.content--sky {
	background: no-repeat top right;
	background-color: var(--color-primary);
	background-image: url(./image/common/bg_contnt.png);
	background-size: 85% auto;
	color: var(--color_white);
}

.content.content--grade {
	background-image: linear-gradient(
		-45deg,
		rgba(55,176,199, .32) 0%,
		rgba(220,197,46, .32) 44%,
		rgba(217,97,84, .32) 100%
	);
	color: var(--color-primary);
}
.content.content--grade a {
	color: inherit;
}

.content.content--contact {
	background: no-repeat center bottom;
	background-color: var(--color-primary);
	background-image: url(./image/common/bg_contact.jpg);
	background-size: cover;
	color: var(--color_white);
}


.content__inner {
	position: relative;
	max-width: 1100px;
	margin: 0 auto;
	padding: 30px 15px;
}
.content__inner + .content__inner {
	padding-top: 0;
}

.wrapper :not(.mw-container) .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: 40px auto;
	}
	.side {
		width: 240px;
		margin-left: 40px;
	}
	.content__inner {
		padding: 60px 15px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 800px) {
	.side {
		width: 200px;
	}
}


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

 fixed * lp レイアウト

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

.mw-container {
	position: relative;
	overflow: hidden;
	max-width: 440px;
	margin: 0 auto;
	background: rgb(203,207,207);
	background: linear-gradient(180deg, rgba(203,207,207,1) 0%, rgba(238,240,240,1) 150px);
	background-repeat: no-repeat;
}

.wrapper .mw-container .main_contents .content {
	margin-right: auto;
	margin-left: auto;
}

.mw-container .header {
	position: absolute;
}

@media only screen and (min-width: 768px) {
	.mw-container {
		margin: 60px auto;
		box-shadow: 0 0 40px rgba(0,0,0,.15);
		z-index: 999999;
	}
}

/* pc_container
-----------------------------------------------------------*/

.pc_container {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
}
.pc_content {
	position: relative;
	display: flex;
	justify-content: space-between;
	max-width: 1100px;
	height: 100%;
	margin: 0 auto;
	padding-right: 14px;
}
.pc_container .left_contents ,
.pc_container .right_contents {
	width: calc((100% - 440px - 20px) / 2);
}
.pc_container .left_contents {
	display: flex;
	align-items: center;
	padding: 0 20px 40px;
}
.pc_container .right_contents {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 0 20px 40px;
}

@media only screen and (min-width: 841px) {
	.mw-container .gnavi_block {
		display: none;
	}
}
@media only screen and (max-width: 840px) {
	.pc_container {
		display: none;
	}
}


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

 メインコンテンツ

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

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

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


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

.pagination {
	clear: both;
	position: relative;
	font-size: .875rem;
	line-height: 1.2;
}
.pagination span,
.pagination a {
	width: auto;
	margin-right: 4px;
	padding: 6px 8px 5px 8px;
	border-radius: 4px;
}
.pagination a {
	display: inline-block;
	border: 1px solid var(--color_lgray);
	text-decoration: none;
}
.pagination a:hover {
	color: var(--color_white);
	background-color: var(--color_pgray);
}
.pagination span {
	display: none;
}
.pagination .current {
	display: inline-block;
	padding: 6px 8px 5px 8px;
	border: 1px solid var(--color_pgray);
	background-color: var(--color_pgray);
}


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

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

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


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

p.btn_box {
	clear: both;
	margin: 0;
	padding: 20px 0 30px;
	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-primary);
	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_or a ,
.btn_box.btn_or label {
	padding: .75em 1em;
	background-image: linear-gradient(-45deg, rgb(235, 99, 39) 0%, rgb(250, 179, 57) 100%);
	box-shadow: 0px 11px 9.5px 0.5px rgba(0, 0, 0, 0.32);
}

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

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

/* cal */
.btn_box.btn_cal a {
	padding: 10px 30px;
}
.btn_box.btn_cal a::before {
	content: '';
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 2px;
	width: 1.5em;
	height: 1.5em;
	background: url(./image/common/icon_cale_wh.svg) no-repeat;
	background-size: cover;
	vertical-align: middle;
}

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

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

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

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


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

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

.modal_content__inner {
	padding: 25px 25px;
	background-color: var(--color_white);
	font-size: .875rem;
}
.modal_content h2 {
	margin-bottom: 20px;
	font-size: 1.25rem;
	text-align: center;
}
.modal_content h3 {
	margin-bottom: .75em;
	font-size: 1rem;
}
.modal_content ul {
	margin-bottom: 20px;
	padding-left: 2em;
}
.modal_content li {
	list-style: disc;
}
.modal_content p {
	margin-bottom: 1em;
}

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



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

 投稿 post

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

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

 アーカイブ archive / blog

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

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

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

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

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


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

.entry-vertical_list {
	margin-bottom: -20px;
}
.entry-vertical_list li {
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	border-bottom: 1px dotted var(--color_lgray);
}
.entry-vertical_list li:last-child {
	border-style: none;
}

/* cate */
.entry-vertical_list li .cate_box {
	float: right;
}
.entry-vertical_list .cate_box a {
	display: inline-block;
	margin: 0 0 2px 0;
	padding: 4px 10px;
	background: var(--color-primary);
	color: var(--color_white);
	font-size: .75rem;
	text-decoration: none;
	line-height: 1.2;
	vertical-align: middle;
}

ul.entry-vertical_list a {
	display: block;
	text-decoration: none;
}
ul.entry-vertical_list h3 {
	text-decoration: underline;
}

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

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


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

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

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

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

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

.entry-card_list em {
	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: var(--color_white);
}
.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;
}
.entry-card_list .entry_txt {
	display: block;
	height: 5em;
	font-size: .875rem;
	line-height: 1.4;
}

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

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

.faq_area {
	max-width: 800px;
	margin: 0 auto 40px;
}
.faq_tarm__link {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
	gap: 10px;
}
.faq_tarm__link li {
	width: calc((100% - 10px) / 2);
}
.faq_tarm__link li a {
	display: block;
	padding: .5em;
	background-color: var(--color-primary);
	text-align: center;
	text-decoration: none;
}
.faq_term {
	margin-top: -80px;
	padding-top: 80px;
	margin-bottom: 40px;
}
.faq_term h2 {
	margin-bottom: 1.5em;
	padding: .75em 1em;
	background-color: var(--color_pgray);
}
.faq_block {
	position: relative;
	margin-bottom: 20px;
	padding: 10px 0 5px;
}
.faq_block label {
	display: block;
	padding-bottom: 10px;
	padding-left: 3em;
	font-weight: 600;
	z-index: 999999;
}

.faq_block label::before ,
.faq_block .txt::before {
	position: absolute;
	top: .35em;
	left: .2em;
	width: 1.75em;
	height: 1.75em;
	border-radius: 50%;
	font-size: 116%;
	font-weight: 400;
	font-family: 'Prompt', sans-serif;
	line-height: 1.8;
	text-align: center;
}
.faq_block label::before {
	content: 'Q';
	background-color: var(--color-primary);
	color: var(--color_white);
}
.faq_block .txt::before {
	content: 'A';
	background-color: var(--color_white);
	color: var(--color-primary);
}

.faq_block .txt {
	position: relative;
	height: auto;
	padding-top: 10px;
	padding-left: 3em;
	border-top: 1px solid #CCC;
}

/* vibtn */
.faq_block .vibtn {
	position: absolute;
	visibility: hidden;
}

@media only screen and (min-width: 768px) {
	.faq_term {
		margin-top: -150px;
		padding-top: 150px;
	}
	.faq_tarm__link {
		margin-bottom: 40px;
		gap: 15px;
	}
	.faq_tarm__link li {
		width: calc((100% - 45px) / 4);
	}
}


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

 記事 single / page

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

.entry_content {
	line-height: 1.8;
}

.content_block {
	padding: 20px;
	border: 1px solid var(--color-lbu);
	background-color: var(--color-lbu2);
}

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

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


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

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

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

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

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

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


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

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

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

.page_content hr {
	margin-top: 1.6em;
	margin-bottom: 1.6em;
}

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


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

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

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

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

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

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


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

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

.entry_content .tbl th {
	border-left: none;
	border-right: none;
}
.entry_content .tbl td {
	border-right: none;
}


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

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

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


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

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


.more_text {
	margin-left: 4.5em;
	line-height: .5;
}
  

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

/* 投稿画像 */
img.size-full ,
img.size-large {
	margin-bottom: 10px;
}
.image_iblock {
	display: inline-block;
	margin: 10px 10px 20px;
	font-size: .75rem;
	vertical-align: top;
}
.image_iblock .wp-caption {
	position: relative;
	max-width: 100%;
	height: auto;
}
.image_iblock .wp-caption-text {
	position: absolute;
	bottom: -10px;
	width: 100%;
	margin-bottom: 0;
	padding: 5px;
	background: var(--layer_dark);
	color: var(--color_white);
	text-align: center;
}
.image_iblock .wp-caption-text a,
.image_iblock .wp-caption-text {
	font-size: 100%;
	color: var(--color_white);
}


/* 画像位置 */

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


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

.share_area {
	max-width: 600px;
	margin: 20px auto;
}
 
.share_list {
	display: flex;
}
.share_list li {
	width: 25%;
	padding: 2px;
}
.share_list li span {
	display: none;
}
.share_list li a {
	display: block;
	padding: 2px;
	border-radius: 50vh;
	color: var(--color_white);
	font-size: 14px;
	text-align: center;
	text-decoration: none;
}
.share_list li a:hover {
	opacity: .8;
}
.share_list li i {
	margin-right: .3em;
}
.share_list .tweet a {
	background: #55acee;
}
.share_list .line a {
	background: var(--color-line);
}
.share_list .facebook a {
	background: var(--color-fb);
}
.share_list .hatena a {
	background: #008fde;
}
.fa-hatena:before {
	font-family: Verdana;
	font-weight: bold;
	content: 'B!';
}


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

.p_navi {
	margin-bottom: 40px;
	padding: 20px 0;
	border-top: 1px solid var(--color_lgray);
	border-bottom: 1px solid var(--color_lgray);
	font-size: .875rem;
}
.p_navi .prev {
	float: right;
	width: 50%;
	text-align: right;
}
.p_navi .prev div {
	padding: 0 15px 0 10px;
}
.p_navi .prev img {
	float: right;
	width: 100px;
	margin-left: 15px;
}

.p_navi .next {
	float: left;
	width: 50%;
}
.p_navi .next div {
	padding: 0 10px 0 15px;
	border-right: 1px solid var(--color_lgray);
}
.p_navi .next img {
	float: left;
	width: 100px;
	margin-right: 15px;
}

.p_navi a {
	display: block;
	text-decoration: none;
}
.p_navi a span {
	display: block;
}
.p_navi a em {
	display: inline-block;
	margin-bottom: 8px;
	padding: 2px 10px;
	background: var(--color_lgray);
	color: var(--color_white);
}
.p_navi a b {
	display: block;
	font-weight: normal;
}
.p_navi a:hover em {
	opacity: 0.7;
	filter: alpha(opacity=70);
}

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


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

 ページ

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

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

/* title */
.title_block {
	margin-bottom: 30px;
	text-align: center;
}
.title_block h1 {
	line-height: 1.6;
}
.title_block h1 .en {
	display: block;
	padding-left: .2em;
	font-size: min(2.5rem,8vw);
	font-family: 'Prompt', sans-serif;
	font-weight: 600;
	letter-spacing: .2em;
}
.title_block h1 .ja {
	display: inline-block;
	font-size: min(.875rem);
	font-weight: normal;
}
.title_block h1 .ja--s {
	display: block;
	color: var(--color-primary);
	font-size: min(1.5rem,6vw);
}
.title_block h1 .ja--l {
	font-size: min(2rem,6.5vw);
	font-weight: 600;
}

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


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

.text_block {
	line-height: 2;
}
.text_block p {
	margin-bottom: 1em;
}
.text_block p:last-child {
	margin-bottom: .4em;
}

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

.color__rd {
	color: #C00;
}

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

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


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

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


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


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

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

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

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



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

 index

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

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

.cover {
	position: relative;
	padding-top: 60px;
	padding-bottom: 40px;
	background-position: center center;
	background-image: url(./image/home/cover_bg.jpg);
	background-size: cover;
}
.cover__slide {
	position: relative;
	max-width: 1100px;
	margin: 0 auto 40px;
}
.cover_splide .splide__track {
	overflow: visible;
}
.cover__text {
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}
.cover__catch01 {
	margin-bottom: 30px;
	font-size: min(1.625rem,5.5vw);
}
.cover__catch01 .catch01_1 ,
.cover__catch01 .catch01_2 {
	position: relative;
	display: inline-block;
	padding: .25em .75em;
	color: var(--color_white);
}
.cover__catch01 .catch01_1 span ,
.cover__catch01 .catch01_2 span {
	position: relative;
    z-index: 2;
}
.cover__catch01 .catch01_1::before ,
.cover__catch01 .catch01_2::before {
    position: absolute;
    content: '';
    top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    transform: skewX(-15deg);
    z-index: 1;
}
.cover__catch01 .catch01_1::before {
	background-color: var(--color-tertiary);
}
.cover__catch01 .catch01_2::before {
	background-color: var(--color-primary);
}
.cover__catch01 .cross {
	position: relative;
	display: inline-block;
	width: 2em;
}
.cover__catch01 .cross::before ,
.cover__catch01 .cross::after {
	position: absolute;
	content: '';
	top: .75em;
	left: 10%;
	width: 80%;
	height: 4px;
	background-color: var(--color_dark);
	transition: 0.4s;
}
.cover__catch01 .cross::before {
	transform: rotate(45deg);
}
.cover__catch01 .cross::after {
	transform: rotate(-45deg);
}

.cover__catch02 {
	padding: 0 20px;
}
.cover__catch02 .catch02_logo img {
	width: 65%;
}

@media only screen and (min-width: 1140px) {
	.cover_splide .splide__arrow--next {
		right: -17px;
	}
	.cover_splide .splide__arrow--prev {
		left: -17px;
	}
}
@media only screen and (min-width: 769px) {
	.cover {
		padding-top: 150px;
		padding-bottom: 80px;
	}
	.cover__inner {
		padding: 0 20px;
	}
	.cover__slide {
		margin-bottom: 60px;
	}
	.cover__catch02 ul {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.cover__catch02 .catch02_logo img {
		width: auto;
	}
}


/* intro
-----------------------------------------------------------*/

.intro_area {
	position: relative;
	max-width: 1000px;
	margin: -120px auto 0;
}
.intro__text {
	margin-bottom: 30px;
	padding: 0 20px;
}
.intro__text .title {
	margin-bottom: 40px;
}
.intro__text .text {
	font-size: min(1.125rem,4vw);
}
.intro__fig {
	text-align: center;
}
.intro__fig img {
	width: 75%;
}

@media only screen and (min-width: 768px) {
	.intro_area {
		display: flex;
		margin-top: -180px;
	}
	.intro_area .intro__text {
		flex: 1;
	}
	.intro_area .intro__fig {
		width: 440px;
		max-width: 40%;
	}
	.intro__text .title {
		margin-bottom: 50px;
	}
	.intro__fig img {
		width: auto;
	}
}


/* news
-----------------------------------------------------------*/

.news_area {
	padding: 20px;
	background-color: var(--color_white);
	color: var(--color-text);
}
.news_area a {
	color: inherit;
}

.news_area .title_block {
	margin-bottom: 0;
	padding-bottom: 15px;
}
.news_list {
	max-height: 110px;
	overflow-x: hidden;
	overflow-y: auto;
	font-size: .875rem;
}
.news_list dt {
	display: none;
	padding-bottom: .5em;
}
.news_list dd:not(:last-child) {
	padding-bottom: 1rem;
}


@media only screen and (min-width: 768px) {
	.news_area {
		display: flex;
		align-items: center;
		padding: 40px;
	}
	.news_area .title_block {
		width: 30%;
		padding-bottom: 0;
		border-bottom: none;
	}
	.news_area .news_list {
		flex: 1;
		padding-left: 30px;
		border-left: 1px solid var(--color_lgray);
	}
}


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

.service__item {
	position: relative;
	margin-bottom: 30px;
}
.service__item .icon_box {
	position: absolute;
	top: -1em;
	left: -.5rem;
	font-size: min(1.25rem,4vw);
}
.service__item .icon_box .icon {
	display: inline-block;
	width: 4em;
	height: 4em;
	border-radius: 50%;
	background-color: var(--color-secondary);
	color: var(--color_white);
	text-align: center;
	line-height: 3.8;
}
.service__item h2 {
	margin-bottom: 10px;
	margin-left: -10px;
	margin-right: -10px;
	font-size: min(1rem,4vw);
	font-weight: normal;
}
.service__item--main h2 {
	font-size: min(1.625rem,5vw);
	font-weight: 600;
}
.service__item .fig_box .icon {
	display: inline-block;
	width: 120px;
	height: 120px;
	padding: 25px;
	border-radius: 50%;
	background-color: var(--color_white);
	text-align: center;
	line-height: 70px;
}
.service__item .text_box {
	font-size: .875rem;
}
.service__item .text_box p:not(:last-child) {
	margin-bottom: 1em;
}
.service__item .text_box .btn_detail {
	cursor: pointer;
	display: inline-block;
	text-decoration: underline;
}
.service__item .text_box .btn_detail:hover {
	text-decoration: none;
}

@media only screen and (max-width: 767px) {
	.service__head {
		display: flex;
		align-items: center;
		gap: 15px;
	}
	.service__head .fig_box {
		width: 180px;
		max-width: 35%;
		margin-right: 15px;
		margin-bottom: 0;
	}
	.service__head h2 {
		flex: 1;
		margin-bottom: 0;
	}
}
@media only screen and (min-width: 768px) {
	.service__list {
		display: flex;
		flex-wrap: wrap;
		gap: 40px;
	}
	.service__item {
		width: calc((100% - 120px) / 4);
		margin-bottom: 0;
	}
	.service__item--main {
		width: 100%;
	}
	.service__item--main .service__itemInner {
		display: flex;
		gap: 40px;
	}
	.service__item--main .fig_box {
		width: 440px;
		max-width: 45%;
	}
	.service__item--main .text_box {
		flex: 1;
	}
	.service__item--main .text_box {
		font-size: 1rem;
	}
	.service__head h2 {
		text-align: center;
	}
	.service__item .fig_box {
		margin-bottom: 15px;
		text-align: center;
	}
}


/* campaign
-----------------------------------------------------------*/

.campaign_area {
	text-align: center;
}

.title_block--campaign {
	position: relative;
	max-width: 840px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 40px;
}
.title_block--campaign h1 {
	margin-bottom: 20px;
}
.title_block--campaign .catch_box {
	position: absolute;
	top: 0;
	right: 0;
	width: 40%;
}

.title_img_text {
	margin-bottom: 20px;
}

.campaign_area .text_block {
	font-size: .9135rem;
}

.campaign_bnr__block {
	position: relative;
	max-width: 320px;
	margin: 0 auto 20px;
	padding: 30px 20px;
	background: no-repeat;
	background-image: url(./image/home/frame_campaign.svg);
	background-size: 100% 100%;
}
.campaign_bnr__block .label_box {
	margin-bottom: 20px;
}
.campaign_bnr__block .label_box .label {
	display: inline-block;
	padding: .25em 2em;
	border-radius: 50vh;
	background-color: var(--color-primary);
	color: var(--color_white);
}
.campaign_bnr__block .title_box .title {
	display: block;
	font-size: min(2rem,7.5vw);
}
.campaign_bnr__block .title_box .sub {
	font-size: min(1.25rem,5.5vw);
}

.campaign_bnr__block .price_box {
	position: relative;
	font-weight: 600;
}
.campaign_bnr__block .price_box .catch_box {
	position: absolute;
	top: -2em;
	right: -15%;
	width: 40%;
}
.campaign_bnr__block .price_min {
	display: inline-block;
	margin-right: 1em;
	font-size: min(1.5rem,7vw);
}
.campaign_bnr__block .price {
	display: inline-block;
	font-size: min(2.5rem,10vw);
}
.campaign_bnr__block .price.red {
	color: #910050;
}
.campaign_bnr__block .price_box .text {
	font-size: min(1.5rem,5.5vw);
}
@media only screen and (min-width: 768px) {
	.campaign_bnr {
		display: flex;
		justify-content: center;
		gap: 40px;
		margin-bottom: 40px;
	}
	.campaign_bnr__block {
		min-width: 320px;
		margin: 0;
	}
	.campaign_bnr__block .title_box .title {
		font-size: 1.5rem;
	}
	.campaign_bnr__block .title_box .sub {
		font-size: 1.125rem;
	}
	.campaign_bnr__block .price_box .text {
		font-size: 1.5rem;
	}
}


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

 aboutus

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




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

 reserve / contact

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

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

.reserve_area {
	text-align: center;
}

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

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

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


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

.form_info {
	max-width: 800px;
	margin: 0 auto 20px;
}
.form_info > p {
	margin-bottom: 20px;
}
.form_info .privacy_area {
	overflow-y: auto;
	height: 140px;
	padding: 20px;
	margin-bottom: 20px;
	font-size: .875rem;
	border: 1px solid var(--color_lgray);
}
.form_info .privacy_area p {
	margin-bottom: 1.6em;	
}

.contact_txt {
	max-width: 800px;
	margin: 0 auto 40px;
}
.contact_txt .catch {
	margin-bottom: 20px;
	font-weight: bold;
}


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

.form_step {
	overflow: hidden;
	max-width: 800px;
	margin: 0 auto 40px;
	background: var(--color-primary);
	font-size: 100%;
}
.form_step li {
	float: left;
	width: 34%;
}
.form_step li:first-child {
	width: 32%;
}
.form_step em {
	position: relative;
	display: block;
	padding: 10px 0 10px 25px;
	background: var(--color_pgray);
	font-size: .875rem;
	text-align: center;
	text-decoration: none;
}
.form_step em span {
	display: block;
}
.form_step li:first-child em {
	padding-left: 20px;
}
.form_step em::after,
.form_step em::before {
	content: "";
	position: absolute;
	top: 50%;
	margin-top: -45px;
	border-top: 45px solid transparent;
	border-bottom: 45px solid transparent;
	border-left: 30px solid;
	right: -30px;
}
.form_step em::after {
	z-index: 2;
	border-left-color: var(--color_pgray);
}
.form_step em::before {
	border-left-color: var(--color_white);
	right: -32px;
	z-index: 1;
}
.form_step li:last-child::before ,
.form_step li:last-child::after {
	content: normal;
}

/* class:active型 */
.form_step .active {
	color: var(--color_white);
	font-weight: bold;
	background: none;
}
.form_step .active::after {
	z-index: 2;
	border-left-color: var(--color-primary);
}

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


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

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

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

.form_btn_box {
	margin-left: -5px;
	margin-right: -5px;
	text-align: center;
}
.form_btn_box input ,
.form_btn_box button {
	cursor: pointer;
	position: relative;
	display: inline-block;
	width: 320px;
	max-width: 46%;
	padding: 10px;
	border: none;
	border-radius: 50vh;
	background: var(--color-primary);
	color: var(--color_white);
	font-size: 1.125rem;
}
.form_btn_box input:hover ,
.form_btn_box button:hover {
	opacity: .5;
}
.form_btn_box button.confirm::before ,
.form_btn_box button.send::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-top: -5px;
	border: 0px;
	border-top: solid 2px var(--color_white);
	border-right: solid 2px var(--color_white);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.form_btn_box button.back {
	background: var(--color_lgray);
}
.form_btn_box button.back::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 20px;
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-top: -5px;
	border: 0px;
	border-bottom: solid 2px var(--color_white);
	border-left: solid 2px var(--color_white);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

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

@media only screen and (min-width: 768px) {
	/* contact ----------------------- pc */
	.form_info {
		margin-bottom: 40px;
	}
	.form_step em {
		padding: 20px 15px 20px 45px;
		font-size: 1rem;
	}
	.form_step em span {
		display: inline-block;
	}
	.form_box dt {
		padding: 20px 40px 10px;
	}
	.form_box dd {
		padding: 0 40px 20px;
	}
}



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

 汎用CSS

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

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

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

.bold {
	font-weight: bold;
}

.text_SS {
	font-size: 75%;
}

.text_S {
	font-size: 86%;
}

.text_L {
	font-size: 120%;
}

.text_LL {
	font-size: 150%;
}

.text_LLL {
	font-size: 180%;
}


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

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

.left {
	text-align: left;
}

.inline-block {
	display: inline-block;
}

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