/* --------------------------------------------------------------------------------
reset
-------------------------------------------------------------------------------- */

*,
*::before,
*::after {
	box-sizing: border-box;
	font: inherit;
	border: none;
	margin: 0px;
	padding: 0px;
}
html {
	-webkit-text-size-adjust: none;
	-webkit-tap-highlight-color: transparent;
}
a {
	text-decoration: none;
	color: inherit;
}
ul,
ol {
	list-style: none;
}
table {
	border-collapse: collapse;
}
iframe,
img,
svg,
video {
	display: block;
}
img {
	max-width: 100%;
	height: auto;
}



/* --------------------------------------------------------------------------------
essential
-------------------------------------------------------------------------------- */

html {
	font-size: 16px;
}
body {
	text-align: justify;
	overflow-wrap: break-word;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	font-feature-settings: "palt";
	line-height: 1.875rem;
	color: #000000;
	background-color: #fffbf5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a.underline {
	text-decoration: underline;
}
a.color {
	transition: 0.25s color ease;
}
a.color:hover {
	color: #a00f21;
}
h1 {
	font-size: 1.5rem;
}
h2 {
	font-size: 1.375rem;
}
h3 {
	font-size: 1.25rem;
}
h4,
h5,
h6 {
	font-size: 1rem;
}
p.note {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
p.indent {
	text-indent: -1em;
	padding-left: 1em;
}
p:empty:before {
	content: none;
}
span.required {
	color: #a00f21;
}



/* --------------------------------------------------------------------------------
form
-------------------------------------------------------------------------------- */

input:where([type=text], [type=email], [type=number], [type=password], [type=search], [type=button], [type=submit]),
button,
textarea,
select {
	max-width: 100%;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1rem;
	outline: none;
	border-radius: 5px;
	appearance: none;
}
input:where([type=text], [type=email], [type=number], [type=password], [type=search]),
textarea,
select {
	vertical-align: top;
	color: #000000;
	border: none;
	background-color: #ffffff;
}
input:where([type=text], [type=email], [type=number], [type=password], [type=search]),
select {
	height: 50px;
	padding: 0px 15px;
}
input:where([type=button], [type=submit]),
button {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	width: 200px;
	height: 50px;
	font-weight: 500;
	color: #ffffff;
	border: none;
	cursor: pointer;
	padding: 0px 30px;
	background-color: #333333;
	transition: 0.25s background-color ease;
	mask: url(../images/mask-button-04.svg) no-repeat;
	mask-size: contain;
}
input:where([type=button], [type=submit]):hover,
button:hover {
	background-color: #a00f21;
}
button i.icon {
	position: absolute;
	right: 20px;
	top: calc(50% - 0.5rem);
}
input:where([type=radio], [type=checkbox]),
input:where([type=radio], [type=checkbox])::before,
label.alternate input:where([type=radio], [type=checkbox]) + span {
	width: 25px;
	height: 25px;
}
input:where([type=radio], [type=checkbox]),
label.alternate {
	margin-right: 5px;
}
input:where([type=radio], [type=checkbox]) {
	position: relative;
	vertical-align: middle;
	transform: translateX(-9999px);
}
input:where([type=radio], [type=checkbox])::before,
input:where([type=radio], [type=checkbox])::after,
label.alternate {
	cursor: pointer;
}
input:where([type=radio], [type=checkbox])::before,
input:where([type=radio], [type=checkbox])::after,
label.alternate input:where([type=radio], [type=checkbox]) + span::before {
	position: absolute;
	content: "";
}
input:where([type=radio], [type=checkbox])::before,
input:where([type=radio], [type=checkbox])::after {
	transform: translate(9999px, -1px);
}
input:where([type=radio], [type=checkbox])::before,
label.alternate input:where([type=radio], [type=checkbox]) + span {
	background-color: #ffffff;
}
input:where([type=radio], [type=checkbox])::after,
label.alternate input:where([type=radio], [type=checkbox]) + span::before {
	opacity: 0;
	transition: 0.25s opacity ease;
}
input:where([type=radio], [type=checkbox]):checked::after,
label.alternate input:where([type=radio], [type=checkbox]):checked + span::before {
	opacity: 1;
}
input[type=radio]::before,
input[type=radio]::after,
label.alternate input[type=radio] + span,
label.alternate input[type=radio] + span::before {
	border-radius: 50%;
}
input[type=radio]::after,
label.alternate input[type=radio] + span::before {
	width: 12px;
	height: 12px;
	left: calc(50% - calc(12px * 0.5));
	top: calc(50% - calc(12px * 0.5));
	background-color: #a00f21;
}
input[type=checkbox]::before,
label.alternate input[type=checkbox] + span {
	border-radius: 5px;
}
input[type=checkbox]::after,
label.alternate input[type=checkbox] + span::before {
	width: 10px;
	height: 15px;
	left: calc(calc(50% - calc(10px * 0.5)) + 1px);
	top: calc(50% - calc(15px * 0.5));
	border-right: 2px solid #a00f21;
	border-bottom: 2px solid #a00f21;
}
input[type=checkbox]::after {
	transform: translate(calc(9999px - 1px), -3px) rotate(45deg);
}
@-moz-document url-prefix() {
	input[type=radio],
	input[type=checkbox] {
		transform: translate(0px, -1px);
	}
}
label {
	display: inline-block;
	vertical-align: text-top;
}
label.alternate input:where([type=radio], [type=checkbox]) {
	display: none;
}
label.alternate input:where([type=radio], [type=checkbox]) + span {
	display: block;
	position: relative;
	cursor: pointer;
}
label.alternate input[type=checkbox] + span::before {
	transform: translate(-1px, -3px) rotate(45deg);
}
textarea {
	padding: 10px 15px;
}
select {
	padding-right: 40px;
	background-image: url(../images/arrow-select.svg);
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: auto 10px;
}
::placeholder {
	color: #cccccc;
}
form#searchform label.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}



/* --------------------------------------------------------------------------------
font
-------------------------------------------------------------------------------- */

@font-face {
	font-family: "Copperplate";
	src: url("../fonts/copperplate-medium.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
}



/* --------------------------------------------------------------------------------
icon
-------------------------------------------------------------------------------- */

@font-face {
	font-family: "icon";
	src: url("../fonts/icon.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}
i.icon {
	font-family: "icon";
	line-height: 1em;
}
i.icon-arrow::before {
	content: "\e900";
}
i.icon-mail::before {
	content: "\e901";
}
i.icon-site::before {
	content: "\e902";
}
i.icon-instagram::before {
	content: "\e903";
}



/* --------------------------------------------------------------------------------
misc
-------------------------------------------------------------------------------- */

br.small {
	display: none;
}
br.large {
	display: inline;
}
img.small {
	display: none;
}
img.large {
	display: block;
}
hr {
	height: 0px;
	border: none;
	border-bottom: 1px solid #dddddd;
	margin: 20px 0px;
}
iframe:where([src*="youtube.com"], .wp-embedded-content),
video {
	width: 100%;
}
iframe[src*="youtube.com"],
video {
	aspect-ratio: 16 / 9;
	height: auto;
}
mark {
	margin: 0px 5px;
	padding: 0px 5px;
	background-color: #ffffff;
	border-radius: 5px;
}



/* --------------------------------------------------------------------------------
page
-------------------------------------------------------------------------------- */

div#page {
	position: relative;
	overflow: hidden;
}
div#trigger {
	position: absolute;
	top: 62.5svh;
	pointer-events: none;
}
p#button-contact {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 10;
	font-weight: 500;
	pointer-events: none;
	opacity: 0;
	transition: 0.25s opacity ease;
}
div.scroll p#button-contact {
	pointer-events: auto;
	opacity: 1;
}
p#button-contact a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 65px;
	height: 195px;
	color: #ffffff;
	padding-top: 17.5px;
	background-color: #a00f21;
	transition: 0.25s background-color ease;
	mask: url(../images/mask-button-01.svg) no-repeat;
	mask-size: contain;
}
p#button-contact a:hover {
	background-color: #333333;
}
p#button-contact span,
p#button-contact span i {
	display: block;
}
p#button-contact span {
	display: block;
	writing-mode: vertical-rl;
	white-space: pre;
	line-height: 1.5rem;
	padding-bottom: 40px;
}
p#button-contact span i.sub {
	font-size: 0.625rem;
	line-height: 1rem;
	padding-top: 0.125em;
}
p#button-contact span i.main {
	font-size: 0.875rem;
	line-height: 1.25rem;
}
p#button-contact i.icon {
	position: absolute;
	width: 1rem;
	left: calc(50% - 0.5rem);
	bottom: 17.5px;
}
p.button-default,
p.button-default > * {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
p.button-default {
	text-align: center;
	font-weight: 500;
	line-height: 1.5rem;
}
p.button-default > * {
	align-items: center;
	position: relative;
	width: 200px;
	height: 50px;
	color: #ffffff;
	background-color: #333333;
	transition: 0.25s color ease, 0.25s background-color ease;
	mask: url(../images/mask-button-04.svg) no-repeat;
	mask-size: contain;
}
p.button-default > *:hover {
	background-color: #a00f21;
}
p.button-default > * > * {
	position: relative;
}
p.button-default:has(i.icon) > * {
	padding-right: 20px;
}
p.button-default i.icon {
	position: absolute;
	right: 20px;
	top: calc(50% - 0.5rem);
}
p.button-wide a {
	width: 240px;
	mask-image: url(../images/mask-button-05.svg);
}
p.button-small {
	font-size: 0.875rem;
}
p.button-small a {
	width: 135px;
	height: 40px;
	mask-image: url(../images/mask-button-02.svg);
}
p.button-small i.icon {
	right: 15px;
	top: calc(50% - 0.375rem);
	font-size: 0.75rem;
}
p.image {
	overflow: hidden;
}
p.image img {
	width: 100%;
}
p.image-zoom img {
	transition: 0.375s transform ease;
}
a:hover p.image-zoom img,
p.image-zoom a:hover img {
	transform: scale(1.0375);
}
*.scroll:where(.fade, .fade-slide, .fade-zoom, .fade-bounce),
*.scroll:where(.fade-each, .fade-each-slide, .fade-each-zoom, .fade-each-bounce) > * {
	opacity: 0;
	transition-duration: 1.25s;
}
*.scroll:where(.fade, .fade-slide, .fade-zoom, .fade-bounce).active,
*.scroll:where(.fade-each, .fade-each-slide, .fade-each-zoom, .fade-each-bounce).active > * {
	opacity: 1;
}
*.scroll.fade,
*.scroll.fade-each > * {
	transition-property: opacity;
	transition-timing-function: ease-in-out;
}
*.scroll.fade-slide,
*.scroll.fade-each-slide > * {
	transition-property: opacity, transform;
	transition-timing-function: ease-in-out, ease;
}
*.scroll.fade-slide-left,
*.scroll.fade-each-slide-left > * {
	transform: translate(40px, 0px);
}
*.scroll.fade-slide-right,
*.scroll.fade-each-slide-right > * {
	transform: translate(-40px, 0px);
}
*.scroll.fade-slide-up,
*.scroll.fade-each-slide-up > * {
	transform: translate(0px, 40px);
}
*.scroll.fade-slide-down,
*.scroll.fade-each-slide-down > * {
	transform: translate(0px, -40px);
}
*.scroll.fade-slide.active,
*.scroll.fade-each-slide.active > * {
	transform: translate(0px, 0px);
}
*.scroll:where(.fade-zoom, .fade-bounce),
*.scroll:where(.fade-each-zoom, .fade-each-bounce) > * {
	transition-property: opacity, transform;
}
*.scroll:where(.fade-zoom, .fade-bounce).active,
*.scroll:where(.fade-each-zoom, .fade-each-bounce).active > * {
	transform: scale(1);
}
*.scroll.fade-zoom,
*.scroll.fade-each-zoom > * {
	transition-timing-function: ease-in-out, ease;
	transform: scale(0.925);
}
*.scroll.fade-zoom.active,
*.scroll.fade-each-zoom.active > *,
*.scroll.fade-bounce.active,
*.scroll.fade-each-bounce.active > * {
	transform: scale(1);
}
*.scroll.fade-bounce,
*.scroll.fade-each-bounce > * {
	transition-timing-function: ease-in-out, linear(0, 0.016, 0.063 9.1%, 0.25, 0.563, 1, 0.813 45.5%, 0.766, 0.75, 0.766, 0.813 63.6%, 1 72.7%, 0.953, 0.938, 0.953, 1, 0.984, 1);
	transform: scale(0.75);
}
*.split-text {
	opacity: 0;
}
html.active *.split-text {
	opacity: 1;
}
*.split-text > * {
	display: inline-block;
}
*.delay-01 {
	transition-delay: calc(0.125s * 1);
}
*.delay-02 {
	transition-delay: calc(0.125s * 2);
}
*.delay-03 {
	transition-delay: calc(0.125s * 3);
}
*.delay-04 {
	transition-delay: calc(0.125s * 4);
}
*.delay-05 {
	transition-delay: calc(0.125s * 5);
}
*.delay-06 {
	transition-delay: calc(0.125s * 6);
}
*.delay-07 {
	transition-delay: calc(0.125s * 7);
}
*.delay-08 {
	transition-delay: calc(0.125s * 8);
}
*.delay-09 {
	transition-delay: calc(0.125s * 9);
}
*.delay-10 {
	transition-delay: calc(0.125s * 10);
}
div.grecaptcha-badge {
	z-index: 1;
	bottom: 20px !important;
}



/* --------------------------------------------------------------------------------
header
-------------------------------------------------------------------------------- */

header#header {
	position: relative;
	z-index: 100;
}
header#header :where(*#logo, p#button-menu, p.button-contact, div#menu) {
	position: fixed;
}
header#header :where(*#logo, p.button-contact) {
	z-index: 10;
}
header#header *#logo {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	left: 50px;
	top: 50px;
}
body.admin-bar header#header *#logo {
	top: 82px;
}
header#header *#logo img {
	width: 135px;
}
header#header :where(p#button-menu, p.button-contact) {
	top: 60px;
}
body.admin-bar header#header :where(p#button-menu, p.button-contact) {
	top: 92px;
}
header#header p#button-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	right: 60px;
	z-index: 30;
	font-family: "Copperplate", sans-serif;
	font-size: 0.625rem;
	font-weight: 500;
	line-height: 0.75rem;
	color: #ffffff;
	cursor: pointer;
	transition: 0.25s color ease;
}
header#header p#button-menu:hover {
	color: #000000;
}
div:where(.menu-header, .scroll) header#header p#button-menu {
	color: #a00f21;
}
div.menu-header header#header p#button-menu:hover,
div:where(.menu-header, .scroll) header#header p#button-menu:hover {
	color: #ffffff;
}
header#header p#button-menu :where(svg, img) {
	position: absolute;
	width: 100%;
	height: auto;
	left: 0px;
	top: 0px;
}
header#header p#button-menu svg path#path-01 {
	opacity: 0;
	transition: 0.25s opacity ease;
}
header#header p#button-menu:hover svg path#path-01 {
	opacity: 1;
}
div:where(.menu-header, .scroll) header#header p#button-menu svg path:where(#path-01, #path-02) {
	fill: #a00f21 !important;
}
header#header p#button-menu svg path#path-02 {
	transition: 0.25s fill ease;
}
header#header p#button-menu::before {
	position: relative;
	z-index: 1;
	content: "MENU";
}
div.menu-header header#header p#button-menu::before {
	content: "CLOSE";
}
header#header p.button-contact {
	right: 130px;
	transition: 0.25s opacity ease;
}
div.scroll header#header p.button-contact {
	pointer-events: none;
	opacity: 0;
}
header#header p.button-contact a {
	width: 175px;
	color: #000000;
	background-color: #ffffff;
	mask-image: url(../images/mask-button-03.svg);
	mask-size: contain;
}
header#header p.button-contact a:hover {
	color: #ffffff;
	background-color: #a00f21;
}
header#header div#menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	right: 0px;
	overflow: auto;
	z-index: 20;
	background-color: #fffbf5;
	transform: translateY(-100%);
	transition: 0.5s transform ease;
	-webkit-overflow-scrolling: touch;
}
body.admin-bar header#header div#menu {
	height: calc(100% - 32px);
	top: 32px;
}
div.menu-header header#header div#menu {
	transform: translateY(0%);
}
header#header div#menu::-webkit-scrollbar {
	display: none;
}
header#header div#menu div.inner-menu {
	width: 800px;
	padding: 40px 0px;
}
header#header div#menu p.logo {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 80px;
}
header#header div#menu p.logo img {
	width: calc(254px * 1.25);
}
header#header div#menu nav#navi ul {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: -60px;
}
header#header div#menu nav#navi ul li {
	margin-bottom: 60px;
}
header#header div#menu nav#navi ul li:nth-child(2n+1) {
	width: calc(50% + 50px);
}
header#header div#menu nav#navi ul li:nth-child(2n) {
	width: calc(50% - 50px);
}
header#header div#menu nav#navi ul li span {
	display: block;
	font-weight: 500;
}
header#header div#menu nav#navi ul li span.sub {
	font-family: "Copperplate", sans-serif;
	font-size: 1.125rem;
	color: #a00f21;
	margin-bottom: 10px;
}
header#header div#menu nav#navi ul li span.main {
	font-size: 1.75rem;
}



