@charset "utf-8";
/*
	SP 768px以下
	TAB 769px以上 1024以下
@media only screen and (min-width: 769px) {}
	PC 1250以上
@media only screen and (min-width: 1250px) {}
*/
	
/* --- 
    common
         --- */
.fon-en {
	line-height: 1.5;
	font-family: century-gothic, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.fon-min {
	font-family: serif, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E;
}
small {
	font-size: 0.8em;
}
img {
	vertical-align: bottom;
	width: 100%;
}

/* only */
.pcOnly {
	display: none;
}
@media only screen and (min-width: 1250px) {
	.pcOnly {
		display: block;
	}
	.spOnly {
		display: none;
	}
}

/* box */
.box-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
}

/* ani */
.ani {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 1.5s, transform 1s;
}
.ani.active {
	opacity: 1;
	transform: translateY(0px);
}

/* tit */
.main-tit,
.main_tit {
	position: relative;
	padding-top: 20%;
	margin-bottom: 10%;
	text-align: center;
	z-index: 5;
	color: #434343;
}
.main-tit::before,
.main_tit::before{
	content: '';
	position: absolute;
	top: 20%;
	left: 50%;
	width: 1px;
	height: 20%;
	background: #434343;
	animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
	0% {transform: scale(1, 0);transform-origin: 0 0;}
	50% {transform: scale(1, 1);transform-origin: 0 0;}
	50.1% {transform: scale(1, 1);transform-origin: 0 100%;}
	100% {transform: scale(1, 0);transform-origin: 0 100%;}
}
.main-tit p,
.main_tit .webf {
	font-family: century-gothic, sans-serif;
	font-size: 3.5rem;
	letter-spacing: 0.05rem;
	line-height: 1;
}
.main-tit h2,
.main_tit .fon-min {
	font-size: 2rem;
	letter-spacing: 0.1rem;
	display: block;
	margin-top: 10px;
}
.bg10 .main-tit .webf,
.bg10 .main_tit .fon-min {
	display: block;
}

/* btn */
.btn-wrap .btn {
	position: relative;
	width: 100%;
	letter-spacing: .04em;
	text-decoration: none !important;
	border: none;
	color: #535353;
	background-color: rgba(255,255,255,0.5);
	font-size: 1.4rem;
	padding: 3% 0;
}
.btn-wrap .btn:after {
	background: #535353;
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: -5px;
	left: 0;
	-webkit-transform-origin: 100% 0;
		 -moz-transform-origin: 100% 0;
	    -ms-transform-origin: 100% 0;
					transform-origin: 100% 0;
	-webkit-transition: -webkit-transform .5s ease-out;
	        transition: -webkit-transform .5s ease-out;
	-moz-transition: transform .5s ease-out, -moz-transform .5s ease-out;
	     transition: transform .5s ease-out;
	     transition: transform .5s ease-out, -webkit-transform .5s ease-out, -moz-transform .5s ease-out;
}
.btn-wrap .btn:hover:after {
	-webkit-transform: scaleX(0);
		 -moz-transform: scaleX(0);
			-ms-transform: scaleX(0);
					transform: scaleX(0);
}

/* accordion */
.accordion h3 {
	position: relative;
	cursor: pointer;
}
.accordion h3::before,
.accordion h3::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 25px;
	width: 20px;
	height: 1px;
	background: #4e4c4d;
}
.accordion h3::before {
	transform: rotate(90deg);
	transition: all .3s ease-in-out;
}
.accordion h3::after {
	transition: all .2s ease-in-out;
}
.accordion h3.open::before {
	transform: rotate(180deg);
}
.accordion h3.open::after {
	opacity: 0;
}
.accordion div {
	display: none;
}

/* LINE・IG no-link */
.wrapper-pc .sidenavi.action .btn-wrap li.web {
	width: 100%;
}
.wrapper-pc .sidenavi.action .btn-wrap li.line {
	display: none;
}
.action#ac-02 .btn-wrap li {
	margin-bottom: 15%;
}
#ac-01 .campaign .btn-wrap.box-wrap {
	bottom: 20%;
}
#sec10 .bg10 .name a {
	display: none;
}
#access.sec11 .container .add-wrap .sns-btn {
	display: none;
}