@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300;400&display=swap');

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap');





* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


html {
	color: #333333;
    font-family: 'Noto Sans JP', sans-serif;
   	font-size: 100%;
 	margin: 0px auto 0px auto;
	padding: 0px 0px 0px 0px;
	text-align: center;
	}


body {
	margin: 0px auto 0px auto;
	padding: 0px 0px 0 0px;
	text-align : center ;
}


* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.clear{
	clear: both;
	height:1px;
	overflow: hidden;
}



/*======================================

	common text
	
========================================*/

p {
	color:#231815;
	font-size:13px;
	line-height: 2;
	margin:0 0 12px 0;
	padding: 0 0 0 0;
	vertical-align: baseline;
	font-weight: 400;
}

a {
	color:#231815;
	text-decoration:none;
}
a:hover {
	color:#d70051;
	text-decoration:none;
}

img{
  text-decoration: none;
  border: none;
  vertical-align: bottom;
  	}
	


#navi-clear{
	clear:both;
	width:100%;
	height:1px;
	overflow: hidden;
	}

.clear{
	clear:both;
	height:0px;
	overflow: hidden;
	}

.serif{
	font-family: 'EB Garamond', serif;
}


.mincho{
	font-family: serif;
}

.roboto-slab{
font-family: 'Roboto Slab', serif;
letter-spacing: 0.1em;
}

#page-top {
    position: fixed;
    bottom: 25px;
    right: 3px;
    font-size: 12px;
    z-index: 50;
	}
#page-top a {
    background: #00a29a;
    text-decoration: none;
    color: #fff;
    width: 40px;
    padding: 3px 0;
    text-align: center;
    display: block;
    border-radius: 3px;
	}
#page-top a:hover {
    text-decoration: none;
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
	}
	
.clear{
	clear:both;
	width:100%;
	height:1px;
	overflow: hidden;
}


.video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    margin:20px 0 20px 0;
/*  overflow: hidden; */
}
  
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}



