@charset "utf-8";
/* CSS Document */
/*follow_menu*/
 
/* .anchor{
	   display: block;
    margin-top: -400px;
    padding-top: 400px;
} */


.sub_menu{
    top: 0%;
    width: 100%;
    z-index: 15;
	    position: fixed !important; 
	display:none;
	    background-color: #fff;
}
.btn_box{
	display:flex;
}
@media screen and (max-width: 1000px) {
	.sub_menu{
		display:none !important;
	}
}

.up_button {
    height: 80px;
    width: 80px;
    margin-left: 20px;
    background-color: #17a2b8;
    display: grid;
    justify-content: center;
    border-radius: 0px;
    z-index: 999;
}
.up_button div{
	font-size:1rem;
	font-weight:600
}
.up_button a{
	text-align: center;
	color: #fff;
	margin-top: 15px;
}
.up_button i{
	font-size:29px;
}

.tel_followbutton{
	    height: 90px;
    width: 180px;
    background-color: #5194d0;
	display: grid;
	justify-content: center;
	border-radius: 20px;
	z-index: 500;
}
.tel_followbutton img{
    width: 23px;
    margin-top: -8px;
    margin-right: 5px;
}
.tel_followbutton a{
	display: flex;
	align-items: center;
	justify-content: center;
}
.tel_followbutton div{
		color: #fff;
	font-size: 1.1rem;
}
.btn-follow{
    position: fixed;
    right: 0%;
bottom: 0%;
    z-index: 500;
    display: flex;
    align-items: center;
	  display: none;
	
}
@media screen and (max-width: 770px) {
	.up_button {
    height: 65px;
    width: 65px;
	}
	.tel_followbutton{
		height: 60px;
	}
	.up_button a {
    margin-top: 5px;
}
	.up_button i {
    font-size: 25px;
}
	.up_button div {
		font-size: 0.9rem;
	}
}

/*//Page Up*/






#nav-drawer{
	display: none;
}
@media screen and (max-width:750px){
#nav-drawer {
  position: relative;
	display:block;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
width: 60px;
    height: 60px;
    display: flex;
    vertical-align: middle;
    background-color:#17a2b8;
    justify-content: center;
    position: fixed;
       top: 1.5%;
    color: #fff;
    right: 7%;
	z-index:999;
}
/*@media screen and (max-width: 1100px) {
	#nav-open {
top:5%;
}*/


/*ハンバーガーの形をCSSで表現*/
.nav_p {
    margin-top: -3px;
}
.sp_menu{
	margin-top:50px;
}
.sp_menu li{
	padding:15px;
	font-size:1.1rem;
}
#nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 2px;
    width: 45px;
    border-radius: 3px;
    background: #fff;
    display: flex;
    content: '';
    cursor: pointer;
    margin-top: 26px;
}
#nav-open span:before {
  bottom: -10px;
}
#nav-open span:after {
  bottom: -20px;
}

/*閉じる用の薄黒箇所*/
#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*メニューの中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 90%;
    max-width: 600px;
  height: 100%;
     background: #d8eff2;
  transition: .3s ease-in-out;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}

/*チェックがついたら表示させる*/
#nav-input:checked ~ #nav-close {
  display: block;
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

.header-logo-menu{
 display: flex;
 display: -moz-flex;
 display: -o-flex;
 display: -webkit-flex;
 display: -ms-flex;
 flex-direction: row;
 -moz-flex-direction: row;
 -o-flex-direction: row;
 -webkit-flex-direction: row;
 -ms-flex-direction: row;
}

/*ロゴやサイトタイトルをセンタリング*/
.logo-area{text-align:center;margin:auto;}

}


