/* --------------------------------------------------------------------------------
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: YakuHanJP, "M PLUS 1p", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	font-feature-settings: "palt";
	line-height: 2rem;
	color: #000000;
	background-color: #e5e5e5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a.underline {
	text-decoration: underline;
}
a.color {
	transition: 0.375s color ease;
}
a.color:hover {
	color: #0000ff;
}
h1 {
	font-size: 1.5rem;
}
h2 {
	font-size: 1.375rem;
}
h3 {
	font-size: 1.25rem;
}
h4,
h5,
h6 {
	font-size: 1rem;
}
p.indent {
	text-indent: -1em;
	padding-left: 1em;
}
p.note {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
p:empty:before {
	content: none;
}
span.required {
	color: #0000ff;
}



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

input:is([type=text], [type=email], [type=number], [type=password], [type=search], [type=button], [type=submit]),
button,
textarea,
select {
	max-width: 100%;
	font-family: YakuHanJP, "M PLUS 1p", sans-serif;
	font-size: 1rem;
	outline: none;
	border-radius: 0px;
	appearance: none;
}
input:is([type=text], [type=email], [type=number], [type=password], [type=search]),
textarea,
select {
	vertical-align: top;
	color: #000000;
	border: 1px solid #969696;
	background-color: #ffffff;
}
input:is([type=text], [type=email], [type=number], [type=password], [type=search]),
select {
	height: 50px;
	padding: 0px 15px;
}
input:is([type=button], [type=submit]),
button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 240px;
	height: 50px;
	text-align: center;
	color: #ffffff;
	border: none;
	cursor: pointer;
	background-color: #0000ff;
	transition: 0.375s background-color ease;
}
input:is([type=button], [type=submit]):hover,
button:hover {
	background-color: #000000;
}
div.button-wrapper {
	position: relative;
	padding-left: 60px;
}
div.button-wrapper button,
div.button-wrapper button span.arrow-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 50px;
	background-color: #0000ff;
	border-radius: 25px;
	transition: 0.375s background-color ease;
}
div.button-wrapper button {
	width: 100%;
	font-size: 1.125rem;
	font-weight: 500;
	color: #ffffff;
}
div.button-wrapper button:hover,
div.button-wrapper button:hover span.arrow-wrapper {
	background-color: #000000;
}
div.button-wrapper button span.arrow-wrapper {
	position: absolute;
	width: 50px;
	left: 0px;
	top: 0px;
}
div.button-wrapper button span.arrow::before {
	border-color: #ffffff;
}
div.button-wrapper button span.arrow::after {
	background-color: #ffffff;
}
input:is([type=radio], [type=checkbox]),
input:is([type=radio], [type=checkbox])::before,
label.alternate input:is([type=radio], [type=checkbox]) + span {
	width: 25px;
	height: 25px;
}
input:is([type=radio], [type=checkbox]),
label.alternate {
	margin-right: 5px;
}
input:is([type=radio], [type=checkbox]) {
	position: relative;
	vertical-align: middle;
	transform: translateX(-9999px);
}
input:is([type=radio], [type=checkbox])::before,
input:is([type=radio], [type=checkbox])::after,
label.alternate {
	cursor: pointer;
}
input:is([type=radio], [type=checkbox])::before,
input:is([type=radio], [type=checkbox])::after,
label.alternate input:is([type=radio], [type=checkbox]) + span::before {
	position: absolute;
	content: "";
}
input:is([type=radio], [type=checkbox])::before,
input:is([type=radio], [type=checkbox])::after {
	transform: translate(9999px, -1px);
}
input:is([type=radio], [type=checkbox])::before,
label.alternate input:is([type=radio], [type=checkbox]) + span {
	border: 1px solid #969696;
	background-color: #ffffff;
}
input:is([type=radio], [type=checkbox])::after,
label.alternate input:is([type=radio], [type=checkbox]) + span::before {
	opacity: 0;
	transition: 0.375s opacity ease;
}
input:is([type=radio], [type=checkbox]):checked::after,
label.alternate input:is([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: #0000ff;
}
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 #0000ff;
	border-bottom: 2px solid #0000ff;
}
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:is([type=radio], [type=checkbox]) {
	display: none;
}
label.alternate input:is([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: #b4b4b4;
}
form#searchform label.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}



/* --------------------------------------------------------------------------------
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-instagram::before {
	content: "\e900";
}
i.icon-line::before {
	content: "\e901";
}
i.icon-youtube::before {
	content: "\e902";
}



/* --------------------------------------------------------------------------------
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 #969696;
	margin: 20px 0px;
}
iframe[src*="youtube.com"],
video {
	aspect-ratio: 16 / 9;
	width: 100%;
	height: auto;
}
iframe.wp-embedded-content {
	width: 100%;
}
mark {
	margin: 0px 5px;
	padding: 0px 5px;
	background-color: #ffffff;
}



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

div#page {
	position: relative;
	overflow: hidden;
}
div#trigger {
	position: absolute;
	left: 0px;
	top: 50svh;
	pointer-events: none;
}
nav#navi-fix {
	position: fixed;
	height: 330px;
	right: 0px;
	top: calc(50% - 165px);
	z-index: 20;
}
body.admin-bar nav#navi-fix {
	top: calc(50% - 149px);
}
nav#navi-fix ul li {
	position: relative;
	height: 160px;
	writing-mode: vertical-rl;
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: 0.25em;
}
nav#navi-fix ul li:not(:last-child) {
	margin-bottom: 10px;
}
nav#navi-fix ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 50px;
	height: 100%;
	color: #ffffff;
	padding-top: 10px;
	background-color: #0000ff;
	transition: 0.375s background-color ease;
	clip-path: polygon(25px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 25px);
}
nav#navi-fix ul li a:hover {
	background-color: #000000;
}
nav#navi-fix ul li a::before {
	display: inline-block;
	width: 20px;
	height: 20px;
	text-align: center;
	writing-mode: horizontal-tb;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	line-height: 1.25rem;
	color: #0000ff;
	letter-spacing: 0em;
	margin-bottom: 5px;
	background-color: #ffffff;
	content: "!";
	border-radius: 50%;
}
div#tab-contact {
	width: 1040px;
	margin: 0px auto;
	padding-top: 120px;
}
div#tab-contact ul,
div#tab-contact ul li a {
	display: flex;
	flex-wrap: wrap;
}
div#tab-contact ul li {
	width: 33.33%;
	line-height: 1.625rem;
}
div#tab-contact ul li a {
	align-items: center;
	height: 80px;
	padding-left: 40px;
	background-color: #b4b4b4;
	transition: 0.375s background-color ease;
	clip-path: polygon(0% 0%, calc(100% - 80px) 0%, 100% 100%, 0% 100%);
}
div#tab-contact ul li a:hover,
body.visit div#tab-contact ul li.visit a,
body.booking-form div#tab-contact ul li.visit a,
body.booking-thanks div#tab-contact ul li.visit a,
body.brochure div#tab-contact ul li.brochure a,
body.brochure-thanks div#tab-contact ul li.brochure a,
body.contact div#tab-contact ul li.contact a,
body.contact-thanks div#tab-contact ul li.contact a {
	background-color: #ffffff;
}
div#tab-contact ul li span,
div#tab-contact ul li span i {
	display: block;
}
div#tab-contact ul li span i.main {
	font-family: "Montserrat", sans-serif;
	font-size: 1.5rem;
	font-weight: 500;
}
div.sns ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100px;
}
div.sns ul li {
	font-size: 1.5rem;
}
p.button-default {
	position: relative;
	padding-left: 60px;
}
p.button-default a,
p.button-default span.arrow-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 50px;
	background-color: #0000ff;
	border-radius: 25px;
	transition: 0.375s background-color ease;
}
p.button-default a {
	text-decoration: none;
	font-size: 1.125rem;
	font-weight: 500;
	color: #ffffff;
}
p.button-default a:hover,
p.button-default a:hover span.arrow-wrapper {
	background-color: #000000;
}
p.button-default span.arrow-wrapper {
	position: absolute;
	width: 50px;
	left: 0px;
	top: 0px;
}
p.button-default span.arrow::before,
p.button-default a:hover span.arrow::before {
	border-color: #ffffff;
}
p.button-default span.arrow::after,
p.button-default a:hover span.arrow::after {
	background-color: #ffffff;
}
p.button-back a,
p.button-back a span.arrow-wrapper {
	background-color: #969696;
}
p.button-back a span.arrow-wrapper {
	transform: scaleX(-1);
}
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);
}
div.flatpickr-current-month span.cur-month {
	font-weight: 400;
}
div.flatpickr-weekdaycontainer span.flatpickr-weekday {
	font-weight: 400;
}
span.flatpickr-day {
	line-height: 35px;
}
span.flatpickr-day.today {
border-color: #969696;
}
span.flatpickr-day:is(.selected, .startRange, .endRange, .selected.inRange, .startRange.inRange, .endRange.inRange, .selected:focus, .startRange:focus, .endRange:focus, .selected:hover, .startRange:hover, .endRange:hover, .selected.prevMonthDay, .startRange.prevMonthDay, .endRange.prevMonthDay, .selected.nextMonthDay, .startRange.nextMonthDay, .endRange.nextMonthDay) {
	background: #0000ff;
	border-color: #0000ff
}
*.scroll:is(.fade, .fade-slide),
*.scroll:is(.fade-each, .fade-each-slide) > * {
	opacity: 0;
	transition-duration: 1.25s;
}
*.scroll.fade,
*.scroll.fade-each > * {
	transition-property: opacity;
	transition-timing-function: ease-in-out;
}
*.scroll:is(.fade, .fade-slide).active,
*.scroll:is(.fade-each, .fade-each-slide).active > * {
	opacity: 1;
}
*.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(80px, 0px);
}
*.scroll.fade-slide-right,
*.scroll.fade-each-slide-right > * {
	transform: translate(-80px, 0px);
}
*.scroll.fade-slide-up,
*.scroll.fade-each-slide-up > * {
	transform: translate(0px, 80px);
}
*.scroll.fade-slide-down,
*.scroll.fade-each-slide-down > * {
	transform: translate(0px, -80px);
}
*.scroll.fade-slide.active,
*.scroll.fade-each-slide.active > * {
	transform: translate(0px, 0px);
}
*.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);
}



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

header#header {
	position: relative;
	z-index: 10;
}
header#header *#logo,
header#header :is(nav.navi, div.sns) {
	position: fixed;
}
header#header *#logo {
	left: 40px;
	top: 0px;
	padding-top: 20px;
}
body.admin-bar header#header *#logo {
	padding-top: 52px;
}
header#header *#logo a {
	display: block;
	width: 100px;
}
header#header *#logo img {
	width: 100%;
}
header#header :is(nav.navi, div.sns) {
	top: 30px;
	line-height: 40px;
}
body.admin-bar header#header :is(nav.navi, div.sns) {
	top: 62px;
}
header#header nav.navi {
	right: 180px;
}
header#header nav.navi ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 720px;
}
header#header nav.navi ul li {
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
}
header#header div.sns {
	right: 40px;
}



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

div#cover {
	position: fixed;
	width: 100%;
	height: 100svh;
	left: 0px;
	top: 0px;
}
div#cover p.image {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	opacity: 0;
	transition: 1.25s opacity 0.25s ease-in-out, 1.25s clip-path 0.25s ease;
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
div#cover p.image.active {
	opacity: 1;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
div#cover p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
div#cover :is(p.catch, h1) {
	position: absolute;
	z-index: 1;
}
div#cover p.catch {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	text-indent: 0.05em;
	font-size: 6rem;
	font-weight: 500;
	line-height: 7rem;
	color: #ffffff;
	letter-spacing: 0.05em;
}
div#cover p.catch span {
	display: block;
}
div#cover p.catch span i {
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
div#cover h1 {
	left: calc(50% - calc(calc(100px * 4) * 0.5));
	top: calc(50% - calc(calc(46px * 4) * 0.5));
	opacity: 0;
}
div#cover h1 img {
	width: calc(100px * 4);
	height: calc(46px * 4);
}
div#space-cover {
	position: relative;
	height: calc(100svh + 2600px);
}
div#space-cover div.trigger {
	position: absolute;
}
div#space-cover div.trigger-01 {
	height: 1600px;
	top: 100svh;
}
div#space-cover div.trigger-02 {
	height: 800px;
	top: calc(100svh + 1400px);
}
div#space-cover div.trigger-03 {
	height: 800px;
	top: calc(100svh + 1800px);
}



/* --------------------------------------------------------------------------------
title
-------------------------------------------------------------------------------- */

