@charset "utf-8";
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
}
html {
	font-size: 62.5%;
}
body, table, input, textarea, select, option {
	font-family: "Noto Sans JP", serif;
	font-weight: 400; /* Regular */
	font-feature-settings: "palt";
}

.medium {
	font-weight: 500;
}

.bold {
	font-weight: 700;
}
.black {
	font-weight: 900;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
img {
	vertical-align: top;
	max-width: 100%;
    height: auto;
}
a {
    display: inline-block;
}
a,
a:link {
	color: #000;
	text-decoration: none;
}
a:visited {
	color: #000;
}
a:hover {
    color: #000;
	opacity: 0.5;
}
a:active {
	color: #000;
}
/* clearfix */	
.clearfix:after {content: "";display: block;clear: both;}
/* flex */	
.flex,.flexA,.flexB,.flexC {display: flex;flex-wrap: wrap;}
.flexA {justify-content: space-around;}
.flexB {justify-content: space-between;}
.flexC {justify-content: center;}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	font-size: 1.5rem;
	line-height: 1.8;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	color: #000;
}
#container {
	text-align: left;
}
#main {
	display: block;
	overflow: hidden;
}
.inner {
	max-width: 80rem;
	margin: 0 auto;
}
.center {
	text-align: center;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media all and (min-width: 751px) {
	.sp {
		display: none !important;
	}
}
@media all and (max-width: 750px) {
	body {
		min-width: inherit;
		font-size: 1.4rem;
	}
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}
.btn {
	border: 4px solid #000;
	height: 8rem;
	font-size: 2.4rem;
	margin: 0 auto;
	box-sizing: border-box;
	width: 44.8rem;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    border-radius: 5rem;
    background: #fff100;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #FFF100), to(#FFCE00));
    background-image: linear-gradient(#FFF100 0, #FFCE00 100%);
	color: #000;
}
.btn .arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 2rem;
    width: 3.7rem;
    height: 3.7rem;
    line-height: 5.8rem;
    background-color: #000;
    border-radius: 50%;
}
.btn .arrow::before {
    content: "";
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    border-top: .3rem solid #fff100;
    border-right: .3rem solid #fff100;
    -webkit-transform: translateY(-80%) rotate(135deg);
    transform: translateY(-80%) rotate(135deg);
}
.btn {
	transition: filter .3s ease;
}

.btn:hover {
	filter: brightness(0.8);
}
@media all and (max-width: 749px) {
	.btn {
		max-width: 100%;
		font-size: 1.6rem;
		box-sizing: border-box;
		height: 3rem;
		border: .2rem solid #000;
	}
	section .btn {
		width: 22.4rem;
		font-size: 1.4rem;
		height: 4rem;
	}
	section .btn .arrow {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        right: 2rem;
        width: 1.8rem;
        height: 1.8rem;
        line-height: 2.8rem;
        background-color: #000;
        border-radius: 50%;
    }
	.btn .arrow {
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		right: 2rem;
		width: 2rem;
		height: 2rem;
		line-height: 2.8rem;
		background-color: #000;
		border-radius: 50%;
	}
	.btn .arrow::before {
		content: "";
		display: inline-block;
		width: .8rem;
		height: .8rem;
		border-top: .2rem solid #fff100;
		border-right: .2rem solid #fff100;
		-webkit-transform: translateY(-80%) rotate(135deg);
		transform: translateY(-80%) rotate(135deg);
	}
}

/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/

#gHeader {
	padding: 3.5rem 2rem;
	box-sizing: border-box;
	width: 100%;
	z-index: 99;
	position: fixed;
	top: 7.5rem;
	left: 0;
	transition: 0.3s ease;
}

#gHeader.is-fixed {
	top: 0;
	background-color: #edf4f2;
	padding: 2.5rem 2rem;
	height: 8.2rem;
}
#gHeader nav ul {
	font-weight: 900;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
