@charset "utf-8";

/*---------------------------------
	reset
---------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

html { overflow-y: scroll;}

body {
	font-family: 'Noto Sans JP', "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
	font-size: 16px;
	-webkit-text-size-adjust: none;
	line-height: 1.5;
	color: #000;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
	display: block;
}

label
{ cursor: pointer;}

ol, ul
{ list-style: none;}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
	content: none;
}

a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	color: #000;
	text-decoration: none;
}

a:hover {
	color: #D90024;
}

ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}

mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}

del {
	text-decoration: line-through;
}

abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}

input, select, img {
	vertical-align: middle;
}

/*---------------------------------
	layout
---------------------------------*/


/* typography
-------------------------------- */

.red{
color:red;
}




/* header
-------------------------------- */
#header {
	position: relative;
	padding: 52px 0 5px;
	margin: 0 0 80px;
}

#header::before,
#header::after {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50%;
	height: 5px;
	background: #D90024;
	content: "";
}

#header::after {
	left: auto;
	right: 0;
	background: #000;
}

.header-inner {
	display: flex;
	justify-content: space-between;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 40px;
}

.header-logo {
	max-width: 250px;
	padding: 0 10px 0 0;
}

.header-logo img {
	width: 100%;
	height: auto;
}

.header-menu-btn-sp {
	display: none;
}

.header-gnavi-wrapper {
	padding: 0 35px 0 0;
	width: calc(100% - 260px);
	box-sizing: border-box;
}

.header-gnavi {
	display: flex;
	width: 100%;
	justify-content: flex-end;
}

.header-gnavi > li {
	position: relative;
	margin: 0 0 0 7%;
}

.header-gnavi > li:first-child {
	margin: 0;
}

.header-gnavi > li > a {
	position: relative;
	display: block;
	padding: 18px 0 30px;
	border-bottom: 10px solid transparent;
	font-weight: 500;
	font-size: 1.125em;
}

.header-gnavi > li:hover > a {
	border-bottom-color: #D90024;
}

.header-gnavi > li > a::after {
	position: absolute;
	left: 50%;
	bottom: 15px;
	width: 6px;
	height: 6px;
	border-right: 2px solid #D90024;
	border-bottom: 2px solid #D90024;
	content: "";
	transform: translateX(-50%) rotate(45deg);
}

.header-gnavi-child {
	display: none;
	position: absolute;
	background: #fff;
	z-index: 1;
}

.header-gnavi > li:hover .header-gnavi-child {
	display: block;
}

.header-gnavi-child > li {
	position: relative;
	padding: 0 0 1px;
	white-space: nowrap;
}

.header-gnavi-child > li:not(:last-child)::after {
	display: block;
	position: absolute;
	left: 10px;
	bottom: 0;
	width: calc(100% - 20px);
	height: 1px;
	background: #000;
	content: "";
}

.header-gnavi-child > li > a {
	display: block;
	padding: 7px 10px;
}

.header-floating-list {
	position: fixed;
	right: 0;
	top: 48px;
	z-index: 2;
}

.header-floating-list > li {
	border-bottom: 1px solid #fff;
	background: #D90024;
}

.header-floating-list > li:last-child {
	border-bottom: none;
}

.header-floating-list > li > a {
	display: block;
	writing-mode: vertical-rl;
	padding: 10px 8px;
	color: #fff;
	font-size: 0.875em;
	letter-spacing: 3px;
	max-height: 10em;
	text-align: center;
}

.header-floating-list > li > a:hover {
	opacity: 0.7;
}

/* footer
-------------------------------- */
#footer {
	margin: 90px 0 0;
	padding: 40px 40px 30px;
	background: #000;
	color: #fff;
}

.footer-inner {
	max-width: 1000px;
	margin: 0 auto;
}

