@charset "utf-8";
/* -----------------------------------------------------------------------
base setting
------------------------------------------------------------------------- */

body{
	background-color:#000;
	font-size:0.875em;
	color:#333333;
	font-family: "dnp-shuei-mincho-pr6",serif;
	font-weight: 400;
	font-style: normal;
	scroll-behavior: smooth;
}

/* font-size:12px */

a{ color:#fff;transition: 0.6s;text-decoration: none;}
a:hover{color:#cfb8b8; text-decoration:none;}

p{font-family: "dnp-shuei-mincho-pr6", sans-serif;
font-weight: 600;
font-style: normal;line-height: 2}

/*for Tablet*/
@media only screen and (min-width : 768px) and (max-width : 959px){
	body{font-size:12px;}
}

/*for SP*/
@media only screen and (max-width: 767px) {
	html{font-size:10px;}
	body{font-size:1.4rem;}
}

/* -----------------------------------------------------------------------
header
------------------------------------------------------------------------- */


/*--logo--*/

#hdrOuter{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: calc(30 / 1920 * 100vw);
	position: relative;
	z-index: 1000;
}

#hdrOuter #hdrLogo{
	width:calc(151 / 1920 * 100vw);
}
	
#hdrOuter #hdrLogo img{
	width: 100%;
}


.header-r{
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}



/*HeightMinというクラス名がついたら高さを小さく、上部固定に*/
#header.HeightMin{
  position: fixed;
    z-index: 999;/*最前面へ*/
  animation: DownAnime 0.5s forwards;
	top:-100px;
	background: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0));
	width: 100%;
}

@keyframes DownAnime{
  from {
    opacity: 0;
  transform: translateY(-170px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}


#header.HeightMin #hdrOuter{
padding: 1% 0;
}


#header.HeightMin #hdrOuter #hdrLogo{
	width: calc(60 / 1920 * 100vw);
}

/*for SP*/
@media only screen and (max-width: 767px) {


	
}

/* -----------------------------------------------------------------------
Language button
------------------------------------------------------------------------- */


.trp_language_switcher_shortcode{
	margin-left:60px;
	width: 160px!important;
	position: relative;
	right: 100px;
}


.trp-language-switcher{

}

.trp-language-switcher > div{
	width: 160px!important;
 	 background-repeat: no-repeat;
	 background-color: transparent;
	border: 2px solid #fff;
		position: relative;
}



.trp-language-switcher > div > a{
	color: #fff;
	transition: 0.6s;
}

.trp-language-switcher > div > a::before{
	content: url(../images/earth.png);
  transform: scale(0.15);
  position:absolute;
  top: -37px;
  left: -35px;
}



.trp-language-switcher .trp-ls-shortcode-current-language:hover{

}

.trp-language-switcher:focus .trp-ls-shortcode-language, .trp-language-switcher:hover .trp-ls-shortcode-language{
	padding: 3px 13px;
	background:#444;
}

.trp-language-switcher > div > a:hover{
	background: none;
	border-radius: 0;
}






/* gNav
--------------------------------------------------------*/
#g-nav{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
  z-index: -1;
  opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
  top:0;
  width:100%;
 background: url(../images/bg-1.png) repeat;
    /*動き*/
  transition:0.6s;
}


.nav_logo{
	width:calc(151 / 1920 * 100vw);
	padding-top: calc(30 / 1920 * 100vw);
	position: absolute;
	left:calc(200 / 1920 * 100vw);
	top:calc(30 / 1920 * 100vw);
	opacity: 0;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
  opacity: 1;
  z-index:999;
	width: 100%;
	top:0;
	right: 0;
	position: fixed;
	    height: 100vh;/*ナビの高さ*/
	 transition:0.6s;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}


.panelactive .nav_logo{
	opacity: 1;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
	width: 100%;
    transform: translate(-50%,-50%);
}

#g-nav.panelactive ul {
    display: block;
}

/*リストのレイアウト設定*/

#g-nav li{
  list-style: none;
    text-align: center; 
	width: 100%;
}

#g-nav li a{
  color: #fff;
  text-decoration: none;
  display: block;
  text-transform: uppercase;
	font-family: "dnp-shuei-mincho-pr6", sans-serif;
	font-weight: 400;
	margin-bottom: calc(40 / 1920 * 100vw);
	font-size: calc(40 / 1920 * 100vw);
	transition: 0.6s;
}