div#title {
	width: 1040px;
	margin: 200px auto 0px auto;
}
div#title h1 {
	font-family: "Montserrat", sans-serif;
	font-size: 4.5rem;
	font-weight: 500;
	line-height: 5rem;
	margin-bottom: 10px;
}



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

main,
main section,
main section div.inner-section {
	position: relative;
}
main {
	position: relative;
	z-index: 1;
	background-color: #e5e5e5;
}
main section div.inner-section {
	width: 1040px;
	margin: 0px auto;
	padding: 160px 0px;
}
main section:first-child div.inner-section {
	padding-top: 120px;
}
main section.column div.inner-section {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main section.column header {
	width: calc(100% - 700px);
}
main section.column div.content {
	width: 620px;
}
main section#misc div.inner-section {
	padding-top: 0px;
}
main section#misc div.related {
	border-top: 1px solid #969696;
	margin-bottom: 160px;
	padding-top: 160px;
}
main:has(section.form) section#misc div.related {
	border-top: none;
}
main section header.common {
	margin-bottom: 40px;
}
main section header.common h2 {
	font-family: "Montserrat", sans-serif;
	font-size: 2.25rem;
	font-weight: 500;
	line-height: 2.75rem;
}
main section header.common p.sub:not(:last-child) {
	margin-bottom: 40px;
}
main section header.common h3 {
	font-size: 1.875rem;
	line-height: 3rem;
}
main section header.common h4 {
	font-size: 1.25rem;
}
main div.header-body {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main div.header-body :is(header.common, div.body) {
	width: calc(50% - 40px);
}
main div.header-body div.body {
	padding-top: 80px;
}
main div.header-body div.body p.description:not(:last-child) {
	margin-bottom: 40px;
}
main div.block-column {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main div.block-column div.header {
	width: calc(100% - 700px);
}
main div.block-column div.content {
	width: 620px;
}
main span.arrow {
	display: inline-block;
	position: relative;
	width: 20px;
	height: 10px;
}
main span.arrow::before,
main span.arrow::after {
	position: absolute;
	right: 0px;
	content: "";
}
main span.arrow::before {
	width: 100%;
	height: 0px;
	top: calc(50% - 0.5px);
	border-bottom: 1px solid #000000;
	transition: 0.375s border-color ease;
}
main a:hover span.arrow::before {
	border-color: #0000ff;
}
main span.arrow::after {
	width: 7.5px;
	height: 10px;
	top: calc(50% - 5px);
	background-color: #000000;
	transition: 0.375s background-color ease;
	clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}
main a:hover span.arrow::after {
	background-color: #0000ff;
}
main span.arrow-white::before {
	border-color: #ffffff;
}
main span.arrow-white::after {
	background-color: #ffffff;
}
main p:is(.more, .back) {
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
}
main p:is(.more, .back) a {
	display: block;
	position: relative;
}
main p:is(.more, .back) a span.arrow {
	position: absolute;
	width: 200px;
	right: 0px;
	top: 11px;
}
main p:is(.more-ja, .back-ja) {
	font-family: YakuHanJP, "M PLUS 1p", sans-serif;
	font-weight: 400;
}
main p.back {
	width: 620px;
	margin-left: auto;
}
main:has(section.form) p.back {
	margin-top: 160px;
}
main div.created-category:has(p.created) {
	display: flex;
	flex-wrap: wrap;
}
main div.created-category p.created {
	width: 80px;
	font-family: "Montserrat", sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
}
main div.created-category:has(p.created) div.category {
	width: calc(100% - 80px);
}
main div.created-category div.category ul,
main div.created-category div.category ul li {
	display: flex;
	flex-wrap: wrap;
}
main div.created-category div.category ul {
	margin: 0px -5px -10px 0px;
}
main div.created-category:has(p.created) div.category ul {
	justify-content: flex-end;
}
main div.created-category div.category ul li {
	justify-content: center;
	align-items: center;
	height: 30px;
	font-size: 0.875rem;
	line-height: 1.5rem;
	margin: 0px 5px 10px 0px;
	border: 1px solid #ffffff;
	padding: 0px 15px;
	border-radius: 15px;
}
main div.created-category div.category ul li.status {
	color: #ffffff;
	border: none;
	background-color: #0000ff;
}
main div.created-category div.category ul li:is(.status-2, .status-3) {
	background-color: #969696;
}
main div.list-category {
	border-top: 1px solid #969696;
	border-bottom: 1px solid #969696;
	margin-bottom: 120px;
	padding: 20px 0px;
}
main div.list-category ul,
main div.list-category ul li a {
	display: flex;
	flex-wrap: wrap;
}
main div.list-category ul {
	margin: 0px -5px -10px 0px;
}
main div.list-category ul li {
	font-size: 0.875rem;
	line-height: 1.5rem;
	margin: 0px 5px 10px 0px;
}
main div.list-category ul li a {
	justify-content: center;
	align-items: center;
	height: 30px;
	border: 1px solid #ffffff;
	padding: 0px 15px;
	border-radius: 15px;
	transition: 0.375s background-color ease;
}
main div.list-category ul li a:hover,
main div.list-category ul li.active a {
	background-color: #ffffff;
}
main div.list-common {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -40px -80px 0px;
}
main div.list-common div.row {
	width: calc(33.33% - 40px);
	margin: 0px 40px 80px 0px;
}
main div.list-common div.row p.image {
	margin-bottom: 20px;
}
main div.list-common div.row div.created-category {
	margin-bottom: 15px;
}
main div.list-common div.row div.created-category:not(:has(p.created)) {
	border-bottom: 1px solid #969696;
	padding-bottom: 20px;
}
main div.list-common div.row h3 {
	font-size: 1.125rem;
	line-height: 1.5rem;
}
main article.common {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main article.common header {
	width: calc(100% - 700px);
}
main article.common header h1 {
	font-size: 1.5rem;
	border-bottom: 1px solid #969696;
	margin-bottom: 40px;
	padding-bottom: 40px;
}
main article.common header div.created-category:not(:last-child) {
	margin-bottom: 40px;
}
main article.common div.content {
	width: 620px;
}
main article.common div.body a {
	text-decoration: underline;
}
main article.common div.body :is(h1, h2, h3, h4, h5, h6, strong) {
	font-weight: 500;
}
main article.common div.body em {
	font-style: italic;
}
main article.common div.body blockquote {
	padding: 20px;
	background-color: #ffffff;
}
main article.common div.body ul li,
main ul.bullet li {
	position: relative;
	padding-left: 20px;
}
main article.common div.body ul li::before,
main ul.bullet li::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: 4px;
	top: 14px;
	background-color: #000000;
	content: "";
	border-radius: 50%;
}
main article.common div.body ol {
	padding-left: 20px;
}
main article.common div.body ol li {
	list-style-type: decimal;
}
main article.common div.body table {
	width: 100%;
}
main article.common div.body table :is(th, td) {
	border: 1px solid #969696;
	padding: 10px;
}
main article.common div.body table th {
	background-color: #ffffff;
}
main article.common div.body img.alignleft {
	margin-left: 0px;
	margin-right: auto;
}
main article.common div.body img.alignright {
	margin-left: auto;
	margin-right: 0px;
}
main article.common div.body img.aligncenter {
	margin-left: auto;
	margin-right: auto;
}
main article.common div.body p.button-default a {
	text-decoration: none;
}
main article.common div.body :is(a.wp-block-button__link, a.wp-block-file__button) {
	display: inline-block;
	height: 50px;
	text-decoration: none;
	font-size: 1rem;
	line-height: 50px;
	color: #ffffff;
	padding: 0px 20px;
	background-color: #000000;
	border-radius: 25px;
	transition: 0.375s background-color ease;
}
main article.common div.body :is(a.wp-block-button__link, a.wp-block-file__button):hover {
	background-color: #0000ff;
}
main div#pager {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
	margin-top: 120px;
	padding: 0px 220px;
}
main div#pager {
	margin-bottom: -10px;
}
main div#pager :is(span.current, a) {
	font-family: "Montserrat", sans-serif;
	font-size: 1.125rem;
	font-weight: 500;
	color: #000000;
	margin: 0px 10px;
	transition: 0.375s color ease;
}
main div#pager :is(span.current, a) {
	margin-bottom: 10px;
}
main div#pager :is(span.current, a:hover) {
	color: #0000ff;
}
main div#pager :is(a.prev, a.next) {
	position: absolute;
	width: 200px;
	top: 0px;
}
main div#pager a.prev {
	left: 0px;
}
main div#pager a.next {
	right: 0px;
}
main div#pager :is(a.prev, a.next) span.arrow {
	width: 100%;
}
main div#pager a.prev span.arrow {
	transform: scaleX(-1);
}

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

