@charset "utf-8";
/* ------------------------------------------------------------
    loading
------------------------------------------------------------ */
#loading{
	position: fixed;
	z-index: 1000;
	width: 100%;
	height: 100vh;
  background-color: #000;
	overflow: hidden;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader {
  width: 150px;
  height: 63px;
}
@media screen and (min-width: 768px){
	.loader {
		width: 200px;
		height: 84px;
	}
}

/* --------------------------------------------------
header
-------------------------------------------------- */
header {
	position: fixed;
	z-index: 103;
	width: 100%;
	height: 50px;
  height: calc(50px + constant(safe-area-inset-top));
  height: calc(50px + env(safe-area-inset-top));
  padding-top: constant(safe-area-inset-top);
  padding-top: env(safe-area-inset-top);
	transition: all 0.5s ease 0s;
}
header .logo_wrap {
	height: 100%;
}
header .logo_wrap h1,
header .logo_wrap h1 a {
	display: block;
	height: 100%;
}
header .logo_wrap h1 a {
	display: flex;
	align-items: center;
	padding: 0 10px;
	width: 115px;
}
header .logo_wrap img {
	width: 100%;
}
.scrolled header {
	background-color: rgba(0, 0, 0, .8);
}
@media screen and (min-width: 1000px){
	header {
		height: 60px;
		height: calc(60px + constant(safe-area-inset-top));
		height: calc(60px + env(safe-area-inset-top));
		display: flex;
		justify-content: space-between;
	}
	header .logo_wrap h1 a {
		width: 140px;
	}
	header #gnav,
	header .gnav_main {
		display: block;
		height: 100%;
	}
}

/* --------------------------------------------------
gnav
-------------------------------------------------- */
#gnav {
  overflow: hidden;
}
#gnav .is-scrollbar {
  padding-right: 0;
}
#gnav .gnav_main {
	margin-right: -17px; /* オーバーレイスクロールバーを消す */
	padding-right: 17px; /* オーバーレイスクロールバーを消す */
	overflow: hidden;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	position: fixed;
	z-index: 101;
	top: 0;
	right: 0;
	width: calc(100% + 17px);
	height: calc(100% - 50px);
	height: calc(100% - 50px - constant(safe-area-inset-bottom));
	height: calc(100% - 50px - env(safe-area-inset-bottom));	
	background-color: rgba(0,0,0,1);
	display: none;
}
#gnav .gnav_main_box {
	width: 100%;
	padding: 80px 0;
}
#gnav .gnav_main_in {
	width: 80%;
	margin: 0 auto;
}
#gnav .gnav_list li a ,
#gnav .gnav_list_m li a,
#gnav .gnav_links li a,
#gnav .gnav_links_m li a {
	color: #fff;
	position: relative;
	overflow: hidden;
	display: block;
	padding: 12px 0;
}
#gnav .gnav_list li a::before,
#gnav .gnav_list_m li a::before,
#gnav .gnav_links li a::before,
#gnav .gnav_links_m li a::before{
	content: '';
	display: block;
	position: absolute;
	background-color: rgba(255,255,255,.3);
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
}
#gnav .gnav_buttons {
	padding-top: 15px;
}
#gnav .gnav_buttons .gnav_button {
	margin-top: 10px;
}
#gnav .gnav_buttons .gnav_button a {
	display: block;
	padding: 14px 0;
	text-align: center;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.4;
}
#gnav .gnav_buttons .gnav_request a {
	background-color: #af9561;
	color: #fff;
}
#gnav .gnav_buttons .gnav_raijo a {
	background-color: #892d2b;
	color: #fff;
}
#gnav .gnav_buttons .gnav_member a {
	background-color: #444;
	color: #fff;
}
#gnav .gnav_buttons .gnav_hp a {
	background-color: #444;
	color: #fff;
}
#gnav .gnav_buttons .gnav_yoyaku a {
	background-color: #892d2b;
	color: #fff;
}

