@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@600&display=swap');

/*
================================
　共通
================================
*/

html{
}
body {
	font-family: 'Noto Sans JP',"Meiryo UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN","Yu Gothic UI", "MS PGothic", sans-serif;
	-webkit-text-size-adjust: 100%;
	width: 100%;
}
p,th,td,dt,dd,li {
	color: #333333;
	font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem); /* 18px→14px */
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 2;
	text-align: justify;
	word-break: break-all;
}


/* テキストリンク */
.contents-link {
	color: #EB860D;
	text-decoration: underline;
}
.contents-link:hover, .contents-link:active {
	text-decoration: none;
	transition-timing-function: ease-out;
	transition-duration: 0.6s;
}

/* 画像リンク */
a:hover img, a:active img {
	opacity: 0.5;
	filter: alpha(opacity=50);
	transition-timing-function: ease-out;
	transition-duration: 0.6s;
}


/* SP表示 関連 */
.disp-pc {
	display: block;
}
.disp-sp {
	display: none;
}
.disp-tab {
	display: none;
}
@media screen and (max-width: 960px) {
.disp-pc {
	display: none;
}
.disp-tab {
	display: block;
}
.disp-sp {
	display: none;
}
}
@media screen and (max-width: 520px) {
.disp-pc {
	display: none;
}
.disp-tab {
	display: none;
}
.disp-sp {
	display: block;
}
}

/* PC時、電話番号タップ不可にする　 */
@media (min-width: 751px) {
a[href*="tel:"] {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
	color: #1B2B40;
}
}


#wrap {
	padding-top: 100px; /* ヘッダ固定のため */
	position: relative;
	margin: 0 auto;
	width: 100%;
	overflow: hidden;
}
article {
	width: 100%;
}
article section {
	width: 100%;
	overflow: hidden;
}
article section .inner {
	margin: 0 auto;
	width: 100%;
	max-width: 1400px;
}
@media screen and (max-width: 1600px) {
#wrap {
	padding-top: 80px; /* ヘッダ固定のため */
}
article section .inner {
	width: calc(100% - 100px);
}
}
@media screen and (max-width: 960px) {
#wrap {
	padding-top: 50px; /* ヘッダ固定のため */
}
}
@media screen and (max-width: 520px) {
article section .inner {
	width: calc(100% - 60px);
}
}

/*
================================
　ヘッダー
================================
*/
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: #fff;
	z-index: 1000;
}
.header-inr {
	margin: 0 auto;
	width: calc(100% - 120px);
	height: 100%;
	align-items: center;
	display: grid;
	grid-template-columns: 40% 60%;
	column-gap: 0;
}
.header-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.hdr-logo a {
	display: inline-block;
	width: 600px;
}
@media screen and (max-width: 1600px) {
header {
	height: 80px;
}
.header-inr {
	width: calc(100% - 100px);
}
.hdr-logo a {
	width: 420px;
}
}
@media screen and (max-width: 960px) {
header {
	height: 50px;
}
.header-inr {
	width: calc(100% - 60px);
}
.hdr-logo a {
	width: 280px;
}
}
@media screen and (max-width: 520px) {
.header-inr {
	width: calc(100% - 40px);
}
}

/*
================================
　スクロール時ヘッダ縮小
================================
*/
#wrap.HeightMax .m-nav {
	display: block;
	transition: all 0.8s ease 0s;
}
#wrap.HeightMin .m-nav {
	display: none;
	transition: all 0.8s ease 0s;
}
#wrap.HeightMax .openbtn {
	display: none;
	transition: all 0.8s ease 0s;
}
#wrap.HeightMin .openbtn {
	display: flex;
	transition: all 0.8s ease 0s;
}
@media screen and (max-width: 1400px) {
#wrap.HeightMax .m-nav {
	display: none;
	transition: all 0.8s ease 0s;
}
#wrap.HeightMin .m-nav {
	display: none;
	transition: all 0.8s ease 0s;
}
#wrap.HeightMax .openbtn {
	display: flex;
	transition: all 0.8s ease 0s;
}
#wrap.HeightMin .openbtn {
	display: flex;
	transition: all 0.8s ease 0s;
}
}

