@charset "UTF-8";
/*
 Theme Name:   kokorowa-or-jp-child
 Description:  こころわの子テーマ
 Author:       サイバーブリッジ株式会社
 Author URI:   http://cyber-bridge.jp
 Version:      1.0.0
*/ 
/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* common */
/* - - - - - - - - - - - - - - - - - - - - - - - - */
/*リキャプチャ非表示*/
.grecaptcha-badge {
    visibility: hidden;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
:hover {
	-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all  0.5s ease;
}
body {
	background-color: #fff;
	color: var(--text);
	font-family: var(--font-g);
	font-size: 16px;
	letter-spacing: 1.2px;
	line-height: 1.5;
}
h1,h2,h3,h4,h5,h6 {
	width: 100%;
	margin: 0 auto 30px;
	padding: 0;
	line-height: 1.5;
	letter-spacing: 1.7px;
	font-size: 30px;
}
p {
	font-size: 18px;
	letter-spacing: 1.5px;
	line-height: 1.7;
	margin-bottom: 15px;
}
ol,ul,li,dl,dt,dd {
	margin: 0;
	padding: 0;
	list-style: none;
}
img {
	width: 100%;
	vertical-align: bottom;
	object-fit: contain;
}
a {
	text-decoration: none;
	color: var(--text);
}
/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* root設定 */
/* - - - - - - - - - - - - - - - - - - - - - - - - */
:root {
    /*カラー関係*/
	--main-o: #F97316;
	--sub-o: #FBBF24;
	--main-g: #006A3D;
	--sub-g: #AED265;
	--point:#DE2C64;
	--point-p:#EDBACA;
	--point2:#FFEAF0;
	--text:#191919;
    --border: #ccc;
    --gray: #eee;
    --bk: #f7f8f9;
    --error: #dc143c;
	/*コンテンツ幅 - width*/
    --max-con: 1200px;
    --min-con: 900px;
    /*フォントファミリー*/
	--font-g: "Rounded Mplus 1c";
    --font-a: fontawesome;
  }

/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* 各種設定 */
/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* コンテンツ幅 */
/* - - - - - - - - - */
.conWrapMax {
	width: var(--max-con);
}
.conWrapMin {
	width: var(--min-con);
}
.mar0auto {
	margin: 0 auto;
}
.pSmax {
	padding: 100px 0;
}
.pSmin {
	padding: 50px 0;
}
/* レイアウト */
/* - - - - - - - - - */
.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
/* 見出しアクセント */
/* - - - - - - - - - */
.shadowTitle {
	text-align: center;
    position: relative;
	margin-bottom: 50px;
}
.shadowTitle::before {
    content: attr(data-title);
    position: absolute;
    bottom: -15px;
    left: 0;
	right: 0;
	font-weight: normal;
	font-size: 16px;
	color: var(--sub-o);
}
/* 文字アクセントカラー */
/* - - - - - - - - - */
.color1 { /*濃いオレンジ*/
	color: var(--main-o);
}
.color2 { /*薄いオレンジ*/
	color: var(--sub-o);
}
.color3 { /*濃いグリーン*/
	color: var(--main-g);
}
.color4 { /*薄いグリーン*/
	color: var(--sub-g);
}
.color5 { /*ピンク*/
	color: var(--point-p);
}
/* ボタン */
/* - - - - - - - - - */
.linkBtn {
	display: block;
	padding: 20px 10px;
	font-weight: bold;
	font-size: 18px;
	letter-spacing: 2px;
	border-radius: 50px;
	text-align: center;
}
.btnGorange {/*オレンジグラデ*/
	color: #fff;
	background: rgb(251,191,36);
	background: linear-gradient(45deg, rgba(251,191,36,1) 38%, rgba(249,115,22,1) 100%);
}
.btnGreen {/*グリーングラデ*/
	color: #fff;
	background: rgb(174,210,101);
	background: linear-gradient(45deg, rgba(174,210,101,1) 0%, rgba(0,106,61,1) 100%);
}
.btnNorange {/*ノーマルオレンジ*/
	background-color: #fff;
	border: solid 2px var(--sub-o);
	color: var(--main-o);
}
/* 画像表示 */
/* - - - - - - - - - */
.pcOn { /*PCで表示、スマホ非表示*/
	display: block;
}
.mbOn,.mmbOn { /*PC非表示、スマホで表示*/
	display: none;
}
/* 背景色 */
/* - - - - - - - - - */
.bkG-o {/*オレンジグラデ*/
	background: linear-gradient(90deg, rgb(251,191,36,0.2) 0%, rgba(251, 136, 36,0.3) 100%);
}
.bkG-g {/*グリーングラデ*/
	background: linear-gradient(90deg, #e3ffe7 0%, #d9e7ff 100%);
}
.bkN-o {/*オレンジ単色*/
	background-color: rgba(251, 136, 36,0.1);
}
/* その他 */
::placeholder {
	color: var(--border);
	font-family: var(--font-g);
	letter-spacing: 2px;
}
/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* header */
/* - - - - - - - - - - - - - - - - - - - - - - - - */
header {
	width: 100%;
	position: fixed;
	top: 0;
	background-color: #fff;
	box-shadow: 0px 0px 10px rgba(000, 000, 000, 0.2);
	z-index: 999;
}
/* ロゴ・CTA */
/* - - - - - - - - - */
.pcHd p {
	margin: 0;
	padding: 2px 2.5%;
	background-color: var(--main-o);
	color: #fff;
	text-align: right;
	font-size: 12px;
}
.topHd {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 2.5%;
	background-color: #fff;
	border-bottom: solid 1px var(--border);
}
.topLogo a {
	display: block;
}
.topLogo img {/*ロゴ*/
	height: 80px;
}
/* CTA */
.topCta {
	display: flex;
	justify-content: flex-end;
}
.topTel {/*電話番号*/
	display: block;
	flex: 1;
	margin-right: 20px;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
}
.topTel span {
	display: block;
	font-size: 12px;
	font-weight: normal;
}
.topMail {/*メールボタン*/
	width: 200px;
}
/* ナビ */
/* - - - - - - - - - */
:root {
	--nav-height:70px;
}
.pcHd nav {
	height: var(--nav-height);
	padding: 0 2.5%;
	background-color: #fff;
}
.pcHd nav ul {
	height: var(--nav-height);
	display: flex;
	align-items: center;
	justify-content: center;
}
.pcHd nav ul li {
	text-align: center;
	width: calc(100%/5);
	font-weight: bold;
	border-right: solid 1px var(--border);
}
.pcHd nav ul li:last-child {
	border-right: none;
}
.pcHd nav ul li a {
	display: block;
	font-size: 18px;
}
.pcHd nav ul li a span {
	display: block;
	font-size: 12px;
	font-weight: normal;
}
.topTel:hover,
.pcHd nav ul li a:hover {
	color: var(--sub-o);
}
/* 現在いるページ */
.navCurrent {
	color: var(--sub-o);
}
/* スマホ用 */
#hamburger,
.mbLogo,
#global_navi {
	display: none;
}
/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* footer */
/* - - - - - - - - - - - - - - - - - - - - - - - - */
footer {
	padding: 50px 0 20px;
	background-color: rgb(251,191,36,0.1);
	display: relative;
}
/* - - - - - - - - - */
.ftHd {
	text-align: center;
}
.ftHd a img {
	width: 300px;
	margin-bottom: 30px;
}
.ftHd p {
	font-weight: bold;
	font-size: 18px;
}
.ftHd p span {
	display: block;
	font-weight: normal;
	font-size: 16px;
}
.ftTel {
	font-size: 35px;
	font-weight: bold;
	color: var(--main-o);
}
.ftTel span {
	display: block;
	font-weight: normal;
	font-size: 14px;
	color: var(--text);
}
.ftTel:hover {
	color: var(--sub-o);
}

/* サイトマップ */
/* - - - - - - - - - */
footer nav ul {
	display: flex;
	flex-wrap: wrap;
	margin: 50px auto 30px;
}
footer nav ul li {
	width: 25%;
	margin-bottom: 15px;
	position: relative;
	padding-left: 20px;
}
footer nav ul li::before {
	content: '\f0da';
	font-family: var(--font-a);
	color: var(--sub-o);
	position: absolute;
	top: 0;
	left: 0;
}
footer nav ul li:nth-child(8)::before {
	content: '\f09e';
	font-family: var(--font-a);
	color: var(--sub-o);
	position: absolute;
	top: 0;
	left: 0;
}
footer nav ul li a:hover {
	color: var(--sub-o);
}
/* コピーライト */
/* - - - - - - - - - */
footer small {
	display: block;
	width: 100%;
	padding: 5px 2.5%;
	text-align: right;
	color: #fff;
	background-color: var(--main-o);
}
.fb-wrap{
	position: relative;;
}
.footer-banner{
	position: absolute;
    bottom: 58px;
    right: 30px;
}
.footer-banner-mb{
	display: none;
}
.footer-banner figure{
	height: 80px;
	overflow: hidden;
}
.footer-banner figure img{
    object-fit: contain;
    height: 80px;
	width: 100%;
}
/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* ★パンくず */
/* - - - - - - - - - - - - - - - - - - - - - - - - */
#pan {
    padding: 20px 2.5%;
}
#pan ol {/*長くなったらスクロール*/
    width: auto;
    font-size: 14px;
    display: flex;
    overflow-x: scroll;
    word-break: keep-all;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
