@charset "utf-8";

:root {
	--text-font-family-base: "YakuHanJP", 'Noto Sans JP', 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	--text-font-family-mincho: "YakuHanMP", YuMincho, '游明朝', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho ProN','メイリオ',"HGS明朝E", 'MS P 明朝', 'MS PMincho', serif;
	--color-primary: #0066b5;
	--text-color-base: #333333;
	--text-color-primary: var(--color-primary);
	--text-color-placeholder: #b8b8b8;
	--text-size-base: 1.6rem;
	--text-size-base-sp: 2.8rem;
	--text-line-height-base: 1.8;
	--text-letter-spacing-base: .07em;
	--leading-trim: calc((1em - 1lh) / 2);
	--content-width: 134rem;
	--wrap-padding: 5rem;
	--wrap-padding-sp: 3.5rem;
}

html {
	font-size: 10px;
}

body {
	margin: 0;
	padding: 0;
	color: var(--text-color-base);
	font-size: var(--text-size-base);
	line-height: var(--text-line-height-base);
	letter-spacing: var(--text-letter-spacing-base);
	font-feature-settings : "palt";
	text-align: left;
	background: #fff;
	font-family: var(--text-font-family-base);
	-webkit-text-size-adjust: none;
	-webkit-backface-visibility:hidden;
	backface-visibility:hidden;
}
@media screen\0 {
	body {
		letter-spacing: normal;
		font-family: "YakuHanJP", 'Noto Sans JP', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	}
}
@media print {
	body {
		zoom: 0.68;
		-webkit-print-color-adjust: exact;
	}
}
/* IE10以上 */
@media print and (-ms-high-contrast: none) {
	/* @pageの指定いらないかも */
	@page {
		size: A4;
		margin: 12.7mm 9.7mm;
	}

	body {
		zoom: 1.8;
		width: 1200px;
		transform: scale(0.5);
		transform-origin: 0 0;
	}
}
div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, button, textarea, select, p, blockquote, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	margin: 0;
	padding: 0;
	text-align: left;
}
main {
	display: block;
}
table {
	font-size: inherit; /* モダンブラウザ向け */
	font: 100%; /* Win IE 5-5.5､6(後方互換モード)向け */
}
fieldset, img {
	border:0;
}
address, caption, cite, code, dfn, em, strong, th, var {
	font-style:normal;
	font-weight:normal;
}
ol, ul {
	list-style:none;
}
caption, th {
	text-align:left;
}
h1, h2, h3, h4, h5, h6 {
	font-size:100%;
	font-weight:normal;
	letter-spacing: var(--text-letter-spacing-base);
}
p {
	letter-spacing: var(--text-letter-spacing-base);
}
q:before, q:after {
	content:'';
}
abbr, acronym {
	border:0;
}
input,
button {
	font-family: var(--text-font-family-base);
}
input[type="radio"],input[type="checkbox"],label,button,input[type="submit"] {
	cursor: pointer;
}
input[type="submit"] {
	cursor: pointer;
}
input[type="text"], input[type="search"], input[type="tel"], input[type="url"], input[type="email"], input[type="password"], input[type="date"], input[type="number"] {
	height: 8.8rem;
	padding: .5rem 1.5rem;
	font-family: var(--text-font-family-base);
	font-size: 2.8rem;
	font-weight: bold;
	letter-spacing: var(--text-letter-spacing-base);
	border: .3rem solid #dddddd;
	box-sizing: border-box;
	border-radius: 0;
	-webkit-text-size-adjust: none;
	-webkit-backface-visibility:hidden;
	backface-visibility:hidden;
}
select {
	height: 8.8rem;
	padding: .5rem 1.5rem;
	color: var(--text-color-base);
	font-family: var(--text-font-family-base);
	font-size: 2.8rem;
	font-weight: bold;
	letter-spacing: var(--text-letter-spacing-base);
	border: .3rem solid #dddddd;
	background: #fff;
	box-sizing: border-box;
	border-radius: 0;
}
textarea {
	height: 23.2rem;
	padding: 1rem 1.5rem;
	font-family: var(--text-font-family-base);
	font-size: 2.8rem;
	font-weight: bold;
	letter-spacing: var(--text-letter-spacing-base);
	border: .3rem solid #dddddd;
	box-sizing: border-box;
	border-radius: 0;
	vertical-align: top;
}
/* Webkit */
::-webkit-input-placeholder {
	color: var(--text-color-placeholder);
	opacity: 1;
}
/* Firefox 18 以前 */
:-moz-placeholder {
	color: var(--text-color-placeholder);
}
/* Firefox 19 以降 */
::-moz-placeholder {
	color: var(--text-color-placeholder);

	/* Firefox 19 以降のデフォルトでは */
	/* color ではなく opacity で色合いを調整しているため */
	/* 文字色を指定する場合、opacity を 1 にする必要がある */
	opacity: 1;
}
/* IE 10 以降 */
:-ms-input-placeholder {
	color: var(--text-color-placeholder) !important;
}
/* CSS4では以下のような名前の擬似クラスになるらしい */
/* おそらく今のところ対応ブラウザはない */
:placeholder-shown {
	color: var(--text-color-placeholder);
}
/* Android chrome対策 */
div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, button, textarea, select, p, blockquote, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	max-height:999999px;
}

