@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Staatliches&family=Bevan&family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/* CSS Document */

/* **************************
  html,body,img
************************** */
html {
	font-size: 62.5%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
body {
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	color: #fff;
	font-size: 1.4rem;
	letter-spacing: 0.1em;
	line-height: 1.4;
	position: relative;
	background-color:#000;
	background-position: center;
	background-attachment: fixed;
	background-size: cover;
	background-repeat: repeat-x;
}
body::before {
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-1;
	width:100%;
	height:100vh;
	background-repeat:no-repeat;
	background-position:50% 100%;
	background-size:cover;
	background-image: url("../images/bg_sp.jpg");
}
img { display: block; }
.FtL { float:left; }
.FtR { float:right; }
.clearfix::after { content:''; display: block;  clear:both; }

/* **************************
 Switch Image
************************** */
.img_pc { display: none; }
.img_sp { display: block; }

/* **************************
  Link
************************** */
a { color: #fff; }
.anc { position: relative; top: -90px; display: block; z-index:-10; }

/* **************************
  header nav
************************** */
header {
	width: 100%;
	position: fixed;
	z-index: 100;
	transition: all .5s ease-out;
	min-height: 52px;
	background:none;
	margin:0 auto;
}
header.bgchange {
	background:#444;
}
header #logo-25th {
	max-width: 130px;
	position: absolute;
	top: 10px;
	left: 15px;
	z-index: 200;
}
header #logo-25th img {
	width: 100%;
	height: auto;
}
header a {
	text-decoration: none;
	color: #fff;
}
header nav {
	width: 100%;
	margin: 0 auto;
	position: relative;
}
header nav .inner {
	display: none;
	padding-top:70px;
	/* アクセス時の対応 */
	height:100vh;
	background:#000;
}
header #nav_sns {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.0rem;
	padding: 36px 0 16px;
}
header #nav_sns p {
	padding-right: 14px;
	font-size: 1.2rem;
}
header #nav_sns ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
header #nav_sns li { padding-right: 15px; }
header #nav_sns li:last-child { padding-right: 0px; }

header nav #nav_link { text-align: center; }
header nav #nav_link a {
	padding: 16px 0;
	display: block;
	white-space: nowrap;
}
header nav #nav_link span {
	display: block;
	font-size: 1.4em;
	margin-bottom: 0.2em;
	font-family: 'Staatliches', sans-serif;
}

/* ハンバーガー */
#nav_toggle { display: block; }
#nav_toggle, #nav_toggle span {
	display: inline-block;
	transition: all .2s;
	box-sizing: border-box;
}
#nav_toggle {
	position: absolute;
	width: 32px;
	height: 26px;
	top: 12px;
	right: 20px;
}
#nav_toggle span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #fff;
	border-radius: 4px;
}
#nav_toggle span:nth-of-type(1) { top:8px; }
#nav_toggle span:nth-of-type(2) { opacity:0; }
#nav_toggle span:nth-of-type(3) { bottom:8px; }
#nav_toggle.active span:nth-of-type(1) { transform: translateY(4px) rotate(-45deg); }
#nav_toggle.active sspan:nth-of-type(2) { opacity:0; }
#nav_toggle.active span:nth-of-type(3) { transform: translateY(-4px) rotate(45deg); }

/* **************************
  contents
************************** */
#contents {
	width: 94%;
	margin: 0 auto;
	padding-top:60px;
}
#contents img { width: 100%; height: auto; }

/* **************************
  h tag title
************************** */
h2.titles {
	color: #ecdb7e;
	text-align: center;
	font-family: "Outfit", sans-serif;
	font-weight: 500;
	font-size: 3rem;
	letter-spacing: 0.05em;
	line-height:1;
	margin-bottom:5px;
	background: linear-gradient(135deg, #af7f2f 35%, #ecdb7e 50%, #af7f2f 65%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
p.subtitle {
	text-align:center;
	font-size: 1.8rem;
	color:#ccc;
	font-weight:normal;
	line-height:1.4;
	margin-bottom:30px;
}

/* **************************
  footer
************************** */
footer {
	width: 94%;
	margin: 0 auto;
	padding-bottom:50px;
	color:#fff;
	font-size: 1rem;
	letter-spacing:0.05em;
	text-align: center;
}
footer #footer_copyrightsns {
	padding-top:20px;
	padding-bottom:30px;
}
footer #footer_copyrightsns .inner {
	display: flex;
	justify-content: center;
	flex-direction: column-reverse;
}
footer #footer_copyrightsns #footer_sns ul {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom:10px;
}
footer #footer_copyrightsns #footer_sns li { margin:0 5px; }
footer .copyright { color:#999; }

