@charset "utf-8";
/* ===================================================================

 file name  :class.css
 style info :クラス指定

=================================================================== */



/*
.cl-色番号　カラー
---------------------------*/

/*
.bg-色番号　背景色
---------------------------*/


/*
.txt-
---------------------------*/
.txt-msg{
	text-align: center;
	width: 20em;
	margin: 0 auto;
	border: 1px solid #f2f2f3;
	background: rgba(255,255,255,0.5);
	padding: 1em 0;
	color: #888;
}




/*
装飾
---------------------------*/
/* .has-texture　テクスチャ画像持ち
---------------------------*/
.has-texture{
	position: relative;
}
.has-texture::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: url(../../img/common/bg_dot.svg) no-repeat center center / contain;
	width: 230px;
	height: 243px;
	pointer-events: none;
}
.has-texture.has-texture-right::before{
	left: auto;
	right: 50px;
}
#main.has-texture-right::before{
	left: calc(50% + 600px - 230px);
	top: -140px;
}
@media screen and (max-width: 767px){
	.has-texture::before{
		width: 115px;
		height: 121px;
		left: -50px;
	}
	.has-texture.has-texture-right::before{
		left: auto;
		right: -40px;
	}
	#main.has-texture-right::before{
		left: auto;
		right: -40px;
		top: -70px;
	}
}

/* .has-bg 背景グレー持ち
---------------------------*/
.has-bg{
	position: relative;
}
.has-bg::before{
	content:'';
	background: #f2f2f3;
	width: 50vw;
	height: 100%;
	position: absolute;
	z-index: -1;
	top: 0;
	left: calc(50% - 470px);
	transform: translateX(-100%);
	pointer-events: none;
}
.has-bg.has-bg-right::before{
	left: auto;
	right: calc(50% - 470px);
	transform: translateX(100%);
}
@media screen and (max-width: 767px){
	.has-bg::before{
		content: none;
	}
}

/* .has-border　下線持ち
---------------------------*/
.has-border{
	display: inline-block;
	position: relative;
	line-height: 1.3;
}
.has-border::after{
	content: '';
	width: calc(100% + 1em);
	left: -0.5em;
	height: 1em;
	background: #FFF;
	position: absolute;
	bottom: -0.69em;
	border-top: 1px solid #000;
}
.ja .has-border::after{
	width: calc(100% + 1.5em);
	left: -0.75em;
	bottom: -0.78em;
}
.has-border + span{
	position: relative;
	z-index: 1;
}

/* .has-kakko カッコ持ち
---------------------------*/
.has-kakko{
	position: relative;
}
.has-kakko::before{
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	width: 16px;
	height: 15px;
	border-right: 2px solid #000;
	border-bottom: 2px solid #000;
	transition: all ease .3s;
}
.has-kakko.left-top::before{
	left: 0;
	top: 0;
	right: auto;
	bottom: auto;
	border-right: none;
	border-bottom: none;
	border-left: 2px solid #000;
	border-top: 2px solid #000;
}
.no_touch a:hover .has-kakko::before{
	width: 32px;
	height: 30px;
}

