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

/* ==========================================================================
   RESET
   ========================================================================== */
/*
* 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;
	   background: #0A0000;
}
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;
}

input, textarea {
    padding: 0;
    border: none;
    border-radius: 0;
    outline: none;
    background: none;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-appearance: none;
    max-width: 100%;
    cursor: pointer;
}

button, input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
}

input[type="radio"] {
    height: 0;
    width: 0;
    opacity: 0;
}
select{
    outline:none;
    text-indent: 0.01px;
    text-overflow: '';
    background: none transparent;
    vertical-align: middle;
    font-size: inherit;
    color: inherit;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
}
select option{
    background-color: #fff;
    color: #333;
}
select::-ms-expand {
    display: none;
}
select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #828c9a;
}
/* add */
::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

* {
    box-sizing: border-box;
}

audio, canvas, iframe, img, svg, video {
    vertical-align: middle;
}

a, a:hover {
    color: inherit;
    text-decoration: none;
}

a:focus{
	outline:none;
}

b {
    font-weight: bold;
}

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

sup{
	font-size: 1rem;
	margin:0 3px 0 0;
	vertical-align: top;
}


/* ==========================================================================

   ========================================================================== */
html {
    font-family: 'Noto Serif JP', serif, "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝";
    font-size: 62.5%;
    -webkit-text-size-adjust: 100%;
}


.disp-pc {  display: block;  }
.disp-sp {  display: none!important;  }

@media only screen and (max-width: 768px) {
	.disp-pc {  display: none!important;  }
	.disp-sp {  display: block!important;  }
}

#wrapper {
	width: 100%;
	overflow: hidden;
	color: #fff;
	letter-spacing:2px;
}

.inner{
	/*! max-width: 1400px; */
	/*! margin: 0 auto; */
}

@media only screen and (max-width: 768px) {
	.inner {
		max-width: 100%;
	}
}

.text{
	font-size: 1.4rem;
	line-height: 1.8;
}

@media only screen and (max-width: 768px) {
	.text{
		font-size: 1.3rem;
		line-height: 1.8;
	}
}

/*------------------------------------------------------------
	fadein
------------------------------------------------------------*/
.fadein {
    opacity : 0;
    transform : translate(0, 50px);
    transition:all 0.5s;
}
.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}


/* ==========================================================================
 * #gHeader
 * ========================================================================== */
#gHeader {
	width: 100%;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	border-bottom: 1px solid #1e1515;
	background: #0A0000;
	z-index: 55;
}

#gHeader.fixed {
  left: 0;
  position: fixed;
  top: 0;
}

.gHLogo {
	display: block;
	width: 120px;
	margin: 25px 0 0 calc(45/1200 *100vw);
}

.entrybtn{
  display: none;
}

@media only screen and (max-width: 768px) {
    #gHeader {
		height: 55px;
		position: fixed;
		top: 0;
		background: #0A0000;
		z-index: 2500;
    }

    .gHLogo {
      width: 58px;
			position: absolute;
			top: 15px;
			left: 13px;
      margin: 0;
    }

	.entrybtn{
		background: #7b491d;
		color: #fff;
		display: flex !important;
		align-items: center;
		height: auto;
		width: 56.5px;
		justify-content: center;
		margin: 0 56px 0 auto;
	}
}


/* ==========================================================================
   gNavSwitch
   ========================================================================== */