#pan ol::-webkit-scrollbar {/*スクロールバー非表示*/
    display: none;
  }
#pan ol li {
    display: block;
	padding-right: 50px;
	position: relative;
}
#pan ol li:after {
	position: absolute;
	right: 0;
	top: 50%;
    content: '';
	width: 30px;
	height: 1px;
	background-color: var(--border);
	display: block;
    margin: 0 10px;
}
#pan ol li:last-child::after {
    display: none;
}
.panCurrent {
    font-weight: bold;
}

/* Pagination Container */
.pagination-san {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    padding-top: 30px;
}

/* Pagination List */
.pagination {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 5px;
	border-top: solid 0px var(--border)!important;
}

/* Pagination Items */
.pagination .pg-item {
    display: inline;
	padding: 0px 0px;
 border-bottom: solid 0px var(--border)!important;
}

/* Pagination Links */
.pagination .page-link {
    display: block;
    padding: 6px 12px;
    color: var(--text-2);
    background-color: #ffffff;
    text-decoration: none;
    border: 0.5px solid #212121;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    line-height: 1.5;
}

/* Active Page Link */
.pagination .page-link.active {
    background-color: var(--main-o);
    color: #ffffff;
    border-color: var(--main-o);
}

/* Disabled Page Link */
.pagination .pg-item.disabled .page-link {
    pointer-events: none;
    color: var(--gray);
    background-color: #ffffff;
    border-color: var(--gray);
}

