@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Shippori+Mincho+B1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

:root {
    --color-main: #7fbc3a;
    --color-sub: #b6d02d;
	--color-red: #fb0073;
    --color-line: rgba(100, 100, 100, 1);
    --color-link: #f1a71d;
    --color-gray: #666;
    --color-hover: #ad652b;
	--color-bg: #eeebe1;
	--bg-main: #f7faf3;
	--bg-gray: #f0f0f0;
    --bg-newsbox: #006d8a;
    --bg-newsbox-category: rgba(242, 153, 0, 1);

	--hl: 6rem;
	--hm: 3rem;
	--hs: 1rem;
}
.maincolor { color: var(--color-main); }
.subcolor { color: var(--color-sub); }
.redcolor { color: var(--color-red); }

body {
	font-family: "Poppins", "Noto Sans JP", sans-serif;
	line-height: 175%;
	color: #333;
	box-sizing: border-box;
	font-size: 1.6rem;
}

* { padding: 0; margin: 0; box-sizing: border-box; }
img {
	vertical-align: bottom;
	max-width: 100% !important;
}
a {
	color: var(--color-link);
	transition: 0.3s;
}
	a img { border: none; }
li { list-style: none; }
strong { color: rgba(50, 50, 50, 1); }
strong.red { color: var(--color-red); }
p {
	line-height: 1.8;
	+ p {
		margin-top: 1em;
	}
}
h5 { padding-bottom: 1em; line-height: 1.8;}
.underlineH {
	border-top: 1px solid var(--color-line);
	padding: 0.25em 0 0 1em;
	background: rgba(240, 247, 253, 0.5);
	border-bottom: 1px solid var(--color-link);
	margin-bottom: 0.5em;
}
input, textarea, select {
	padding: 0.5em;
	background: rgba(255, 255, 255, 1);
	border: none;
	border: 1px solid rgba(100, 100, 100, 0.5);
	border-radius: 3px;
	max-width: 100%;
}
:placeholder-shown { color: rgba(100, 100, 100, 0.5); }

.pcHide { display: none; }
.spHide { display: block; }
#drawerBox { display: none; }
.pcBlock { display: block; }
.spBlock { display: inline; }

h2 { font-size: 3.0rem; line-height: 1em;} 
.bigText { font-size: 2.4rem; }
.largerText { font-size: 140%; }
.largeText { font-size: 2.0rem; }
.smallText { font-size: 1.2rem; }
.smallerText { font-size: 86%; }
.tinyText { font-size: 1.0rem; }

.fixImgM, 
.fixImg {
	width: 100%;
	max-width: 1200px;
}
.flexBox, 
.columnFlexBox {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.columnFlexBox { padding-bottom: 0.5em; }
	.column2 > div { width: 48%; }
	.column3 > div { width: 30%; }
	.column4 > div { width: 23%; }
	.column5 > div { width: 17%; }
	.column6 > div { width: 15%; }
	#newsBody .imgunit > div:nth-child(1), 
	.columnFlexBox .textBox { width: 70%; }
	#newsBody .imgunit > div:nth-child(2), 
	.columnFlexBox .imgBox { width: 25%; text-align: center; }
	.columnFlexBox .textBoxy { width: 45%; }
	.columnFlexBox .imgBoxy { width: 50%; text-align: center; }
	
	.columnFlexBox:not(:last-child) { margin-bottom: 2em; }
	.alternateBox .column2 .textBox { order: 2 }
	.alternateBox .column2 .imgBox { order: 1 }

.mtL { margin-top: var(--hl); }
.mtM { margin-top: var(--hm); }
.mtS { margin-top: var(--hs); }
.mbL { margin-bottom: var(--hl); }
.mbM { margin-bottom: var(--hm); }
.mbS { margin-bottom: var(--hs); }

.goodsUl li::after, 
#mainContentsBox::after, 
.clearBox::after {
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}
.initBox {
	width: 80vw;
	max-width: 940px;
	margin: 0 auto;
}
.centerBox { text-align: center; }
.leftBox { text-align: left; }
.rightBox { text-align: right; }

#mainContentsBox { margin-bottom:5rem;}

#footerBox {
	margin-top: 0;
	padding: 3em 0 1em 0;
	font-size: 1.2rem;
	line-height: 140%;
	background:#eeeeef;
}
	#footerBox a {
		text-decoration: none;
		color: var(--color-line);
	}
	#footerBox h1 {
		font-size: 1.6rem;
		padding-bottom: 0.5em;
	}
	#footerBox .leftBox { width: 38%; }
	#footerBox .rightBox { width: 58%; }
		#footerBox #footerMainMenuBox li { float: left; display: inline-block; }
			#footerBox #footerMainMenuBox li a {
				color: #333;
				margin-right: 1.5em;
			}
			#footerBox #privacypolicyBtnBox a { color: rgba(102, 102, 102, 1); }
			#footerBox #footerMainMenuBox li a::before {
				content: '■';
				margin-right: 0.25em;
			}
			#footerBox #footerMainMenuBox li a:hover {
				opacity: 0.5;
			}
			#footerBox #footerMainMenuBox li ul { display: none; }
	#footerBox #footerSubMenuBox {
		margin-top: 1em;
	}
		#footerBox #footerSubMenuBox li { width: 48%; }
			#footerBox #footerSubMenuBox li a {
				display: block;
				text-align: center;
				background: var(--color-main);
				color: #FFF;
				border-radius: 3px;
				padding: 0.9em 0;
			}
				#footerBox #footerSubMenuBox li.news a {
				/*	padding: 0.5em 0;*/
				}
				#footerBox #footerSubMenuBox li a:hover {
					background: var(--color-hover);
				}
			#footerBox #footerSubMenuBox li .newIconSpan { position: relative; }
			#footerBox #footerSubMenuBox li .newIconSpan::after {
				background: #FFF;
				color: var(--color-main);
				position: absolute;
				top: -0.45em;
				left: 0;
			}
				
		#footerBox #copyrightBox { text-align: center; }
		#footerBox #privacypolicyBtnBox { padding-top: 1em; }