@media only screen and (max-width: 768px) {
	#gNavSwitch {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 56px;
		height: 56px;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 1111;
	}

	#gNavSwitch .gNavSwitch_bars {
		width: 28px;
		height: 17px;
		position: relative;
		transition: all 400ms;
	}

	#gNavSwitch .gNavSwitch_bars span {
		display: block;
		width: 28px;
		height: 2px;
		background: #fff;
		position: absolute;
		left: 0;
		transition: all 400ms;
	}

	#gNavSwitch .gNavSwitch_bars span:nth-child(1) {  top: 0px;  }
	#gNavSwitch .gNavSwitch_bars span:nth-child(2) {  top: 8px;  }
	#gNavSwitch .gNavSwitch_bars span:nth-child(3) {  bottom: 0;  }

	/* active */
	#gNavSwitch.active {
			background: transparent;
	}

	#gNavSwitch.active .gNavSwitch_bars span {
		height: 2px;
	}

	#gNavSwitch.active .gNavSwitch_bars span:before {
			opacity: 0;
	}

	#gNavSwitch.active .gNavSwitch_bars span:after {
			width: 35px;
	}
	#gNavSwitch.active .gNavSwitch_bars span:nth-child(1) {  transform: rotate(-45deg); top: 4px;  }
	#gNavSwitch.active .gNavSwitch_bars span:nth-child(2) {  opacity: 0; }
	#gNavSwitch.active .gNavSwitch_bars span:nth-child(3) {  transform: rotate(45deg); bottom: 11px;  }
}

/* ==========================================================================
   #gNav
   ========================================================================== */
#gNav {
	width: calc(935/1200 * 100vw);
	margin: 0 0 0 auto;
    color: #fff;
	/*! display: flex; */
	/*! align-items: center; */
}

#gNav .gNav_list {
	width: 100%;
	display: flex;
}

#gNav .gNav_item {
}

#gNav .gNav_item-08 {
	background: #7B491D;
}

#gNav .gNav_item {
	font-size: 1.2rem;
	width: 20%;
	height: 99px;
	letter-spacing: 2px;
	transition: all 400ms;
	position: relative;
}

#gNav .gNav_item_icon {
    width: 30px;
    height: auto;
    display: block;
    margin: 0 auto 5px auto;
}

#gNav .gNav_item a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* hover */
#gNav .gNav_item:hover {
	color: #BB9E79;
	cursor:pointer;
}

#gNav .gNav_item-08:hover {
	color: #fff;
	background: #BB9E79;
}

/*current*/
#gNav span{
	position: relative;
}

.current span:after{
	content: "";
	position: absolute;
	width: 90%;
	margin: 0 auto;
	bottom: -10px;
	left: 0;
	right: 0;
	border-bottom:1px solid #BB9E79;
}

/*comingsoon*/
.comingsoon{
	color:#aaa;
	pointer-events: none;
}


@media only screen and (max-width: 768px) {
	#gNav {
		width: 100%;
		background: #005a49;
		position: fixed;
		top: 0;
		right: -100%;
		z-index: 1000;
		transition: all 400ms;
	}

	#gNav.active {
		right: 0;
	}

	#gNav_ov {
		width: 100%;
		height: 100vh;
		background: rgba(70, 70, 70, .8);
		position: fixed;
		top: 0;
		right: 0;
		z-index: 999;
	}

	#gNav .gNav_inner {
		/*height: calc(100vh - 80px);*/
		height: 100vh;
		background: #302823;
		padding: 35px 0 20px 0;
		overflow-y: scroll;
	}

	#gNav .menu_title{
		text-align: center;
		font-size: 1.4rem;
		padding: 0 0 8vw 0;
	}

	#gNav .gNav_list {
		width: 100%;
		display: block;
		background: #19120d;
	}

	#gNav .gNav_item{
		display: flex;
		justify-content: flex-start;
		align-items: center;
		width: 100%;
		height: 50px;
		padding: 0 45px 0;
		border-bottom: 1px solid #302823;
		font-size: 1.2rem;
		margin-bottom: 0;
	}

	#gNav .gNav_item a{
		left: 13vw;
		justify-content:flex-start;
	}

	#gNav .gNav_item_icon {
		width: 32px;
		margin: 0 0 0 0;
	}

	/* hover */
	#gNav .gNav_item:hover {
		transform: scale(1.0);
	}

	/* icon */
	#gNav .gNav_item{
		position: relative;
	}

	/* icon -arrow */
	#gNav .gNav_item:after {
		content: '';
		display: block;
		width: 33px;
		height: 18px;
		background: url(../img/icon_arrow.png) no-repeat center center / contain;
		position: absolute;
		top: 16px;
		right: 55px;
	}

	.current span:after{
		border-bottom:none;
	}
}