/* Hover and Focus States */
.pagination .page-link:hover,
.pagination .page-link:focus {
    background-color: #e9ecef;
    color: var(--main);
    text-decoration: none;
}

/* Dots */
.pagination .page-link.dots {
    pointer-events: none;
    background-color: transparent;
    border: none;
    color: var(--black);
}


@media screen and (max-width:1400px) {
	/* - - - - - - - - - - - - - - - - - - - - - - - - */
	/* root設定 */
	/* - - - - - - - - - - - - - - - - - - - - - - - - */
	:root {
		/*コンテンツ幅 - width*/
		--max-con: 900px;
		--min-con: 900px;
	  }
	
}/* @media screen and (max-width:1400px)  */



@media screen and (max-width:960px) {
/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* root設定 */
/* - - - - - - - - - - - - - - - - - - - - - - - - */
	:root {
		/*コンテンツ幅 - width*/
		--max-con: 95%;
		--min-con: 95%;
	  }
	
/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* 各種設定 */
/* - - - - - - - - - - - - - - - - - - - - - - - - */
	.pSmax {
		padding: 70px 0;
	}
	/* 画像表示 */
	/* - - - - - - - - - */
	.mbOn { /*PC非表示、スマホで表示*/
		display: block;
	}
	.pcOn { /*PCで表示、スマホ非表示*/
		display: none;
	}
	/* - - - - - - - - - - - - - - - - - - - - - - - - */
	/* header */
	/* - - - - - - - - - - - - - - - - - - - - - - - - */
	.pcHd {
		display: none;
	}
	/* スマホ用 */
	#hamburger,
	.mbLogo,
	#global_navi {
		display: block;
	}
	header {
		height: 70px;
		background-color: #fff;
	}
	.mbLogo {
		padding-left: 15px;
		height:70px;
		display: grid;
		place-items: center left;
	}
	.mbLogo a {
		display: block;
		width: 150px;
	}
	/* - - - - - - - - - */
	/*ナビ*/
	/* - - - - - - - - - */
	.toggle {
		position: fixed;
		right: 15px;
		top: 15px;
		display: block;
		width: 45px;
		height: 40px;
		cursor: pointer;
		z-index: 3;
	}
	.toggle span {
		display: block;
		position: absolute;
		width: 70%;
		border-bottom: solid 3px var(--text);
		padding-top: 5px;
		right: 7px;
		color: #fff;
	}
	.toggle span:nth-child(1) {
		top: 3px;
	}
	.toggle span:nth-child(2) {
		top: 13px;
	}
	.toggle span:nth-child(3) {
		top: 23px;
	}
	.toggle.active span:nth-child(1) {
		top: 15px;
		left: 4px;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
		border-bottom: solid 3px var(--border);
	}
	.toggle.active span:nth-child(2),
	.toggle.active span:nth-child(3) {
		top: 15px;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
		border-bottom: solid 3px var(--border);
	}	
	/*展開メニュー*/
	#global_navi {
		position: fixed;
		width: 100%;
		height: 100%;
		padding-bottom: 10px;
		top: 0;
		right: -100%;
		background-color: #fff;
		margin-top: 70px;
	}
	/*メニュー項目*/
	#global_navi ul {
		margin: 30px auto;
		width: 350px;
	}
	li.mBnav {
		border-bottom: solid 1px var(--border);
	}
	li.mBnav a {
		display: block;
		padding: 15px 0;
	}
	li.mBnav a i {
		color: var(--sub-o);
	}
	li.mBnav:nth-child(4) a i,
	li.mBnav:nth-child(5) a i {
		color: var(--sub-g)!important;
	}
	/* 問い合わせ */
	.mBfooter {
		width: 100%;
		margin: 20px auto 0;
		text-align: center;
	}
	.mBfooter .topMail {
		display: block;
		width: 350px;
		margin: 10px auto 0;
	}
	
	/* - - - - - - - - - - - - - - - - - - - - - - - - */
	/* footer */
	/* - - - - - - - - - - - - - - - - - - - - - - - - */
	footer nav ul {
		justify-content: center;
	}
	footer nav ul li {
		width: 35%;
	}
}/* @media screen and (max-width:960px)  */