main section#home-information div.list-information {
	width: calc(100% - 200px);
	margin-left: auto;
}
main section#home-information div.list-information div.row,
main section#home-information div.list-information div.row div.created-type {
	display: flex;
	flex-wrap: wrap;
}
main section#home-information div.list-information div.row {
	line-height: 1.5rem;
	border-bottom: 1px solid #969696;
	padding-bottom: 20px;
}
main section#home-information div.list-information div.row:not(:last-child) {
	margin-bottom: 40px;
}
main section#home-information div.list-information div.row div.created-type {
	width: 220px;
	font-size: 0.875rem;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
}
main section#home-information div.list-information div.row div.created-type p.created {
	width: 120px;
}
main section#home-information div.list-information div.row div.created-type p.type {
	width: calc(100% - 120px);
}
main section#home-information div.list-information div.row h3 {
	width: calc(100% - 220px);
	font-size: 1.125rem;
}
main section#home-information div.list-information div.row h3 span.arrow {
	margin-left: 10px;
	transform: translateY(-1px);
}
main section.effect div.inner-section {
	width: auto;
	color: #ffffff;
	padding: 2000px 0px 0px 0px;
}
main section.effect div.trigger {
	position: absolute;
}
main section.effect div.trigger-01 {
	height: 1600px;
	top: 0px;
}
main section.effect div.trigger-02 {
	height: 800px;
	top: 800px;
}
main section.effect div.trigger-03 {
	height: 800px;
	top: 1600px;
}
main section.effect p.image,
main section.effect p.image span {
	position: absolute;
}
main section.effect p.image {
	width: 100%;
	height: 100svh;
	left: 0px;
	top: 0px;
}
main section.effect p.image span {
	display: block;
	width: calc(100% + 40px);
	height: calc(100% + 40px);
	left: -20px;
	top: -20px;
	clip-path: polygon(25% 25%, 75% 25%, 75% 75%, 25% 75%);
}
main section.effect.start p.image {
	position: fixed;
}
main section.effect.end p.image {
	position: absolute;
	top: auto;
	bottom: 0px;
}
main section.effect p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section.effect :is(p.catch, div.text) {
	z-index: 1;
}
main section.effect p.catch {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: fixed;
	width: 100%;
	height: 100svh;
	left: 0px;
	top: 0px;
	text-indent: 0.05em;
	font-family: "Montserrat", sans-serif;
	font-size: 5.5rem;
	font-weight: 500;
	line-height: 6rem;
	letter-spacing: 0.05em;
	pointer-events: none;
}
main section.effect p.catch span {
	display: block;
}
main section.effect p.catch span i {
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
main section.effect div.text {
	position: relative;
	width: 1040px;
	margin: 0px auto;
	padding-bottom: 600px;
}
main section:is(#home-concept, #home-products, #home-process) {
	background-color: #ffffff;
}
main section#home-products div.header-body {
	margin-bottom: 40px;
}
main section#home-products div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px calc(calc(50% - 50vw) + 20px) 0px calc(calc(50% - 50vw) + 40px);
}
main section#home-products div.list div.row {
	width: calc(33.33% - 20px);
	text-align: center;
	color: #ffffff;
	margin-right: 20px;
}
main section#home-products div.list div.row a {
	display: block;
	position: relative;
}
main section#home-products div.list div.row p.image {
	position: relative;
	height: 530px;
}
main section#home-products div.list div.row p.image::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: rgba(0, 0, 0, 0.125);
	content: "";
	transition: 0.375s background-color ease;
}
main section#home-products div.list div.row a:hover p.image::before {
	background-color: rgba(0, 0, 255, 0.625);
}
main section#home-products div.list div.row p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#home-products div.list div.row h3,
main section#home-products div.list div.row h3 span {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 1;
}
main section#home-products div.list div.row h3::before {
	position: absolute;
	width: 160px;
	height: 160px;
	left: calc(50% - 80px);
	top: calc(50% - 80px);
	border: 1px solid #ffffff;
	content: "";
	border-radius: 50%;
	transition: 0.375s all ease;
}
main section#home-products div.list div.row a:hover h3::before {
	width: 240px;
	height: 240px;
	left: calc(50% - 120px);
	top: calc(50% - 120px);
}
main section#home-products div.list div.row h3 span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	transition: 0.375s opacity ease-in-out;
}
main section#home-products div.list div.row h3 span.sub {
	font-family: "Montserrat", sans-serif;
	font-size: 2.5rem;
	font-weight: 500;
	line-height: 3rem;
}
main section#home-products div.list div.row a:hover h3 span.sub {
	opacity: 0;
}
main section#home-products div.list div.row h3 span.main {
	font-size: 2.25rem;
	font-weight: 500;
	line-height: 2.75rem;
	opacity: 0;
}
main section#home-products div.list div.row a:hover h3 span.main {
	opacity: 1;
}
main section:is(#home-process, #home-standard-house) div.header-body {
	display: block;
}
main section:is(#home-process, #home-standard-house) div.header-body div.body {
	padding-top: 0px;
}
main section#home-works div.slide {
	position: relative;
}
main section#home-works div.slide div.list {
	overflow: hidden;
	margin: 0px calc(50% - 50vw) 0px calc(calc(50% - 50vw) + 40px);
}
main section#home-works div.slide div.list div.inner-list {
	display: flex;
	flex-wrap: wrap;
	width: 9999px;
}
main section#home-works div.slide div.list div.row {
	width: 620px;
	margin-right: 40px;
}
main section#home-works div.slide div.list div.row a {
	display: block;
	position: relative;
}
main section#home-works div.slide div.list div.row p.image {
	aspect-ratio: 620 / 440;
}
main section#home-works div.slide div.list div.row p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#home-works div.slide div.list div.row div.text {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	color: #ffffff;
	background-color: rgba(0, 0, 255, 0.625);
	opacity: 0;
	transition: 0.375s opacity ease;
}
main section#home-works div.slide div.list div.row a:hover div.text {
	opacity: 1;
}
main section#home-works div.slide div.list div.row div.text h3 {
	font-size: 1.125rem;
}
main section#home-works div.slide div.pager {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: absolute;
	width: 200px;
	right: 0px;
	top: -72px;
}
main section#home-works div.slide div.pager p.button {
	width: 80px;
	cursor: pointer;
}
main section#home-works div.slide div.pager p.button span.arrow {
	width: 100%;
}
main section#home-works div.slide div.pager p.button-prev span.arrow {
	transform: scaleX(-1);
}
main section#home-works div.slide div.pager p.button:hover span.arrow::before {
	border-color: #0000ff;
}
main section#home-works div.slide div.pager p.button:hover span.arrow::after {
	background-color: #0000ff;
}
main section#home-works p.more {
	position: absolute;
	right: 280px;
	top: 204px;
}
main section#home-works p.more span.arrow {
	display: none;
}
main section#home-process div.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: absolute;
	width: 420px;
	height: 100%;
	right: 0px;
	top: 0px;
}
main section#home-process div.list div.row {
	position: relative;
	width: 190px;
	height: 100%;
	overflow: hidden;
}
main section#home-process div.list div.row div.inner-row {
	height: 9999px;
	animation-duration: 90s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-fill-mode: forwards;
}
main section#home-process div.list div.row:nth-child(1) div.inner-row {
	animation-name: home-process-01
}
main section#home-process div.list div.row:nth-child(2) div.inner-row {
	animation-name: home-process-02
}
main section#home-process div.list div.row p.illust {
	margin-bottom: 60px;
}
main section#home-process div.list div.row p.illust img {
	width: 100%;
}
@keyframes home-process-01 {
	0% { transform: translateY(0px); }
	100% { transform: translateY(calc(calc(-190px - 60px) * 10)); }
}
@keyframes home-process-02 {
	0% { transform: translateY(calc(calc(-190px - 60px) * 10)); }
	100% { transform: translateY(0px); }
}
main section#home-standard-house div.image-text {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
}
main section#home-standard-house div.image-text p.image {
	width: 530px;
}
main section#home-standard-house div.image-text div.text {
	width: calc(100% - 610px);
}
main section#home-standard-house div.image-text div.text div.header-body :is(header.common, div.body) {
	width: auto;
}

