@charset "UTF-8";

/* common
--------------------------------------------*/
html {
	color: #262626;
	background: #fff;
	font-size: 1rem;
}
body {
	background: #fff;
	font-family: 'M PLUS 2', sans-serif;
	/* color: #333; */
	/* font-size: 1rem; */
	line-height: 1.85;
	word-wrap: break-word;
	position: relative;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
a {
	color: inherit;
	text-decoration: none;
	outline: none;
	transition: all .3s;
}
a:hover {
	opacity: 0.8;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align:top;
}



/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定 */
#splash {
    /*fixedで全面に固定*/
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	background:#ffb6ab;  /* 背景色 */
	text-align:center;
	color:#fff;
}

/* Loadingバー中央配置 */
#splash_text {
	position: absolute;
	top: 50%;
	left: 50%;
    z-index: 999;
	width: 100%;
	transform: translate(-50%, -50%);
	color: #fff;
}


.container {
	opacity: 0;
}
body.appear .container {
	animation-name: PageAnimeAppear;
	animation-duration: 1s;
	animation-delay: 0.8s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes PageAnimeAppear {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/*========= 背景アニメーションのためのCSS ===============*/
/* .page_bg::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	opacity: .4;
	background: url(../img/bg_deco_gray_pc.svg) left top repeat;
	z-index: -1;
}
@media screen and (min-width: 769px) {
	.page_bg::before {
		background-size: 612px auto;
		animation: topBgPC 10s infinite linear;
	}
}
@keyframes topBgPC {
	from {
		background-position: left 0 top 0;
	}
	to {
		background-position: left 0 top -342px;
	}
}
@media screen and (max-width: 768px) {
	.page_bg::before {
		background-size: 612px auto;
		animation: topBgPC 8s infinite linear;
	}
} */



/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 996;
    /*ナビのスタート位置と形状*/
	top:0;
    right: -100%;
	width:30%;
    height: 100vh;/*ナビの高さ*/
	background: rgba(233,66,74,.9); /*背景色*/
    /*動き*/
	transition: all .6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 997; 
    width: 30%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*横幅が768px以下になった際の指定*/
@media only screen and (max-width: 768px) {
    #g-nav,
    #g-nav.panelactive #g-nav-list{
        width:100%;
    }
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 997;
    top:50%;
    left:50%;
	width: 90%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/
#g-nav li{
	list-style: none;
    text-align: center;
}
#g-nav li a{
	color: #fff;
	font-size: 1.45rem;
	line-height: 1.4;
	text-decoration: none;
	padding:15px 10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
    transition: all .5s;
	border-bottom: 1px dotted #fff;
}
#g-nav li a span {
	font-size: 0.75rem;
	display: block;
}
#g-nav li a:hover{
    color:#ccc;
}
@media screen and (max-width: 768px) {
	#g-nav li a {
		font-size: 1.05rem;
		line-height: 1.25;
	}
	#g-nav li a span {
		font-size: 0.6;
	}
}

/* ナビゲーションボタン */
.openbtn{
	position:fixed;
    z-index: 998;/*ボタンを最前面に*/
	top:15px;
	right: 10px;
	cursor: pointer;
    width: 70px;
    height:70px;
	background:#e9424a; /* 背景色 */
	border-radius: 50%;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 19px;
    height: 3px;
    border-radius: 2px;
	background-color: #fff;
	width: 45%;
}
.openbtn span:nth-of-type(1) {
	top:24px;	
}
.openbtn span:nth-of-type(2) {
	top:32px;
}
.openbtn span:nth-of-type(3) {
	top:40px;
}
.openbtn.active span:nth-of-type(1) {
    top: 25px;
    left: 24px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 37px;
    left: 24px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}