/*
================================
　PC用ナビゲーション
================================
*/
.m-nav {
	display: flex;
	align-items: center;
}
.m-nav ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.m-nav li a {
	display: block;
	margin: 0 60px 0 0;
}
.m-nav li:last-child a {
	margin: 0;
}
.m-nav li span {
	position: relative;
	display: block;
	font-weight: 700;
	font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem); /*18→14px*/
	line-height: 1;
	letter-spacing: 0.1em;
}
.m-nav li span:after {
	position: absolute;
	content: "";
	bottom: -14px;
	left: 0;
	width: 0;
	height: 2px;
	background: #21AC37;
	transition: all 0.3s ease 0s;
}
.m-nav li a:hover span {
	cursor: pointer;
	opacity: 1;
	filter: alpha(opacity=1);
}
.m-nav li a:hover span:after {
	width: 100%;
	transition: all 0.3s ease 0s;
}

@media screen and (max-width: 1400px) {
.m-nav {
	display: none;
}
}


/*
================================
　ナビゲーション
================================
*/
/* ハンバーガーボタン */
.openbtn{
	display: none;
	align-items: center;
	justify-content: center;
	position:fixed;
	right: 0;
	top: 0;
	cursor: pointer;
	margin: 0 auto;
	width: 100px;
	height: 100px;
	background: #21AC37;
	z-index: 100000000;
}
.openbtn-inner {
	position: relative;
	width: 40px;
	height: 24px;
}
.openbtn span{
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: #fff;
}
.openbtn span:nth-of-type(1) {
	top: 0px;	
}
.openbtn span:nth-of-type(2) {
	top: 12px;
}
.openbtn span:nth-of-type(3) {
	top: 24px;
}
.openbtn.active span:nth-of-type(1) {
	top: 4px;
	left: -4px;
	transform: translateY(6px) rotate(-44deg);
	width: 50px;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
	top: 16px;
	left: -4px;
	transform: translateY(-6px) rotate(44deg);
	width: 50px;
}
@media screen and (max-width: 1600px) {
.openbtn{
	width: 80px;
	height: 80px;
	max-width: initial;
	min-width: initial;
	border-left: none;
}
}
@media screen and (max-width: 1400px) {
.openbtn{
	display: flex;
}
}
@media screen and (max-width: 960px) {
.openbtn{
	height: 50px;
	width: 50px;
	max-width: initial;
	min-width: initial;
	border-left: none;
}
.openbtn-inner {
	width: 20px;
	height: 14px;
}
.openbtn span:nth-of-type(2) {
	top: 6px;
}
.openbtn span:nth-of-type(3) {
	top: 12px;
}
.openbtn.active span:nth-of-type(1) {
	top: 0px;
	left: 0px;
	width: 20px;
}
.openbtn.active span:nth-of-type(3){
	top: 12px;
	left: 0px;
	width: 20px;
}
}


#g-nav{
	position:fixed;
	top: 0px;
	right: -120%;
	width: 100%;
	max-width: 500px;
	height: 100vh;
	background : #fff; 
	opacity: 0;
	z-index: 10000000;
	box-shadow: 0px 10px 10px 3px rgba(0,0,0,0.1);
}
#g-nav.panelactive{
	right: 0;
	opacity: 1;
}

#g-nav-list { /*縦スクロール*/
	padding: 100px 60px 80px;
	width: 100%;
	height: 100%;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