/* ==========================================================================
 * pageMv
 * ========================================================================== */
.pageMv {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 354px;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    margin: 101px 0 0 0;
}

.pageMv_head {
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .pageMv {
        height: 51vw;
        background-position: center top;
        margin: 55px 0 0 0;
    }

    .pageMv_head {
        margin-bottom: 15vw;
    }
}

/* */
.mdl-pageTitle {
    display: inline;
}

.mdl-pageTitle_text01 {
    color: #fff;
    font-size: 3.6rem;
    letter-spacing: 0.1em;
    padding: 0 0 20px 0;
		-moz-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
		-webkit-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
		-ms-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
		text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
}

@media only screen and (max-width: 768px) {
    .mdl-pageTitle_text01 {
        font-size: 2.3rem;
        padding: 0 0 5px 0;
    }

    .mdl-pageTitle_text02 {
        font-size: 1.25em;
        margin: 15px 0 0 0;
    }
}

/* ====================
 * #gFooter -btn
 ==================== */
.btnarea{
	width: calc(370/1400 * 100%);
}

.btn {
	color: #BB9E79;
	font-size: 1.2rem;
	letter-spacing: 0.2em;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #BB9E79;
	overflow: hidden;
	flex-flow: column nowrap;
	height: 90px;
	transition: all 300ms;
}

.btn:hover {
	color: #fff;
	background: #BB9E79;
}

.btnareaB{
	width: 100%;
	margin: 4vw auto 0 auto;
}

.btnareaB .btn {
    color: #fff;
    font-size: 1.6rem;
    letter-spacing: 0.2em;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #7B491D;
  	border: none;
    overflow: hidden;
    flex-flow: column nowrap;
    height: 90px;
    transition: all 300ms;
}

.btnareaB .btn:hover{
	background: #BB9E79;
}

.btnB a{
	position: relative;
	font-size: 1.3rem;
	letter-spacing: 0;
}

.btnB a:after {
		content: '';
		display: block;
		width: 26px;
		height: 18px;
		background: url(../img/icon_arrow.png) no-repeat center center / contain;
		position: absolute;
		top: 0;
		right: -2.2vw;
}

@media only screen and (max-width: 768px) {
	.btnarea{
		width: 80%;
		margin:0 auto;
	}

	#gFooter .foot_container .footbtn{
		width: 75%;
		margin: 0 auto;
	}

	.btn {
		font-size: 1.25rem;
		height: 67.5px;
	}

	.btnareaB{
		width: 80%;
		margin: 4vw auto 0 auto;
	}

	.btnareaB .btn{
		font-size: 1.25rem;
		height: 67.5px;
	}

	.btnB{
		position: relative;
	}

	.btnB a{
		line-height: 1.4;
		letter-spacing: 3px;
	}

	.btnB a:after {
		background: none;
	}

	.btnB:after {
		content: '';
		display: block;
		width: 20px;
		height: 18px;
		background: url(../img/icon_arrow.png) no-repeat center center / contain;
		position: absolute;
		top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
		right:3vw;
	}
}




/* ====================
 * #gFooter -other
 ==================== */
#gFooter{
	position: relative;
}

#gFooter .foot_container{
	width: 90%;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	margin: 6vw auto 3vw auto;
}

#gFooter .foot_container .footlogo{
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: top;
}

#gFooter .foot_container .footlogo .gFLogo{
	display: block;
	width: 120px;
	margin: 0 76px 0 0;
}

#gFooter .foot_container .foottext{
	font-size: 1.1rem;
	line-height: 1.8;
}

