@charset "utf-8";

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-style: normal;
	vertical-align: baseline;
	-webkit-font-smoothing: antialiased;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

html,
body {
	width: 100%;
	height: 100%;
	font-family: 'Noto Serif JP', '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
	font-weight: 200;
	vertical-align: baseline;
	color: white;
	/* background-color: black; */
	overscroll-behavior-y: none;
}

html {
	font-size: 62.5%;
	overflow-y: scroll;
}

* {
	box-sizing: border-box;
}


img {
	pointer-events: none;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-touch-callout: none;
	-moz-user-select: none;
	user-select: none;
	max-width: 100%;
}

ul {
	padding-left: 0;
}

li {
	list-style: none;
}


p.bold {
	font-weight: bold;
}

@media (max-width: 956px) {
	.pconly {
		display: none;
	}
}

@media (min-width: 956px) {
	.sponly {
		display: none;
	}
}

@media screen and (max-width: 1024px) {
	.br-pc {
		display: none;
	}
}

@media screen and (min-width: 956px) {
	.br-sp {
		display: none;
	}
}

.newsBox::-webkit-scrollbar {
	width: 10px;
	scrollbar-color: black #606060;
}

.newsBox::-webkit-scrollbar-thumb {
	opacity: 0.4;
}

.scroll_bar {
	scrollbar-width: auto;
	scrollbar-color: black #606060;
}

/************************
common
************************/

html,
body {
	width: 100%;
	height: 100%;
	display: flex;
}

body {
	margin: 0 auto;
	flex-direction: column;
	background-color: black;
}


p {
	overflow-wrap: break-word;
	word-break: break-word;
}

a:hover {
	filter: alpha(opacity=50);
	opacity: 0.5;
}

a {
	color: black;
}


main {
	border-bottom: none;
	width: 100%;
	margin: 0 auto;
	flex: 1;
	min-height: 1px;
	max-width: 1500px;
}


@media screen and (max-width:956px) {

	body {
		min-width: 100%;
		width: 100%;
		font-size: 1.6rem;
		width: calc(100vw - calc(100vw - 100%));
	}

	.headbox {
		width: 100%;
		height: 70px;
		background: url(../images/headback.jpg) center bottom no-repeat;
		background-size: cover;
	}

}



.home {
	color: #849eb9;
	margin: 100px auto;
	text-align: center;
}

#wrap {
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
}


/*************************
*ふんわり
*************************/
body,
#wrap {
	animation: fadeIn 2s ease 0s 1 normal;
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}


/*************************
*コンテンツふんわり
*************************/

.inview {
	transform: translateY(50px);
	opacity: 0;
	transition: transform 2s, opacity 2s;
}

.inview.show {
	transform: translateY(0);
	opacity: 1;
}


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

footer {
	background: url(../images/back_d.jpg) top center no-repeat;
	background-size: cover;
	padding-top: 300px;
	padding-bottom: 20px;
	opacity: 0.8;
}

.credit p {
	font-size: 15px;
	line-height: 150%;
	color: white;
	margin-bottom: 0;
	line-height: 2;
	font-family: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", "Shippori Mincho", serif;
	text-align: center;
}

@media screen and (max-width:956px) {
	footer {
		padding-top: 20rem;
		padding-bottom: 1rem;
	}
}


/*************************
*sns
*************************/

.sns {
	width: 50%;
	margin: 0 auto 10px;
}

.sns ul {
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.sns li {
	padding: 10px;
	margin: 0;
	color: white;
	text-align: center;
}

.sns li img {
	width: 50%;
}

@media screen and (max-width:956px) {
	.sns {
		width: 40%;
		margin-bottom: 0;
	}
}



/*************************
*Menu 2
*************************/

.menu {
	height: 20px;
	position: fixed;
	right: 20px;
	top: 20px;
	width: 30px;
	z-index: 2000;
}

.menu__line {
	background: #fff;
	display: block;
	height: 2px;
	position: absolute;
	transition: transform .3s;
	width: 100%;
}

.menu__line--center {
	top: 9px;
}

.menu__line--bottom {
	bottom: 0;
}

.menu__line--top.active {
	top: 8px;
	transform: rotate(45deg);
}

.menu__line--center.active {
	transform: scaleX(0);
}

.menu__line--bottom.active {
	bottom: 10px;
	transform: rotate(135deg);
}

/*gnav*/
.gnav {
	background: rgba(0, 0, 0, 1);
	display: none;
	height: 100%;
	position: fixed;
	width: 100%;
	z-index: 1999;
}

.mHead {
	width: 100%;
	background: url(../images/menuback.jpg) bottom center no-repeat;
	background-size: cover;
	margin-bottom: 120px;
}

.mHead img {
	max-width: 35%;
	margin-top: 4%;
}

.gnav__wrap {
	height: 100%;
	position: absolute;
	width: 100%;
	text-align: center;
	overflow: scroll;
	scrollbar-width: none;
}

.gnav__wrap::-webkit-scrollbar {
	display:none;
   }

.gnav__menu li {
	font-family: Didot, 'Bodoni MT', 'Noto Serif JP', 'URW Palladio L', P052, Sylfaen, '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif; 
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 2rem;
}

.gnav__menu__item {
	margin: 40px 0;
}

.gnav__menu__item a {
	color: #a20000;
	font-size: 1.6em;
	text-decoration: none;
	transition: .5s;
	line-height: 1.45;
}

.gnav__menu__item a:hover {
	
}

.gnav__menu li.go {
	color: #ffffff4d;
	font-size: 2.5em;
	line-height: 1.67;
}

.gnav .sns {
	width: 100%;
	margin: 0 auto 50px;
}

.gnav .sns ul {
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin: 0;
}

.gnav .sns li {
	padding: 10px;
	margin: 0;
	color: white;
	text-align: center;
}

.gnav .sns li img {
	width: 50%;
}

@media screen and (max-width:956px) {
	.gnav .sns {

		margin-bottom: 30px;

	}
}


@media screen and (max-width:956px) {

	.menu {
		top: 2.5%;
		right: 3%;
	}

	.gnav__menu__item {
		margin: 20px 0;
		font-size: 12px;
	}

	.mHead {
		/* height: 17%; */
		margin-bottom: 200px;
	}

	.mHead img {
		max-width: 68%;
		margin-top: 6%;
	}

	.bannerBox {
		width: 55%;
	}

	.gnav__menu li {
		font-size: 1.6rem;
	}

	.gnav__menu li.go {
		font-size: 1.7em;
	}

}


@media screen and (max-width:500px) {

	.menu {
		top: 3%;
	}

	.mHead {
		margin-bottom: 50px;
	}

	.gnav__menu li {
		font-size: 1.3rem;
	}

	.gnav__menu li.go {
		color: #ffffff4d;
		font-size: 2rem;
		line-height: 1.67;
	}



}


/*************************
*Menu decoration
*************************/

.gnav__menu a {
	display: inline-block;
	position: relative;
	overflow: hidden;
	color: #a20000;
}

.gnav__menu a:after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #a20000;
	transform: translate(-100%, 0);
	transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
	content: "";
}

.gnav__menu a:hover:after {
	transform: translate(0, 0);
	opacity: 1;
}


/*************************
*magnific modal
*************************/

/* -- Fade Animation -- */
.mfp-fade.mfp-bg {
    opacity: 0;
    transition: all .15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: .8;
}

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    transition: all .15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}


.mt50 {
	margin-top: 50px;
}