/* concept
-------------------------------------------------------------------------------- */

main section#concept div.block:not(:last-child) {
	margin-bottom: 120px;
}
main section#concept div.block-concept h2,
main section#concept div.block-design div.header h2 {
	font-family: "Montserrat", sans-serif;
	font-size: 1.5rem;
	font-weight: 500;
}
main section#concept div.block-concept h2 {
	margin-bottom: 40px;
}
main section#concept div.block-concept p.image-main,
main section#concept div.block-concept-house p.image-main {
	height: 750px;
	margin: 0px calc(50% - 50vw) 120px 0px;
	opacity: 0;
	transition: 1.25s opacity 0.25s ease-in-out, 1.25s clip-path 0.25s ease;
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
main section#concept div.block-concept p.image-main.active,
main section#concept div.block-concept-house p.image-main.active {
	opacity: 1;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
main section#concept div.block-concept p.image-main img,
main section#concept div.block-concept-house p.image-main img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#concept div.block-concept div.content,
main section#concept div.block-concept-house div.content {
	width: 620px;
	margin-left: auto;
}
main section#concept div.block-concept div.content {
	margin-bottom: 120px;
}
main section#concept div.block-concept div.content h3,
main section#concept div.block-design div.content h4 {
	font-size: 1.5rem;
	line-height: 2.75rem;
}
main section#concept div.block-concept div.content h3 {
	margin-bottom: 120px;
}
main section#concept div.block-concept div.content div.list div.row:not(:last-child) {
	margin-bottom: 80px;
}
main section#concept div.block-concept div.content div.list div.row h4,
main section#concept div.block-design div.content h3,
main section#concept div.block-concept-house div.content div.list div.row h3 {
	position: relative;
	font-family: "Montserrat", sans-serif;
	font-size: 1.875rem;
	font-weight: 500;
	margin-bottom: 20px;
}
main section#concept div.block-concept div.content div.list div.row h4::before,
main section#concept div.block-design div.content h3::before,
main section#concept div.block-concept-house div.content div.list div.row h3::before {
	position: absolute;
	width: 240px;
	height: 0px;
	left: 0px;
	bottom: -10px;
	border-bottom: 1px solid #969696;
	content: "";
}
main section#concept div.block-concept div.content div.list div.row p.sub,
main section#concept div.block-design div.content p.sub,
main section#concept div.block-concept-house div.content div.list div.row p.sub {
	font-size: 1.25rem;
}
main section#concept div.block-concept div.content div.list div.row p.sub,
main section#concept div.block-concept-house div.content div.list div.row p.sub {
	margin-bottom: 20px;
}
main section#concept div.block-concept div.image {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0px calc(calc(50% - 50vw) + 40px);
}
main section#concept div.block-concept div.image p.row:is(:nth-child(1), :nth-child(3)) {
	width: calc(25% - 20px);
	height: 400px;
}
main section#concept div.block-concept div.image p.row:nth-child(2) {
	width: 50%;
	height: 620px;
}
main section#concept div.block-concept div.image p.row:nth-child(3) {
	margin-top: auto;
}
main section#concept div.block-concept div.image p.row img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#concept div.block-design div.content :is(h4, p.sub, p.image) {
	margin-bottom: 40px;
}
main section#concept div.block-concept-house div.list {
	margin-bottom: 80px;
}
main section#concept div.block-concept-house div.list div.row:not(:last-child) {
	margin-bottom: 40px;
}
main section#concept div.block-concept-house div.list div.row-column {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main section#concept div.block-concept-house div.list div.row-column-reverse {
	flex-direction: row-reverse;
}
main section#concept div.block-concept-house div.list div.row-column p.image {
	width: 265px;
}
main section#concept div.block-concept-house div.list div.row-column div.text {
	width: calc(100% - 305px);
}
main section#concept div.block-concept-house div.list div.row-column div.text h4 {
	font-size: 1.25rem;
	border-bottom: 1px solid #969696;
	margin-bottom: 20px;
	padding-bottom: 10px;
}