.g-nav-pagelist {
	align-items: center;
}
#g-nav .menu-box01 {
	width: 100%;
}
#g-nav .menu-box01 li {
	margin: 2px 0;
	border-bottom: 1px solid #ccc;
}
#g-nav .menu-box01 li a {
	display: block;
	width: 100%;
	height: 100%;
	color: #333;
	font-weight: 700;
	font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
	line-height: 60px;
}
#g-nav .menu-box01 li a:hover {
	color: #ccc;
}
#g-nav .tel-number {
	margin: 40px auto 0;
}
#g-nav .tel-number a {
	display: block;
	text-align: center;
	border: 1px solid #21AC37;
	padding: 6px 10px;
}
#g-nav .tel-number span {
	font-size: clamp(1.125rem, 0.9rem + 1.13vw, 2.25rem); /*36→18px*/
}
#g-nav .tel-number small {
	display: block;
	font-size: clamp(0.813rem, 0.75rem + 0.31vw, 1.125rem); /*18→13px*/
}
@media screen and (max-width: 960px) {
#g-nav-list { /*縦スクロール*/
	padding: 80px 40px 40px;
}
#g-nav .menu-box01 li a {
	line-height: 50px;
}
}

/*
================================
　電話番号
================================
*/
.tel-number {
	margin: 14px 0;
}
.tel-number span {
	position: relative;
	padding-left: calc(19px + 24px);
	color: #21AC37;
	font-weight: 700;
	font-size: clamp(1.5rem, 1.3rem + 1vw, 2.5rem); /*40→24px*/
}
.tel-number span:before {
	position: absolute;
	top: calc(50% - 20px);
	left: 0;
	content: "";
	background: url(../img/common/icon_tel.svg) no-repeat;
	background-size: cover;
	width: 24px;
	height: 41px;
}
.tel-number small {
	color: #21AC37;
	font-weight: 700;
	font-size: clamp(1rem, 0.875rem + 0.63vw, 1.625rem); /*26→16px*/
}
@media screen and (max-width: 960px) {
.tel-number small {
	display: block;
}
.tel-number span {
	padding-left: 26px;
}
.tel-number span:before {
	top: calc(50% - 13.5px);
	width: 16px;
	height: 27px;
	background: url(../img/common/icon_tel.svg) no-repeat;
	background-size: cover;
}
}

/*
================================
　共通ボタン
================================
*/

/*  */
.contents-btn {
	margin: 40px auto 0;
	text-align:center;
}
.contents-btn a {
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 280px;
	background: #fff;
	border: 1px solid #21AC37;
	text-align: center;
}
.contents-btn a:after {
	content: "→";
	position: absolute;
	top: calc(50% - 0.5em);
	right: 12px;
	color: #21AC37;
	line-height: 1;
}
.contents-btn span {
	position: relative;
	color: #21AC37;
	font-weight: 700;
	font-size: clamp(0.813rem, 0.775rem + 0.19vw, 1rem); /*16→13px*/
	letter-spacing: 0em;
	line-height: 60px;
}
/* ホバー */
.contents-btn a:hover, .contents-btn a:active {
	background: #21AC37;
	transition-timing-function: ease-out;
	transition-duration: 0.6s;
}
.contents-btn a:hover span, .contents-btn a:active span {
	color: #fff;
}
.contents-btn a:hover:after, .contents-btn a:active:after {
	color: #fff;
}
@media screen and (max-width: 960px) {
.contents-btn a {
	max-width: 220px;
}
.contents-btn span {
	line-height: 50px;
}
}


/*  */
.contact-btn {
	margin: 32px auto 0;
	text-align:center;
}
.contact-btn a {
	display: inline-block;
	width: 100%;
	max-width: 380px;
	background: #21AC37;
	border: 1px solid #21AC37;
	text-align: center;
}
.contact-btn span {
	position: relative;
	color: #fff;
	font-weight: 700;
	font-size: clamp(1rem, 0.938rem + 0.31vw, 1.313rem); /*21→16px*/
	letter-spacing: 0em;
	line-height: 80px;
	padding-left: 46px;
}
.contact-btn span:after {
	content: "";
	position: absolute;
	top: calc(50% - 11.5px);
	left: 0;
	background: url(../img/common/icon_contact.svg) no-repeat;
	background-size: cover;
	width: 30px;
	height: 23px;
}
/* ホバー */
.contact-btn a:hover, .contact-btn a:active {
	opacity: 0.5;
	filter: alpha(opacity=50);
	transition-timing-function: ease-out;
	transition-duration: 0.6s;
}
@media screen and (max-width: 960px) {
.contact-btn a {
	max-width: 300px;
}
.contact-btn span {
	line-height: 60px;
	padding-left: 30px;
}
.contact-btn span:after {
	top: calc(50% - 8px);
	width: 20px;
	height: 16px;
}
}

