@charset "UTF-8";

/*-----------------------------
タブレット
@media (min-width: 768px) {}

PC
@media (min-width: 1024px) {}

ワイドPC微調整
@media (min-width: 1280px) {}
------------------------------*/

/****************************************
	common parts
*****************************************/

/*=============================
	PC/SP/Tabletで表示・非表示
==============================*/
/*SPの時のみに表示*/
.m-sp {
	display: block;
}
@media (min-width:768px){
	.m-sp {
		display: none;
	}
}

/*SPとタブの時に表示*/
.m-sp-tab {
	display: block;
}
@media (min-width:1024px){
	.m-sp-tab {
		display: none;
	}
}

/*PCとタブの時に表示*/
.m-pc-tab {
	display: none;
}
@media (min-width:768px){
	.m-pc-tab {
		display: block;
	}
}

/*PCの時のみに表示*/
.m-pc {
	display: none;
}
@media (min-width:1024px){
	.m-pc {
		display: block;
	}
}

/*=============================
	box
==============================*/
/* inner
-----------------*/
.m-inner {
	width: 100%;
	padding: 0 1rem;
}
@media (min-width:1024px){
	.m-inner {
		padding: 0 3rem;
	}
}
@media (min-width:1280px){
	.m-inner {
		padding: 0;
	    max-width: 1200px;
		margin: 0 auto;
	}
}

/* section
-----------------*/
.m-section {
	padding: 2rem 0 3rem 0;
}
@media (min-width:768px){
	
}
@media (min-width:1024px){
	.m-section {
		padding: 4rem 0 5rem 0;
	}
}

/* box
-----------------*/
.m-box {
	border-radius: 20px;
	padding: 1.5rem 1.5rem;
}
.m-box.white {
	background-color: #FFF;
}
.m-box.beige {
	background-color: #FCF7EF;
}
@media (min-width:768px){
	.m-box {
		border-radius: 30px;
		padding: 1.5rem 1.5rem;
	}
}
@media (min-width:1024px){
	.m-box {
		border-radius: 50px;
		padding: 2rem 2rem;
	}
}
@media (min-width:1280px){
	.m-box {
		border-radius: 50px;
		padding: 2.5rem 4rem;
	}
}

/* 背景
-----------------*/
.m-bg-white {
	background-color: #FFF;
}


/*=============================
	テキスト関連
==============================*/
/* base
-----------------*/
/*.m-txt-en {
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	letter-spacing: 0;
}*/

.m-txt-C {
	text-align: center;
}
.m-txt-R {
	text-align:  right;
}

.m-txt-smaller {
	font-size: .9em;
}

.m-txt-bold {
	font-weight: 700;
}

.m-txt-Red {
	color: #f00;
}

/* 外部リンク（右にwindowアイコン）
-----------------*/
a.m-link-blank {
	position: relative;
	padding-right: 16px;
	margin-right: 10px;
}
a.m-link-blank:before {
	position: absolute;
	right: 0;
	top: 4px;
	display: block;
	content:"";
	width: 15px;
	height: 15px;
	background: url("../img/common/icon_window_brown.svg") no-repeat 0 0;
	background-size: cover;
}

/* テキストリンク
-----------------*/
/*
a.m-link-arrow {
	display: block;
	color: #E60012;
	line-height: 1.5;
	position: relative;
	padding-left: 25px;
	text-decoration: underline;
}
a.m-link-arrow:before {
	position: absolute;
	left: 0;
	top: 2px;
	display: block;
	content:"";
	width: 20px;
	height: 20px;
	background: url("../img/common/link-arrow.svg") no-repeat 0 0;
	background-size: cover;
}
a.m-link-arrow:hover {
	text-decoration: none;
}
@media (min-width:1110px){
	a.m-link-arrow {
		padding-left: 28px;
	}
	a.m-link-arrow:before {
		left: 0;
		top: 4px;
		width: 22px;
		height: 22px;
	}
}*/

/* 電話発信
（スマホでタップした時だけ電話発信を有効にする）
-----------------*/
@media (min-width:768px){
	.m-tel {
		pointer-events: none;
	}
}

