@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kaisei+Tokumin:wght@700&display=swap');




/* ----------------------------------------------------------------------------------------------------

base

---------------------------------------------------------------------------------------------------- */
:root {
	--prime: #c80000;
	--font-kaisei: 'Kaisei Tokumin', serif;
}
body {
	/* background: url(../img/texture-2.jpg) center top;
	background-size: 100% auto; */
	background-color: #000;
	/* color: #000; */
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 1.4rem;
	letter-spacing: 0.06em;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.5rem;
	}
}

/* ------ link ------ */
a {
	color: #fff;
	text-decoration: none;
    transition: 0.3s ease-in-out; 
}
a.line {
	text-decoration: underline;
}
a:hover.line {
	text-decoration: none;
}
a:hover {
    opacity: 0.5;
} 
@media screen and (min-width: 769px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}
@media screen and (max-width: 768px) {
    a[href^="tel:"] {
        text-decoration: underline;
    }
}

/* ------ font-size ------ */
html {
    font-size: 0.833vw;
}
@media screen and (max-width: 768px) {
    html {
        font-size: 1.303vw;
    }	
}
@media screen and (max-width: 540px) {
    html {
        font-size: 1.851vw;
    }	
}
@media screen and (max-width: 414px) {
    html {
        font-size: 2.415vw;
    }	
}




/* ----------------------------------------------------------------------------------------------------

layout

---------------------------------------------------------------------------------------------------- */
/* ------ header ------ */
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	padding: 0 8rem 0 2.5rem;
	height: 7.4rem;
	/* background: rgba(255,255,255,0.7); */
	background-color: #c80000;
	z-index: 99;
	padding-top: 0.2rem;
}
header h1 {
	width: 15rem;
	line-height: 1;
	margin-top: -0.6rem;
}
@media screen and (max-width: 768px) {
	header {
		top: 0;
		padding: 0;
		height: 6rem;
		justify-content: center;
	}
	header h1 {
		width: 15rem;
	}	
}

/*  nav  */
.gnav {
	padding-top: 0.2rem;
}
ul.gnav-menu {
	display: flex;
	align-items: center;
}
ul.gnav-menu > li {
	font-weight: bold;
	white-space: nowrap;
	text-align: center;
	line-height: 1.5;
	letter-spacing: 0.1em;
}
ul.gnav-menu > li:not(:last-child) {
	margin-right: 4rem;
}
ul.gnav-menu > li > a {
	display: inline-block;
	position: relative;
	color: #fff;
}
ul.gnav-menu > li span {
	display: block;
	font-size: 1.1rem;
	font-weight: normal;
	color: var(--prime);
	color: #fff;
	letter-spacing: 0;
}
ul.gnav-menu > li > a::before {
	content: "";
	width: 5rem;
	height: 5rem;
	/* background: url(../img/current.png) no-repeat; */
	background-size: 5rem;
	transition: all .3s;
	position: absolute;
	left: calc(50% - 2.5rem);
	top: -6.5rem;
	opacity: 0;
}
ul.gnav-menu > li > a:hover {
	opacity: 1;
}
ul.gnav-menu > li > a:hover::before {
	transform: translateY(1rem);
	opacity: 1;
}


/* ------ footer ------ */
footer {
	background: url(../img/back-footer.jpg) center top;
	background-size: cover;
	color: #fff;
}
footer a {
	color: #fff;
}
footer .wrap {
	display: flex;
	flex-direction: column-reverse;            
	padding: 3rem 8rem 4.5rem;
}
footer .logo {
	width: 8.7rem;
	margin: 5.5rem auto 0;
}
footer nav ul {
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
}
footer nav ul li:not(:last-child) {
	margin-right: 4rem;
}
footer .sns {
	justify-content: flex-end;
	margin-top: 2rem;
}
footer small {
	display: block;
	text-align: center;
	font-size: 1.1rem;
	/* background: #000; */
	padding: 0.8rem 0 0.9rem 0;
}
@media screen and (max-width: 768px) {
	/* footer {
		padding-bottom: 6.4rem;
	} */
	footer .logo {
		width: 11rem;
		margin: 6rem auto 0;
	}
	footer .wrap {
		flex-direction: column-reverse;            

		align-items: center;
		padding: 4rem 0;
	}	
	footer .sns {
		justify-content: center;
		margin-top: 4rem;
	}
	footer nav ul {
		flex-direction: column;
	}
	footer nav ul li {
		text-align: center;
	}
	footer nav ul li:not(:last-child) {
		margin-right: 0;
		margin-bottom: 2.5rem;
	}
	footer small {
		font-size: 1.2rem;
	}
}

