@charset "utf-8";


/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

html {
	touch-action: manipulation;
	/* scroll-behavior: smooth; */
}
html, body {
	touch-action: manipulation;
	scroll-padding-top: 48px;
	box-sizing: border-box;
}
.html-on-scroll {
	transform: none !important;
}

body.no-scroll {
	overflow: hidden;
}

/* reset */
h1, h2, h3, h4, h5 {
	font-weight: 300;
	letter-spacing: 2px;
	margin: 0;
	padding: 0;
}

/* support iOS */
html{
	height: -webkit-fill-available;
}
body{
	min-height: 100vh;
	min-height: -webkit-fill-available;
}


/* common */
body {
	min-height: 100vh;
	margin: 0;
	padding: 0;

	/* font-family: Arial, Helvetica, sans-serif; */
	/* font-family: 'Open Sans', sans-serif; */
	font-size: 16px;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	-webkit-text-size-adjust: 100%;

	color:#333333;
}
.container {
	/* width: calc(100% - (32px)); */
	width: calc(100% - (48px));
	max-width: 480px;
	margin: 0 auto;
}
.container img {
	max-width: 100%;
}

a {
	color: inherit;
	text-underline-offset: 0.3em;
}

p {
	/* font-size: 12px; */
	/* font-size:0.850rem; */
	font-size: 0.750rem;
	line-height: 1.8;
}
@media (min-width: 576px) {
	.container {
		width:  calc(100vw - (32px * 2));
		max-width: 720px;
	}
}

@media ( min-width : 768px ){
	.container {
		max-width: 720px;
	}
	p, table {
		font-family:'メイリオ', 'Meiryo', 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
		/* font-size: 1rem; */
		line-height: 1.8;
	}


}




/* header */
header {
	margin: 0;
	padding: 0;
}
header h1 {
	margin: 0;
	padding: 10px;
	font-size: 24px;
	text-align: center;
}
header .header-navbar h1 a {
	display: block;
	cursor: pointer;

}


/* ------------------- */

/* Mobile Menu */
.header-navbar-wrap{
	margin: 0;
	padding: 0;
	width: 100vw;
	/* max-width: 100vw; */
	max-width: 100%;
	height: 48px;
	background-color: rgba(255, 255, 255, 0.3);
	/* border-bottom: 1px solid rgba(192,192,192, 0.25); */

	backdrop-filter: blur(0.8px);

	position: absolute;
	top: 0;
	left: 0;
	z-index: 101;
}
.headroom--top .header-navbar-wrap{
	border-bottom: 1px solid rgba(192,192,192, 0);
}
.headroom--not--top .header-navbar-wrap{
	border-bottom: 1px solid rgba(192,192,192, 0.25);
}

.header-navbar{
	margin: 0 auto;
	padding: 0;
	width: 100%;
	max-width: 1024px;
	display: flex;
	justify-content: space-between;
}
.header-navbar .header-small-title{
	/* padding:12px 0; */
	padding: 0;
}
.nav-button-left {
	order: 2;
}
.header-small-title{
	margin-left: 18px;
	order: 1;
}
.nav-button-right {
	order: 3;
}

.header-navbar .header-small-title h1{
	margin: 0;
	padding: 0;
	width: 128px;
	height: 48px;
	text-align: center;
	font-size: 1rem;
	line-height: 48px;
	text-indent: -99999px;
	/* background: url("../images/common/header-small-title.svg") center no-repeat; */
	background: url("../images/common/logo_001a.svg") center no-repeat;
}
/* .header-navbar-wrap h1 a{
	text-decoration: none;
	font-size: 1rem;
	letter-spacing: 0.25rem;
	color: #333333;
} */
.nav-button-left, .nav-button-right{
	margin: 8px 16px;
	padding: 0;
	width: 32px;
	height:32px;
	/* background-color: red; */
}
.button-hamburger{
	cursor: pointer;
	background: url("../images/common/menu-gray.svg") center left no-repeat;
	transition: background-image .2s;
}
.button-hamburger-close{
	background: url("../images/common/menu-gray-close.svg") center left no-repeat;
	transition: background-image .2s;
}


 /* Medium devices (tablets, 768px and up) */