/* その場で */
.fadeIn{
animation-name:fadeInAnime;
animation-duration:4s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 下から */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 上から */

.fadeDown{
animation-name:fadeDownAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 左から */

.fadeLeft{
animation-name:fadeLeftAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
  transform: translateX(-100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* 右から */

.fadeRight{
animation-name:fadeRightAnime;
animation-duration:1.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateX(40px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}




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


a:hover img{
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
  text-decoration: none;
  border: none;
	}





body.page-body {
	margin: 0px auto 0px auto;
	padding: 0px 0px 0 0px;
	text-align : center ;
background: #f7f8f8 url("../i/body_bg.png") no-repeat left top;

}



/*======================================

	header
	
========================================*/




header.header{
	position: relative;
	width:100%;
	min-width:100%;
	height: 100px;
	border-top: 0px solid #000;
	top: 0;
	z-index: 50;
	padding: 0 0px 0 0px;
	position: relative;
	overflow: hidden;
	background: transparent;;
	display: flex;
	justify-content: space-between;
}


.header-left{
	width:116px;
	min-width: 116px;
	text-align: left;
	padding: 0 0 0 24px;
}
.header-right{
	width:80px;
	padding: 0px 0 0px 0;
	display: none;
	justify-content: space-between;
}

.header-left h1{
	width:116px;
	height: auto;
	line-height: 1;
	padding: 0 0 0 0;
	margin: 21px 0 0 0;
}

.header-left h1 img{
	width:100%;
}

.header-left h1 a{
	transition: 0.5s ;
}


.header-left h1 a:hover{
	opacity: 0.8;
}

/*======================================

	humberger
	
========================================*/
.mobile-nav-wrapper {
display: block;
z-index: 99;
}



input {
  display: none;
}
.cp_fullscreenmenu {
	position: fixed;
	z-index: 99;
	top: 0;
	right: 0;
}
/*menuコンテンツ*/
.cp_fullscreenmenu .menu {
	position: fixed;
	top: 0px;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-image: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(33,33,33,0.7) 100%);
}
.cp_fullscreenmenu .menu label {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 30px;
	height: 30px;
	cursor: pointer;
	background-size: 100%;
}


.menu-header{
	width: 100%;
	border-bottom: 1px solid #fff;
	text-align: left;
	padding: 0 0 24px 0px;
	margin: 0 0 21px 0;
}

.menu-header-h3{
	margin: 0 auto;
	padding: 0 0 0px 0;
	text-align: center;
}

.menu-header-h3 img{
	width: 120px;
	height: auto;
	margin: auto;
}

.cp_fullscreenmenu .menu .menucont {
	font-size: 18px;
	position: relative;
	top: 40%;
	margin-top: -170px;
	padding-bottom: 20px;
	text-align: center;
}
.cp_fullscreenmenu .menu ul {
	margin: 0 auto;
	padding: 0;
	list-style: none;
}
.cp_fullscreenmenu .menu ul li,
.cp_fullscreenmenu .menu ul li a {
	transition: all 0.3s ease;
}
.cp_fullscreenmenu .menu ul li a {
	display: block;
	padding: 10px 0;
	color: #ffffff;
}

.cp_fullscreenmenu .menu ul li a span {
	display: none;
}

.cp_fullscreenmenu .menu ul li a:hover {
	color: #fff;
}
.cp_fullscreenmenu .menu ul li:hover {

}



/*クリックしたらメニューが開閉の動作*/
.cp_fullscreenmenu .menuEffects {
	visibility: hidden;
	transition: opacity 0.5s, visibility 0.5s;
	opacity: 0;
}
.cp_fullscreenmenu .menuEffects ul {
	transition: all 0.5s;
	transform: translateY(0%);
}
.cp_fullscreenmenu #menuToggle:checked ~ .menuEffects {
	visibility: visible;
	transition: opacity 0.5s;
	opacity: 1;
}
.cp_fullscreenmenu #menuToggle:checked ~ .menuEffects ul {
	opacity: 1;
}
.cp_fullscreenmenu #menuToggle:checked ~ .hamburger .open {
	background-color: transparent;
}
.cp_fullscreenmenu #menuToggle:checked ~ .hamburger .open:before {
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	content: '';
	transform: rotate(45deg);
	background-color: #fff;
}
.cp_fullscreenmenu #menuToggle:checked ~ .hamburger .open:after {
	position: relative;
	z-index: 1;
	top: 0;
	right: 0;
	content: '';
	transform: rotate(-45deg);
	background-color: #fff;
}
.cp_fullscreenmenu #menuToggle:not(:checked) ~ .menuEffects ul {
	transform: translateY(-10%);
}
/*ハンバーガー*/
.cp_fullscreenmenu .hamburger {
	position: relative;
	top: 0px;
	right: 0px;
	display: block;
	width: 75px;
	height: 75px;
	padding: 30px 10px 24px 19px;
	cursor: pointer;
	background: #000;
}
.cp_fullscreenmenu .hamburger:hover .open:before {
	top: -11px;
}
.cp_fullscreenmenu .hamburger:hover .open:after {
	top: 7px;
}
.cp_fullscreenmenu .open,
.cp_fullscreenmenu .open:before,
.cp_fullscreenmenu .open:after {
	position: relative;
	display: block;
	width: 36px;
	height: 4px;
	border-radius: 2px;
	background-color: #fff;
	transition: all 0.3s ease;
}
.cp_fullscreenmenu .open {
	top: 7px;
	cursor: pointer;
}
.cp_fullscreenmenu .open:before {
	top: -11px;
	content: '';
	transform: rotate(0deg);
}
.cp_fullscreenmenu .open:after {
	top: 7px;
	content: '';
}



/*======================================

	wrapper layout
	
========================================*/

.common-contents-wrapper{
	width:100%;
	min-width: 100%;
	margin: 0px auto 0px auto;
	min-height: 600px;
	padding:0px 0px 0px 0px;
	text-align: center;
}



.contents{
	width:95%;
	margin: 0 auto 0px auto;
	padding:0 0 0px 0px;
}


.side-col{
	width:240px;
	margin:0 0 0 0;
	text-align: left;
	float:left;
	background: transparent;;
}

.main-col{
	width:700px;
	margin:0 0 0 0;
	padding:1px 0 0 0;
	text-align: left;
	float:right;
}

.contents1000{
	width:95%;
	margin: 60px auto 42px auto;
	text-align: left;
}

.contents960{
	width:95%;
	margin: 60px auto 42px auto;
	text-align: left;
}

.contents900{
	width:95%;
	margin: 45px auto 42px auto;
	text-align: left;
}


