@charset "utf-8";
/* CSS Document */
body{
	font-family:'メイリオ', Meiryo, sans-serif;
}
img{
	width:100%;
}
a{
	text-decoration:none;
	color:#007BFF;
}
a:hover{
	opacity:0.6;
	transition: 0.2s;
	text-decoration: underline;
}
.pc-only{
	display:block;
}
.sp-only{
	display:none;
}
.sp2-only{
	display:none;
}
@media screen and (max-width: 896px){
	.pc-only{
		display:none;
	}
	.sp-only{
		display:block;
	}
}
@media screen and (max-width: 450px){
	.sp2-only{
		display:block;
	}
}

/*Header*/
header{
	background-color:#174C92;
	opacity:0.85;
	width:100%;
	height:100px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index:1;
}
header .inner{
	max-width:1000px;
	margin:0 auto;
	padding:12px 10px;
}
header .inner .wrapper{
	display:flex;
	flex-flow:row;
	justify-content:space-between;
	position:relative;
}
.box-a{
	max-width:750px;
}
.box-a .label{
	font-size:12px;
	color:#fff;
	margin-bottom:12px;
}
.box-a .container{
	display:flex;
	color:#fff;
	height:50px;
}
.box-a .container .logo{
	font-size:40px;
	margin:auto 0 0 0;
	width:186px;
}
.box-a .container .logo img{
	width:100%;
}
.box-a .container nav{
	margin:auto 0 6px 10px;
}
.box-a .container .menu{
	display:flex;
	justify-content:space-between;
}
.box-a .container .menu li{
	margin:0 0 0 32px;
	display: flex;
    justify-content: center;
    align-items: center;
	
}
.box-a .container .menu li a{
	text-decoration:none;
	font-size:15px;
	font-weight:bold;
	color:#fff;
	text-shadow:1px 1px 1px black;
	vertical-align: baseline;

	
}
.box-b{
	margin-top:10px;
	padding-left:10px;
	width:300px;
}
.box-b .contact{
	display:flex;
	justify-content:space-between;
}
.box-b .contact p{
	color:#fff;
	font-size:14px;
	font-weight:bold;

}
.box-b .lang-switch{
	display:flex;
	justify-content:space-around;
	margin:20px 0 0 0;
}
.box-b .lang-switch .switch{
	display:block;
	width:48%;
	max-width:140px;
	height:40px;
	line-height:40px;
	text-align:center;
	text-decoration:none;	
	background:rgba(255,255,255,0.8);
	position:relative;
}
.box-b .lang-switch .switch:hover{
	opacity:0.8;
	cursor:pointer;
}

.box-b .lang-switch .switch span{
	font-size:10px;
	color:#111;
}
.box-b .lang-switch .switch i{
	font-size:14px;
	color:#0675EF;
	position:absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	/* -webkit- transform: translateY(-50%); */
	margin: auto;
	display: none;
	
}

.box-b .lang-switch .switch.sel i{

	display: none;
}
.box-b .lang-switch .switch.sel{
	font-weight:bold;
}
.box-c{
	width:520px;
	position:absolute;
	top:0px;
	right:0px;
}
.box-c .contact{
	display:flex;
	justify-content:space-between;
}
.box-c .contact p{
	color:#fff;
	font-size:14px;
	font-weight:bold;

}