.imageBlock {
	background-repeat: no-repeat;
	background-position: 100% 100%;
	background-size: 30vw;
	padding-right: 30vw;
}
.image01 { background-image: url(../img/common/image01.jpg); }
.image02 { background-image: url(../img/common/image02.jpg); }
.image03 { background-image: url(../img/common/image03.jpg); background-position: 100% 2em; background-repeat: no-repeat; background-size: 30vw; }
.image04 { background-image: url(../img/common/image04.jpg); }
.image05 { background-image: url(../img/common/image05.jpg); }

.underlineColumn {
	padding-bottom: 1em;
	border-bottom: 1px dotted var(--color-link);
	margin-bottom: 1em;
}
.glossaryDl {
	margin-bottom: 1em;
}
	.glossaryDl dt {
		font-weight: bold;
	}
	.glossaryDl dd {
		margin-left: 2em;
	}
 
	.leftThTable, 
	.topThTable {
		border-collapse: collapse;
		width: 100%;
		border-top: 1px solid rgba(51, 51, 51, 0.5);
		border-left: 1px solid rgba(51, 51, 51, 0.5);
		margin-bottom: 0.5em;
	}
	.topThTable th, 
	.topThTable td, 
	.leftThTable th, 
	.leftThTable td {
		font-weight: normal;
		border-right: 1px solid rgba(51, 51, 51, 0.5);
		border-bottom: 1px solid rgba(51, 51, 51, 0.5);
		padding: 1em;
	}
	.topThTable th, 
	.leftThTable tr > td:first-child, 
	.leftThTable th {
		background: #f3f3f3;
	}
	.topThTable td { vertical-align: top; }
	.leftThTable tr > td:first-child, 
	.leftThTable th { text-align: left; }


#footerContactBox { margin-top: 5rem; }
	#footerContactBox .initBox {
		border: 1px solid #eeeeef;
		background: rgba(250, 255, 199, 1);
		padding: 1rem 2rem;
	}
		#footerContactBox .initBox .textBox { width: 68%; }
		#footerContactBox .initBox .btnBox { width: 28%; }
			#footerContactBox .initBox .telBtn, 
			#footerContactBox .initBox .contactBtn {
				width: 100%;
				background: rgba(0, 50, 93, 1);
				color: rgba(255, 255, 255, 1);
				padding: 0.5rem 0;
				text-align: center;
				border-radius: 5px;
				text-decoration: none;
				display: block;
			}
			#footerContactBox .initBox .telBtn { margin-bottom: 0.5rem; }
			#footerContactBox .initBox .telBtn:hover, 
			#footerContactBox .initBox .contactBtn:hover { background: var(--color-hover); }

#footerContactBox.footerFixBtn {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
}

#footerBox a#backToTopBtn::before, 
#backToTopBtn {
	display: block;
	position: fixed;
	bottom: 1em;
	right: 3vw;
	width: 50px;
	height: 50px;
	transition: 0.3s;
}
#backToTopBtn {
	text-indent: -2000em;
	background: #f3f3f3;
	border-radius: 50%;
	border: 1px dotted var(--color-line);
	box-shadow: 1px 1px 2px var(--color-line);
	font-size: 25px;
}
#footerBox a#backToTopBtn::before {
	text-indent: 0;
	text-align: center;
	line-height: 50px;
}
#footerBox a.hideBtn { opacity: 0; }
#footerBox a.showBtn { opacity: 1; }