@media ( min-width : 768px ){
	.nav-button-left {
		order: 1;
	}
	.header-small-title{
		order: 2;
		margin-left: 0px;
	}
	.nav-button-right {
		order: 3;
	}


}




/* mobile menu wrap */
.mobile-menu-wrap{
	box-sizing: border-box;
	position: fixed;
	top:-100vh;
	left: 0;
	margin: 0;
	padding: 0 0 72px 0;
	width: 100%;
	max-width: 100vw;
	height: 100vh;
	max-height: 100vh;
	/* overflow-y: hidden; */
	overflow-y: scroll;

	text-align: center;
	background-color: white;
	opacity: 0;
	pointer-events: none;
	z-index: 100;
}
.mobile-menu-show{
	pointer-events: auto;
}

.mobile-menu-section{
	margin: 0 auto;
	padding: auto;
	max-width: 1024px;

	padding:0 16px;
}




/* Sliding Menu */

ul.mobile-nav-menu-items{
	width: 70vw;
	max-height: 90vh;
	margin: 0 auto;
	padding: 24px 0 0 0;

	text-align:center;
	list-style-type: none;

	display: flex;
	flex-direction: column;
	justify-content: center;

	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

li.mobile-nav-menu-item{
	margin: 12px auto;
	padding: 8px 0 16px 0;
	font-size: 16px;
	font-weight: 500;
	/* letter-spacing: 5px; */

	color: #336633;

	/* width: 100px; */
	/* padding-bottom: 0px; */
}

li.mobile-nav-menu-item a{
	display: block;
	text-decoration: none;
	color:inherit;
	letter-spacing: 3px;
	/* border-bottom:0.25px dashed rgba(204, 204, 102, 0.6); */
}

li.mobile-nav-menu-item a::after {
	content: attr(data-eng);
	display: block;
	position:absolute;
	bottom:2px;
	left: 0;
	right: 0;
	/* margin-top: 4px; */
	color: #bfcbbe;
	font-size: 7px;
	letter-spacing: 2px;
}



@media ( min-width : 768px ){
	.nav-button-left, .nav-button-right {
		margin: 8px 32px;
	}

	ul.mobile-nav-menu-items {
		text-align: center;

	}

	li.mobile-nav-menu-item {
		font-size: 24px;
		font-size: 1.5rem;
	}

	li.mobile-nav-menu-item a:hover {
		opacity: 0.8;
	}

}







/* Cover for mobile */
.cover{
	overflow: hidden;
	/*  ⚠ 仮 */
	/* height: 480px; */
	height: calc(100vh - 12vh);
	box-sizing: border-box;
	border: 18px solid #ffffff;
	border-top: 52px solid #fff;
	position: relative;

}
.cover img {
	/* max-width: 100%; */
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

.cover .cover-desc {
	position: absolute;
	display: block;
	width: 180px;
	height: 48px;
	top:32%;
	left: 20px;
	line-height: 1.3;
	opacity: 0.85;
	/* font-size: 32px;
	font-weight: bold;
	color: white; */
	text-indent: -9999px;

	/* mix-blend-mode: lighten; */
	/* text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.3), -1px -1px 0px rgba(0, 0, 0, 0.1); */
	/* text-shadow: 0.5px 0.5px 0px rgba(0, 0, 0, 0.1); */

	/* background: url(../images/header/watashinikaeru.svg) 0 0  no-repeat; */
	background: url(../images/header/watashinikaeru_white.svg?01) 0 0  no-repeat;
}
.cover .scrolldown-on-cover {
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;

	width: 32px;
	height: 120px;
	background: #fff;
	font-size: 12px;
	color:#333333;

	box-sizing: border-box;

	cursor: pointer;
	user-select: none;

	background: #fff url('../images/common/scroll_button.svg') top center no-repeat;
}

@media (max-width: 414px) {
	.cover img {
		object-position: 40% 50%;
	}
}

@media ( min-width : 640px ){
	.cover .cover-desc {
		top:45%;
		left: 15%;
	}
}


@media ( min-width : 769px ){
	.cover{
		/* display: none; */
		margin: 0 auto;
		max-width: 1024px;
		max-height: 480px;
	}
	.cover .cover-desc {
		width: 225px;
		height: 60px;

		top:42%;
		left: 10%;

		background-size: 200px ;
	}
}




/* Menu for PC */


.menu-for-pc {
	display: none;
}

.pc-nav-margin {
	display: none;
}

@media ( min-width : 769px ){
	.pc-nav-margin {
		display: block;
		width: 100%;
		height: 72px;

	}

	.menu-for-pc {
		margin: 12px auto  auto;
		padding: 7px 0px;
		width: 100%;
		max-width: calc(1024px - (18px * 2 ));
		display: block;
		/* text-align: center; */
		border-top:rgba(51, 102, 51, 0.35) 1px solid;
		border-bottom:rgba(51, 102, 51, 0.35) 1px solid;

	}

	ul.pc-nav-menu {
		padding-left: 0;
		display: flex;
		list-style: none;
		justify-content: center;
		align-items: center;

		margin-block-start: 0;
		margin-block-end: 0;

		gap:18px;


	}
	ul.pc-nav-menu li {
		display: inline-block;

	}
	.pc-nav-menu li a {
		padding: 2px 12px;

		text-decoration: none;
		font-size: 14px;
		font-size: 0.875rem;
		font-weight: 400;
		letter-spacing: 1px;
		color:#336633;

		box-sizing: border-box;

		/* border: #fff 1px dotted; */

		transition: all 0.5s;
	}
	.pc-nav-menu li a:hover {
		opacity: 0.75;
	}

	.pc-nav-menu li a i{
		margin-right: 8px;
	}


}








/* loading Screen */
#loadingWrap{
	width: 100vw;
	height: 100vh;
	background-color:rgba(254,254,254,1);
	/* position: fixed; */
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index:3600;
	overflow: hidden;
}
.loading-image{
	margin: 42vh auto 0 auto;
	width: 120px;
	display: flex;
	flex-direction: column;
	text-align: center;
}
.loading-image img{
	margin: 0 auto;
	width: 50px;
	height: 50px;
}
.loading-image span {
	text-align: center;

	font-size: 8px;
	letter-spacing: 1em;
	margin: 10px auto;
}
.loading-image span::after {
		content: " ";
		margin-left: -1em;
}







/* to Top button */
.toTopButtonWrap{
	position: relative;
}
#toTopButton{
	margin: 0 3px;
	padding: 2px 8px;
	border-radius: 3px;

	width: 54px;
	text-align: center;

	font-size: 0.625rem;

	/* position: absolute; */
	position: fixed;

	right:8px;
	bottom: 36px;

	cursor: pointer;
	user-select: none;

	border:1px solid gray;
	background-color: rgba(255, 255, 255, 0.3);
	-webkit-backdrop-filter: blur(1px);
	backdrop-filter: blur(1px);

	pointer-events: none;

	z-index: 1000;
	opacity: 0;

	transition: opacity 1s ease-out, backdrop-filter 1s ease-out;
}
#toTopButton.is-fadein {
	opacity: 1;
	transition: opacity 1s ease-out, backdrop-filter 1s ease-out;
	pointer-events: all;
}
#toTopButton.is-fadein.is-waiting {
	opacity:0.5;
	backdrop-filter: blur(1.5px);
	transition: opacity 1s ease-out, backdrop-filter 1s ease-out;
	pointer-events: all;

}