.hamburger{
	display:none;
}
.fixed-space{
	width:100%;
	height:100px;
}
@media screen and (max-width: 896px){
	header{
		height:60px;
	}
	header .inner{
		max-width:640px;
		margin:0 auto;
	}
	.box-a{
		max-width:400px;
	}
	.box-a .label{
		display:none;
	}
	.box-a .container{
		display:flex;	
	}
	.box-a .container .logo{
		margin:0 0 0 0;
		width:143px;
	}
	.box-a .container nav{
		position: fixed;
		top: 0;
		left:-1000px; /* 左で隠れてスタンバイ */
		width: 100%; 
		height: 100vh;
		padding-top: 40px;
		transition: all .6s;
		z-index: 200;
		overflow-y: auto; 
		background-color:#174C92;
		opacity:0.85;
	}
	.nav-open .box-a .container nav {
		left:-10px;
	}
	.box-a .container .menu{
		display:flex;
		flex-flow:column;
		margin:100px 0 0 0;
		justify-content:space-between;
	}
	.box-a .container .menu li{
		margin:0;
		border-bottom:1px solid #fff;
		text-align:center;
		height:30px;
		line-height:30px;
	}
	.box-a .container .menu li a{
		font-size:15px;
	}
	.box-b{
		width:300px;
	}
	.box-b .contact{
		display:none;
	}
	.box-b .contact p{
		display:none;
	}
	.box-b .lang-switch{
		justify-content:space-around;
		z-index:201;
		max-width:800px;
		position:absolute;
		top:60px;
		left:-1000px;
		transform: translateX(-50%);
		transform: translateX(-50%);
		transition: all .6s;
		width:380px;
	}
	.nav-open .box-b .lang-switch{
		left:50%;
	}
	.box-b .lang-switch a{
		z-index:201;
	}
	.box-c {
		display:none;
	}
	.hamburger{
		display:block;
		height:30px;
		width: 36px;
		position: absolute;
		right: 0px;
		top:8px;
		z-index: 201;
	}
	.hamburger__line {
		display:inline-block;
		width: 36px;
		height: 2px;
		background-color: #fff;
		transition: all .6s;
		position: absolute;
	}
	.hamburger__line--1 {
  		top: 0px;
	}
	.hamburger__line--2 {
  		top: 10px;
	}
	.hamburger__line--3 {
  		top: 20px;
	}
	.nav-open .hamburger__line--1 {
  		transform: rotate(45deg);
  		top: 10px;
	}
	.nav-open .hamburger__line--2 {
  		width: 0;
  		left: 0;
	}
	.nav-open .hamburger__line--3 {
  		transform: rotate(-45deg);
  		top: 10px;
	}
	.fixed-space{
		height:60px;
	}
}
/*Footer*/
footer{
	width:100%;
}
footer .menu{
	
	display:flex;
	justify-content:center;
	/*width:315px;*/
	margin:0 auto;
	height:26px;
}
footer .menu a{
	display:block;
	text-decoration:none;
	color:#111;
	font-size:15px;
	line-height:26px;
	margin: 0 10px;
}
footer .blue-band{
	width:100%;
	height:140px;
	background-color:#174C92;
	opacity:0.85;
}
footer .blue-band .inner{
	max-width:1000px;
	margin:0 auto;
	padding:0 10px;
}
footer .blue-band .inner .wrapper{
	display:flex;
	justify-content:space-between;
	color:#fff;
}
footer .blue-band .inner .wrapper .logo{
	padding:50px 0;	
	font-size:40px;
	width:186px;
}
footer .blue-band .inner .wrapper .logo img{
	width:100%;
}
footer .blue-band .inner .wrapper .contact{
	font-size:14px;
	padding:50px 0;
}
footer .blue-band .inner .wrapper .contact p{
	padding-bottom:10px;
}
footer .blue-band .inner .wrapper .contact span{
	margin-right:10px;
}
footer .copy-right{
	font-size:13px;
	height:50px;
	line-height:50px;
	text-align:center;	
}

@media screen and (max-width: 896px){
	footer .menu{
		display:none;
	}
	footer .menu a{
		display:none;
	}
	footer .blue-band{
		height:186px;
	}
	footer .blue-band .inner{
		max-width:640px;
		margin:0 auto;
	}
	footer .blue-band .inner .wrapper{
		display:flex;
		flex-flow:column;
		text-align:center;
	}
	footer .blue-band .inner .wrapper .logo{
		padding:0;	
		width:186px;
		margin:30px auto 0 auto;
	}
	footer .blue-band .inner .wrapper .contact{
		margin-top:30px;
		padding:0;
	}
}
main .catch-copy{
	width:100%;
	color:#fff;
	font-size:30px;
	text-shadow:2px 2px 0 rgba(0,0,0,0.85);
	text-align:center;
	position:relative;
	top:0;
	left:0;
}

main .catch-copy .img-cover{
	position:absolute;
	bottom:0;
	left:0;
}
main .catch-copy .img-copy{
	display:block;
	max-width:540px;
	width:50%;
	position:absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	/* -webkit- transform: translateX(-50%) translateY(-50%); */
	margin: auto;
}
main section .inner{
	max-width:1000px;
	margin:0 auto;
	padding:10px 10px;
}

main section .inner .title{
	text-align:left;
}
main section .title h2{
	font-size:30px;
	padding:0 0 0px 0;
	font-weight:bold;
	
}
main section .title h3{
	font-size:16px;
	padding:16px 0;
	color:#0675EF;
	font-weight:bold;
}

@media screen and (max-width: 896px){
    main .catch-copy .img-copy{
        width:80%;
    }
	main .catch-copy .img-copy.eachitem{
		max-width:300px;
	}
	main section .inner{
		max-width:660px;
	}
	main section .inner .title{
		text-align:center;
		width:100%;
	}
	main section{
    height:auto;
		padding-bottom:10px;
    width:100%;
	}
	main section .title h2{
		font-size:24px;
		padding:0 0 0px 0;
	}
	main section .title h3{
		font-size:12px;
		padding:12px 0;
	}
}
/*breadcrumb*/
.breadcrumb{
	padding:10px;
}
.breadcrumb  .inner{
	max-width:1000px;
	margin:0 auto;
	padding:0 10px;
}
.breadcrumb .arrow{
	margin:0 5px;
}
@media screen and (max-width: 896px){
  .breadcrumb  .inner{
      max-width:640px;
      margin:0 auto;
  }
}



