@charset “utf-8”;
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500&family=Zen+Old+Mincho:wght@700&display=swap');

/* =========================================================
	basic style
========================================================= */
*,
*:before,
*:after {
	box-sizing: inherit;
}

html {
	height: 100%;
	font-size: 62.5%;
	overflow-x: hidden;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	height: 100%;
	background: #fff;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.8;
	font-family: "Helvetica Neue",Arial,"ヒラギノ角ゴ Pro","Hiragino Kaku Gothic ProN","Hiragino Sans",'メイリオ', Meiryo,sans-serif;
	font-style: normal;
	text-align: center;
	letter-spacing: 0.1em;
	color: #000;
	animation: fadeIn 2s ease 0s 1 normal;
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}

ul {
	margin: 0;
	padding: 0;
}

p {
	margin: 1.2em 0;
	line-height: 1.5;
}

a {
	overflow: hidden;
	outline: none;
	border: none;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

a:focus {
	outline: none;
}

a:link {
	color: #3f7c8e;
	text-decoration: none;
}

a:visited {
	color: #3f7c8e;
	text-decoration: none;
}

a:hover {
	color: #70aec0;
	text-decoration: none;
}

a:active {
	color: #52b7d5;
	text-decoration: none;
}

img {
	margin: 0;
	border: 0;
}

a img {
	margin: 0;
	border: 0;
}

a:hover img {
	opacity:	0.7;
	-moz-opacity:	0.7;
	filter: alpha(opacity=70);
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

ul,li {
	list-style: none;
}

button {
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	vertical-align: middle;
	text-align: inherit;
	font: inherit;
	-webkit-appearance: none;
	appearance: none;
}

.pc {
	display: block;
}

.tablet {
	display: none;
}

.sp {
	display: none;
}

.container {
	overflow: hidden;
	width: 100%;
	margin: 0 auto;
}

main {
	overflow: hidden;
	width: 100%;
	margin: 0 auto 100px auto;
}

.main_container {
	overflow: hidden;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}


/* ----- access ----- */
.access_area {
	clear: both;
	margin: 0 auto;
	padding: 30px 0 80px 0;
	background: rgb(0,0,0);
	background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(116,116,116,1) 100%);
	color: #fff;
}

.access_area_inner h2 {
	display: inline-block;
	margin: 20px 0 50px 0;
	padding: 0 4.0rem;
	font-size: 2.6rem;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 500;
	border-bottom: 1px solid #fff;
}

.access_area_inner h3 {
	font-size: 2.0rem;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 500;
}

.iframe-container iframe {
	width: 100%;
	height: 600px;
	margin: 30px 0;
	border: 0;
}

/* ----- info ----- */
.info_area {
	width: 350px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0 10px;
}

.info_area figure {
	flex: 1 1 50%;
	text-align: center;
}

.info_area figure img {
	width: auto;
	height: 50px;
	margin: 0 auto;
}

.info_area figcaption {
	padding: 20px 0 0 0;
	text-align: center;
}

.info_area a {
	color: #fff;
}

.info_area a:hover {
	color: #8f8c82;
}




/* footer
--------------------------------------------------------- */
footer {
	padding: 20px 10px;
}

footer p {
	font-size: 1.4rem;
}







/* =========================================================
	tablet
========================================================= */
@media screen and (max-width: 1024px) {
a:hover img {
	opacity:	1.0;
	-moz-opacity:	1.0;
	filter: alpha(opacity=100);
}

.pc {
	display: none;
}

.tablet {
	display: block;
}

.sp {
	display: none;
}

.main_container {
	width: 95%;
}


/* ----- access ----- */
.access_area {
	padding: 10px 0 40px 0;
}

.access_area_inner h2 {
	margin: 10px 0 30px 0;
	font-size: 2.2rem;
}

.iframe-container iframe {
	height: 500px;
	margin: 15px 0;
}

}

/* =========================================================
	smartphone
========================================================= */
@media screen and (min-width: 599px) {
a[href^="tel:"] {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
}
}

@media screen and (max-width: 599px) {

.pc {
	display: none;
}

.tablet {
	display: block;
}

.sp {
	display: block;
}

main {
	margin: 0 auto 10px auto;
}

/* ----- access ----- */
.access_area {
	padding: 15px 0 40px 0;
}

.access_area_inner h2 {
	margin: 10px 0 30px 0;
	padding: 0 3.0rem;
	font-size: 1.8rem;
}

.access_area_inner p {
	font-size: 1.4rem;
}

.iframe-container iframe {
	height: 450px;
	margin: 20px 0;
}

/* ----- info ----- */
.info_area {
	width: 80%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0 10px;
}

.info_area figure img {
	width: auto;
	height: 40px;
	margin: 0 auto;
}

.info_area a:hover {
	color: #fff;
}


/* footer
--------------------------------------------------------- */
footer p {
	font-size: 1.2rem;
}

}