/*========= メインビジュアルのためのCSS ===============*/
.m-top {
	background-color: #ffc9c1;
	background-image: url(../img/repeat_white_dot.png);
	background-repeat: repeat;
	position: relative;
	display: block;
}
.top-inner {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	min-width: 350px;
}
.mainvisual_wrap {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	align-items: center;
	
}
.mainvisual {
	width: 58%;
}
.logo-wrap {
	width: 42%;
}
.logo-inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.logo-inner h1 {
	margin-bottom: 25px;
	line-height: 1;
}
.logo-inner p{
	width: 96%;
}
.is-sp {
	display: none;
}
@media screen and (max-width: 768px) {
	.is-pc {
		display: none;
	}
	.is-sp {
		display: block;
	}
	.mainvisual_wrap {
		display: block;
	}
	.mainvisual {
		width: 100%;
		padding-bottom: 160px;
	}
	.logo-wrap {
		width: 85%;
		position: absolute;
		bottom: 90px;
		left: 50%;
		transform: translateX(-50%);
	}
	.logo-inner h1 {
		margin-bottom: 6px;
	}
}

/*========= ニュースのためのCSS ===============*/

/* 更新履歴 */
.news {
	width: 100%;
	max-width: 1200px;
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	/* padding-top: 20px;
	padding-bottom: 50px; */
}
@media screen and (max-width: 768px) {
	.news {
		width: 90%;
		bottom: 0;
	}
}
/* .news .inner {
	max-width: 1000px;
	padding: 2% 2%;
	margin: 0 auto; 
}  */
/* @media screen and (max-width: 768px) {
	.news .inner {
		padding-top: 5%;
		padding-bottom: 5%;
	}
} */
.news-slider a {
	display: block;
	padding: 10px;
	background-color: rgba(255, 255, 255, 0.9);
	/* max-width: 1000px; */
	font-weight: 600;
}
.news-slider span {
    display:inline-block;
    font-size:0.75rem;
    margin-right: 15px;
	font-weight: 800;
    color:#e9424a; /* 日付　文字色 */
}
@media screen and (max-width: 768px) {
	.news-slider a {
		padding: 5px;
	}
	.news-slider li a {
		font-size: 0.85rem;
	}
	.news-slider li span {
		font-size: 0.65rem;
	}
}
.bx-wrapper {
    background-color: transparent;
    border: none;
    box-shadow: none;
	margin-bottom: 20px;
}

/* バナー */
.slider {/*横幅80%で左右に余白を持たせて中央寄せ*/
	width:70%;
	max-width: 1400px;
	margin:0 auto ;
	padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
	.slider {
		width: 90%;
	}
}