/* products
-------------------------------------------------------------------------------- */

main section#products div.block:not(:last-child) {
	border-bottom: 1px solid #969696;
	margin-bottom: 120px;
	padding-bottom: 120px;
}
main section#products div.block div.header p.label {
	font-family: "Montserrat", sans-serif;
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 40px;
}
main section#products div.block div.header h2 {
	font-size: 1.875rem;
	margin-bottom: 20px;
}
main section#products div.block div.content div.list div.row:not(:last-child) {
	margin-bottom: 120px;
}
main section#products div.block div.content div.list div.row p.illust {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 60px;
}
main section#products div.block div.content div.list div.row p.illust img {
	width: 620px;
	transition: 1s transform ease;
	transform: scale(0.9375);
}
main section#products div.block div.content div.list div.row.active p.illust img {
	transform: scale(1);
}
main section#products div.block div.content div.list div.row h3 {
	font-family: "Montserrat", sans-serif;
	font-size: 1.875rem;
	font-weight: 500;
	border-bottom: 1px solid #969696;
	margin-bottom: 10px;
	padding-bottom: 10px;
}
main section#products div.block div.content div.list div.row p.sub {
	font-size: 1.25rem;
	font-weight: 500;
	margin-bottom: 20px;
}
main section#products div.block div.content div.list div.row p.description:not(:last-child) {
	margin-bottom: 40px;
}