@media only screen and (max-width: 768px) {
	#gFooter .foot_container .foottext{
		font-size: 1rem;
		line-height: 1.8;
	}

	#gFooter .foot_container .footlogo .gFLogo{
		width: 40vw;
		margin: 0 auto 10vw auto;
	}

	#gFooter .foot_container .foottext{
		font-size: 1.2rem;
		line-height: 2;
		text-align: left;
		display: inline-block;
		margin: 0 auto;
	}
}


#gFooter .fNav_container{
	/*! max-width: 1400px; */
	width: 100%;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #281f1f;
	margin: 0 auto;
	padding: 1vw 0;
}

.fNav_container .snsLinkWrap {
	display: flex;
	justify-content: center;
	gap: 1.7vw;
	margin-left: 5.3vw;
}

.fNav_container .snsLinkWrap .snsLink img {
	width: 1.2vw;
}

.fNav_container .gFLogo{
	display: flex;
	flex-flow: row nowrap;
}

.fNav_container .gFLogo ul{
	display: flex;
	flex-flow: row nowrap;
	margin: 0 0 0 3vw;
}

.fNav_container .gFLogo ul li{
	width: calc(101/1400 * 100%);
	margin: 0 20px 0 0;
}

.pagetop {
    display: block;
    width: 29px;
    position: fixed;
    top: auto;
    bottom: 3vw;
    right: calc(30/1400 * 100%);
    z-index: 2000;
}

.pagetop.pageBottom {
    position: absolute;
    bottom: 22vw;
    right: calc(30/1400 * 100%);
}

.copyright {
  font-size: 1.1rem;
  color: #d8bfa4;
	padding: 20px 0;
	margin: 0 3vw 0 0;
  white-space: nowrap;
	letter-spacing: 1px;
}

@media only screen and (max-width: 768px) {
	#gFooter .foot_container{
		max-width: 100%;
		width: 100%;
		margin: 6vw auto 0 auto;
		padding: 0 0 26vw 0;
		align-items: center;
		text-align: center;
	}

	#gFooter .fNav_container{
		max-width: 100%;
		width: 100%;
		flex-flow: row wrap;
		justify-content: space-between;
		margin: 8vw auto;
		align-items: center;
		padding: 6vw 0 0 0;
	}

	#gFooter .fSns_container {
		border-top: 1px solid #281f1f;
		max-width: 100%;
		width: 100%;
		padding-top: 8vw;
	}

	#gFooter .fSns_container .snsLinkWrap {
		display: flex;
		justify-content: center;
		gap: 12vw;
	}

	#gFooter .fSns_container .snsLinkWrap .snsLink img {
		width: 8vw;
	}

	#gFooter .foot_container .footlogo{
		flex-flow: column;
		justify-content: center;
		margin: 0 auto 20vw auto;
		width: 90%;
	}

	.fNav_container .gFLogo ul{
		width: 80%;
		margin: 0 auto;
		justify-content: space-between;
	}

	.fNav_container .gFLogo ul li{
		width: 26%;
		margin: 0 0 0 0;
	}

	.pagetop {
		width: 30px;
		bottom: 20px;
		right: calc(30/750 * 100%);
	}

	.pagetop.pageBottom {
		top: auto;
		bottom: 30vw;
		right: calc(30/750 * 100%);
	}

	.copyright {
		font-size: 0.9rem;
		padding: 22px 0 0 0;
		width: 100%;
		text-align: center;
	}
}

