@charset "utf-8";

html{
	scroll-behavior: smooth;
}
body{
	font-family: 'IBM Plex Sans JP', 'Open Sans', sans-serif;
	color: #2f2b23;
	font-size: 16px;
}
header {
	position: fixed;
	top: 0;
	left: 0;
	max-width: 1240px;
	background-color: #7cb3c5;
	z-index: 100;
	margin: 0 auto 0px;
	position: sticky;
	box-shadow: 0px 3px 3px 2px #d9d9d9;
}
header nav ul{
	color: #ffffff;
	display: flex;
	justify-content: space-around;
	padding: 12px 50px 5px;
}
header nav ul li{
	margin: 0 15px; 0 15px;
	align-self: center;
}
header nav ul li a:hover{
	text-decoration: underline;
}
#thisPage {
	text-decoration: underline dotted 2px;
}
.textContent{
	max-width: 1240px;
	margin: 0 auto 0;
}
a.anchor{
	display: block;
    padding-top: 30px;
    margin-top: -30px;
}

.titleArea{
	max-width: 1240px;
	max-height: 120px;
	margin: 0 auto 0px;
	font-family: 'Murecho', serif;
	font-size: 26px;
	color: #525252;
	text-align: left;
	vertical-align: central;
	padding: 30px 0 20px 110px;
	background-color: #ffffff;
	position: relative;
}
.titleArea figure{
	position: absolute;
	top: 10px;
	left: 20px;
}
.Title{
	letter-spacing: .04em;
	}
.subTitle{
	margin-top: 10px;
	font-size: 18px;
}
.subTitle::before{
	content:"〜 ";
		}
.subTitle::after{
	content:" 〜";
}
main {
	padding: 20px 50px 20px 50px;
	margin: 0 auto 0px;
	line-height: 1.8;
}
main h2{
	margin: 10px 0 15px 0px;
	font-size: 22px;
	background-color: #d6e6ea;
	border-left: 8px solid #7cb3c5;
	border-radius: 5px;
	padding-left: 15px;
}

main h3{
	font-size: 18px;
	margin: 20px 0 10px 0px;
	padding-left: 10px;
	border-left: 2px solid #7cb3c5;
}

main p{
	margin-bottom: 5px;
	font-size: 13px;
}

.siteMap{
	display: grid;
	grid-template-rows: repeat(auto-fit, minmax(200px, 1fr));
	grid-template-columns: 50% 50%;
	gap: 20px;
	}
.item01 {
	grid-row: 1/2;
	grid-column: 1/2;
}
.item02 {
	grid-row: 1/2;
	grid-column: 2/3;
}
.item03 {
	grid-row: 2/3;
	grid-column: 1/2;
}
.item04 {
	grid-row: 2/3;
	grid-column: 2/3;
}
.item05 {
	grid-row: 3/4;
	grid-column: 1/2;
}
.item06 {
	grid-row: 3/4;
	grid-column: 2/3;
}
.item07 {
	grid-row: 4/5;
	grid-column: 1/2;
}
.item08 {
	grid-row: 4/5;
	grid-column: 2/3;
}
.item09 {
	grid-row: 5/6;
	grid-column: 1/2;
}
.item10 {
	grid-row: 5/6;
	grid-column: 2/3;
}

.siteMap li{
	margin-left: 20px;
	font-size: 15px;
}
.subList li{
		padding-left: 40px;
		font-size: 13px;
}
main a:hover{
	text-decoration: underline;
}

