/* ***********************************
 *
 *    CSS Reset & Base
 *
 * *********************************** */

/* Reset margin, padding, border
 * *********************************** */

html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
}

/* Typography
 * *********************************** */

html {
	font-size: 62.5%;
}

body {
	font-size: 1.6rem;
	line-height: 1.6;
}

* {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

a,
a:visited {
	color: inherit;
}

a:hover {
	text-decoration: none;
	opacity: 0.7;
}

/* Layout
 * *********************************** */

article,
aside,
footer,
header,
nav,
section,
main {
	display: block;
}

* {
	box-sizing: border-box;
}

*:before,
*:after {
	box-sizing: inherit;
}

/* Elements
 * *********************************** */

table {
	border-collapse: collapse;
	border-spacing: 0;
}

ol,
ul {
	list-style: none;
}

img,
video {
	max-width: 100%;
}

img {
	border-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
	content: "";
	content: none;
}

/* Attributes & states
 * *********************************** */

[hidden] {
	display: none !important;
}

[disabled] {
	cursor: not-allowed;
}

:focus:not(:focus-visible) {
	outline: none;
}

/* Utility classes
 * *********************************** */

.sr-only {
	position: absolute;
	clip: rect(1px, 1px, 1px, 1px);
	left: -9999px;
	top: -9999px;
}

#page-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
}

#page-top a {
	text-decoration: none;
	width: 40px;
	display: block;
	opacity: 0.75;
}

#page-top a:hover {
	opacity: 0.5;
}

@media screen and (min-width: 800px) {
	#page-top a {
		width: 70px;
	}
}


/* tel-pc
 * *********************************** */

@media screen and (min-width: 800px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}

/* clearFix
 * *********************************** */

.cf:after {
	content:"";
	display:table;
	clear:both;
}

/* header
 * *********************************** */

 header {
	background: url("../img/bg_header_line.png") center top repeat-x;
	background-color: #fefdf0;
}

.hwrap {
	width: 100%;
}

.headtittle h1 {
	padding-top: 2rem;
	text-align: center;
}

.headtittle p {
	padding-top: 2rem;
	text-align: center;
}

.logo-sp {
	display: inline-block;
	text-align: center;
	width: 250px;
	height: auto;
}

.logo-pc {
	display: none;
}

.pc-nav {
	display: none;
}

.navToggle {
	display: block;
	position: fixed;    /* bodyに対しての絶対位置指定 */
	right: 13px;
	top: 12px;
	width: 42px;
	height: 51px;
	cursor: pointer;
	z-index: 3;
	background: #ff6600;
	text-align: center;
}

.navToggle span {
display: block;
position: absolute;    /* .navToggleに対して */
width: 30px;
border-bottom: solid 3px #eee;
-webkit-transition: .35s ease-in-out;
-moz-transition: .35s ease-in-out;
transition: .35s ease-in-out;
left: 6px;
}

.navToggle span:nth-child(1) {
	top: 9px;
}

.navToggle span:nth-child(2) {
	top: 18px;
}

.navToggle span:nth-child(3) {
	top: 27px;
}

.navToggle span:nth-child(4) {
	border: none;
	color: #eee;
	font-size: 9px;
	font-weight: bold;
	top: 34px;
}

nav.globalMenuSp {
	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;
	background: #fff;
	color: #000;
	text-align: center;
	transform: translateY(-100%);
	transition: all 0.6s;
	width: 100%;
}

nav.globalMenuSp ul {
	background: #f6dd87;
	margin: 0 auto;
	padding: 0;
	width: 100%;
}

nav.globalMenuSp ul li {
	font-size: 1.1em;
	list-style-type: none;
	padding: 0;
	width: 100%;
	border-bottom: 1px dotted #333;
}

/* 最後はラインを描かない */
nav.globalMenuSp ul li:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

nav.globalMenuSp ul li a {
	display: block;
	color: #000;
	padding: 1rem 0;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
	transform: translateY(0%);
}

/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
	top: 18px;
	left: 6px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
	top: 18px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}

.acc {
	display: none;
}

.tel {
	text-align: center;
	padding: 1.5rem 0;
}