/*
================================
　共通タイトル
================================
*/

/*  */
.title01 {
	margin: 0 auto 48px;
}
.title01 span {
	position: relative;
	display: block;
	color: #333;
	font-size: clamp(1.125rem, 0.975rem + 0.75vw, 1.875rem); /*30→18px*/
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.8;
}

.title02 {
	margin: 0 auto 50px;
}
.title02 span {
	position: relative;
	display: block;
	color: #21AC37;
	font-size: clamp(1.125rem, 0.975rem + 0.75vw, 1.875rem); /*30→18px*/
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.8;
	text-align: center;
}
.title02 span:after {
	content: "";
	position: absolute;
	bottom: -6px;
	left: calc(50% - 50px);
	width: 100px;
	height: 1px;
	background: #21AC37;
}


.title03 {
	margin: 0 auto 50px;
	background: #19478d;
	text-align: left;
	padding: 10px 24px;
}
.title03 span {
	position: relative;
	display: block;
	color: #fff;
	font-size: clamp(1rem, 0.938rem + 0.31vw, 1.313rem); /*21→16px*/
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.8;
}

.title04 {
	margin: 0 auto 50px;
	text-align: left;
}
.title04 span {
	position: relative;
	display: block;
	color: #21AC37;
	font-size: clamp(1.313rem, 1.15rem + 0.81vw, 2.125rem); /*34→21px*/
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.8;
}
.title04 span:after {
	content: "";
	position: absolute;
	top: -10px;
	left: 0;
	width: 60px;
	height: 1px;
	background: #21AC37;
}


.title05 {
	margin: 0 auto 50px;
	text-align: center;
}
.title05 span {
	position: relative;
	display: block;
	color: #21AC37;
	font-size: clamp(1.125rem, 0.925rem + 1vw, 2.125rem); /*34→18px*/
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.8;
}
.title05 span:after {
	content: "";
	position: absolute;
	top: -10px;
	left: calc(50% - 30px);
	width: 60px;
	height: 1px;
	background: #21AC37;
}



/*
================================
　メインイメージ
================================
*/
/* トップ */
#mainimg {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	padding-bottom: 90px;
}
#mainimg:after {
	content: "";
	position: absolute;
	top: 90px;
	left: 0;
	margin: 0 auto 0 0;
	width: 88.54%;
	height: 100%;
	background: #21AC37;
	z-index: 1;
}
#mainimg .catchcopy {
	position: absolute;
	z-index: 100;
}
#mainimg .catchcopy p {
	display: inline-block;
	background: #fff;
	padding: 10px 10px 10px 28px;
}
#mainimg .catchcopy p:nth-of-type(2) {
	display: block;
	margin: 30px 0 0 136px;
	padding: 6px 10px 6px 28px;
}
#mainimg .catchcopy strong {
	margin: 0 0 5px;
	display: inline-block;
	color: #21AC37;
	font-size: clamp(1.313rem, 0.9rem + 2.06vw, 3.375rem); /*54→21px*/
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
}
#mainimg .catchcopy span {
	display: inline-block;
	color: #000;
	font-size: clamp(1rem, 0.675rem + 1.63vw, 2.625rem); /*42→16px*/
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
}
@media screen and (max-width: 960px) {
#mainimg {
	padding-bottom: 40px;
}
#mainimg:after {
	top: 40px;
}
#mainimg .catchcopy p {
	padding: 6px 10px 6px 20px;
}
#mainimg .catchcopy p:nth-of-type(2) {
	margin: 20px 0 0 30px;
	padding: 6px 10px 6px 20px;
}
}