/* ------ page-ttl ------ */
.page-ttl {
	background: url(../img/top-kv-1.jpg) no-repeat center / cover;
}
.page-ttl > div {
	background: rgba(0,0,0,0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 29rem;
	padding-top: 10.4rem;
}
.page-ttl h2 {
	color:#fff;
	font-size: 3.6rem;
	line-height: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	/* font-family: var(--font-kaisei); */
}
.page-ttl h2 span {
	font-size: 1.4rem;
	margin-top: 0.4rem;
}
@media screen and (max-width: 768px) {
	.page-ttl > div {
		height: 21rem;
		padding-top: 6rem;
	}
}

/* ------ base-width ------ */
.base-width {
	width: 88rem;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 768px) {
	.base-width {
		width: auto;
	}
}

/* ------ container ------ */
.container {
	margin: 8rem auto 10rem auto;
	width: 88rem;
}
.container .wrap {
	display: flex;
	justify-content: space-between;
}
.container .wrap.reverse {
	flex-direction: row-reverse;
}
.container .wrap > figure {
	width: 35%;
}
.container .wrap > div {
	width: 60%;
}
@media screen and (max-width: 768px) {
	.container {
		margin: 6rem 3rem 8rem 3rem;
		width: auto;
	}
	.container .wrap {
		display: block;
	}
	.container .wrap > figure {
		width: 100%;
		margin-bottom: 2rem;
	}
	.container .wrap > div {
		width: 100%;
	}
}

/* ------ page-top ------ */
#page-top {
    position: fixed;
	z-index: 999;
	bottom: 1rem;
	right: 1rem;	
}
#page-top a {
	background: #c80000;
	color: #fff;	
	width: 4rem;
	height: 4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	line-height: 1;
	font-size: 1.8rem;
	padding-left: 0.1rem;
}
@media screen and (max-width: 768px) {
	/* #page-top {
		bottom: 7.4rem;
	} */
}




/* ----------------------------------------------------------------------------------------------------

style

---------------------------------------------------------------------------------------------------- */
/* ------ heading ------ */
.heading-1 {
	line-height: 1;
	margin-bottom: 4rem;
	/* background: url(../img/bg-ttl-1.png) no-repeat center top;
	background-size: 13rem auto; */
	text-align: center;
	/* padding-top: 7.5rem; */
	min-width: 13rem;
}
.heading-1 span {
	display: block
}
.heading-1 .en {
	/* font-family: var(--font-kaisei); */
	color: var(--prime);
	font-size: 3.6rem;
	letter-spacing: 0.1em;
	margin-bottom: 0.6rem;
	padding-left: 0.3rem;
	letter-spacing: 0.5rem;
}
.heading-1.wh {
	/* background: url(../img/bg-ttl-2.png) no-repeat center top;
	background-size: 13rem auto;	 */
	color: #fff;
}
.heading-1.wh .en {
	color: #fff;
}

.heading-2 {
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 1.6;
	margin-bottom: 2.5rem;
	letter-spacing: 0.1em;
} 
.heading-2 strong {
	font-size: 2.4rem;
	color: var(--prime);
}
@media screen and (max-width: 768px) {
	.heading-2 {
		text-align: center;
	}
}

/* ------ more ------ */
.more {
	/* line-height: 1; */
	/* display: flex;
	align-items: center;
	justify-content: center;
	color: #e0d9c9; */
	/* width: 24rem; */
	/* padding: 1.6rem 0 1.8rem 0;
	background: url(../img/bg-btn-2.jpg) no-repeat center / cover;
	font-weight: bold;
	letter-spacing: 0.2em;
	padding-left: 2.5rem;
	box-shadow: 0.3rem 0.3rem 0 var(--prime);
	margin: 0 auto; */
	display: block;
	width: 18.5rem;
}
.more img {
	/* margin-right: auto; */
	/* display: block; */
}
@media screen and (max-width: 768px) {
	.more {
		margin: 0 auto;
	}
}