.slider img {
	width:100%;/*スライダー内の画像を横幅100%に*/
	height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider .slick-slide {
	margin:0 10px;
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
	position: absolute;/*絶対配置にする*/
	top: 40%;
	cursor: pointer;/*マウスカーソルを指マークに*/
	outline: none;/*クリックをしたら出てくる枠線を消す*/
	border-top: 3px solid #e9424a;/*矢印の色*/
	border-right: 3px solid #e9424a;/*矢印の色*/
	height: 20px;
	width: 20px;
}
@media screen and (max-width: 1200px) {
	.slick-prev, 
	.slick-next {
		top: 36%;
	}
}
@media screen and (max-width: 768px) {
	.slick-prev, 
	.slick-next {
		top: 34%;
		border-top: 2px solid #e9424a;/*矢印の色*/
		border-right: 2px solid #e9424a;/*矢印の色*/
		height: 16px;
		width: 16px;
	}
}

.slick-prev {/*戻る矢印の位置と形状*/
	left: -3%;
	transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
	right: -3%;
	transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
.slick-dots {
	text-align:center;
	margin:20px 0 0 0;
}
.slick-dots li {
	display:inline-block;
	margin:0 5px;
}
.slick-dots button {
	color: transparent;
	outline: none;
	width:8px;/*ドットボタンのサイズ*/
	height:8px;/*ドットボタンのサイズ*/
	display:block;
	border-radius:50%;
	background:#fff;/*ドットボタンの色*/
}
.slick-dots .slick-active button{
	background:#e9424a;/*ドットボタンの現在地表示の色*/
}



/*========= タイトルのためのCSS ===============*/

.sec-title {
	font-family: "ClashDisplay-Semibold";
	text-align: center;
	font-size: 2.45rem;
	font-weight: bolder;
	letter-spacing: 0.15em;
	line-height: 1.35;
	margin-bottom: 60px;
}
.sec-title span {
	display: block;
	font-size: 1.05rem;
	letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
	.sec-title {
		font-size: 1.5rem;
	}
	.sec-title span {
		font-size: 0.85rem;
	}
}



/*========= コンテンツ共通余白部分のためのCSS ===============*/

main section {
	padding-top: 70px;
	padding-bottom: 110px;
}
@media screen and (max-width: 768px) {
	main section {
		padding-top: 45px;
		padding-bottom: 60px;
	}
}
.sec-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 3%;
	padding-right: 3%;
}


/*========= ABOUTのためのCSS ===============*/

.about {
	background-image: url(../img/aboutbg.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: 70px;
}
.about-box {
	border: #262626 solid 1px;
	max-width: 768px;
	padding: 1em;
	margin: 0 auto;
	background-color: #fff;
	text-align: center;
}
.about-box img {
	margin-bottom: 10px;
}
.about-box h3 {
	font-size: 1.45rem;
	font-weight: 800;
	margin-bottom: 10px;
	color: #e7408d;
}
.about-text {
	margin-bottom: 20px;
	font-size: 1.025rem;
	font-weight: 600;
	line-height: 1.5;
}
.about-link a {
	display: block;
	padding: 0.75em 2em;
	background-color: #e9424a;
	color: #fff;
	font-weight: 800;
}
@media screen and (max-width: 768px) {
	.about-text br {
		display: none;
	}
	.about-box h3 {
		font-size: 1.25rem;
	}
	.about-text {
		font-size: 0.85rem;
	}
	.about-link a {
		font-size: 0.85rem;
	}
}



/*========= イントロダクションのためのCSS ===============*/

#intro {
	background-image: url(../img/repeat_color_dot.png);
	background-size: 200px auto;
	background-color:rgba(255, 255, 255, 0.7);
	background-blend-mode:lighten;
	background-position: center top;
	background-repeat: repeat;
	padding-top: 0;
	padding-bottom: 0;
}
.intro-bg {
	background: url(../img/bg_circle_yellow_pc.png) center top repeat-y;
	background-size: 100% auto;
	padding-top: 70px;
	padding-bottom: 100px;
}
.intro-wrap {
	text-align: center;
}
.intro_1 {
	margin-bottom: 40px;
	width: 900px;
}
.intro_2 {
	width: 740px;
}
.intro-wrap p {
	font-size: 1.45rem;
	font-weight: 800;
	/* margin-bottom: 50px; */
}
.intro-txt1 {
	margin-bottom: 18px;
}
.intro-wrap .s-pink {
	color: #eb618f;
	font-size: 1rem;
	font-weight: 800;
	margin-top: 20px;
}
.intro-wrap .blue {
	color: #91a6f5;
}
.intro-wrap .pink {
	color: #e7408d;
}
.intro-wrap .yellow {
	background: linear-gradient(transparent 70%, #fcf322 70%);
}
.intro-yellow {
	margin-top: 18px;
	margin-bottom: 40px;
}
.intro_SP {
	display: none;
}
@media screen and (max-width: 768px) {
	/* .intro-wrap {
		text-align: left;
	} */
	.intro-wrap p {
		font-size: 0.95rem;
	}
	.intro_SP {
		display: block;
	}
}


/*========= ポイントのためのCSS ===============*/

#lineup {
	background-color: #f591b2; /* 背景色 */
}
#lineup .sec-title {
	color: #fff;
}