#g-nav li a:hover{
	color:#a10d0d;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1{
 position:absolute;
    z-index: 9999;/*ボタンを最前面に*/
  cursor: pointer;
    width: 100px;
    height:100px;
	right:-40px;
	top:0px;
}
  
/*×に変化*/  
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
  background-color: #fff;
    width: 45%;
  }

.openbtn1 span:nth-of-type(1) {
  top:15px; 
}

.openbtn1 span:nth-of-type(2) {
  top:23px;
}

.openbtn1 span:nth-of-type(3) {
  top:31px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
}


.openbtn1.active span:nth-of-type(2){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
}

.openbtn1.active {
	position:fixed;
	right: calc(149 / 1920 * 100vw);
	top: calc(85 / 1920 * 100vw);
}


/* video */
.video{
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden!important;
  z-index: -1;
}

.video::after{
  content: '';
  width: 100%;
  height: 100%;
  background-color: #000;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.5;
}

.video video{
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
	overflow: hidden;
}


.kv{
  height: 100vh;
}


/* -----------------------------------------------------------------------
TOP 
------------------------------------------------------------------------- */

.home article section h2{
	display: none;
}


section.about{
	background: url(../images/wave.png) no-repeat,url(../images/bg-1.png) repeat;
	background-size: contain,contain;
	background-position:bottom,center;
	padding: calc(200 / 1920 * 100vw) 0 calc(200 / 1920 * 100vw) 0 ;
}

.about_inner{
	width: 	calc(1192 / 1920 * 100vw);
	margin-left:calc(328 / 1920 * 100vw);
		position: relative;
}

.slideinBottom {
  animation: slideinBottom 2s;
}

@keyframes slideinBottom {
  0% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0);
  }
}


.about_logo{
	width: calc(240 / 1920 * 100vw);
	position: absolute;
	top:calc(100 / 1920 * 100vw);
	right:calc(172 / 1920 * 100vw);
}

.translatepress-en_US .about_logo{
	right:calc(100 / 1920 * 100vw);
}


.slidein{
  transition: 1s cubic-bezier(0.75, 0, 0.25, 1);
}


.slide_right{
	transform: translateX(calc(50vw + 50%));
}


.show{
	transform: translateX(0);
}


/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(-30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}


/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    transform: translateX(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}


.more_button{
	border:1px solid #fff;
	color:#fff;
	font-weight: 300;
	font-size: calc(22 / 1920 * 100vw);
	transition: 0.8s;
	padding: calc(30 / 1920 * 100vw) calc(60 / 1920 * 100vw);
	display:block;
	width: calc(280 / 1920 * 100vw) ;
	text-align: center;
	text-decoration: none;
}

.more_button:hover{
	background: #fff;
	color:#000;
}


.home.page section{
	width: 100%;
}


.wp-image-17128{
	margin-top: calc(-20 / 1920 * 100vw);
}