#toTopButton.appended {
	background: #889933;

}
@media ( min-width : 769px ){

}


@media ( min-width : 1024px ){
	#toTopButton{
		margin-right: calc((100% - 1024px) / 2);
	}
}


/* Contents
--------------------------------------------- */

/* Common */

.contents-wrap {
	padding-top: 48px;
	padding-bottom: 32px;
}


/* HOME */
section.home-content {
	margin: 0 auto 48px auto;
}


h2.content-header {
	display: block;
	margin: 12px auto;
	text-align: center;
	font-size: 16px;
	font-size: 1rem;
	font-weight: 300;
	letter-spacing: 2px;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	color:#336633;
}

h3.content-header {
	display: block;
	margin: 20px auto 8px auto;
	text-align: center;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 300;
	letter-spacing: 2px;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	color:#336633;

}

h4.content-header {
	text-align: left;
	margin: 24px 0 0 0 ;
	font-size: 13px;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	color:#336633;
}

div.examination-time-wrap {
	text-align: center;
	margin: 0 auto;
}

div.examination-time-caption {
	margin: 0 auto;
}
div.examination-time-caption p{
	margin: 0 auto;
	text-align: center;
	font-size: 12px;
	font-size: 0.75rem;
	color:#336633;
}
div.examination-time-caption table{
	margin: 0 auto;
	width: 80%;
	font-size: 12px;
}