.backBtn, 
.submitBtn {
	padding: 1em 0;
	background: var(--color-link);
	color: rgba(255, 255, 255, 1);
	width: 45vw;
	border: none;
}
.backBtn { background: rgba(102, 102, 102, 1); }

.myBtn {
	text-decoration: none;
	padding: 0.5em 1em;
	border-radius: 3px;
	background: var(--color-line);
	color: rgba(255, 255, 255, 1);
}
	.myBtn:hover{
		background: var(--color-link);
	}

.privacyBox {
	width: 100%;
	height: 20vh;
	overflow: scroll;
	border: 1px solid rgba(102, 102, 102, 1);
	padding: 1em;
}

#privacypolicyBody h4 { margin: 1em 0; font-weight: bold; }
#privacypolicyBody ol { margin-bottom: 1em; }
	#privacypolicyBody ol li {
		margin-left: 1em;
		list-style: decimal;
		padding-left: 0.5em;
	}

#contactBody .error {
	padding-left: 1em;
	color: rgba(204, 0, 0, 1);
	font-weight: bold;
}

.youtubeBox {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
  }
	.youtubeBox iframe {
		position: absolute;
		top: 0;
		right: 0;
		width: 100% !important;
		height: 100% !important;
	}
.ggmap {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}
	.ggmap iframe,
	.ggmap object,
	.ggmap embed {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
#homeBody .ggmap {
	position: relative;
	padding-bottom: 25%;
}
#homeBody #mainContentsBox { margin-bottom: 0; }

.newslistDl:not(:last-child) {
	padding-bottom: 2rem;
	border-bottom: 1px dotted var(--color-link);
	margin-bottom: 2rem;
}

.caseUl {
	display: flex;
	flex-wrap: wrap;
}
	.caseUl li {
		display: inline-block;
		margin-right: 0.5rem;
		line-height: 150%;
	}
		.caseUl li:not(:last-child)::after { content: '、'; }

.cautionUl {}
	.cautionUl li {
		margin-left: 1em;
		text-indent: -1em;
		line-height: 150%;
	}

/* [sp] ============================================ */
@media only screen and (max-width: 780px) {
	.initBox { width: 90vw; }
	.pcHide { display: block; }
	.spHide { display: none; }
	.pcBlock { display: inline; }
	.spBlock, 
	#drawerBox { display: block; }
	
	.fixImgM {
		width: 70%;
		margin: 0 auto;
	}

	.spLeftText { text-align: left !important; }
	.smallText { font-size: 1.4rem; }
	.leftBox, 
	.rightBox { float: none !important; width: 100% !important; }
	.myContentBox { margin: 0; }

	#footerContactBox .initBox .textBox, 
	#footerContactBox .initBox .btnBox, 
	.flexBox > div, 
	.column2 > div, 
	.column3 > div, 
	.column4 > div, 
	.column5 > div, 
	.column6 > div, 
	.columnFlexBox .textBox, 
	.columnFlexBox .imgBox, 
	.columnFlexBox .textBoxy, 
	.columnFlexBox .imgBoxy { width: 100%; margin-bottom: 1em; }

	.spTable tr, 
	.spTable th, 
	.spTable td {
		float: left;
		width: 100% !important;
		box-sizing: border-box;
	}
	.spTable thead { display: none; }
	.spTable td { padding: 0.25em 1em; }
/*	.spTable td:not(:last-child) { border-bottom-style: dotted; } */
	.spTable tbody td::before { content: attr(data-name)''; float: left; }

	.backBtn, 
	.submitBtn, 
	input, textarea, select, 
	.spTable { width: 100%; }
	.backBtn, 
	.submitBtn { margin-bottom: 0.5em; }
	.mwform-tel-field input { width: auto; }
	
	#footerBox #footerSubMenuBox li { width: 100%; margin-bottom: 0.5em; }

	#accessBody .accessBox {
		background-color:rgba(255, 255, 255, 0.8);
		background-blend-mode: lighten;
		padding-right: 0;
	}

	.imageBlock {
		background: none;
		padding-right: 0;
	}

	#footerContactBox {
		font-size: 1.2rem;
		line-height: 1.2;
	}
		#footerContactBox .initBox .btnBox {
			display: flex;
			flex-wrap: wrap;
			justify-content: space-between;
		}
			#footerContactBox .initBox .btnBox a {
				width: 48%;
				height: 3rem;
				line-height: 2rem;
				display: inline-block;
			}
}
@media only screen and (max-width: 480px) {
	#homeBody .ggmap iframe,
	#homeBody .ggmap object,
	#homeBody .ggmap embed { top: 0; height: 100%; }
}