section.news{
	padding: calc(100 / 1920 * 100vw) 0 calc(200 / 1920 * 100vw) 0 ;
	background: -webkit-linear-gradient(#581414 0%, #0d0303 100%);
	background: -o-linear-gradient(#581414 0%, #0d0303 100%);
	background: linear-gradient(#581414 0%, #0d0303 100%);
	position: relative;

}

.news .wp-block-group__inner-container{
	padding: 0 calc(65 / 1920 * 100vw)
}


.news .ub-block-post-grid.preserve-post-image-aspect-ratio .ub-post-grid-items article .ub-block-post-grid-image img{
	height: 100%;
}

.ub-block-post-grid .is-grid{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: calc(100 / 1920 * 100vw)
}

.ub-block-post-grid .is-grid div{
	width:  calc(280 / 1920 * 100vw);
}

.ub-block-post-grid-image{
	 width: calc(280 / 1920 * 100vw);
  	height: calc(220 / 1920 * 100vw);
}


.ub-block-post-grid-image img{
	width: 100%;
	margin-bottom: calc(30 / 1920 * 100vw);
	transition: 0.6s;
  height: 100%;
  object-fit: cover;
}

.ub-block-post-grid-image img:hover{
	opacity: 0.6;
}

.ub-block-post-grid .ub-block-post-grid-date{
	color:#fff;
}

.ub-block-post-grid header .ub-block-post-grid-title a:hover{
	color:#cfb8b8!important;
}

.ub-block-post-grid-title a{
	display: block;
}

.ub-block-post-grid-date{
	margin-bottom: 10px;
}

.ub-block-post-grid .ub-block-post-grid-date:hover{
	color: #fff;
}


.news_button{
	text-align: center;
}

.news .more_button{
	text-align: center;
	margin:0 auto calc(100 / 1920 * 100vw);;
}

.sns_box{
	width: calc(798 / 1920 * 100vw);
	margin:0 auto;
	display: flex;
	justify-content: space-between;
}


.sns_inner{
	width: calc(190 / 1920 * 100vw);
}

.sns_inner.ytb{
	width: calc(260 / 1920 * 100vw);
}

.ytb .sns_button{
	width: calc(240 / 1920 * 100vw);
}


.ytb .sns_button a{
	width: calc(60 / 1920 * 100vw);
}

.sns_button{
	display: flex;
	justify-content: space-between;
	margin-top:calc(20 / 1920 * 100vw);
	width: calc(145 / 1920 * 100vw);
}

.sns_button a{
	width: calc(35 / 1920 * 100vw);
	margin:0 auto;
	transition: 0.6s;
}


.sns_button a:hover{
	opacity: 0.6;
}


.cloud{
	position:absolute;
	left:calc(-10/ 1920 * 100vw);
	bottom:calc(330/ 1920 * 100vw);
	width: calc(671 / 1920 * 100vw);
	height: calc(250 / 1920 * 100vw);
	opacity: 0.5;
	z-index: 1;
}

.cloud2{
	position:absolute;
	transform:rotate(180deg);
	right:0;
	margin-right:calc(-390/ 1920 * 100vw);
	bottom:calc(230/ 1920 * 100vw);
	width: calc(671 / 1920 * 100vw);
	height: calc(250 / 1920 * 100vw);
	opacity: 0.5;
	z-index: 1;

}


.cloud.displayed{
  animation: fadeInLeft 5s forwards;
}
.cloud2.displayed{
  animation: fadeInRight 5s forwards;
}

@keyframes fadeInLeft{
  0%{transform: translateX(-100px);}
100%{transform: translateX(0);}
}
@keyframes fadeInRight{
  0%{transform: translateX(100px);}
100%{transform: translateX(0);}
}



.kengido_area{
	background: url(../images/bg-1.png) repeat;
	padding: calc(100 / 1920 * 100vw) 0;
}


.kengido-inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 calc(60 / 1920 * 100vw);
}


.post .kengido-inner  h3{
	margin-bottom: calc(50 / 1920 * 100vw)
}

.kengido-text{
	width: calc(600 / 1920 * 100vw);
}

.kengido-logo{
	width: calc(120 / 1920 * 100vw);
	z-index: 2;
}

/* -----------------------------------------------------------------------
container wrap
------------------------------------------------------------------------- */
#container{
	position: relative;
	overflow: hidden;
}



#container > #contents,
#container > #side{
}

/* -----------------------------------------------------------------------
topicPath
------------------------------------------------------------------------- */

#topicPath{
	padding:10px 15px 0;
	text-align:left;
}

/* -----------------------------------------------------------------------
contents
------------------------------------------------------------------------- */

article section{

}

article section h2{
	background-color:#666;
	color:#fff;
	padding:15px;
}

article section h2 a{
	color:#fff;
	text-decoration:none;
}

/*--post--*/
.post{
	
}

/* module parts */

/*--title--*/
.post h3{
	font-family: "ltc-bodoni-175", "dnp-shuei-mincho-pr6", serif;
	font-size: calc(50 / 1920 * 100vw);
	color: #fff;
	font-weight:bold;
	margin-bottom:calc(100 / 1920 * 100vw);
	display: flex;
  	align-items: center; /* 垂直中心 */
  	justify-content: left; /* 水平中心 */
	line-height: 1.5;
}

.post h3::after{
	border-top: 1px solid;
  content: "";
  width: 3em; /* 線の長さ */
	margin-left:1em;
}

.kasou_page  h3{
	font-size: calc(32 / 1920 * 100vw);
	margin-bottom:calc(147 / 1920 * 100vw);
}


