@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/

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,
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,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
	font-family: "Noto Sans Japanese", "Noto Sans", "Hiragino Kaku Gothic ProN", "Koburina Gothic W3 JIS2004", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "HelveticaNeue", "ＭＳ Ｐゴシック", sans-serif;
	font-size: 62.5%;
}

/* @import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css); */

body {
	animation: fadeIn 2s ease 0s 1 normal;
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
	animation: fadein 1s forwards;
}

@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}

footer {
	margin: 0 auto;
	padding: 20px;
	text-align: center;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	width: 100%;
  height: auto;
}

a {
	text-decoration: none;
	color: #959595;
}

/* :rootのCSS変数の宣言 */
:root {
	--deepbk: #232323;
	--bk: #212121;
	--mdbk: #959595;
	--wh: #fff;
	--mdwh: #f6f6f6;
	--ltwh: #f9f9f9;
}

/* パンくず */
.Breadcrumb {
	padding: 1em;
	font-size: 10px;
	color: var(--mdbk);
	max-width: 1400px;
	width: 100%;
	margin: 0 0 0 auto;
}

@media only screen and (max-width: 640px) {
	.Breadcrumb {
		font-size: 10px;
		height: 30px;
	}
}

@media only screen and (min-width: 640px) and (max-width: 1024px) {
	.Breadcrumb {
		font-size: 16px;
		height: 50px;
	}
}

.Breadcrumb-ListGroup {
	display: flex;
}

.Breadcrumb-ListGroup-Item-Link[href]:hover {
	opacity: 0.5;
}

.Breadcrumb-ListGroup-Item:last-child {
	color: var(--bk);
	font-weight: 500;
}

.Breadcrumb-ListGroup>*+* {
	margin-left: 0.5em;
}

.Breadcrumb-ListGroup>*+*::before {
	content: ">";
	margin-left: 0.75em;
	margin-right: 0.75em;
}

.Breadcrumb a:hover {
	opacity: 0.5;
	transition: 0.3s;
}

@media screen and (max-width:768px) {
	.Breadcrumb {
		/* はみ出し部分をスクロールする */
		overflow-x: scroll;

		/* テキストを改行しないようにする */
		word-break: keep-all;
		white-space: nowrap;

		/* スクロールの動きを滑らかにする */
		-webkit-overflow-scrolling: touch;
	}
}

/* TOPへ戻る */
#page_top {
	position: fixed;
	bottom: 30px;
	right: 20px;
	width: 100px;
}

@media only screen and (max-width: 640px) {
	#page_top {
		bottom: 10px;
		right: 10px;
		width: 50px;
	}
}

/* ページレイアウト */
.all__warp {
	max-width: 1600px;
	width: 100%;
	padding: 0 0 0 250px;
	margin: 50px auto;
}

@media only screen and (max-width: 640px) {
	.all__warp {
		padding: 0;
		margin: 100px auto 50px;
	}
}

@media only screen and (min-width: 640px) and (max-width: 1024px) {
	.all__warp {
		padding: 0;
		margin: 130px auto;
	}
}

.title {
	padding: 80px 50px 10px;
	font-size: 32px;
	font-weight:normal;
	font-family: "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media only screen and (max-width: 640px) {
	.title {
		font-size: 24px;
		padding: 50px 0 10px;
		text-align: center;
	}
}

@media only screen and (min-width: 640px) and (max-width: 1024px) {
	.title {
		padding: 50px 0 10px;
		text-align: center;
	}
}

.subtitle {
	padding: 5px 50px 80px;
	font-size: 16px;
	font-weight: 400;
	color: var(--mdbk);
	letter-spacing: 0.05em;
	
}


@media only screen and (max-width: 640px) {
	.subtitle {
		padding: 10px 0 50px;
		text-align: center;
	}
}

@media only screen and (min-width: 640px) and (max-width: 1024px) {
	.subtitle {
		padding: 10px 0 50px;
		text-align: center;
	}
}



.title-season {
	padding: 80px 50px 10px;
	font-size: 18px;
}

@media only screen and (max-width: 640px) {
	.title-season {
		font-size: 14px;
		padding: 50px 0;
		text-align: center;
	}
}

@media only screen and (min-width: 640px) and (max-width: 1024px) {
	.title-season {
		padding: 50px 0;
		text-align: center;
	}
}


/* footer {
    width: 100vw;
    position: fixed;
    bottom: 0;
    left: 0;
} */