.content100{
	width:100%;
	margin: 60px auto 42px auto;
	text-align: center;
}

/*======================================

	figure
	
========================================*/

figure{
	width:100%;
	margin:0px 0 0px 0;
	padding:0 0 0 0;
}
figure img{
	width:100%;
	margin:0 0 0 0;
	padding:0 0 0 0;
	vertical-align: bottom;
}




/*======================================

	page-head
	
========================================*/

.page-head{
	min-width: 100%;
	height: auto;
	background: transparent;
	position: relative;
	margin: 24px 0 24px 0;
	padding: 0 0px 0 0px;
	text-align: left;
}


/*======================================

	h2
	
========================================*/
h2.pagemain-h2{
	width: 100%;
	font-size:3px;
	letter-spacing: 2px;
	text-align: center;
	margin: 0 0 30px 0;
	overflow: hidden;
}


h2.pagemain-h2 span.h2-jp{
	display: block;
	text-align: center;
	vertical-align: bottom;
	font-size:13px;
	font-weight: 500;
	margin: 15px auto 0 auto;
	padding: 0 0 0 0px;
}

h2.pagemain-h2 span.h2-underline{
	display: block;
	text-align: center;
	width: 45px;
	border-bottom: 2px solid #9fa0a0; ;
	margin: 12px auto 15px auto;
}




/*======================================

	footer
	
========================================*/
.footer-wrapper{
	width:100%;
	min-width: 100%;
	padding: 30px 0 30px 0;
	overflow: hidden;
	position: relative;
	text-align: center;
	color:#fff;
	background: #231815;
}



/*======================================

	footer
	
========================================*/


.footer{
	width:90%;
	text-align: left;
	margin: 0 auto 0 auto;
	display:flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.footer-left{
	width:100%;
	text-align: left;
	margin: 0 0 0 0;
	display:flex;
}
.footer-right{
	width:100%;
	text-align: center;
	margin: 0 0 0 0;
}

.footer-logo{
	margin: 18px 0 18px 0;
	padding: 0 12px 0 12px;
	width:100%;
	height: auto;
}

.footer-logo img{
	width:116px;
}
.footer-menu{
	margin: 30px 0 0 0;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	border-top:0px solid #fff;
	border-left:0px solid #fff;
}


.footer-menu a{
	display: inline-block;
	line-height: 1;
	font-size: 14px;
	padding: 0 12px 0 12px;
	margin: 0 0 18px 0;
	border-right:1px solid #fff;
	color:#fff;
}

.footer-menu a.footer-menu-last{
	border-right:0px solid #fff;
}

.footer-menu a:hover{
	opacity: 0.7;
}

.copyright{
	width:90%;
	font-size: 12px;
	color:#fff;
	margin: 21px auto 12px auto;
	padding: 0 12px 0 12px;
	text-align: left;
}







}/*//end  max-width: 480px ///////////////////////*/







@media only screen and (min-width: 481px) {



body.page-body {
	margin: 0px auto 0px auto;
	padding: 0px 0px 0 0px;
	text-align : center ;
background: #f7f8f8 url("../i/body_bg.png") no-repeat left top;

}


/*======================================

	humberger
	
========================================*/
.mobile-nav-wrapper {
display: none;
z-index: 99;
}



/*======================================

	header
	
========================================*/


header.header-top{
	position: relative;
	width:100%;
	min-width:1000px;
	height: 100px;
	border-top: 0px solid #000;
	top: 0;
	z-index: 50;
	padding: 0 0px 0 0px;
	position: relative;
	overflow: hidden;
	background: transparent;;
	display: flex;
	justify-content: space-between;
	position: absolute;
	background-color:rgba(255,255,255,0.8);
	top:0;
	left: 0;
}


header.header{
	position: relative;
	width:100%;
	min-width:1000px;
	height: 100px;
	border-top: 0px solid #000;
	top: 0;
	z-index: 50;
	padding: 0 0px 0 0px;
	position: relative;
	overflow: hidden;
	background: transparent;;
	display: flex;
	justify-content: space-between;
}


.header-left{
	width:350px;
	min-width: 250px;
	text-align: left;
	padding: 0 0 0 45px;
}
.header-right{
	width:640px;
	padding: 0px 0 0px 0;
	display: flex;
	justify-content: space-between;
}

.header-left h1{
	width:116px;
	height: auto;
	line-height: 1;
	padding: 0 0 0 0;
	margin: 27px 0 0 0;
}

.header-left h1 img{
	width:100%;
}

.header-left h1 a{
	transition: 0.5s ;
}


.header-left h1 a:hover{
	opacity: 0.8;
}

/*======================================

	humberger
	
========================================*/
.mobile-nav-wrapper {
display: block;
z-index: 99;
}



input {
  display: none;
}
.cp_fullscreenmenu {
	position: fixed;
	z-index: 99;
	top: 0;
	right: 0;
}
/*menuコンテンツ*/
.cp_fullscreenmenu .menu {
	position: fixed;
	top: 0px;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-image: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(33,33,33,0.9) 100%);
}
.cp_fullscreenmenu .menu label {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 30px;
	height: 30px;
	cursor: pointer;
	background-size: 100%;
}

