@charset "UTF-8";

/*
* common.css
* description : Common styles
*/

/*
[[[ Header ]]]
*/

/*-----[[[ Main Header ]]]-----*/

@media screen and (max-width:767px) {
	#main-header .sub-ttl {
		max-width: 92%;
		margin-left: auto;
		margin-right: auto;
	}
}


/*
[[[ Content Header ]]]
*/

.content-header {
	text-align: center;
	border-top: 7px solid #c09b1b;
	position: relative;
	padding-bottom: 60px;
}

.content-header::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -160px;
	border-top: 60px solid #000;
	border-right: 160px solid transparent;
	border-left: 160px solid transparent;
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
	.content-header {
		padding-bottom: 53px;
	}

	.content-header::after {
		margin-left: -145px;
		border-top: 53px solid #000;
		border-right: 145px solid transparent;
		border-left: 145px solid transparent;
	}
}

@media screen and (max-width: 991px) and (min-width: 768px) {
	.content-header {
		padding-bottom: 45px;
	}

	.content-header::after {
		margin-left: -125px;
		border-top: 45px solid #000;
		border-right: 125px solid transparent;
		border-left: 125px solid transparent;
	}
}

@media screen and (max-width: 767px) and (min-width: 568px) {
	.content-header {
		border-top: 5px solid #c09b1b;
		padding-bottom: 35px;
	}

	.content-header::after {
		margin-left: -95px;
		border-top: 35px solid #000;
		border-right: 95px solid transparent;
		border-left: 95px solid transparent;
	}
}

@media screen and (max-width: 567px) {
	.content-header {
		border-top: 4px solid #c09b1b;
		padding-bottom: 28px;
	}

	.content-header::after {
		margin-left: -77px;
		border-top: 28px solid #000;
		border-right: 77px solid transparent;
		border-left: 77px solid transparent;
	}

	.content-header .h-title {
		font-size: 1.5rem;
	}

	.content-header .s-title {
		font-size: 1rem;
	}
}

/*[ Sub Title Deco ]*/

.content-header .s-title span::before,
.content-header .s-title span::after {
	content: "";
	display: inline-block;
	width: 1em;
	height: 1em;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='%23C09B1B' d='M240 0L32 288h160l-48 224 208-288H192L240 0z'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	margin: 0 0.3em;
	position: relative;
	top: 0.1em;
	transform: rotate(15deg);
}

.content-header .s-title span::before {
	left: -5px;
}

.content-header .s-title span::after {
	right: -5px;
}


/*
[[[ Global Navigation ]]]
*/

.header-nav {
	background: #000;
	border-bottom: 2px solid #d8c771;
	padding: 10px 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1030;
}

.header-left {
	flex-shrink: 0;
}

.header-right {
	display: flex;
	align-items: center;
	gap: 15px;
}


.header-btn {
  margin: .5rem;
}

.header-btn a {
  display: inline-block;
  padding: .8rem;
  color: #fff;
  border-radius: 0.6rem;
  border: 2px solid #fff;
  font-weight: bold;
  text-decoration: none;
}

.header-btn a:hover {
  color: #000;
  background: #8C720D;
}

.header-nav img {
	max-width: 375px;
	width: 100%;
	padding-right: 25px;
}

.menu-icon {
	width: 30px;
	cursor: pointer;
	z-index: 9999;
	position: relative;
	margin-left: auto;
}

.menu-icon span {
	display: block;
	height: 3px;
	background: #fff;
	margin: 6px 0;
	transition: 0.3s;
}

.menu {
	position: fixed;
	top: 0;
	right: -340px;
	width: 340px;
	height: 100%;
	background: #000;
	border-left: 2px solid #d8c771;
	padding-top: 90px;
	transition: right 0.3s ease;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	z-index: 2;
}

.menu ul {
	list-style: none;
	padding: 0;
}

.menu li {
	margin: 15px;
}

