@charset "UTF-8";

.page-title {
	background: url("../img/map/title.jpg") center no-repeat;
	background-size: cover;
	min-height: 300px;
	text-align: left;
	position: relative;
	margin-bottom: 0;
	margin-top: 105px;
}


@media only screen and (max-width: 768px) {
	.page-title {
		min-height: 200px;
		margin-top: 65px;
		margin-bottom: 0;
	}
}





/* 
----------------------------------------*/
.inner{
	max-width: 1000px;
	margin: 0 auto;
	padding: 120px 0 100px;
}

h3.ttl-h3 {
	width: 800px;    
	font-family: "Noto Serif CJK JP";
    font-weight: normal;
    font-size: 2.5rem;
    letter-spacing: 0.1em;
    color: #000;
	margin: 0 auto 30px;
}
h3.ttl-h3 span {
	padding-right: 20px;
	background: #fff;
}

h3.ttl-h3::before {
	content: "";
	position: absolute;
	background: #000;
	width: 100%;
	height: 1px;	
	top: 50%;
}

.inner > figure + p{
	text-align: center;
	font-size: 1.8rem;
	line-height: 1.6;
	border: 2px solid #A84B53;
	padding: 1em 0;
}


.map_btn{
	display: flex;
	max-width: 650px;
	margin: 0 auto;
	justify-content: space-between;
}

.print_b{
    width:310px;
    height:50px;
    line-height:50px;
}
.print_b a{
    display:block;
    background:#B8AE7F;
    text-align:center;
    color:#FFFFFF;
    font-size:1.4rem;
	letter-spacing: 0.1em;
    transition: opacity .3s;
}
.print_b a:hover{
	opacity: 0.8;
}


.gmap_b{
    width:310px;
    height:50px;
    line-height:50px;
}
.gmap_b a{
    display:block;
    background:#6B665C;
    text-align:center;
    color:#FFFFFF;
    font-size:1.4rem;
	letter-spacing: 0.1em;
    transition: opacity .3s;
}
.gmap_b a:hover{
	opacity: 0.8;
}

@media only screen and (max-width: 768px) {
	.inner{
		padding: calc(40 / 375 * 100vw) calc(25 / 375 * 100vw) calc(60 / 375 * 100vw);
	}
	
	h3.ttl-h3 {
		width: 100%;
		font-size: 1.6rem;
		letter-spacing: -.1em;
		margin-bottom: 15px;
	}
	h3.ttl-h3 span {
		padding-right: 10px;
		background: #fff;
	}
	
	.inner > figure + p{
		font-size: 3.4vw;
	}

	.map_btn{
		max-width: 100%;
	}
	
	.print_b,
	.gmap_b{
		width:48%;
		height:45px;
		line-height:45px;
	}
	.print_b a,
	.gmap_b a{
		font-size:1.3rem;
	}
	
}
@media only screen and (max-width: 481px) {
	
}


@media print {
	.inner{
		margin: 0 auto;
		padding: 0;
	}
}


.js-fadein {
  opacity: 0; 
  visibility: hidden;
  transform: translateY(40px);
  transition: all 1s;
}
.js-fadein.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}