.menu-logo{
	position: absolute;
	top:0px;
	left: 0px;
}

.menu-header{
	width: 100%;
	border-bottom: 0px solid #fff;
	text-align: left;
	padding: 0 0 30px 75px;
	margin: 0 0 0px 0;
}

.menu-header-h3{
	margin: 0 0 0 0;
	padding: 0 0 0px 0;
}

.cp_fullscreenmenu .menu .menucont {
	width: 700px;
	position: absolute;
	top:50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.cp_fullscreenmenu .menu ul {
	border-top: 1px solid #fff;
	margin: 0px auto;
	padding: 15px 0 0 0;
	list-style: none;
	display: flex;
	width: 700px;
	justify-content: flex-start;
	flex-wrap: wrap;
	text-align: left;
}
.cp_fullscreenmenu .menu ul li,
.cp_fullscreenmenu .menu ul li a {
	transition: all 0.3s ease;
}
.cp_fullscreenmenu .menu ul li a {
	width: 350px;
	display: block;
	color: #ffffff;
	font-size: 21px;
	font-weight: 600;
	text-align: left;
	padding: 15px 0 15px 75px;
}

.cp_fullscreenmenu .menu ul li a.menu-to-home {
	width: 700px;
	display: block;
	color: #ffffff;
	font-size: 18px;
	font-weight: 600;
	text-align: left;
	padding: 15px 0 15px 75px;
}

.cp_fullscreenmenu .menu ul li a span{
	display: block;
	padding: 0px 0;
	color: #ffffff;
	font-size: 13px;
	font-weight: 400;
}


.cp_fullscreenmenu .menu ul li a:hover {
	opacity: 0.8;
}






/*クリックしたらメニューが開閉の動作*/
.cp_fullscreenmenu .menuEffects {
	visibility: hidden;
	transition: opacity 0.5s, visibility 0.5s;
	opacity: 0;
}
.cp_fullscreenmenu .menuEffects ul {
	transition: all 0.5s;
	transform: translateY(0%);
}
.cp_fullscreenmenu #menuToggle:checked ~ .menuEffects {
	visibility: visible;
	transition: opacity 0.5s;
	opacity: 1;
}
.cp_fullscreenmenu #menuToggle:checked ~ .menuEffects ul {
	opacity: 1;
}
.cp_fullscreenmenu #menuToggle:checked ~ .hamburger .open {
	background-color: transparent;
}
.cp_fullscreenmenu #menuToggle:checked ~ .hamburger .open:before {
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	content: '';
	transform: rotate(45deg);
	background-color: #fff;
}
.cp_fullscreenmenu #menuToggle:checked ~ .hamburger .open:after {
	position: relative;
	z-index: 1;
	top: 0;
	right: 0;
	content: '';
	transform: rotate(-45deg);
	background-color: #fff;
}
.cp_fullscreenmenu #menuToggle:not(:checked) ~ .menuEffects ul {
	transform: translateY(-10%);
}
/*ハンバーガー*/
.cp_fullscreenmenu .hamburger {
	position: relative;
	top: 0px;
	right: 0px;
	display: block;
	width: 100px;
	height: 100px;
	padding: 30px 10px 24px 33px;
	cursor: pointer;
	background: #000;
}
.cp_fullscreenmenu .hamburger:hover .open:before {
	top: -11px;
}
.cp_fullscreenmenu .hamburger:hover .open:after {
	top: 7px;
}
.cp_fullscreenmenu .open,
.cp_fullscreenmenu .open:before,
.cp_fullscreenmenu .open:after {
	position: relative;
	display: block;
	width: 36px;
	height: 4px;
	border-radius: 2px;
	background-color: #fff;
	transition: all 0.3s ease;
}
.cp_fullscreenmenu .open {
	top: 18px;
	cursor: pointer;
}
.cp_fullscreenmenu .open:before {
	top: -11px;
	content: '';
	transform: rotate(0deg);
}
.cp_fullscreenmenu .open:after {
	top: 7px;
	content: '';
}