/* スライダー */
#slider-container {
	margin: 0 0 0 auto;
	width: 88.54%;
	z-index: 10;
}
#slider-container .slider04 {
}
#slider-container .slider04 .slick-slide {
	position: relative;
	width: 100%;
	height: calc( (var(--vh) * 100) - 190px );
	overflow: hidden;
}
#slider-container .slider04 .slick-slide img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media screen and (max-width: 1600px) {
#slider-container .slider04 .slick-slide {
	height: calc( (var(--vh) * 100) - 170px );
}
}
@media screen and (max-width: 960px) {
#slider-container .slider04 .slick-slide {
	height: calc( (var(--vh) * 100) - 90px );
}
#slider-container .slider04 .slick-slide:nth-of-type(1) img {
	object-position: center center;
}
#slider-container .slider04 .slick-slide:nth-of-type(2) img {
	object-position: center top;
}
#slider-container .slider04 .slick-slide:nth-of-type(3) img {
	object-position: center center;
}
}


/* 下層 */
#subimg {
	position: relative;
	background: #fff;
	padding-bottom: 90px;
}
#subimg:after {
	content: "";
	position: absolute;
	top: 90px;
	left: 0;
	margin: 0 auto 0 0;
	width: 88.54%;
	height: 100%;
	background: #21AC37;
	z-index: 1;
}
#subimg .subimg-photo {
	position: relative;
	margin: 0 0 0 auto;
	width: 88.54%;
	height: 0;
	padding-top: 14%;
	overflow: hidden;
	background: url(../img/common/subimg.jpg) no-repeat left center;
	background-size: cover;
	z-index: 10;
}
#subimg .subimg-title {
	position: absolute;
	bottom: calc(90px - 10px);
	left: 11%;
	z-index: 100;
}
#subimg .subimg-title span {
	display: inline-block;
	color: #000;
	font-size: clamp(1.5rem, 1.275rem + 1.13vw, 2.625rem); /*42→24px*/
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
	background: #fff;
	padding: 10px 28px;
}
@media screen and (max-width: 1600px) {
#subimg .subimg-photo {
	padding-top: 20%;
}
#subimg {
	padding-bottom: 60px;
}
#subimg:after {
	top: 60px;
}
#subimg .subimg-title {
	bottom: calc(60px - 10px);
}
}
@media screen and (max-width: 960px) {
#subimg .subimg-photo {
	padding-top: 30%;
}
#subimg {
	padding-bottom: 40px;
}
#subimg:after {
	top: 40px;
}
#subimg .subimg-title {
	bottom: calc(40px - 5px);
}
#subimg .subimg-title span {
	padding: 6px 20px;
}
}
@media screen and (max-width: 520px) {
#subimg .subimg-photo {
	padding-top: 40%;
}
}


/*
================================
　フッター
================================
*/

/* フッター */
footer {
	padding: 110px 0;
	width: 100%;
}
footer .inner {
	margin: 0 auto;
	width: 100%;
	max-width: 1400px;
}
.ft-info {
	text-align: center;
}
.ft-info p {
	letter-spacing: 0.1em;
	line-height: 2.2;
	text-align: center;
}
.ft-logo {
	margin: 0 0 32px;
}
.ft-logo a {
	display: inline-block;
	width: 600px;
}
.fax-number {
	font-weight: 700;
	font-size: clamp(1rem, 0.875rem + 0.63vw, 1.625rem); /*26→16px*/
}

@media screen and (max-width: 1600px) {
footer .inner {
	width: calc(100% - 100px);
}
.ft-logo a {
	width: 420px;
}
}
@media screen and (max-width: 960px) {
.ft-logo a {
	width: 280px;
}
}
@media screen and (max-width: 520px) {
footer {
	padding: 60px 0;
}
footer .inner {
	width: calc(100% - 40px);
}
}