/* --------------------------------------------------------------------------------
splash
-------------------------------------------------------------------------------- */

div#splash {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 1000;
	background-color: #f9f5ef;
	transition: 1.25s opacity 4s ease-in-out;
}
div#splash.active {
	opacity: 0;
}
div#splash.disable {
	display: none;
}
div#splash div.text h2 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	margin-bottom: 80px;
}
div#splash div.text h2 img,
div#splash div.text p.logo {
	opacity: 0;
}
div#splash div.text h2 img {
	width: 28px;
	transition: 1.75s opacity ease-in-out;
}
div#splash.active div.text h2 img,
div#splash.active div.text p.logo {
	opacity: 1;
}
div#splash div.text h2 img:not(:last-child) {
	margin-left: 40px;
}
div#splash div.text p.logo {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	transition: 0.75s opacity 2s ease-in-out;
}
div#splash div.text p.logo img {
	width: calc(135px * 0.875);
}



/* --------------------------------------------------------------------------------
cover
-------------------------------------------------------------------------------- */

div#cover {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 100%;
	height: 100svh;
	background-color: #f9f5ef;
}
body.admin-bar div#cover {
	height: calc(100svh - 32px);
}
div#cover p:where(.image, .logo) {
	opacity: 0;
	transition: 1.25s opacity ease-in-out;
}
div#cover.active p:where(.image, .logo) {
	opacity: 1;
}
div#cover p.image {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
div#cover p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
div#cover p.logo {
	position: relative;
	z-index: 1;
	transition-delay: 0.5s;
}
div#cover p.logo img {
	width: 329px;
}