.footer-top {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.footer-info-wrapper {
	width: 38%;
}

.footer-logo {
	max-width: 285px;
	margin: 0 0 32px;
}

.footer-logo img {
	width: 100%;
	height: auto;
}

.footer-company {
	line-height: 1.75;
	font-size: 0.875em;
	color: #fff;
}

.footer-nav-wrapper {
	width: 60%;
	align-self: flex-end;
}

.footer-nav,
.footer-nav-child{
	display: flex;
	justify-content: space-between;
}

.footer-nav {
	position: relative;
	padding: 0 0 calc(2em + 20px);
}

.footer-nav-child{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}

.footer-nav > li {
	font-size: 1.025em;
}

.footer-nav-child > li {
	font-size: 1rem;
}

.footer-nav > li > a,
.footer-nav-child > li > a {
	color: #fff;
	text-decoration: underline;
}

.footer-nav > li > a:hover,
.footer-nav-child > li > a:hover {
	text-decoration: none;
}

.footer-contact-btn {
	position: relative;
	display: block;
	margin: 40px 0 0;
	padding: 16px;
	color: #fff;
	font-size: 1.15em;
	font-weight: bold;
	text-align: center;
}

.footer-contact-btn::before,
.footer-contact-btn::after {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: calc(100% - 2px);
	height: 18px;
	border: 1px solid #fff;
	border-bottom: none;
	border-radius: 5px 5px 0 0;
	content: "";
}

.footer-contact-btn::after {
	top:  auto;
	bottom: 0;
	border: 1px solid #fff;
	border-top: none;
	border-radius: 0 0 5px 5px;
}

.footer-contact-btn .inner {
	display: inline-block;
	padding: 0 5px;
	border-bottom: 2px solid #D90024;
}

.footer-time {
	margin: 5px 0 0;
}

.footer-tag-list {
	margin: 35px 0 0;
	display: flex;
	justify-content: flex-start;
	width: 100%;
	flex-wrap: wrap;
}

.footer-tag-list > li {
	margin: 0 30px 0 0;
	padding: 7px 14px;
	border: 1px solid #fff;
	font-size: 0.933em;
}

.footer-copy-wrapper {
	display: flex;
	justify-content: space-between;
	margin: 30px 0 0;
}

.footer-copy-wrapper .footer-policy {
	color: #fff;
	font-size: 0.925em;
	text-decoration: underline;
}

.footer-copy-wrapper .footer-policy:hover {
	text-decoration: none;
}

.footer-copy-wrapper .footer-copy {
	font-size: 0.775em;
}

/* parts
-------------------------------- */
.pc-only { display: block !important;}
.sp-only { display: none !important;}

.basic-heading01 {
	margin: 0 0 50px;
	text-align: center;
}

.basic-heading01 .jp {
	display: block;
	font-size: 2.05em; /*org 2.25em*/
	font-weight: bold;
	letter-spacing: 8px;

}

.basic-heading01 .jp rt {
	font-size: 0.65rem;
}

.basic-heading01 .en {
	position: relative;
	display: inline-block;
	margin: 0 auto;
	padding: 0 30px;
	font-size: 1.1em;
	min-width: 110px;
	letter-spacing: 5px;
	font-weight:normal;
}

.basic-heading01 .en::before,
.basic-heading01 .en::after {
	position: absolute;
	left: 0;
	top: 50%;
	width: 26px;
	height: 1px;
	background: #000;
	content: "";
}

.basic-heading01 .en::after {
	left: auto;
	right: 0;
}

.basic-section01 {
	max-width: 1000px;
	padding: 0 40px;
	margin: 0 auto 100px;
}

.basic-section01:last-child {
	margin: 0 auto;
}

.basic-section02:not(:last-child) {
	margin: 0 0 100px;
}


/*---------------------------------
	PC only
---------------------------------*/
@media only screen and (min-width: 768px) {
	.header-gnavi-wrapper {
		display: block !important;
	}
}

/*---------------------------------
	Tablet / SP
---------------------------------*/
@media only screen and (max-width: 767px) {

	/*---------------------------------
		layout
	---------------------------------*/
	body {
		font-size: 14px;
	}

	/* header
	-------------------------------- */
	#header {
		position: relative;
		padding: 0 0 2px;
		margin: 0 0 35px;
	}

	#header::before,
	#header::after {
		height: 2px;
	}

	.header-inner {
		height: 53px;
		padding: 0;
	}

	.header-logo {
		display: flex;
		max-width: 154px;
		padding: 0;
	}

	.header-logo a {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 5px 12px 0;
	}

	.header-menu-btn-sp {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 43px;
		padding: 12px 0 0;
	}

	.header-menu-btn-sp .line {
		position: relative;
		width: 25px;
		height: 2px;
		background: #000;
		border-radius: 1px;
	}

	.header-menu-btn-sp .line::before,
	.header-menu-btn-sp .line::after {
		position: absolute;
		left: 0;
		top: -5px;
		width: 25px;
		height: 2px;
		background: #000;
		border-radius: 1px;
		content: "";
	}
	
	.header-menu-btn-sp .line::after {
		top: auto;
		bottom: -5px;
	}

	.header-menu-btn-sp.open .line {
		transform: rotate(45deg);
	}

	.header-menu-btn-sp.open .line::before {
		top: 0;
		transform: rotate(90deg);
	}

	.header-menu-btn-sp.open .line::after {
		display: none;
	}

	.header-gnavi-wrapper {
		display: none;
		position: absolute;
		left: 0;
		top: 53px;
		width: 100%;
		padding: 0;
		z-index: 1;
		background: #fff;
		border-bottom: 2px solid #000;
	}

	.header-menu-btn-sp.open + .header-gnavi-wrapper {
		/*display: block;*/
	}

	.header-gnavi {
		display: block;
	}

	.header-gnavi > li {
		position: relative;
		margin: 0;
		padding: 0 0 1px;
	}

	.header-gnavi > li::after {
		display: block;
		position: absolute;
		left: 50%;
		bottom: 0;
		display: block;
		width: calc(100% - 20px);
		height: 1px;
		background: #000;
		transform: translateX(-50%);
		content: "";
	}

	.header-gnavi > li > a {
		padding: 10px 30px;
		border-bottom: none;
		font-size: 1.143em;
	}

	.header-gnavi > li > a::after {
		position: absolute;
		left: auto;
		right: 15px;
		bottom: 50%;
		width: 6px;
		height: 6px;
		border-right: 2px solid #D90024;
		border-bottom: 2px solid #D90024;
		content: "";
		transform: translateY(50%) rotate(-45deg);
	}

	.header-gnavi > li > a.header-gnavi-parent::after {
		display: none;
		pointer-events: none;
	}

	.header-gnavi > li > a.header-gnavi-parent {
		pointer-events: none;
	}

	.header-gnavi > li > a.header-gnavi-parent:hover {
		color: #000;
	}

	.header-gnavi-child {
		display: block;
		position: static;
	}

	.header-gnavi-child > li {
		position: relative;
		padding: 1px 0 0;
		white-space: normal;
	}

	.header-gnavi-child > li::after,
	.header-gnavi-child > li:not(:last-child)::after {
		display: block;
		position: absolute;
		left: 10px;
		top: 0;
		bottom: auto;
		width: calc(100% - 20px);
		height: 1px;
		background: #ccc;
		content: "";
	}

	.header-gnavi-child > li > a {
		position: relative;
		display: block;
		padding: 10px 30px 10px 40px;
	}

	.header-gnavi-child > li > a::after {
		position: absolute;
		left: auto;
		right: 15px;
		bottom: 50%;
		width: 6px;
		height: 6px;
		border-right: 2px solid #D90024;
		border-bottom: 2px solid #D90024;
		content: "";
		transform: translateY(50%) rotate(-45deg);
	}

	.header-floating-list {
		position: static;
		right: auto;
		top: auto;
	}

	.header-floating-list > li {
		position: relative;
		margin: 0;
		padding: 0 0 1px;
		border-bottom: none;
		background: transparent;
	}

	.header-floating-list > li:not(:last-child)::after {
		display: block;
		position: absolute;
		left: 50%;
		bottom: 0;
		display: block;
		width: calc(100% - 20px);
		height: 1px;
		background: #000;
		transform: translateX(-50%);
		content: "";
	}

	.header-floating-list > li > a {
		display: block;
		padding: 10px 30px;
		border-bottom: none;
		font-size: 1.143em;
		color: #000;
		writing-mode: horizontal-tb;
		letter-spacing: 0;
		text-align: left;
		font-weight: bold;
	}

	.header-floating-list > li > a:hover {
		opacity: 1;
		color: #D90024;
	}

	.header-floating-list > li > a::after {
		position: absolute;
		left: auto;
		right: 15px;
		bottom: 50%;
		width: 6px;
		height: 6px;
		border-right: 2px solid #D90024;
		border-bottom: 2px solid #D90024;
		content: "";
		transform: translateY(50%) rotate(-45deg);
	}

	/* footer
	-------------------------------- */
	#footer {
		margin: 40px 0 0;
		padding: 24px 35px 20px;
	}

	.footer-top {
		width: 100%;
		display: block;
	}

	.footer-info-wrapper {
		width: auto;
		margin: 0 0 20px;
	}

	.footer-logo {
		max-width: 142px;
		margin: 0 0 14px;
	}

	.footer-company {
		font-size: 0.857em;
	}

	.footer-nav-wrapper {
		width: auto;
	}
	
	.footer-nav {
		padding: 0;
	}

	.footer-nav-child {
		display: block;
		width: auto;
	}

	.footer-nav > li {
		position: relative;
		padding: 0 0 calc(5em + 14px);
		font-size: 0.857em;
	}

	.footer-nav-child > li {
		margin: 7px 0 0;
		font-size: 1em;
		white-space: nowrap;
	}

	.footer-contact-btn {
		margin: 16px 0 0;
		padding: 8px;
		font-size: 1em;
	}

	.footer-contact-btn::before,
	.footer-contact-btn::after {
		height: 10px;
		border-radius: 3px 3px 0 0;
	}

	.footer-contact-btn::after {
		border-radius: 0 0 3px 3px;
	}

	.footer-contact-btn .inner {
		padding: 0 2px;
	}

	.footer-time {
		margin: 5px 0 0;
		font-size: 0.857em;
	}

	.footer-tag-list {
		margin: 20px 0 0;
		justify-content: space-between;
	}

	.footer-tag-list > li {
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 10px 0 0;
		padding: 3px 7px;
		font-size: 0.857em;
		box-sizing: border-box;
		width: calc(50% - 8px);
	}

	.footer-tag-list > li:nth-child(1),
	.footer-tag-list > li:nth-child(2) {
		margin: 0;
	}

	.footer-copy-wrapper {
		display: block;
		margin: 10px 0 0;
	}

	.footer-copy-wrapper .footer-policy {
		font-size: 1em;
	}

	.footer-copy-wrapper .footer-copy {
		margin: 10px 0 0;
		font-size: 0.857em;
	}
	
	/* parts
	-------------------------------- */
	.pc-only { display: none !important;}
	.sp-only { display: block !important;}

	.basic-heading01 {
		margin: 0 0 20px;
	}

	.basic-heading01 .jp {
		font-size: 1.714em;
		letter-spacing: 4px;
	}

	.basic-heading01 .en {
		padding: 0 18px;
		font-size: 1.286em;
		min-width: 100px;
	}

	.basic-heading01 .en::before,
	.basic-heading01 .en::after {
		width: 14px;
	}
	
	.basic-section01 {
		padding: 0 35px;
		margin: 0 auto 40px;
	}

	.basic-section01:last-child {
		margin: 0 auto;
	}

	.basic-section02:not(:last-child) {
		margin: 0 0 40px;
	}

}