/* lineup, specification
-------------------------------------------------------------------------------- */

main section:is(.lineup, .specification) div.block:not(:last-child) {
	border-bottom: 1px solid #969696;
	margin-bottom: 120px;
	padding-bottom: 120px;
}
main section:is(.lineup, .specification) div.block div.header h2 {
	font-family: "Montserrat", sans-serif;
	font-size: 2.25rem;
	font-weight: 500;
	line-height: 2.75rem;
	margin-bottom: 20px;
}
main section:is(.lineup, .specification) div.block div.header p.sub {
	font-size: 1.5rem;
}
main section:is(.lineup, .specification) div.block-summary div.content p.illust {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 60px;
}
main section:is(.lineup, .specification) div.block-summary div.content p.illust img {
	width: 620px;
	transition: 1s transform ease;
	transform: scale(0.9375);
}
main section:is(.lineup, .specification) div.block-summary div.content p.illust.active img {
	transform: scale(1);
}

/* works
-------------------------------------------------------------------------------- */

main div.list-works div.row {
	width: calc(50% - 40px);
}
main article.works div.body:not(:last-child) {
	margin-bottom: 40px;
}
main article.works div.gallery div.list {
	position: relative;
	margin-bottom: -10px;
}
main article.works div.gallery div.list p:is(.size, .row) {
	width: calc(50% - 5px);
}
main article.works div.gallery div.list p.row {
	margin-bottom: 10px;
}
main article.works div.gallery div.list p.row-size-0 {
	aspect-ratio: 620 / 440;
	width: 100%;
}
main article.works div.gallery div.list p.row-size-1 {
	aspect-ratio: 305 / 440;
}
main article.works div.gallery div.list p.row-size-2 {
	aspect-ratio: 305 / 215;
}
main article.works div.gallery div.list p.row img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

/* process
-------------------------------------------------------------------------------- */

main section#process div.block {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main section#process div.block:not(:last-child) {
	border-bottom: 1px solid #969696;
	margin-bottom: 120px;
	padding-bottom: 120px;
}
main section#process div.block div.header {
	width: calc(100% - 700px);
}
main section#process div.block div.header h2 {
	font-family: "Montserrat", sans-serif;
	font-size: 2.25rem;
	font-weight: 500;
	line-height: 2.75rem;
}
main section#process div.block div.content {
	width: 620px;
}
main section#process div.block div.content div.list div.row:not(:last-child) {
	margin-bottom: 80px;
}
main section#process div.block div.content div.list div.row p.illust {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 20px;
}
main section#process div.block div.content div.list div.row p.illust img {
	width: 380px;
	transition: 1s transform ease;
	transform: scale(0.9375);
}
main section#process div.block div.content div.list div.row.active p.illust img {
	transform: scale(1);
}
main section#process div.block div.content div.list div.row h3 {
	font-size: 1.25rem;
	font-weight: 500;
	border-bottom: 1px solid #969696;
	margin-bottom: 20px;
	padding-bottom: 10px;
}

/* visit
-------------------------------------------------------------------------------- */