.post h4{
	font-family: "dnp-shuei-mincho-pr6", serif;
	color:#fff;
	font-weight:100;
	font-size: calc(22 / 1920 * 100vw);
	margin-bottom:15px;
	line-height: 1.5;
}


.kasou_page{
	margin-bottom: calc(200 / 1920 * 100vw);
}

.post h4 a{
	font-family: "dnp-shuei-mincho-pr6", serif;
	color:#fff!important;
	text-decoration: none!important;
	font-weight:100;
	font-size: calc(22 / 1920 * 100vw);
	margin-bottom:15px;
	line-height: 1.5;
}

.kasou_page  h4{
	margin-bottom:calc(50 / 1920 * 100vw);
}

.post h5{
	font-family: "ltc-bodoni-175","dnp-shuei-mincho-pr6", serif;
	color:#fff;
	font-size: calc(18 / 1920 * 100vw);
	font-weight: 100;
	line-height: 2;
	margin-bottom:15px;
}

.post h6{
	padding:0 0 10px;
	font-weight:bold;
	margin-bottom:15px;
}


/*--list item--*/
.post ul{
	margin-bottom:15px;
}

.post ul li{list-style-type:disc;
	margin-left:2em;
	padding-bottom:20px;
}

.post ul li.noMark{
	list-style-type:none;
}

.post ul ul li{
	list-style-type:circle;
}

/*--table --*/

.post table{
	width:100%;
	border-top:#ccc 1px solid;
	border-left:#ccc 1px solid;
}

.post table th,
.post table td{
	border-bottom:#ccc 1px solid;
	border-right:#ccc 1px solid;
	padding:8px;
	text-align:left;
}
.post table th{
	background-color:#eeeeee;
}


.post p{
	font-family: "ltc-bodoni-175", "dnp-shuei-mincho-pr6", serif;
	font-size: calc(18 / 1920 * 100vw);
	padding-bottom:calc(50 / 1920 * 100vw);
	font-weight: 600;
	line-height: 2;
	color: #fff;
	}


.translatepress-en_US .post p{
	font-size: calc(20 / 1920 * 100vw);
}




/* -----------------------------------------------------------------------
footer
------------------------------------------------------------------------- */
footer{
 background: url(../images/bg-1.png) repeat;
}


footer .pagetop{
	text-align:right;
}

footer .pagetop a{
	margin-top:-15px;
	width:auto;
	float:right;
	display:block;
	padding:0.5em 1em;
	background-color:#333;
	border-radius:10px;
	color:#fff !important;
	text-decoration:none !important;
}
footer nav{
background: linear-gradient(#511313 0%, #0d0303 100%);
padding: calc(50 / 1920 * 100vw) 0;

}
footer nav li{
	display:inline;
	margin-right:1em;
}

footer nav li a{
	font-family: "ltc-bodoni-175", serif;
	color:#fff;
	font-weight: 300;
	text-decoration: none;
	font-size: calc(18 / 1920 * 100vw)
}

footer nav li a:hover{
	color:#cfb8b8;
}

footer nav ul{
	width:  calc(1304 / 1920 * 100vw) ;
	margin:0  auto;
	display: flex;
	justify-content: space-between;
}

footer .partsFooter{
	width:  calc(120 / 1920 * 100vw) ;
	padding:calc(90 / 1920 * 100vw) 0 ;
	margin:0 auto;
}


/*リンクの形状*/
#page-top a{
  display: flex;
  justify-content:center;
  align-items:center;
  background:#942D2F;
  border-radius: 5px;
  width: 50px;
  height: 50px;
  color: #fff;
  text-align: center;
  text-transform: uppercase; 
  text-decoration: none;
  font-size:0.6rem;
  transition:all 0.3s;
}

#page-top a:hover{
  background: #777;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom:10px;
  z-index: 200;
    /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 1;
  transform: translateY(100px);
  }
}

/*for Tablet*/
@media only screen and (min-width : 768px) and (max-width : 959px){
	
	.trp-language-switcher > div > a{
		font-size: 15px;
	}
	
	.trp-language-switcher .trp-ls-shortcode-current-language::before{
		top: -38px;
	}
	
	.trp-language-switcher > div,.trp_language_switcher_shortcode,.trp-language-switcher{
		width: 140px!important;
	}
	
	.trp-language-switcher > div{
	padding: 4px 10px 3px 13px;
	}
	
	
	#header.HeightMin #hdrOuter #hdrLogo {
  	width: calc(60 / 959 * 100vw);
	}
}