/* コピーライト */
address {
	padding: 40px 0;
	width: 100%;
	background: #21AC37;
}
address p {
	color: #fff;
	font-size: clamp(0.688rem, 0.625rem + 0.31vw, 1rem); /*16→11px*/
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1;
	text-align: center;
}
@media screen and (max-width: 960px) {
address {
	padding: 20px 0;
}
}



/*
================================
　トップページ
================================
*/

/* ごあいさつ */
.top-message {
	padding: 120px 0;
}
.top-message .contents-btn {
	text-align: left;
}
.top-message .message-box {
	display: grid;
	grid-template-columns: 46% 54%;
	column-gap: 0;
}
.top-message .message-photo {
	position: relative;
	margin: 0 auto 0 0;
	width: 100%;
	height: 540px;
}
.top-message .message-photo figure {
	position: absolute;
	top: 0;
	right: 0;
	background: url(../img/top/img_greeting.jpg) no-repeat;
	background-size: cover;
	width: 50vw;
	height: 100%;
	overflow: hidden;
}
.top-message .message-text {
	position: relative;
	top: 120px;
	left: -140px;
	width: calc(100% + 140px);
	padding: 80px 100px;
	background: #fff;
}
.top-message .message-text p {
	margin: 0 0 1.5em;
	font-weight: 700;
}
.top-message .message-text p:last-of-type {
	margin: 0;
}
.top-message .message-text p.sign {
	text-align: right;
}
@media screen and (max-width: 960px) {
.top-message .message-box {
	grid-template-columns: 1fr;
	column-gap: 0;
}
.top-message .message-photo figure {
	left: -50px;
	width: 100vw;
}
.top-message .message-text {
	position: static;
	margin-top: -100px;
	width: 100%;
	padding: 50px;
	z-index: 1;
}
}
@media screen and (max-width: 520px) {
.top-message {
	padding: 80px 0;
}
.top-message .message-photo {
	margin: 0 auto;
	height: 240px;
}
.top-message .message-photo figure {
	left: 0;
	width: 100%;
}
.top-message .message-text {
	margin-top: 0px;
	padding: 50px 0;
}
}