.clear {
	clear: both;
}
.clearfix {
	zoom: 100%;
}
.clearfix:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}
a {
	text-decoration: none;
}
a:link {
	color: var(--text-color-base);
}
a:visited {
	color: var(--text-color-base);
}
a.normal:link {
	color: var(--text-color-base);
}
a.normal:visited {
	color: var(--text-color-base);
}
a:hover {
	text-decoration: none;
}
a:active {
}
a.noline {
	text-decoration: none;
}
a.reverse {
	text-decoration: none;
}
a.reverse:hover {
	text-decoration: underline;
}
body {
	text-align: center;
}
img {
	max-width: 100%;
	width: auto;
	height: auto;
	vertical-align: middle;
	-webkit-backface-visibility: hidden;
}
a { /* FireFox リンク選択時の点線を消す　*/
	/*overflow: hidden;*/
	outline: none;
}
.ov {
	transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.ov:hover {
	opacity:0.7;
}
.ovImg:hover img {
	opacity:0.7;
}
.nowrap {
	white-space: nowrap;
}
.mincho {
	font-family: var(--text-font-family-mincho);
}
.gothic {
	font-family: var(--text-font-family-base);
}
.Lato {
	font-family: 'Lato', sans-serif;
}
.Oswald {
	font-family: 'Oswald', sans-serif;
}
.Roboto {
	font-family: 'Roboto', sans-serif;
}
* {
	box-sizing: border-box;
}



@media screen and (max-width:1439px){
	html {
		font-size: .69444444vw;
	}
}

@media screen and (max-width:767px){
	html {
		font-size: 1.33333333vw;
		/*font-size: 10px;*/
	}
	body {
		font-size: var(--text-size-base-sp);
	}
	input[type="text"], input[type="search"], input[type="tel"], input[type="url"], input[type="email"], input[type="password"], input[type="date"], input[type="number"] {
		height: 8.8rem;
		padding: 1rem 2rem;
		font-size: 2.8rem;
		border: .4rem solid #dddddd;
	}
	select {
		height: 8.8rem;
		padding: 1rem 2rem;
		font-size: 2.8rem;
		border: .4rem solid #dddddd;
	}
	textarea {
		height: 34.6666666vw;
		padding: 1rem 2rem;
		font-size: 2.8rem;
		border: .4rem solid #dddddd;
	}
}

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

 general

***********************************/
.u-full {
	max-width: none;
	width: 100%;
}
.u-floatL {
	float: left;
}
.u-floatR {
	float: right;
}
.u-alignC {
	text-align: center;
}
.u-alignR {
	text-align: right;
}
.u-alignL {
	text-align: left;
}
.u-veralignT {
	vertical-align: top;
}
.u-veralignM {
	vertical-align: middle;
}
.u-veralignB {
	vertical-align: bottom;
}
.u-indent {
	text-indent: -1em;
	padding-left: 1em;
}
.u-bold {
	font-weight: bold;
}
.u-color-primary {
	color: var(--text-color-primary);
}
.u-white {
	color: #fff;
}
.u-red {
	color: #eb5226;
}
.u-blue {
	color: var(--text-color-primary);
}
.u-yellow {
	color: #ffff00;
}
.u-bgYellow {
	background-color: #ffff00;
}
.u-marker {
	background: linear-gradient(transparent 70%, #ffff00 70%);
}
.u-marker-blue {
	background: linear-gradient(transparent 70%, #cce0f0 70%);
}
.u-underline {
	text-decoration: underline;
	text-underline-offset: .4em;
}

@media screen and (min-width:768px){
	.u-sp {
		display: none !important;
	}
}
@media screen and (max-width:767px){
	.u-pc {
		display: none !important;
	}
}

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

 parts

***********************************/
.u-define-wrap {
	padding-left: var(--wrap-padding);
	padding-right: var(--wrap-padding);
}

.u-define-inner {
	max-width: 100%;
	width: var(--content-width);
	margin: 0 auto;
}


@media screen and (max-width:767px){

	.u-define-wrap {
		padding-left: var(--wrap-padding-sp);
		padding-right: var(--wrap-padding-sp);
	}

	.u-define-inner {
		width: auto;
	}
}

/* ---------------------------------------------------------
 投稿スタイル
--------------------------------------------------------- */
.entry_content {
	color: #1f1f1f;
	font-size: 1.8rem;
	line-height: 2;
}
.entry_content section,
.entry_content article,
.entry_content footer,
.entry_content header,
.entry_content div,
.entry_content dl,
.entry_content dt,
.entry_content dd,
.entry_content li,
.entry_content h1,
.entry_content h2,
.entry_content h3,
.entry_content h4,
.entry_content h5,
.entry_content h6,
.entry_content pre,
.entry_content form,
.entry_content fieldset,
.entry_content input,
.entry_content textarea,
.entry_content p,
.entry_content blockquote,
.entry_content th,
.entry_content td,
.entry_content caption {
	margin: 0px;
	padding: 0px;
	text-align: left;
}

.entry_content h1,
.entry_content h2,
.entry_content h3,
.entry_content h4,
.entry_content h5,
.entry_content h6 {
	clear: both;
	line-height: 1.846153846;
	margin: 1.5em 0;
	font-weight: 600;
}
.entry_content h1 {
	margin-top: 2.5em;
	margin-bottom: 1.2em;
	padding-top: 3rem;
	font-size: 3.2rem;
	font-weight: bold;
	line-height: 1.6;
	position: relative;
	z-index: 1;
}

.entry_content h1:before {
	content: "";
	display: block;
	width: 3rem;
	height: .2rem;
	background: #222;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.entry_content h1:after {
	content: "";
	display: block;
	width: 1.2rem;
	height: .2rem;
	background: #222;
	position: absolute;
	top: 1rem;
	left: 0;
	z-index: 1;
}
.entry_content h2 {
	margin-top: 2.5em;
	margin-bottom: 1.2em;
	padding-top: 3.5rem;
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.6;
	position: relative;
	z-index: 1;
}

.entry_content h2:before {
	content: "";
	display: block;
	width: 3rem;
	height: .2rem;
	background: #222;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.entry_content h2:after {
	content: "";
	display: block;
	width: 1.2rem;
	height: .2rem;
	background: #222;
	position: absolute;
	top: 1rem;
	left: 0;
	z-index: 1;
}
.entry_content h3 {
	margin-top: 2.5em;
	margin-bottom: 1.2em;
	padding-top: 3.5rem;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.6;
	position: relative;
	z-index: 1;
}

.entry_content h3:before {
	content: "";
	display: block;
	width: 3rem;
	height: .2rem;
	background: #222;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.entry_content h3:after {
	content: "";
	display: block;
	width: 1.2rem;
	height: .2rem;
	background: #222;
	position: absolute;
	top: 1rem;
	left: 0;
	z-index: 1;
}
.entry_content h4 {
	font-size: 1.6rem;
	font-weight: bold;
}
.entry_content h3 {
	/*font-size: 20px;*/
}
.entry_content h2 {
	/*font-size: 22px;*/
}
.entry_content h1 {
	/*font-size: 24px;*/
}

.entry_content strong {
	font-weight: bold;
}
.entry_content em {
	font-style: italic;
}
.entry_content mark,
.entry_content ins {
	background-color: #fff9c0;
	text-decoration: none;
}
.entry_content del {
	opacity: 0.8;
}
.entry_content a {
	color: #1f1f1f;
	text-decoration: underline;
}
.entry_content a:hover {
	text-decoration: none;
}
.entry_content blockquote {
	margin-bottom: 4rem;
	padding: 2rem 2rem;
	background-color: #f3f2f3;
	border-radius: 2rem;
}
.entry_content blockquote p:first-child {
	margin-top: 0;
}
.entry_content blockquote p:last-child {
	margin-bottom: 0;
}
.entry_content details {
	margin-bottom: 4rem;
}
.entry_content details:last-child {
	margin-bottom: 0;
}
.entry_content ul {
	margin: 1.5em 0 1.666666666666667em;
	padding: revert;
	list-style-type: revert;
}
.entry_content ul li {
}
.entry_content ol {
	margin: 1em 0 1.666666666666667em;
	padding: revert;
	list-style-type: decimal;
}
.entry_content code {
}
.entry_content pre {
	margin-bottom: 4rem;
	padding: 2rem 2rem;
	background-color: #f3f2f3;
	border-radius: 2rem;
	word-wrap: break-word;
	overflow: auto;
}
.entry_content pre:last-child {
	margin-bottom: 0;
}
.entry_content p {
	margin: 1em 0 1.4em;
}
.entry_content table {
	margin-bottom: 4rem;
	line-height: 1.6;
}
.entry_content table caption {
	text-align: center;
}
.entry_content table th {
}
.entry_content table th,
.entry_content table td {
	padding: 1rem 1.5rem;
}
.entry_content table th.has-text-align-left,
.entry_content table td.has-text-align-left {
	text-align: left;
}
.entry_content table th.has-text-align-right,
.entry_content table td.has-text-align-right {
	text-align: right;
}
.entry_content table th.has-text-align-center,
.entry_content table td.has-text-align-center {
	text-align: center;
}
.entry_content table[data-col="2"] th,
.entry_content table[data-col="2"] td {
	width: 50%;
}
.entry_content table[data-col="3"] th,
.entry_content table[data-col="3"] td {
	width: 33.333334%;
}
.entry_content table[data-col="4"] th,
.entry_content table[data-col="4"] td {
	width: 25%;
}
.entry_content table[data-col="5"] th,
.entry_content table[data-col="5"] td {
	width: 20%;
}
.entry_content table[data-col="6"] th,
.entry_content table[data-col="6"] td {
	width: 16.666666666666667%;
}
.entry_content table td {
}
.entry_content table strong {
	background: none;
}
.entry_content .wp-block-image {
	margin-top: 4rem;
	margin-bottom: 4rem;
}
.entry_content figure {
	margin-top: 3.5rem;
	margin-bottom: 3.5rem;
}
.entry_content img {
	max-width: 100%;
	height: auto;
	/*border-radius: 40px;*/
}
.wp-block-image.is-style-rounded img,
.wp-block-image .is-style-rounded img {
	border-radius: 5rem;
}
.wp-block-image.is-style-border img,
.wp-block-image .is-style-border img {
	border: .1rem solid #dddddd;
}
.entry_content iframe {
	max-width: 100%;
}
.entry_content .aligncenter {
	text-align: center;
	margin: 0 auto 1em;
	display: block;
}
.entry_content .alignleft {
	float: left;
	margin: 0 1em 0.857142857em 0;
}
.entry_content .alignright {
	float: right;
	margin: 0 0 0.857142857em 1em;
}

.entry_content .has-text-align-left {
	text-align: left;
}

.entry_content .has-text-align-center {
	text-align: center;
}

.entry_content .has-text-align-right {
	text-align: right;
}

.entry_content .has-small-font-size {
	font-size: 1.3rem !important;
}

.entry_content .has-medium-font-size {
	font-size: 2rem !important;
}

.entry_content .has-large-font-size {
	font-size: 3.6rem !important;
}

.entry_content .has-x-large-font-size {
	font-size: 4.2rem !important;
}

.entry_content sup {
	font-size: .5em;
	vertical-align: top;
}

.entry_content sub {
	font-size: .5em;
	vertical-align: bottom;
}

.entry_content .note-box {
	padding: 2rem 2rem;
	margin: 6rem 0 3rem;
	font-size: 1.4rem;
	background-color: #f3f2f3;
	border-radius: 2rem;
}

.entry_content .note-box h1,
.entry_content .note-box h2,
.entry_content .note-box h3,
.entry_content .note-box h4,
.entry_content .note-box h5,
.entry_content .note-box h6 {
	margin: .25em 0;
}

.entry_content .note-box p {
	margin-top: .25em;
}

.entry_content .note-box *:first-child {
	margin-top: 0;
}

.entry_content .wp-block-embed__wrapper {
	margin-top: 3.5rem;
	margin-bottom: 3.5rem;
	overflow: hidden;
	/*border-radius: 3rem;*/
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.entry_content .wp-block-embed__wrapper iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

.entry_content *:first-child {
	margin-top: 0;
}

.entry_content *:last-child {
	margin-bottom: 0;
}

@media screen and (max-width:767px){
	.entry_content {
		font-size: 2.6rem;
	}

	.entry_content section,
	.entry_content article,
	.entry_content footer,
	.entry_content header,
	.entry_content div,
	.entry_content dl,
	.entry_content dt,
	.entry_content dd,
	.entry_content li,
	.entry_content h1,
	.entry_content h2,
	.entry_content h3,
	.entry_content h4,
	.entry_content h5,
	.entry_content h6,
	.entry_content pre,
	.entry_content form,
	.entry_content fieldset,
	.entry_content input,
	.entry_content textarea,
	.entry_content p,
	.entry_content blockquote,
	.entry_content th,
	.entry_content td,
	.entry_content caption {
	}

	.entry_content p {
		margin: .6em 0 1em;
	}

	.entry_content h1,
	.entry_content h2,
	.entry_content h3,
	.entry_content h4,
	.entry_content h5,
	.entry_content h6 {
		clear: both;
		line-height: 1.846153846;
		margin: 1.5em 0;
		font-weight: 600;
	}

	.entry_content h2 {
		margin-top: 1.5em;
		margin-bottom: 1.2em;
		padding-top: 3.5rem;
		font-size: 3rem;
	}

	.entry_content h3 {
		margin-top: 1.5em;
		margin-bottom: 1.2em;
		padding-top: 3.5rem;
		font-size: 2.8rem;
	}

	.entry_content h4 {
		font-size: 2.6rem;
	}
	.entry_content figure {
		margin-top: 4rem;
		margin-bottom: 4rem;
	}
	.wp-block-image.is-style-rounded img,
	.wp-block-image .is-style-rounded img {
		border-radius: 3rem;
	}
	.entry_content ul {
		/*margin: 1em 0 1.666666666666667em;*/
		/*font-size: 2.4rem;*/
		/*line-height: 1.6;*/
	}
	.entry_content ul li {
		/*padding: 0.5625em 3rem 0.5625em 5rem;*/
		/*margin-bottom: 2rem;*/
		/*border-radius: 1.5rem;*/
	}

	.entry_content .has-small-font-size {
		font-size: 2rem !important;
	}

	.entry_content .has-medium-font-size {
		font-size: 3.2rem !important;
	}

	.entry_content .has-large-font-size {
		font-size: 4rem !important;
	}

	.entry_content .has-x-large-font-size {
		font-size: 4.8rem !important;
	}

	.entry_content .wp-block-image {
		margin-bottom: 1.3em;
	}

	.entry_content blockquote {
		padding: 2rem 3rem;
		border-radius: 2.5rem;
	}

	.entry_content pre {
		padding: 2rem 3rem;
		border-radius: 2.5rem;
	}

	.entry_content .note-box {
		padding: 2rem 3rem;
		margin: 5rem 0 3rem;
		font-size: 2.2rem;
		border-radius: 2.5rem;
	}

	.entry_content .wp-block-embed__wrapper {
		margin-top: 4rem;
		margin-bottom: 4rem;
		/*border-radius: 2rem;*/
	}

}



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

 layout

***********************************/
.l-wrap {
	padding-top: 11rem;
	overflow: hidden;
}

.l-main {
}

.l-pageTop {
	display: none;
	width: 6.2rem;
	position: fixed;
	bottom: 4rem;
	right: 4rem;
	z-index: 5;
}

@media (hover: hover) {
	.l-pageTop a {
		display: block;
		transition: transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.l-pageTop a:hover {
		opacity: 1;
		transform: scale(1.2, 1.2);
		-webkit-transform: scale(1.2, 1.2);
	}
}


@media screen and (max-width:767px){

	.l-pageTop {
		width: 6.4rem;
		bottom: 3rem;
		right: 4%;
	}
}




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

 l-header

***********************************/
.l-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 11rem;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}

.l-header__logo {
	width: 22rem;
}

.l-header__logo a {
	display: block;
}

.l-header__logo img {
	display: block;
}

.l-header__right {
	display: flex;
	align-items: center;
	gap: 0 2.5rem;
}

.l-header__tel {
	display: flex;
}

.l-header__tel .balloon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 15.5rem;
	height: 6.5rem;
	padding-right: .8rem;
	margin-right: .5rem;
	background: url(../../../img/lp/kengakukai/hd_tel_balloon.png) no-repeat center center / contain;
}

.l-header__tel .balloon p {
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.5;
	text-align: center;
}

.l-header__tel .box {
}

.l-header__tel .box a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 6.5rem;
	padding: .8rem 2rem 0;
	background: #fff;
	border: .2rem solid #dddddd;
	border-radius: 1.5rem;
	position: relative;
	z-index: 1;
}

.l-header__tel .box a .txt01 {
	display: block;
	padding: .5rem .6rem;
	margin-top: -1.5rem;
	color: #fff;
	font-size: 1.1rem;
	font-weight: bold;
	line-height: 1.5;
	white-space: nowrap;
	background: #333333;
	border-radius: .7rem;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.l-header__tel .box a .icon {
	display: block;
	padding-left: 3rem;
	color: #eb5226;
	font-size: 2.6rem;
	font-weight: bold;
	letter-spacing: .03em;
	white-space: nowrap;
	position: relative;
	z-index: 1;
}

.l-header__tel .box a .icon:before {
	content: "";
	display: block;
	width: 2.2rem;
	height: 2.2rem;
	background: url(../../../img/lp/kengakukai/icon_tel01.png) no-repeat center center / contain;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.l-header__reserve {
	margin-bottom: .2rem;
}

.l-header__reserve a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 6.5rem;
	padding: .8rem 2rem 0;
	border-radius: 1.5rem;
	position: relative;
	z-index: 1;
}

@media (hover: hover) {

	.l-header__reserve a {
		transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.l-header__reserve a:hover {
		box-shadow: 0 .3rem .3rem rgba(0,0,0,.15);
		transform: translateY(-.3rem);
		filter: brightness(1.1);
	}
}

.l-header__reserve a {
	background: #40bf1f;
}

.l-header__reserve a .balloon {
	display: block;
	padding: .3rem .6rem;
	font-size: 1.1rem;
	font-weight: bold;
	white-space: nowrap;
	background: #fee400;
	border-radius: .7rem;
	position: absolute;
	top: -1.3rem;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.l-header__reserve a .icon {
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.5;
	position: relative;
	z-index: 1;
}

.l-header__reserve a .icon {
	padding-left: 3.4rem;
}

.l-header__reserve a .icon:before {
	content: "";
	display: block;
	width: 2.5rem;
	height: 2.5rem;
	background: url(../../../img/lp/kengakukai/icon_reserve01.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.l-header__contact {
	margin-bottom: .2rem;
}

.l-header__contact a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 6.5rem;
	padding: .8rem 2rem 0;
	border-radius: 1.5rem;
	position: relative;
	z-index: 1;
}

@media (hover: hover) {

	.l-header__contact a {
		transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.l-header__contact a:hover {
		box-shadow: 0 .3rem .3rem rgba(0,0,0,.15);
		transform: translateY(-.3rem);
		filter: brightness(1.1);
	}
}

.l-header__contact a {
	background: #ff7f00;
}

.l-header__contact a .balloon {
	display: block;
	padding: .3rem .6rem;
	font-size: 1.1rem;
	font-weight: bold;
	white-space: nowrap;
	background: #fee400;
	border-radius: .7rem;
	position: absolute;
	top: -1.3rem;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.l-header__contact a .icon {
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.5;
	position: relative;
	z-index: 1;
}

.l-header__contact a .icon {
	padding-left: 3.4rem;
}

.l-header__contact a .icon:before {
	content: "";
	display: block;
	width: 2.5rem;
	height: 1.8rem;
	background: url(../../../img/lp/kengakukai/icon_mail01.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

@media screen and (max-width:767px){

	.l-header {
		padding-right: 0;
	}

	.l-header__logo {
		width: 22rem;
	}

	.l-header__right {
		gap: 0;
	}

	.l-header__tel {
		display: block;
	}

	.l-header__tel .balloon {
		display: none;
	}

	.l-header__tel .box {
	}

	.l-header__tel .box a {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 11rem;
		padding: 0 1.5rem;
		background: #fff;
		border-left: 1px solid #cccccc;
		border-top: none;
		border-right: none;
		border-bottom: none;
		border-radius: 0;
	}

	.l-header__tel .box a .txt01 {
		display: none;
	}

	.l-header__tel .box a .icon {
		display: none;
	}

	.l-header__tel .box a .sp-txt01 {
		padding-bottom: 2.5rem;
		color: #eb5327;
		font-size: 2.5rem;
		font-weight: bold;
		line-height: 1.35;
		text-align: center;
		position: relative;
		z-index: 1;
	}

	.l-header__tel .box a .sp-txt01:before {
		content: "";
		display: block;
		width: 2rem;
		height: 2rem;
		background: #eeeeee url(../../../img/lp/kengakukai/icon_arr01.png) no-repeat center / .6rem .8rem;
		border-radius: 50%;
		position: absolute;
		top: auto;
		bottom: 0;
		left: 50%;
		z-index: 1;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
	}

	.l-header__reserve {
		margin-bottom: 0;
	}

	.l-header__reserve a {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 11rem;
		padding: 0 1.5rem;
		border-radius: 0;
		background: #40bf1f;
	}

	@media (hover: hover) {

		.l-header__reserve a {
			transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
		}

		.l-header__reserve a:hover {
			box-shadow: none;
			transform: none;
			filter: brightness(1.1);
		}
	}

	.l-header__reserve a .balloon {
		display: none;
	}

	.l-header__reserve a .icon {
		padding-left: 0;
		padding-bottom: 2.5rem;
		font-size: 2.5rem;
		line-height: 1.35;
	}

	.l-header__reserve a .icon:before {
		content: "";
		display: block;
		width: 2rem;
		height: 2rem;
		background: #fff url(../../../img/lp/kengakukai/icon_arr01.png) no-repeat center / .6rem .8rem;
		border-radius: 50%;
		position: absolute;
		top: auto;
		bottom: 0;
		left: 50%;
		z-index: 1;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
	}

	.l-header__contact {
		margin-bottom: 0;
	}

	.l-header__contact a {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 11rem;
		padding: 0 1.5rem;
		background: #ff7f00;
		border-radius: 0;
	}

	@media (hover: hover) {

		.l-header__contact a:hover {
			box-shadow: none;
			transform: none;
			filter: brightness(1.1);
		}
	}

	.l-header__contact a .balloon {
		display: none;
	}

	.l-header__contact a .icon {
		padding-left: 0;
		padding-bottom: 2.5rem;
		font-size: 2.5rem;
		line-height: 1.35;
	}

	.l-header__contact a .icon:before {
		content: "";
		display: block;
		width: 2rem;
		height: 2rem;
		background: #fff url(../../../img/lp/kengakukai/icon_arr01.png) no-repeat center / .6rem .8rem;
		border-radius: 50%;
		position: absolute;
		top: auto;
		bottom: 0;
		left: 50%;
		z-index: 1;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
	}
}

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

 l-footer

***********************************/
.l-footer {

}

.l-footer__inner {
	padding: 6.5rem 0;
}

.l-footer__logo {
	width: 22rem;
	margin: 0 auto;
}

.l-footer__copy {
	margin-top: 4rem;
	color: #b8b8b8;
	font-size: 1.4rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
}



@media screen and (max-width:767px){

	.l-footer__inner {
		padding: 5.5rem 0;
	}

	.l-footer__copy {
		margin-top: 3rem;
		font-size: 1.8rem;
	}
}

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

 c-anchor

***********************************/
.c-anchor {
	display: block;
	margin-top: -11rem;
	padding-top: 11rem;
}

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

 c-title01

***********************************/
.c-title01 {
	margin-block: var(--leading-trim);
	font-size: 4.2rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
}

.c-title01 .large {
	font-size: 4.6rem;
}

.c-title01 .large-x {
	font-size: 5.8rem;
}

@media screen and (max-width:767px){

}

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

 c-sub-hero

***********************************/
.c-sub-hero {
	background-color: var(--color-primary);
}

.c-sub-hero__inner {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 30rem;
}

.c-sub-hero__inner__ttl {
	color: #fff;
	font-size: 3.6rem;
	font-weight: bold;
	letter-spacing: .15em;
	line-height: 1.5;
	text-align: center;
}

@media screen and (max-width:767px){

	.c-sub-hero__inner {
		height: 25rem;
	}

	.c-sub-hero__inner__ttl {
		font-size: 3.6rem;
	}
}

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

 c-btn01

***********************************/
a.c-btn01 {
	display: inline-block;
	padding: 2.4rem 8rem;
	color: #fff;
	font-size: 3.2rem;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	line-height: 1.5;
	letter-spacing: var(--text-letter-spacing-base);
	border-radius: 100px;
	box-shadow:0 .7rem 0 0 #884400;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ff9428+0,ff7f00+100 */
	background: linear-gradient(to bottom,  rgba(255,148,40,1) 0%,rgba(255,127,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

@media (hover: hover) {

	a.c-btn01 {
		transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	a.c-btn01:hover {
		transform: translateY(.7rem);
		box-shadow: 0 0 0 0 #884400;
		filter: brightness(1.1);
	}
}

@media screen and (max-width:767px){
	a.c-btn01 {
	}
}

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

 c-form

***********************************/
.c-form {
}

.c-form:before {
}

.c-form__content {
}

.c-form__content dl {
	padding: 3rem 0 4rem;
	border-bottom: 1px solid #dddddd;
}

.c-form__content dl dt {
	vertical-align: middle;
}

.c-form__content dl dt .inner {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	line-height: 1.5;
	position: relative;
	z-index: 1;
}

.c-form__content dl dt .inner .name {
	font-size: 2.8rem;
	font-weight: bold;
}

.c-form__content dl dt .inner .require,
.c-form__content dl dt .inner .any {
	padding: .4rem .6rem;
	color: #fff;
	font-size: 1.8rem;
	font-weight: bold;
	border-radius: .8rem;
	position: absolute;
	top: 50%;
	right: 0;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.c-form__content dl dt .inner .require {
	background-color: #eb5327;
}

.c-form__content dl dt .inner .any {
	background-color: #999999;
}

.c-form__content dl dd {
	margin-top: 2.5rem;
	font-size: 2.8rem;
	font-weight: bold;
	line-height: 1.5;
	vertical-align: middle;
	position: relative;
}

.c-form__content dl dd .wpcf7-form-control-wrap {
	display: block;
}

.c-form__content dl dd .wpcf7-list-item {
	display: block;
	margin: 1em 0 0 0;
}

.c-form__content dl dd .wpcf7-list-item:first-child {
	margin-top: 0;
}

.date-box__left {
	display: flex;
}

.date-box__right {

}

.c-form__content dl dd .date-box__entry {
	display: flex;
	align-items: center;
}

.c-form__content dl dd .date-box__entry-input {
}

.c-form__content dl dd .date-box__entry-txt01 {
	margin: 0 1em;
}

.c-form__content dl dd .date-box__entry-txt01:first-child {
	margin-left: 0;
}

.c-form__content dl dd .date-box__entry-txt01:last-child {
	margin-right: 0;
}

.c-form__content dl dd .number-of-people-box {
	display: flex;
}

.c-form__content dl dd .number-of-people-box__entry {
	display: flex;
	align-items: center;
}

.c-form__content dl dd .number-of-people-box__entry-txt01 {
	margin: 0 1em;
}

.c-form__content dl dd .number-of-people-box__entry-txt01:first-child {
	margin-left: 0;
}

.c-form__content dl dd .number-of-people-box__entry-txt01:last-child {
	margin-right: 0;
}

.c-form__content dl dd .number-of-people-box__entry-input {
}

.c-form__content dl dd .company {
	background: transparent;
}

.c-form__content dl dd .wfull {
	width: 100%;
}

.c-form__content dl dd .list {
	margin: .25em -.5em;
}

.c-form__content dl dd .list li {
	display: inline-block;
	margin: .25em .5em;
}

.c-form__content dl dd.confirm-pre-wrap p {
	white-space: pre-wrap
}

.c-form__privacy {
	margin-top: 4rem;
}

.c-form__privacy-content {
	padding: 2rem 0 2rem 2.9rem;
	border: 1px solid #dddddd;
}

.c-form__privacy-content-scroll {
	height: 15rem;
	padding-right: 2.9rem;
	overflow-y: scroll;
}

.c-form__privacy-content-scroll section {
	margin-bottom: 3rem;
}

.c-form__privacy-content-scroll section:last-child {
	margin-bottom: 0;
}

.c-form__privacy-content-scroll .ttl {
	margin-bottom: 0;
	font-size: 2rem;
}

.c-form__privacy-content-scroll p {
	font-size: 2rem;
}

.c-form__privacy-txt01 {
	margin-top: 3rem;
	font-size: 2.8rem;
	font-weight: bold;
	text-align: center;
}

.c-form__privacy-txt01 * {
	font-weight: bold;
}

.c-form__privacy-txt01 .wpcf7-list-item {
	margin: 0;
}

.c-form__privacy input {
	margin-right: .5em;
}

.c-form__submit {
	width: 48rem;
	max-width: 100%;
	margin: 4rem auto 0;
	position: relative;
	z-index: 1;
}

.c-form__submit button,
.c-form__submit input,
.c-form__confirmBtn__btn .submit {
	display: block;
	width: 100%;
	padding: 3.3rem 1.5rem;
	color: #fff;
	font-size: 3.6rem;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	line-height: 1.5;
	letter-spacing: .07em;
	border-radius: 100px;
	box-shadow:0 .7rem 0 0 #884400;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ff9428+0,ff7f00+100 */
	background: linear-gradient(to bottom,  rgba(255,148,40,1) 0%,rgba(255,127,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	border: none;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-form__submit button:disabled,
.c-form__submit input:disabled,
.c-form__confirmBtn__btn .submit:disabled {
	filter: grayscale(100%);
	pointer-events: none;
}

.c-form__submit .wpcf7-spinner,
.c-form__confirmBtn__btn .wpcf7-spinner {
	margin: 0;
	position: absolute;
	top: 50%;
	right: 3rem;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.c-form__confirmBtn {
	display: flex;
	justify-content: center;
	gap: 0 3rem;
	margin-top: 5rem;
}

.c-form__confirmBtn__btn {
	width: 36rem;
	position: relative;
	z-index: 1;
}

.c-form__confirmBtn__btn:first-child {
}

.c-form__confirmBtn__btn .back {
	display: block;
	width: 100%;
	padding: 3.3rem 1.5rem;
	color: #fff;
	font-size: 3.6rem;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	line-height: 1.5;
	letter-spacing: var(--text-letter-spacing-base);
	border-radius: 100px;
	box-shadow:0 .7rem 0 0 #333333;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#666666+0,777777+100 */
	background: rgb(102,102,102); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(102,102,102,1) 0%, rgba(119,119,119,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(102,102,102,1) 0%,rgba(119,119,119,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(102,102,102,1) 0%,rgba(119,119,119,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#666666', endColorstr='#777777',GradientType=0 ); /* IE6-9 */
	border: none;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}


@media (hover: hover) {

	.c-form__submit button,
	.c-form__submit input,
	.c-form__confirmBtn__btn .submit {
		transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.c-form__submit button:hover,
	.c-form__submit input:hover,
	.c-form__confirmBtn__btn .submit:hover {
		transform: translateY(.7rem);
		box-shadow: 0 0 0 0 #884400;
		filter: brightness(1.1);
	}

	.c-form__confirmBtn__btn .back {
		transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.c-form__confirmBtn__btn .back:hover {
		transform: translateY(.7rem);
		box-shadow: 0 0 0 0 #333333;
		filter: brightness(1.1);
	}
}

.c-form input[type="checkbox"] {
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.c-form .wpcf7-list-item-label {
	display: inline-block;
	padding-left: 4rem;
	line-height: 1.5;
	position: relative;
}

.c-form .wpcf7-list-item-label::before {
	content: "";
	display: block;
	width: 3rem;
	height: 3rem;
	border: .3rem solid #cccccc;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fcfcfc+0,e2e2e2+100 */
	background: linear-gradient(to bottom,  rgba(252,252,252,1) 0%,rgba(226,226,226,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	position: absolute;
	left: 0;
	top: .8rem;
	box-sizing: border-box;
}

.c-form input[type="checkbox"] + .wpcf7-list-item-label::after {
	content: "";
	display: block;
	width: 2rem;
	height: 1.2rem;
	border-top: .4rem solid #0066b4;
	border-right: .4rem solid #0066b4;
	transform-origin: center center;
	transform: scale(.5, .5) rotate(135deg);
	position: absolute;
	left: .5rem;
	top: .8rem;
	opacity: 0;
	transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-form input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
	opacity: 1;
	transform: rotate(135deg);
}

@media screen and (max-width:767px){
	.c-form {
	}

	.c-form__content {
	}

	.c-form__content dl {
		display: block;
		width: auto;
		padding: 3rem 0 4rem;
	}

	.c-form__content dl dt {
		display: block;
		width: auto;
		padding: 0;
		margin-bottom: 3rem;
		border-right: none;
	}

	.c-form__content dl dt .inner {
		display: block;
		width: auto;
		position: relative;
	}

	.c-form__content dl dt .inner .name {
		font-size: 2.8rem;
		text-align: center;
	}

	.c-form__content dl dt .inner .require,
	.c-form__content dl dt .inner .any {
		padding: .6rem 1rem;
		font-size: 1.8rem;
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}

	.c-form__content dl dd {
		display: block;
		padding: 0;
		font-size: 2.8rem;
	}

	.c-form__content dl dd .name-box {
		display: block;
	}

	.c-form__content dl dd .name-box__block {
		display: flex;
		align-items: center;
		width: auto;
		margin-bottom: 3rem;
	}

	.c-form__content dl dd .name-box__block:last-child {
		margin-bottom: 0;
	}

	.c-form__content dl dd .name-box__block p {
		margin-right: .5em;
	}

	.c-form__content dl dd .name-box__block .entry {
		flex: 1;
	}

	.c-form__content dl dd .list {
		margin: 0;
	}

	.c-form__content dl dd .list li {
		display: block;
		margin: 0 0 .5em 0;
	}

	.c-form__content dl dd .list li:last-child {
		margin-bottom: 0;
	}

	.c-form__privacy {
		margin-top: 4rem;
	}

	.c-form__privacy-content {
		padding: 2.4rem 0 2.4rem 3rem;
		margin-bottom: 3.6rem;
		border: .2rem solid #dddddd;
	}

	.c-form__privacy-content-scroll {
		height: 15rem;
		padding-right: 3rem;
		overflow-y: scroll;
	}

	.c-form__privacy-content-scroll section {
		margin-bottom: 3rem;
	}

	.c-form__privacy-content-scroll section:last-child {
		margin-bottom: 0;
	}

	.c-form__privacy-content-scroll .ttl {
		margin-bottom: 0;
		font-size: 2.4rem;
	}

	.c-form__privacy-content-scroll p {
		font-size: 2.4rem;
	}

	.c-form__privacy-txt01 {
		margin-top: 4rem;
		font-size: 2.8rem;
		font-weight: bold;
		text-align: center;
	}

	.c-form__privacy input {
		margin-right: .5em;
	}

	.c-form__submit {
		width: 48rem;
		margin-top: 4rem;
	}

	.c-form__confirmBtn {
		justify-content: space-between;
		gap: 0 0;
		margin-top: 4rem;
	}

	.c-form__confirmBtn__btn {
		width: 47.5%;
	}

	.c-form__confirmBtn__btn:first-child {
		margin-right: 0;
	}

}


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

 c-faq-list

***********************************/
.c-faq-list {
}

.c-faq-list dl {
	margin-bottom: 6rem;
}

.c-faq-list dl:last-child {
	margin-bottom: 0;
}

.c-faq-list dl dt {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 3rem;
}

.c-faq-list dl dt .icon {
	width: 6.8rem;
	color: #fff;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	line-height: 6.8rem;
	background-color: #2b536a;
	border-radius: .5rem;
}

.c-faq-list dl dt .ttl {
	flex: 1;
	min-height: 6.8rem;
	padding: 1.4rem 2.9rem;
	margin-left: 1.2rem;
	font-size: 2.5rem;
	font-weight: bold;
	line-height: 1.5;
	border: 1px solid #e7e7eb;
	background-color: #fff;
	border-radius: .5rem;
}

.c-faq-list dl dd {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.c-faq-list dl dd .icon {
	width: 6.8rem;
	color: #fff;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	line-height: 6.8rem;
	background-color: #4481a5;
	border-radius: .5rem;
}

.c-faq-list dl dd .cont {
	flex: 1;
	min-height: 6.8rem;
	padding: 1.9rem 2.9rem;
	margin-left: 1.2rem;
	font-size: 1.6rem;
	line-height: 1.5;
	border: 1px solid #e7e7eb;
	background-color: #fff;
	border-radius: .5rem;
}

.c-faq-list dl dd .cont p {
}

@media screen and (max-width:767px){

	.c-faq-list {
	}

	.c-faq-list dl {
		margin-bottom: 6rem;
	}

	.c-faq-list dl dt {
		margin-bottom: 4rem;
	}

	.c-faq-list dl dt .icon {
		width: 8rem;
		font-size: 3.2rem;
		line-height: 8rem;
		border-radius: .8rem;
	}

	.c-faq-list dl dt .ttl {
		flex: 1;
		min-height: 8rem;
		padding: 1.4rem 2.4rem;
		margin-left: 2rem;
		font-size: 3.2rem;
		border-radius: .8rem;
	}

	.c-faq-list dl dd .icon {
		width: 8rem;
		font-size: 3.2rem;
		line-height: 8rem;
		border-radius: .8rem;
	}

	.c-faq-list dl dd .cont {
		min-height: 8rem;
		padding: 1.4rem 2.4rem;
		margin-left: 2rem;
		border-radius: .8rem;
	}

	.c-faq-list dl dd .cont p {
	}

}


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

 c-faq-list-acc

***********************************/
.c-faq-list-acc {
	width: 100rem;
	max-width: 100%;
	margin: 5.5rem auto 0;
}

.c-faq-list-acc dl {
	border-bottom: 1px solid #dddddd;
}

.c-faq-list-acc dl:first-child {
	border-top: 1px solid #dddddd;
}

.c-faq-list-acc dl dt {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-top: 2.4rem;
	padding-bottom: 2.4rem;
	cursor: pointer;
}

.c-faq-list-acc dl dt .icon {
	color: var(--text-color-primary);
	font-size: 3.2rem;
	font-weight: bold;
	line-height: 1.3;
}

.c-faq-list-acc dl dt .ttl {
	flex: 1;
	padding-right: 10rem;
	margin-left: 1.5rem;
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.8;
	position: relative;
	z-index: 1;
}

.c-faq-list-acc dl dt .ttl:before {
	content: "";
	display: block;
	width: 2.4rem;
	height: .4rem;
	margin: 1.9rem 2rem 0 0;
	background-color: var(--text-color-primary);
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}

.c-faq-list-acc dl dt.is-active .ttl:before {
}

.c-faq-list-acc dl dt .ttl:after {
	content: "";
	display: block;
	width: .4rem;
	height: 2.4rem;
	margin: .9rem 3rem 0 0;
	background-color: var(--text-color-primary);
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	transition: opacity 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-faq-list-acc dl dt.is-active .ttl:after {
	opacity: 0;
}

.c-faq-list-acc dl dd {
	display: none;
}

.c-faq-list-acc dl dd .inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: 2.5rem;
	position: relative;
	z-index: 1;
}

.c-faq-list-acc dl dd .icon {
	color: #999999;
	font-size: 3.2rem;
	font-weight: bold;
	line-height: 1.2;
}

.c-faq-list-acc dl dd .cont {
	flex: 1;
	margin-left: 2rem;
	font-size: 2.4rem;
	line-height: 1.8;
}

.c-faq-list-acc dl dd .cont p {
	padding-right: 6rem;
}

@media screen and (max-width:767px){

	.c-faq-list-acc {
		width: 60rem;
		max-width: 100%;
		margin: 5.5rem auto 0;
	}

	.c-faq-list-acc dl dt {
		padding-top: 2.2rem;
		padding-bottom: 2.2rem;
	}

	.c-faq-list-acc dl dt .icon {
		font-size: 3.2rem;
	}

	.c-faq-list-acc dl dt .ttl {
		flex: 1;
		padding-right: 8rem;
		margin-top: -.15em;
		margin-left: 1.2rem;
		font-size: 2.8rem;
	}

	.c-faq-list-acc dl dt .ttl:before {
		margin: 2.3rem 2rem 0 0;
	}

	.c-faq-list-acc dl dt .ttl:after {
		margin: 1.3rem 3rem 0 0;
	}

	.c-faq-list-acc dl dt.is-active .ttl:after {
		opacity: 0;
	}

	.c-faq-list-acc dl dd {
		display: none;
	}

	.c-faq-list-acc dl dd .inner {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		padding-bottom: 2.5rem;
		position: relative;
		z-index: 1;
	}

	.c-faq-list-acc dl dd .cont {
		margin-left: 1.2rem;
		font-size: 2.8rem;
	}

	.c-faq-list-acc dl dd .cont p {
		margin-top: -.2em;
		padding-right: 0;
	}

}


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

 c-table-style01

***********************************/
.c-table-style01 {

}

.c-table-style01 dl {
	display: flex;
	padding: 4rem 0;
	font-size: 1.8rem;
	border-bottom: .1rem solid #dddddd;
}

.c-table-style01 dl:first-child {
	border-top: .1rem solid #dddddd;
}

.c-table-style01 dl.is-top-line-none {
	border-top: none;
}

.c-table-style01 dl dt {
	display: flex;
	align-items: center;
	width: 29rem;
	padding-right: 4rem;
	font-weight: bold;
	border-right: .1rem solid #dddddd;
}

.c-table-style01 dl dd {
	flex: 1;
	padding-left: 4rem;
}

@media screen and (max-width:767px){

	.c-table-style01 dl {
		display: block;
		padding: 4rem 0;
		font-size: 2.8rem;
	}

	.c-table-style01 dl dt {
		width: auto;
		padding-right: 0;
		margin-bottom: .5em;
		border-right: none;
	}

	.c-table-style01 dl dd {
		padding-left: 0;
	}
}

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

 c-2column-list

***********************************/
.c-2column-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 7rem;
}

.c-2column-list-sec {
	width: 47rem;
	padding: 3rem 3rem 2.5rem;
	margin-top: 6.3rem;
	background: #fff;
	box-shadow: 0 .3rem 0 rgba(0,0,0,0.1);
	border-radius: 1.5rem;
	position: relative;
	z-index: 1;
}

.c-2column-list-sec:nth-child(1),
.c-2column-list-sec:nth-child(2) {
	margin-top: 0;
}

.c-2column-list-sec .num {
	width: 4rem;
	height: 4rem;
	line-height: 4rem;
	color: #fff;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	background: #1f6d50;
	border-radius: .8rem;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}

.c-2column-list-sec .pic {
	text-align: center;
}

.c-2column-list-sec .ttl {
	margin-top: 1.5rem;
	color: #1f6c50;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
}

.c-2column-list-sec .txt01 {
	margin-top: 1rem;
}

@media screen and (max-width:767px){

	.c-2column-list {
		display: block;
		padding: 0 5.88235294%;
		margin-top: 8rem;
	}

	.c-2column-list-sec {
		width: auto;
		padding: 5rem 3rem 3rem;
		margin-top: 7.8rem;
		box-shadow: 0 .3rem 0 rgba(0,0,0,0.1);
		border-radius: 2rem;
	}

	.c-2column-list-sec:nth-child(2) {
		margin-top: 7.8rem;
	}

	.c-2column-list-sec .num {
		width: 5rem;
		height: 5rem;
		line-height: 5rem;
		font-size: 2.4rem;
		border-radius: 1.2rem;
	}

	.c-2column-list-sec .pic {
		text-align: center;
	}

	.c-2column-list-sec .pic img {
		width: 100%;
		max-width: none;
	}

	.c-2column-list-sec .ttl {
		margin-top: 1.6rem;
		font-size: 3.2rem;
	}

	.c-2column-list-sec .txt01 {
		margin-top: 1.2rem;
	}
}




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

 c-3column-list

***********************************/
.c-3column-list {
	display: flex;
	justify-content: space-between;
	margin-top: 7rem;
}

.c-3column-list-sec {
	width: 30rem;
	padding: 3.7rem 3rem 2.5rem;
	background: #fff;
	box-shadow: 0 .3rem 0 rgba(0,0,0,0.05);
	border-radius: 1rem;
	position: relative;
	z-index: 1;
}

.c-3column-list-sec .num {
	width: 3.6rem;
	height: 3.6rem;
	line-height: 3.6rem;
	font-size: 1.5rem;
	font-weight: 900;
	text-align: center;
	background: #ffdf00;
	border-radius: .8rem;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}

.c-3column-list-sec .pic {
	text-align: center;
}

.c-3column-list-sec .ttl {
	margin-top: 1.5rem;
	color: #0e6eb8;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
}

.c-3column-list-sec .txt01 {
	padding-top: 1.5rem;
	margin-top: 1.5rem;
	border-top: 1px solid #dddddd;
}

@media screen and (max-width:767px){

	.c-3column-list {
		display: block;
		margin-top: 8rem;
	}

	.c-3column-list-sec {
		width: auto;
		padding: 5rem 3rem 4rem;
		margin-bottom: 9.2rem;
		box-shadow: 0 .3rem 0 rgba(0,0,0,0.05);
		border-radius: 2rem;
	}

	.c-3column-list-sec:last-child {
		margin-bottom: 0;
	}

	.c-3column-list-sec .num {
		width: 5.6rem;
		height: 5.6rem;
		line-height: 5.6rem;
		font-size: 2.8rem;
		border-radius: 1.2rem;
	}

	.c-3column-list-sec .pic {
		text-align: center;
	}

	.c-3column-list-sec .ttl {
		margin-top: 2rem;
		font-size: 3.2rem;
	}

	.c-3column-list-sec .txt01 {
		padding-top: 2rem;
		margin-top: 2rem;
	}
}



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

 c-completeSec

***********************************/
.c-completeSec {

}

.c-completeSec__inner {
	width: 100rem;
	padding: 8rem 0 4rem;
}

.c-completeSec__inner .intro {
	margin-bottom: 6rem;
	font-size: 1.8rem;
	font-weight: bold;
}

.c-completeSec__inner .back {
	text-align: center;
}


@media screen and (max-width:767px){

	.c-completeSec__inner {
	}

	.c-completeSec__inner .intro {
		margin-bottom: 5rem;
		font-size: 2.8rem;
	}
}



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

 c-bg01

***********************************/
.c-bg01 {
	background: #f9f9f8 url(../../../img/lp/kengakukai/trouble_bg01_pc.png) no-repeat center bottom / 192rem auto;
}

@supports (background-image: url(../../../img/lp/kengakukai/trouble_bg01_pc.webp)) {
	.c-bg01 {
		background-image: url(../../../img/lp/kengakukai/trouble_bg01_pc.webp);
	}
}

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

	.c-bg01 {
		background-size: 100% auto;
	}
}

@media screen and (max-width:767px){

	.c-bg01 {
		background: #f9f9f8 url(../../../img/lp/kengakukai/trouble_bg01_sp.png) no-repeat center bottom / 100% auto;
	}

	@supports (background-image: url(../../../img/lp/kengakukai/trouble_bg01_sp.webp)) {
		.c-bg01 {
			background-image: url(../../../img/lp/kengakukai/trouble_bg01_sp.webp);
		}
	}
}



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

 c-hero

***********************************/
.c-hero {
	background: url(../../../img/lp/kengakukai/hero_bg01_pc.png) no-repeat center bottom / 192rem auto;
}

@supports (background-image: url(../../../img/lp/kengakukai/hero_bg01_pc.webp)) {
	.c-hero {
		background-image: url(../../../img/lp/kengakukai/hero_bg01_pc.webp);
	}
}

.c-hero__inner {
	padding: 7.5rem 0 15.8rem;
}

.c-hero__main {
	width: 60rem;
	margin: 10rem auto 0;
	padding: 2rem 0 4rem;
	background: #fff;
	border-radius: 0 0 6rem 6rem;
	position: relative;
	z-index: 1;
}

.c-hero__main:before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 30rem solid transparent;
	border-left: 30rem solid transparent;
	border-bottom: 10rem solid #ffffff;
	border-top: 0;
	position: absolute;
	top: -10rem;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-hero__main:after {
	content: "";
	display: block;
	width: 67rem;
	height: 13.4rem;
	background: url(../../../img/lp/kengakukai/hero_roof.png) no-repeat center / contain;
	position: absolute;
	top: -14rem;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-hero__main-pic01 {
	width: 16rem;
	margin: -15rem auto 0;
	position: relative;
	z-index: 2;
}

.c-hero__main-copy {
	margin-top: -1rem;
	color: #fff;
	font-size: 3.1rem;
	font-weight: 900;
	text-align: center;
}

.c-hero__main-copy .block {
	display: inline-block;
	padding: .8rem 1.5rem;
	background: #0066b5;
	border-radius: 2rem;
}

.c-hero__main-ttl {
	margin-top: 1.5rem;
	font-size: 5.2rem;
	font-weight: 900;
	text-align: center;
	letter-spacing: .12em;
	line-height: 1.4;
}

.c-hero__main-ttl .large01 {
	font-size: 5.6rem;
}

.c-hero__main-ttl .large02 {
	display: inline-block;
	margin-top: -.025em;
	font-size: 8.4rem;
}

.c-hero__main-ttl .u-marker {
	background: linear-gradient(transparent 62%, #ffff00 62%);
}

.c-hero__main-desc {
	margin-top: 2rem;
	font-size: 3.2rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
}

.c-hero__main-desc .large {
	font-size: 3.4rem;
}

.c-hero__main-desc .dot {
	display: inline-block;
	margin-right: -.5em;
}

.c-hero__btn-area {
	margin-top: 7.5rem;
}

.c-hero__reserve {
	font-size: 4rem;
	font-weight: 900;
	text-align: center;
}

.c-hero__reserve a {
	display: inline-block;
	padding: 2.4rem 5rem;
	color: #fff;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#42c721+0,39aa1c+100 */
	background: linear-gradient(to bottom,  rgba(66,199,33,1) 0%,rgba(57,170,28,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	border-radius: 20rem;
	box-shadow: 0 .7rem 0 rgba(18,49,10,.8);
	position: relative;
	z-index: 1;
}

@media (hover: hover) {

	.c-hero__reserve a {
		transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.c-hero__reserve a:hover {
		box-shadow: 0 0 0 rgba(18,49,10,.8);
		transform: translateY(.7rem);
		filter: brightness(1.1);
	}
}


.c-hero__reserve a .icon {
	padding-left: 5.8rem;
	position: relative;
	z-index: 1;
}

.c-hero__reserve a .icon:before {
	content: "";
	display: block;
	width: 4.4rem;
	height: 4.4rem;
	background: url(../../../img/lp/kengakukai/icon_reserve01.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.c-hero__contact {
	margin-top: 7.2rem;
	font-size: 4rem;
	font-weight: 900;
	text-align: center;
}

.c-hero__contact a {
	display: inline-block;
	padding: 2.4rem 5rem;
	color: #fff;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ff9428+0,ff7f00+100 */
	background: linear-gradient(to bottom,  rgba(255,148,40,1) 0%,rgba(255,127,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	border-radius: 20rem;
	box-shadow: 0 .7rem 0 rgba(64,41,17,.8);
	position: relative;
	z-index: 1;
}

@media (hover: hover) {

	.c-hero__contact a {
		transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.c-hero__contact a:hover {
		box-shadow: 0 0 0 rgba(64,41,17,.8);
		transform: translateY(.7rem);
		filter: brightness(1.1);
	}
}

.c-hero__contact a:before {
	content: "";
	display: block;
	width: 10.6rem;
	height: 11rem;
	background: url(../../../img/lp/kengakukai/hero_contact_balloon.png) no-repeat center / contain;
	position: absolute;
	top: -6.5rem;
	right: -3rem;
	z-index: 1;
}

.c-hero__contact a .icon {
	padding-left: 5.8rem;
	position: relative;
	z-index: 1;
}

.c-hero__contact a .icon:before {
	content: "";
	display: block;
	width: 4.4rem;
	height: 3.2rem;
	background: url(../../../img/lp/kengakukai/icon_mail01.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

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

	.c-hero {
		background-size: 100% auto;
	}
}

@media screen and (max-width:767px){

	.c-hero {
		padding: 0;
		background: url(../../../img/lp/kengakukai/hero_bg01_sp.png) no-repeat center bottom / cover;
	}

	@supports (background-image: url(../../../img/lp/kengakukai/hero_bg01_sp.webp)) {
		.c-hero {
			background-image: url(../../../img/lp/kengakukai/hero_bg01_sp.webp);
		}
	}
}



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

 c-trouble

***********************************/
.c-trouble {
	position: relative;
	z-index: 1;
}

.c-trouble__inner {
	padding-bottom: .1rem;
}

.c-trouble__inner .c-title01 {
	position: relative;
	z-index: 1;
}

.c-trouble__inner .c-title01:before {
	content: "";
	display: block;
	width: 51.2rem;
	height: 6.2rem;
	margin-top: .5rem;
	background: url(../../../img/lp/kengakukai/trouble_ttl_bg.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: -1;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}

.c-trouble__list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 5.3rem 6rem;
	width: 110rem;
	max-width: 100%;
	margin: 8rem auto 0;
	font-size: 2.8rem;
	font-weight: bold;
	line-height: 1.6;
}

.c-trouble__list li {
	padding: 3.5rem 5rem 2.5rem;
	text-align: center;
	background: #fff;
	box-shadow: 0 .3rem 0 rgba(0,0,0,.05);
	border-radius: 2rem;
	position: relative;
	z-index: 1;
}

.c-trouble__list li:first-child {
	margin: 0 20rem;
}

.c-trouble__list li:before {
	content: "";
	display: block;
	width: 4.2rem;
	height: 4.2rem;
	background: var(--color-primary) url(../../../img/lp/kengakukai/icon_check01.png) no-repeat center / 1.6rem 1.2rem;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}

.c-trouble__list li .desc {
	text-align: center;
}

.c-trouble__box {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 72rem;
	height: 67rem;
	margin: -5rem auto -3.6rem;
	padding-bottom: 2.5rem;
	background: url(../../../img/lp/kengakukai/trouble_bg02.png) no-repeat center / contain;
}

.c-trouble__box-inner {

}

.c-trouble__box-desc {
	color: #fff;
	font-size: 4.8rem;
	font-weight: 900;
	text-align: center;
	line-height: 1.5;
	text-shadow: 0 .3rem 0 rgba(0, 0, 0, .3);
}

.c-trouble__box-desc .large {
	font-size: 5.6rem;
}

@media screen and (max-width:767px){

	.c-trouble__inner {
		padding-top: 5rem;
	}

	.c-trouble__list {
		display: block;
		width: 60rem;
		margin: 7.5rem auto 0;
		font-size: 2.8rem;
	}

	.c-trouble__list li {
		margin-top: 5.4rem;
		padding: 3.5rem 5rem 2.5rem;
		box-shadow: 0 .3rem 0 rgba(0,0,0,.05);
		border-radius: 2rem;
	}

	.c-trouble__list li:first-child {
		margin: 0;
	}

	.c-trouble__box {
		width: auto;
		height: 67rem;
		margin: -5rem -2rem -1rem;
		padding-bottom: 2.5rem;
		background: url(../../../img/lp/kengakukai/trouble_bg02.png) no-repeat center / contain;
	}

	.c-trouble__box-inner {

	}

	.c-trouble__box-desc {
		color: #fff;
		font-size: 4.8rem;
		font-weight: 900;
		text-align: center;
		line-height: 1.5;
		text-shadow: 0 .3rem 0 rgba(0, 0, 0, .3);
	}

	.c-trouble__box-desc .large {
		font-size: 5.6rem;
	}
}



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

 c-reason

***********************************/
.c-reason {
	background: #f9f9f8;
}

.c-reason__inner {
	padding: 11.5rem 0 9rem;
}

.c-reason__list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8rem 8rem;
	width: 128rem;
	max-width: 100%;
	margin: 7rem auto 0;
}

.c-reason__list-sec {
	width: calc(100%/2 - 4rem);
	flex: 0 1 calc(100%/2 - 4rem);
	padding: 4rem 4rem 3rem;
	background: #fff;
	box-shadow: 0 .3rem 0 rgba(0,0,0,.05);
	border-radius: 2rem;
	position: relative;
	z-index: 1;
}

.c-reason__list-sec .num {
	width: 4rem;
	height: 4rem;
	line-height: 4rem;
	color: #fff;
	font-size: 2.4rem;
	font-weight: 900;
	text-align: center;
	background: var(--color-primary);
	border-radius: 1rem;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}

.c-reason__list-sec .pic {
}

.c-reason__list-sec .ttl {
	margin-top: 2rem;
	font-size: 4rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
}

.c-reason__list-sec .desc {
	margin-top: 1.5rem;
	font-size: 2.8rem;
	line-height: 1.8;
}

@media screen and (max-width:767px){

	.c-reason__inner {
		padding: 8rem 0 7rem;
	}

	.c-reason__list {
		display: block;
		width: 60rem;
		margin: 7rem auto 0;
	}

	.c-reason__list-sec {
		width: auto;
		margin-top: 8rem;
	}

	.c-reason__list-sec:first-child {
		margin-top: 0;
	}
}



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

 c-introduce

***********************************/
.c-introduce {

}

.c-introduce__inner {
	padding: 7rem 0 12rem;
}

.c-introduce__feature {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	width: 121.2rem;
	max-width: 100%;
	margin: 4rem auto 0;
}

.c-introduce__feature-pic01 {
	width: 64rem;
}

.c-introduce__feature-pic02 {
	width: 48.2rem;
}

.c-introduce__gallery {
	width: 121.2rem;
	max-width: 100%;
	margin: 9rem auto 0;
}

.c-introduce__gallery-ttl {
	padding: 1.5rem 3rem;
	color: #fff;
	font-size: 4rem;
	font-weight: bold;
	text-align: center;
	background: var(--color-primary);
	border-radius: 4rem;
	position: relative;
	z-index: 1;
}

.c-introduce__gallery-ttl:before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 4.6rem solid transparent;
	border-left: 4.6rem solid transparent;
	border-top: 2.1rem solid var(--color-primary);
	border-bottom: 0;
	margin-top: -.1rem;
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-introduce__gallery-archive {
	display: flex;
	flex-wrap: wrap;
	gap: 4rem 4rem;
	width: 98rem;
	max-width: 100%;
	margin: 5rem auto 0;
}

.c-introduce__gallery-pic {
	width: calc(100%/3 - 2.7rem);
	flex: 0 1 calc(100%/3 - 2.7rem);
	background: #ccc;
	text-align: center;
	border-radius: 2rem;
	overflow: hidden;
}

.c-introduce__gallery-pic--hidden {
	display: none;
}

.c-introduce__gallery-pic img {
	width: 100%;
	max-width: none;
	aspect-ratio: 3 / 2;
}

.c-introduce__gallery-more {
	width: 100%;
	margin-top: 1rem;
	font-size: 3.2rem;
	font-weight: bold;
	text-align: center;
}

.c-introduce__gallery-more a {
	display: inline-block;
	padding: 1.2rem 11rem;
	color: var(--color-primary);
	text-align: center;
	border: .4rem solid var(--color-primary);
	background: #f4faff;
	border-radius: 20rem;
	position: relative;
	z-index: 1;
}

.c-introduce__gallery-more a:before {
	content: "";
	display: block;
	width: 2.8rem;
	height: 1.6rem;
	background: url(../../../img/lp/kengakukai/icon_arr02.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	right: 3.6rem;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transition: transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-introduce__gallery-more a.is-active:before {
	transform: translateY(-50%) rotate(180deg);
	-webkit-transform: translateY(-50%) rotate(180deg);
}

.c-introduce__gallery-more a .open {
	display: block;
	white-space: nowrap;
	transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-introduce__gallery-more a.is-active .open {
	opacity: 0;
}

.c-introduce__gallery-more a .close {
	display: block;
	white-space: nowrap;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
	opacity: 0;
	transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-introduce__gallery-more a.is-active .close {
	opacity: 1;
}


@media screen and (max-width:767px){

	.c-introduce__inner {
		padding: 6rem 0 9rem;
	}

	.c-introduce__feature {
		display: block;
		width: auto;
		margin-top: 5rem;
	}

	.c-introduce__feature-pic01 {
		width: 64rem;
		margin: 0 auto;
	}

	.c-introduce__feature-pic02 {
		width: 54rem;
		margin: 3rem auto 0;
	}

	.c-introduce__gallery {
		width: 64rem;
		margin: 6rem auto 0;
	}

	.c-introduce__gallery-ttl {
		padding: 2rem 3rem;
		font-size: 4rem;
		line-height: 1.5;
		border-radius: 4rem;
	}

	.c-introduce__gallery-archive {
		width: auto;
		margin: 4rem auto 0;
	}

	.c-introduce__gallery-pic {
		width: calc(100%/2 - 2rem);
		flex: 0 1 calc(100%/2 - 2rem);
	}

	.c-introduce__gallery-pic--hidden {
		display: none;
	}

	.c-introduce__gallery-pic img {
		width: 100%;
		max-width: none;
		aspect-ratio: 3 / 2;
	}

	.c-introduce__gallery-more {
		width: 100%;
		margin-top: 1rem;
		font-size: 3.2rem;
		font-weight: bold;
		text-align: center;
	}

	.c-introduce__gallery-more a {
		display: inline-block;
		padding: 1.2rem 11rem;
		color: var(--color-primary);
		text-align: center;
		border: .4rem solid var(--color-primary);
		background: #f4faff;
		border-radius: 20rem;
		position: relative;
		z-index: 1;
	}

	.c-introduce__gallery-more a:before {
		content: "";
		display: block;
		width: 2.8rem;
		height: 1.6rem;
		background: url(../../../img/lp/kengakukai/icon_arr02.png) no-repeat center / contain;
		position: absolute;
		top: 50%;
		right: 3.6rem;
		z-index: 1;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		transition: transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.c-introduce__gallery-more a.is-active:before {
		transform: translateY(-50%) rotate(180deg);
		-webkit-transform: translateY(-50%) rotate(180deg);
	}

	.c-introduce__gallery-more a .open {
		display: block;
		white-space: nowrap;
		transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.c-introduce__gallery-more a.is-active .open {
		opacity: 0;
	}

	.c-introduce__gallery-more a .close {
		display: block;
		white-space: nowrap;
		position: absolute;
		top: 50%;
		left: 50%;
		z-index: 1;
		transform: translateY(-50%) translateX(-50%);
		-webkit-transform: translateY(-50%) translateX(-50%);
		opacity: 0;
		transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.c-introduce__gallery-more a.is-active .close {
		opacity: 1;
	}
}



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

 c-tour

***********************************/
.c-tour {
	background: #f9f9f8;
	position: relative;
	z-index: 1;
}

.c-tour:before {
	content: "";
	display: block;
	width: 49.2rem;
	height: 7.8rem;
	background: url(../../../img/lp/kengakukai/tour_bg01.png) no-repeat center / contain;
	position: absolute;
	top: -3rem;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.c-tour__inner {
	padding: 8rem 0 5rem;
}

.c-tour__hero {
	width: 62.8rem;
	margin: 2.5rem auto 0;
}

.c-tour__info {
	margin-top: 5rem;
}

.c-tour__info-copy {
	font-size: 3rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
}

.c-tour__info-copy .block {
	display: inline-block;
	padding: 1rem 3.5rem;
	background: #fff;
	border: .3rem solid var(--color-primary);
	border-radius: 2rem;
}

.c-tour__info-ttl {
	margin-top: 2rem;
	font-size: 4.6rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
}

.c-tour__info-ttl .block {
	display: inline-block;
	padding: 0 7.5rem;
	position: relative;
	z-index: 1;
}

.c-tour__info-ttl .block:before {
	content: "";
	display: block;
	width: 5.1rem;
	height: 12.4rem;
	background: url(../../../img/lp/kengakukai/tour_info_ttl_line01.png) no-repeat center / contain;
	position: absolute;
	bottom: .8rem;
	left: 0;
	z-index: 1;
}

.c-tour__info-ttl .block:after {
	content: "";
	display: block;
	width: 5.1rem;
	height: 12.4rem;
	background: url(../../../img/lp/kengakukai/tour_info_ttl_line02.png) no-repeat center / contain;
	position: absolute;
	bottom: .8rem;
	right: 0;
	z-index: 1;
}

.c-tour__info-wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 5.5rem;
}

.c-tour__info-pic {
	width: 64rem;
	overflow: hidden;
	border-radius: 2rem;
}

.c-tour__info-content {
	width: 64rem;
}

.c-tour__info-content-exeample {
	margin-top: -.3em;
	font-size: 4.2rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
}

.c-tour__info-content-reserve {
	margin-top: 3rem;
	font-size: 3.8rem;
	font-weight: 900;
	text-align: center;
}

.c-tour__info-content-reserve a {
	display: block;
	padding: 2.6rem 3rem;
	color: #fff;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#42c721+0,39aa1c+100 */
	background: linear-gradient(to bottom,  rgba(66,199,33,1) 0%,rgba(57,170,28,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	border-radius: 20rem;
	box-shadow: 0 .7rem 0 #2a7f14;
	position: relative;
	z-index: 1;
}

@media (hover: hover) {

	.c-tour__info-content-reserve a {
		transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.c-tour__info-content-reserve a:hover {
		box-shadow: 0 0 0 #2a7f14;
		transform: translateY(.7rem);
		filter: brightness(1.1);
	}
}


.c-tour__info-content-reserve a .icon {
	padding-left: 5.8rem;
	position: relative;
	z-index: 1;
}

.c-tour__info-content-reserve a .icon:before {
	content: "";
	display: block;
	width: 4.4rem;
	height: 4.4rem;
	background: url(../../../img/lp/kengakukai/icon_reserve01.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.c-tour__interior {
	margin-top: 7rem;
}

.c-tour__interior-ttl {
	padding: .8rem 3rem;
	color: #fff;
	font-size: 3rem;
	font-weight: bold;
	text-align: center;
	background: var(--color-primary);
	border-radius: 1.5rem;
}

.c-tour__interior-note {
	margin-top: 2.5rem;
	font-size: 2rem;
	text-align: center;
}

.c-tour__interior-item {
	width: 64rem;
}

.c-tour__interior-item .pic-area {
	display: flex;
	justify-content: space-between;
}

.c-tour__interior-item .pic {
}

.c-tour__interior-item .pic-area .pic {
	width: 30rem;
}

.c-tour__interior-item .ttl {
	margin-top: 2rem;
	margin-bottom: -.2em;
	font-size: 4rem;
	font-weight: bold;
	line-height: 1.6;
	text-align: center;
}

.c-tour__interior-item .desc {
	margin-top: 2rem;
	font-size: 3rem;
	font-weight: bold;
	line-height: 1.8;
}

.c-tour__interior-box01 {
	display: flex;
	justify-content: space-between;
	margin-top: 2.5rem;
}

.c-tour__interior-box01-pic-area {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 64rem;
}

.c-tour__interior-box01-pic-area .pic {
	width: 30rem;
}

.c-tour__interior-box01-pic-area .pic:first-child {
	margin-top: 7rem;
}

.c-tour__interior-box02 {
	display: flex;
	justify-content: center;
	margin-top: 4.5rem;
}

.c-tour__interior-box03 {
	display: flex;
	justify-content: space-between;
	margin-top: 4.5rem;
}

.c-tour__interior-box04 {
	display: flex;
	justify-content: center;
	margin-top: 4.5rem;
}

.c-tour__interior-reserve {
	margin-top: 5rem;
	font-size: 4rem;
	font-weight: 900;
	text-align: center;
}

.c-tour__interior-reserve a {
	display: inline-block;
	padding: 2.4rem 4.5rem;
	color: #fff;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#42c721+0,39aa1c+100 */
	background: linear-gradient(to bottom,  rgba(66,199,33,1) 0%,rgba(57,170,28,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	border-radius: 20rem;
	box-shadow: 0 .7rem 0 #2a7f14;
	position: relative;
	z-index: 1;
}

@media (hover: hover) {

	.c-tour__interior-reserve a {
		transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.c-tour__interior-reserve a:hover {
		box-shadow: 0 0 0 #2a7f14;
		transform: translateY(.7rem);
		filter: brightness(1.1);
	}
}


.c-tour__interior-reserve a .icon {
	padding-left: 5.8rem;
	position: relative;
	z-index: 1;
}

.c-tour__interior-reserve a .icon:before {
	content: "";
	display: block;
	width: 4.4rem;
	height: 4.4rem;
	background: url(../../../img/lp/kengakukai/icon_reserve01.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}


@media screen and (max-width:767px){

	.c-tour__inner {
		padding: 8rem 0 4rem;
	}

	.c-tour__info-wrap {
		display: block;
		margin-top: 5rem;
	}

	.c-tour__info-pic {
		width: 64rem;
		margin: 0 auto;
	}

	.c-tour__info-content {
		width: auto;
	}

	.c-tour__info-content-exeample {
		margin-top: 3rem;
	}

	.c-tour__info-content-reserve {
		margin-top: 3rem;
		font-size: 4rem;
	}

	.c-tour__info-content-reserve a {
		padding: 2.5rem 3rem;
	}

	.c-tour__interior {
		width: 64rem;
		margin-left: auto;
		margin-right: auto;
	}

	.c-tour__interior-note {
		text-align: left;
	}

	.c-tour__interior-item .pic-area {
		display: flex;
		justify-content: space-between;
	}

	.c-tour__interior-item .pic {
	}

	.c-tour__interior-item .pic-area .pic {
		width: 30rem;
	}

	.c-tour__interior-box01 {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin-top: 2.5rem;
	}

	.c-tour__interior-box01-pic-area {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		margin-top: 4rem;
	}

	.c-tour__interior-box01-pic-area .pic {
		width: 30rem;
	}

	.c-tour__interior-box01-pic-area .pic:first-child {
		margin-top: 0;
	}

	.c-tour__interior-box01-pic-area .pic:last-child {
		margin-top: 7rem;
	}

	.c-tour__interior-box02 {
		display: block;
		margin-top: 6rem;
	}

	.c-tour__interior-box03 {
		display: block;
		margin-top: 4rem;
	}

	.c-tour__interior-box03 .c-tour__interior-item {
		margin-top: 4rem;
	}

	.c-tour__interior-box03 .c-tour__interior-item:first-child {
		margin-top: 0;
	}

	.c-tour__interior-box04 {
		display: flex;
		justify-content: center;
		margin-top: 4rem;
	}

	.c-tour__interior-reserve {
		margin-top: 5rem;
		margin-left: -2rem;
		margin-right: -2rem;
	}

	.c-tour__interior-reserve a {
		display: block;
		padding: 2.4rem 3rem;
	}
}



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

 c-housing

***********************************/
.c-housing {
	background: #f9f9f8;
}

.c-housing__inner {
	padding: 5rem 0 9rem;
}

.c-housing__archive {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 5.3rem 6rem;
	width: 114rem;
	margin: 6.5rem auto 0;
}

.c-housing__archive-sec {
	width: calc(100%/3 - 4rem);
	flex: 0 1 calc(100%/3 - 4rem);
	padding: 2.5rem 3rem 3rem;
	background: #fff;
	box-shadow: 0 .3rem 0 rgba(0, 0, 0, .05);
	border-radius: 2rem;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.c-housing__archive-sec--hidden {
	display: none;
}

.c-housing__archive-sec:before {
	content: "";
	display: block;
	width: 100%;
	height: .3rem;
	background: var(--color-primary);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.c-housing__archive-sec .pic {
	overflow: hidden;
	border-radius: 1.5rem;
}

.c-housing__archive-sec .pic img {
	aspect-ratio: 300 / 193;
	object-fit: cover;
	object-position: center;
}

.c-housing__archive-sec .cate {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1.5rem 1.5rem;
	margin-top: 2rem;
	color: var(--text-color-primary);
	font-size: 2rem;
	font-weight: bold;
}

.c-housing__archive-sec .cate li {
	padding: 0 1.5rem;
	background: #fff;
	border: .3rem solid var(--color-primary);
	border-radius: 20rem;
}

.c-housing__archive-sec .name {
	margin-top: 1rem;
	color: var(--text-color-primary);
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.8;
}

.c-housing__archive-sec .copy {
	margin-top: .3rem;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
}

.c-housing__archive-sec dl {
	padding: 1.5rem 0;
	border-top: 1px solid #dddddd;
}

.c-housing__archive-sec dl:first-of-type {
	margin-top: 1.5rem;
}

.c-housing__archive-sec dl:last-child {
	padding-bottom: 0;
}

.c-housing__archive-sec dl dt {
	color: var(--text-color-primary);
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
}

.c-housing__archive-sec dl dd {
	margin-top: .1em;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
}

.c-housing__archive-sec dl dd.price {
	margin-top: .8em;
	color: #eb5529;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
}

.c-housing__archive-sec dl dd.price .num {
	display: inline-block;
	margin-right: .1em;
	font-size: 4.4rem;
	line-height: .8;
}

.c-housing__archive-more {
	width: 100%;
	margin-top: 1rem;
	font-size: 3.2rem;
	font-weight: bold;
	text-align: center;
}

.c-housing__archive-more a {
	display: inline-block;
	padding: 1.2rem 11rem;
	color: var(--color-primary);
	text-align: center;
	border: .4rem solid var(--color-primary);
	background: #f4faff;
	border-radius: 20rem;
	position: relative;
	z-index: 1;
}

.c-housing__archive-more a:before {
	content: "";
	display: block;
	width: 2.8rem;
	height: 1.6rem;
	background: url(../../../img/lp/kengakukai/icon_arr02.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	right: 3.6rem;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transition: transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-housing__archive-more a.is-active:before {
	transform: translateY(-50%) rotate(180deg);
	-webkit-transform: translateY(-50%) rotate(180deg);
}

.c-housing__archive-more a .open {
	display: block;
	white-space: nowrap;
	transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-housing__archive-more a.is-active .open {
	opacity: 0;
}

.c-housing__archive-more a .close {
	display: block;
	white-space: nowrap;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
	opacity: 0;
	transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-housing__archive-more a.is-active .close {
	opacity: 1;
}

@media screen and (max-width:767px){

	.c-housing__inner {
		padding: 4rem 0 7rem;
	}

	.c-housing__archive {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 5.3rem 2rem;
		width: auto;
		margin: 5.5rem -1rem 0;
	}

	.c-housing__archive-sec {
		width: calc(100%/2 - 1rem);
		flex: 0 1 calc(100%/2 - 1rem);
	}

	.c-housing__archive-more {
		margin-top: 0;
	}
}



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

 c-cta

***********************************/
.c-cta {
	background: url(../../../img/lp/kengakukai/cta_bg01_pc.png) no-repeat center / cover;
}

@supports (background-image: url(../../../img/lp/kengakukai/cta_bg01_pc.webp)) {
	.c-cta {
		background-image: url(../../../img/lp/kengakukai/cta_bg01_pc.webp);
	}
}

.c-cta__inner {
	padding: 9rem 0;
}

.c-cta__ttl {
	font-size: 3rem;
	font-weight: bold;
	text-align: center;
}

.c-cta__ttl .block {
	display: inline-block;
	margin-top: 2.5rem;
	padding: .1rem 1.2rem;
	background: #fff;
	border-radius: 1rem;
}

.c-cta__ttl .block:first-child {
	margin-top: 0;
}

.c-cta__list {
	display: flex;
	justify-content: center;
	gap: 0 4rem;
	margin: 8rem auto 0;
}

.c-cta__list-tel {
	width: 52rem;
}

.c-cta__list-tel a {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 17.2rem;
	padding-top: 1.5rem;
	background: #fff;
	box-shadow: 0 .7rem 0 rgba(0,0,0,.1);
	border-radius: 3rem;
	position: relative;
	z-index: 1;
}

.c-cta__list-tel a .balloon {
	display: block;
	padding: .5rem 1.2rem;
	color: #fff;
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1.5;
	white-space: nowrap;
	background: #333333;
	border-radius: .8rem;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}

.c-cta__list-tel a .tel {
	display: inline-block;
	padding-left: 6rem;
	color: #eb5327;
	font-size: 6rem;
	font-weight: bold;
	white-space: nowrap;
	text-align: center;
	letter-spacing: .03em;
	line-height: 1;
	position: relative;
	z-index: 1;
}

.c-cta__list-tel a .tel:before {
	content: "";
	display: block;
	width: 4.8rem;
	height: 4.8rem;
	background: url(../../../img/lp/kengakukai/icon_tel01.png) no-repeat center center / contain;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.c-cta__list-tel a .desc {
	display: block;
	width: 46rem;
	max-width: 100%;
	margin: 1rem auto 0;
	padding: .4rem 1rem;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	background: #f5f5f5;
	border-radius: 20rem;
}

.c-cta__list-reserve {
	width: 35rem;
	font-size: 3.6rem;
	font-weight: 900;
	line-height: 1.4;
}

.c-cta__list-reserve a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 17.2rem;
	color: #fff;
	background: #40bf1f;
	box-shadow: 0 .7rem 0 rgba(0,0,0,.1);
	border-radius: 3rem;
	position: relative;
	z-index: 1;
}

@media (hover: hover) {

	.c-cta__list-reserve a {
		transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.c-cta__list-reserve a:hover {
		box-shadow: 0 0 0 rgba(0,0,0,.1);
		transform: translateY(.7rem);
		filter: brightness(1.1);
	}
}

.c-cta__list-reserve a .icon {
	padding-left: 6rem;
	position: relative;
	z-index: 1;
}

.c-cta__list-reserve a .icon:before {
	content: "";
	display: block;
	width: 4.4rem;
	height: 4.4rem;
	background: url(../../../img/lp/kengakukai/icon_reserve01.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.c-cta__list-contact {
	width: 35rem;
	font-size: 3.6rem;
	font-weight: 900;
	line-height: 1.4;
}

.c-cta__list-contact a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 17.2rem;
	color: #fff;
	background: #ff7f00;
	box-shadow: 0 .7rem 0 rgba(0,0,0,.1);
	border-radius: 3rem;
	position: relative;
	z-index: 1;
}

@media (hover: hover) {

	.c-cta__list-contact a {
		transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.c-cta__list-contact a:hover {
		box-shadow: 0 0 0 rgba(0,0,0,.1);
		transform: translateY(.7rem);
		filter: brightness(1.1);
	}
}

.c-cta__list-contact a:before {
	content: "";
	display: block;
	width: 10.6rem;
	height: 11rem;
	background: url(../../../img/lp/kengakukai/cta_balloon.png) no-repeat center / contain;
	position: absolute;
	top: -3.8rem;
	right: -5.2rem;
	z-index: 1;
}

.c-cta__list-contact a .icon {
	padding-left: 6rem;
	position: relative;
	z-index: 1;
}

.c-cta__list-contact a .icon:before {
	content: "";
	display: block;
	width: 4.4rem;
	height: 3.2rem;
	background: url(../../../img/lp/kengakukai/icon_mail01.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

@media screen and (max-width:767px){

	.c-cta {
		background: url(../../../img/lp/kengakukai/cta_bg01_sp.png) no-repeat center / cover;
	}

	@supports (background-image: url(../../../img/lp/kengakukai/cta_bg01_sp.webp)) {
		.c-cta {
			background-image: url(../../../img/lp/kengakukai/cta_bg01_sp.webp);
		}
	}

	.c-cta__inner {
		padding: 8rem 0 8.7rem;
	}

	.c-cta__list {
		display: block;
		width: 64rem;
		margin: 7.2rem auto 0;
	}

	.c-cta__list-tel {
		width: auto;
	}

	.c-cta__list-tel a {
		padding-top: 1.8rem;
	}

	.c-cta__list-reserve {
		width: auto;
		margin-top: 6.5rem;
		font-size: 4.4rem;
	}

	.c-cta__list-reserve a {
		height: 14.5rem;
	}

	.c-cta__list-contact {
		width: auto;
		margin-top: 6.5rem;
		font-size: 4.4rem;
	}

	.c-cta__list-contact a {
		height: 14.5rem;
	}

	.c-cta__list-contact a:before {
		top: -4rem;
		right: -2rem;
	}

}



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

 c-voice

***********************************/
.c-voice {

}

.c-voice__inner {
	padding: 7rem 0 9rem;
}

.c-voice__content {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 6rem 6rem;
	width: 126rem;
	margin: 6rem auto 0;
	position: relative;
	z-index: 1;
}

.c-voice__content-sec {
	width: calc(100%/2 - 3rem);
	flex: 0 1 calc(100%/2 - 3rem);
	padding: 3rem 2.8rem 2.5rem;
	background: #fff;
	border-left: .2rem solid #dddddd;
	border-right: .2rem solid #dddddd;
	border-bottom: .2rem solid #dddddd;
	border-radius: 1.5rem;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.c-voice__content-sec:before {
	content: "";
	display: block;
	width: 100%;
	height: .3rem;
	background: var(--color-primary);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.c-voice__content-sec .pic {
	text-align: center;
}

.c-voice__content-sec .content {
	margin-top: 3rem;
}

.c-voice__content-sec .content__sec {
	margin-top: 2.5rem;
}

.c-voice__content-sec .content__sec:first-child {
	margin-top: 0;
}

.c-voice__content-sec .content__sec:first-child {
	margin-top: 0;
}

.c-voice__content-sec .content__sec-ttl {
	padding: 1.2rem 0;
	color: var(--text-color-primary);
	font-size: 2.6rem;
	font-weight: bold;
	line-height: 1.6;
	border-top: .2rem solid var(--color-primary);
	border-bottom: .1rem solid #dddddd;
}

.c-voice__content-sec .content__sec-desc {
	margin-top: 1.5rem;
	font-size: 2.4rem;
	line-height: 1.8;
}


@media screen and (max-width:767px){

	.c-voice__inner {
		padding: 6rem 0 7rem;
	}

	.c-voice__content {
		display: block;
		width: 60rem;
		margin: 5.5rem auto 0;
	}

	.c-voice__content-sec {
		width: auto;
		margin-top: 5rem;
		border-radius: 2rem;
	}

	.c-voice__content-sec:first-child {
		margin-top: 0;
	}
}



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

 c-faq

***********************************/
.c-faq {
	background: #f9f9f8;
}

.c-faq__inner {
	padding: 7rem 0 9rem;
}

@media screen and (max-width:767px){

	.c-faq__inner {
		padding: 7rem 0 7rem;
	}

}



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

 c-contact

***********************************/
.c-contact {
}

.c-contact__inner {
	padding: 7.5rem 0 3.75rem;
}

.c-contact__pic01 {
	width: 68rem;
	margin: 4rem auto 0;
}

.c-contact__tel {
	width: 60rem;
	margin: 6rem auto 0;
	padding: 2rem 2.9rem 3.3rem;
	border: .3rem solid #dddddd;
	border-radius: 3rem;
}

.c-contact__tel-ttl {
	font-size: 2.8rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
}

.c-contact__tel-ttl .block {
	display: inline-block;
	padding-bottom: 2rem;
	border-bottom: 1px solid #dddddd;
}

.c-contact__tel-num {
	margin-top: 2rem;
	font-size: 6rem;
	font-weight: bold;
	text-align: center;
	white-space: nowrap;
	letter-spacing: .03em;
	line-height: 1;
}

.c-contact__tel-num a {
	padding-left: 5.8rem;
	color: #eb5327;
	position: relative;
	z-index: 1;
}

.c-contact__tel-num a:before {
	content: "";
	display: block;
	width: 4.8rem;
	height: 4.8rem;
	background: url(../../../img/lp/kengakukai/icon_tel01.png) no-repeat center / contain;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.c-contact__tel-time {
	width: 46rem;
	margin: 2rem auto 0;
	padding: .4rem 0;
	font-size: 1.8rem;
	text-align: center;
	background: #f5f5f5;
	border-radius: 20rem;
}

.c-contact__desc {
	width: 100rem;
	margin: 3rem auto 4.5rem;
	font-size: 2.4rem;
}

.c-contact__content {
	width: 100rem;
	margin: 0 auto;
	padding: 1rem 3.9rem 6.5rem;
	background-color: #fff;
	border-left: .2rem solid #dddddd;
	border-right: .2rem solid #dddddd;
	border-bottom: .2rem solid #dddddd;
	border-radius: 2.5rem;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.c-contact__content:before {
	content: "";
	display: block;
	width: 100%;
	height: .3rem;
	background-color: #0066b3;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

@media screen and (max-width:767px){

	.c-contact__inner {
		padding: 6.5rem 0 3.75rem;
	}

	.c-contact__desc {
		width: 60rem;
		margin: 3rem auto 4rem;
		font-size: 2.8rem;
	}

	.c-contact__content {
		width: auto;
		padding: 1rem 2.8rem 6.5rem;
	}

	.c-contact__content:before {
		content: "";
		display: block;
		width: 100%;
		height: .3rem;
		background-color: #0066b3;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
	}
}



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

 c-company

***********************************/
.c-company {

}

.c-company__inner {
	padding: 3.75rem 0 2.5rem;
}

.c-company__list {
	width: 100rem;
	max-width: 100%;
	margin: 6rem auto 0;
}

.c-company__list dl {
	display: flex;
	padding: 3rem 0;
	font-size: 2.4rem;
	line-height: 1.8;
	border-bottom: 1px solid #dddddd;
}

.c-company__list dl:first-child {
	border-top: 1px solid #dddddd;
}

.c-company__list dl dt {
	width: 22.5rem;
	font-weight: bold;
}

.c-company__list dl dd {
	flex: 1;
}

@media screen and (max-width:767px){

	.c-company__inner {
		padding: 3.75rem 0 2.5rem;
	}

	.c-company__list {
		width: 60rem;
	}

	.c-company__list dl {
		display: block;
		padding: 3rem 0;
		font-size: 2.8rem;
	}

	.c-company__list dl dt {
		width: auto;
		text-align: center;
	}

	.c-company__list dl dd {
		margin-top: .2em;
	}
}


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

 grecaptcha-badge

***********************************/
.grecaptcha-badge {
	z-index: 3;
}
@media screen and (max-width:767px){

}


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

 xxx

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

@media screen and (max-width:767px){

}