/****************************************
	ページタイトル
*****************************************/
.m-pagettl-sec {
	position: relative;
	height: 16rem;
}
.page-guidance .m-pagettl-sec {
	background: url("../img/guidance/bg_pagettl.webp") center center no-repeat;
	background-size: cover;
}
.page-about .m-pagettl-sec {
	background: url("../img/guidance/bg_pagettl.webp") center center no-repeat;
	background-size: cover;
}
.page-life .m-pagettl-sec {
	background: url("../img/guidance/bg_pagettl.webp") center center no-repeat;
	background-size: cover;
}
.page-program .m-pagettl-sec {
	background: url("../img/guidance/bg_pagettl.webp") center center no-repeat;
	background-size: cover;
}
.page-news .m-pagettl-sec {
	background: url("../img/guidance/bg_pagettl.webp") center center no-repeat;
	background-size: cover;
}
.page-contact .m-pagettl-sec {
	background: url("../img/guidance/bg_pagettl.webp") center center no-repeat;
	background-size: cover;
}
.m-pagettl-text {
	padding-top: 8rem;
	color: #fff;
	text-align: center;
}
.m-pagettl-text .jp {
	font-size: 1.8rem;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: 2px;
}
.m-pagettl-text .en {
	font-size: 1rem;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 2px;
	margin-top: .3rem;
}
@media (min-width:768px){
	.m-pagettl-text .jp {
		font-size: 2.2rem;
	}
	.m-pagettl-text .en {
		font-size: 1.2rem;
	}
}
@media (min-width:1024px){/*headerのブレイクポイント*/
	.m-pagettl-sec {
		height: 20rem;
	}
	.m-pagettl-text {
		padding-top: 10.5rem;
	}
	.m-pagettl-text .jp {
		font-size: 2.5rem;
	}
	.m-pagettl-text .en {
		font-size: 1.3rem;
	}
}