.home-about img {
	border-radius: 4px;
}


h4.content-header + p {
	margin-top: 3px;
}

.home-content-access-img-wrap {
	margin: 0 auto;
}
.home-content-access-img-wrap a img{
	margin: 0 auto;
	width: 100%;
}
.home-access p {
	font-size: 12px;
	font-size: 0.75rem;
}



.link-to-page {
	text-indent: -9999px;
	display: block;
	float: right;
	width: 120px;
	height: 32px;
	background: url(../images/contents/link_access.svg) 120px 32px;
}



/* About */

.profile-text {
	margin: 0 auto;
	max-width: 640px;
}
.profile-text p{
	font-size: 14px;
	font-size: 0.875rem;
	line-height: 1.8;
}
.about-text{
	/* padding-left: 16px;
	padding-right: 16px; */
	font-size: 12px;
	font-size: 0.750rem;
	line-height: 1.8;
}

.greeting-text {
	margin: 0 auto;
	max-width: 640px;
}
.greeting-text p {
	font-size: 12px;
	font-size: 0.750rem;
	line-height: 1.8;
}
.greeting-sign {
	text-align: right;
	font-size: 14px;
	font-size: 0.875%;
	letter-spacing: 1.5px;
}

table.about-table {
	margin: 0 auto;
	width: calc(99% - 16px);
	border-collapse: collapse;
}

.about-table tr{
	height: 32px;
	min-height: 3rem;
	border-bottom: 0.25px solid #e9f1e9;
}
.about-table th{
	text-align: left;
	letter-spacing: 1px;
	width: 58px;
	padding: 3px;
}
.about-table td{
	line-height: 1.8;
	padding: 3px;
}
.about-table tr:first-child {
	border-top: 0.25px solid #e9f1e9;
}

.about-table-address-text {
	vertical-align: middle;

}
.about-table-map-link {
	float: right;
	clear: both;
	font-size: 9px;
	padding: 1px 5px;
	margin: 2px 8px 2px 2px;
	border: 1px dotted #336633;
	border-radius: 2px;
}
.about-table-map-link a{
	color:#336633;
	text-decoration: none;
}

/* Usage */

.usage-text {
	margin: 0 auto;
	max-width: 640px;
}
.usage-text p {
	font-size: 12px;
	font-size: 0.750rem;
	line-height: 1.8;
}
.usage-text p strong {
	color:#336633;
	font-weight: 400;
}

/* Access */
.toAppLink{
	display: flex;
	justify-content: flex-end;
	align-items:flex-start;
}
.link-googleMaps {
	display: inline-block;
	text-indent: -9999px;
	display: block;
	width: 120px;
	height: 32px;
	background: url(../images/contents/link_openwithapp.svg) 120px 32px;
	overflow: hidden;
}
.link-googleMaps-icon img{
	vertical-align: top;
}
.link-googleMaps-icon{
	display: inline-block;

}
.access-text p{
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.8;
}