/* ------ ttl ------ */
.ttl {
	border-bottom: solid 1px rgba(255,255,255,0.7);
	font-size: 2.2rem;
	margin-bottom: 3rem;
	padding: 1rem 0 1.5rem 0;
	position: relative;
}
.ttl:after {
	border-bottom: solid 0.5rem var(--prime);
	bottom: -0.5rem;
	content: " ";
	display: block;
	position: absolute;
	width: 25%;
}
@media screen and (max-width: 768px) {
	.ttl:after {
		width: 40%;
	}	
}

/* ------ detail ------ */
dl.detail {
	display: flex;
	flex-wrap: wrap;
}
dl.detail dt {
	padding: 1.5rem;
	width: 25%;
	white-space: nowrap;
	font-weight: bold;
	color: var(--prime);
	color: #fff;
	border-bottom: solid 0.15rem #baae97;
}
.top-access dl.detail dt {
	padding-left: 0;
}
.top-access dl.detail dt:last-of-type {
	border-bottom: none;
}
dl.detail dd {
	padding: 1.5rem;
	width: 75%;
	border-bottom: solid 0.15rem #baae97;
}
.top-access dl.detail dd:last-of-type {
	border-bottom: none;
}

@media screen and (max-width: 768px) {
	dl.detail {
		display: block;
	}
	dl.detail dt {
		display: flex;
		align-items: center;
		padding: 1.2rem 1.2rem 0.3rem 1.2rem;
		width: 100%;
		border-bottom: none
	}
	dl.detail dt::before {
		content: "◆";
		font-size: 1.2rem;
		margin-right: 0.5rem;
	}
	dl.detail dd {
		padding: 0 1.2rem 1.2rem 1.2rem;
		width: 100%;
	}
	dl.bk dt {
		border-bottom: none;
	}
	dl.wt dt {
		border-bottom: none;
	}
}




/* ----------------------------------------------------------------------------------------------------

hamburger

---------------------------------------------------------------------------------------------------- */
.gnav-sp {
	display: block;
	position: fixed;
	top: 0;
	bottom: 0;
	width: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transition: all .5s;
	z-index: -1;
	opacity: 0;
	/* background: url(../img/texture-3.jpg) center top; */
	background-color: #c80000;
	background-size: 100% auto;	
}
.gnav-sp .wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
.gnav-sp-menu li {
	font-size: 1.6rem;
	text-align: center;
	font-weight: bold;
	line-height: 1.4;
}
.gnav-sp-menu li span {
	display: block;
	font-size: 1.2rem;
	font-weight: normal;
}
.gnav-sp-menu li a {
	display: block;
	padding: 1.2rem 0;
	white-space: nowrap;
	color: #fff;
}

/* ------ toggle ------ */
.toggle-btn {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 6rem;
	height: 6rem;
	transition: all .5s;
	cursor: pointer;
	z-index: 100000;
	background: var(--prime);
	background-color: #000;
}
.toggle-btn span {
	display: block;
	position: absolute;
	left: 2rem;
	width: 2rem;
	height: 0.2rem;
	background-color: #fff;
	transition: all .4s;
}
.toggle-btn span:nth-child(1) {
	top: 1.9rem;
}
.toggle-btn span:nth-child(2) {
	top: 2.7rem;
}
.toggle-btn span:nth-child(3) {
	top: 3.5rem;
}

/* ------ open ------ */
.open .gnav-sp {
	top: 0;
	opacity: 1;
	z-index: 99999;
}
.open .toggle-btn span {
	background-color: #fff;
}
.open .toggle-btn span:nth-child(1) {
	-webkit-transform: translateY(0.8rem) rotate(-45deg);
	transform: translateY(0.8rem) rotate(-45deg);
}
.open .toggle-btn span:nth-child(2) {
	opacity: 0;
}
.open .toggle-btn span:nth-child(3) {
	-webkit-transform: translateY(-0.8rem) rotate(45deg);
	transform: translateY(-0.8rem) rotate(45deg);
}

/* ------ mask ------ */
/*
#mask {
	display: none;
	transition: all .5s;
}
.open #mask {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0);
	opacity: 0.8;
	z-index: 2;
	cursor: pointer;
}
*/




/* ----------------------------------------------------------------------------------------------------

class

---------------------------------------------------------------------------------------------------- */
/* ------ txt-vertical ------ */
.txt-vertical {
	writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
	.txt-vertical.not {
		writing-mode: horizontal-tb;
		white-space: normal;
	}
}