.lineup-box {
	background-color: #fff;
	border: 1px #1c1c1c solid;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	padding: 35px;
	justify-content: space-between;
	margin-bottom: 20px;
}
.lineup-box img {
	width: 40%;
}
.lineup-text {
	width: 57%;
}
.lineup-text h3 {
	color: #e7408d;
	line-height: 1.4;
	font-size: 1.5rem;
	font-weight: 800;
	padding: 10px;
	border-bottom: 2px solid #1c1c1c;
	margin-bottom: 20px;
}
.lineup-text h3 span {
	font-size: 0.95rem;
	display: block;
}
.lineup-detail {
	padding-left: 10px;
	font-size: 1.15rem;
	font-weight: 800;
	margin-bottom: 20px;
	line-height: 1.45;
}
.lineup-detail span {
	color: #e7408d;
}
.lineup-text dl {
	padding-left: 10px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	margin-bottom: 16px;
}
.lineup-text dt {
	background-color: #e7408d;
	color: #fff;
	border-radius: 30px;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 10px;
	padding-right: 10px;
	width: 20%;
	max-width: 7rem;
	text-align: center;
	margin-right: 20px;
	flex-shrink: 0;
	font-size: 1.15rem;
	font-weight: 800;
}
.lineup-text dd {
	width: 70%;
	font-size: 1.15rem;
	font-weight: 800;
}
.lineup-text dd span {
	display: block;
	line-height: 1.4;
	font-size: 1rem;
	color: #e7408d;
	margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
	.lineup-box {
		padding: 20px;
	}
	.lineup-box img {
		width: 100%;
		margin-bottom: 20px;
	}
	.lineup-text {
		width: 100%;
	}
	.lineup-text h3 {
		font-size: 1.15rem;
	}
	.lineup-text h3 span {
		font-size: 0.85rem;
	}
	.lineup-detail {
		font-size: 0.9rem;
	}
	.lineup-text dt {
		font-size: 0.9rem;
		width: 100%;
	}
	.lineup-text dd {
		width: 100%;
		font-size: 0.9rem;
	}
	.lineup-text dd span {
		font-size: 0.85rem;
		margin-bottom: 10px;
	}
}


/*========= あらすじのためのCSS ===============*/

#story {
	background-color: #ccc; /* 背景色 */
	background-image: url(../img/storybg.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
#story .sec-title {
	color: #fff;
}
.story-text {
	color: #fff;
	font-size: 1.45rem;
	font-weight: 800;
	text-align: center;
	letter-spacing: 0.035em;
}
.story-text p {
	margin-bottom: 40px;
	line-height: 1.85;
}
.story-big {
	font-size: 1.75rem;
	margin-bottom: 0;
	line-height: 1;
}
.story-big span {
	background-color: #e9424a;
	padding-bottom: 4px;
	padding-right: 4px;
	padding-left: 4px;
}
.story-SP {
	display: none;
}

@media screen and (max-width: 768px) {
	.story-text {
		font-size: 0.95rem;
		text-align: left;
		line-height: 1.45;
	}
	.story-big {
		font-size: 1.25rem;
	}
	.story-PC {
		display: none;
	}
	.story-SP {
		display: block;
	}
}

/*========= ギャラリーのためのCSS ===============*/

#gallery {
	/* background-color: #fff;  */
	position: relative;
	background: url(../img/splash_pink_pc.svg) center top no-repeat;
	background-size: 100% auto;
}
/* #gallery::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/splash_pink_pc.svg) center top no-repeat;
	background-size: 100% auto; 
} */
#gallery .sec-inner {
	max-width: 1500px;
}

.gallery-sample{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
    gap: 16px;
	z-index: 2;
}
.gallery-sample li img {
	border: 1px solid #f34697;
	border-radius: 6px;
}
@media screen and (max-width: 768px) {
	.gallery-sample {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
}



/*========= ムービーのためのCSS ===============*/

#movie {
	position: relative;
	background-color: #ffb6ab; /* 背景色 */
	padding-bottom: 30px;
}
#movie .sec-title {
	color: #fff;
}
#movie::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	background: url(../img/repeat_white_circle.png) left top repeat;
	background-size: 200px auto;
	pointer-events: none;
	opacity: .4;
	/* z-index: -1; */
}