#gnav .mi {
	color: #fff;
	font-size: 130%;
	letter-spacing: 0.2em;
	margin-bottom: 10px;
	opacity: .5;
}

#gnav .gnav_list li .new ,
#gnav .gnav_list_m li .new,
#gnav .gnav_links li .new,
#gnav .gnav_links_m li .new {
	color: #AF9561;
    font-size: 1.2rem;
    margin-left: 5%
}


@media screen and (min-width: 1000px){
	#gnav {
		height: 100%;
		display: block;
	}
	#gnav .gnav_main {
		position: relative;
		display: block;
		height: 100%;
		overflow-y: visible;
		margin-right: 0;
		padding-right: 0;
		width: 100%;
		background-color: transparent;
	}
	#gnav .gnav_main_box {
		display: block;
		padding: 0;
		height: 100%;
		overflow: hidden;
	}
	#gnav .gnav_main_in {
		width: 100%;
		display: flex;
		justify-content: flex-end;
		height: 100%;
	}
	#gnav .mi {
		display: none;
	}
	#gnav .gnav_list {
		margin-right: 10px;
		display: flex;
		/* transform: translateY(10px); */
	}
	#gnav .gnav_list\m {
		margin-right: 10px;
		display: flex;
	}
	#gnav .gnav_list li, #gnav .gnav_list_m li {
		height: 100%;
		display: block;
	}
	#gnav .gnav_list li a,
	#gnav .gnav_list_m li a {
		height: 100%;
		font-size: 13px;
		font-size: 1.3rem;
		line-height: 1.2;
		padding: 0 10px;
	}
	#gnav .gnav_list li a span,
	#gnav .gnav_list_m li a span {
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
	}
	#gnav .gnav_list li a span::after,
	#gnav .gnav_list_m li a span::after {
		content: '';
		display: block;
		position: absolute;
		left: 0;
		bottom: auto;
		top: 0;
		width: 100%;
		background-color: rgba(255, 255, 255, 1);
	}
	#gnav .gnav_list li a span.new::after,
	#gnav .gnav_list_m li a span.new::after {
		content: none;
	}
	#gnav .gnav_pop {
		display: flex;
		/* position: relative; */
	}
	#gnav .gnav_links {
		display: flex;
		flex-direction: column;
		justify-content: center;
		/* margin-right: 10px; */
		width: 110px;
		/* width: 90px; */
		/* position: absolute;
		top: 5px;
		left: -170px; */
	}
	#gnav .gnav_links_m {
		display: flex;
		flex-direction: column;
		justify-content: center;
		margin-right: 10px;
	}
	#gnav .gnav_links li, #gnav .gnav_links_m li{
		display: block;
	}
	#gnav .gnav_links li a, #gnav .gnav_links_m li a{
		display: block;
		padding: 3px 5px 3px 11px;
		background: url(../images/common/ico_arr.svg) no-repeat left center;
		background-size: 6px;
		font-size: 11px;
		font-size: 1.1rem;
		line-height: 1;
	}
	#gnav .gnav_list li a::before,
	#gnav .gnav_list_m li a::before,
	#gnav .gnav_links li a::before,
	#gnav .gnav_links_m li a::before{
		display: none;
	}
    
    #gnav .gnav_list li .new, #gnav .gnav_list_m li .new, #gnav .gnav_links li .new, #gnav .gnav_links_m li .new {
    color: #edc169;
    font-size: 1rem;
    position: absolute;
    top: 85%;
    left: 45%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	text-shadow: 0 0 2px rgba(0,0,0,.8), 0 0 2px rgba(0,0,0,.8);
}
    
	#gnav .gnav_buttons {
		padding-top: 0;
		display: flex;
	}
	#gnav .gnav_buttons .gnav_button {
		height: 100%;
		margin-top: 0;
	}
	#gnav .gnav_buttons .gnav_button a.nav_btn_width{
		width: 120px;
	}
	#gnav .gnav_buttons .gnav_button a {
		height: 100%;
		width: 80px;
		padding: 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	#gnav .gnav_buttons .gnav_member a {
		line-height: 1.4;
	}
    
}
@media screen and (min-width: 1200px){
	#gnav .gnav_buttons .gnav_button a {
		width: 120px;
	}
}

