@charset "utf-8";
/* CSS Document */

/****************clearfix*******************/
.clearfix:after { content: "."; display: block; clear: both; height: 0; visibility: hidden; }
.clearfix { min-height: 1px; }
* html .clearfix {height: 1px;}
/*******************************************/

body,div,dl,dt,dd,h1,h3,h4,h5,h6,p,span,ul,li{
	padding:0;
	margin:0;
	width:auto;
	font-size: 100%;
	line-height: 190%;
	font-weight: 400;
	font-family: 'Noto Sans JP', "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
}

h2{
	padding:5%;
	margin:0;
	width:auto;
	line-height: 190%;
	font-family: sofia-pro,sans-serif;
	font-weight: 900;
	font-style: normal;
}


a{color: #fff;word-break: break-all;text-decoration: none;transition: .3s;}
a:hover{opacity: .7;}
*, *::before, *::after{-webkit-box-sizing: border-box;box-sizing: border-box;}
ul,li{ list-style:none; padding:0; margin:0; font-size: 100%; line-height:100%; font-weight: normal; }
a img { border: none; }
img{ line-height:100%; font-size:0px; width: 100%;height: auto;}

.sp{display:none;}
.pc{display: block;}


/*-------button-------*/

.button {
	position: relative;
    display: inline-block;
    padding: .5rem 4rem;
    border: 1px solid #fff;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    overflow: hidden;
}
.button:hover {
	color: #fff;
	opacity: 1;
}
.button::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	content: '';
	background: #fff;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform .3s;
}
.button:hover::before {
	transform-origin: left top;
	transform: scale(1, 1);
	opacity: 1;
}

/*-------header-------*/

header{
	position: absolute;
	width: 100%;
	height: 70px;
	z-index: 1000;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
/*	padding-top: 3%;
	padding-left: 3.5%;*/
}
header > a{
	position: absolute;
}
header > a:nth-child(2){right: 1.5%;width: 75px;}
header > a:nth-child(1){left: 1.5%;width: 10%;max-width: 130px;}
header > a img{display: block;}

.navigation{
	width: 50%;
    max-width: 450px;
    height: auto;
    position: absolute;
    left: 15%;
}
.link_line li{
	position: relative;
	cursor: pointer;
}
.link_line li::before{
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -7px;
	width: 100%;
	height: 2px;
	background-color: #D64681;
	transform: scale(0, 1);
	transform-origin: center;
	transition: transform .2s;
}
.link_line li:hover::before{
	transform: scale(1);
}
.link_line li a:hover{
	opacity: 1;
}

/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
	top:0;
	width:100%;
	background:#ef472e;
    /*動き*/
	transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
	opacity: 1;
	z-index:999;
	height: 100vh;/*ナビの高さ*/
}

/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    
}

#g-nav.panelactive ul {
    display: block;
}

/*リストのレイアウト設定*/
.g-nav_wrap{
	position: absolute;
	z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);

}
.g-nav_ul_wrap{
	width: 450px;
	display: flex;
	justify-content: space-between;
}
.g-nav_left li{
	list-style: none;
    text-align: left; 
}
.g-nav_right li{
	list-style: none;
    text-align: left; 
}

#g-nav li a{
	color: #fff;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position: fixed;
    z-index: 9999;
    top: 20px;
    right: 20px;
    cursor: pointer;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 100%;
    border: solid;
    border-color: #ef472e;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 21px;
    height: 3px;
    border-radius: 2px;
	background-color: #ef472e;
  	width: 43%;
  }

.openbtn span:nth-of-type(1) {
	top:26px;	
}

.openbtn span:nth-of-type(2) {
	top:37px;
}

.openbtn span:nth-of-type(3) {
	top:47px;
}

.openbtn.active span:nth-of-type(1) {
    top: 41px;
    left: 24px;
    transform: translateY(-6px) rotate(45deg);
    width: 38%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 29px;
    left: 24px;
    transform: translateY(6px) rotate(-45deg);
    width: 38%;
}


/*==================================================
スライダーのためのcss
===================================*/
.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
	border-radius: 8px;
	filter: brightness(110%) sepia(15%) saturate(108%);
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin:0 8px;/*スライド左右の余白調整*/
}


/*---------main---------*/
#wrap{
	background-color:#ef472e ;
}

.main{
	padding-top: 3%;
}
.mv{
	width: 93%;
    height: 56vw;
    border-radius: 30px;
    background-image: url("../img/mv_bg.jpg");
	background-size: cover;
	position: relative;
	padding: 0;
	margin: auto;
}
.mv-pc .mv_logo {
	width: 44%;
    position: absolute;
    top: 11%;
    left: 28.5%;
}

.mv-pc .mv_date{
	position: absolute;
	width: 78%;
    top: 74.5%;
    left: 12%;
}

.logo {
	width: 120px;
    height: auto;
    background-color: #ef472e;
    padding: 10px 20px 15px 0px;
	border-bottom-right-radius: 30px;
	position: relative;
	margin-top: 3%;
	margin-left: 3.5%;
}
.logo::before{
	content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url("../img/asset/logo_radius_orange.svg");
    background-size: cover;
    position: absolute;
    top: -1px;
    left: 120px;
    z-index: 10;
}
.logo::after{
	content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url("../img/asset/logo_radius_orange.svg");
    background-size: cover;
    position: absolute;
    top: 84px;
    left: 0px;
    z-index: 10;
}
.about p{
	width: 750px;
	font-weight: 600;
	margin: 0 auto 4.2rem;
	line-height: 3rem;
	font-size: 18px;
	text-align: center;
}