dl {
	margin: 0 auto;
	width: 95%;
	font-size: 12px;
	font-size: 0.75rem;
}
dt {
	width: 4rem;
	float: left;
}
dd {
	margin-left: 4rem;
	height: 24px;
}

.copy-button {
	display: inline-block;
	margin-top: 12px;
	font-size: 10px;
	font-size: 0.625rem;
	padding: 3px 5px;
	border:1px solid #336633;
	border-radius: 4px;
	color: #336633;

	user-select: none;
	cursor: pointer;

	transition: margin-top 0.1s linear;
}
.copy-button i {
	font-size: 12px;
	font-size: 0.750rem;
}
.copy-button:active {
	background-color: rgba(136, 153, 51,0.1);
	margin-top: 12.5px;
}

.panzoom-wrap {
	margin: 0 auto;
	padding: 0;
	width: 100%;
	height: calc (240px );
	overflow: hidden;
	background-color: #ffffff;

}




/* Information */
.information-date {
	color:#336633;
	font-size: 0.625rem;
}
h4.information-header {
	font-size: 0.875rem;
}
.information-article hr{
	/* color:#336633; */
	height: 0;
	border-bottom: rgba(51, 102, 51, 0.5) 0.3px solid;

}
.information-text {
	font-size: 0.75rem;
	line-height: 1.8;
}

/* information table */
.information-text table {
	width: 100%;
	max-width: 100vw;
	/* border: 1px #333333 solid; */
	border: 1px #84AA4B solid;
	border-radius: 8px;
	font-size: 0.750rem;

	border-spacing: 0;

	box-sizing: border-box;

	/* border-collapse:  collapse; */
	color:#333333

}
.information-text table tr th,
.information-text table tr td:not(td[colspan]){
	padding: 8px 10px;
	text-align: center;

	border: 1px #84AA4B solid;
	font-weight: normal;
	color:#333333;
}
.information-text table tr td:not(td[colspan]){
	padding: 5px;
	font-weight: 500;
	color: #336633;
}

.information-text table > tbody > tr:first-child > th:first-child,
.information-text table > tbody > tr:first-child > td:first-child {
	border-top-left-radius: 8px;
}
.information-text table > tbody > tr:first-child > th:last-child,
.information-text table > tbody > tr:first-child > td:last-child {
	border-top-right-radius: 8px;
}

.information-text table >tbody tr:last-child > td:first-child {
	border-bottom-left-radius: 8px;
}
.information-text table >tbody tr:last-child > td:last-child {
	border-bottom-right-radius: 8px;
}



.information-text table tr:nth-child(1) > th:first-child{
	/* background-color:#0094ff; */
  }

table tbody tr {
}


table tbody tr:last-child th,
table tbody tr:last-child td {
	/* border-bottom: none; */
}


/* info 202406*/
.info_notice {
	font-size: 0.625rem;
	color:#444;
	line-height: 1.5;
}
.information-text ul {
	margin-left:0px;
	padding-left: 1em;
}



@media (min-width: 576px) {

	/* Home */



	/* About */



	/* Information */
	.information-text table {
		max-width: 320px;

	}

}