/* btn.todetail */
.btn.todetail{
	font-size:12px;
	/* font-style:italic; */
	text-decoration:none;
	text-align:center;
	display:block;
	width:210px;
	height:50px;
	line-height:50px;
	background:#FFFFFF;
	margin:0 auto 0 auto;
	position:relative;
}
.btn.todetail span{
	color:#111;
}
.btn.todetail i{
	color:#0675EF;
	position:absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	/* -webkit- transform: translateY(-50%); */
	margin: auto;
}
@media screen and (max-width: 896px){
	.btn.todetail a{
		width:100%;
		max-width:210px;
		margin:0 auto 0 auto;
	}
}
/* inquire */
.inquire{
	background:#CFE5F9;
	margin-top:100px;
	margin-bottom:50px;
	padding:30px 0;

}
.inquire .inner{
	position:relative;
}

.inquire .comment{
	margin-bottom:30px;
}
.inquire .telmail{
	display:flex;
	justify-content:space-between;
}
.telmail p{
	font-size:20px;	
}
.telmail .tel{
	margin-right:30px;
}
.runnnigtime{
	text-align:center;
	margin-top:20px;
}
.inquire .body{
	width:70%;	
}
.inquire .img-navigator{
	max-width:264px;
	width:30%;
	position:absolute;
	right:10px;
	bottom:-33px;
}

@media screen and (max-width: 896px){
  .inquire{
		padding:10px 0;
		margin-top:50px;
	}
	.inquire .comment{
		margin-bottom:10px;
		line-height:20px;
	}
	.inquire .telmail{
			flex-flow:column;
	}
	.telmail p{
		font-size:20px;	
	}
	.telmail .tel{
		margin-right:0px;
		margin-bottom:20px;
	}
	.runnnigtime{
		text-align:left;
		font-size:14px;
		margin-bottom:50px;
	}
	.inquire .body{
		width:86%;	
	}
	.inquire .img-navigator{
        position:absolute;
        right:10px;
        bottom:-13px;		
	}
}
@media screen and (max-width: 450px){
	.inquire .body{
		width:100%;	
	}	
}
/*patenate*/
.pagenate{
	text-align: center;
	margin:50px auto 20px;
}
.pagenate ul{
	text-align: center;
	display:flex;
	justify-content: center;
}
.pagenate li{
	border-top:1px solid #dee2e6;
	border-bottom:1px solid #dee2e6;
	border-right:0.5px solid #dee2e6;
	border-left:0.5px solid #dee2e6;
}
.pagenate li:first-child{
	border-left:1px solid #dee2e6;
}
.pagenate li:last-child{
	border-right:1px solid #dee2e6;
}
.pagenate li a, .pagenate li span{
	padding:.5rem .75rem;
	display:block;
}
.pagenate li a:hover{
	background:#dee2e6;
	transition:0.2s;
}
.admin main{
	min-height:calc(100vh - 300px);
}
.admin h1{
	margin:20px auto;
	font-size:24px;
	text-align:center;
	font-weight:bold;
}

/*modal*/

.modal{
	display:none;
}

.modal-window{
	background:#FFFFFF;
	max-width:400px;
	width:30%;
	border:1px solid #111111;
	padding:10px;
	border-radius:10px;

	position:absolute;
	top:40%;
	left:50%;
	transform: translateX(-50%) translateY(-40%);
	z-index:3;
	
}
.modal-cover{
	width:100%;
	height:100%;
	background:#696969;
	opacity:0.8;
	position:absolute;
	top:0;
	left:0;
	z-index:2;
	
}
.modal-window .title{
	font-size:24px;
	font-weight:bold;
	margin-bottom:10px;
}
.modal-window .message{
	font-size:14px;
	padding-bottom:10px;
	border-bottom:1px solid #C0C0C0;
}
.modal-window .answer{
	display:flex;
	justify-content: space-around;
}
.modal-window .answer .sel{
	padding:10px;
	color:#007BFF;
	font-size:14px;
}
.modal-window .answer .sel:hover{
	opacity:0.8;
	cursor:pointer;
}
.modalon{
	color:#007BFF;
}
.modalon:hover{
	cursor:pointer;
}
@media screen and (max-width: 450px){
  .modal-window{
      max-width:300px;
	  box-sizing: border-box;
      width:100%;
  }	
}