/* --------------------------------------------------------------------------------
main
-------------------------------------------------------------------------------- */

main,
main section,
main section div.inner-section {
	position: relative;
}
main {
	z-index: 1;
}
main section div.inner-section {
	width: 1180px;
	margin: 0px auto;
	padding: 120px 0px;
}
main ul.bullet li {
	position: relative;
	padding-left: 20px;
}
main ul.bullet li::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: 4px;
	top: 13px;
	background-color: #000000;
	content: "";
	border-radius: 50%;
}
main ol.decimal {
	padding-left: 20px;
}
main ol.decimal li {
	list-style-type: decimal;
}

/* home
-------------------------------------------------------------------------------- */

main section:where(#story, #message),
main section:where(#story, #message)::before {
	background-color: #f9f5ef;
}
main section:where(#story, #feature, #message)::before {
	position: absolute;
	width: 100%;
	left: 0px;
	z-index: 1;
	content: "";
	background-repeat: no-repeat;
	mask-size: 100% 100%;
}
main section#story::before {
	height: 100px;
	top: -100px;
	mask-image: url(../images/mask-general-01.svg);
}
main section#story div.background {
	position: absolute;
	background-color: #ffffff;
	opacity: 0.75;
	transform: scaleX(-1);
	mask-repeat: no-repeat;
	mask-size: contain;
}
main section#story div.background-01 {
	width: calc(595px * 0.75);
	height: calc(530px * 0.75);
	left: calc(50% + 240px);
	top: calc(50% - 80px);
	mask-image: url(../images/mask-image-02.svg);
}
main section#story div.background-02 {
	width: calc(300px * 1);
	height: calc(240px * 1);
	right: calc(50% + 320px);
	bottom: 120px;
	mask-image: url(../images/mask-image-01.svg);
}
main section#story div.inner-section {
	padding-bottom: 274px;
}
main section#story div.image-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main section#story div.image-text:not(:last-child) {
	margin-bottom: 120px;
}
main section#story div.image-text div.image {
	width: 595px;
}
main section#story div.image-text div.image p.row {
	mask-repeat: no-repeat;
	mask-size: contain;
}
main section#story div.image-text div.image p.row img {
	width: 100%;
}
main section#story div.image-text div.image p.row:nth-child(1) {
	width: 300px;
	mask-image: url(../images/mask-image-01.svg);
}
main section#story div.image-text div.image p.row:nth-child(2) {
	width: 595px;
	margin-top: -80px;
	mask-image: url(../images/mask-image-02.svg);
}
main section#story div.image-text div.text {
	width: calc(100% - 675px);
}
main section#story div.image-text div.text :where(p.sub, h2) {
	font-weight: 500;
}
main section#story div.image-text div.text p.sub {
	font-family: "Copperplate", sans-serif;
	font-size: 0.875rem;
	line-height: 1.5rem;
	color: #a00f21;
	margin-bottom: 30px;
}
main section#story div.image-text div.text h2 {
	font-size: 2rem;
	line-height: 2rem;
	margin-bottom: 40px;
}
main section#story div.image-text div.text h2 span {
	display: flex;
	flex-wrap: wrap;
}
main section#story div.image-text div.text h2 span:not(:last-child) {
	margin-bottom: 10px;
}
main section#story div.image-text div.text h2 span i {
	display: block;
	padding: 10px 15px;
	background-color: #ffffff;
	border-radius: 10px;
}
main section#story div.image-text div.text p.description {
	font-size: 1.125rem;
	line-height: 2.375rem;
}
main section#story div.video {
	position: relative;
	aspect-ratio: 16 / 9;
	width: 928px;
	overflow: hidden;
	margin: 0px auto;
	border-radius: 10px;
}
main section#story div.video p.image {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 1;
	cursor: pointer;
	transition: 0.25s opacity ease;
}
main section#story div.video.play p.image {
	pointer-events: none;
	opacity: 0;
}
main section#story div.video p.image::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: rgba(0, 0, 0, 0.25);
	content: "";
	transition: 0.25s opacity ease;
}
main section#story div.video p.image:hover::before {
	opacity: 0.5;
}
main section#story div.video p.image span.button {
	position: absolute;
	width: 120px;
	left: calc(50% - 60px);
	top: calc(50% - 60px);
	z-index: 1;
}
main section#story div.video p.image span.button i {
	display: block;
}
main section#story div.video p.image span.button i.icon {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1;
	border: 2px solid #ffffff;
	margin-bottom: 10px;
	border-radius: 50%;
}
main section#story div.video p.image span.button i.icon svg {
	display: block;
	width: 30px;
	transform: translateX(5px);
}
main section#story div.video p.image span.button i.text {
	text-align: center;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.25rem;
	color: #ffffff;
}
main section#feature::before {
	height: 74px;
	top: -74px;
	background-color: #fffbf5;
	mask-image: url(../images/mask-general-02.svg);
}
main section#feature div.inner-section {
	padding-top: 0px;
	padding-bottom: 232px;
}
main section#feature header {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	position: relative;
	z-index: 1;
	margin-bottom: -120px;
	transform: translateY(-120px);
}
main section:where(#feature, #message, #contact) header div.text {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: flex-end;
}
main section:where(#feature, #message, #contact) header :where(p.sub, h2) {
	writing-mode: vertical-rl;
	white-space: pre;
	font-weight: 500;
}
main section:where(#feature, #message, #contact) header p.sub {
	font-family: "Copperplate", sans-serif;
	font-size: 0.875rem;
	line-height: 1.5rem;
	color: #a00f21;
	margin-left: 10px;
}
main section:where(#feature, #message, #contact) header h2 {
	font-size: 2rem;
	line-height: 3.25rem;
}
main section#feature div.block:not(:last-child) {
	margin-bottom: 120px;
}
main section#feature div.block p.number {
	font-size: 4.5rem;
	font-weight: 500;
	line-height: 4.5rem;
	color: #a00f21;
	letter-spacing: 0.1em;
	margin-bottom: 30px;
}
main section#feature div.block h3 {
	font-size: 2.25rem;
	font-weight: 500;
	line-height: 2.5rem;
	margin: 0px -40px 50px 0px;
}
main section#feature div.block h3.small {
	display: none;
}
main section#feature div.block h3 span {
	display: flex;
	flex-wrap: wrap;
}
main section#feature div.block h3 span:not(:last-child) {
	margin-bottom: 30px;
}
main section#feature div.block h3 span i {
	display: block;
	padding-bottom: 15px;
	background: url(../images/line.svg) no-repeat center bottom;
	background-size: 500px auto;
}
main section#feature div.block div.image-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
main section#feature div.block div.image-text div.image {
	width: 780px;
}
main section#feature div.block div.image-text div.image p.row {
	mask-repeat: no-repeat;
	mask-size: contain;
}
main section#feature div.block div.image-text div.text {
	width: calc(100% - 860px);
}
main section#feature div.block p.headline {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 155px;
	height: 90px;
	text-align: center;
	font-size: 1.125rem;
	font-weight: 500;
	color: #ffffff;
	padding-bottom: 20px;
	background: url(../images/background-headline.svg) no-repeat center;
	background-size: 100% auto;
}
main section#feature div.block p.link {
	position: relative;
	padding-left: 20px;
}
main section#feature div.block p.link::before {
	position: absolute;
	width: 10px;
	height: 10px;
	left: 0px;
	top: 11px;
	border-right: 2px solid #a00f21;
	border-bottom: 2px solid #a00f21;
	content: "";
	transform: rotate(-45deg);
}
main section#feature div.block p.link a {
	color: #a00f21;
}
main section#feature div.block p.link a:hover {
	color: #000000;
}
main section#feature div:where(.block-01, .block-02) div.image-text {
	margin-bottom: 80px;
}
main section#feature div:where(.block-01, .block-03) div.image-text {
	margin-left: -140px;
}
main section#feature div.block-01 div.image-text div.image p.row {
	mask-image: url(../images/mask-image-03.svg)
}
main section#feature div.block-01 div.reason,
main section#feature div.block-02 div.point {
	position: relative;
	background-color: #ffffff;
	border-radius: 60px;
}
main section#feature div.block-01 div.reason {
	padding: 60px 80px;
}
main section#feature div.block-01 div.reason p.headline,
main section#feature div.block-02 div.point p.headline {
	position: absolute;
	top: -20px;
}
main section#feature div.block-01 div.reason p.headline {
	left: 40px;
}
main section#feature div.block-01 div.reason div.diagram-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
main section#feature div.block-01 div.reason div.diagram-text div.text {
	width: calc(100% - 505px);
}
main section#feature div.block-01 div.reason div.diagram-text div.text h4,
main section#feature div.block-02 div.point h4 {
	font-size: 1.75rem;
	font-weight: 500;
	line-height: 2.25rem;
	color: #a00f21;
}
main section#feature div.block-01 div.reason div.diagram-text div.text h4 {
	margin-bottom: 20px;
}
main section#feature div.block-01 div.reason div.diagram-text p.diagram {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 445px;
	border: 1px solid #dddddd;
	padding: 30px 0px;
	border-radius: 10px;
}
main section#feature div.block-01 div.reason div.diagram-text p.diagram img {
	width: 385px;
}
main section#feature div.block-02 div.image-text {
	flex-direction: row-reverse;
	margin-right: -140px;
}
main section#feature div.block-02 div.image-text div.image p.row {
	mask-image: url(../images/mask-image-04.svg)
}
main section#feature div.block-02 div.image-text div.text p.description {
	margin-bottom: 20px;
}
main section#feature div.block-02 div.point {
	margin-bottom: 80px;
	padding: 100px 80px 60px 80px;
}
main section#feature div.block-02 div.point p.headline {
	left: calc(50% - calc(155px * 0.5));
}
main section#feature div.block-02 div.point h4 {
	text-align: center;
	margin-bottom: 40px;
}
main section#feature div.block-02 div.point div.list {
	display: flex;
	flex-wrap: wrap;
	margin-right: -40px;
}
main section#feature div.block-02 div.point div.list div.row {
	width: calc(33.33% - 40px);
	margin-right: 40px;
}
main section#feature div.block-02 div.point div.list div.row p.image {
	margin-bottom: 20px;
	border-radius: 10px;
}
main section#feature div.block-02 div.point div.list div.row p.caption {
	text-align: center;
	font-size: 1.125rem;
	font-weight: 500;
}
main section#feature div.block-02 div.safety {
	width: 1040px;
	text-align: center;
	margin: 0px auto;
	padding: 40px 0px;
	background-color: #fff7eb;
	border-radius: 150px;
}
main section#feature div.block-02 div.safety h4 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 2.25rem;
	margin-bottom: 30px;
}
main section#feature div.block-02 div.safety h4 span {
	display: block;
	padding-bottom: 10px;
	background: url(../images/line.svg) no-repeat center bottom;
	background-size: 500px auto;
}
main section#feature div.block-02 div.safety p.description {
	margin-bottom: 20px;
}
main section#feature div.block-02 div.safety div.link-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main section#feature div.block-03 div.image-text div.image p.row:nth-child(1) {
	width: 420px;
	margin-left: auto;
	mask-image: url(../images/mask-image-05.svg)
}
main section#feature div.block-03 div.image-text div.image p.row:nth-child(2) {
	width: 760px;
	margin-top: -40px;
	mask-image: url(../images/mask-image-06.svg)
}
main section#feature div.block-03 div.image-text div.text p.description {
	margin-bottom: 40px;
}
main section#feature div.block-03 div.image-text div.text p.diagram {
	margin: 0px -41.5px;
}
main section#feature div.block-03 div.image-text div.text p.diagram img {
	width: 100%;
}
main section#feature div.block-04 div.diagram-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 80px;
	padding: 0px 60px;
}
main section#feature div.block-04 div.diagram-text div.text {
	width: calc(100% - 469px);
}
main section#feature div.block-04 div.diagram-text p.diagram {
	width: 409px;
}
main section#feature div.block-04 div.diagram-text p.diagram img {
	width: 100%;
}
main section#feature div.block-04 div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -40px -60px 0px;
}
main section#feature div.block-04 div.list div.row {
	position: relative;
	width: calc(50% - 40px);
	margin: 0px 40px 60px 0px;
}
main section#feature div.block-04 div.list div.row:nth-child(1) {
	order: 0;
}
main section#feature div.block-04 div.list div.row:nth-child(2) {
	order: 2;
}
main section#feature div.block-04 div.list div.row:nth-child(3) {
	order: 4;
}
main section#feature div.block-04 div.list div.row:nth-child(4) {
	order: 6;
}
main section#feature div.block-04 div.list div.row:nth-child(5) {
	order: 8;
}
main section#feature div.block-04 div.list div.row:nth-child(6) {
	order: 1;
}
main section#feature div.block-04 div.list div.row:nth-child(7) {
	order: 3;
}
main section#feature div.block-04 div.list div.row:nth-child(8) {
	order: 5;
}
main section#feature div.block-04 div.list div.row:nth-child(9) {
	order: 7;
}
main section#feature div.block-04 div.list div.row:nth-child(10) {
	order: 9;
}
main section#feature div.block-04 div.list div.row:has(p.image) {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main section#feature div.block-04 div.list div.row p.number-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 55px;
	height: 44px;
	left: -20px;
	top: -20px;
	z-index: 1;
	font-size: 1.375rem;
	font-weight: 500;
	color: #ffffff;
	padding-bottom: 5px;
	background: url(../images/background-number.svg) no-repeat center;
	background-size: 100% auto;
}
main section#feature div.block-04 div.list div.row p.image {
	width: 220px;
}
main section#feature div.block-04 div.list div.row div.text {
	line-height: 1.625rem;
	color: #a00f21;
}
main section#feature div.block-04 div.list div.row:has(p.image) div.text {
	width: calc(100% - 240px);
}
main section#feature div.block-04 div.list div.row:not(:has(p.image)) div.text {
	padding-left: 60px;
}
main section#feature div.block-04 div.list div.row div.text :where(h4, p.description) {
	margin-bottom: 10px;
}
main section#feature div.block-04 div.list div.row div.text h4 {
	font-size: 1.5rem;
	font-weight: 500;
}
main section#feature div.block-04 div.list div.row div.text p.label {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 25px;
	font-size: 0.875rem;
	line-height: 1.5rem;
	color: #ffffff;
	margin-bottom: 5px;
	background-color: #a00f21;
	border-radius: 12.5px;
}
main section#feature div.block-04 div.list div.row div.text ul {
	display: flex;
	flex-wrap: wrap;
}
main section#feature div.block-04 div.list div.row div.text ul li:not(:last-child)::after {
	content: "、";
}
main section#message::before {
	height: 112px;
	top: -112px;
	mask-image: url(../images/mask-general-03.svg);
}
main section#message div.inner-section {
	padding-top: 60px;
}
main section#message div.image-text {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: flex-end;
	margin: -80px calc(50% - 50vw) 120px 0px;
}
main section#message div.image-text p.image {
	width: calc(100% - 580px);
	max-height: 800px;
	border-radius: 10px 0px 0px 10px;
}
main section#message div.image-text p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#message div.image-text div.text {
	width: 520px;
}
main section#message div.company {
	margin-bottom: 120px;
}
main section#message div.company div.list {
	display: flex;
	flex-wrap: wrap;
	margin-right: -40px;
}
main section#message div.company div.list div.row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: calc(50% - 40px);
	margin-right: 40px;
}
main section#message div.company div.list div.row h3 {
	margin-right: 40px;
}
main section#message div.company div.list div.row ul {
	display: flex;
	flex-wrap: wrap;
}
main section#message div.company div.list div.row ul li {
	text-align: center;
}
main section#message div.company div.list div.row ul li:not(:last-child) {
	margin-right: 20px;
}
main section#message div.company div.list div.row ul li :where(i.icon, span) {
	display: block;
}
main section#message div.company div.list div.row ul li i.icon {
	font-size: 2.625rem;
	line-height: 2.875rem;
}
main section#message div.company div.list div.row ul li span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: calc(0.5rem * 2);
	font-size: 0.625rem;
	font-weight: 500;
	line-height: 0.5rem;
}
main section#message div.company div.list div.row:nth-child(1) h3 {
	width: 280px;
}
main section#message div.company div.list div.row:nth-child(2) h3 {
	width: 336px;
}
main section#message div.shop {
	padding: 60px 80px;
	background-color: #ffffff;
	border-radius: 60px;
}
main section#message div.shop :where(p.sub, h3) {
	text-align: center;
	font-weight: 500;
}
main section#message div.shop p.sub {
	font-family: "Copperplate", sans-serif;
	font-size: 0.875rem;
	line-height: 1.5rem;
	color: #a00f21;
	margin-bottom: 10px;
}
main section#message div.shop h3 {
	font-size: 1.5rem;
	margin-bottom: 40px;
}
main section#message div.shop div.list {
	display: flex;
	flex-wrap: wrap;
	margin-right: -40px;
}
main section#message div.shop div.list div.row {
	width: calc(50% - 40px);
	margin-right: 40px;
}
main section#message div.shop div.list div.row :where(p.image, h4, div.list-data) {
	margin-bottom: 20px;
}
main section#message div.shop div.list div.row p.image {
	border-radius: 10px;
}
main section#message div.shop div.list div.row h4 {
	text-align: center;
	font-size: 1.25rem;
	font-weight: 500;
	color: #a00f21;
}
main section#message div.shop div.list div.row div.list-data div.row-data {
	display: flex;
	flex-wrap: wrap;
	text-align: left;
	font-size: 0.875rem;
	line-height: 1.5rem;
	border-bottom: 1px solid #dddddd;
	padding-bottom: 15px;
}
main section#message div.shop div.list div.row div.list-data div.row-data:not(:last-child) {
	margin-bottom: 15px;
}
main section#message div.shop div.list div.row div.list-data div.row-data p.label {
	width: 135px;
}
main section#message div.shop div.list div.row div.list-data div.row-data p.body {
	width: calc(100% - 135px);
}
main section#contact {
	background-color: #f2eee9;
}
main section#contact header {
	position: absolute;
	left: 0px;
	top: 120px;
}
main section#contact div:where(.header, .form) {
	width: 800px;
	margin-left: auto;
	margin-right: auto;
	transform: translateX(80px);
}