@media screen and (min-width: 800px) {
	.hwrap {
		display: flex;
		flex-flow: row wrap;
		width: 1024px;
		padding: 3rem 0 2rem 0;
		margin: 0 auto;
	}

	.headtittle {
		margin-right: 2rem;
	}

	.headtittle h1 {
		padding-top: 0;
		text-align: left;
	}

	.headtittle p {
		padding-top: 0;
		text-align: left;
	}

	.logo-sp {
		display: none;
	}

	.logo-pc {
		display: inline-block;
	}

	.pc-nav {
		display: block;
	}

	.sp-nav {
		display: none;
	}

	.gnavi {
		margin: 1rem 2rem 0 0;
	}

	.gnavi li {
		position: relative;
	}

	.gnavi02 li {
		display: inline-block;
		width: 125px;
		float: left;
	}

	.gnavi02 a {
		text-align: center;
		display: block;
	}

	.gnavi03 li {
		display: none;
	}

	.gnavi03 {
		top: 76px;
		left: 0;
		position: absolute;
		z-index: 2;
	}

	.gnavi02 li a:hover {
		transition: 0.5s;
	}

	.gnavi02 li:hover ul.gnavi03 li {
		display: block;
	}

	.gnavi02 li:hover ul.gnavi03 a {
		width: 200px;
		color: #fff;
		text-align: left;
		font-size: 1.4rem;
		background-color: #4d351e;
		padding: 1rem;
		margin-left: -40px;
		transition: 0.5s;
	}

	.tel {
		padding: 0;
		margin: 1rem 0;
		text-align: left;
	}

	.acc {
		display: block;
		text-align: center;
		color: #fff;
		position: relative;
	}

	.acc a:after {
		content: "";
		position: absolute;
		display: block;
		right: 1rem;
		top: 0;
		bottom: 0.4rem;
		margin: auto;
		width: 8px;
		height: 8px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.acc a:hover {
		color: #fff;
	}

	i.accpict {
		margin-right: 0.5rem;
	}

	.acc-button {
		display: inline-block;
		width: 210px;
		padding: 0.5rem 1rem;
		background: #be8349;/*ボタン色*/
		border-bottom: 4px solid #7c1622;
		border-radius: 0.5rem;
	}

	.acc-button:active {
		-webkit-transform: translateY(4px);
		transform: translateY(4px);
		border-bottom: none;
	}

}

/* 下層タイトル等
 * *********************************** */

.maintittle {
	background: url("../img/bg_htittle.jpg") center top repeat-x;
	padding: 3rem 0;
}

.maintittle h1 {
	text-align: center;
	font-size: 3.25rem;
	font-weight: 700;
	color: #7a532d;;
}

.maintittle p {
	text-align: center;
	font-size: 3.25rem;
	font-weight: 700;
	color: #7a532d;;
	margin-bottom: 0;
	line-height: 1.6;
}

h1.underpage2,
h2.underpage2 {
	position: relative;
	background: #ffd98a;
	padding: 1rem 1rem 0.75rem 3rem;
	margin-left: 2.75rem;
	margin-bottom: 2rem;
	font-size: 2.5rem;
	color: #7a532d;
	line-height: 3.5rem;
	border-radius: 10px;
}

h1.underpage2:before,
h2.underpage2:before {
	font-family: "Font Awesome 5 Free";
	content: "\f787";
	display: inline-block;
	line-height: 5rem;
	position: absolute;
	padding: 0;
	color: #fff;
	background: #ffa337;
	font-weight: 900;
	width: 5rem;
	text-align: center;
	height: 5rem;
	line-height: 4.5rem;
	left: -2.75rem;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	border: solid 3px white; 
	border-radius: 50%;
}

h2.underpage3,
h3.underpage3 {
	font-size: 2rem;
	color: #7a532d;
	line-height: 1.4;
	border-bottom: solid 2px #f6dd87;
	margin-bottom: 3rem;
	padding-bottom: 1rem;
	position: relative;
}

/*h2.underpage3:after,
h3.underpage3:after {
	position: absolute;
	content: " ";
	display: block;
	border-bottom: solid 2px #9c6b3b;
	bottom: -2px;
	width: 20%;
}*/


@media screen and (min-width: 800px) {
	.maintittle {
		padding: 5rem 0;
	}

	.maintittle h1 {
		font-size: 4rem;
	}
	
	.maintittle p {
		font-size: 4rem;
	}
}

/* breadcrumb
 * *********************************** */

.breadcrumb {
	width: 100%;
	padding: 1rem;
}

.breadcrumb a {
	text-decoration: underline;
	color: #7a532d;
}

.breadcrumb a:hover {
	text-decoration: none;
}

.breadcrumb .breadcrumbs {
	padding-left: 0;
	margin-top: 0;
	margin-bottom: 0;
	display: flex;
	flex-wrap: wrap;
}

.breadcrumb li {
	display: inline-block;
	position: relative;
	padding-right: calc(16px + 8px);
	margin-right: 8px;
	color: #7a532d;
	font-size: 1.4rem;
}

.breadcrumb li::before {
	content: '›';
	width: 1rem;
	height: 1rem;
	line-height: 0.7;
	text-align: center;
	font-size: 1.8rem;
	position: absolute;
	top: 40%;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.breadcrumb li:last-child {
	margin-right: 0;
	padding-right: 0;
	color: #7a532d;
}

.breadcrumb li:last-child::before {
	content: normal;
}

@media screen and (min-width: 800px) {
	.breadcrumb {
		width: 1024px;
		margin: 1rem auto;
	}

}

/* 下層Layout
 * *********************************** */

main {
	clear: both;
}

main p {
	margin-bottom: 1.5rem;
	font-size: 1.6rem;
	line-height: 1.8;
}

.cl {
	clear: both;
}

.pict-r {
	margin-right: 0.5rem;
}

.pict-l {
	margin-left: 0.5rem;
}

.txt-under {
	text-decoration: underline;
}

.cap {
	margin-bottom: 3rem;
}

.cap02 {
	text-align: center;
	margin-bottom: 3rem;
}

.attention {
	font-weight: 700;
}

.img-left {
	width: 100%;
	float: none;
	margin: 0 0 2rem 0;
}

.img-right {
	width: 100%;
	float: none;
	margin: 0 0 2rem 0;
}

.img-right img {
	width: 100%;
}

.img-shadow {
	border: 0.5rem solid #fff;
	background: #fff;
	box-shadow: 1px 1px 8px rgba(0,0,0,0.3),0 0 50px rgba(0,0,0,0.1) inset;
	position: relative;
}

.ph-w img {
	width: 100%;
}

.tape{
	background: rgba(255,255,255,0.4);
	border-left: 2px dotted rgba(0,0,0,0.1);
	border-right: 2px dotted rgba(0,0,0,0.1);
	box-shadow: 0 0 5px rgba(0,0,0,0.2);
	width: 85px;
	height: 28px;
	position: absolute;
	top: -13px;
	left: 36%;
	-webkit-transform: rotate(-8deg);
	transform: rotate(-8deg);
}

.info-list-btn {
	width: 210px;
	margin: 0 auto;
}

.info-list {
	display: inline-block;
	width: 210px;
	text-align: center;
	color: #fff;
	position: relative;
	margin: 2rem 0 0 0;
}

.info-list a:after {
	content: "";
	position: absolute;
	display: block;
	right: 1rem;
	top: 0;
	bottom: 0.4rem;
	margin: auto;
	width: 8px;
	height: 8px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.info-button {
	display: inline-block;
	width: 210px;
	padding: 0.5rem 1rem;
	background: #be8349;/*ボタン色*/
	border-radius: 2rem;
}

.layout-01 {
	border: 1px solid #7a532d;
	padding: 1.5rem;
}

.base-layout01 {
	width: 100%;
	padding: 0 1rem;
	margin-bottom: 3rem;
}

.base-layout01-faq {
	width: 100%;
	padding: 0 1rem 0 0;
	margin-bottom: 3rem;
}

@media screen and (min-width: 800px) {
	.base-layout01,
	.base-layout01-faq {
		width: 1024px;
		padding: 0;
		margin: 0 auto 5rem;
	}

	.img-left {
		width: 30%;
		float: left;
		margin: 0 2rem 2rem 0;
	}

	.img-right {
		width: 30%;
		float: right;
		margin: 0 0 2rem 2rem;
	}

	.sp-br {
		display: none;
	}

}


/* footer
 * *********************************** */

.fwrap {
	background: url("../img/bg_footer_line.jpg") center top repeat-x;
	padding-top: 72px;
}

.ads {
	background-color: #f6dd87;
	padding-bottom: 1rem;
}

.flogo {
	text-align: center;
	padding: 1rem 0;
}

.flogo img {
	max-width: 80%;
}

.ads address p,
.child-care-hour {
	text-align: center;
}

.map01-1 .map01-2 a,
.map02-1 .map02-2 a,
.map03-1 .map03-5 a {
	border-top: 1px solid #4d351e;
	border-bottom: 1px solid #4d351e;
}

.map01-1 .map01-3 a,
.map02-1 .map02-5 a,
.map03-1 .map03-2 a,
.map03-1 .map03-6 a {
	border-bottom: 1px solid #4d351e;
}

.map01-1 .map01-2 a,
.map01-1 .map01-3 a,
.map02-1 .map02-2 a,
.map02-1 .map02-5 a,
.map03-1 .map03-2 a,
.map03-1 .map03-5 a,
.map03-1 .map03-6 a {
	color: #fff;
	font-weight: 400;
	background-color: #7a532d;
	display: block;
	padding: 1rem;
	position: relative;
}

.map01-1 .map01-2 a::after,
.map01-1 .map01-3 a::after,
.map01-1 .map01-3-1 a::after,
.map01-1 .map01-3-2 a::after,
.map02-1 .map02-2 a::after,
.map02-1 .map02-3 a::after,
.map02-1 .map02-4 a::after,
.map02-1 .map02-5 a::after,
.map03-1 .map03-2 a::after,
.map03-1 .map03-3 a::after,
.map03-1 .map03-4 a::after,
.map03-1 .map03-5 a::after,
.map03-1 .map03-6 a::after {
	content: "";
	position: absolute;
	display: block;
	right: 1rem;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 8px;
	height: 8px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.map01-1 .map01-3-1 a,
.map01-1 .map01-3-2 a,
.map02-1 .map02-3 a,
.map02-1 .map02-4 a,
.map03-1 .map03-3 a,
.map03-1 .map03-4 a {
	color: #fff;
	font-weight: 400;
	background-color: #be8349;
	border-bottom: 1px solid #7a532d;
	display: block;
	padding: 1rem 1rem 1rem 2rem;
	position: relative;
}

.map01-1 .map01-3-2 a,
.map02-1 .map02-4 a,
.map03-1 .map03-4 a {
	border-bottom: none;
}

.map01-3,
.map02-2-1,
.map03-2 {
	color: #fff;
	font-weight: 400;
	background-color: #7a532d;
	display: block;
	padding: 1rem;
}

footer i.lpict {
	display: none;
}

footer .copy-area {
	padding: 1rem 0;
	background-color: #9c6b3b;
	color: #fff;
	text-align: center;
}


@media screen and (min-width: 800px) {
	.fwrap {
		background-color: #f6dd87;
	}

	.site-map-area01 {
		display: flex;
		flex-flow: row wrap;
		width: 1024px;
		margin: 0 auto;
	}

	.ads {
		background-color: transparent;
		padding-bottom: 0;
		margin-right: 5rem;
	}

	.flogo {
		text-align: left;
		padding: 1rem 0;
	}

	.flogo img {
		max-width: 100%;
	}

	.ads address p,
	.child-care-hour {
		text-align: left;
	}

	.site-map-area02 {
		display: flex;
		flex-flow: row wrap;
		font-size: 1.4rem;
	}

	.map01,
	.map02 {
		padding: 4rem 0;
		margin-right: 5rem;
	}

	.map03 {
		padding: 4rem 0;
	}

	.map01-1 li,
	.map02-1 li,
	.map03-1 li {
		margin-bottom: 1.5rem;
	}

	.map01-1 .map01-2 a,
	.map02-1 .map02-2 a,
	.map03-1 .map03-5 a {
		border-top: none;
		border-bottom: none;
	}

	.map01-1 .map01-3 a,
	.map02-1 .map02-5 a,
	.map03-1 .map03-2 a,
	.map03-1 .map03-6 a {
		border-bottom: none;
	}

	.map01-1 .map01-2 a,
	.map01-1 .map01-3 a,
	.map02-1 .map02-2 a,
	.map02-1 .map02-5 a,
	.map03-1 .map03-2 a,
	.map03-1 .map03-5 a,
	.map03-1 .map03-6 a,
	.map01-3,
	.map02-2-1,
	.map03-2 {
		color: #7a532d;
		font-weight: 700;
		background-color: transparent;
		display: inline;
		padding: 0;
		position: static;
	}

	.map01-1 .map01-2 a::after,
	.map01-1 .map01-3 a::after,
	.map01-1 .map01-3-1 a::after,
	.map01-1 .map01-3-2 a::after,
	.map02-1 .map02-2 a::after,
	.map02-1 .map02-3 a::after,
	.map02-1 .map02-4 a::after,
	.map02-1 .map02-5 a::after,
	.map03-1 .map03-2 a::after,
	.map03-1 .map03-3 a::after,
	.map03-1 .map03-4 a::after,
	.map03-1 .map03-5 a::after,
	.map03-1 .map03-6 a::after {
		display: none;
	}

	.map01-1 .map01-3-1 a,
	.map01-1 .map01-3-2 a,
	.map02-1 .map02-3 a,
	.map02-1 .map02-4 a,
	.map03-1 .map03-3 a,
	.map03-1 .map03-4 a {
		color: #7a532d;
		font-weight: 400;
		background-color: transparent;
		border-bottom: none;
		display: block;
		padding: 1rem 0 0 1rem;
		position: static;
	}

	footer i.lpict {
		display: inline;
		color: #ff6600;
		margin-right: 0.5rem;
	}

	footer i.fac {
		color: #ff6600;
	}
}

