@charset "utf-8";

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
共通
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
リセットCSS
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
* {
	box-shadow: none;
	outline: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

::before,
::after {
	box-sizing: border-box;
}

html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, address, cite, em, small, img, picture, dl, dt, dd, ol, ul, li, label, fieldset, legend, table, tr, th, td, hr, input, textarea,
main, article, aside, details, figure, figcaption, header, footer, hgroup, menu, nav, section, time { 
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	font-style: inherit;
	font-size: 100%;
	vertical-align: baseline;
}

iframe, cite, main, article, aside, details, figure, figcaption, header, footer, hgroup, menu, nav, section, picture, audio, video { 
	display: block;
}

body {
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

a {
	display: inline-block;
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	image-rendering: -webkit-optimize-contrast;
}

svg {
	vertical-align: middle;
}

ol, ul {
	list-style: none;
	list-style-type: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input, textarea, select, button {
	border: 0;
	border-radius: inherit;
	background: none;
	color: inherit;
	font-weight: inherit;
	font-size: inherit;
	font-family: inherit;
	line-height: inherit;
	letter-spacing: inherit;
}

textarea {
	overflow: auto;
}

input:not([type="checkbox"]):not([type="radio"]), textarea, button {
	-webkit-appearance: none;
}

time {
	display: inline-block;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ベース
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
:root {
	--color-base:     #151515;
	--color-base-rgb: 21, 21, 21;
	--color-main:     #b40101;
	--color-main-rgb: 180, 1, 1;
	--color-sub:      #e6000c;

	--font-main:      "Hiragino Sans", "Hiragino Kaku Gothic ProN", "BIZ UDPGothic", "Noto Sans CJK JP", Meiryo, sans-serif;
	--font-english:   "Barlow Semi Condensed", "Helvetica Neue", Arial, Roboto, sans-serif;
}

@font-face {
	font-family: "Hiragino Sans";
	src: local("HiraginoSans-W3");
	font-weight: 400;
}

@font-face {
	font-family: "Hiragino Sans";
	src: local("HiraginoSans-W4");
	font-weight: 500;
}

@font-face {
	font-family: "Hiragino Sans";
	src: local("HiraginoSans-W5");
	font-weight: 600;
}

@font-face {
	font-family: "Hiragino Sans";
	src: local("HiraginoSans-W6");
	font-weight: 700;
}

@font-face {
	font-family: "Hiragino Sans";
	src: local("HiraginoSans-W7");
	font-weight: 800;
}

@font-face {
	font-family: "Hiragino Sans";
	src: local("HiraginoSans-W8");
	font-weight: 900;
}

html {
	font-size: 62.5%;
}

body {
	overflow: hidden scroll;
	color: var(--color-base);
	font-size: 1.4em;
	font-family: var(--font-main);
	line-height: 1.5;
	letter-spacing: 0.02em;
}

main {
	overflow: hidden;
}

article {
	overflow: hidden;
}

section,
.section {
	padding: 30px 0;
}

.inner {
	max-width: 1060px;
	margin: 0 auto;
	padding: 0 5.4%;
}

span:not([class]) {
	display: inline-block;
}

h1,
h2,
h3 {
	line-height: 1.4;
}

p:not([class]) + p:not([class]) {
	margin-top: 1.5em;
}

a,
a::before,
a::after {
	transition: 0.3s ease-in-out;
}

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

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

@media (min-width: 768px) {
section,
.section {
	padding: 60px 0;
}

.inner {
	padding: 0 30px;
}

a[href^="tel:"] {
	pointer-events: none;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
アニメーション
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
@keyframes fade {
0% {
	opacity: 0;
}

100% {
	opacity: 1;
}
}

@keyframes fade-up {
0% {
	opacity: 0;
	transform: translateY(30px);
}

100% {
	opacity: 1;
	transform: translateY(0);
}
}

@keyframes fade-down {
0% {
	opacity: 0;
	transform: translateY(-30px);
}

100% {
	opacity: 1;
	transform: translateY(0);
}
}

@keyframes fade-right {
0% {
	opacity: 0;
	transform: translateX(30px);
}

100% {
	opacity: 1;
	transform: translateX(0);
}
}

@keyframes fade-left {
0% {
	opacity: 0;
	transform: translateX(-30px);
}

100% {
	opacity: 1;
	transform: translateX(0);
}
}

@keyframes fade-zoom-in {
0% {
	opacity: 0;
	transform: scale(0.9);
}

100% {
	opacity: 1;
	transform: scale(1);
}
}

@keyframes fade-zoom-out {
0% {
	opacity: 0;
	transform: scale(1.1);
}

100% {
	opacity: 1;
	transform: scale(1);
}
}

@keyframes show-left {
0% {
	-webkit-clip-path: inset(0 100% 0 0);
	clip-path: inset(0 100% 0 0);
}

100% {
	-webkit-clip-path: inset(0);
	clip-path: inset(0);
}
}

.animation {
	animation-duration: 0.6s;
	animation-timing-function: ease-out;
	animation-delay: 0.3s;
	animation-fill-mode: both;
}

.fade,
.fade-up,
.fade-down,
.fade-right,
.fade-left,
.fade-zoom-in,
.fade-zoom-out {
	opacity: 0;
}

.show-left {
	animation-timing-function: cubic-bezier(0.5, 0.1, 0.5, 1);
	-webkit-clip-path: inset(0 100% 0 0);
	clip-path: inset(0 100% 0 0);
}

.load .animation.fade {
	animation-name: fade;
}

.load .animation.fade-up {
	animation-name: fade-up;
}

.load .animation.fade-down {
	animation-name: fade-down;
}

.load .animation.fade-right {
	animation-name: fade-right;
}

.load .animation.fade-left {
	animation-name: fade-left;
}

.load .animation.fade-zoom-in {
	animation-name: fade-zoom-in;
}

.load .animation.fade-zoom-out {
	animation-name: fade-zoom-out;
}

.load .animation.show-left {
	animation-name: show-left;
}

.delay05 {
	animation-delay: 0.5s;
}

.delay06 {
	animation-delay: 0.6s;
}

.delay07 {
	animation-delay: 0.7s;
}

.delay09 {
	animation-delay: 0.9s;
}

.delay12 {
	animation-delay: 1.2s;
}

@media (min-width: 768px) {
@keyframes fade-right {
0% {
	opacity: 0;
	transform: translateX(40px);
}

100% {
	opacity: 1;
	transform: translateX(0);
}
}

@keyframes fade-left {
0% {
	opacity: 0;
	transform: translateX(-40px);
}

100% {
	opacity: 1;
	transform: translateX(0);
}
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
見出し
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.section-heading {
	margin: 0 auto 1em;
	font-size: 2.3rem;
}

.section-heading-english {
	display: block;
	width: 93px;
	margin: 8px 0;
	color: var(--color-main);
	font-weight: 500;
	font-size: 1.5rem;
	font-family: var(--font-english);
}

.section-heading-english::after {
	display: block;
	width: 40px;
	margin-top: 8px;
	border-top: 3px solid;
	content: "";
}

@media (min-width: 768px) {
.section-heading {
	display: flex;
	font-size: 3.6rem;
}

.section-heading-english {
	flex: none;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
リンク
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.link {
	color: #0066ff;
	text-decoration: underline;
}

.link:hover {
	color: var(--color-main);
}

.button {
	display: flex;
	position: relative;
	min-width: 250px;
	max-width: 480px;
	margin: 2em auto 0;
	padding: 0.5em 1.5em;
	border-radius: 8px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.22);
	background: var(--color-main);
	color: #fff;
	font-weight: 700;
	font-size: 1.8rem;
	text-align: center;
	justify-content: center;
	align-items: center;
}

.button:hover {
	border-radius: 0;
	box-shadow: none;
}

.icon-arrow {
	position: relative;
	width: 26px;
	height: 26px;
	margin-left: 1em;
	border: 1.5px solid;
	border-radius: 50%;
	transition: 0.3s ease-in-out;
	flex: none;
}

.button:hover .icon-arrow {
	transform: translateX(20%);
}

.icon-arrow::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 10px;
	height: 10px;
	margin: auto;
	border-top: 1.5px solid;
	border-right: 1.5px solid;
	content: "";
	transform: translateX(-20%) rotate(45deg);
}

@media (min-width: 768px) {
.button {
	font-size: 2rem;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
コンポーネント
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.color-sub {
	color: var(--color-sub);
}

.font-english {
	font-weight: 500;
	font-family: var(--font-english);
}

.align-center {
	text-align: center;
}

.block-center {
	display: table;
	margin-right: auto;
	margin-left: auto;
}

li.spacer {
	margin-bottom: 0;
}

@media (max-width: 767.9px) {
.block-table th {
	display: block;
}

.block-table td {
	display: block;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ローダー
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.loader {
	display: flex;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10;
	background: #fff;
	transition: 0.8s ease-in-out;
	justify-content: center;
	align-items: center;
}

.loader.hide {
	visibility: hidden;
	opacity: 0;
}

@keyframes loader {
0% {
	transform: rotate(0deg);
}

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

.loader-bar {
	position: relative;
	width: 50px;
	height: 50px;
	border: 5px solid rgba(var(--color-main-rgb), 0.3);
	border-radius: 50%;
	animation: loader 1s linear infinite;
}

.loader-bar::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 65px;
	height: 65px;
	border: 5px solid transparent;
	border-bottom-color: var(--color-main);
	border-radius: 50%;
	content: "";  
	transform: translate(-50%, -50%);
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ヘッダー
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 4;
	padding: 10px 10px 0;
	transition: transform 0.5s ease-in-out;
}

header.hide {
	transform: translateY(-150%);
}

.header-inner {
	display: flex;
	height: 50px;
	padding: 0 12px 0 20px;
	border-radius: 35px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	background: #fff;
	letter-spacing: normal;
	justify-content: space-between;
	align-items: center;
}

.header-logo {
	fill: var(--color-base);
}

.header-logo:hover {
	fill: var(--color-main);
}

.header-overlay {
	visibility: hidden;
	opacity: 0;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	background: rgba(var(--color-main-rgb), 0.1);
	transition: 0.3s ease-in-out;
}

.header-overlay.show {
	visibility: visible;
	opacity: 1;
}

@media (min-width: 768px) {
header {
	padding: 20px 0 0;
	text-align: center;
}

.header-inner {
	height: 63px;
	padding: 0 22px;
}

.header-menu-ul {
	display: flex;
}

.header-menu-li:not(:last-child)::after {
	margin: 0 6px;
	content: "|";
}

.header-menu-li a:hover {
	color: var(--color-main);
}

.header-container {
	display: none;
}

.header-toggle {
	display: none;
}
}

@media (min-width: 768px) and (max-width: 1111.9px) {
.header-inner {
	display: inline-flex;
	height: 70px;
	padding-top: 12px;
	padding-bottom: 8px;
	flex-flow: column;
	align-items: flex-start;
}
}

@media (max-width: 767.9px) {
.header-logo svg {
	width: 180px;
}

.header-nav {
	position: fixed;
	overflow-y: auto;
	z-index: 3;
	top: 0;
	right: 0;
	bottom: 0;
	width: 85%;
	max-width: 300px;
	padding: 70px 25px 50px;
	background: #fff;
	transform : translateX(100%);
}

header.open .header-nav {
	transform : translateX(0);
}

.header-menu-li {
	border-bottom: 1px solid;
}

.header-menu-li a {
	display: block;
	padding: 10px;
	font-size: 1.5rem;
}

.header-menu-li a:hover {
	background: rgba(var(--color-main-rgb), 0.1);
}

.header-container {
	margin-top: 40px;
}

.header-store {
	display: inline-block;
	margin-bottom: 20px;
	padding: 0.5em 1.5em;
	border: 2px solid var(--color-main);
	border-radius: 24px;
	background: var(--color-main);
	color: #fff;
	font-weight: 700;
	text-align: center;
}

.header-store:hover {
	background: #fff;
	color: var(--color-main);
}

.header-tel {
	display: flex;
	margin-top: 20px;
	color: var(--color-main);
	align-items: flex-start;
}

.header-tel:hover {
	color: var(--color-base);
}

.header-tel-number {
	margin-bottom: 2px;
	font-weight: 800;
	font-size: 1.7rem;
	line-height: 1.2;
}

.header-tel-hour {
	color: var(--color-base);
	font-size: 1.2rem;
}

.header-toggle {
	position: relative;
	z-index: 3;
	width: 50px;
	height: 50px;
	cursor: pointer;
	transition: 0.3s ease-in-out;
}

.header-toggle:hover {
	color: var(--color-main);
}

.header-toggle-bar {
	position: absolute;
	right: 0;
	left: 0;
	width: 24px;
	margin: auto;
	border-top: 1.5px solid;
	transition: 0.3s ease-in-out;
}

.header-toggle-bar:nth-child(1) {
	top: 17px;
}

.header-toggle-bar:nth-child(2) {
	top: 24px;
}

.header-toggle-bar:nth-child(3) {
	top: 31px;
}

header.open .header-toggle-bar:nth-child(1) {
	top: 24px;
	transform: rotate(-45deg);
}

header.open .header-toggle-bar:nth-child(2) {
	transform: scale(0, 1);
}

header.open .header-toggle-bar:nth-child(3) {
	top: 24px;
	transform: rotate(45deg);
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
フッター
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
footer {
	position: relative;
	padding-bottom: 57px;
	background: var(--color-main);
	color: #fff;
	text-align: center;
}

.footer-main {
	padding: 30px 0 20px;
}

.footer-menu-ul {
	margin-bottom: 15px;
}

.footer-menu-li {
	margin-bottom: 5px;
	font-weight: 700;
}

.footer-menu-li a:hover {
	opacity: 0.85;
}

.footer-copyright {
	font-size: 1rem;
}

.footer-contact {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	padding: 5px;
	border-top: 1.5px solid;
	background: #D80C0C;
	font-weight: 800;
	transition: transform 0.5s ease-in-out;
}

.footer-contact.hide {
	transform: translateY(100%);
}

.footer-contact-ul {
	display: inline-flex;
	max-width: 100%;
	justify-content: space-between;
}

.footer-contact-li {
	width: 250px;
	max-width: 49%;
}

.footer-contact-li a {
	display: flex;
	position: relative;
	height: 45px;
	border-radius: 5px;
	padding-left: 15%;
	background: #fff;
	color: #D80C0C;
	font-size: 4.2vw;
	justify-content: center;
	align-items: center;
}

.footer-contact-li a:hover {
	color: var(--color-base);
}

.footer-contact-li .icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 5px;
	width: 15%;
	max-width: 35px;
	margin: auto;
}

.footer-contact-li .heading {
	margin-bottom: 1px;
	line-height: 1.2;
}

.footer-contact-li .hour {
	color: var(--color-base);
	font-weight: 400;
	font-size: 1rem;
}

@media (min-width: 400px) {
.footer-contact-li a {
	font-size: 1.7rem;
}
}

@media (min-width: 768px) {
footer {
	padding-bottom: 82px;
}

.footer-main {
	padding: 50px 0 30px;
}

.footer-menu-ul {
	display: flex;
	margin-right: -15px;
	margin-left: -15px;
	justify-content: center;
}

.footer-menu-li {
	margin: 0 15px;
}

.footer-copyright {
	font-size: 1.2rem;
}

.footer-contact {
	display: flex;
	padding: 15px;
	justify-content: center;
	align-items: center;
}

.footer-contact-heading {
	margin-right: 20px;
	font-size: 2.5rem;
	line-height: 1;
}

.footer-contact-heading .font-small {
	display: inline-block;
	font-size: 1.9rem;
}

.footer-contact-ul {
	max-width: 60%;
	flex: none;
}

.footer-contact-li a {
	height: 50px;
	font-size: 1.9rem;
}

.footer-contact-li .hour {
	font-size: 1.1rem;
}
}

@media (max-width: 767.9px) {
.footer-contact-heading {
	display: none;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ページトップ
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.page-top {
	display: flex;
	visibility: hidden;
	opacity: 0;
	position: fixed;
	right: 10px;
	bottom: 70px;
	z-index: 2;
	width: 60px;
	height: 60px;
	color: var(--color-main);
	font-weight: 500;
	font-size: 1.5rem;
	font-family: var(--font-english);
	line-height: 1.1;
	cursor: pointer;
	transition: 0.3s ease-in-out, opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
	justify-content: center;
	align-items: flex-end;
}

.page-top.show {
	visibility: visible;
	opacity: 1;
}

.page-top.change {
	position: absolute;
	top: -70px;
}

.page-top::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	width: 67%;
	height: 67%;
	margin: 0 auto;
	border-top: 2px solid var(--color-main);
	border-left: 2px solid var(--color-main);
	content: "";
	transform: translateY(20%) rotate(45deg);
	transition: 0.3s ease-in-out;
}

.page-top:hover::before {
	transform: translateY(5%) rotate(45deg);
}

@media (min-width: 768px) {
.page-top {
	right: 20px;
	bottom: 90px;
	width: 75px;
	height: 75px;
	font-size: 1.8rem;
}

.page-top.change {
	top: -90px;
}
}