p{
	    font-size: 1.1rem;
	line-height: 1.7;
}
img{
	max-width: 100%;
	height: auto;
}
.banner{
	margin: 50px auto;
    width: 80%;
    display: block;
}
.nav_h1{
	font-size:2.5rem;
	font-weight: 600;
	font-family: 'Shippori Mincho B1', serif;
	margin-right: 50px;
}
.header_nav{
	display:flex;
	font-family: 'Shippori Mincho B1', serif;
	font-weight: 600;
	align-items: center;
	justify-content: center;
	    height: 80px;
	
	position:absolute;
	left: 50%;
    width: 100%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.header_nav ul{
	display: flex;
}
.header_nav li{
	padding: 0 30px;
}
.header_nav a{
position: relative;
}
.header_nav a:after{
position: absolute;
left: 0;
content: '';
width: 100%;
height: 1px;
    background: #e78f38;
bottom: -1px;
transform: scale(0, 1);
transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
transition: transform 0.3s;   /*変形の時間*/	
}
.header_nav a:hover:after{
transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/	
}

.contact{
    display: block;
    background-color: #6ad0af;
    padding: 10px;
    margin-left: 50px;
    color: #fff;
		display:none;
}


*{
	font-family: 'Shippori Mincho B1', serif;
}
.mv{
    background-image: url(../images/mv.png);
    height: 900px;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    background-position: bottom;
}
.mv p{
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: 1rem;
    text-align: left;
    font-family: 'Shippori Mincho B1', serif;
    white-space: nowrap;
    padding: 35px 0px;
    color: #fff;
    margin-bottom: 40px;
    margin-left: 100px;
}
.color_red{
	 color: #dc3545;
}
.mv_p span{
	background-color: #fff;
	padding: 1px 15px;
}
.mv a{
background-color: #dc3545;
    color: #fff;
    font-size: 1.7rem;
    padding: 8px;
    border-radius: 4px;
	display: block;
	width: fit-content;
	margin: 20px auto;
}

a img{
	transition: 0.5s ;	
}
a img:hover {
	opacity: 0.5 ;
		}
.inner{
	max-width: 1400px;
	margin: 0 auto;
}
h2{
    font-size: 1.3rem;
    font-family: 'Shippori Mincho B1', serif;
    font-weight: 600;
	display: inline;
	color: #6e5e59;
}
h2 span{
	display:block;
	font-size: 3rem;
	    color: #4ec7da;
}
.h2_box{
  margin: 150px 0px -50px;
	    border-bottom: solid #17a2b8 2px;
}
h3{
    font-size: 1.5rem;
    font-family: 'Shippori Mincho B1', serif;
    font-weight: 600;
    margin: 20px 0px 10px;
	padding-bottom: 10px;
    border-bottom: solid 1px #adb5bd;
}

.top_pic dd{
	text-align: center;
}
.pic img {
    margin-top: 100px;
    width: 100%;
}
.pic dt{
margin: 3px;
}

.pic dd{
font-size: 1.1rem;
    font-weight: 500;
    margin: 3px;
    display: flex;
    justify-content: center;
	
}
.sukima{
	margin-bottom: 10px;
}




.footer_zone{
	height:300px;
	background-color: #f8f9fa;
	position: relative;
	    margin-top: 200px;
}
.footer_zone h1{
font-size: 2.5rem;
    font-weight: 600;
    font-family: 'Shippori Mincho B1', serif;
    padding-top: 50px;
}
.tel{
	margin-top: 10px;
}

footer ul{
    display: flex;
    max-width: 1000px;
    justify-content: space-evenly;
    margin: 80px auto 0px;
	position: relative;
}


small{
	font-size: 80%;
    position: absolute;
    bottom: 5%;
    /* top: 0; */
    left: 50%;
	white-space: nowrap;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}



@media screen and (max-width:1200px){
	.nav_h1 {
		font-size: 3vw;
		    margin-right: 20px;
	}
.h2_box {
    margin: 100px 0px -50px;
}

	.header_nav li {
    padding: 0 10px;
}
.inner{
	width: 80%;
	}	
	.mv p {
		font-size: 2rem;
	}
		.mv a{
		font-size: 1.3rem;
		}
.mv {
    height: 600px;
	}
	table {
		width: 80%;
		}
table th {
    padding: 10px;
    width: 90px;
}
table th, table td {
    padding: 15px 10px;

}
}
@media screen and (max-width:1000px){
.header_nav li {
    padding: 0 6px;
	    font-size: 0.9rem;
}	
}
@media screen and (max-width:767px){
.pic img {
    margin-top: 50px;
}	
}
@media screen and (max-width:800px){
.inner{
	width: 90%;
	}

	table {
		width: 90%;
		}
}
@media screen and (max-width:750px){
	.header_nav ul{
		display:none;
	}
	.header_nav h1{
		font-size:1.5rem;
	}
	.footer_zone h1{
		font-size:1.7rem;
	}
	.header_nav{
		display:none;
	}
}
@media screen and (max-width:600px){
.mv p {
    margin-bottom: -80px;
    margin-left: 30px;
}
h2 span {

    font-size: 2rem;
}
	h3 {
	
    font-size: 1.3rem;	
	}
}
@media screen and (max-width:500px){
	.inner{
	width: 85%;
	}
	.banner {
		width: 100%;}
	.mv p {

    font-size: 1.6rem;
    letter-spacing: 0.7rem;
    margin-left: 10px;
	}
	.mv {
    height: 370px;
	    margin-bottom: 30px;	
}
	.mv a{
		margin: 10px auto;
		font-size:5vw;
		padding: 6px 10px;
	}
h2 {
	font-size: 1.1rem;
	}
  h2 span {
    font-size: 2rem;
}  
.h2_box {
    margin: 60px 0px 10px;
}
	table {
    border-collapse: collapse;
    border: solid 1px #b3d7ff;
    width: 95%;
    margin: 50px auto;

}
	.pic dd {
    font-size: 1rem;
		    font-weight: 500;
}

.contact{
    display: block;
    background-color: #6ad0af;
    padding: 10px;
    margin-left: 50px;
    color: #fff;
	display:none;
}
footer ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

}
@media screen and (max-width:400px){
	.mv p {
		font-size: 1.3rem;
	}
}



/*下層*/
.un_top_img{
background-image: url("../images/un_top.jpg");	
background-size: cover;
background-repeat: no-repeat;
height: 400px;
	display: flex;
	justify-content: center;
align-items: center;
	font-size: 3rem;
	margin-bottom: 100px;
}
.un_top_img h2{
align-items: center;
    display: flex;
    flex-direction: column;
}

.un_pic {
    width: 800px;
    margin: 150px auto 0;
    display: block;
}
h4{
    text-align: center;
    font-size: 1.3rem;
    margin:10px auto 10px;
    font-weight: 500;	
}
.con_box p{
	margin: 0 auto;
	max-width: 600px;
}
.night_page {
    background-image: url(../images/night.png);
	    width: 100%;
    height: 50vw;
}


@media screen and (max-width:1000px){
.un_pic {
	width: 100%;
	}
	.con_box p{
	width: 80%;	
	}
}
@media screen and (max-width:600px){
	h4{
		font-size: 1.1rem;
	}
	
.con_box p {
    font-size: 1rem;
    width: 100%;
    letter-spacing: -0.9px;
}
	.un_top_img{
	    height: 200px;	
	}
}
p{
	font-size:1rem;
}
@media screen and (max-width:500px){
.pic img {
    margin-top: 20px;
}	
}