/*for SP*/
@media only screen and (max-width: 767px) {
	
	#hdrOuter #hdrLogo{
		width: calc(151 / 767 * 100vw);
	}
	
	#hdrOuter,#header.HeightMin #hdrOuter{
		padding: 5% 3% 0
	}
	
	.trp-language-switcher > div > a{
		font-size: 12px;
	}
	
	.trp-language-switcher .trp-ls-shortcode-current-language::before{
		top: -40px;
	}
	
	.trp-language-switcher > div{
		background-position: calc(100% - 20px) calc(1em + -2px), calc(100% - 3px) calc(1em + 0px);
	}
	
	.openbtn1{
		width: 80px;
  		height: 80px;
		right: -20px;
 		 top: -5px;
	}
	
	.openbtn1.active{
	right: calc(-10 / 767 * 100vw);
    top: calc(60 / 767 * 100vw);
	}
	
	.HeightMin .openbtn1.active {
	right: calc(-10 / 767 * 100vw);
    top: calc(30 / 767 * 100vw);
	}

	.nav_logo {
	  width: calc(151 / 767 * 100vw);
	  padding-top: calc(30 / 767 * 100vw);
	  left: calc(50 / 767 * 100vw);
      top: calc(10 / 767 * 100vw);
  
	}
	
	#g-nav li a {
	  margin-bottom: calc(40 / 767 * 100vw);
	  font-size: calc(40 / 767 * 100vw);
	}
	
	#header.HeightMin {
	  z-index: 999;
	  background: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0));
	  width: 100%;
	}
	
	#header.HeightMin #hdrOuter #hdrLogo {
  	width: calc(70 / 767 * 100vw);
	}
	
	
	.trp-language-switcher > div,.trp_language_switcher_shortcode,.trp-language-switcher{
		width: 120px!important;
	}
	
	.video video{
		width: 100%;
	}
	
	.wp-block-group__inner-container, .wrap{
		width: 92%!important;
		margin:0 auto;
	}
	
	.about_inner{
		width: 75%;
		margin-left: 0;
	}
	
	section.about{
		padding: calc(200 / 767 * 100vw) 0 calc(200 / 767 * 100vw) 0;
	}
	
	
	.wp-image-17128 {
	  margin-top: calc(50 / 767 * 100vw);
	}
	
	.post p{
		font-size: calc(24 / 767 * 100vw);
	}
	
	.translatepress-en_US .post p{
		font-size: calc(28 / 767 * 100vw);
	}
	
	.post h3 {
  		font-size: calc(40 / 767 * 100vw);
	
	}
	
	.about_logo {
	  width: calc(150 / 767 * 100vw);
	  position: absolute;
	  top: calc(100 / 767 * 100vw);
	  right: calc(-180 / 767 * 100vw);
	}
	
	
	.translatepress-en_US .about_logo {
	  width: calc(150 / 767 * 100vw);
	  position: absolute;
	  top: calc(100 / 767 * 100vw);
	  right: calc(-180 / 767 * 100vw);
	}
	
	
	.cloud {
	  position: absolute;
	  left: calc(-10/ 767 * 100vw);
	  bottom: calc(630/ 767 * 100vw);
	  width: calc(671 / 767 * 100vw);
	  height: calc(250 / 767 * 100vw);
		z-index: 1;
	}
	
	.cloud2 {
	  position: absolute;
	  transform: rotate(180deg);
	  right: 0;
	  margin-right: calc(-390/ 767 * 100vw);
    	bottom: calc(-40/ 767 * 100vw);
	  width: calc(671 / 767 * 100vw);
	  height: calc(250 / 767 * 100vw);
		z-index: 1;
	}

	.more_button,.news .more_button{
		width: 100%;
		padding: 5%;
		display: block;
		font-size: calc(25 / 767 * 100vw);
		margin:30px 0;
		z-index: 10;
	}
	
	section.news {
  	padding: calc(100 / 767 * 100vw) 0 calc(200 / 767 * 100vw) 0;
	}
	
	.ub-block-post-grid .is-grid div {
	  width: calc(277 / 767 * 100vw);
	}
	
	
	.ub-block-post-grid .is-grid{
		flex-wrap: wrap;
	}
	
	
		.ub-block-post-grid-image{
		height: calc(220 / 767 * 100vw);
	}
	
	
	.post h4,.post h4 a{
		font-size: calc(28 / 767 * 100vw);
		margin-bottom: 0!important;
	}
	
	
	.sns_box {
	  width: 90%;
	  margin: 50px auto 0;
	  display: block;
	}
	
	.sns_inner,.sns_inner.ytb{
  	width: 70%;
	margin: 20px auto;
		text-align: center;
	}
	
	.sns_button,.ytb .sns_button{
		width: 100%;
	}
	
	.post h5 {
	  font-size: calc(30 / 767 * 100vw);
	}
	
	.sns_button a ,.ytb .sns_button a {
  	width: calc(80 / 767 * 100vw);
	}
	
	
	.kengido_area {
	  padding: calc(100 / 767 * 100vw) 0;
	}
	
	.kengido-inner{
		display: block;
	}
	
	.kengido-text{
		width: 100%;
	}
	
	.kengido-logo {
  		width: calc(120 / 767 * 100vw);
		margin:20px auto;
	}
	
	#page-top a{
		font-size: 15px;
	}
	
	
	footer nav{
		display:none;
	}
	
	footer .partsFooter {
	  width: calc(120 / 767 * 100vw);
	  padding: calc(90 / 767 * 100vw) 0;
	}
	
	
}