#gHeader nav ul li a {
	color: #fff;
	font-size: 1.8rem;
	padding: 0 2.5rem;
	transition: 0.3s ease;
}
#gHeader.is-fixed nav ul li a {
	color: #000;
}
#gHeader nav ul .btn {
	height: clamp(6rem, 5vw, 7rem);
	font-size: clamp(1.8rem, 1.3vw, 2rem);
	width: clamp(26rem, 23.1vw, 32.4rem);
	margin: 0 0 0 auto;
	padding-bottom: .1em;
	position: absolute;
	right: 0;
	top: -2rem;
}
#gHeader.is-fixed nav ul .btn {
	top: -2rem;
}
#gHeader nav ul .btn a {
	color: #000;
}
#gHeader nav ul .btn .arrow {
	width: 2rem;
	height: 2rem;
}
#gHeader nav ul .btn .arrow::before {
    width: .6rem;
    height: .6rem;
    border-top: .2rem solid #fff100;
    border-right: .2rem solid #fff100;
    -webkit-transform: translateY(-310%) rotate(135deg);
    transform: translateY(-310%) rotate(135deg);
}
.cp {
    display: none;
    line-height: 1.5;
}
.is-fixed .cp {
    display: block;
}
.cp span {
    color: #e40011;
}

@media all and (max-width: 1040px) and (min-width: 749px) {
	
	#gHeader nav ul li:nth-of-type(3) {
		margin-right: 23rem;
	}
	
	#gHeader nav ul li a {
		padding: 0 1.5rem;
	}
}

@media all and (max-width: 749px) {
	
	#gHeader {
        padding: .7rem 1.5rem;
		display: block;
	}
	#gHeader.is-fixed {
		padding: 1rem 1.5rem;
		height: auto;
	}
	body.fixed #gHeader {
		top: 0;
	}
	#gHeader nav {
        display: none;
        position: absolute;
        left: 0;
        top: 0;
        padding-top: 4rem;
        background: #edf4f2;
        z-index: 101;
		height: 100vh;
		box-sizing: border-box;
		width: 100%;
    }
	#gHeader nav ul {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		height: 100%;
	}
	#gHeader nav ul li {
		margin: 2rem 0;
	}
	#gHeader nav ul li a {
		color: #000;
	}
	#gHeader .menu {
		height: 4.4rem;
        width: 4.4rem;
        position: relative;
        z-index: 102;
		margin-left: auto;
		transition: .3s;
	}
	#gHeader .menu.on {
		background-color: #000;
	}
	#gHeader.is-fixed .menu {
		background-color: #000;
	}
	#gHeader .menu span {
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
        position: absolute;
        left: 1.2rem;
        width: 2rem;
        height: .2rem;
        background-color: #fff;
    }
	#gHeader .menu span:nth-of-type(1) {
        top: 1.6rem;
    }
	#gHeader .menu span:nth-of-type(2) {
        top: 2.2rem;
    }
	#gHeader .menu span:nth-of-type(3) {
        top: 2.8rem;
    }
	#gHeader .menu.on span:nth-of-type(1) {
        transform: translateY(.6rem) rotate(-225deg);
    }
	#gHeader .menu.on span:nth-of-type(2) {
        opacity: 0;
    }
	#gHeader .menu.on span:nth-of-type(3) {
        transform: translateY(-.6rem) rotate(225deg);
    }
	#gHeader nav ul .btn {
		margin: 2rem 0;
		position: relative;
		right: inherit;
	}
	#gHeader .fbtn {
		position: fixed;
		bottom: -9rem;
		left: 0;
		background-color: #094;
		padding: 1rem 1.5rem;
		width: 100%;
		box-sizing: border-box;
		transition: .3s ease;
	}
	#gHeader nav ul .btn .arrow::before {
		-webkit-transform: translateY(-80%) rotate(135deg);
		transform: translateY(-80%) rotate(135deg);
	}
	#gHeader .fbtn.is-fixed {
		bottom: 0;
	}
	#gHeader .fbtn .btn {
		margin: 0 auto .5rem 0;
		width: calc(100% - 5rem);
	}
	#gHeader .fbtn .btn:last-child {
	    margin-bottom: 0;
	}
	.cp {
        display: block;
    }
}