/*
.ttl-任意名称　タイトル
---------------------------*/
.ttl-h01 {
	position: relative;
	text-align: center;
	letter-spacing: 0.1em;
	margin-bottom: 80px;
}
.ttl-h01 .en{
	font-size: 5rem;
}
.ttl-h01 .en small{
	position: relative;
	z-index: 1;
	margin-top: -0.6em;
	display: block;
	font-size: 80%;
	opacity: 0;
	transform: translateY(0.5em);
	transition: transform ease .5s 1s, opacity ease .5s 1s;
}
.ttl-h01 .ja {
	display: block;
	font-size: 2rem;
	letter-spacing: 0.2em;
}
.ttl-h01:not(.ja) .ja{
	transform: translateY(-0.5em);
	opacity: 0;
	transition: transform ease .5s 1s, opacity ease .5s 1s;
}
.ttl-h01.ja .ja {
	font-size: 3.2rem;
	letter-spacing: 0.1em;
}
.ttl-h01.ja{
	margin-bottom: 125px;
	position: relative;
}
.ttl-h01.ja::after{
	content: '';
	width: 1px;
	height: 65px;
	background: #bfbfbf;
	position: absolute;
	bottom: -90px;
	left: 50%;
	transform-origin: left top;
	transition: transform ease .5s 1.2s;
	transform: scaleY(0);
}
.ttl-h01.ja.sc-show::after{
	transform: scaleY(1);
}
.ttl-h01.ja .has-border span,
.ttl-h01 .en .has-border span,
.ttl-h01 .en.has-border span{
	display: inline-block;
	transform: translateY(0.9em);
	transition-property: opacity,transform ;
	transition-duration: .6s;
	transition-timing-function: ease-out;
	opacity: 0;
}
.ttl-h01.ja .has-border::after,
.ttl-h01 .en .has-border::after,
.ttl-h01 .en.has-border::after{
	transition: ease-out all .8s;
	transform: scaleX(0);
}
.ttl-h01.sc-show .en small{
	opacity: 1;
	transform: translateY(0);
}
.ttl-h01.ja.sc-show .has-border::after,
.ttl-h01.sc-show .en .has-border::after,
.ttl-h01.sc-show .en.has-border::after{
	transform: scaleX(1);
}
.ttl-h01.ja.sc-show .has-border span,
.ttl-h01.sc-show .en .has-border span,
.ttl-h01.sc-show .en.has-border span{
	opacity: 1;
	transform: translateY(0);
}
.ttl-h01.sc-show:not(.ja) .ja{
	opacity: 1;
	transform: translateY(0);
}

@media screen and (max-width: 767px){
	.ttl-h01 {
		margin-bottom: 40px;
	}
	.ttl-h01 .en {
		font-size: 3.5rem;
	}
	.ttl-h01 .ja {
		font-size: 1.5rem;
	}
	.ttl-h01.ja .ja {
		font-size: 2.7rem;
	}
	.ttl-h01.ja{
		margin-bottom: 80px;
	}
	.ttl-h01.ja::after{
		height: 50px;
		bottom: -60px;
	}
}
@media screen and (max-width: 374px){
	.ttl-h01 .en {
		font-size: 4rem;
	}
	.ttl-h01.ja .ja {
		font-size: 2.5rem;
	}
}


.ttl-h02{
	margin-bottom: 30px;
	padding: 16px 30px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	line-height: 1.3;
}
.ttl-h02 .en{
	font-size: 6.2rem;
	font-weight: 600;
}
.ttl-h02 .ja {
	margin-left: 36px;
	display: inline-block;
	font-size: 2rem;
	font-size: 700;
	letter-spacing: 0.2em;
	transform: translateX(-0.4em);
	opacity: 0;
	transition: transform ease .5s .6s, opacity ease .5s .6s;
}
.ttl-h02 .en span{
	display: inline-block;
	transform: translateX(0.5em);
	transition-property: opacity,transform ;
	transition-duration: .6s;
	transition-timing-function: ease-out;
	opacity: 0;
}
.ttl-h02.sc-show .en span,
.ttl-h02.sc-show .ja{
	opacity: 1;
	transform: translateX(0);
}
@media screen and (max-width: 767px){
	.ttl-h02{
		display: block;
		padding: 0px 10px;
	}
	.ttl-h02 .en {
		font-size: 4.5rem;
	}
	.ttl-h02 .ja {
		display: block;
		margin-left: 0;
		font-size: 1.5rem;
	}
	.ttl-h02.has-kakko::before{
		width: 9px;
		height: 9px;
		border-width: 1px;
	}
}
@media screen and (max-width: 374px){
	.ttl-h02 .en {
		font-size: 3.8rem;
	}
}