/* form
-------------------------------------------------------------------------------- */

main section.form div.header {
	margin-bottom: 80px;
}
main section.form:has(div.mw_wp_form_preview) div.header {
	display: none;
}
main section.form div.header a.color {
	color: #a00f21;
}
main section.form div.header a.color:hover {
	color: #000000;
}
main section.form div.form div.component-wrapper {
	margin-bottom: 80px;
}
main section.form div.form div.component {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	position: relative;
}
main section.form div.form div.component:not(:last-child) {
	margin-bottom: 40px;
}
main section.form div.form div.mw_wp_form_preview div.component {
	border-bottom: 1px solid #dddddd;
	margin-bottom: 0px;
	padding: 40px 0px;
}
main section.form div.form div.mw_wp_form_preview div.component:first-child {
	border-top: 1px solid #dddddd;
}
main section.form div.form div.component p.label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	width: 240px;
	height: 50px;
}
main section.form div.form div.component-radio-checkbox p.label {
	height: auto;
}
main section.form div.form div.mw_wp_form_preview div.component p.label {
	display: block;
	height: auto;
}
main section.form div.form div.component div.body {
	width: calc(100% - 240px);
}
main section.form div.form div.component-radio-checkbox div.body {
	margin-bottom: -5px;
}
main section.form div.form div.component-horizontal div.body {
	display: flex;
	flex-wrap: wrap;
}
main section.form div.form div.component div.body :where(input:where([type=text], [type=email]), select, textarea) {
	width: 100%;
}
main section.form div.form div.component div.body span:where(.mwform-radio-field, .mwform-checkbox-field),
main section.form div.form div.component div.body span:where(.mwform-radio-field, .mwform-checkbox-field) > label {
	display: block;
}
main section.form div.form div.component-radio-checkbox div.body span:where(.mwform-radio-field, .mwform-checkbox-field) {
	margin: 0px 0px 5px 0px;
}
main section.form div.form div.component-horizontal div.body span:where(.mwform-radio-field, .mwform-checkbox-field):not(:last-of-type) {
	margin-right: 30px;
}
main section.form div.form div.component-address div.body div.row {
	display: flex;
	flex-wrap: wrap;
}
main section.form div.form div.component-address div.body div.row:not(:last-child) {
	margin-bottom: 20px;
}
main section.form div.form div.component-address div.body div.row :where(input[name=postal_code], p#button-auto) {
	width: 180px;
}
main section.form div.form div.component-address div.body div.row input[name=postal_code] {
	margin-right: 10px;
}
main section.form div.form div.component-address div.body div.row p#button-auto {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 50px;
	text-align: center;
	font-size: 0.75rem;
	line-height: 1rem;
	color: #ffffff;
	cursor: pointer;
	background-color: #333333;
	border-radius: 5px;
	transition: 0.25s background-color ease;
}
main section.form div.form div.mw_wp_form_preview div.component-address div.body div.row p#button-auto {
	display: none;
}
main section.form div.form div.component-address div.body div.row p#button-auto:hover {
	background-color: #a00f21;
}
main section.form div.form div.component-address div.body div.row :where(select[name=address-01], input[name=address-02]) {
	width: 220px;
}
main section.form div.form div.component-address div.body div.row select[name=address-01] {
	margin-right: 20px;
}
main section.form div.form div.component div.body span.error {
	width: 100%;
	font-size: 0.875rem;
	line-height: 25px;
	color: #a00f21;
	padding-top: 5px;
}
main section.form div.form div.action {
	display: flex;
	flex-wrap: wrap;
	padding-left: 240px;
}
main section.form div.form div.mw_wp_form_preview div.action {
	padding-left: 0px;
}
main section.form div.form div.action :where(input:where([type=button], [type=submit]), button):not(:last-child) {
	margin-right: 20px;
}
main section.form div.form div.action button[name=submitBack] {
	color: #000000;
	background-color: #ffffff;
}
main section.form div.form div.action button[name=submitBack]:hover {
	color: #ffffff;
	background-color: #a00f21;
}
main section.form div.mw_wp_form_complete p.description {
	text-align: center;
}