div.monthly-calendar {
	position: relative;
	margin-bottom: 0px;
}
div.monthly-calendar + div.monthly-calendar {
	display: none;
}
div.monthly-calendar::before,
div#booking-form::before {
	display: block;
	font-size: 1.25rem;
	border-bottom: 1px solid #969696;
	margin-bottom: 80px;
	padding-bottom: 10px;
}
div.monthly-calendar::before {
	content: "見学希望日を選択してください。";
}
div.day-calendar::before {
	content: "見学時間帯を選択してください。";
}
div#booking-form::before {
	content: "お客様の情報を入力してください。";
}
div.monthly-calendar h3 {
	display: none;
}
div.monthly-calendar table {
	width: 100%;
}
div.monthly-calendar table caption {
	font-size: 1.5rem;
	color: #0000ff;
	padding-bottom: 40px;
}
div.monthly-calendar table th,
div.monthly-calendar table td {
	border: 1px solid #969696;
}
div.monthly-calendar table thead th {
	font-size: 0.875rem;
	font-weight: 400;
	background-color: #e5e5e5;
}
div.monthly-calendar table tbody td {
	padding: 10px;
	background-color: #ffffff;
}
div.monthly-calendar table tbody td.day-box.no-day {
	background-color: #e5e5e5;
}
div.monthly-calendar table tbody td div.day-number {
	text-align: left;
	font-family: "Montserrat", sans-serif;
	font-size: 1.5rem;
}
div.monthly-calendar table tbody td div.calendar-mark {
	font-size: 1.5rem;
	color: #000000;
}
.list-header.sun,
.mix-calendar .header-row .sun,
.week-title.sun,
.day-box.sun .day-number {
	color: #ff0000;
}
.list-header.sat,
.mix-calendar .header-row .sat,
.week-title.sat,
.day-box.sat .day-number {
	color: #0000ff;
}
div.monthly-calendar div.monthly-prev-next {
	position: absolute;
	width: 100%;
	left: 0px;
	top: 123px;
	pointer-events: none;
}
div.monthly-calendar div.monthly-prev-next div:is(.monthly-prev, .monthly-next) {
	position: absolute;
	top: 0px;
	pointer-events: auto;
}
div.monthly-calendar div.monthly-prev-next div:is(.monthly-prev, .monthly-next):not(:has(a)) {
	display: none;
}
div.monthly-calendar div.monthly-prev-next div.monthly-prev {
	left: 0px;
}
div.monthly-calendar div.monthly-prev-next div.monthly-next {
	right: 0px;
}
div.monthly-calendar div.monthly-prev-next div:is(.monthly-prev, .monthly-next) a {
	color: #969696;
	transition: 0.375s color ease;
}
div.monthly-calendar div.monthly-prev-next div:is(.monthly-prev, .monthly-next) a:hover {
	color: #0000ff;
}
div.day-calendar table {
	border-collapse: collapse;
	margin-bottom: 40px;
}
div.day-calendar table caption div.mtssb-timetable-name {
	display: none;
}
div.day-calendar table :is(th, td) {
	font-weight: 400;
	border-spacing: 0px;
	background-color: #ffffff;
	border-radius: 0px;
}
div.day-calendar table tr:first-child th {
	background-color: #e5e5e5;
}
div.mtssb-daily-action {
	display: none;
}
div#booking-form fieldset {
	position: relative;
	width: auto;
	font-size: 0em;
	line-height: 0px;
	border: none;
	padding: 0px;
	border: none;
	margin-bottom: 80px;
	padding: 0px;
}
div#booking-form fieldset legend {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	position: static;
	width: 100%;
	height: 50px;
	font-size: 1rem;
	font-weight: 500;
	color: #ffffff;
	padding: 0px;
	background-color: #969696;
}
div#booking-form fieldset table {
	width: 100%;
	border: none;
	border-spacing: 0px;
	margin: 0px;
}
div#booking-form fieldset table :is(th, td) {
	font-size: 1rem;
	line-height: 2rem;
	border: none;
	padding: 0px;
}
div#booking-form fieldset table th {
	width: 140px;
	text-align: left;
	padding-top: 25px;
}
div#booking-form fieldset table th label span.required {
	font-size: 0px;
	color: #000000;
}
div#booking-form fieldset table th label span.required::before {
	font-size: 1rem;
	content: "必須";
}
div#booking-form fieldset table td {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding-top: 20px;
}
div#booking-form fieldset table tr:first-child td,
div#booking-form fieldset table td:has(input:is([type=radio], [type=checkbox])) {
	padding-top: 25px;
}
div#booking-form fieldset table td input[type=text] {
	display: block;
	width: 100%;
	margin-bottom: 0px;
	padding: 0px 10px;
}
div#booking-form fieldset table td textarea {
	width: 100%;
	resize: none;
	padding: 10px;
}
div#booking-form fieldset table td select {
	display: block;
	box-sizing: border-box;
	width: 100%;
	padding: 0px 40px 0px 10px;
}
div#booking-form fieldset table td div.input-number {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	float: none;
	width: calc(50% - 10px);
	text-align: left;
	margin-right: 0px;
}
div#booking-form fieldset table td div.input-number:not(:last-child) {
	margin-right: 20px;
}
div#booking-form fieldset table td div.input-number label {
	width: 50px;
	margin-bottom: 0px;
}
div#booking-form fieldset table td div.input-number select {
	width: calc(100% - 50px);
}
div#booking-form fieldset table td label.booking-seimei {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 50px;
	margin-bottom: 0px;
}
div#booking-form fieldset table td input:is(#booking-sei, #booking-mei, #booking-sei_kana, #booking-mei_kana) {
	width: calc(50% - 60px);
}
div#booking-form fieldset table td input:is(#booking-sei, #booking-sei_kana) {
	margin-right: 20px;
}
div#booking-form fieldset#booking-reservation-fieldset table tr:first-child :is(th, td),
div#booking-form fieldset#booking-confirm-fieldset table tr:first-child :is(th, td) {
	vertical-align: top;
}
div#booking-form fieldset#booking_client-fieldset {
	margin-bottom: 0px;
}
div#booking-form fieldset#booking-option-fieldset legend {
	display: none;
}
div#booking-form fieldset#booking-message-fieldset table th {
	vertical-align: top;
	padding-top: 20px;
}
div#booking-form label.field-item {
	margin-right: 20px;
	padding: 5px 0px;
}
div#booking-form div.error-message {
	text-align: left;
	font-size: 0.875rem;
	line-height: 25px;
	color: #0000ff;
	padding-top: 5px;
}
div#booking-form div#action-button {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
div#booking-form div#action-button :is(p.button-back, div.button-wrapper) {
	width: calc(50% - 20px);
}
div#booking-form div#action-button p.button-back {
	margin-left: 0px;
	margin-right: 20px;
	padding-top: 0px;
}
div#booking-form fieldset#booking-confirm-fieldset table :is(th, td) {
	display: table-cell;
	border-bottom: 1px solid #969696;
	padding: 40px 0px;
}
div#booking-form fieldset#booking-confirm-fieldset table td div.input-number {
	display: inline-block;
	width: auto;
}
div#booking-form fieldset#booking-confirm-fieldset table td div.input-number br {
	display: none;
}
div#booking-form fieldset#booking-confirm-fieldset table tr:has(.option-confirm-header),
div#booking-form fieldset#booking-confirm-fieldset table tr#confirmation-booking-message-title {
	display: none;
}
div#booking-form div.error-message {
	font-size: 0.875rem;
	color: #0000ff;
}
main section#visit {
	background-color: #ffffff;
}
main section#visit div.header,
main section#visit div.header p.description:not(:last-child) {
	margin-bottom: 80px;
}
main section#visit:has(div.day-calendar) div.header {
	display: none;
}
main section#visit div.header h3 {
	display: block;
	font-size: 1.25rem;
	border-bottom: 1px solid #969696;
	margin-bottom: 20px;
	padding-bottom: 10px;
}

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