.menu a {
	font-weight: bold;
	text-decoration: none;
	font-size: 27px;
	letter-spacing: .2rem;
	color: #fff;
}

.menu a:hover {
	color: #8C720D;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	opacity: 0;
	visibility: hidden;
	transition: 0.3s ease;
	z-index: 2;
	pointer-events: none;
}

.menu.open {
	right: 0;
	background: #000;
	border-left: 2px solid #d8c771;
}

.overlay.show {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.no-scroll {
	overflow: hidden;
	height: 100%;
}

/* ハンバーガー開閉時 */

.menu-icon.open span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.menu-icon.open span:nth-child(2) {
	opacity: 0;
}

.menu-icon.open span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

@media screen and (max-width:767px) {
	.header-nav {
		padding: 10px 20px;
	}

	.header-nav img {
		max-width: 55vw;
	}
}


/*
[[[ Footer ]]]
*/

#main-footer .logos {
	width: auto;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
	list-style: none;
	text-align: center;
}

#main-footer .logos li {
	width: auto;
	height: auto;
	text-align: center;
}

#main-footer .logos li figure {
	max-width: 360px;
	margin-left: auto;
	margin-right: auto;
}

#main-footer .logos img {
	display: inline-block;
}

@media screen and (max-width:767px) {
	#main-footer .logos li {
		width: 82%;
		margin: 0 auto;
	}
}


/*
[[[ Page Top Btn ]]]
*/

.pagetop {
	width: auto;
	height: auto;
	margin: 0;
	padding: 0;
	position: fixed;
	right: 2rem;
	bottom: 5rem;
	list-style: none;
	display: none;
	z-index: 1030;
}

.pagetop a {
	width: 72px;
	height: 72px;
	margin: 0;
	padding: 0;
	text-indent: -9999px;
	background: url(../images/btn_pagetop.png) no-repeat 0 0;
	background-size: 72px auto;
	display: block;
	overflow: hidden;
	text-decoration: none;
}

.pagetop a:hover {
	opacity: 0.7;
}

@media screen and (max-width:767px) {
	.pagetop {
		left: 50%;
		right: inherit;
		bottom: 1rem;
		margin-left: -19px;
	}

	.pagetop a {
		width: 38px;
		height: 38px;
		background-size: 38px auto;
	}
}

/*
[[[ App Info List ]]]
*/

.app-info-list {
	width: auto;
	height: auto;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.app-info-list li {
	flex-basis: auto;
	flex-shrink: 1;
	flex-grow: 0;
	text-align: center;
	max-width: 250px;
}


/*
[[[ Banner ]]]
*/

.bnr:hover {
	opacity: 0.7;
}


/*
[[[ Popup ]]]
*/

#popup,
#popup2 {
	display: none;
}

.popup-open {
	cursor: pointer;
}

.popup-overlay {
	display: none;
}

#popup:checked ~ .popup-overlay {
	display: block;
	z-index: 99999;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}

.popup-window {
	width: 90vw;
	max-width: 560px;
	padding: 20px;
	background-color: #fff;
	border-radius: 6px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.popup-text {
	margin: 0;
}

.popup-text:not(:last-of-type) {
	margin-bottom: 1em;
}

.popup-close {
	cursor: pointer;
	position: absolute;
	top: -26px;
	right: 0;
}


/*
[[[ Language Switch ]]]
*/

.lang-en .lang-ja {
	display: none;
}

.lang-en .lang-en {
	display: inline;
}

.lang-ja .lang-en {
	display: none;
}

.lang-ja .lang-ja {
	display: inline;
}

.lang-switch {
	cursor: pointer;
	font-weight: bold;
	font-size: 1.1em;
	user-select: none;
}

.lang-switch span {
	padding: 0 5px;
}

.lang-switch .active {
	color: gray;
}

.lang-switch .inactive {
	color: #8c720d;
	text-decoration: underline;
}