@media ( min-width : 769px ){

	/* Common */
	.contents-wrap {
		padding-top: 78px;
		padding-bottom: 32px;


	}

	.link-to-page {
		text-indent: -9999px;
		display: block;
		float: right;
		/* width: 120px;
		height: 32px;
		background: url(../images/contents/link_access.svg) 120px 32px;
		 */
		background: none;
		width: 150px;
		height: 40px;
		content: url(../images/contents/link_access.svg);
	}
	.link-to-page:hover {
		opacity: 0.8;

	}


	/* Home */

	.home-about-wrap {
		width: 100%;
		display: flex;
		justify-content:space-between;
		gap:48px;
	}
	.home-about {
		/* width: 50%; */
		box-sizing: border-box;
	}
	.home-about img {
		border-radius: 4px;
	}
	.home-about p {
		font-size: 14px;
		font-size: 0.875rem;
	}

	.home-usage-wrap {
		width: 100%;
		display: flex;
		justify-content: space-between;
		gap: 48px;
	}
	.home-usage {
		width: 50%;
		box-sizing: border-box;

	}
	.home-usage p{
		font-size: 14px;
		font-size: 0.875rem;
		line-height: 1.8;
	}

	h2.content-header {
		margin: 0 auto 12px auto;
		font-weight: 400;
	}

	h4.content-header {
		margin: 12px 0;
		font-size: 14px;
		font-size: 0.875rem;
	}


	.home-access-wrap {
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		gap: 42px;
	}

	.home-content-access-img-wrap {
		box-sizing: border-box;
		width: 72%;
	}
	.home-access {
		box-sizing: border-box;
		width: 28%;

		font-size: 14px;
		font-size: 0.875rem;
		line-height: 1.8;
	}
	.home-access p {
		font-size: 14px;
		font-size: 0.875rem;
	}




	/* About */

	h3.content-header {
		font-size: 16px;
		font-size: 1rem;
		font-weight: 400;
	}
	.profile-text p{
		font-size: 14px;
		font-size: 0.875rem;
		line-height: 1.8;
	}
	.greeting-text p {
		font-size: 14px;
		font-size: 0.875rem;
		line-height: 1.8;
	}

	.about-text{
		font-size: 14px;
		font-size: 0.875rem;
		line-height: 1.8;
	}
	.about-text img {

	}
	.about-table tr{
		height: 48px;
		min-height: 3rem;
		border-bottom: 0.25px solid #e9f1e9;
	}
	.about-table th{
		width: 120px;

		font-size: 14px;
		font-size: 0.875rem;
		/* font-weight: 500; */
	}



	/* Usage */
	.usage-text p {
		font-size: 14px;
		font-size: 0.875rem;
		line-height: 1.8;
	}

	/* Access */
	.access-text p{
		font-size: 14px;
		font-size: 0.875rem;
		line-height: 1.8;
	}
	dl {
		margin: 0 auto;
		width: 95%;
		font-size: 14px;
		font-size: 0.875rem;
	}

	/* Information */
	.information-date {
		color:#336633;
		font-size: 0.625rem;
	}
	h4.information-header {
		font-size: 0.875rem;
		font-weight: 500;
	}
	.information-article hr{
		color:#336633;
		height: 1px;
		border: 1px;
		border-bottom: rgba(51, 102, 51, 0.5) 1px solid;

	}
	.information-text {
		font-size: 0.75rem;
		line-height: 1.8;
	}


	.information-text table {
		max-width: 320px;

	}




}




/* Footer
--------------------------------------------- */

footer {
	margin: 0;
	padding: 12px 0 8px 0;
	text-align: center;
	/* background-color: #ececec; */
	background-color: #e9f1e9;

	overflow: hidden;
}
footer h2.content-header{
	margin: 16px auto 4px auto;
	font-size: 13px;
	font-size: 0.8rem;

}

footer h1#footer-title{
	font-size: 18px;
	letter-spacing: 1px;

}

footer small {
	display: inline-block;
	font-size: 8px;
	letter-spacing: 0.2em;
	color: #336633;
}

/* footer nav */

.footer-nav-menu {
	margin: 12px auto 24px auto;
	padding: 0;
	width: 88vw;
	max-width: 920px;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:5px;
}

