/* ------------------------------------
   base.css
   子テーマ共通のリセット & 基本設定
   ------------------------------------ */
/*** Flex-Box ***/
.flexbox{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
/*** タブレット改行指定 ***/
@media (min-width: 768px) {
	.br-sm{
		display: none;
	}
}
@media (max-width: 800px) {
	.br-sm{
		display: block;
	}
}
/*** カラー登録 ***/
.text-green{
	color: #62be6d !important;
}
.bg-green{
	background-color: #62be6d !important;
}
.text-yellow{
	color: #ceab39 !important;
}
.bg-yellow{
	background-color:#ceab39 !important;
}
.text-pink{
	color: #ff868d !important;
}
.bg-pink{
	background-color: #ff868d !important;
}
.text-blue{
	color: #5fb6c6 !important;
}
.bg-blue{
	background-color: #5fb6c6 !important;
}
/******************************
	写真の角丸
******************************/
.kado-r{
	border-radius: 16px;
}
/******************************
	見出し・タイトル・本文
******************************/
/*** Googleフォント ***/
h1,h2,h3{
	font-family: "fot-chiaro-std", sans-serif !important;
	font-weight: 300;
	color: #4b3a21 !important;
}
h2.catch{
	position: relative;
	color: #4b3a21 !important;
	margin-top: 80px !important;
	letter-spacing: 0.03em;
	text-align: center;
}
.header_slider_content h2.catch{
	color: #fff !important;
}
/*** 見出しにリーフのアイコン ***/
h2.catch::before{
	content: '';
	position: absolute;
	top: -70px;
	left: 50%;
	margin-left: -27px;
	width: 54px;
	height: 62px;
	background-image: url("../img/item_leaf_01.svg");
	background-repeat: no-repeat;
}
#header_slider_container h2.catch::before{
	display: none;
}
#header_slider_container span{
	text-align: left;
}
p{
	color: #4b3a21 !important;
}
h2,h3,p,td,th,li,dd,dt{
	text-align: justify;
	text-justify: inter-ideograph;
}
/******************************
	モバイルメニュー
******************************/
#drawer_tel .tel{
	padding: 16px 0;
	height: auto !important;
	background: #fff;
	color: #62be6d !important;
	font-weight: bold;
	font-size: 28px !important; 
}
#drawer_tel .desc{
	color: #fff !important;
}
/******************************
	グルーバルメニュー
******************************/
#header li:last-child{
	background-color: #62be6d;
	padding-left: 16px;
	padding-right: 16px;
	transition: border-radius 0.3s ease; /* アニメーションで自然に */
}
#header li:last-child:hover {
  border-radius: 16px; /* お好みの角丸 */
}
#header li:last-child a{
	color: #fff !important;
	font-weight: 600;
}
/******************************
	疑似要素 item
******************************/
.item_01-before,
.item_01-after{
	position: relative;
}
.item_01-before::before{
	content: "";
	position: absolute;
	width: 170px;
	height: 215px;
	background: url("../img/item/item_01.svg") no-repeat center/contain;
}
.item_01-after::after{
	content: "";
	position: absolute;
	width: 170px;
	height: 215px;
	background: url("../img/item/item_01.svg") no-repeat center/contain;
}
.item_02-before::before{
	content: "";
	position: absolute;
	width: 170px;
	height: 215px;
	background: url("../img/item/item_02.svg") no-repeat center/contain;
}
.item_02-after::after{
	content: "";
	position: absolute;
	width: 170px;
	height: 215px;
	background: url("../img/item/item_02.svg") no-repeat center/contain;
}
/* タブレット */
@media (max-width: 800px) {
	.item_01-before::before,
	.item_01-after::after,
	.item_02-before::before,
	.item_02-after::after{
	  width: 150px;
	}
}
/* 小さめタブレット・大きめスマホ */
@media (max-width: 575px) {
	.item_01-before::before,
	.item_01-after::after,
	.item_02-before::before,
	.item_02-after::after{
	  width: 100px;
	}
}