@charset "utf-8";

/*Google Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Libertinus+Mono&family=Shippori+Mincho:wght@400;500;600;700;800&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');
/*Font Awesome*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/* common color set*/
:root {
	--primary-color: #e84133;
	--primary-inverse-color: #232323;	
	--secondary-color: #aa8657;
	--secondary-inverse-color: #fff;
	--accent-color: #aa8657;
	--accent-inverse-color: #fff;
}

/* animate.css */
.animate__animated{
opacity: 0;
}

/*透過のキーフレーム設定*/
@keyframes opa-kf {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/********** 全体の設定 **********/
body * {box-sizing: border-box;}

html,body {
	height: 100%;
	font-size: 14px;
}
	/*画面幅900px以上*/
	@media screen and (min-width:900px) {
	html, body {
		font-size: 15px;
	}
	}

body {
	margin: 0;
	padding: 0;
	font-family: 'Shippori Mincho', '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
	-webkit-text-size-adjust: none;
	line-height: 1.8em;
	color: var(--primary-inverse-color);
	overflow-x: hidden;
	/*
	background: url("../images/anni40th-bg.png") repeat center top / 1440px auto;
	background-attachment: fixed;
	*/
}

/*Reset CSS*/
figure {margin: 0;}
dd {margin: 0;}
nav ul {list-style: none;}
nav,ul,li,ol {margin: 0;padding: 0;}
section li {margin-left: 1rem;}

/*その他初期設定*/
table {border-collapse:collapse;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
video {max-width: 100%;}
iframe {width: 100%;}
input {font-size: 1rem;}

/*link*/
a {
	color: inherit;
	transition: all 0.5s 0s ease;
}
a:hover {
	text-decoration: none;
	opacity: 0.8	!important;
}

/*flexbox*/
.flexbox{
display: flex;
flex-wrap: nowrap;
gap: 10%;
}
.flexbox.flex-clm{
flex-direction: column;
gap: 40px;
}


/********** contents ***********/
.contents {
	background: var(--primary-color);
	padding: 40px;
	position: relative;
	overflow-x: hidden;
}

	/*画面幅600px以上*/
	@media screen and (min-width:600px) {
/*	
	@media screen and (min-width:720px) {
*/
	.contents{
		max-width: 390px;
		/*
		max-width: 670px;
		*/
		margin: 0 auto;
		overflow-x: visible;
		border-left: 1px solid #000000;
		border-right: 1px solid #000000;
	}
	}

/*h2*/
.contents h2 {
	margin: 0;
	line-height: 1.8;
	font-size: 1.6rem;	
	text-align: center;	
}


/********** KV **********/
#home .contents {
	padding: 0;
	height: 100vh;
	height: 100svh;
	display: flex;
	align-items: center;
	}
@media screen and (min-width:600px) {
	#home .contents {
		height: 844px;
		}
}

#home #logo-container {
	flex: 1;
	position: relative;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
#home .logo img {
	display: block;
	margin: 0 auto;
	width:100%;
}
#home h2.open-date{
	width: 100%;
	padding-bottom: 3px;
	color: #f3efe4;
	font-size: 2.2rem;
	font-weight: 900;
	line-height: 1.6em;
}
#home h2.open-date::after{
	display: block;
	content: "";
	width: 58%;
	height: auto;
	margin: 5px auto 0;
	aspect-ratio: 902 / 127;
	background: url("../images/anni40th-kv-cs.png") no-repeat center center / contain;
}

/********** message **********/

@media screen and (max-width:599px) {
	#message{
		margin-top:  -40px;
	}
}
#message  .contents {
/*
	padding: 40px 40px 80px;
*/
	padding: 0 40px 80px;
}
#message  h2 {
	display: block;
	text-align: left;
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.5em;
}
#message  p {
	font-size: 1.05rem;
	font-weight: 700;
}


/********** SNS、アプリ **********/

#social .contents{
	background: #ffffff;
	color: var(--primary-inverse-color);
}

.sns-links {
	width: 70%;
	max-width: 270px;
	list-style: none;
	margin: 0 auto;
	padding: 0;
	align-self: center;
	justify-content: center;
	gap: 20%;
}
.sns-links li{
	margin: 0;
	width: 20%;
	max-width: 72px;
}
#social .btn_dl a{
	width: 85%;
}
.app-links{
	width: 65%;
	margin: 0 auto;
}
.app-links .app-qr{
width: 40%;
}
.app-links .app-osbtn{
width: 60%;
gap: 10px;
}
.app-links-att{
	margin: 0 auto;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}


/********** footer **********/

footer small {font-size: 100%;}
footer {
	font-size: 0.8rem;	
	text-align: center;	
}
footer .flexbox.flex-clm.foot-link-btn{
gap: 20px;
}


/********** ボタン **********/