/*========= 主題歌のためのCSS ===============*/
.music {
	background-color: #91a6f5;
	padding-bottom: 70px;
}
.pr-mus {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 2em;
	background-color: #fff;
	border: #1c1c1c 1px solid;
}
.pr-mus figure {
	width: 30%;
}
.pr-mus_tx {
	width: 65%;
	padding: 10px;
	color: #1c1c1c;
}
.pr-mus_tx h3 {
	font-size: 1.5rem;
	font-weight: 800;
	color: #fcc400;
	line-height: 1.4;
	margin-bottom: 20px;
}
.pr-mus_tx p {
	font-size: 1.025rem;
	line-height: 1.5;
	font-weight: 600;
	margin-bottom: 10px;
}
.tokuten {
	color: #e9424a;
}
@media screen and (max-width: 768px) {
	.pr-mus {
		padding: 1.2em;
	}
	.pr-mus figure {
		width: 100%;
		margin-bottom: 20px;
	}
	.pr-mus_tx {
		width: 100%;
	}
	.pr-mus_tx h3 {
		font-size: 1.15rem;
	}
	.pr-mus_tx h4 {
		font-size: 0.85rem;
	}
	.pr-mus_tx p {
		font-size: 0.75rem;
		margin-bottom: 10px;
	}
}

/*========= 特典情報のためのCSS ===============*/
.product {
	background-image: url(../img/repeat_color_dot.png);
	background-size: 200px auto;
	background-color:rgba(255, 255, 255, 0.7);
	background-blend-mode:lighten;
	background-position: center top;
	background-repeat: repeat;
}


#special {
	/* background-color: #fff; */
	padding-bottom: 30px;
}

.pr-tape {
	display: grid;
	grid-template-columns: 1fr 1fr; 
	grid-template-rows: 1fr 1fr; 
	gap: 50px 40px; 
	grid-template-areas: 
		"sofmap sofmap"
		"getchu melon";
	padding-bottom: 30px;
}
.sofmap { grid-area: sofmap; }
.getchu { grid-area: getchu; }
.melon { grid-area: melon; }

@media screen and (max-width: 768px) {
	.pr-tape {
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: 1fr; 
		gap: 20px;
		row-gap: 30px;
		grid-template-areas: 
		"sofmap"
		"getchu" "melon";
	}
}

.pr-tape .box {
	padding: 2em;
	/* width: 48%; */
	border: 2px solid #1c1c1c;
	background-color: #fff;
	margin-bottom: 0;
}
.sof-inner {
	display: flex;
	justify-content: space-between;
}
.sof-wrap {
	width: 45%;
}
@media screen and (max-width: 768px) {
	.sof-inner {
		flex-direction: column;
	}
	.sof-wrap {
		width: 100%;
	}
}
.pr-tape h3 {
	font-size: 1.5rem;
	font-weight: 800;
	text-align: center;
	margin-bottom: 20px;
	color: #e9424a;
}
.tokuten-sp {
	display: none;
}
@media screen and (max-width: 768px) {
	.tokuten-sp {
		display: block;
	}
	.tokuten-pc {
		display: none;
	}
	.sof-tenpo {
		margin-bottom: 30px;
	}
}
.pr-tape figure {
	margin-bottom: 20px;
}
.pr-tape .sikisi {
	text-align: center;
}
.pr-tape p {
	text-align: center;
	font-size: 1.025rem;
	font-weight: 600;
	line-height: 1.5;
	/* margin-bottom: 40px; */
	color: #1c1c1c;
}
.btn a {
	color: #fff;
	background: #e9424a;
	font-size: 1.025rem;
	font-weight: 600;
	padding: 0.6em;
	display: block;
	text-align: center;
	border-radius: 30px;
}
.btn {
	display: block;
	/* margin-top: 40px; */
	margin-bottom: 10px;

}
.btn.set {
	margin-top: 40px;
}
@media screen and (max-width: 768px) {
	.pr-tape h3 {
		font-size: 1.35rem;
		
	}
	.pr-tape p {
		font-size: 0.95rem;
		margin-bottom: 20px;
	}
	.btn a {
		font-size: 0.95rem;
	}
	.sp-only {
		display: block;
	}
	.tape-sp {
		display: none;
	}
	.btn.set {
		margin-top: 20px;
	}
}


