@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Allura&display=swap');



/* -------------------------------------------

base

------------------------------------------- */
:root {
	--navy: #2A3848;
	--gold: #8C6E00;
	--font-allura: "Allura", cursive;
}
body {
	color: var(--navy);
	font-family: 'Noto Serif JP', serif;
	font-size: 1.4rem;
	letter-spacing: 0.06em;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.5rem;
	}
}
/* ---- link ---- */
a {
	color: var(--navy);
}



/* -------------------------------------------

layout

------------------------------------------- */
article {
	background: url(../img/bg-content.jpg) no-repeat center top;
	background-size: cover;
	padding-top: 21rem;
	padding-bottom: 2rem;
}
@media screen and (max-width: 768px) {
	article {
		background: url(../img/bg-content-sp.jpg) no-repeat center top;
		background-size: cover;
		padding-top: 12rem;
	}
}
/* ---- base-width ---- */
.base-width {
	width: 88rem;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 768px) {
	.base-width {
		width: auto;
	}
}
/* ---- page-top ---- */
#page-top {
    position: fixed;
	bottom: 1rem;
	right: 1rem;	
	z-index: 999;	
}
#page-top a {
	background: var(--navy);
	border-radius: 50%;
	color: #fff;	
	font-size: 1.6rem;
	width: 3.6rem;
	height: 3.6rem;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	padding-left: 0.1rem;
}
@media screen and (max-width: 768px) {

}



/* -------------------------------------------

style

------------------------------------------- */
/* ---- more ---- */
.more {
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	width: 38rem;
	height: 7rem;
	background: linear-gradient(176deg,#aa0000,#ef2632,#aa0000);
	border-radius: 0.5rem;
	font-size: 1.8rem;
	padding-bottom: 0.2rem;
	box-shadow: 0.2rem 0.2rem 0.2rem rgba(0,0,0,0.1);
	letter-spacing: 0.1em;
	position: relative;
	margin: 0 auto;
	font-weight: 600;
}	
.more::before {
	content: "";
	width: 6rem;
	height: 0.1rem;
	background: #fff;
	position: absolute;
	right: 0;
	top: 50%
}
.comingsoon {
	pointer-events: none;
}
@media screen and (max-width: 768px) {
	.more {
		width: 100%;
	}
}

.btn_wrap{
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}
/* @media screen and (max-width: 768px) {
	.btn_wrap{
		display: none;
	}
} */

.btn_wrap .more-wrap{
	width: 32%;
}
.btn_wrap .more-wrap .more{
	width: 100%;
	font-size: 1.6rem;
	text-align: center;
	line-height: 1.2;
}
.btn_wrap .more::before {
	width: 4rem;
}

.more-wrap.sp{
	margin-top: 10px;
	margin-bottom: 25px;
}




/* -------------------------------------------

class

------------------------------------------- */
p.notice {
	font-size: 1.2rem;
	margin-top: 0.5rem;
}
/* ---- display ---- */
@media screen and (min-width: 769px) {
	.sp {
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.pc {
		display: none !important;
	}
}



/* -------------------------------------------

fade

------------------------------------------- */
.fade {
	opacity: 0;
	transform: translateY(2rem);
}
.fade.is-animation {
    animation: fade 0.5s ease;
    animation-fill-mode: both;
}
@keyframes fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}