/* ------ hv-center ------ */
.hv-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	width: 100%;
	z-index: 99;
}

/* ------ list ------ */
ul.list-group li {
	margin-left: 2rem;
	list-style: disc;
}
ul.list-group li:not(:last-child) {
	margin-bottom: 0.6rem;
}
@media screen and (max-width: 768px) {
	ul.list-group li:not(:last-child) {
		margin-bottom: 1.2rem;
	}
}

/* ------ prepare ------ */
.prepare {
    text-align: center;
    padding: 8rem 0;
    font-size: 2rem;
	font-weight: bold;
}

/* ------ map ------ */
.gmap iframe {
	width: 100%;
	height: 36rem;
}
.gmap.grey iframe {
	filter:grayscale(100%);
}

/* ------ display ------ */
@media screen and (min-width: 769px) {
	.sp {
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.pc {
		display: none !important;
	}
}

/* ------ margin ------ */
.mb-10 { margin-bottom: 1rem !important; }
.mb-15 { margin-bottom: 1.5rem !important; }
.mb-20 { margin-bottom: 2.0rem !important; }
.mb-25 { margin-bottom: 2.5rem !important; }
.mb-30 { margin-bottom: 3.0rem !important; }
.mb-35 { margin-bottom: 3.5rem !important; }
.mb-40 { margin-bottom: 4.0rem !important; }
.mb-45 { margin-bottom: 4.5rem !important; }
.mb-50 { margin-bottom: 5.0rem !important; }
.mb-55 { margin-bottom: 5.5rem !important; }
.mb-60 { margin-bottom: 6.0rem !important; }
.mb-65 { margin-bottom: 6.5rem !important; }
.mb-70 { margin-bottom: 7.0rem !important; }
.mb-75 { margin-bottom: 7.5rem !important; }
.mb-80 { margin-bottom: 8.0rem !important; }
.mb-85 { margin-bottom: 8.5rem !important; }
.mb-90 { margin-bottom: 9.0rem !important; }
.mb-95 { margin-bottom: 9.5rem !important; }
.mb-100	{ margin-bottom: 10.0rem !important; }




/* ----------------------------------------------------------------------------------------------------

fade

---------------------------------------------------------------------------------------------------- */
.fade {
	opacity: 0;
	transform: translateY(2rem);
}
.fade.is-animation {
    animation: fade 0.5s ease;
    animation-fill-mode: both;
}
@keyframes fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
.delay-1 { animation-delay: 0.2s !important; }
.delay-2 { animation-delay: 0.35s !important; }
.delay-3 { animation-delay: 0.5s !important; }
.delay-4 { animation-delay: 0.65s !important; }
.delay-5 { animation-delay: 0.8s !important; }




/* ----------------------------------------------------------------------------------------------------

menu low

---------------------------------------------------------------------------------------------------- */
/* ------ lcmenu ------ */
ul.lcmenu {
	display:flex;
	flex-wrap: wrap;
	margin-bottom: 4rem;
	justify-content: space-between;
}
ul.lcmenu li {
	width: 49%;
	text-align: center;
	font-weight: bold;
	margin-bottom: 2%;
}
ul.lcmenu li a {
	display: block;
	padding: 1.6rem 0 1.8rem 0;
	background: #fff;	
	white-space: nowrap;
	color: #000;
}
ul.lcmenu li.current a {
	color: #fff;
	background: var(--prime);	
}
@media screen and (max-width: 768px) {
	ul.lcmenu li {
		width: 49%;
	}
	ul.lcmenu li a {
		padding: 1.2rem 0 1.3rem 0;
	}	
}

/* ------ menu-list ------ */
dl.menu-list dt,
dl.menu-list dd,
dl.menu-list dt.var,
dl.menu-list dt.var + dd {
	border-bottom: solid 1px rgba(0,0,0,0.2); /* メニュー下線カラー */
}
dl.menu-list dt:first-child,
dl.menu-list dt:first-child + dd {
	border-top: solid 1px rgba(0,0,0,0.2); /* メニュー上線カラー */
}
dl.menu-list dt:nth-of-type(odd),
dl.menu-list dt:nth-of-type(odd) + dd{
	background:rgba(0,0,0,0.04); /* メニュー背景色 */
}
dl.menu-list dt.var + dd dl dt:nth-of-type(odd){
	background: none !important;
}
dl.menu-list dt.var + dd dl dt:nth-of-type(odd) + dd{
	background: none !important;
}
dl.menu-list {
	display: flex;
	flex-wrap: wrap;
}
dl.menu-list dt {
	padding: 1.5rem;
	width: 70%;
}
dl.menu-list dt span {
	display: block;
	font-size: 1.2rem;
	font-weight: normal;
}
dl.menu-list dd {
	padding: 1.5rem;
	width: 30%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	text-align: right;
}
dl.menu-list dt.thumb {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
dl.menu-list dt.thumb i:first-of-type {
	width: 16rem;
	display: block;
}
dl.menu-list dt.thumb i:last-of-type {
	width: calc(100% - 18rem);
}
@media screen and (max-width: 768px) {
	dl.menu-list {
		display: block;
	}
	dl.menu-list dt {
		width: 100%;
		border-bottom: none;
		padding: 1.5rem 1.5rem 0 1.5rem;		
	}
	dl.menu-list dd {
		width: 100%;
		border-top: none;
		padding: 0 1.5rem 1.5rem 1.5rem;				
	}
	dl.menu-list dt:first-child + dd {
		border-top: none;
	}
	dl.menu-list dt.thumb {
		display: block;
	}
	dl.menu-list dt.thumb i:first-of-type {
		width: 100%;
		margin: 0.5rem auto 1.5rem auto;
	}
	dl.menu-list dt.thumb i:last-of-type {
		width: 100%;
	}	
}




/* ----------------------------------------------------------------------------------------------------

gallery low

---------------------------------------------------------------------------------------------------- */
.gallery-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	justify-content: center;
	width: 90%;
	margin: 8rem auto;
}	
.gallery-list li {
	margin: 0 1rem 2rem 1rem;
}
.gallery-list img {	
	border-radius: 50%;
	height: 11vw;
	width: 11vw;
	object-fit: cover;	
}
.gallery-list span {	
	display: block;
	font-size: 1.2rem;
	line-height: 1.7;
	margin: 1.2rem 0 0 0;
	text-align: center;
	width: 11vw;
}
@media screen and (max-width: 768px) {
	.gallery-list {
		margin: 4rem auto;
		width: 95%;
	}	
	.gallery-list li {
		margin: 0 0.5rem 1.5rem 0.5rem;
	}	
	.gallery-list img {	
		width: 17vw;
		height: 17vw;
	}
	.gallery-list span {	
		font-size: 1rem;
		margin: 1rem auto 0 auto;
		width: 16vw;
	}
}




/* ----------------------------------------------------------------------------------------------------

news thumbnail

---------------------------------------------------------------------------------------------------- */
/* ------ CMS-NEWS ------ */
.CMS-NEWS-INDEX {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding-bottom: 10rem;
}
.CMS-NEWS-INDEX > * {
    width: 31%;
    margin-right: 3.5%;
}
.CMS-NEWS-INDEX > *:nth-of-type(3n) {
    margin-right: 0;    
}
.CMS-NEWS-INDEX > *:nth-of-type(n + 4) {
    margin-top: 3.5rem;
}
.CMS-NEWS-ITEM a {
    transition: all .3s;
    display: block;
}
.CMS-NEWS-ITEM a:hover {
    opacity: 0.6;
}
.CMS-NEWS-TIME {
    font-size: 1.2rem;
    margin: 1.8rem 0 0.6rem 0;
    line-height: 1;
	/* color: var(--prime); */
	border-bottom: 1px solid #aaa;
	padding-bottom: 1.1rem;
	
}
.CMS-NEWS-LINK {
    font-size: 1.4rem;
}
.CMS-NEWS-INDEX > * img {
    height: 17rem;
    width: 100%;
    object-fit: cover;  
}
.CMS-NEWS-INDEX > * img {
    height: 18rem;
}

/* ------ CMS-NEWS-MORE-READ ------ */
.CMS-NEWS-MORE-READ {
    background: var(--prime);
    border: none;
    padding: 1.6rem 0 1.7rem 0;
    font-size: 1.4rem;
    color: #fff !important;
    text-align: center;
    margin: 0 auto;
    width: 31%;
    display: block;
    transition: all .3s;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
	font-weight: bold;
}
.CMS-NEWS-MORE-READ:hover {
    cursor: pointer;
    opacity: 0.6;
}

/* ------ CMS-NEWS-TITLE  ------ */
.CMS-NEWS-TITLE {
    border-bottom: solid 1px rgba(255,255,255,0.6);
    font-size: 2.2rem;
    margin-bottom: 3rem;
    padding: 1rem 0 1.5rem 0;
    position: relative;
    font-weight: bold;
}
.CMS-NEWS-TITLE:after {
    border-bottom: solid 0.5rem var(--prime);
    bottom: -0.5rem;
    content: " ";
    display: block;
    position: absolute;
    width: 25%;
}
.CMS-NEWS-CONTENT img {
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto 3rem auto;
}
@media screen and (max-width: 768px) {
    .CMS-NEWS-INDEX {
        display: block;
    }
    .CMS-NEWS-INDEX > * {
        width: 100%;
        margin-right: 0;
    }
    .CMS-NEWS-INDEX > *:nth-of-type(n + 4) {
        margin-top: 0;
    }
    .CMS-NEWS-INDEX > *:nth-of-type(n + 2) {
        margin-top: 3.5rem;
    }        
    .CMS-NEWS-TIME {
        margin: 1.5rem 0 0.3rem 0;
    }   
    .CMS-NEWS-INDEX > * img {
        height: 20rem;
    }
    .CMS-NEWS-CONTENT img {
        width: 100%;
    }
	.CMS-NEWS-INDEX > * img {
		height: 35rem;
	}
}
@media screen and (max-width: 540px) {
	.CMS-NEWS-INDEX > * img {
		height: 27rem;
	}
}
@media screen and (max-width: 414px) {
	.CMS-NEWS-INDEX > * img {
		height: 21rem;
	}
}




/* ----------------------------------------------------------------------------------------------------

fixed

---------------------------------------------------------------------------------------------------- */
.fixed-btn {
	position: fixed;
	top: 50%;
	right: 0;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	z-index: 999;
}
.fixed-btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 6rem;
	padding: 2rem 0;
	line-height: 1;
	background: url(../img/bg-btn-1.jpg) no-repeat center / cover;
}
/* icon */
.fixed-btn li img {
	width: 3.2rem;
	height: 3.2rem;
	margin-bottom: 1rem;
}
/* txt */
.fixed-btn a > span {
	display: flex;
	flex-direction: column;
	white-space: nowrap;
}
.fixed-btn a > span > span:nth-child(2) {
	font-weight: bold;
	font-size: 2rem;
}
/* line */
.fixed-btn a > span > span:nth-child(1) {
	margin-left: 0.3rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	letter-spacing: 0.3em;
	font-size: 1.2rem;
}
.fixed-btn a > span > span:nth-child(1)::after {
	content: "";
	width: 0.14rem;
	height: 6rem;
	background: var(--beige-2);
}
/* reserve */
.fixed-btn li.reserve a {
	color: #e0d9c9;
}
.fixed-btn .reserve a > span > span:nth-child(1)::after {
	background: #e0d9c9;
	height: 8.3rem;
}
@media screen and (max-width: 768px) {
	.fixed-btn {
		top: auto;
		right: auto;
		bottom: 0;
		transform: none;
		-webkit-transform: none;
		width: 100%;
	}
	.fixed-btn a {
		width: 100%;
		padding: 0;
		height: 6.4rem;
		text-decoration: none !important;
	}
	/* icon */
	.fixed-btn li img {
		width: 3rem;
		height: 3rem;
		margin-bottom: 0;
		margin-right: 1.5rem;
	}	
	/* txt */
	.fixed-btn a > span > span:nth-child(1) {
		margin-left: 0;
		margin-bottom: 0.4rem;
		font-size: 1.2rem;
	}
	.fixed-btn a > span > span:nth-child(2) {
		font-weight: 900;
		font-size: 2rem;
	}		
	/* line */
	.fixed-btn a > span > span:nth-child(1)::after {
		display: none;
	}	
	
}



.top-kv {
	position: relative;
}

.top-kv::before {
	content: "";
	background: url(../img/scroll.png) no-repeat center top / contain;
	width: 2rem;
	height: 11.5rem;
	position: absolute;
	bottom: 0;
	left: 4rem;
	z-index: 999;
}
@media screen and (max-width: 768px) {
	.top-kv::before {
		height: 13rem;
		left: 3rem;
	}
}



._reserve {
	font-size: 2rem;
	text-align: center;
}