@media screen and (max-width:700px) {
	.ftTel {
		font-size: 30px;
		font-weight: bold;
		color: var(--main-o);
	}
	.footer-banner{
		display: none;
	}
	.footer-banner-mb{
		display: block;
		margin-top: 30px;
	}
	.footer-banner-mb figure{
		height: 80px;
		overflow: hidden;
	}
	.footer-banner-mb figure img{
		object-fit: contain;
		height: 80px;
	}
}
@media screen and (max-width:600px) {
	/* - - - - - - - - - - - - - - - - - - - - - - - - */
	/* footer */
	/* - - - - - - - - - - - - - - - - - - - - - - - - */
	footer nav ul li {
		width: 45%;
	}

	
}/* @media screen and (max-width:600px)  */



@media screen and (max-width:480px) {
	/* - - - - - - - - - - - - - - - - - - - - - - - - */
	/* header */
	/* - - - - - - - - - - - - - - - - - - - - - - - - */
	/*メニュー項目*/
	#global_navi ul {
		width: 90%;
	}
	.mBfooter .topMail {
		width: 300px;
	}

	/* - - - - - - - - - - - - - - - - - - - - - - - - */
	/* footer */
	/* - - - - - - - - - - - - - - - - - - - - - - - - */
	.ftHd a img {
		width: 250px;
		margin-bottom: 10px;
	}
	.ftHd p {
		font-size: 16px;
	}
	/* サイトマップ */
	/* - - - - - - - - - */
	footer nav ul {
		margin: 30px auto 10px;
	}
	footer nav ul li {
		width: 50%;
		font-size: 14px;
		padding-left: 15px;
	}
}/* @media screen and (max-width:480px)  */