@media only screen and (max-width: 768px) {
	.footerNav{
    	width: 100%;
    	padding: 20vw 0 0 0;
	}

	.footerNav .menu_title{
		font-size: 1.4rem;
	}

	#gfootNav .gNav_inner .gNav_list{
	  border-top: 1px solid #281f1f;
		display: flex;
		flex-flow:column;
		text-align: left;
		font-size: 1.4rem;
		line-height: 1.6;
		margin: 5vw 0 0 0;
		letter-spacing: 3px;
	}

	#gfootNav .gNav_inner .gNav_list .gNav_item a{
		display: block;
		border-bottom: 1px solid #281f1f;
		color: #D8BFA4;
		padding: 3vw 5vw;
		position: relative;
	}

	#gfootNav .gNav_inner .gNav_list .gNav_item a:after{
		content: "";
		position: absolute;
		width: 10px;
		height: 10px;
		border-style: solid;
		border-width: 1px;
		border-color: transparent transparent #D8BFA4 #D8BFA4;
		transform: rotate(225deg);
		right: 7vw;
		top:  4vw;
	}

	#gfootNav .gNav_inner .gNav_list .gNav_item.comingsoon a{
		color:#aaa;
		pointer-events: none;
		pointer-events: none;
	}

	#gfootNav .gNav_inner .gNav_list .gNav_item.comingsoon a:after{
		border: none;
	}

}


/* ==========================================================================
   pankuzu
   ========================================================================== */
.pankuzu {
  border-bottom:1px solid #281f1f;
	padding: 0 0 2vw 0;
}

.pankuzu a{
	color: #D8BFA4;
}

.pankuzu a:hover{
	color: #eed9be;
  transition: all 300ms;
}

.pankuzu ul{
	width: 90%;
  margin:0 auto;
	display: flex;
  flex-flow: row nowrap;
}

.pankuzu ul li a{
	position: relative;
	padding: 0 1.5vw 0 0;
	margin: 0 0.7vw 0 0;
	font-size: 1.1rem;
}

.pankuzu ul li:not(:last-of-type) a:after{
	content: ">";
	position: absolute;
	right: 0;
	top: 0.2vw;
	color: #666;
	font-size:10px;
	line-height: 1;
	font-weight: bold;
}


@media only screen and (max-width: 768px) {
	.pankuzu {
		max-width: 100%;
		width: 100%;
		padding: 0 0 4vw 0;
		overflow-x: auto;
		white-space: nowrap;
	}

	.pankuzu ul{
		width: 90%;
		margin:0 auto;
	}

	.pankuzu ul li a{
		padding: 0 0.7vw 0 0;
		font-size: 1.1rem;
		line-height: 2.4;
	}
	.pankuzu ul li:not(:last-of-type) a {
		padding: 0 1.5vw 0 0;
	}

	.pankuzu ul li:not(:last-of-type) a:after{
		position: absolute;
		right: -1.7vw;
		top: 0;
		font-size:1rem;
		line-height: 1.6;
	}
	.pankuzu ul li:not(:first-of-type) a {
		margin-left: 0.6rem;
	}
}


/* ==========================================================================
   Helper classes
   ========================================================================== */
.tc { text-align: center!important; }
.tl { text-align: left!important; }
.tr { text-align: right!important; }

.mb10 { margin-bottom: 10px; }
.mb20 { margin-bottom: 20px; }
.mb30 { margin-bottom: 30px; }
.mb40 { margin-bottom: 40px; }
.mb50 { margin-bottom: 50px; }
.mb60 { margin-bottom: 60px; }
.mb70 { margin-bottom: 70px; }
.mb80 { margin-bottom: 80px; }
.mb90 { margin-bottom: 90px; }
.mb100 { margin-bottom: 100px; }
.mt10 { margin-top: 10px; }
.mt20 { margin-top: 20px; }
.mt30 { margin-top: 30px; }
.mt40 { margin-top: 40px; }
.mt50 { margin-top: 50px; }
.mt60 { margin-top: 60px; }
.mt70 { margin-top: 70px; }
.mt80 { margin-top: 80px; }
.mt90 { margin-top: 90px; }
.mt100 { margin-top: 100px; }

.clearfix:after {
    content: "";
    clear: both;
    display: block;
}

.hidden {
    display: none !important;
    visibility: hidden;
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

.invisible {
    visibility: hidden;
}