/* --------------------------------------------------------------------------------
modal
-------------------------------------------------------------------------------- */

div#modal {
	position: fixed;
	width: 100%;
	height: 0%;
	left: 0px;
	top: 0px;
	overflow: hidden;
	z-index: 9999;
	pointer-events: none;
	opacity: 0;
	transition: 0.25s opacity ease;
}
div#modal.active {
	height: 100%;
	pointer-events: auto;
}
div#modal.fade {
	opacity: 1;
}
div#modal::before,
div#modal div.inner-modal {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
div#modal::before {
	background-color: rgba(0, 0, 0, 0.875);
	content: "";
}
div#modal div.inner-modal {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
div#modal div.inner-modal p.button-close {
	position: absolute;
	width: 60px;
	height: 60px;
	right: 0px;
	top: 0px;
	z-index: 10;
	cursor: pointer;
}
div#modal div.inner-modal p.button-close::before,
div#modal div.inner-modal p.button-close::after {
	position: absolute;
	width: 40px;
	height: 0px;
	left: calc(50% - 20px);
	top: calc(50% - 0.5px);
	border-bottom: 1px solid #ffffff;
	content: "";
}
div#modal div.inner-modal p.button-close::before {
	transform: rotate(45deg);
}
div#modal div.inner-modal p.button-close::after {
	transform: rotate(-45deg);
}
div#modal div.video {
	aspect-ratio: 16 / 9;
	width: 100%;
	max-width: 1180px;
}
div#modal div.video iframe {
	width: 100%;
	height: 100%;
}



