@charset "UTF-8";
/* CSS Document */


/*Safariでヒラギノ角ゴシックをきれいに表示させるCSS*/
@font-face {
font-family: sans-serif;
src: local(HiraginoSans-W3);
font-weight: normal;
}
@font-face {
font-family: sans-serif;
src: local(HiraginoSans-W6);
font-weight: bold;
}
/*↓2017.02.14追加*/
@font-face {
font-family: 'Hiragino Kaku Gothic Pro W3';
src: local(HiraginoSans-W3);
font-weight: normal;
}
@font-face {
font-family: 'Hiragino Kaku Gothic Pro W3';
src: local(HiraginoSans-W6);
font-weight: bold;
}
/*↑2017.02.14追加*/
@font-face {
font-family: 'ヒラギノ角ゴ Pro W3';
src: local(HiraginoSans-W3);
font-weight: normal;
}
@font-face {
font-family: 'ヒラギノ角ゴ Pro W3';
src: local(HiraginoSans-W6);
font-weight: bold;
}
@font-face {
font-family: 'ヒラギノ角ゴ ProN W3';
src: local(HiraginoSans-W3);
font-weight: normal;
}
@font-face {
font-family: 'ヒラギノ角ゴ ProN W3';
src: local(HiraginoSans-W6);
font-weight: bold;
}
@font-face {
font-family: 'ＭＳ Ｐゴシック';
src: local(HiraginoSans-W3);
font-weight: normal;
}
@font-face {
font-family: 'ＭＳ Ｐゴシック';
src: local(HiraginoSans-W6);
font-weight: bold;
}
@font-face {
font-family: 'MS P Gothic';
src: local(HiraginoSans-W3);
font-weight: normal;
}
@font-face {
font-family: 'MS P Gothic';
src: local(HiraginoSans-W6);
font-weight: bold;
}
@font-face {
font-family: 'MS PGothic';
src: local(HiraginoSans-W3);
font-weight: normal;
}
@font-face {
font-family: 'MS PGothic';
src: local(HiraginoSans-W6);
font-weight: bold;
}

* {
	font-family: "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
	
}

a {
	scroll-behavior: smooth;
}




/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓　スクロールダウン　↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/


/*スクロールダウン全体の場所*/
.scrolldown2{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	bottom:0px;
	left:50%;
    z-index: 2;
}

/*Scrollテキストの描写*/
.scrolldown2 span{
    /*描画位置*/
	position: absolute;
	left:10px;
	bottom:10px;
    /*テキストの形状*/
	color: #fff;
	font-size: 1rem;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom:0;
    left:-4px;
    /*丸の形状*/
	width:12px;
	height:12px;
	border-radius: 50%;
	background:#fff;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
	animation:
		circlemove 1.6s ease-in-out infinite,
		cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
      0%{bottom:-5px;}
     100%{bottom:55px;}
 }

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
      0%{opacity:0}
     50%{opacity:1;}
    80%{opacity:0.9;}
	100%{opacity:0;}
 }

/* 線の描写 */
.scrolldown2:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom:0;
	left:0;
    /*線の形状*/
	width:3px;
	height: 65px;
	background:#fff;
}


@media screen and (max-width:990px){
	.scrolldown2{
		bottom: 20vh;
	}
}

/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑　スクロールダウン　↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/



/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓　ボタン　↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/

.event_btn{
	position: fixed;
	right: 5vw;
	bottom: 20px;
	
	width: 30%;
	max-width: 250px;
	z-index: 10;
}
.event_btn img{
	width: 100%;
}

@media screen and (max-width:990px){
	.event_btn{
		right: 2vw;
	}
	
}

.kansokusu{
	width: 500px;
	max-width: 90%;
	margin: 50px auto 0 auto;
}
.kansokusu img{
	width: 100%;
}

.button-fill {
	display: block;
	padding: 0.7em 0;
	color: #fff;
	background: none;
	
	font-size: 16px;
	text-align: center;
	letter-spacing: 1px;
	
	width: 300px;
	margin: 0 auto;
	
	user-select: none;
	border: 1px #fff solid;
	box-shadow: inset #000 0 0 0 0;
	transition: 0.7s;
}

.button-fill:hover {
	color: #000;
	box-shadow: inset #fff 0 0 0 2em;
}

/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑　ボタン　↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/



/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓　header　↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/

header{
	display: flex;
	justify-content: space-between;
	padding: 20px 0 0 0;
}
.header_DC_logo{
	display: block;
	width: 7.8vw;
	min-width: 150px;
	max-width: 200px;
	height: auto;
}
.header_DC_logo img{
	width: 100%;
}

.header_sns{
	display: flex;
	justify-content: space-between;
	width: 100px;
	
}
.header_sns a{
	width: 40px;
}
.header_sns a img{
	width: 100%;
}

/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑　header　↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/




/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓　SNSシェアボタン　↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/

.SNSsharebtn{
	margin: 100px auto 0px auto;
	text-align: center;
}
.SNSsharebtn h5{
	font-family: 'MS PGothic';
	font-weight: bold;
	letter-spacing: 2px;
	
	margin: 0px auto 20px auto;
}
.SNSsharebtn ul{
	display: grid;
	grid-template-columns: repeat(6, 40px);
	column-gap: 2vw;
	
	width: calc(240px + 10vw);
	margin: 0 auto;
}
.SNSsharebtn ul li img{
	width: 100%;
}


@media screen and (max-width:990px){
	.SNSsharebtn ul{
		column-gap: 3vw;
		width: calc(240px + 15vw);
	}
}


/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑　SNSシェアボタン　↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/








/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓　footer　↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
footer{
	background: #000;
	color: #fff;
	padding: 100px 0 50px 0;
	font-size: 14px;
	text-align: center;
	line-height: 1.5;
	border-top: 1px solid rgba(255,255,255,0.50);
}
footer div:nth-child(1){
	margin: 0 auto 30px auto;
}
footer h6 + a{
	font-size: 32px;
	letter-spacing: 2px;
}
footer h6 + a + span{
	display: block;
	line-height: 1;
}

.footer_sns{
	display: flex;
	justify-content: space-between;
	width: 110px;
	margin: 20px auto 50px auto;
}
.footer_sns a{
	width: 40px;
	
}
.footer_sns a img{
	width: 100%;
}


footer small{
	display: block;
}

@media screen and (max-width:990px){
	footer{
		padding: 100px 0 20px 0;
	}
	.footer_sns{
		width: 120px;
	}
}



/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑　footer　↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/



/*==================================================
ふわっ
===================================*/




/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓　ふわっとでてくる　↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/


/* fadeUp */

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

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

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


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeUpTrigger{
    opacity: 0;
}



/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑　ふわっとでてくる　↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/









/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓　　↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/



/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑　　↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/



@media screen and (max-width:990px){
}





@media screen and (max-width:990px){
.P{display: none!important;}}
@media screen and (min-width:991px){
.S{display: none!important;}}