/* メニュー */
.top-menu {
	padding: 120px 0;
	background: #F2F2F2;
}
.top-menu .menu-box {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 3.9%;
}
.top-menu .menu-item figure {
	margin: 0 0 26px;
	width: 100%;
}
.top-menu .menu-concept {
	margin: 100px auto 0;
	padding: 40px 40px;
	background: #fff;
}
.top-menu .menu-concept p {
	text-align: center;
	line-height: 3;
}
.top-menu .menu-concept p strong {
	background: linear-gradient(transparent 70%, #F0AF024D 0%);
	display: inline;
	font-weight: 700;
}
@media screen and (max-width: 960px) {
.top-menu .menu-box {
	grid-template-columns: 1fr;
	row-gap: 50px;
	text-align: center;
}
}
@media screen and (max-width: 520px) {
.top-menu {
	padding: 80px 0;
}
.top-menu .menu-concept {
	margin: 80px auto 0;
	padding: 30px 20px;
}
}


/*
================================
　メッセージ
================================
*/
.page-message .message-box {
	display: grid;
	grid-template-columns: 46% 54%;
	column-gap: 0;
	overflow: hidden;
	padding-bottom: 120px;
}
.page-message .message-box > figure {
	position: relative;
	margin: 0 auto 0 0;
	width: 100%;
	height: 540px;
}
.page-message .message-text {
	position: relative;
	top: 120px;
	left: -140px;
	width: calc(100% + 140px);
	padding: 80px 100px;
	background: #fff;
}
@media screen and (max-width: 960px) {
.page-message .message-box {
	grid-template-columns: 1fr;
	padding-bottom: 0;
}
.page-message .message-box > figure {
	height: auto;
}
.page-message .message-photo {
	margin: 0 auto;
}
.page-message .message-text {
	position: static;
	width: 100%;
	padding: 50px;
	z-index: 1;
}
}
@media screen and (max-width: 520px) {
.page-message .message-text {
	padding: 50px 0;
}
}


/*
================================
　下層ページ共通
================================
*/
.page-contact,
.page-activity,
.page-report,
.page-message,
.page-toiawase {
	padding-bottom: 120px;
	border-bottom: 1px solid #ccc;
}
.page-contact .inner,
.page-activity .inner,
.page-report .inner,
.page-message .inner,
.page-toiawase .inner {
	max-width: 1200px;
}

.page-cmn-box {
	margin: 120px 0 0;
}
.page-cmn-box p {
	margin: 0 0 1.5em;
}
.page-cmn-box p:last-of-type {
	margin: 0;
}
.page-cmn-box p strong {
	font-weight: 700;
}
.page-cmn-box li {
	position: relative;
	padding-left: 1.5em;
}
.page-cmn-box li:before {
	position: absolute;
	left: 0;
	content: "・";
}
.page-cmn-secbox {
	margin: 0 0 50px;
}
.page-cmn-secbox:last-of-type {
	margin: 0;
}
.photo-list {
	display: grid;
	grid-template-columns: 48% 48%;
	column-gap: 4%;
}

.page-contact .contact-text,
.page-contact .contact-text p {
	text-align: center;
}
@media screen and (max-width: 520px) {
.page-contact,
.page-activity,
.page-report,
.page-message,
.page-toiawase {
	padding-bottom: 80px;
}
.page-cmn-box {
	margin: 80px 0 0;
}
.page-contact .contact-text,
.page-contact .contact-text p {
	text-align: left;
}
}


/*
================================
　プライバシーポリシー
================================
*/
.privacy-scroll-box {
	height: 500px;    
	overflow: auto;  
	padding: 50px;
	border: 1px solid rgba(16,16,16,0.3);
	background: #fff;
}
.privacy-box {
	padding: 0 0 90px;
	background: #fff;
}
.privacy-box:last-of-type {
	padding: 0;
}
.privacy-box p + ul {
	margin: 30px 0 0;
}
.privacy-box ul + p {
	margin: 30px 0 0;
}
.privacy-box dt {
	margin-bottom: 10px;
	font-size: clamp(0.938rem, 0.863rem + 0.38vw, 1.313rem); /*21→15px*/
	font-weight: 700;
}
.privacy-box dd {
	margin-bottom: 50px;
}
.privacy-box ul {
	counter-reset: number 0;
}
.privacy-box li {
	padding-left: 1.6em;
}
.privacy-box li:before {
	counter-increment: number 1;
	content: counter(number) ".";
	margin: 0 10px 0 0;
	font-weight: 700;
}
.privacy-contact {
	margin: 50px 0 0;
}
.privacy-contact a {
	text-decoration: underline;
}
@media screen and (max-width: 960px) {
.privacy-scroll-box {
	height: 500px;    
	padding: 30px;
}
.privacy-box {
	padding: 0 0 40px;
}
.privacy-box dt {
	margin-bottom: 5px;
}
.privacy-box dd {
	margin-bottom: 30px;
}
.privacy-contact {
	margin: 30px 0 0;
	padding: 10px;
}
}
@media screen and (max-width: 520px) {
.privacy-scroll-box {
	height: 400px;    
	padding: 20px;
}
}



/*
================================
　お問い合わせフォーム
================================
*/
.siteform {
	margin: 120px auto 0;
	width: 100%;
	max-width: 800px;
}
.siteform table {
	width: 100%;
}
.siteform th {
	width: 36%;
	padding: 30px 20px 30px 0;
	vertical-align: middle;
}
.siteform td {
	width: 64%;
	padding: 30px 20px 30px 0;
}
.siteform span.req {
	display: inline-block;
	background: #e60011;
	color: #fff;
	border-radius: 5px;
	font-size: 12px;
	line-height: 1;
	padding: 3px 6px 4px;
	margin: 0 0 0 1em;
}
.siteform .fsize-m {
	width: 60%;
}
.siteform .fsize-l {
	width: 100%;
}
.siteform .explanation {
	margin: 10px 0 0;
	display: block;
	font-size: clamp(0.75rem, 0.725rem + 0.13vw, 0.875rem);
	color: #666;
	text-align: left;
}
.siteform td input[type="email"],
.siteform td input[type="text"],
.siteform td textarea {
	padding: 10px;
	min-height: 40px;
	border: 1px solid #ccc;
	background: #fff;
	-webkit-appearance: none;
	font-family: 'Noto Sans JP',"Meiryo UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN","Yu Gothic UI", "MS PGothic", sans-serif;
}
.siteform td textarea {
	width: 100%;
	resize: vertical;
	min-height: 200px;
}
.siteform td select {
	padding: 10px;
	min-height: 40px;
	border: 1px solid #ccc;
	font-family: 'Noto Sans JP',"Meiryo UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN","Yu Gothic UI", "MS PGothic", sans-serif;
}
.siteform .mailcheck {
	text-align: center;
}
.siteform .contact-btn {
	margin: 70px auto;
	text-align: center;
}
.siteform .contact-btn .send {
	margin: 5px;
	display: inline-block;
	width: 100%;
	max-width: 300px;
	line-height: 60px;
	border: none;
	outline: none;
	background: #FF7733;
	border: 2px solid #FF7733;
	color: #fff;
	font-size: clamp(0.813rem, 0.757rem + 0.28vw, 1rem);
	font-weight: 700;
	letter-spacing: 0.2em;
	text-align: center;
	cursor: pointer;
	-webkit-appearance: none;
	font-family: 'Noto Sans JP',"Meiryo UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN","Yu Gothic UI", "MS PGothic", sans-serif;
}
.siteform .contact-btn .back {
	margin: 5px;
	display: inline-block;
	width: 100%;
	max-width: 300px;
	line-height: 60px;
	border: none;
	outline: none;
	background: #333;
	border: 2px solid #333;
	color: #fff;
	font-size: clamp(0.813rem, 0.757rem + 0.28vw, 1rem);
	font-weight: 700;
	letter-spacing: 0.2em;
	text-align: center;
	cursor: pointer;
	-webkit-appearance: none;
	font-family: 'Noto Sans JP',"Meiryo UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN","Yu Gothic UI", "MS PGothic", sans-serif;
}
.siteform .thanks {
	padding: 50px 80px;
	background: #fffbed;
	border-radius: 20px;
}
.siteform .thanks h3 {
	margin: 0 auto 30px;
	text-align: center;
}
.siteform .thanks h3 span {
	color: #38312B;
	font-size: clamp(1rem, 0.938rem + 0.31vw, 1.313rem); /*21→16px*/
	font-weight: 700;
	letter-spacing: 0;
}
.siteform .note p {
	margin: 0 0 20px;
	text-align: center;
}
.siteform .note p:last-of-type {
	margin: 0;
}
.siteform .contact-text {
	margin: 60px 0 0;
}
.siteform .privacy-check span {
	font-weight: 700;
}
@media screen and (max-width: 960px) {
.siteform {
	margin: 80px auto 0;
}
.siteform .fsize-m {
	width: 100%;
}
.siteform .fsize-l {
	width: 100%;
}
.siteform .mwform-radio-field {
	display: block;
	white-space: nowrap;
}
.siteform .mwform-radio-field.horizontal-item {
	margin-left: 0 !important;
}
.siteform .contact-btn {
	margin: 50px auto;
	text-align: center;
}
.siteform .contact-btn .send, .siteform .contact-btn .back {
	width: 240px;
	line-height: 60px;
}
.siteform .thanks {
	padding: 30px 20px;
}
.siteform .thanks h3 {
	margin: 0 auto 20px;
	text-align: left;
}
.siteform .privacy-check p {
	text-align: center;
}
.siteform .contact-text {
	margin: 30px 0 0;
}
}
@media screen and (max-width: 780px) {
.siteform th {
	display: block;
	width: 100%;
	padding: 0px 0px 10px 0;
}
.siteform td {
	display: block;
	width: 100%;
	padding: 0px 0px 30px 0;
}
}

