/* web font
*/

:root {
	--main-theme-color: #E60012;
	--main-text-color: #231815;
	--ft-inter: "Inter", sans-serif;
}

* {
	box-sizing: border-box;
	color: var(--main-text-color);
	font-family: "Noto Sans JP", sans-serif;
	list-style: none;
	margin: 0;
	padding: 0;
}
body.open {
	overflow: hidden;
}
a {
	text-decoration: none;
}
a:hover,
a:hover img {
	opacity: .8;
}
img {
	height: auto;
	max-width: 100%;
}
.pc {
	display: block;
}
.sp {
	display: none;
}
.pc2 {
	display: block;
}
.sp2 {
	display: none;
}
@media screen and (max-width: 968px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
}
@media screen and (max-width: 768px) {
	.pc2 {
		display: none;
	}
	.sp2 {
		display: block;
	}
}
.container {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	min-height: 100vh;
	overflow-x: clip;
	width: 100%;
	max-width: 1920px;
}
/* header */
.header {
	background: #fff;
	margin: 0 auto;
	padding: 15px 0;
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
}
.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	width: 95%;
	max-width: 1000px;
}
.logo {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 5px;
}
.logo-img {
	aspect-ratio: 216/62;
	max-width: 216px;
}
.logo-img img {
	width: 100%;
	height: auto;
}
.logo p {
	font-size: 14px;
	font-weight: 300;
	margin-left: 5px;
}
.header-right {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 20px;
}
.header-search {
	position: relative;
}
.search-form {
	display: none;
	height: 45px;
	margin: auto;
	overflow: hidden;
	position: absolute;
	left: -260px;
	bottom: 0;
	top: 0;
	width: 250px;
}
.search-form input,
.search-form button {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	background: none;
	border: 0;
	display: block;
	line-height: 0;
	outline: none;
}
.search-form input {
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 50px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	height: 100%;
	padding: 0 50px 0 15px;
	width: 100%;
}
.search-form button {
	cursor: pointer;
	margin: auto;
	position: absolute;
	right: 15px;
	top: 0;
	bottom: 0;
	width: 25px;
}
.header-search__btn button {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	background: none;
	border: 0;
	cursor: pointer;
	display: block;
	line-height: 0;
	outline: none;
	transition-duration: .2s;
}
.header-search__btn button img {
	opacity: 1;
	transition-duration: .3s;
}
.header-search__btn.active button img {
	opacity: 0;
}
.header-search__btn.active button {
	position: relative;
}
.header-search__btn.active button::before,
.header-search__btn.active button::after {
	background: var(--main-text-color);
	border-radius: 10px;
	content: "";
	display: block;
	height: 2px;
	margin: auto;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 36px;
}
.header-search__btn.active button::before {
	transform: rotate(45deg);
}
.header-search__btn.active button::after {
	transform: rotate(-45deg);
}
.header-search__btn button:hover,
.search-form button:hover {
	opacity: .8;
}
.menupanel {
	background: #fff;
	display: none;
	height: 300px;
	margin: 100px auto 0;
	padding: 30px 0 30px;
	position: fixed;
	right: 0;
	top: 0;
	bottom: 0;
	left: 0;
	width: 90%;
	max-width: 1000px;
	z-index: 9999;
}
.menupanel-inner {
	margin: 0 auto;
	width: 90%;
}
.menupanel-inner .information-cta__btn {
	margin: initial;
	margin-bottom: 16px;
	margin-inline: auto;
}
.menupanel-link {
	display: block;
	margin-inline: auto;
	margin-bottom: 16px;
	text-align: center;
	font-weight: 700;
	font-size: 15px;
}
/* hamberger */
.header-menu {
	background: var(--main-theme-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	position: relative;
	text-align: center;
	width: 50px;
	z-index: 999999;
}
.header-menu span {
	display: block;
}
.header-menu___trigger {
	position: relative;
	width: 20px;
	height: 21px;
	cursor: pointer;
	z-index: 3;
}
.header-menu___trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #fff;
	border-radius: 4px;
}
.header-menu___trigger, .header-menu___trigger span {
	display: inline-block;
	transition: all .5s;
	box-sizing: border-box;
}
.header-menu___trigger span:nth-of-type(1) {
	top: 0;
}
.header-menu___trigger span:nth-of-type(2) {
	top: 10px;
}
.header-menu___trigger span:nth-of-type(3) {
	bottom: 0;
}
.header-menu___trigger.active span:nth-of-type(1) {
	top: -10px;
}
.header-menu___trigger.active span:nth-of-type(3) {
	bottom: -10px;
}
.header-menu___trigger span:nth-of-type(1) {
	animation: header-menu__bar01 .75s forwards;
}
@keyframes header-menu__bar01 {
	0% {
		transform: translateY(20px) rotate(45deg);
	}
	50% {
		transform: translateY(20px) rotate(0);
	}
	100% {
		transform: translateY(0) rotate(0);
	}
}
.header-menu___trigger span:nth-of-type(2) {
	transition: all .25s .25s;
	opacity: 1;
}
.header-menu___trigger span:nth-of-type(3) {
	animation: header-menu__bar03 .75s forwards;
}
@keyframes header-menu__bar03 {
	0% {
		transform: translateY(-20px) rotate(-45deg);
	}
	50% {
		transform: translateY(-20px) rotate(0);
	}
	100% {
		transform: translateY(0) rotate(0);
	}
}
.header-menu___trigger.active span:nth-of-type(1) {
	animation: active-header-menu__bar01 .75s forwards;
}
@keyframes active-header-menu__bar01 {
	0% {
		transform: translateY(0) rotate(0);
	}
	50% {
		transform: translateY(20px) rotate(0);
	}
	100% {
		transform: translateY(20px) rotate(45deg);
	}
}
.header-menu___trigger.active span:nth-of-type(2) {
	opacity: 0;
}
.header-menu___trigger.active span:nth-of-type(3) {
	animation: active-header-menu__bar03 .75s forwards;
}
@keyframes active-header-menu__bar03 {
	0% {
		transform: translateY(0) rotate(0);
	}
	50% {
		transform: translateY(-20px) rotate(0);
	}
	100% {
		transform: translateY(-20px) rotate(-45deg);
	}
}
.header-bg {
	background: rgb(0 0 0 / 10%);
	display: none;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {
	.header-right {
		gap: 10px;
	}
	.logo-img {
		width: 100px;
	}
	.logo p {
		font-size: 12px;
	}
	.header-search {
		width: 25px;
	}
	.header-search__btn.active button::before,
	.header-search__btn.active button::after {
		width: 25px;
	}
	.header-menu {
		height: 35px;
		width: 35px;
	}
	.header-menu___trigger {
		width: 14px;
		height: 16px;
	}
	.header-menu___trigger span:nth-of-type(1) {
		top: 0;
	}
	.header-menu___trigger span:nth-of-type(2) {
		top: 7px;
	}
	.header-menu___trigger span:nth-of-type(3) {
		bottom: 0;
	}
	.header-menu___trigger.active span:nth-of-type(1) {
		top: -12px;
	}
	.header-menu___trigger.active span:nth-of-type(3) {
		bottom: -14px;
	}
}

/* gnavi */
.gnavi {
	border-bottom: 2px solid var(--main-theme-color);
	padding: 5px 0 15px;
}
.gnavi-inner {
	margin: 0 auto;
	width: 95%;
	max-width: 1000px;
}
.gnavi-inner ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.gnavi-inner ul li {
	position: relative;
	text-align: center;
	width: calc(100% / 6);
}
.gnavi-inner ul li:not(:last-child)::after {
	background: var(--main-text-color);
	content: "";
	display: block;
	height: 90%;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 1px;
}
.gnavi-inner ul li a {
	font-size: 11px;
	font-weight: 500;
}
.gnavi-inner ul li a::before {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: block;
	height: 48px;
	margin: 0 auto 8px;
	width: 48px;
}
.gnavi-inner ul li:nth-child(1) a::before {
	background-image: url(../images/icon-gnavi4.png);
}
.gnavi-inner ul li:nth-child(2) a::before {
	background-image: url(../images/icon-gnavi4.png);
}
.gnavi-inner ul li:nth-child(3) a::before {
	background-image: url(../images/icon-gnavi7.png);
}
.gnavi-inner ul li:nth-child(4) a::before {
	background-image: url(../images/icon-gnavi3.png);
}
.gnavi-inner ul li:nth-child(5) a::before {
	background-image: url(../images/icon-gnavi6.png);
}
.gnavi-inner ul li:nth-child(6) a::before {
	background-image: url(../images/icon-gnavi8.png);
}
@media screen and (max-width: 968px) {
	.gnavi-inner {
		overflow-x: auto;
	}
	.gnavi-inner ul {
		width: max-content;
		padding-bottom: 10px;
	}
	.gnavi-inner ul li {
		width: 165px;
	}
}
@media screen and (max-width: 768px) {
	.gnavi-inner ul li {
		width: 130px;
	}
	.gnavi-inner ul li a {
		font-size: 10px;
	}
	.gnavi-inner ul li a::before {
		height: 38px;
		width: 38px;
	}
}

/* footer */
.footer {
	background: #fff;
	margin-top: auto;
	padding: 35px 0;
}
.footer-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.footer-logo {
	margin: 0 0 20px;
	text-align: center;
}
.footer-logo a {
	aspect-ratio: 216 / 62;
	max-width: 216px;
	display: block;
}
.footer-logo a img {
	width: 100%;
	height: auto;
}
.footer-sublogo {
	margin: 0 0 30px;
	text-align: center;
}
.copyright p {
	font-family: var(--ft-inter);
	font-size: 12px;
	font-weight: 300;
	text-align: center;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}


.floating {
	display: flex;
	flex-direction: column;
	gap: 8px;
	position: fixed;
	right: 20px;
	top: 22%;
	width: 64px;
	z-index: 9;
}
.floating .sp {
	display: none
}
@media screen and (max-width: 768px) {
    .floating {
        right: 0;
        top: initial;
        bottom: 0;
        width: 100%;
    }
	.floating .pc {
		display: none;
	}
	.floating .sp {
		display: block;
		text-align: center;
		background: #F99090;
		padding: 4px;
	}
	.floating .sp a {
        color: #fff;
        font-size: 15px;
        width: 100%;
        display: block;
	}
}