.footer-nav-menu-item {
	box-sizing: border-box;
	width: 48%;
	/* margin: 3px auto; */
	padding: 4px;
	border: 0.5px dashed #889933;
	border-radius: 3px;
	color: #336633;

	text-align: left;
}
.footer-nav-menu-item a {
	display: block;
	font-size: 13px;
	font-weight: bold;
	letter-spacing: 1px;
	/* text-align: center; */
	text-decoration: none;
	color: inherit;

}
.footer-nav-menu-item a i{
	margin-right: 6px;
	margin-left: 8px;
}

.footer-title {
	display: block;

	margin: 24px auto;
	width: 225px;
	/* height: 98px; */
	/* background: url(../images/footer/footer_address_mobile.svg) 225px no-repeat; */
}


@media (min-width: 576px) {
	.footer-nav-menu {
		margin: 32px auto;
		width: 100%;
		justify-content: center;
		/* gap: 16px; */
		/* max-width: 720px; */
	}
	.footer-nav-menu-item {
		width: 18%;
		/* text-align: center; */

	}
	.footer-nav-menu-item a i {
		position: absolute;
		top:0;
		left: 0;
	}
	.footer-nav-menu-item a {
		position: relative;
		display: block;
		width: 100%;
		font-size: 10px;
		text-align: center;
	}

}



@media ( min-width : 769px ){
	footer {
		padding: 12px 0 24px 0;
	}
	footer small {
		font-size: 10px;
		clear: both;
	}
	.footer-nav-menu {
		margin: 32px auto;
		width: 720px;
	}
	.footer-nav-menu-item {
		width: 19%;
		display: flex;
	}

	footer .footer-content-wrap {
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
		align-items: center;
	}

	footer .examination-time-wrap{
		width: 320px;
		/* float: right; */
	}
	footer h2.content-header{
		font-size: 13px;
		margin: 0 auto 6px auto;
	}
	footer .examination-time-caption p{
		font-size: 0.625rem;


	}

	footer .footer-title-wrap {
		width: 320px;
		/* float: left; */
	}
	footer .footer-title {
		margin: 0;
		width: 280px;

	}

	footer .footer-copyright {
		clear: both;
		/* margin-top: 16px; */
		padding-top: 32px;
	}

}



@media not all and (min-resolution:.001dpcm) {
	@supports (not (translate: none)) {
		.footer-nav-menu-item {
			margin-bottom: 5px;
			}
	}
}






/* JavaScript plugIns
--------------------------------------------- */
/* headroom.js */
.headroom {
	position: fixed;
	top: 0px; left: 0; right: 0;
	z-index: 101;
	will-change: top;
	transition: all .8s linear;
}

.headroom--pinned {
	transition: all .4s ease-out;
}
.headroom--unpinned {
	top: -48px;
	/* opacity: .5; */
}
.headroom--bottom{
	top:0px;
	/* opacity: 1; */

}




/***/

/* Zooming image
-------------------------------*/
#overWrap {
	display: block;
	width: 100vw;
	height: 100vh;
	margin: 0;
	padding: 0;
	background: rgba(255,255,255,0.9);
	position: absolute;
	top: -120vmax;
	right: 0;
	left: 0;
	/* pointer-events: none;
	 */

	opacity: 0;
}
#overWrap.show {
	width: 100vw;
	height: 100vh;
	/* max-width: 100%; */
	/* max-height: 100%; */
	top:0;
	bottom: 0;
	opacity: 1;
	user-select: none;
	-webkit-user-select: none;
	overflow: hidden;
	z-index: 500;
}


.button {
	font-size: 16px;
	/* font-weight: bold; */
	font-weight: 500;
	border: 2px solid #8CB342;
	border-radius: 4px;
	width: 24px;
	height: 24px;
	line-height: 24px;
	text-align: center;
	margin: 2px;
	display: inline-block;
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;

	background-color: rgba(140, 179, 66, 0.1);

	color:#8CB342;
	z-index: 100000;

}
.buttonWrap {
	display: flex;
	justify-content: center;
	align-items: center;
	gap:10px;
	width: 90vw;
	height:36px;
	max-width: 100%;
	margin: 0 auto;
	user-select: none;
	-webkit-user-select: none;
	/* z-index: 10000; */
}
.f-js-start {
	/* justify-self: start; */
	margin-right: auto;
}
.f-js-end {
	/* justify-self: end; */
	margin-left: auto;
}

