@charset "UTF-8";

/* 汎用 */
:root {
	--white: #FFF;
	--black: #000;
	--red:#ff0000;
	--brown: #674500;
	--green: #4C5900;
	--aqua:#0F4D4E;
	--gold: #D4A700;
	--dark_gold: #826700;
	--font_nobel: "nobel", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--font_nobel_condensed: "nobel-condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--font_hiragino: "Hiragino Kaku Gothic Pro", sans-serif;
	--font_roboto: "Roboto", sans-serif;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
p,
blockquote,
table,
th,
td {
	margin: 0;
	padding: 0;
}

html {
	font-family: "SF Pro", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
	margin: 0;
}

body {
	text-align: center;
	min-width: 1440px;
	overflow-x: hidden;
	-webkit-text-size-adjust: 100%;
	background: var(--black);
	color: var(--white);
}

header {
	width: 100%;
}

footer {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
}

img {
	border: 0;
	vertical-align: bottom;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: none;
	display: inline;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
blockquote,
address,
ul,
dl,
ol,
th,
em {
	font-size: 100%;
	font-weight: normal;
	font-style: normal;
	letter-spacing: 0.04em;
	line-height: 150%;
}

ul,
dl,
ol {
	list-style-type: none;
	list-style-position: outside;
	text-indent: 0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 100%;
}

th,
td {
	text-align: left;
	vertical-align: top;
}

h1 {
	font-size: 32px;
	font-weight: 600;
}

h2 {
	font-size: 24px;
	font-weight: 600;
}

h3 {
	font-size: 20px;
	font-weight: 600;
}

h4 {
	font-size: 16px;
	font-weight: 600;
}

h5 {
	font-size: 14px;
	font-weight: 600;
}

p {
	font-size: 16px;
	font-weight: 300;
	line-height: 175%;
	letter-spacing: 0.04em;
	font-family: 'Hiragino Kaku Gothic Pro';
}

a,
a:focus,
*:focus {
	outline: none;
}

iframe {
	border: 0;
}

/* ClearFix */
.clearfix::after {
	content: "";
	display: table;
	clear: both;
}

.noscript {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background: #F00;
	color: var(--white);
	padding: 20px;
}

/* ClearFix */
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix {
	display: inline-block;
}

/*\*/
* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}

/**/
a {
	opacity: 1;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

a:hover {
	opacity: 0.6;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

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

@media screen and (max-width: 1439px) {
	body {
		min-width: inherit;
	}
}

a:focus,
*:focus {
	outline: none;
}

/*bootstrap余白調整*/
.row {
	margin-right: -10px;
	margin-left: -10px;
}

p {
	margin: 0;
}

ul {
	margin: 0;
	padding: 0;
}

/*******************************
LoadingCss
*******************************/
#loading {
	width: 100%;
	height: 100%;
	margin: 0;
	background: var(--black);
	opacity: 1.0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}

#loading .ball {
	border-radius: 100%;
	margin: 2px;
	border: 2px solid var(--white);
	border-bottom-color: transparent;
	height: 26px;
	width: 26px;
	display: inline-block;
	-webkit-animation: rotate .75s 0s linear infinite;
	animation: rotate .75s 0s linear infinite;
	position: absolute;
	top: calc(50% - 13px);
	left: calc(50% - 13px);
	-webkit-transform: translate(-50%, -50%);
	/* Safari用 */
	transform: translate(-50%, -50%);
}

@keyframes rotate {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg)
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

/*******************************
 
animationCSS
 
*******************************/
.fadeUp {
	opacity: 0 !important;
	-webkit-transition: 2s;
	-moz-transition: 2s;
	-ms-transition: 2s;
	transition: 2s;
	-webkit-transform: translateY(30px);
	transform: translateY(30px);
}

.fadeUp.view {
	opacity: 1 !important;
	-webkit-transition: 2s;
	-moz-transition: 2s;
	-ms-transition: 2s;
	transition: 2s;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

/*******************************
 
baseCss
 
*******************************/
.pc {
	display: block !important;
}

.sp {
	display: none !important;
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 768px) {
	.pc {
		display: none !important;
	}

	.sp {
		display: block !important;
	}

}

/* header */
header {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 1000;
}

header .header_container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	height: 74px;
	padding: 20px;
}

.logo_container {
	padding: 5px;
	position: absolute;
	top: 26%;
	left: 10%;
	line-height: 1;
	z-index: 100;
	transition: left 0.3s ease;
}
@media (max-width: 950px) {
	.logo_container {
left: 2%;}

}
.logo_container .logo {
	width: 154px;
	margin: 0;
}

.nav__wrapper {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 2;
	background-color: var(--white);
	visibility: hidden;
	opacity: 0;
	transform: translateX(400%);
	transition: transform 0.3s ease-out, opacity 0.3s ease-out;
	width: 0;
}

.nav__wrapper.active {
	width: 100%;
	visibility: visible;
	opacity: 1;
	transform: translateX(0);
	height: 100vh;
	display: grid;
	place-items: center;
	background: var(--black);
	z-index: 100;
}

.nav__wrapper.closing {
	opacity: 0;
	transform: translateX(400%);
}

.nav__item a {
	display: block;
	text-decoration: none;
	padding: 8px 0;
	background: var(--black);
	color: var(--white);
	font-weight: 800;
	border-bottom: solid 1px var(--gold);
}

.nav__wrapper.active ul {
	font-size: 21px;
	text-align: left;
	font-family: 'Hiragino Kaku Gothic Pro';
	font-style: normal;
	font-weight: 300;
	font-size: 16px;
	line-height: 175%;
	width: 327px;
}

.nav__wrapper.active li:nth-of-type(n+2) {
	padding-top: 24px;
}

.nav__wrapper.active li:last-child {
	text-align: center;
	padding-top: 40px;
}

.nav__wrapper.active img.nav_logo {
	max-width: 106px;
	height: auto;
	text-align: center;
}

.nav__wrapper.active li a {
	display: block;
	position: relative;
}

.nav__wrapper.active li a:after {
	position: absolute;
	top: calc(50% + 1px);
	right: 6px;
	width: 9px;
	height: 18px;
	content: "";
	transform: translateY(-50%);
	background-image: url(../images/arrow.svg);
	background-repeat: no-repeat;
	background-size: 9px 18px;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

.nav__toggle {
	display: none;
}

.nav__toggle:hover {
	cursor: pointer;
}

.nav__toggle {
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	background: var(--gold);
	width: 66px;
	height: 66px;
	border: none;
	z-index: 500;
}

.nav__toggle span {
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 20px;
	height: 2px;
	background-color: var(--black);
}

.nav__toggle span:nth-of-type(1) {
	top: 28px;
	width: 40%;
}

.nav__toggle span:nth-of-type(2) {
	top: 35px;
	width: 40%;
}

.nav__toggle[aria-expanded="true"] span:nth-of-type(1) {
	top: 26px;
	left: 20px;
	transform: translateY(6px) rotate(-45deg);
	width: 40%;
}

.nav__toggle[aria-expanded="true"] span:nth-of-type(2) {
	top: 38px;
	left: 20px;
	transform: translateY(-6px) rotate(45deg);
	width: 40%;
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 768px) {
	.logo_container {
			left: 3.2%;
		}
}

@media screen and (max-width: 326px) {
	.nav__wrapper.active ul {
		max-width: 280px;
		width: 100%;
	}
}


/* btn */
.btn {
	max-width: 345px;
	margin: 0 auto;
	text-align: center;
	font-size: 15px;
	letter-spacing: 1px;
	margin-top: 40px;
	background: var(--black);
}

.btn a {
	background: var(--gold);
	text-decoration: none;
	display: block;
	position: relative;
	border: 1px solid var(--gold);
	color: var(--black);
	text-align: center;
	padding: 18px 0;
	margin-bottom: 18px;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
	font-family: 'Hiragino Kaku Gothic Pro';
}
.btn.btn_red a{
	background: linear-gradient(to bottom, #DD0060, #FF0000);
	border: 1px solid #DD0060;
	color: var(--white);
	} 

.btn a:hover {
	opacity: 0.6;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 768px) {
	.btn a {
		width: 100%;
		margin: 0 auto;
		padding: 16px 0;
	}
}

/*footer area*/
#footer {
	padding: 40px 0;
	background: var(--white);
	text-align: center;
}

#footer .footer_logo {
	display: block;
	text-align: center;
	font-family: 'Hiragino Kaku Gothic Pro';
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 190%;
	margin-bottom: 40px
}

#footer .footer_logo img {
	max-width: 170px;
	height: auto;
}

#footer p,
#footer ul {
	color: var(--black);
	font-family: 'Hiragino Kaku Gothic Pro';
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 190%;
}

#footer p {
	margin-top: 0;
	margin-bottom: 8px;
}

#footer ul {
	margin-top: 8px;
}

#footer .border {
	border: 1px solid var(--gold);
	margin: 2px;
	position: relative;
	margin: 0 auto;
	width: 117px;
}