/****************************************
	パンくず
*****************************************/
.m-topic-path-sec {
	padding: 1rem 4%;
}
.m-topic-path-sec li {
	display: inline;
	letter-spacing: 0;
	font-weight: 700;
	color: #B5A49C;
	line-height: 1.4;
	font-size: .8rem;
}
.m-topic-path-sec li a {
	text-decoration: underline;
	color: #B5A49C;
	position: relative;
	padding-right: 1rem;
	margin-right: .5rem;
}
.m-topic-path-sec li a:hover {
	text-decoration: underline;
}
.m-topic-path-sec li a:after {
	content: "";
	position: absolute;
	top: 2px;
	bottom: 0;
	right: 0;
	margin: auto;
	vertical-align: middle;
	width: 4px;
	height: 4px;
	border-top: 2px solid #B5A49C;
	border-right: 2px solid #B5A49C;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/****************************************
	ページ内リンク ボタンリスト
*****************************************/
.m-pnavi-list {
	list-style-type: none;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	gap: .8rem;
	margin-bottom: 1rem;
}
.m-pnavi-list-item {
	width: 10rem;
}
a.m-pnavi-list-link {
	display: block;
	background-color: #8DCE57;
	border-radius: 50px;
	position: relative;
	color: #fff;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	font-size: .9rem;
	padding: .5rem 0;
}
a.m-pnavi-list-link:hover {
	opacity: .8;
}
a.m-pnavi-list-link:after {
	position: absolute;
	right: 4px;
	top: 50%;
	display: block;
	content:"";
	width: 10px;
	height: 10px;
	margin-top: -5px;
	background: url("../img/common/arrow_white.svg") no-repeat center center;
	background-size: contain;
	-moz-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	transition: 0.25s ease-in-out;
	-moz-transition: 0.25s ease-in-out;
	-webkit-transition: 0.25s ease-in-out;
	-o-transition: 0.25s ease-in-out;
}
a.m-pnavi-list-link:hover:after {
	margin-top: -1px;
}
@media (min-width: 768px) {
	.m-pnavi-list {
		gap: .5rem;
		margin-bottom: 2rem;
	}
	.m-pnavi-list-item {
		width: 9.3rem;
	}
	a.m-pnavi-list-link {
		font-size: .85rem;
		padding: .6rem 0;
	}
}
@media (min-width: 1024px) {
	.m-pnavi-list {
		margin-bottom: 2rem;
		margin-top: 1rem;
		gap: 1rem;
	}
	.m-pnavi-list-item {
		width: 11.5rem;
	}
	a.m-pnavi-list-link {
		font-size: .95rem;
	}
	a.m-pnavi-list-link:after {
		right: 8px;
		width: 12px;
		height: 12px;
		margin-top: -6px;
	}
	a.m-pnavi-list-link:hover:after {
		margin-top: -2px;
	}
}


/****************************************
	タイトル
*****************************************/
/*=============================
	タイトルL 
	（茶色大文字/下にカラフルドット）
==============================*/
.m-ttl-L {
	text-align: center;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1.5;
	font-size: 1.6rem;
	margin-bottom: 3rem;
	position: relative;
}
.m-ttl-L:after {
	position: absolute;
	left: 50%;
	bottom: -.8rem;
	transform: translate(-50%, 0);
	display: block;
	content:"";
	width: 100px;
	height: 5.9px;
	background: url("../img/common/ttl_dot.webp") no-repeat 0 0;
	background-size: contain;
}
.m-ttl-L.left {
	text-align: left;
}
.m-ttl-L.left:after {
	left: 0;
	transform: translate(0, 0);
}
@media (min-width:768px) {
	.m-ttl-L {
		letter-spacing: 1px;
		line-height: 1.5;
		font-size: 1.9rem;
		margin-bottom: 3rem;
	}
	.m-ttl-L:after {
		bottom: -1rem;
		width: 156px;
		height: 9.5px;
	}
}
@media (min-width:1024px) {
	.m-ttl-L {
		letter-spacing: 3px;
		font-size: 2.2rem;
		margin-bottom: 4rem;
	}
}


/*=============================
	タイトルM
	（左に黄緑の花/黄緑文字/下線点線）
==============================*/
.m-ttl-M {
	font-weight: 900;
	letter-spacing: 1px;
	line-height: 1.2;
	font-size: 1.4rem;
	color: #8DCE57;
	border-bottom: 1px dashed #6E564B;
	position: relative;
	padding-left: 2.8rem;
	padding-bottom: .8rem;
	margin-bottom: 1rem;
}
.m-ttl-M:before {
	position: absolute;
	left: 0;
	top: -5px;
	display: block;
	content:"";
	width: 2.5rem;
	height: 2.5rem;
	background: url("../img/common/ttl_flower_green.webp") no-repeat 0 0;
	background-size: cover;
}
/*下線なしの場合*/
.m-ttl-M.no-border {
	border-bottom: none;
}
/*下にマージンなしの場合*/
.m-ttl-M.no-margin {
	margin-bottom: 0;
}
@media (min-width:768px) {
	.m-ttl-M {
		font-size: 1.7rem;
		padding-left: 3.2rem;
		padding-bottom: 1rem;
		margin-bottom: 1rem;
	}
	.m-ttl-M:before {
		top: -3px;
		width: 2.7rem;
		height: 2.7rem;
	}
}

/*=============================
	タイトルS
	（背景黄色/太文字茶色）
==============================*/
.m-ttl-S {
	background-color: #FFF4D0;
	padding: .7rem 1rem;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1.5;
	font-size: 1.1rem;
}
@media (min-width:768px) {
	.m-ttl-S {
		padding: 1.2rem 1.5rem;
	}
}
@media (min-width:1024px) {
	.m-ttl-S {
		padding: 1.2rem 2rem;
		font-size: 1.2rem;
	}
}



/****************************************
	ボタン
*****************************************/
a.m-btn {
	position: relative;
	display: block;
	width: 100%;
	max-width: 15rem;
	padding: 16px 8px 16px 3px;
	border-radius: 50px;
	text-align: center;
	text-decoration: none;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.4;
	letter-spacing: 0px;
	margin-left: auto;
	margin-right: auto;
	background-color: #8DCE57;
	color: #fff;
	transition: 0.25s ease-in-out;
	-moz-transition: 0.25s ease-in-out;
	-webkit-transition: 0.25s ease-in-out;
	-o-transition: 0.25s eease-in-out;
}
a.m-btn:after {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translate(0, -50%);
	display: block;
	content:"";
	width: 14px;
	height: 14px;
	background: url("../img/common/arrow_white.svg") no-repeat 0 0;
	background-size: cover;
}
a.m-btn:hover {
	opacity: .7;
}
@media (min-width:768px){
}
@media (min-width:1024px){
}



/* 戻るボタン */
/*
a.m-btn.return {
	padding: 15px 3px 15px 8px;
}
a.m-btn.return:after {
	left: 10px;
	right: auto;top: 50%;
	transform: translate(0, -50%) rotate(180deg);
}
*/

/****************************************
	table
*****************************************/
table {
	word-break: break-all;
	word-wrap: break-word;
	width: 100%;
}
.m-table-base {
	border-top: 1px dashed #6E564B;
}
.m-table-base tr {
	width: 100%;
}
.m-table-base th,
.m-table-base td {
	padding: .8rem .5rem;
	border-bottom: 1px dashed #6E564B;
	line-height: 1.8;
	font-size: .9rem;
	vertical-align: middle;
	text-align: center;
}
.m-table-base th {
	font-weight: 500;
}
.m-table-base td {
	font-weight: 500;
	background-color: #FFF;
}

/*------- スクロールさせる表の場合 tableを囲む -------*/
.m-table-scrollbox {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.m-table-scrollbox .m-table-base {
	width: 100%;
	min-width: 600px;
	/*border-collapse: collapse;*/
}
/*スクロール時固定させたいセル*/
.m-table-scrollbox .m-table-base .fixed-col  {
	position: sticky;
	left: 0;
	z-index: 1;
	background-color: #FFF4D0;
}

/*------- 表の個別設定 tableに各classふる -------*/
/*th黄色背景の表の場合 .yellow */
.m-table-base.yellow th {
	background-color: #FFF4D0;
}
/*th白背景の表の場合 .white */
.m-table-base.white th {
	background-color: #FFF;
}
/*一番左のセルを共通幅に .left-cell-c-width */
.m-table-base.left-cell-c-width th:first-child {
	width: 7rem;
}
/*セルの幅を均一に .cell-c-width */
.m-table-base.cell-c-width {
	width: 100%;
	table-layout: fixed;
}
/*縦線ありの表の場合 .border-vertical */
.m-table-base.border-vertical tr:first-child th {
	border-left: 1px dashed #6E564B;
}
.m-table-base.border-vertical tr:first-child th:first-child {
	border-left: none;
}
.m-table-base.border-vertical td {
	border-left: 1px dashed #6E564B;
}
/*------- セルの個別設定 th,tdに各classふる -------*/
/*左寄せのセルの場合 .txt-L */
.m-table-base .txt-L {
	text-align: left;
}
/*右寄せのセルの場合 .txt-R */
.m-table-base .txt-R {
	text-align: right;
}
/*太字のセルの場合 .txt-bold */
.m-table-base .txt-bold {
	font-weight: 700;
}
/*上付きセルの場合 .txt-top */
.m-table-base .txt-top {
	vertical-align: top;
}
/*上付きセルの場合 .txt-top */
.m-table-base .bg-gray {
	background-color: #f5f5f5;
}
@media (min-width:768px){
	.m-table-base th,
	.m-table-base td {
		padding: 1rem 1rem;
		line-height: 2;
		font-size: 1rem;
	}
	/*------- 表の個別設定 -------*/
	/*一番左のセル .left-cell-c-width */
	.m-table-base.left-cell-c-width th:first-child {
		width: 9rem;
	}
}
@media (min-width:1024px){
	.m-table-base th,
	.m-table-base td {
		padding: 1rem 1.3rem;
		line-height: 2;
		font-size: 1rem;
	}
	/*------- 表の個別設定 -------*/
	/*一番左のセル .left-cell-c-width */
	.m-table-base.left-cell-c-width th:first-child {
		width: 12rem;
	}
}

/****************************************
	pagenavi
*****************************************/
/*wp-pagenavi base*/
.wp-pagenavi {
	margin: 4em 0 0 0;
	clear: both;
	text-align:center;
}
.wp-pagenavi a, .wp-pagenavi span {
	color: #656B72;
	background-color: #FFF;
	border: solid 1px #dcdcdc;
	padding: 8px 15px;
	margin: 0 2px;
	white-space: nowrap;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	text-align: center;
	text-decoration:none;
}
.wp-pagenavi a:hover{
	background-color:#E60012; 
	color: #fff;
}
.wp-pagenavi span.current{
	color: #FFF;
	background-color: #c7c7c7;
	border-color: #c7c7c7;
	font-weight: bold;
}
.wp-pagenavi span.pages{
	border: 1px solid #c7c7c7;
	background-color: #F5F4F5;
}

/****************************************
	margin top
*****************************************/

/*   XXSサイズ
---------------------*/
.m-mt-XXS {
	margin-top: .5rem;
}

/*   XSサイズ
---------------------*/
.m-mt-XS {
	margin-top: 1rem;
}


/*   Sサイズ
---------------------*/
.m-mt-S {
	margin-top: 2rem;
}


/*   Mサイズ
---------------------*/
.m-mt-M {
	margin-top: 3rem;
}

/*   Lサイズ
---------------------*/
.m-mt-L {
	margin-top: 4rem;
}


/*   XLサイズ
---------------------*/
.m-mt-XL {
	margin-top: 5rem;
}