.close-btn {
	position: absolute;
	top:0;
	right: 0;
	background-color: #fff;
}


.thumbnail {
	box-sizing: border-box;
	cursor: pointer;
	z-index: 10;

	width: 100%;
	max-height: 360px;
	overflow: hidden;
	border: 2px solid #88AC44;
	border-radius: 6px;

	aspect-ratio: 2/1;
	position: relative;
	pointer-events: auto;
}
.thumbnail img {
	width: 100%;
	height: auto;
	object-fit: cover;
}


.open-btn {
	display: block;
	width: 52px;
	font-size: 16px;
	line-height: 24px;

	position: absolute;
	/* top:0;
	left: 10; */
	bottom:10px;
	right:10px;
	background-color: #fff;
	/* z-index: 100000; */
	pointer-events: none;
}
.open-btn > span{
	font-size: 12px;
	vertical-align: middle;
	line-height: 24px;
	font-weight: 500;
}

#imageWrap {
	margin: 0 auto;

	width: 92vw;
	max-width: 100%;
	height: 320px;
	max-height: 500px;

	position: absolute;
	top:-120vmax;

	background-color: #fff;

	border: 2px solid #88AC44;
	border-radius: 6px;

	user-select: none;
	-webkit-user-select: none;
	/* touch-action: manipulation; */

	background-color: #fff;

	z-index: 1000;
	transform: scale(0.8);
	opacity: 0.8;
	transition: transform 0.25s linear, opacity 0.15s linear;


}

#imageWrap.show {
	margin: 0 auto;
	display: block;
	position: absolute;
	top:20vmin;
	bottom: 0;
	left:0;
	right:0;

	transform: scale(1);
	opacity: 1;

	transition: transform 0.3s linear, opacity 0.15s linear;

}

.mapObject {
	width: 100%;
	height: 100%;

}



@media (orientation: landscape) and (max-width: 845px){
	#imageWrap.show {
		top:5px;
		height: calc(86vh - 42px);
	}
}
@media ( max-width : 768px ){
	#overWrap.show {
		max-width: 100%;
		max-height: 100%;
	}
}
@media ( min-width : 768px ){
	#overWrap.show {
		max-width: 100%;
		max-height: 100%;
	}
	#imageWrap.show {
		width: 90vw;
		max-width: 1024px;
		height: 500px;
		max-height: 80vh;
	}
	.buttonWrap {
		display: none;

	}
}




/* CSS Hacks
--------------------------------------------- */
/* IE11 hack */
/* @media all and (-ms-high-contrast:none){
	*::-ms-backdrop, #loadingWrap {
		display: none;
	}
} */

/* iOS14.0.x */
@media not all and (min-resolution:.001dpcm) {
	@supports (not (translate: none)) {

		ul.mobile-nav-sns-items li + li{
			margin-left: 28px;
		}


	}
  }

/* tap highlight */
a {
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	cursor:pointer;
}






/* test */
.blur-test{
	width: 100px;
	height: 100px;
	position: fixed;
	top: 30px;
	left: 30px;
	/* color: rgba(252, 143, 0, 0.25); */
	backdrop-filter: blur(10px);

	border: 2px #333333 solid;
	display: none;

}
















/* Memorize
--------------------------------------------- */


/* font px on rem */
/*
16px 1rem
14px 0.875rem
12px 0.750rem
10px 0.625rem

18px 1.125rem
20px 1.250rem
24px 1.5rem
32px 2rem
36px 2.250rem
48px 3rem
*/



/* Break points */
/*
@media (max-width: 576px) {
	for mobile tate
}

@media ( max-width : 769px ){
	for mobile
}
*/



/*bootstrap*/
/*
// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

// Large devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }

*/