/* -----------------------------------------------------------------------
second page common parts
------------------------------------------------------------------------- */
/* mainTitle
--------------------------------------------------------*/
#mainTitle h2{
	font-family: "ltc-bodoni-175", "dnp-shuei-mincho-pr6", serif;
	font-weight: 100;
	font-size: calc(50 / 1920 * 100vw);
	text-align: center;
	color:#fff;
	padding: calc(130 / 1920 * 100vw) 0 calc(150 / 1920 * 100vw);
	line-height: 1.5;
}


.single #mainTitle h2{
	text-align: left;
}

.schedule-template-default #mainTitle h2{
	text-align: left;
}

.page,.single,.archive,.error404{
	background: url(../images/bg-1.png) repeat;
}


.page section,.single section,.archive section,.error404 section{
	width: calc(1320 / 1920 * 100vw);
  	margin: 0 auto;
		position: relative;
}

.member_pic{
	width: calc(350 / 1920 * 100vw)!important;
	margin-right: calc(300 / 1920 * 100vw)
}

.member_pic figure{
	width: calc(330 / 1920 * 100vw)!important;
}

.red_area .member_txt{
	width: calc(810 / 1920 * 100vw);
	margin-left: calc(150 / 1920 * 100vw);
}



.member .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column{
	flex-basis:auto;
}



.page p,.single p,.achive p{
	font-weight: 100;
}

.ko-page{
 top: calc(350/ 1920 * 100vw);
left: calc(-200/ 1920 * 100vw);
}

.centering{
	padding: calc(100 / 1920 * 100vw)  calc(180 / 1920 * 100vw);
}