main section.form {
	background-color: #ffffff;
}
main section.form div.header {
	margin-bottom: 80px;
}
main section.form div.mw_wp_form_preview div.header {
	display: none;
}
main section.form div.form h3 {
	font-size: 1.25rem;
	border-bottom: 1px solid #969696;
	margin-bottom: 80px;
	padding-bottom: 10px;
}
main section.form div.mw_wp_form_preview div.form h3 {
	display: none;
}
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.mw_wp_form_preview div.form div.component {
	border-bottom: 1px solid #969696;
	margin-bottom: 0px;
	padding: 40px 0px;
}
main section.form div.mw_wp_form_preview div.form div.component:first-child {
	border-top: 1px solid #969696;
}
main section.form div.form div.component-event {
	display: none;
}
main section.form div.form div.component p.label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	width: 140px;
	height: 50px;
}
main section.form div.form div.component-radio-checkbox p.label {
	height: auto;
}
main section.form div.mw_wp_form_preview div.form div.component p.label {
	display: block;
	height: auto;
}
main section.form div.form div.component div.body {
	width: calc(100% - 140px);
}
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 :is(input:is([type=text], [type=email]), select, textarea) {
	width: 100%;
}
main section.form div.form div.component div.body :is(span.mwform-radio-field, span.mwform-checkbox-field),
main section.form div.form div.component div.body :is(span.mwform-radio-field, span.mwform-checkbox-field) > label {
	display: block;
}
main section.form div.form div.component-radio-checkbox div.body :is(span.mwform-radio-field, span.mwform-checkbox-field) {
	margin: 0px 0px 5px 0px;
}
main section.form div.form div.component-horizontal div.body :is(span.mwform-radio-field, span.mwform-checkbox-field):not(:last-of-type) {
	margin-right: 30px;
}
main section.form div.form div:is(.component-name-furigana, .component-number) div.body {
	justify-content: space-between;
}
main section.form div.form div:is(.component-name-furigana, .component-number) div.body div.row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: calc(50% - 10px);
}
main section.form div.form div:is(.component-name-furigana, .component-number) div.body div.row p.prefix {
	width: 50px;
}
main section.form div.form div.component-name-furigana div.body div.row input[type=text],
main section.form div.form div.component-number div.body div.row select {
	width: calc(100% - 50px);
}
main section.form div.mw_wp_form_preview div.form div.component div.body input.flatpickr-input {
	display: none;
}
main section.form div.form :is(div.component div.body, div.agreement) span.error {
	font-size: 0.875rem;
	line-height: 25px;
	color: #0000ff;
}
main section.form div.form div.component div.body span.error {
	width: 100%;
	padding-top: 5px;
}
main section.form div.form div.action {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main section.form div.form div.action div.button-wrapper {
	width: calc(50% - 20px);
}
main section.form div.form div.action:not(:has(button[name=send])) div.button-wrapper {
	width: 100%;
}
main section.form div.form div.action div.button-wrapper:has(button[name=submitBack]) button,
main section.form div.form div.action div.button-wrapper:has(button[name=submitBack]) button span.arrow-wrapper {
	background-color: #969696;
}
main section.form div.form div.action div.button-wrapper:has(button[name=submitBack]) button span.arrow-wrapper {
	transform: scaleX(-1);
}
main section.form div.form div.action div.button-wrapper:empty {
	display: none;
}
main section#contact div#contact-form {
	display: none;
}
main section#thanks {
	background-color: #ffffff;
}
main section#thanks h2 {
	font-family: "Montserrat", sans-serif;
	font-size: 3.5rem;
	font-weight: 500;
	line-height: 4rem;
	margin-bottom: 20px;
}



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

footer#footer {
	position: relative;
	z-index: 1;
	color: #ffffff;
	background-color: #969696;
}
footer#footer div.inner-footer {
	width: 1040px;
	margin: 0px auto;
	padding: 120px 0px 40px 0px;
}
footer#footer div.logo-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 80px;
}
footer#footer div.logo-text p.logo {
	width: 400px;
	transform: translateX(-80px);
}
footer#footer div.logo-text p.logo img {
	width: 100%;
}
footer#footer div.logo-text div.text {
	display: flex;
	flex-wrap: wrap;
	width: calc(100% - 480px);
	border-bottom: 1px solid #ffffff;
	padding-bottom: 80px;
}
footer#footer div.logo-text div.text nav.navi {
	width: 240px;
}
footer#footer div.logo-text div.text nav.navi ul li {
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
}
footer#footer div.logo-text div.text nav.navi ul li:not(:last-child) {
	margin-bottom: 10px;
}
footer#footer div.logo-text div.text div.information {
	position: relative;
	width: calc(100% - 240px);
}
footer#footer div.logo-text div.text div.information :is(h3, p.tel) {
	margin-bottom: 40px;
}
footer#footer div.logo-text div.text div.information h3 {
	font-size: 1.5rem;
}
footer#footer div.logo-text div.text div.information div.sns {
	position: absolute;
	left: 0px;
	bottom: 0px;
}
footer#footer p.copyright {
	text-align: center;
	font-family: "Montserrat", sans-serif;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.25rem;
}