/* --------------------------------------------------------------------------------
footer
-------------------------------------------------------------------------------- */

footer#footer {
	position: relative;
}
footer#footer div.inner-footer {
	width: 1180px;
	margin: 0px auto;
	padding: 80px 0px 120px 0px;
}
footer#footer div.information-navi-footer {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
}
footer#footer div.information {
	width: 420px;
	font-size: 0.875rem;
}
footer#footer div.information p.logo {
	margin-bottom: 30px;
}
footer#footer div.information p.logo img {
	width: 254px;
}
footer#footer div.information p.button-tel {
	justify-content: flex-start;
	margin-bottom: 20px;
}
footer#footer div.information p.button-tel a {
	color: #000000;
	background-color: #ffffff;
}
footer#footer div.information p.button-tel a:hover {
	color: #ffffff;
	background-color: #a00f21;
}
footer#footer div.information p.button-tel span {
	display: block;
}
footer#footer div.information p.button-tel span.sub {
	font-size: 0.875rem;
	margin-right: 10px;
	transform: translateY(3px);
}
footer#footer div.information p.button-tel span.main {
	font-size: 1.375rem;
}
footer#footer nav#navi-footer {
	width: calc(100% - 420px);
}
footer#footer nav#navi-footer ul {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: -30px;
}
footer#footer nav#navi-footer ul li {
	width: 260px;
	font-weight: 500;
	margin-bottom: 30px;
}
footer#footer nav#navi-footer ul li span {
	display: block;
}
footer#footer nav#navi-footer ul li span.sub {
	font-family: "Copperplate", sans-serif;
	font-size: 0.75rem;
	line-height: 1.25rem;
	color: #a00f21;
}
footer#footer p.copyright {
	font-size: 0.75rem;
	line-height: 1.25rem;
}
footer#footer p.image {
	position: absolute;
	width: 800px;
	height: 355px;
	right: 0px;
	bottom: 0px;
	pointer-events: none;
	mask: url(../images/mask-image-07.svg) no-repeat;
	mask-size: contain;
}