.page section.red_area{
	background:  linear-gradient(#511313 0%, #0d0303 100%);
	padding: calc(100 / 1920 * 100vw) 0;
	width: 100%;
}


.kasou_page{
	z-index: 100;
	position: relative;
}

.kasou_page .cloud2{
	margin-right: calc(-290/ 1920 * 100vw);
 	 top: calc(2200/ 1920 * 100vw);
}

.bio_tab span{
	display: inline-block;
	width: 80px;
}

.bio_tab p{
	padding-bottom: 0!important;
}


.wd400{
	width:  calc(400 / 1920 * 100vw)
}

.pagination{
   margin:40px 0 0;
}
.nav-links{
   display:flex;
}
.pagination .page-numbers{
   display:inline-block;
   margin-right:20px;
   padding:15px 18px;
   color:#000;
	text-decoration: none;
   border-radius:3px;
   background:#fff;
}


.pagination .page-numbers:hover{
	background: #601013;
	color:#fff;
}

.pagination .current{
   padding:15px 18px;
   background:#601013;
   color:#fff;
}
.pagination .prev,
.pagination .next{
   background:transparent;
   box-shadow:none;
   color:#fff;
}
.pagination .dots{
   background:transparent;
   box-shadow:none;
	color:#fff;
}


.news_flex{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.news_box{
	width: 23%;
	margin-bottom: calc(50 / 1920 * 100vw)
}

.news_flex::before{
  content:"";
  display: block;
  width:23%;
  order:1;
}

.news_flex::after{
  content:"";
  display: block;
  width: 23%;
}


.news_box h4{
	margin-bottom: 10px;
	transition: 0.6s;
}


.news_box h4:hover{
	color:#e4b4b5;
}


.news_acv{
	display: flex;
	justify-content: space-between;
	margin-bottom: calc(80 / 1920 * 100vw)
}

.news_acv .more_button{
	font-size: calc(16 / 1920 * 100vw);
	width: auto;
}

.ko-acv{
	margin:calc(30 / 1920 * 100vw) auto;
	display: flex;
	justify-content: center;
}

.ko-acv .more_button{
		font-size: calc(16 / 1920 * 100vw);
}



.eyecatch img{
	height: calc(240 / 1920 * 100vw);
  object-fit: cover;
	margin-bottom: calc(20 / 1920 * 100vw)
}


.ub-expand-full .ub-hide .active{
	transition: 0.6s;
	opacity: 0;
	display: none;
	animation: fadeIn 0.3s ease-in 0s forwards;
}

.ub-expand-full .active{
	display: block;
	opacity: 1;
	transition: 0.6s;
	animation: fadeIn 0.3s ease-in 0s forwards;
}



.wp-lightbox-overlay .scrim{
	background: rgba(0,0,0,0.8)!important;
}


@keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }

  1% {
    display: block;
    opacity: 0;
  }

  100% {
    display: block;
    opacity: 1;
  }
}



.wp-block-ub-tabbed-content-tabs-content.ub-hide{
	transition: 0.6s;
	opacity: 0;
}

.wp-block-ub-tabbed-content-tab-content-wrap.active{
	opacity: 1;
	display: block;
  animation: fadeIn 0.3s ease-in 0s forwards;
}




.more_button.contact{
	width: 400px;
	margin:150px auto 0;
}


#previous_next_post{
	display: flex;
	justify-content: space-between;
	margin: 100px 0;
	color:#fff;
}

#previous_next_post a:hover{
	color:#e4b4b5;
}

#previous_next_post a{
	padding: 0 3%;
	display: block;
}

#previous_post,#arhcivie_link,#next_post{
	width: 25%;
	display: flex;
	align-items: center;
	justify-content:center;
}

#previous_post a{
	text-align: left;
}


#arhcivie_link a{
	text-align: center;
	margin: 0 auto;
}

.shedule_box{
	border-bottom:  1px solid #353535;
}


.schedule_flex{
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: calc(50 / 1920 * 100vw) 0 0;
}

.sche_thumb img{
	width: calc(140 / 1920 * 100vw);
	height: calc(140 / 1920 * 100vw);
	  object-fit: cover;
}

.sche_thumb{
	margin-right: calc(50 / 1920 * 100vw);
}

.schedule_flex h4{
	margin-bottom: 0!important;
	font-size: calc(26 / 1920 * 100vw)
}

.schedule_flex h4 a{
	transition: 0.6s;
}


.schedule_flex h4 a:hover{
	color:#e4b4b5!important;
}