/*
.btn-任意名称　ボタン
---------------------------*/
.btn-contact a { background: #cf1d36; }
.btn-request a { background: #1b2d5a; }
.btn-contact a::after{background: #e8112f;}
.btn-request a::after{background: #233f86;}


.btn-primary{
	width: 100%;
	max-width: 425px;
	margin: 0 auto;
}
.btn-primary.small{
	max-width: 250px;
}
.btn-primary a{
	display: block;
	position: relative;
	padding: 1em 0;
	text-align: center;
	border: 1px solid #000;
	border-radius: 40px;
	font-size: 1.8rem;
	color: #000;
	letter-spacing: 0.1em;
}
.btn-primary .animation_inner{border-radius: 40px;}
.btn-primary.green a{
	padding-right: 5px;
	border-color: #3a7776;
	color: #3a7776;
}
.btn-primary.black a{
	background: #2e2e2e;
	border-color: #2e2e2e;
	color: #FFF;
}
.btn-primary.gray a{
	background: #dfdfdf;
}
.btn-primary.small a{
	padding: 0.6em 0;
}
.btn-primary a::after{
	content: '';
	width: 23px;
	height: 5px;
	background: url(../../img/common/ico_arrow.svg) no-repeat center center / contain;
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	transition: right ease .3s;
}
.btn-primary.green a::after{
	background-image: url(../../img/common/ico_arrow_green.svg);
}
.btn-primary.black a::after{
	background-image: url(../../img/common/ico_arrow_white.svg);
}
.no_touch .btn-primary a:hover{
	background: #333;
	color: #FFF;
}
.no_touch .btn-primary a:hover::after {
	right: 40px;
	background-image: url(../../img/common/ico_arrow_white.svg);
}
.no_touch .btn-primary.green a:hover{
	background: #3a7776;
	color: #FFF;
}
.no_touch .btn-primary.green a:hover::after {
	background-image: url(../../img/common/ico_arrow_white.svg);
}
.no_touch .btn-primary.black a:hover{
	background: #FFF;
	color: #000;
}
.no_touch .btn-primary.black a:hover::after {
	background-image: url(../../img/common/ico_arrow.svg);
}


@media screen and (max-width: 767px){
	.btn-primary a{
		padding: 0.8em 0;
		font-size: 1.4rem;
	}
	.btn-primary a::after,
	.no_touch .btn-primary a:hover::after{
		width: 16px;
		height: 4px;
		right: 20px;
	}
}
@media screen and (max-width: 479px){
	.btn-primary.black a::after,
	.no_touch .btn-primary.black a:hover::after,
	.btn-primary.green a::after,
	.no_touch .btn-primary.green a:hover::after{
		right: 12px;
	}
}

/*
 * .txt-shadow
 * テキスト　シャドウをつける
 *----------------------------------------------------------- */
.txt-shadow{
	text-shadow: 0 0 3px rgba(255,255,255,0.5),
					1px 0 3px rgba(255,255,255,0.5),
					0 1px 3px rgba(255,255,255,0.5),
					-1px 0 3px rgba(255,255,255,0.5),
					0 -1px 3px rgba(255,255,255,0.5),
					0 0 5px rgba(255,255,255,0.5);
}
.txt-shadow-wh{
	color: #FFF;
	text-shadow: 0 0 3px rgba(0,0,0,0.5),
					1px 0 3px rgba(0,0,0,0.5),
					0 1px 3px rgba(0,0,0,0.5),
					-1px 0 3px rgba(0,0,0,0.5),
					0 -1px 3px rgba(0,0,0,0.5),
					0 0 5px rgba(0,0,0,0.5);
}





/*
 * .eventlist
 * イベントリスト
 *----------------------------------------------------------- */
.eventlist:not(.swiper) ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 -37px;
}
.eventlist:not(.swiper) ul li {
	width: 350px;
	margin: 0 37px;
}
.eventlist ul li a {
	display: block;
}
.eventlist ul li a figure {
	position: relative;
}
.eventlist ul li a figure::before{
	content:'';
	display: block;
	width: 100%;
	padding-bottom: 74.8148%;
}
.eventlist ul li a figure::after{
	content:'';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(255,255,255,0.4);
	opacity: 0;
	transform-origin: left top;
	transform:scaleX(0);
	transition: all ease .3s;
}
.eventlist ul li a figure img {
	display: none;
}
.eventlist ul li a .notes {
	padding-bottom: 20px;
	text-align: center;
}
.eventlist ul li a .notes h4 {
	margin-top: 0.8em;
	color: #000;
	font-size: 1.8rem;
}
.eventlist ul li a .notes p {
	margin-top: 1em;
	font-size: 1.4rem;
	color: #757575;
}
.no_touch .eventlist ul li a:hover figure::after{
	transform: scaleX(1);
	opacity: 1;
}
@media screen and (max-width: 767px){
	.eventlist:not(.swiper) ul {
		display: block;
		margin: 0;
	}
	.eventlist:not(.swiper) ul::after{
		display: none;
	}
	.eventlist:not(.swiper) ul li {
		width: 100%;
		margin: 0 0 40px;
	}
	.eventlist ul li a .notes {
		padding-bottom: 2px;
	}
	.eventlist ul li a .notes p {
		padding-right: 10px;
	}
	.eventlist:not(.swiper) ul li:last-child{
		margin-bottom: 0;
	}
}


/*
 * .has-dropmenu
 * ドロップメニュー
 *----------------------------------------------------------- */
.has-dropmenu{
	position: relative;
}
.has-dropmenu ul{
	position: absolute;
	width: 100%;
	max-height: 0;
	overflow: hidden;
	transition: all ease .3s;
	pointer-events: none;
}
.has-dropmenu.open ul{
	max-height: 100px;
	pointer-events: auto;
}




/*
 * .panel-wrap
 * タブパネル
 *----------------------------------------------------------- */
.panel-wrap .tabbtn{
	margin-bottom: 75px;
	border-bottom: 1px solid #000000;
	display: flex;
	justify-content: center;
}
.panel-wrap .tabbtn li{
	width: 100%;
	max-width: 360px;
	margin: 0 10px;
	border-top: 1px solid #000000;
	border-right: 1px solid #000000;
	border-left: 1px solid #000000;
}
.panel-wrap .tabbtn li a{
	background: #FFF;
	display: block;
	padding: 0.8em 0;
	font-size: 1.9rem;
	text-align: center;
	color: #000;
	position: relative;
	overflow: hidden;
}
.no_touch .panel-wrap .tabbtn li a:hover,
.panel-wrap .tabbtn li.current a{
	background: #2e2e2e;
	color: #FFF;
}
.panel-wrap .tabbtn li a .has-border::after{
	height: 0.95em;
	transition: all ease .3s;
}
.no_touch .panel-wrap .tabbtn li a:hover .has-border::after,
.panel-wrap .tabbtn li.current a .has-border::after{
	border-color: #FFF;
	background: #2e2e2e;
	opacity: 0.5;
}
.panel-wrap .tabbtn li a br{
	display: none;
}
.panel-wrap .panels{
	position: relative;
}
.panel-wrap .panels .panel{
	width: 100%;
	pointer-events: none;
	opacity: 0;
	position: absolute !important;
	top: 0;
	z-index: -1;
	transition: opacity ease .5s .2s;
}
.panel-wrap .panels .panel.show{
	position: relative !important;
	opacity: 1;
	pointer-events: auto;
	z-index: 1;
	transition-delay: 0;
}
@media screen and (max-width: 767px){
	.panel-wrap .tabbtn{
		padding: 0 10px;
		margin-bottom: 50px;
	}
	.panel-wrap .tabbtn li{
		max-width: 200px;
		width: calc(50% - 10px);
		margin: 0 1%;
	}
	.panel-wrap .tabbtn li a{
		padding: 0.6em 0;
		font-size: 1.4rem;
	}
}
@media screen and (max-width: 480px){
.panel-wrap .tabbtn li a br{
	display: block;
}
}
@media screen and (max-width: 374px){
	.panel-wrap .tabbtn{
		padding: 0 5px;
	}
}


/*
 * .loader01
 * ローダー
 *----------------------------------------------------------- */
.loader01{
	position: absolute;
	left:50%;
	top:50%;
	z-index: 88888;
	display: block;
	float: left;
	width: 50px;
	height: 50px;
	margin: -25px 0 0 -25px;
	border-radius: 50%;
	border: 1px solid #aaa;
	transform-origin: center center;
	animation: spinner 1.2s linear infinite;
	pointer-events: none;
	transition:opacity ease .5s;
  z-index: 9000;
  pointer-events: none;
}
.loaded .loader01{
	opacity: 0;
}
.loader01:before,
.loader01:after{
  content: '';
	position: absolute;
  top: 5%;
  left: 5%;
  display: block;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #666;
  padding: 8px;
}
.loader01:after{
  border-top-color: transparent;
  border-bottom-color: #666;
}
@media screen and (max-width: 767px) {
	.loader01{
		top:calc(50% - 20px);
		width: 30px;
		height: 30px;
		margin: -15px 0 0 -15px;
		border-width: 1px;
	}
	.loader01:before,
	.loader01:after{
	  padding: 6px;
	}
}
@keyframes spinner {
  0% {transform: rotate(0);}
  100% {transform: rotate(360deg);}
}


/*
.swiper-ccnavigations
---------------------------*/
.swiper-ccnavigations{
	opacity: 0;
	pointer-events: none;
	display: flex;
	justify-content: center;
	margin-top: 45px;
	transition: opacity ease .5s;
}
.swiper-container-initialized + .swiper-ccnavigations,
.swiper-container-initialized .swiper-ccnavigations{
	pointer-events: auto;
	opacity: 1;
}
.swiper-ccnavigations .swiper-ccpagination{
	margin-top: 18px;
	padding: 0 12px;
}
.swiper-ccnavigations .swiper-ccpagination .swiper-pagination-bullet{
	margin: 0 12px !important;
	background: #000 !important;
	opacity: 0.2;
	transition: opacity ease .3s;
}
.no_touch .swiper-ccnavigations .swiper-ccpagination .swiper-pagination-bullet:hover,
.swiper-ccnavigations .swiper-ccpagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
	opacity: 1;
}
.swiper-ccnavigations .swiper-ccbutton-prev,
.swiper-ccnavigations .swiper-ccbutton-next{
	cursor: pointer;
	transition: opacity ease .3s;
}
.no_touch .swiper-ccnavigations .swiper-ccbutton-prev:hover,
.no_touch .swiper-ccnavigations .swiper-ccbutton-next:hover{
	opacity: 0.5;
}
.noSlidePC + .swiper-ccnavigations,
.noSlidePC .swiper-ccnavigations{
	display: none;
}
@media screen and (max-width: 767px){
	.swiper .swiper-ccnavigations{
		display: flex !important;
	}
	.swiper.noSlideSP .swiper-ccnavigations,
	.swiper .noSlideSP + .swiper-ccnavigations{
		display: none !important;
	}
	.swiper-ccnavigations{
		margin-top: 22px;
	}
	.swiper-ccnavigations .swiper-ccpagination{
		text-align: center;
		margin-top: 9px;
	}
	.swiper-ccnavigations .swiper-ccbutton-prev,
	.swiper-ccnavigations .swiper-ccbutton-next{
		width: 42px;
	}

}



/*
	animation-effect_light-stream
	<p class="animation-effect_light-stream">光を走らせる</p>
 *----------------------------------------------------------- */
.animation-effect_light-stream .animation_inner{
	display: block;
	position: relative;
	z-index: 2;
	overflow: hidden;
}
.animation-effect_light-stream .animation_inner::after {
	content: "";
	height: 300%;
	width: 100%;
	left: -100%;
	top: -100%;
	background: linear-gradient(45deg, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 27%,rgba(255,255,255,0.20) 39%,rgba(255,255,255,0.7) 57%,rgba(255,255,255,0) 73%,rgba(255,255,255,0) 100%);
	position: absolute;
	pointer-events: none;
	z-index: 1;
	-webkit-animation: effect_light-stream-anim 3s cubic-bezier(.17,.67,.74,.95) infinite;
	animation: effect_light-stream-anim 3s cubic-bezier(.17,.67,.74,.95) infinite;
}
@-webkit-keyframes effect_light-stream-anim {
	0% {left:-100%;}
	80% {left:-100%;}
	100% {left:120%;}
}
@keyframes effect_light-stream-anim {
	0% {left:-100%;}
	80% {left:-100%;}
	100% {left:120%;}
}