.mv-pc {
    display: block;
}
/*----------contents-----------*/
.con_wrap{
	background-image: url("../img/bg.jpg");
	background-repeat: no-repeat;
	padding: inherit;
	background-size: cover;
}

.head_element{
	width: 100%;
}

.foot_element{
	width: 100%;
	font-size: 0;
}


/*-------footer-------*/

footer{
	position: relative;
    bottom: 0;
    width: 100%;
    padding: 4rem 0 1.5rem;
	background-color: #ef472e;
}

footer p{
	text-align: center;
	margin-bottom: 2rem;
}
footer img.ft_logo{
	max-width: 300px;
    width: 65%;
    margin: 0 auto 5rem;
    display: block;
}
.footnav{
	width: 85%;
	max-width: 840px;
	margin: auto;
}
.footnav > ul{
	max-width: 530px;
    margin: auto;
}
.footnav > a,
.footnav > img{
	text-align: center;
	display: block;
	margin: 5rem auto;
}
.footnav > img{
	max-width: 170px;
    width: 40%;
}
.footnav > a{width: 8rem;}

footer > a{
	max-width:130px;
    display: block;
    margin: 0 auto 0.5rem;
}
footer > a img{width: 100%;}

.footnav > ul.sns_list{
	width: 100%;
	max-width: 100%;
}
.footnav > ul.sns_list li{
	width: 24%;
}
.footnav > ul.sns_list li a{
	border-radius: 0;
    padding: 4% 3%;
    width: 100%;
}
ul.sns_list li a img,
ul.sns_list li a i{
	position: absolute;
	left: 4%;
    top: 10%;
}
ul.sns_list li a img{width: 23px;top: 11%;}
ul.sns_list li a i{font-size: 1.5rem;}

.fa-facebook:before{color: #1877f2;}
.fa-twitter:before{color: #1da1f2;}
.fa-youtube:before{color: #ff0000;}

address{
	width: 100%;
	text-align: center;
	font-size: .5rem;
	font-style: normal;
	margin-bottom: 2rem;
}


@media screen and (max-width: 640px){
	img {max-width: 100%;height:auto;}
	.pc{display:none!important;}
	.sp{display:block;}
	
	p, ul, li{font-size: 4vw;}
	
	header{height: 0; padding-top:2.9%; }
	header > a:nth-child(2){right: 22%;width: 13%;}
	header > a:nth-child(1){left: 3%;width: 25%;}
	
	footer{padding: 10vw 0 1vw;}
	.footnav > a,.footnav > img{margin: 12vw auto;}
	.footnav > ul.sns_list li{width: 49.5%;margin-bottom: .45%;}
	.footnav > ul.sns_list li a{padding: 7% 0;}
	ul.sns_list li a img, ul.sns_list li a i{left: 6%;top: 14%;}
	ul.sns_list li a img{top: 18%;}

	footer p {
    text-align: center;
	font-size: 14px;
    margin-bottom: 1.5rem;
}
/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
	top:0;
	width:100%;
	background:#ef472e;
    /*動き*/
	transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
	opacity: 1;
	z-index:999;
	height: 100vh;/*ナビの高さ*/
}

/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    
}

#g-nav.panelactive ul {
    display: block;
}

/*リストのレイアウト設定*/

.g-nav_ul_wrap{
	width: 300px;
	margin: auto;
	display: block;
	justify-content: space-between;
}
.g-nav_left li{
	list-style: none;
    text-align: center; 
}
.g-nav_right li{
	list-style: none;
    text-align: center;
}
.g-nav_right{
	margin-top: 20px;
}
#g-nav li a{
	color: #fff;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position: fixed;
    z-index: 9999;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 100%;
    border: solid;
    border-color: #ef472e;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 13px;
    height: 3px;
    border-radius: 2px;
	background-color: #ef472e;
  	width: 43%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:21px;
}

.openbtn span:nth-of-type(3) {
	top:27px;
}

.openbtn.active span:nth-of-type(1) {
    top: 26px;
    left: 13px;
    transform: translateY(-6px) rotate(45deg);
    width: 43%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 14px;
    left: 13px;
    transform: translateY(6px) rotate(-45deg);
    width: 43%;
}

/*---------main---------*/
.mv{
	width: 93%;
    height: 165vw;
    border-radius: 20px;
    background-image: url("../img/mv_sp.jpg");
	background-size: cover;
	position: relative;
	padding: 0;
}
.mv-pc{
    display: none;
}
.logo {
	width: 70px;
    height: auto;
    background-color: #ef472e;
    padding: 8px 13px 10px 0px;
    border-bottom-right-radius: 20px;
	margin-top: 0;
}
.logo::before{
	content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url("../img/asset/logo_radius_orange.svg");
    background-size: cover;
    position: absolute;
    top: -1.5px;
    left: 69.5px;
    z-index: 10;
}
.logo::after{
	content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url("../img/asset/logo_radius_orange.svg");
    background-size: cover;
    position: absolute;
    top: 54px;
    left: 0px;
    z-index: 10;
}
.about h2{
	width: 23rem;
    height: auto;
    margin: auto;
	padding-top: 0%;
    padding-bottom: 5%;
}
.about h2 img{
	max-width: 80%;
}
.about p{
	width: 87%;
    margin: auto;
    line-height: 2.5rem;
    font-size: 18px;
	padding-bottom: 5%;
}
.con_wrap {
	background-repeat: repeat-y;
    background-size: 100%;
}

}

/*フェードインアニメーション*/
.fadein {
    animation-name: fadeUpAnime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
from {
    opacity: 0;
    transform: translateY(100px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}