/*for SP*/
@media only screen and (max-width: 767px) {

	#mainTitle h2{
		font-size: calc(50 / 767 * 100vw);
		margin-bottom: calc(50 / 767 * 100vw);
	}
	
	.kasou_page h4{
		margin-bottom: 30px!important;
	}
	
	.page section, .single section, .archive section{
		width: 92%;
	}
	
	.member_pic{
		width: 100%;
	}
	
	
	.centering{
		padding: calc(80 / 767 * 100vw) 0;
	}
	
	.kasou_page .sns_button{
		width: 60%;
		margin:30px auto;
	}
	
	.wp-lightbox-container {
	  flex-direction: inherit;
		justify-content: center;
	}
	
	
	.page section.red_area {
	  background: linear-gradient(#511313 0%, #0d0303 100%);
	  padding: calc(100 / 767 * 100vw) 0;
	}
	
	.red_area .member_txt{
		margin:0;
	}
	
	.member_pic figure,.member_pic{
		width: 80%!important;
		margin:0 auto;
	}
	
	.ko-page{
		top:calc(50 / 767 * 100vw);
	}
	
	
	.kasou_page .cloud2{
		bottom: 0px;
		position: relative;
		top:calc(100 / 767 * 100vw);
		right:calc(-400 / 767 * 100vw);
	}
	
	.more_button.contact{
		width: 100%;
	}
	
	.news_box{
		width: 48%;
	}
	
	
	.ko-acv .more_button {
  	font-size: calc(25 / 767 * 100vw);
		margin:  calc(20 / 767 * 100vw);
	}
	
	.news_acv .more_button {
  	font-size: calc(25 /767 * 100vw);
	  width: auto;
	}
	
	.news_acv .more_button, .news_acv .more_button{
		margin:10px 10px;
	}
	
	.news_acv{
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	
	.eyecatch img {
	  height: calc(240 / 767 * 100vw);
	  object-fit: cover;
	  margin-bottom: calc(20 / 767 * 100vw);
	}
	
	
	.pagination .page-numbers {
	  display: inline-block;
	  margin-right: 2%;
	  padding: 4%;
	}
	
	.nav-links{
		justify-content: center;
	}
	
	.schedule_flex{
		padding: 3% 0;
	}
	
	.schedule_flex h4{
		margin-bottom: 0!important;
		font-size: calc(30 / 767 * 100vw)
	}
	
	
	.sche_thumb .eyecatch img{
		width: calc(140 / 767 * 100vw);
		height: calc(140 / 767 * 100vw);
		object-fit: cover;
		margin-bottom: calc(20 / 767 * 100vw);
	}
	
	#previous_next_post{
		display: block;
	}
	
	#previous_post, #arhcivie_link, #next_post{
		width: 100%;
		padding: 4% 0;
	}
}
	
/* -----------------------------------------------------------------------
Contact Form 7 
------------------------------------------------------------------------- */
.wpcf7{}

.wpcf7-form-control-wrap input[type="text"],
.wpcf7-form-control-wrap input[type="email"],
.wpcf7-form-control-wrap textarea,
.wpcf7-form-control-wrap select{
   border:#fff 1px solid;
   width:100%;
   height:25px;
   padding:2%;
   margin:3px 0;
   background: none;
	color:#fff;
}
.wpcf7-form-control-wrap textarea{
    width:100%;
	 padding:2%;
	height:calc(200 / 767 * 100vw);
	background: none;
	color:#fff;
}

.wpcf7-response-output{
	color:#fff;
}


.wpcf7-form p{
	padding-bottom: 20px!important;
}

.wpcf7-form-control-wrap input[type="text"],
.wpcf7-form-control-wrap input[type="email"],
.wpcf7-form-control-wrap textarea, 
.wpcf7-form-control-wrap select{ 
   outline: none;
}

.wpcf7 input[type="submit"]{
   border:#fff 1px solid;
	width: calc(150 / 767 * 100vw);
	margin:0 auto;
   padding:20px 40px;
   cursor:pointer;
   color:#fff;
   font-weight:bold;
   background:none;
	transition: 0.6s;
	display: block;
}




.center{
	margin:0 auto;
	text-align: center;
}


.wpcf7 input[type="submit"]:hover{
	background: #fff;
	color: #000;
}


/* common parts
--------------------------------------------------------*/
strong{
	font-weight: 600;
}

.attention{color:#FF0004;}
.attention2{background-color:#FFED00;}

.section_bottom{
	margin-bottom: calc(150 / 1920 * 100vw)
}

.mr300{
	margin-right:  calc(300 / 1920 * 100vw)
}

.mb_100{
	margin-bottom: calc(100 / 1920 * 100vw)
}

.mb_100 p{
	padding-bottom: 0;
}


.grecaptcha-badge { visibility: hidden; }


.waku{border:#FF0004 1px solid; padding:10px;}


/*for SP*/
@media only screen and (max-width: 767px) {
	.section_bottom{
	margin-bottom: calc(150 / 767 * 100vw)
}
	
	.wpcf7-form-control-wrap input[type="text"], .wpcf7-form-control-wrap input[type="email"], .wpcf7-form-control-wrap select{
		padding: 5% 2%;
		border-radius: 0;
	}
	
	
	.wpcf7-form-control-wrap textarea{
		height: 200px;
		border-radius: 0;
	}
	
	.wpcf7 input[type="submit"]{
		width: 100%;
		padding: 4%;
	}
	
	
	

}