#Bold{
	font-weight: bold;
}
#Dcyan{
	color: #008B8B;
}
span.marker{
	background: linear-gradient(transparent 50%, #c9f3da 50%);
}

.subList li{
	list-style-type: none;
	margin: 5px 0 10px 18px;
}


/*ストライプ調の背景*/
.quoteArea{
	width: 100%;
    background: -webkit-repeating-linear-gradient(-45deg, #eef4f6, #eef4f6 3px,#fbfdfe 3px, #fbfdfe 7px);
	background: repeating-linear-gradient(-45deg, #eef4f6, #eef4f6 3px,#fbfdfe 3px, ##fbfdfe 7px);
	border-radius: 10px;
	padding: 10px;
	margin: 10px 0 10px 0px;
}
.quoteNam{
	font-size: 13px;
	text-align: right;
	margin-bottom:-5px;
}

footer{
	max-width: 1240px;
	color: #ffffff;
	background-color: #7cb3c5;
	padding: 10px 10px 14px;
	text-align: center;
	margin: 0 auto 0px;
}
footer p{
	text-align: right;
	margin-right: 50px;
}
footer span{
	margin: 0 6px;
}


	/* topへのまる */
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 260px;
    bottom: 30px;
    background: #787878;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}
.pagetop__arrow {
    height:12px;
    width: 12px;
    border-top: 3px solid #ffffff;
    border-right: 3px solid #ffffff;
    transform: translateY(20%) rotate(-45deg);
}	

.onlySP{
	display: none;
}
.headerSP{
	display: none;
}

@media screen and (max-width: 640px) {
	.onlySP{
	display: block;
	}
	.headerSP {
		display: block;
	}
	.headerSP p{
		font-size: 12px;
		color: #f9f8f6;
		text-align: right;
		margin-right: 60px;
	}
	.titleArea{
		text-align: left;
	padding-left: 30px;
	width: 100%;
		height: 100px;
	}
	.titleArea img{
	transform: scale(0.9);
	}
	.Title {
		margin-left:75px;
		padding-left: 5px;
	font-size: 18px;
	}
	.subTitle{
		margin-left:75px;
		font-size: 12px;
		margin-top: 5px;
	}
	.titleArea figure{
	position: absolute;
	top: 7px;
	left: 20px;
}
	.topImg p{
	font-size: 14px;
	padding: 0 0 13px 0;
	}


	main p{
		font-size: 14px;
	}	
	main {
	width: 100%;
	padding: 20px 30px 2px 30px;
	}
	main h2{
		font-size: 18px;
	}
	main h2 img{
		transform: scale(0.8);
	}
	main h3{
		font-size: 16px;
		margin: 40px 0 15px 0;
		padding-left: 10px;
		border-left: solid #7cb3c5 4px;
		background-color: #f8fbfb;
	}
	main h4{
		font-size: 16px;
	}

.siteMap{
	display: grid;
	grid-template-rows: repeat(auto-fit, minmax(200px, 1fr));
	grid-template-columns: 100%;
	gap: 10px;
	}
	.item01 {
	grid-row: 1/2;
	grid-column: 1/2;
}
.item02 {
	grid-row: 2/3;
	grid-column: 1/2;
}
.item03 {
	grid-row: 3/4;
	grid-column: 1/2;
}
.item04 {
	grid-row: 4/5;
	grid-column: 1/2;
}
.item05 {
	grid-row: 5/6;
	grid-column: 1/2;
}
.item06 {
	grid-row: 6/7;
	grid-column: 1/2;
}
.item07 {
	grid-row: 7/8;
	grid-column: 1/2;
}
.item08 {
	grid-row: 8/9;
	grid-column: 1/2;
}
.item09 {
	grid-row: 9/10;
	grid-column: 1/2;
}
.item10 {
	grid-row: 10/11;
	grid-column: 1/2;
}
.siteMap li{
	margin-left: 20px;
	font-size: 15px;
	margin-bottom: 20px;
}
.subList li{
	padding-left: 20px;
	font-size: 13px;
	line-height: 3;
}
		
	.navBox nav {
	margin-top: 35px;
	border-radius: 5px;
	background-color: #eff4f5;
	padding: 5px 10px;
	margin-bottom: 24px;
	}
	.navBox h5{
		margin: 10px 0 0 5px;
		font-size: 14px;
	}
	.navBox li{
		list-style-type: disc;
	}
	.subList{
		margin-top: 5px;
	}
	.subList li{
		list-style-type: none;
		margin: -10px 0 5px 40px;
}

	footer{
		max-width: 100%;
		display: block;
	}
		.cRight{
	text-align: right;
	margin-right: 20px;
	}

	.pagetop {
	right: 50px;
	bottom: 50px;
	}
	.nav_list{
	display: none;
	}
	header{
	max-width: 100%;
		height: 40px;
	}
	header nav ul{
	display: block;
	color: #544f45;
	font-size: 16px;
	letter-spacing: .2em;
	list-style-type: circle;
	padding-top: 15px; 
	}



	/* ハンバーガーメニュー */
/* チェックボックスを非表示にする */
	.drawer_hidden {
	display: none;
}
/* ハンバーガーアイコンの設置スペース */
	.drawer_open {
	display: flex;
	justify-content: flex-end;
	margin-right: 20px;
	z-index: 5;/* 重なり順を一番上にする */
	cursor: pointer;
}
/* ハンバーガーメニューのアイコン */
	.drawer_open span,
	.drawer_open span:before,
	.drawer_open span:after {
	content: '';
	display: block;
	height: 3px;
	width: 30px;
	border-radius: 3px;
	background: #f9f8f6;
	z-index: 5;
	transition: 0.5s;
	position: absolute;

}
/* 三本線の一番上の棒の位置調整 */
	.drawer_open span:before {
	bottom: 8px;
}
/* 三本線の一番下の棒の位置調整 */
	.drawer_open span:after {
	top: 8px;
}
/* アイコンがクリックされたら真ん中の線を透明にする */
	#drawer_input:checked ~ .drawer_open span {
	background: rgba(255, 255, 255, 0);
}
/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
	#drawer_input:checked ~ .drawer_open span::before {
	bottom: 0;
	transform: rotate(45deg);
	background: #544f45;
}
	#drawer_input:checked ~ .drawer_open span::after {
	top: 0;
	transform: rotate(-45deg);
	background: #544f45;
}
/* メニューのデザイン*/
	.nav_content {
	width: 100%;
	height: 360px;
	padding: 10px 0 10px 10px;
	border-radius: 16px;
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
	position: fixed;
	top: 4px;
	left: 100%; /* メニューを画面の外に飛ばす */
	z-index: 4;
	background-color: rgba(255, 255, 255, 0.85);
	transition: .7s;
}
	.nav_content li{
		padding: 5px 0;
	}
	
/* メニュー黒ポチを消す */
	.nav_list {
	list-style: none;
}

/* アイコンがクリックされたらメニューを表示 */
	#drawer_input:checked ~ .nav_content {
	left: 0;/* メニューを画面に入れる */
}
}