/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {
	padding: 3rem 0;
	text-align: center;
}
#gFooter .f-menu {
	display: flex;
	justify-content: center;
	font-weight: 900;
	font-size: 2rem;
	margin-bottom: 7rem;
}
#gFooter .f-menu li {
	margin: 0 3rem;
}
#gFooter .f-menu li a {
	transition: .3s;
}
#gFooter .f-menu li a:hover {
	opacity: .7;
}
#gFooter .flogo {
	margin-bottom: 3.5rem;
}
#gFooter .flogo img {
	width: 18rem;
}
#gFooter .copyright {
	font-size: 1.6rem;
	font-weight: 500;
}
body.fixed .pagetop {
	opacity: 0;
}
.pagetop {
	position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #fff;
    border: 2px solid #176124;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: 100;
    -webkit-transition: all .3s;
    transition: all .3s;
    border-radius: 50%;
	width: 8.4rem;
	height: 8.4rem;
	bottom: 1.5rem;
	right: 1.5rem;
}
.pagetop::before {
    content: "";
    width: 1rem;
    height: 1rem;
    border-top: 3px solid #176124;
    border-right: 3px solid #176124;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-radius: 1px;
}
.is-fixed.pagetop {
    opacity: 1;
    visibility: visible;
}
@media all and (max-width: 749px) {
	
	#gFooter {
		padding: 1.5rem 0 10rem;
	}
	#gFooter .f-menu {
		font-size: 1.3rem;
		margin-bottom: 3.5rem;
	}
	#gFooter .f-menu li {
		margin: 0 1.5rem;
	}
	#gFooter .flogo {
		margin-bottom: 1.75rem;
	}
	#gFooter .flogo img {
		width: 11.5rem;
	}
	#gFooter .copyright {
		font-size: 1.2rem;
	}
	
	.pagetop {
		width: 4rem;
		height: 4rem;
		bottom: 2rem;
		right: 1rem;
	}
	
}

.bounceIn {
	opacity: 0;
}

.bounceIn.active {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
	-webkit-animation-duration: .7s;
    animation-duration: .7s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@keyframes bounceIn {

	0% {
		opacity: 0;
		-webkit-transform: translateX(0) scale(0.3);
		transform: translateX(0) scale(0.3);
	}
	50% {
		opacity: 1;
		-webkit-transform: translateX(0) scale(1.05);
		transform: translateX(0) scale(1.05);
	}
	80% {
		opacity: 1;
		-webkit-transform: translateX(0) scale(0.9);
		transform: translateX(0) scale(0.9);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0) scale(1);
		transform: translateX(0) scale(1);
	}

}

.fadeUp {
	opacity: 0;
}

.fadeUp.active {
    -webkit-animation-name: fadeUp;
    animation-name: fadeUp;
	-webkit-animation-duration: .7s;
    animation-duration: .7s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@keyframes fadeUp {
	
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

}

.fadeIn {
	opacity: 0;
}

.fadeIn.active {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
	-webkit-animation-duration: .7s;
    animation-duration: .7s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@keyframes fadeIn {
	
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}

}
section.lineup .sec03 .point-area .point-title h3:before {
	opacity: 0;
}

section.lineup .sec03 .point-area .point-title h3.active:before {
    -webkit-animation-name: lightning;
    animation-name: lightning;
	-webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@keyframes lightning {
  0% {
    transform: translateX(-50%) translateY(-300px);
    opacity: 0;
    filter: brightness(1);
  }

  10% {
    opacity: 1;
  }

  20% {
    transform: translateX(-56%) translateY(-180px);
  }

  35% {
    transform: translateX(-44%) translateY(-100px);
  }

  50% {
    transform: translateX(-54%) translateY(-40px);
  }

  70% {
    transform: translateX(-46%) translateY(0);
  }

  82% {
    filter: brightness(3)
            drop-shadow(0 0 20px #fff)
            drop-shadow(0 0 40px #FFFF00);
  }

  86% {
    filter: brightness(1.2)
            drop-shadow(0 0 8px #fff)
            drop-shadow(0 0 16px #FFFF00);
  }

  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

.delay01 {
	animation-delay: .35s;
}
.delay02 {
	animation-delay: .7s;
}
.delay03 {
	animation-delay: 1.05s;
}
.delay04 {
	animation-delay: 1.4s;
}