/*========= スペックのためのCSS ===============*/

#spec {
	/* background-color: #ccc;  */
}
.sp_pr-wrapper {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin: 0 auto;

}
.sp_pr-wrapper .sp-pr-content {
    width: 44%;
	flex-shrink: 1;
}
@media screen and (max-width: 768px) {
	.sp_pr-wrapper {
		flex-direction: column;
	}
	.sp_pr-wrapper .sp-pr-content {
		width: 100%;
	}
}
.sp-pr-content dl {
	display: flex;
	font-size: 0.95rem;
	justify-content: center;
	margin-bottom: 1rem;
	line-height: 1.4;
}
.sp-pr-content dl dt {
	width: 32%;
	text-align: right;
	padding-right: 2rem;
	font-weight: 900;
}
.sp-pr-content dl dd {
	width: 68%;
	text-align: left;
	font-weight: 600;
}
.sp-pr-content dl dd span {
	font-size: 0.675rem;
}
@media screen and (max-width: 768px) {
	.sp-pr-content dl {
		font-size: 0.785rem;
		margin-bottom: 1rem;
	}
	.sp-pr-content dl dt {
		width: 35%;
		padding-right: 1.45rem;
	}
	.sp-pr-content dl dd {
		width: 65%;
	}
}




/*  */

/*========= フッターのためのCSS ===============*/

.footer {
	width: 100%;
	padding: 60px 20px 28px;
	text-align: center;
	color: #fff; /* 文字色 */
	background-color: #e9424a; /* 背景色 */
}
.footer a {
	display: block;
}

.footer small {
	display: block;
	margin-top: 20px;
}


/*========= TOPへ移動のためのCSS ===============*/

/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#e9424a;  /* ボタンの色 */
	border-radius: 10px 10px 0 0;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	border-right: 2px solid #fff;
	width: 70px;
	height: 70px;
	color: #fff; /* 矢印の色 */
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}
#page-top a:hover{
	opacity: 0.8;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 15px;
	bottom:0px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}
.footer #page-top span {
	display: inline-block;
	width: 15px;
	height: 15px;
	border-top: 4px solid #fff;
	border-left: 4px solid #fff;
	transform: rotate(45deg);
}

/*　上に上がる動き　*/
#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/*　下に下がる動き　*/
#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
	from {
		opacity: 1;
		transform: translateY(0);
	}
	to {
		opacity: 1;
		transform: translateY(100px);
	}
}

/*========= モーダルウィンドウのためのCSS ===============*/
/*動画表示のモーダルの余白を変更したい場合*/
.modaal-video .modaal-inner-wrapper{
	padding:0;
}

/*モーダルのボタンの色を変更したい場合*/
.modaal-wrapper .modaal-close {
	background: #fff;
}
.modaal-close:after, 
.modaal-close:before{
	background:#e9424a;	
}

.modaal-wrapper .modaal-close:focus {
	background: #e9424a;
}
.modaal-wrapper .modaal-close:hover {
	background: #e9424a;
}
.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
	background:#fff;
}
.modaal-wrapper .modaal-close{
	top: 23px;
}

.modaal-close {
	position: fixed;
	right: 10px;
	top: 15px;
	color: #fff;
	cursor: pointer;
	opacity: 1;
	width: 70px;
	height: 70px;
	background: rgba(0, 0, 0, 0);
	border-radius: 100%;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.modaal-close:before {
	top: 20px;
    left: 32px;
	/* width: 30%; */
	height: 40%;
}
.modaal-close:after {
	top: 20px;
    left: 32px;
	height: 40%;
}

.fadeUp{
	animation-name: fadeUpAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes fadeUpAnime{
	from {
	opacity: 0;
	transform: translateY(100px);
	}

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

.fadeIn{
	animation-name: fadeInAnime;
	animation-duration:2s;/*ゆっくり出現するため数値変更*/
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes fadeInAnime{
	from {
	opacity: 0;
	}

	to {
	opacity: 1;
	}
}