.btn_base-wh a {
	display: block;text-decoration: none;
	text-align: center;
	padding: 15px 5px;	
	font-size: 1.05rem;	
	background: #ffffff;
	max-width: 320px;
	margin: 0 auto;
}
.btn_base-wh a:hover {
	background: #232323;
	color: #ffffff;
}
.btn_dl a {
	display: block;
	text-decoration: none;
	text-align: center;
	padding: 12px 5px;	
	font-size: 1.2rem;	
	/*
	border-radius: 100px;
	*/
	font-weight: 700;
	color: #aa8657;
	/*
	background: #000000;
	border: 5px solid #aa8657;
	*/
	background: #ffffff;
	border: 1px solid #aa8657;
	max-width: 320px;
	margin: 0 auto;
}
.btn_dl a:hover {
/*
	color: #000000;
	background: #ffffff;
*/
	color: #ffffff;
	background: #aa8657;
}


/********** ドロアメニュー **********/
#menubar {display: none;}
#menubar ul {list-style: none;margin: 0;padding: 0;}
#menubar a {display: block;text-decoration: none;}
.large-screen #menubar {display: block;}
.small-screen #menubar.display-block {display: block;}
#menubar_hdr.display-none {display: none;}

.small-screen #menubar.display-block {
	position: fixed;
	overflow: auto;
	z-index: 100;
	right: 0px;
	top: 0px;
	width: 285px;
	height: 100%;
	padding: 0 2vw 2vw;
	background: var(--secondary-color);
	color: var(--secondary-inverse-color);
	animation: opa-kf 1s both;	
}
.small-screen #menubar nav ul li {
	border: 1px solid var(--secondary-inverse-color);
	margin: 1rem 0;
	border-radius: 5px;
}
.small-screen #menubar a {
	color: inherit;
	padding: 1rem 2rem;
}
.small-screen #menubar a:hover {
	color: var(--secondary-color);
	background: var(--secondary-inverse-color);
}


/********** ハンバーガーアイコン **********/
header{
	position: fixed;
	width: 100%;
	z-index: 100;
}
header .contents{
	padding: 10px 15px 10px 10px;
	height: 52px;
	display: flex;
	justify-content: space-between;
	background: #ffffff;
}
header .contents a{
	width: 53%;
	max-width: 207px;
	height: auto;
}
header .contents a img{
	width: 100%;
}
#menubar_hdr {
	animation: opa-kf 0s 0.2s both;
	/*
	position: fixed;
	*/
	z-index: 101;
	cursor: pointer;
	right: 0px;	
	top: 0px;
	padding: 0;
	width: 16px;	
	height: 14px;
	display: flex;	
	flex-direction: column;	
	justify-content: space-between;
	transform: scale(2);
	transform-origin: right top;
	mix-blend-mode: exclusion;
}
#menubar_hdr span {
	display: block;
	transition: 0.3s;
	border-top: 1px solid #fff;	
}

/*×状態（1＆2本目）*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;
	width: 20px;	
}
#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(3.8px, 5px);
}
#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(3.8px, -5px);
}
#menubar_hdr.ham span:nth-of-type(2){
	display: none;
}

/* ドロア内の×ボタン */
.btn_close{
cursor: pointer;
font-family: "Zen Kaku Gothic New", sans-serif;
font-size: 56px;
font-weight: 300;
}

/********** Splash **********/
body.splash-term {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
	overflow-y: scroll; 
}
#header{
	transform: translateY(-60px);
	opacity: 0;
}
#mv40th-logo{
	opacity: 0;
}
#mv40th-open-date{
	opacity: 0;
}
#message-cont{
	opacity: 0;
}
#splash-movie {
display: block;
	position: fixed;
	width: 100%;
	z-index: 1001;
}
#splash-movie .contents{
	background: var(--primary-color);
  color: #ffffff;
  height: 100vh;
  height: 100svh;
  padding: 0	!important;
}
#splash-movie .splash-slide{
  height: 100vh;
  height: 100svh;
}
#splash-movie .splash-slide div img{
width: 100%;
height: 100vh;
  height: 100svh;
object-fit: contain;
/*
object-fit: cover;
*/
}
#splash-movie .splash-count{
position:absolute;
  width: 100%;
  height: 100vh;
  height: 100svh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  font-family: "Libertinus Mono", monospace;
  font-size: 12rem;
  text-align: center;
  -webkit-text-stroke: 5px #ffffff;
  paint-order: stroke;
  line-height: 1em;
  letter-spacing: -0.1em;
  color: #99794e;
}
@media screen and (min-width:600px) {
	#splash-movie .contents{
		height: 844px;
	}
	#splash-movie .splash-slide{
		height: 844px;
	}
	#splash-movie .splash-slide div img{
		height: 844px;
	}
	#splash-movie .splash-count{
		height: 844px;
	}
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb10 {margin-bottom: 10px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb40 {margin-bottom: 40px !important;}
.mb50 {margin-bottom: 50px !important;}
.mb60 {margin-bottom: 60px !important;}
.x-small {font-size: 0.55em;line-height: 1.5em;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.font-b{font-weight: 700;}
.color-check, .color-check a {color: var(--accent-color);}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}
pre {white-space: pre-wrap;word-wrap: break-word;overflow-wrap: break-word;}

	/*画面幅900px以上*/
	@media screen and (min-width:900px) {

		.ws {width: 48%;display: inline;}
		.sh {display: none;}
		.pc {display: block;}

	}