/* Hamburger
------------------------------ */
.drawer-hamburger {
	position: fixed;
	z-index: 104;
	top: 0;
	right:0;
	display: block;
	box-sizing: content-box;
	width: 30px;
	padding:25px 18px 24px;
	-webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
	transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	border: 0;
	outline: 0;
	background-color: transparent;
  cursor: pointer;
}
.drawer-hamburger-icon,
.drawer-hamburger-icon::before,
.drawer-hamburger-icon::after {
  content: '';
	display: block;
  width: 100%;
	height: 1px;
	transition: all .6s ease;
	background-color: #fff;
  transform: translateY(0);
}
.drawer-hamburger-icon{
  position: relative;
  transition: .3s ease;
}
.drawer-hamburger-icon::before{
  position: absolute;
  top: -7px;
  animation: cross_center_top_re .6s ease forwards;
}
.drawer-hamburger-icon:after {
	position: absolute;
  top: 7px;
  animation: cross_center_btm_re .6s ease forwards;
}

/* drawer-open */
.drawer-open .drawer-hamburger-icon{
  background-color: transparent;
}
.drawer-open .drawer-hamburger-icon::before {
  animation: cross_center_top .6s ease forwards;
}
.drawer-open .drawer-hamburger-icon::after {
  animation: cross_center_btm .6s ease forwards;
}

@media screen and (min-width: 1000px){
	.drawer-hamburger {
		display: none;
	}
}