/*======================================

	wrapper layout
	
========================================*/

.common-contents-wrapper{
	width:100%;
	min-width: 1040px;
	margin: 0px auto 0px auto;
	min-height: 600px;
	padding:0px 0px 0px 0px;
	text-align: center;
}



.contents{
	width:960px;
	margin: 0 auto 0px auto;
	padding:0 0 0px 0px;
}


.side-col{
	width:240px;
	margin:0 0 0 0;
	text-align: left;
	float:left;
	background: transparent;;
}

.main-col{
	width:700px;
	margin:0 0 0 0;
	padding:1px 0 0 0;
	text-align: left;
	float:right;
}

.contents1000{
	width:1000px;
	margin: 60px auto 42px auto;
	text-align: left;
}

.contents960{
	width:960px;
	margin: 60px auto 42px auto;
	text-align: left;
}

.contents900{
	width:900px;
	margin: 45px auto 42px auto;
	text-align: left;
}


.content100{
	width:100%;
	margin: 60px auto 42px auto;
	text-align: center;
}

/*======================================

	figure
	
========================================*/

figure{
	width:100%;
	margin:0px 0 0px 0;
	padding:0 0 0 0;
}
figure img{
	width:100%;
	margin:0 0 0 0;
	padding:0 0 0 0;
	vertical-align: bottom;
}




/*======================================

	page-head
	
========================================*/

.page-head{
	min-width: 1040px;
	height: auto;
	background: transparent;
	position: relative;
	margin: 36px 0 36px 0;
	padding: 0 0px 0 45px;
	background:transparent;
	text-align: left;
	background: transparent;
}


/*======================================

	h2
	
========================================*/
h2.pagemain-h2{
	font-size:3px;
	letter-spacing: 2px;
}


h2.pagemain-h2 span.h2-jp{
	display: inline-block;
	text-align: left;
	vertical-align: bottom;
	font-size:18px;
	font-weight: 500;
	margin: 0px 0 0 0px;
	padding: 0 0 0 0px;
}

h2.pagemain-h2 span.h2-underline{
	display: inline-block;
	width: 40px;
	border-bottom: 2px solid #9fa0a0; ;
	margin: 0 24px 6px 24px;
}




/*======================================

	footer
	
========================================*/
.footer-wrapper{
	width:100%;
	min-width: 1000px;
	padding: 60px 0 60px 0;
	overflow: hidden;
	position: relative;
	text-align: center;
	color:#fff;
	background: #231815;
}



/*======================================

	footer
	
========================================*/


.footer{
	width:960px;
	text-align: left;
	margin: 0 auto 0 auto;
	display:flex;
	justify-content: space-between;
}
.footer-left{
	width:200px;
	text-align: left;
	margin: 0 0 0 0;
	display:flex;
}
.footer-right{
	width:780px;
	text-align: right;
	margin: 0 0 0 0;
}

.footer-logo{
	margin: 18px 0 18px 0;
	width:116px;
	height: auto;
}

.footer-logo img{
	width:100%;
}
.footer-menu{
	margin: 30px 0 0 0;
	display: flex;
	justify-content: flex-end;
}

.footer-menu a{
	display: inline-block;
	line-height: 1;
	font-size: 14px;
	padding: 0 12px 0 12px;
	border-right:1px solid #fff;
}
.footer-menu a{
	display: inline-block;
	line-height: 1;
	font-size: 14px;
	padding: 0 12px 0 12px;
	border-right:1px solid #fff;
	color:#fff;
}

.footer-menu a.footer-menu-last{
	border-right:0px solid #fff;
}

.footer-menu a:hover{
	opacity: 0.7;
}

.copyright{
	font-size: 12px;
	color:#fff;
	margin: 36px auto 12px auto;
	padding: 0 0px;
}



}/*//end  min-width: 481px ///////////////////////*/











