@charset "utf-8";

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
共通
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
* {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	box-shadow: none;
	outline: none;
}

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

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

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

a {
	color: inherit;
	text-decoration: none;
}

address {
	font-style: normal;
}

img {
	max-width: 100%;
	height: auto;
	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;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+-*/
body {
	overflow: hidden scroll;
	color: #d61518;
	font-size: 1rem;
	font-family: "Noto Sans CJK JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "BIZ UDPGothic", "Yu Gothic Medium", sans-serif;
}

body > * {
	font-size: 12px;
	font-feature-settings: "palt";
	line-height: 2;
	letter-spacing: 0.05em;
}

main {
	overflow-x: hidden;
}

article {
	overflow-x: hidden;
	font-size: 13px;
}

section {
	position: relative;
	z-index: 1;
	padding: 50px 0;
	background: #fff;
}

h1 {
	line-height: 1.5;
}

h2 {
	line-height: 1.5;
}

h3 {
	line-height: 1.5;
}

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

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

a:hover {
	opacity: 0.7;
}

a:not([href]) {
	cursor: default;
}

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

.wa-barlow {
	font-family: "Barlow Condensed", "Helvetica Neue", Arial, Roboto, sans-serif;
}

.wa-inner {
	width: 100%;
	max-width: 1260px;
	margin: auto;
	padding: 0 6.3%;
}

article .wa-inner {
	max-width: 1060px;
}

.wa-section-heading {
	margin-bottom: 20px;
	text-align: center;
}

.wa-section-heading-english {
	margin-bottom: 0.3em;
	padding-bottom: 0.5em;
	border-bottom: 2px solid;
}

.wa-section-heading-japanese {
	display: block;
	font-weight: 500;
	font-size: 9px;
}

li.wa-spacer {
	width: 0;
	height: 0;
	margin: 0;
	border: none;
}

h1.c-heading {
	text-align: center;
    font-size: 30px;
    padding-bottom: 45px;
    color: #808080;
}

.c-text_mail {
	text-align: center;
	background-color: #FFF5F2;
	padding: 18px 35px;
	border-radius: 10px;
	color: #000;
	margin-bottom: 30px;
}

.c-text{
	margin-bottom: 27px;
	color: #000;
}

a.c-foam_decoration{
	text-decoration: underline;
	font-weight: bold;
}

@media (min-width: 768px) {
body > * {
	font-size: 14px;
}

article {
	font-size: 16px;
}

section {
	padding: 120px 0;
}

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

.wa-inner {
	padding: 0 30px;
}

.wa-section-heading-japanese {
	font-size: 13px;
}

section.c-section{
	padding: 110px;
	text-align: center;
}
}

@media (max-width: 767.9px) {
	section.c-section{
	padding: 60px 32px 20px 32px;
}
}
/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ローダー
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
@keyframes circle {
0% {
	opacity: 0;
	transform: scale(0);
}

50% {
	opacity: 1;
}

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

.wa-loader {
	display: flex;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10;
	background: #fff;
	justify-content: center;
	align-items: center;
}

.wa-loader-bar {
	position: relative;
	width: 120px;
	height: 120px;
}

.wa-loader-bar:before,
.wa-loader-bar:after {
	opacity: 0;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	border: 5px solid #d61518;
	border-radius: 50%;
	content: "";
	animation: circle 2s infinite;
}

.wa-loader-bar:after {
	border: 2px solid #d61518;
	animation-delay: 1s;
}

.wa-loader-bar:before {
	border: 6px solid #d61518;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ヘッダー
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.wa-header-home {
	position: fixed;
	top: 20px;
	left: 15px;
	z-index: 4;
}

.wa-header-toggle {
	position: fixed;
	top: 8px;
	right: 8px;
	z-index: 4;
	width: 50px;
	height: 50px;
	cursor: pointer;
	transition: 0.3s ease-in-out;
	flex: none;
}

.wa-header-toggle:hover {
	opacity: 0.7;
}

.wa-header-toggle-bar {
	position: absolute;
	right: 0;
	left: 0;
	width: 26px;
	height: 4px;
	margin: auto;
	box-shadow: 0 0 3px 2px rgba(255, 255, 255, 0.8);
	background: #d61518;
	transition: 0.3s ease-in-out;
}

.wa-header-toggle-bar01 {
	top: 12px;
}

.wa-header-toggle-bar02 {
	top: 22px;
}

.wa-header-toggle-bar03 {
	top: 32px;
}

.wa-header-open .wa-header-toggle-bar {
	box-shadow: none;
}

.wa-header-open .wa-header-toggle-bar01 {
	top: 22px;
	transform: rotate(-45deg);
	will-change: transform;
}

.wa-header-open .wa-header-toggle-bar02 {
	transform: scale(0, 1);
}

.wa-header-open .wa-header-toggle-bar03 {
	top: 22px;
	transform: rotate(45deg);
	will-change: transform;
}

.wa-header-nav {
	overflow-y: auto;
	visibility: hidden;
	opacity: 0;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 3;
	background: #fff;
	transform : scale(0.9);
	transition: 0.5s ease-out;
}

.wa-header-open .wa-header-nav {
	visibility: visible;
	opacity: 1;
	transform : scale(1);
}

.wa-header .wa-inner {
	display: flex;
	overflow-x: hidden;
	min-height: 100%;
	padding-top: 50px;
	padding-bottom: 50px;
	justify-content: center;
	align-items: center;
}

@media screen\0 {
.wa-header .wa-inner {
	height: 100%;
	min-height: 600px;
}
}

.wa-header-menu-ul {
	font-weight: 700;
	font-size: 17px;
	line-height: 1.5;
	letter-spacing: 0.3em;
}

.wa-header-menu-li:nth-last-child(n+2) {
	margin-bottom: 40px;
}

.wa-header-menu-current {
	position: relative;
}

.wa-header-menu-current::before {
	position: absolute;
	bottom: -0.65em;
	left: 0;
	width: 0.4em;
	height: 0.4em;
	border-radius: 50%;
	background: #d61518;
	content: "";
}

.wa-header-menu-current::after {
	position: absolute;
	bottom: -0.5em;
	left: 0;
	width: 100vw;
	height: 2px;
	background: #d61518;
	content: "";
}

.wa-header-menu-li a {
	display: block;
}

@media (min-width: 768px) {
.wa-header-home {
	left: 30px;
	font-size: 13px;
}

.wa-header-toggle {
	top: 21px;
	right: 22px;
}

.wa-header-toggle-bar {
	width: 34px;
	height: 6px;
}

.wa-header-toggle-bar01 {
	top: 9px;
}

.wa-header-toggle-bar03 {
	top: 35px;
}

.wa-header-menu-ul {
	font-size: 20px;
}

.wa-header-menu-li:nth-last-child(n+2) {
	margin-bottom: 60px;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
フッター
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.wa-breadcrumb {
	position: relative;
	z-index: 1;
	padding-bottom: 15px;
	background: #fff;
	color: #040000;
}

.contact-footer {
	float: right;
	font-weight: 800;
	padding: 5px 14px;
	border-radius: 10px;
	background: black;
}

.wa-breadcrumb-li {
	display: inline-block;
}

.wa-breadcrumb-li:nth-last-child(n+2)::after {
	display: inline-block;
	margin: 0 0.3em;
	content: "/";
}

.wa-breadcrumb-li a,
.wa-breadcrumb-li a span {
	text-decoration: underline;
}

.wa-footer {
	position: relative;
	z-index: 1;
	padding: 45px 0 20px;
	background: #e6160b;
	color: #fff;
}

.wa-footer-container01 {
	display: flex;
	margin-bottom: 25px;
	align-items: center;
}

.wa-footer-container03 {
	display: flex;
	margin-bottom: 25px;
	align-items: start;
}

.wa-footer-menu-ul {
	font-weight: 700;
	letter-spacing: 0.2em;
	text-align: center;
}

.wa-footer-container02 {
	display: flex;
	align-items: center;
}

.wa-footer-sns-ul {
	display: flex;
	align-items: center;
}

.wa-footer-sns-li:nth-last-child(n+2) {
	margin-right: 1.3em;
}

.wa-footer-sns-li img {
	width: 2.5em;
	height: 2.5em;
}

.wa-footer-copyright {
	font-size: 9px;
}

@media (min-width: 768px) {
.wa-breadcrumb {
	padding-bottom: 30px;
}

.contact-footer {
	float: right;
	font-weight: 800;
	padding: 5px 14px;
	border-radius: 10px;
	background: black;
}

.wa-footer {
	padding: 60px 0;
}

.wa-footer-container01 {
	margin-bottom: 10px;
	justify-content: space-between;
}

.wa-footer-container03 {
	margin-bottom: 10px;
	justify-content: right;
}

.wa-footer-menu-ul {
	display: flex;
}

.wa-footer-menu-li:nth-last-child(n+2) {
	margin-right: 30px;
}

.wa-footer-container02 {
	flex-flow: row-reverse;
	justify-content: space-between;
	align-items: flex-end;
}

.wa-footer-copyright {
	font-size: inherit;
}
}

@media (max-width: 767.9px) {
.wa-footer-container01 {
	flex-flow: column;
	padding-top: 17px;
}

.wa-footer-container03 {
	flex-flow: column;
	/* padding-top: 17px; */
}

.wa-footer-logo {
	margin-bottom: 25px;
}

.wa-footer-logo img {
	width: 59px;
	height: 50px;
}

.wa-footer-menu-li:nth-last-child(n+2) {
	margin-bottom: 10px;
}

.wa-footer-container02 {
	flex-flow: column;
}

.wa-footer-sns-ul {
	margin-bottom: 20px;
}

span.contact-footer {
	padding: 0px 0px 0px 15px;
}
}


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

100% {
	opacity: 1;
}
}

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

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

.wa-load .animation {
	will-change: transform;
}

.wa-load .animation.fade {
	animation: fade 0.6s ease-out 0.3s forwards;
}

.wa-load .animation.fade-up {
	animation: fade-up 0.6s ease-out 0.3s forwards;
}

.wa-load .animation.typing span {
	animation: fade 0.6s ease-out forwards;
}

.wa-load .animation.delay05 {
	animation-delay: 0.5s;
}

.wa-load .animation.delay07 {
	animation-delay: 0.7s;
}

.wa-load .animation.delay09 {
	animation-delay: 0.9s;
}

.wa-load .animation.delay11 {
	animation-delay: 1.1s;
}