/* animation */
@keyframes cross_center_top {
  0% {
    transform: translateY(0) rotate(0);
  }
  30% {
    transform: translateY(7px) rotate(0);
  }
  100% {
    transform: translateY(7px) rotate(20deg);
  }
}
@keyframes cross_center_top_re {
  0% {
    transform: translateY(7px) rotate(20deg);
  }
  30% {
    transform: translateY(7px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes cross_center_btm {
  0% {
    transform: translateY(0) translateX(0) rotate(0);
  }
  30% {
    transform: translateY(-7px) rotate(0);
  }
  100% {
    transform: translateY(-7px) rotate(-20deg);
  }
}
@keyframes cross_center_btm_re {
  0% {
    transform: translateY(-7px) rotate(-20deg);
  }
  30% {
    transform: translateY(-7px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

/* --------------------------------------------------
gnav_fix
-------------------------------------------------- */
.nav_fix {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 102;
  height: 50px;
  height: calc(50px + constant(safe-area-inset-bottom));
  height: calc(50px + env(safe-area-inset-bottom));
  transition: all .5s;
	background-color: #000;
	box-shadow: 0 0 8px rgba(0,0,0,.5);
}
.nav_fix ul {
	display: flex;
	height: 100%;
	background-color: #000;
}
.nav_fix li {
	text-align: center;
	width: 100%;
	font-size: 10px;
	font-size: 1.0rem;
	line-height: 1;
	letter-spacing: 0;
}
.nav_fix li:nth-child(1){
	border-right: solid 1px rgba(255,255,255,.3);
}
.nav_fix li:nth-child(3) {
	background-color: #8c732c;
}
.nav_fix li:nth-child(4) {
	background-color: #892d2b;
}
.nav_fix li a {
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 100%;
}
.nav_fix .ico {
	padding: 0 0 5px;
}
.nav_fix .ico img {
	width: 20px;
	height: 20px;
}
@media screen and (min-width: 1000px){
	.nav_fix {
		display: none;
	}
}

/* --------------------------------------------------
ttl
-------------------------------------------------- */
.sec_ttl {
	background-color: #000;
	height: 200px;
	color: #d5a038;
	font-size: 20px;
	font-size: 2.0rem;
	line-height: 1.4;
	display: flex;
  justify-content: center;
	align-items: center;
	text-align: center;
}
.sec_ttl h2 {
	transform: translateY(20%);
	font-weight: normal;
    text-shadow: 0 0 10px rgba(0,0,0,.8), 0 0 10px rgba(0,0,0,.8), 0 0 10px rgba(0,0,0,.8), 0 0 10px rgba(0,0,0,.8);

}
.sec_ttl .ff_en {
	font-size: 14px;
	font-size: 1.4rem;
	letter-spacing: 0.3em;
	position: relative;
	margin-bottom: 20px;

}
.sec_ttl .ff_en::after {
	content: '';
  display: block;
  width: 150px;
  height: 1px;
	background-color: #d5a038;
	opacity: .5;
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
}
.sec_ttl .ja {
	letter-spacing: 0.2em;

}
.sec_ttl.sec_ttl_wide {
	height: 300px;
}
.sec_ttl .cap {
	color: #fff;
}
.sec_ttl_member_middle {
	height: 300px;
	overflow: hidden;
}
.sec_ttl_member_middle .member_middle_title {
	color: #fff;
	font-size: 14px;
	font-size: 1.4rem;
	margin-top: 15px;
}
.sec_ttl_member_middle .member_middle_title span {
	display: inline-block;
	position: relative;
}
.sec_ttl_member_middle .member_middle_title span::before,
.sec_ttl_member_middle .member_middle_title span::after {
	content: '';
	display: block;
	width: 10px;
	height: 1px;
	background-color: #fff;
	position: absolute;
	top: 50%;
}
.sec_ttl_member_middle .member_middle_title span::before {
	left: -15px;
}
.sec_ttl_member_middle .member_middle_title span::after {
	right: -15px;
}
@media screen and (min-width: 768px){
	.sec_ttl {
	height: 280px;
	font-size: 35px;
  	font-size: 3.5rem;
	}
	.sec_ttl .ff_en {
		font-size: 20px;
		font-size: 2rem;
	}
	.sec_ttl .ff_en::after {
		width: 200px;
	}
	.sec_ttl.sec_ttl_wide {
		height: 500px;
	}
	.sec_ttl_member_middle {
		height: 350px;
	}
	.sec_ttl_member_middle .member_middle_title {
		font-size: 22px;
		font-size: 2.2rem;
		margin-top: 25px;
	}
	.sec_ttl_member_middle .member_middle_title span::before,
	.sec_ttl_member_middle .member_middle_title span::after {
		width: 20px;
	}
	.sec_ttl_member_middle .member_middle_title span::before {
		left: -30px;
	}
	.sec_ttl_member_middle .member_middle_title span::after {
		right: -30px;
	}
}

/* --------------------------------------------------
main_in
-------------------------------------------------- */
.sec_notes {
	padding: 30px 0;
}
@media screen and (min-width: 768px){
	.sec_notes {
		padding: 50px 0;
	}
}

/* --------------------------------------------------
fnav
-------------------------------------------------- */
.b_page_loggedin .sec_fnav {
	display: none;
}
.sec_fnav {
	background: url(../images/common/bg_fnav_sp.jpg) no-repeat center bottom / cover;
	padding: 21% 0;
}
.sec_fnav .fnav_btn {
	display: block;
	background-color: #af9561;
	color: #fff;
	font-size: 123%;
	line-height: 1;
	text-align: center;
	padding: 18px;
	width: 100%;
	max-width: 400px;
	margin: 0 auto 10px;
}
.sec_fnav .fnav_btn.btn_raijo {
	display: block;
	background-color: #892d2b;
	color: #fff;
	font-size: 123%;
	line-height: 1;
	text-align: center;
	padding: 18px;
	width: 100%;
	max-width: 400px;
	margin: 0 auto 10px;
}
.sec_fnav .fnav_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.sec_fnav .fnav_btn_list {
	flex-direction: column;
	margin: 0 auto;
}
.sec_fnav .fnav_list li {
	width: 46.6%;
	padding: 4px 0;
}
.sec_fnav .fnav_list li a {
	display: flex;
	align-items: flex-end;
	width: 100%;
	height: 40px;
	padding-bottom: 5px;
	border-bottom: solid 1px rgba(255,255,255,.3);
	font-size: 97%;
	line-height: 1.5;
	color: #fff;
}
.sec_fnav .fnav_btn_list li{
	width: 100%;
	padding: 4px 0;
}


@media screen and (min-width: 768px){
	.sec_fnav {
		background: url(../images/common/bg_fnav.jpg) no-repeat center bottom / cover;
		padding: 90px 0;
	}
	.sec_fnav .fnav_btn {
		padding: 24px;
		margin: 0 auto 25px;
	}
	.sec_fnav .fnav_btn.btn_raijo {
		padding: 24px;
		margin: 0 auto 25px;
	}
	.sec_fnav .fnav_list {
		justify-content: center;
		max-width: 1060px;
		margin: 0 auto;
	}
	.sec_fnav .fnav_btn_list {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		max-width: 800px;
		margin: 0 auto;
		flex-direction: unset;
	}
	.sec_fnav .fnav_list li {
		width: auto;
		padding: 0;
	}
	.sec_fnav .fnav_list li a {
		border-bottom: none;
		display: block;
		width: auto;
		height: auto;
		padding: 7px 10px;
	}
	.sec_fnav .fnav_btn_list li{
		width: 46.6%;
		padding: 4px 0;
	}
}

/* --------------------------------------------------
footer
-------------------------------------------------- */
footer {
	padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}
/* UA_PCのみ */
.ua_pc .contact a{
  cursor: default;
}
.foot_in {
	background-color: #000;
	color: #fff;
	padding: 60px 0;
}
.foot_in .contact {
	text-align: center;
}
.foot_in .contact .mi {
	font-size: 93.75%;
	line-height: 1.6;
}
.foot_in .contact .tel {
	margin: 2px 0 10px;
}
.foot_in .contact .tel img {
	width: 36px;
	margin-right: 5px;
	vertical-align: baseline;
}
.foot_in .contact .tel a {
	color: #fff;
	font-size: 38px;
	font-size: 3.8rem;
	line-height: 1;
}
.foot_in .contact .time {
	font-size: 86%;
	line-height: 1.6;
}
.gw_holiday {
    color: #af9561;

}

.foot_in .staff > .bnr {
	width: 165px;
	margin: 40px auto;
}
.foot_in .staff > .bnr img{
	margin: 0 auto;
}

.foot_in .staff > .staff_0 {
	display: flex;
	width: 100%;
	max-width: 380px;
	margin: 20px auto 0;
}
.foot_in .staff a .notes {
	color: #fff;
	margin-bottom: 5px;
}
.foot_in .staff_1 {
	flex: 1;
	margin-right: 25px;
}
.foot_in .staff_2 {
	flex: 1.27989737;
}
.foot_in .staff img {
	width: 100%;
}
.foot_copy small {
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.5;
	display: block;
	padding: 15px 5% 65px;
	text-align: center;
}

@media screen and (min-width: 768px){
	.foot_in .contact .mi {
		line-height: 1.4;
	}
	.foot_in .contact .tel img {
		width: 45px;
	}
	.foot_in .contact .tel a {
		font-size: 56px;
		font-size: 5.6rem;
	}

}
@media screen and (min-width: 1000px){
	.foot_in .inner_85 {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.foot_in .contact {
		text-align: left;
	}
	.foot_in .staff_0 {
		margin: 0;
	}

	.foot_in .staff > .bnr {
		margin: 30px 0;
	}	
	
	.foot_copy small {
		padding: 20px;
	}
}
@media screen and (min-width: 1400px){
	.foot_in .contact {
		display: flex;
		align-items: flex-end;
	}
	.foot_in .contact .tel {
		margin: 5px 0 0;
	}
	.foot_in .contact .time {
		margin-left: 30px;
		font-size: 78%;
		line-height: 1.4;
/*        width: 52%;*/
	}
}