/* --------------------------------------------------------------------------------
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: "Inter", "Noto Sans JP", sans-serif;
	font-size: 1.0625rem;
	font-weight: 500;
	font-feature-settings: "palt";
	line-height: 2.125rem;
	color: #000000;
	letter-spacing: 0.025em;
	background-color: #f4f0e9;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a.underline {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.1em;
}
a.color {
	transition: 0.375s color ease;
}
a.color:hover {
	color: #988c82;
}
a.disable {
	pointer-events: none;
}
h1 {
	font-size: 1.5625rem;
	line-height: 2.25rem;
}
h2 {
	font-size: 1.375rem;
}
h3 {
	font-size: 1.25rem;
}
h4,
h5,
h6 {
	font-size: 1.0625rem;
}
p.note {
	font-size: 0.9375rem;
	line-height: 1.625rem;
}
p:empty:before {
	content: none;
}
span.required {
	color: #b94000;
}
*.indent {
	text-indent: -1em;
	padding-left: 1em;
}



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

label {
	display: inline-block;
	vertical-align: text-top;
}
input:where([type=text], [type=email], [type=number], [type=password], [type=search], [type=button], [type=submit]),
button,
textarea,
select,
label.checkbox input[type=checkbox] + span,
label.file div.alternate p.button-file {
	border-radius: 5px;
}
input:where([type=text], [type=email], [type=number], [type=password], [type=search], [type=button], [type=submit]),
button,
textarea,
select {
	max-width: 100%;
	font-family: "Inter", "Noto Sans JP", sans-serif;
	font-size: 1.0625rem;
	font-weight: 300;
	outline: none;
	appearance: none;
}
input:where([type=text], [type=email], [type=number], [type=password], [type=search]),
textarea,
select,
:where(label.radio input[type=radio], label.checkbox input[type=checkbox]) + span {
	border: none;
	background-color: #ffffff;
}
input:where([type=text], [type=email], [type=number], [type=password], [type=search]),
textarea,
select {
	vertical-align: top;
	color: #000000;
}
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,
label.file div.alternate p.button-file {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	height: 60px;
	font-weight: 500;
	line-height: 1.25rem;
	color: #ffffff;
	border: none;
	cursor: pointer;
	padding: 0px 30px;
	background-color: #988c82;
	border-radius: 30px;
	transition: 0.375s background-color ease;
}
input:where([type=button], [type=submit]):hover,
button:hover,
label.file div.alternate p.button-file:hover {
	background-color: #000000;
}
input:where([type=button], [type=submit]),
button {
	width: 260px;
}
button i.icon,
label.file div.alternate p.button-file i.icon {
	position: absolute;
	right: 30px;
	top: calc(50% - 10px);
	font-size: 1.25rem;
	font-weight: 400;
	transition: 0.375s transform ease;
}
button:hover i.icon,
label.file div.alternate p.button-file:hover i.icon {
	transform: translateX(3px);
}
input:where([type=radio], [type=checkbox]),
:where(label.radio input[type=radio], label.checkbox input[type=checkbox]) + span {
	width: 25px;
	height: 25px;
}
label:where(.radio, .checkbox),
input:where([type=radio], [type=checkbox]) {
	margin-right: 5px;
}
label.radio input[type=radio],
label.checkbox input[type=checkbox],
label.file input[type=file] {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
}
:where(label.radio input[type=radio], label.checkbox input[type=checkbox]) + span {
	display: block;
	position: relative;
	cursor: pointer;
}
:where(label.radio input[type=radio], label.checkbox input[type=checkbox]) + span::before {
	position: absolute;
	content: "";
	opacity: 0;
	transition: 0.375s opacity ease;
}
:where(label.radio input[type=radio], label.checkbox input[type=checkbox]):checked + span::before {
	opacity: 1;
}
label.radio input[type=radio] + span,
label.radio input[type=radio] + span::before {
	border-radius: 50%;
}
label.radio 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: #000000;
}
label.checkbox 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 #000000;
	border-bottom: 2px solid #000000;
	transform: translate(-1px, -3px) rotate(45deg);
}
label.file {
	display: block;
}
label.file div.alternate {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding-right: 20px;
}
label.file div.alternate p:where(.button-file, .button-clear) {
	cursor: pointer;
}
label.file div.alternate p.button-file {
	width: 160px;
}
label.file div.alternate p.button-clear {
	display: none;
	position: absolute;
	width: 20px;
	height: 50px;
	right: 0px;
	top: 0px;
}
label.file.selected div.alternate p.button-clear {
	display: block;
}
label.file div.alternate p.button-clear::before,
label.file div.alternate p.button-clear::after {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	top: calc(50% - 1px);
	border-bottom: 2px solid #000000;
	content: "";
}
label.file div.alternate p.button-clear::before {
	transform: rotate(45deg);
}
label.file div.alternate p.button-clear::after {
	transform: rotate(-45deg);
}
label.file div.alternate p.name {
	width: calc(100% - 170px);
}
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: #aaa29b;
}
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-arrow::before {
	content: "\e900";
}
i.icon-new-window::before {
	content: "\e901";
}
i.icon-instagram::before {
	content: "\e902";
}
i.icon-business-01::before {
	content: "\e903";
}
i.icon-business-02::before {
	content: "\e904";
}
i.icon-business-03::before {
	content: "\e905";
}
i.icon-business-04::before {
	content: "\e906";
}



/* --------------------------------------------------------------------------------
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 #aaa29b;
	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: 50svh;
	pointer-events: none;
}
span.button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 25px;
	color: #988c82;
	border: 1px solid #988c82;
	border-radius: 12.5px;
	transition: 0.375s color ease, 0.375s border-color ease, 0.375s background-color ease;
}
span.button i.icon {
	font-size: 1.25rem;
	font-weight: 400;
}
span.button-reverse {
	color: #ffffff;
	background-color: #988c82;
}
p.instagram {
	font-size: 1.375rem;
}
div.banner-origin a {
	display: block;
	position: relative;
	height: 160px;
	overflow: hidden;
	border-radius: 5px;
}
div.banner-origin p.image {
	height: 100%;
}
div.banner-origin p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
div.banner-origin div.text {
	position: absolute;
	left: 30px;
	top: calc(50% - 30px);
}
div.banner-origin div.text p.sub {
	font-family: "Ysabeau", sans-serif;
	font-size: 0.9375rem;
	line-height: 20px;
	margin-bottom: 10px;
}
div.banner-origin div.text h3 {
	font-size: 1.0625rem;
	font-weight: 600;
}
div.banner-origin span.button {
	position: absolute;
	right: 30px;
	top: calc(50% - 12.5px);
	color: #000000;
	border-color: #000000;
}
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.875);
}
*.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: 20;
	bottom: 20px !important;
}



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

header#header :where(*#logo, p#button-menu, div#menu, div#background-menu),
header#header > div.banner-origin {
	position: fixed;
}
header#header *#logo,
header#header > div.banner-origin {
	z-index: 20;
}
header#header *#logo {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	left: 25px;
	top: 25px;
}
body.admin-bar header#header *#logo {
	top: 57px;
}
header#header *#logo img {
	width: 200px;
}
header#header > div.banner-origin {
	width: 200px;
	right: 110px;
	top: 25px;
	z-index: 20;
}
body.admin-bar header#header > div.banner-origin {
	top: 57px;
}
header#header > div.banner-origin a {
	height: 50px;
	padding: 5px;
	background-color: #e1d9ce;
	transition: 0.375s color ease, 0.375s background-color ease;
}
header#header > div.banner-origin a:hover {
	color: #ffffff;
	background-color: #988c82;
}
header#header > div.banner-origin p.image {
	width: 80px;
}
header#header > div.banner-origin div.text {
	left: 95px;
	top: calc(50% - 10px);
}
header#header > div.banner-origin div.text h3 {
	display: none;
}
header#header > div.banner-origin span.button {
	width: 25px;
	height: 12.5px;
	right: 10px;
	top: calc(50% - 6.25px);
	border-radius: 0.625rem;
}
header#header > div.banner-origin a:hover span.button {
	color: #ffffff;
	border-color: #ffffff;
}
header#header > div.banner-origin span.button i.icon {
	font-size: 0.625rem;
	font-weight: 600;
}
header#header p#button-menu {
	width: 60px;
	height: 60px;
	right: 20px;
	top: 20px;
	z-index: 40;
	cursor: pointer;
}
body.admin-bar header#header p#button-menu {
	top: 52px;
}
header#header p#button-menu i {
	display: block;
	position: absolute;
	width: 35px;
	height: 0px;
	left: calc(50% - 17.5px);
	top: calc(50% - 0.5px);
	border-bottom: 1px solid #000000;
	transition: 0.375s all ease;
}
header#header p#button-menu i:nth-child(1) {
	transform: translateY(-10px);
}
header#header p#button-menu i:nth-child(2) {
	transform: translateY(10px);
}
div.menu-header header#header p#button-menu i:nth-child(-n+3) {
	width: 0px;
	left: 50%;
	opacity: 0;
	transform: translateY(0px);
}
div.menu-header header#header p#button-menu i:nth-child(4) {
	transform: rotate(30deg);
}
div.menu-header header#header p#button-menu i:nth-child(5) {
	transform: rotate(-30deg);
}
header#header div#menu {
	width: 500px;
	height: 100%;
	right: 0px;
	top: 0px;
	overflow: auto;
	z-index: 30;
	background-color: #f4f0e9;
	transform: translateX(100%);
	transition: 0.375s transform ease;
	-webkit-overflow-scrolling: touch;
}
div.menu-header header#header div#menu {
	transform: translateX(0%);
}
header#header div#menu::-webkit-scrollbar {
	display: none;
}
header#header div#menu div.inner-menu {
	padding: 120px 40px 40px 40px;
}
header#header div#menu nav#navi {
	position: relative;
}
header#header div#menu nav#navi div.main {
	margin-bottom: 30px;
}
header#header div#menu nav#navi div.main div.list div.row {
	border-bottom: 1px dashed #988c82;
	padding: 25px 0px;
}
header#header div#menu nav#navi div.main div.list div.row a {
	display: block;
	padding-left: 30px;
}
header#header div#menu nav#navi div.main div.list div.row p.sub {
	font-family: "Ysabeau", sans-serif;
	font-size: 0.9375rem;
	color: #988c82;
}
header#header div#menu nav#navi div.main div.list div.row h3 {
	font-size: 1.25rem;
	font-weight: 600;
}
header#header div#menu nav#navi div.main div.list div.row-business a {
	padding-left: 30px;
}
header#header div#menu nav#navi div.main div.list div.row-business a:not(:last-child) {
	margin-bottom: 15px;
}
header#header div#menu nav#navi div.main div.list div.row-business :where(h3, p.sub-alternate) {
	padding-left: 20px;
}
header#header div#menu nav#navi div.main div.list div.row-business h3 {
	position: relative;
	line-height: 1.5rem;
}
header#header div#menu nav#navi div.main div.list div.row-business a:first-child h3 {
	font-size: 1.0625rem;
}
header#header div#menu nav#navi div.main div.list div.row-business a:not(:first-child) h3 {
	font-family: "Ysabeau", "Noto Sans JP", sans-serif;
}
header#header div#menu nav#navi div.main div.list div.row-business h3 span {
	display: inline-block;
	font-size: 1.5625rem;
	font-weight: 400;
	line-height: 1.5625rem;
	transform: translateY(-4px);
}
header#header div#menu nav#navi div.main div.list div.row-business h3::before {
	position: absolute;
	aspect-ratio: 1;
	width: 6px;
	left: 4px;
	background-color: #000000;
	content: "";
	border-radius: 50%;
}
header#header div#menu nav#navi div.main div.list div.row-business a:first-child h3::before {
	top: 9px;
}
header#header div#menu nav#navi div.main div.list div.row-business a:not(:first-child) h3::before {
	top: 12px;
}
header#header div#menu nav#navi div.main div.list div.row-business p.sub-alternate {
	font-size: 0.9375rem;
}
header#header div#menu nav#navi div.sub {
	margin-bottom: 40px;
}
header#header div#menu nav#navi div.sub ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-right: 80px;
}
header#header div#menu nav#navi div.sub ul li {
	font-family: "Ysabeau", sans-serif;
	font-size: 0.9375rem;
}
header#header div#menu nav#navi div.sub ul li:not(:last-child) {
	margin-right: 50px;
}
header#header div#menu nav#navi p.instagram {
	position: absolute;
	right: 30px;
	bottom: 0px;
}
header#header div#menu div.misc {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
header#header div#menu div.misc p {
	font-size: 0.8125rem;
	font-weight: 300;
	line-height: 1.25rem;
	color: #988c82;
}
header#header div#menu div.misc p.privacy-policy a.color:hover {
	color: #000000;
}
header#header div#background-menu {
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 20;
	pointer-events: none;
	background-color: #000000;
	opacity: 0;
	transition: 0.375s opacity ease;
}
div.menu-header header#header div#background-menu {
	pointer-events: auto;
	opacity: 0.125;
}

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

body.home header#header *#logo {
	pointer-events: none;
	opacity: 0;
}



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

div#cover {
	position: fixed;
	width: calc(100% - 500px);
	height: 100lvh;
	left: 0px;
	top: 0px;
}
body.admin-bar div#cover {
	height: calc(100lvh - 32px);
	top: 32px;
}
div#cover p.image {
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
div#cover p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
div#cover h2 {
	position: absolute;
	left: 100px;
	top: 60px;
	z-index: 10;
	writing-mode: vertical-rl;
	white-space: pre;
	font-size: 1.875rem;
	font-weight: 600;
	color: #ffffff;
	letter-spacing: 0.075em;
}



/* --------------------------------------------------------------------------------
breadcrumb
-------------------------------------------------------------------------------- */

div#breadcrumb {
	position: absolute;
	left: 80px;
	top: 120px;
	z-index: 20;
}
div#breadcrumb p {
	font-size: 0.625rem;
	line-height: 0.625rem;
	color: #988c82;
}
div#breadcrumb p span:not(:last-child) {
	position: relative;
	margin-right: 40px;
}
div#breadcrumb p span:not(:last-child)::before {
	position: absolute;
	width: 30px;
	right: -35px;
	top: 5px;
	border-bottom: 1px solid #988c82;
	content: "";
}

/* origin
-------------------------------------------------------------------------------- */

body.origin div#breadcrumb p {
	color: #ffffff;
}
body.origin div#breadcrumb p span:not(:last-child)::before {
	border-color: #ffffff;
}



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

div#title {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	width: 860px;
	height: 180px;
	margin: 0px auto;
}
div#title h1 {
	font-family: "Ysabeau", sans-serif;
	font-size: 1.75rem;
	font-weight: 400;
	color: #988c82;
}



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

main,
main section,
main section div.inner-section {
	position: relative;
}
main {
	z-index: 10;
}
main section div.inner-section {
	width: 860px;
	margin: 0px auto;
	padding: 120px 0px;
}
main ul.bullet li,
main article.common div.body ul li {
	position: relative;
	padding-left: 20px;
}
main ul.bullet li::before,
main article.common div.body ul li::before {
	position: absolute;
	aspect-ratio: 1;
	width: 6px;
	left: 4px;
	top: 14px;
	background-color: #000000;
	content: "";
	border-radius: 50%;
}
main ol.decimal,
main article.common div.body ol {
	padding-left: 20px;
}
main ol.decimal li,
main article.common div.body ol li {
	list-style-type: decimal;
}
main article.common div.body a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.1em;
}
main article.common div.body > *:not(:last-child),
main article.common div.body blockquote > *:not(:last-child) {
	margin-bottom: 20px;
}
main article.common div.body :where(h1, h2, h3, h4, h5, h6, strong) {
	font-weight: 600;
}
main article.common div.body em {
	font-style: italic;
}
main article.common div.body blockquote {
	padding: 20px;
	background-color: #ffffff;
	border-radius: 5px;
}
main article.common div.body table {
	width: 100%;
}
main article.common div.body table :where(th, td) {
	border: 1px solid #aaa29b;
	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 :where(div#pager, nav#navi-article) {
	margin-top: 80px;
}
main div#pager,
main nav#navi-article ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	font-family: "Ysabeau", sans-serif;
	font-size: 0.9375rem;
	line-height: 25px;
}
main div#pager {
	margin-bottom: -10px;
}
main div#pager :where(span.current, a) {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1;
	width: 30px;
	border-radius: 50%;
	transition: 0.375s color ease, 0.375s background-color ease;
}
main div#pager :where(span.current, a:hover) {
	color: #ffffff;
	background-color: #988c82;
}
main div#pager :where(span.current, a) {
	margin: 0px 10px 10px 10px;
}
main nav#navi-article {
	border-top: 1px solid #aaa29b;
	padding-top: 40px;
}
main nav#navi-article ul {
	position: relative;
}
main nav#navi-article ul li a {
	display: block;
	position: relative;
	transition: 0.375s color ease;
}
main nav#navi-article ul li a:hover {
	color: #988c82;
}
main nav#navi-article ul li:where(.prev, .next) {
	position: absolute;
	top: 0px;
}
main nav#navi-article ul li.prev {
	left: 0px;
}
main nav#navi-article ul li.prev a {
	padding-left: 60px;
}
main nav#navi-article ul li:where(.prev, .next) span.button {
	position: absolute;
	top: 0px;
}
main nav#navi-article ul li.prev span.button {
	left: 0px;
	transform: scaleX(-1);
}
main nav#navi-article ul li.next {
	right: 0px;
}
main nav#navi-article ul li.next a {
	padding-right: 60px;
}
main nav#navi-article ul li.next span.button {
	right: 0px;
}

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

main section#home-menu {
	width: 500px;
	margin-left: auto;
	background: linear-gradient(180deg, #f2efec 0%, #fffbe0 62.5%, #ffede3 100%);
}
main section#home-menu div.inner-section {
	width: auto;
	padding: 0px 40px 40px 40px;
}
main section#home-menu header {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 100svh;
	margin-bottom: 40px;
}
body.admin-bar main section#home-menu header {
	height: calc(100svh - 32px);
}
main section#home-menu header h1 img {
	width: calc(200px * 1.5);
}
main section#home-menu header p.line {
	position: absolute;
	width: 1px;
	height: 80px;
	left: calc(50% - 0.5px);
	bottom: 0px;
	overflow: hidden;
	transition: 0.375s opacity ease;
}
div.scroll main section#home-menu header p.line {
	opacity: 0;
}
main section#home-menu header p.line::before,
main section#home-menu header p.line::after {
	position: absolute;
	width: 1px;
	height: 100%;
	left: 0px;
	top: 0px;
	content: "";
}
main section#home-menu header p.line::before {
	background-image: repeating-linear-gradient(to bottom, #988c82 0px, #988c82 1px, transparent 1px, transparent 3px);
}
main section#home-menu header p.line::after {
	border-right: 1px solid #988c82;
	animation: home-menu 2.5s linear infinite forwards;
}
@keyframes home-menu {
	0% { transform: translateY(-100%); }
	33.33% { transform: translateY(0%); }
	66.66% { transform: translateY(100%); }
	100% { transform: translateY(100%); }
}
main section#home-menu p.logo {
	margin-bottom: 80px;
}
main section#home-menu p.logo img {
	width: 200px;
}
main section#home-menu nav#navi-home {
	position: relative;
}
main section#home-menu nav#navi-home div.main {
	margin-bottom: 30px;
}
main section#home-menu nav#navi-home div.main div.list div.row {
	border-bottom: 1px dashed #988c82;
	padding: 25px 0px;
}
main section#home-menu nav#navi-home div.main div.list div.row a {
	display: block;
	position: relative;
	padding-left: 30px;
}
main section#home-menu nav#navi-home div.main div.list div.row p.sub {
	font-family: "Ysabeau", sans-serif;
	font-size: 0.9375rem;
	color: #988c82;
}
main section#home-menu nav#navi-home div.main div.list div.row h3 {
	font-size: 1.25rem;
	font-weight: 600;
}
main section#home-menu nav#navi-home div.main div.list div.row span.button {
	position: absolute;
	right: 30px;
	bottom: 5px;
	color: #988c82;
	border-color: #988c82;
}
main section#home-menu nav#navi-home div.main div.list div.row-business {
	padding-bottom: 40px;
}
main section#home-menu nav#navi-home div.main div.list div.row-business p.sub {
	margin-bottom: 10px;
}
main section#home-menu nav#navi-home div.main div.list div.row-business div.list-inner div.row-inner:not(:last-child) {
	margin-bottom: 10px;
}
main section#home-menu nav#navi-home div.main div.list div.row-business div.list-inner div.row-inner a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	height: 110px;
	padding: 0px 30px;
	background-color: #ffffff;
	border-radius: 55px;
	transition: 0.375s color ease, 0.375s background-color ease;
}
main section#home-menu nav#navi-home div.main div.list div.row-business div.list-inner div.row-inner a:hover {
	background-color: #e1d9ce;
}
main section#home-menu nav#navi-home div.main div.list div.row-business div.list-inner div.row-inner span.button {
	position: absolute;
	right: 27.5px;
	top: calc(50% - 12.5px);
}
main section#home-menu nav#navi-home div.main div.list div.row-business div.list-inner div.row-inner p.icon {
	width: 65px;
	font-size: 3rem;
	font-weight: 400;
	color: #988c82;
}
main section#home-menu nav#navi-home div.main div.list div.row-business div.list-inner div.row-inner div.text {
	width: calc(100% - 65px);
}
main section#home-menu nav#navi-home div.main div.list div.row-business div.list-inner div.row-inner div.text h3 {
	font-family: "Ysabeau", "Noto Sans JP", sans-serif;
	font-size: 1.25rem;
	line-height: 1.5rem;
}
main section#home-menu nav#navi-home div.main div.list div.row-business div.list-inner div.row-inner:first-child div.text h3 {
	font-family: "Inter", "Noto Sans JP", sans-serif;
	padding-top: 5px;
}
main section#home-menu nav#navi-home div.main div.list div.row-business div.list-inner div.row-inner div.text h3 span {
	display: inline-block;
	font-size: 1.5625rem;
	font-weight: 400;
	line-height: 1.5625rem;
	transform: translateY(-4px);
}
main section#home-menu nav#navi-home div.main div.list div.row-business div.list-inner div.row-inner div.text p.sub-alternate {
	font-size: 0.9375rem;
}
main section#home-menu nav#navi-home div.sub {
	margin-bottom: 40px;
}
main section#home-menu nav#navi-home div.sub ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-right: 80px;
}
main section#home-menu nav#navi-home div.sub ul li {
	font-family: "Ysabeau", sans-serif;
	font-size: 0.9375rem;
}
main section#home-menu nav#navi-home div.sub ul li:not(:last-child) {
	margin-right: 50px;
}
main section#home-menu nav#navi-home p.instagram {
	position: absolute;
	right: 30px;
	bottom: 0px;
}
main section#home-menu div.misc {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
main section#home-menu div.misc p {
	font-size: 0.8125rem;
	font-weight: 300;
	line-height: 1.25rem;
	color: #988c82;
}
main section#home-menu div.misc p.privacy-policy a.color:hover {
	color: #000000;
}

/* origin
-------------------------------------------------------------------------------- */

main div#origin-background,
main div#origin-background p.row {
	width: 100%;
	left: 0px;
	top: 0px;
}
main div#origin-background {
	position: fixed;
	height: 100lvh;
}
div.footer main div#origin-background {
	position: absolute;
	top: auto;
	bottom: 0px;
}
main div#origin-background p.row {
	position: absolute;
	height: 100lvh;
	opacity: 0;
	transition: 0.375s opacity ease-in-out;
}
main div#origin-background p.row.active {
	opacity: 1;
}
main div#origin-background p.row img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#origin div.inner-section {
	width: auto;
}
main section#origin div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 100svh;
	color: #ffffff;
	opacity: 0;
	transition: 0.375s color ease;
}
main section#origin.background-06 div.list div.row {
	color: #000000;
}
main section#origin div.list div.row p {
	font-size: 1.25rem;
	line-height: 3.25rem;
}
main section#origin div.list div.row p:not(:last-child) {
	margin-bottom: 80px;
}
main section#origin div.list div.row:nth-child(2n+1) p:nth-child(1),
main section#origin div.list div.row:nth-child(2n) p:nth-child(2) {
	transform: translateX(-30px);
}
main section#origin div.list div.row:nth-child(2n+1) p:nth-child(2),
main section#origin div.list div.row:nth-child(2n) p:nth-child(1) {
	transform: translateX(30px);
}
main section#origin div.list div.row:where(:nth-child(1), :nth-child(5)) div.inner-row {
	transform: translate(30px, -30px);
}
main section#origin div.list div.row:where(:nth-child(2), :nth-child(6)) div.inner-row {
	transform: translate(-30px, 30px);
}
main section#origin div.list div.row:nth-child(3) div.inner-row {
	transform: translate(30px, 30px);
}
main section#origin div.list div.row:nth-child(4) div.inner-row {
	transform: translate(-30px, -30px);
}
main section#origin :where(div.navi, p.number) {
	position: fixed;
}
main section#origin div.navi {
	width: calc(100% - 80px);
	left: 40px;
	bottom: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	font-family: "Ysabeau", sans-serif;
	font-size: 0.9375rem;
	line-height: 25px;
}
div.footer main section#origin div.navi {
	position: absolute;
}
main section#origin div.navi p {
	color: #ffffff;
}
main section#origin div.navi p a {
	display: block;
}
main section#origin div.navi p a.color:hover,
main section#origin.background-06 div.navi p a.color {
	color: #000000;
}
main section#origin:where(.background-05, .background-06) div.navi p a.color:hover {
	color: #988c82;
}
main section#origin div.navi p.button {
	position: absolute;
	bottom: 0px;
}
main section#origin div.navi p.button span.button {
	position: absolute;
	bottom: 0px;
	color: #ffffff;
	border-color: #ffffff;
	transition: 0.375s color ease, 0.375s border-color ease;
}
main section#origin div.navi p.button a:hover span.button,
main section#origin.background-06 div.navi p.button span.button {
	color: #000000;
	border-color: #000000;
}
main section#origin:where(.background-05, .background-06) div.navi p.button a:hover span.button {
	color: #988c82;
	border-color: #988c82;
}
main section#origin div.navi p.button-prev {
	left: 0px;
}
main section#origin div.navi p.button-prev a {
	padding-left: 60px;
}
main section#origin div.navi p.button-prev span.button {
	left: 0px;
	transform: scaleX(-1);
}
main section#origin div.navi p.button-next {
	right: 0px;
}
main section#origin div.navi p.button-next a {
	padding-right: 60px;
}
main section#origin div.navi p.button-next span.button {
	right: 0px;
}
main section#origin p.number {
	width: 20px;
	height: 80px;
	right: 40px;
	top: calc(50% - 40px);
	font-size: 0.8125rem;
	line-height: 1.25rem;
	color: #ffffff;
	transition: 0.375s color ease, 0.375s opacity ease;
}
 main section#origin.background-06 p.number {
	color: #000000;
}
div.footer main section#origin p.number {
	opacity: 0;
}
main section#origin p.number::before {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	top: calc(50% - 0.5px);
	border-bottom: 1px solid #ffffff;
	content: "";
	transition: 0.375s border-color ease;
}
main section#origin.background-06 p.number::before {
	border-color: #000000;
}
main section#origin p.number span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 50%;
}

/* about
-------------------------------------------------------------------------------- */

main section#about div.background {
	position: absolute;
	width: 100%;
	height: calc(100% - 120px);
	left: 0px;
	top: 120px;
}
main section#about div.background img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#about div.inner-section {
	padding: 320px 0px;
}
main section#about header,
main section#about div.description {
	margin-bottom: 80px;
}
main section#about header h2 {
	font-size: 2.25rem;
	line-height: 3.5rem;
	font-weight: 600;
}
main section#about div.description p.row:not(:last-child) {
	margin-bottom: 2.125rem;;
}
main section#about p.name {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	margin-bottom: 160px;
}
main section#about p.name span {
	display: block;
}
main section#about p.name span.sub {
	margin-right: 15px;
}
main section#about p.name span.main {
	font-size: 1.5625rem;
	font-weight: 600;
}
main section#about div.banner div.row:not(:last-child) {
	margin-bottom: 20px;
}
main section#about div.banner div.row a {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	align-items: center;
	padding: 10px 10px 10px 50px;
	background-color: #ffffff;
	border-radius: 5px;
	transition: 0.375s background-color ease;
}
main section#about div.banner div.row a:hover {
	background-color: #e1d9ce;
}
main section#about div.banner div.row p.image {
	width: calc(100% - 280px);
	height: 200px;
}
main section#about div.banner div.row p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#about div.banner div.row div.text {
	width: 280px;
}
main section#about div.banner div.row div.text p.sub {
	font-family: "Ysabeau", sans-serif;
	font-size: 0.9375rem;
	color: #988c82;
	margin-bottom: 5px;
}
main section#about div.banner div.row div.text h3 {
	text-align: left;
	font-size: 1.375rem;
	font-weight: 600;
	line-height: 25px;
	margin-bottom: 40px;
}
main section#group-profile {
	background: linear-gradient(180deg, #f2efec 0%, #fffbe0 62.5%, #ffede3 100%);
}
main section#group-profile header {
	margin-bottom: 60px;
}
main section#group-profile header h2 {
	font-family: "Ysabeau", sans-serif;
	font-size: 1.75rem;
	font-weight: 400;
	color: #988c82;
}
main section#group-profile div.list div.row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	line-height: 1.5625rem;
	border-bottom: 1px solid #aaa29b;
	padding: 30px 0px;
}
main section#group-profile div.list div.row:first-child {
	border-top: 1px solid #aaa29b;
}
main section#group-profile div.list div.row p.label {
	width: 160px;
}
main section#group-profile div.list div.row div.body {
	width: calc(100% - 160px);
	font-weight: 300;
}
main section#group-profile div.list div.row div.body p:not(:last-child) {
	margin-bottom: 15px;
}

/* history
-------------------------------------------------------------------------------- */

main section#history header {
	margin-bottom: 80px;
}
main section#history header h2 {
	font-size: 2.25rem;
	line-height: 3.5rem;
	font-weight: 600;
}
main section#history div:where(.description, .list):not(:last-child) {
	margin-bottom: 80px;
}
main section#history div.description p.row:not(:last-child) {
	margin-bottom: 2.125rem;;
}
main section#history div.list {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	margin-right: -60px;
	padding-top: 30px;
}
main section#history div.list::before,
main section#history div.list::after {
	position: absolute;
	height: 30px;
	top: 0px;
	content: "";
}
main section#history div.list::before {
	width: 66.66%;
	left: calc(16.66% - 30px);
	border: 1px solid #aaa29b;
	border-bottom: none;
	border-radius: 10px 10px 0px 0px;
}
main section#history div.list::after {
	left: calc(50% - 30.5px);
	border-right: 1px solid #aaa29b;
}
main section#history div.list div.row {
	container-type: inline-size;
	position: relative;
	width: calc(33.33% - 60px);
	text-align: center;
	margin-right: 60px;
}
main section#history div.list div.row::before {
	position: absolute;
	aspect-ratio: 1;
	width: 6px;
	left: calc(50% - 3px);
	top: -3px;
	background-color: #aaa29b;
	content: "";
	border-radius: 50%;
}
main section#history div.list div.row a {
	display: block;
	height: 360px;
	padding-top: 30px;
	background-color: #ffffff;
	border-radius: 50cqw;
	transition: 0.375s background-color ease;
}
main section#history div.list div.row a:hover {
	background-color: #e1d9ce;
}
main section#history div.list div.row p:where(.label, .icon) {
	color: #988c82;
}
main section#history div.list div.row p.label {
	font-family: "Ysabeau", sans-serif;
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.25rem;
	margin-bottom: 10px;
}
main section#history div.list div.row p.label span {
	display: inline-block;
	font-size: 1.375rem;
	font-weight: 300;
}
main section#history div.list div.row p.icon {
	width: 160px;
	font-size: 4.25rem;
	font-weight: 400;
	border-bottom: 1px dashed #988c82;
	margin: 0px auto 20px auto;
	padding-bottom: 10px;
}
main section#history div.list div.row h3 {
	font-family: "Ysabeau", sans-serif;
	font-size: 1.875rem;
	margin-bottom: 15px;
}
main section#history div.list div.row h3 span {
	display: inline-block;
	font-size: 2.125rem;
	line-height: 2.125rem;
	transform: translateY(-6px);
}
main section#history div.list div.row p.sub {
	margin-bottom: 20px;
}
main section#history div.list div.row span.button {
	margin: 0px auto;
}

/* business
-------------------------------------------------------------------------------- */

main section#business header,
main section#business div.block:not(:last-child) {
	margin-bottom: 120px;
}
main section#business div.block {
	position: relative;
}
main section#business div.block div.anchor {
	position: absolute;
	top: -120px;
}
main section#business div.block div.header {
	margin-bottom: 30px;
}
main section#business div.block div.header p.label {
	position: relative;
	font-family: "Ysabeau", sans-serif;
	font-size: 0.9375rem;
	font-weight: 400;
	color: #988c82;
	margin-bottom: 40px;
}
main section#business div.block div.header p.label::before {
	position: absolute;
	width: calc(100% - 115px);
	height: 0px;
	right: 0px;
	top: 20px;
	border-bottom: 1px solid #988c82;
	content: "";
}
main section#business div.block div.header p.label span {
	display: inline-block;
	font-size: 1.5625rem;
	font-weight: 300;
}
main section#business div.block div.header div.headline,
main section#business div.block div.image-text div.text {
	width: calc(100% - 480px);
}
main section#business div.block div.header div.headline {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
main section#business div.block div.header div.headline p.icon {
	width: 85px;
	font-size: 4.25rem;
	font-weight: 400;
	color: #988c82;
}
main section#business div.block div.header div.headline h2 {
	width: calc(100% - 85px);
}
main section#business div.block div.header div.headline h2 span {
	display: block;
	margin-right: -40px;
}
main section#business div.block div.header div.headline h2 span.main {
	font-family: "Ysabeau", sans-serif;
	font-size: 1.875rem;
}
main section#business div.block div.header div.headline h2 span.main i {
	display: inline-block;
	font-size: 2.125rem;
	line-height: 2.125rem;
	transform: translateY(-6px);
}
main section#business div.block div.header div.headline h2 span.sub {
	font-size: 1.0625rem;
}
main section#business div.block div.image-text {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
}
main section#business div.block div.image-text p.image {
	width: 400px;
	margin-top: -100px;
}
main section#business div.block div.image-text div.text {
	font-weight: 300;
}
main section#business div.block div.image-text div.text p.description {
	margin-bottom: 20px;
}
main section#business div.block div.image-text div.text p.information {
	margin-bottom: 10px;
}
main section#business div.block div.list div.row {
	line-height: 1.75rem;
	margin-right: -60px;
}
main section#business div.block div.list div.row:not(:last-child) {
	margin-bottom: 10px;
}
main section#business div.block div.list div.row:has(p.label) {
	display: flex;
	flex-wrap: wrap;
}
main section#business div.block div.list div.row p.label {
	width: 70px;
}
main section#business div.block div.list div.row:has(p.label) p.body {
	width: calc(100% - 70px);
}
main section#business div.block div.links {
	margin-top: -60px;
}
main section#business div.block div.links ul li:not(:last-child) {
	margin-bottom: 10px;
}
main section#business div.block div.links ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
}
main section#business div.block div.links ul li span.text {
	display: block;
	font-size: 0.9375rem;
	line-height: 25px;
	margin-right: 10px;
}

/* column, news
-------------------------------------------------------------------------------- */

main div.list-column {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -80px -80px 0px;
}
main div.list-column div.row {
	width: calc(33.33% - 80px);
	margin: 0px 80px 80px 0px;
}
main div.list-column div.row p.image {
	aspect-ratio: 1;
	margin-bottom: 10px;
}
main div.list-column div.row p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main div:where(.list-column, .list-news) div.row p.created,
main article.common header p.created {
	font-family: "Ysabeau", sans-serif;
	font-size: 1.0625rem;
}
main div.list-column div.row p.created {
	border-bottom: 2px dotted #aaa29b;
	margin-bottom: 10px;
	padding-bottom: 10px;
}
main div:where(.list-column, .list-news) div.row h3 {
	font-size: 1.0625rem;
	line-height: 1.75rem;
	transform: translateY(5px);
}
main div.list-news div.row a {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid #aaa29b;
	padding: 40px 0px;
}
main div.list-news div.row:first-child a {
	border-top: 1px solid #aaa29b;
}
main div.list-news div.row p.created {
	width: 120px;
}
main div.list-news div.row h3 {
	width: calc(100% - 120px);
}
main article.common header {
	border-top: 1px solid #aaa29b;
	margin-bottom: 60px;
	padding-top: 40px;
}
main article.common header p.created {
	margin-bottom: 10px;
}
main article.common header h1 {
	font-size: 1.5625rem;
	line-height: 2.5rem;
}

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

main section.form div.inner-section {
	font-family: "Noto Sans JP", sans-serif;
}
main section.form header {
	margin-bottom: 80px;
}
main section.form header p.description {
	margin-bottom: 40px;
}
main section.form header ul li {
	position: relative;
	font-size: 0.9375rem;
	font-weight: 300;
	line-height: 1.625rem;
	padding-left: 20px;
}
main section.form header ul li::before {
	position: absolute;
	width: 6px;
	height: 0px;
	left: 4px;
	top: 14px;
	border-bottom: 1px solid #000000;
	content: "";
}
main section.form span.wpcf7-list-item {
	margin: 0px;
}
main section.form div.component-wrapper {
	margin-bottom: 80px;
}
main section.form div.component {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	position: relative;
}
main section.form div.component:not(:last-child) {
	margin-bottom: 40px;
}
div:not(.confirm) main section.form div.component-subject {
	display: block;
}
div.confirm main section.form div.component {
	border-bottom: 1px solid #aaa29b;
	margin-bottom: 0px;
	padding: 40px 0px;
}
div.confirm main section.form div.component:first-child {
	border-top: 1px solid #aaa29b;
}
main section.form div.component p.label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	width: 240px;
	height: 50px;
}
main section.form div.component:has(span:where(.wpcf7-radio, .wpcf7-checkbox)) p.label {
	height: auto;
}
div.confirm main section.form div.component p.label {
	display: block;
	height: auto;
}
div:not(.confirm) main section.form div.component-subject p.label {
	margin-bottom: 10px;
}
main section.form div.component p.label span.required {
	font-size: 0.8125rem;
	line-height: 1.25rem;
	color: #b94000;
	margin-left: 5px;
}
div.confirm main section.form div.component p.label span.required {
	display: none;
}
main section.form div.component div.body {
	width: calc(100% - 240px);
	font-weight: 300;
}
div:not(.confirm) main section.form div.component-subject div.body {
	width: auto;
}
main section.form div.component div.body span.wpcf7-form-control-wrap {
	display: block;
}
main section.form div.component-horizontal div.body {
	display: flex;
	flex-wrap: wrap;
}
main section.form div.component div.body span:where(.wpcf7-radio, .wpcf7-checkbox) {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: -10px;
}
main section.form div.component div.body span:where(.wpcf7-radio, .wpcf7-checkbox) span.wpcf7-list-item {
	display: block;
	margin: 0px 0px 10px 0px;
}
main section.form div.component div.body span:where(.wpcf7-radio, .wpcf7-checkbox) span.wpcf7-list-item:not(:last-child) {
	margin-right: 30px;
}
main section.form div.component div.body span:where(.wpcf7-radio, .wpcf7-checkbox) span.wpcf7-list-item > label {
	display: block;
}
main section.form div.component div.body :where(input[type=text], input[type=email], select, textarea) {
	width: 100%;
}
div.confirm main section.form div.component div.body :where(input[type=text], input[type=email], select, textarea) {
	field-sizing: content;
	height: auto;
	border: none;
	pointer-events: none;
	padding: 0px;
	background-color: transparent;
}
div.confirm main section.form div.component div.body select {
	background-image: none;
}
div.confirm main section.form div.component div.body textarea {
	resize: none;
}
div.confirm main section.form div.component div.body span.wpcf7-list-item {
	pointer-events: none;
}
div.confirm main section.form div.component div.body span.wpcf7-list-item:not(:has(input:checked)) {
	display: none;
}
div.confirm main section.form div.component div.body span.wpcf7-list-item label:where(.radio, .checkbox) {
	display: none;
}
div.confirm main section.form label.file {
	pointer-events: none;
}
div.confirm main section.form label.file div.alternate p.button-file {
	display: none;
}
div.confirm main section.form label.file div.alternate p.button-clear {
	display: none;
}
main section.form div.component div.body span.wpcf7-not-valid-tip,
main section.form div.agreement span.wpcf7-not-valid-tip {
	position: absolute;
	left: 0px;
	bottom: -25px;
	font-size: 0.93875rem;
	line-height: 25px;
	color: #b94000;
}
main section.form div.component div.body:has(span:where(.wpcf7-radio, .wpcf7-checkbox)) span.wpcf7-not-valid-tip {
	bottom: -15px;
}
main section.form div.component div.body span.wpcf7-not-valid-tip {
	width: 100%;
}
main section.form div.agreement {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-bottom: 80px;
}
div.confirm main section.form div.agreement {
	display: none;
}
main section.form div.agreement span.wpcf7-list-item,
main section.form div.agreement span.wpcf7-list-item > label {
	display: block;
}
main section.form div.agreement span.wpcf7-list-item {
	margin-right: 5px;
}
main section.form div.agreement span.wpcf7-list-item-label {
	display: none;
}
main section.form div.agreement span.wpcf7-not-valid-tip {
	width: 240px;
}
main section.form div.action {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main section.form div.action :where(input[type=text], input[type=email], button) {
	margin: 0px 10px;
}
main section.form div.action span.wpcf7-spinner {
	display: none;
}
main section.form form.submitting div.action .button-submit {
	pointer-events: none;
}
main section.form div.wpcf7-response-output {
	text-align: center;
	line-height: 1.5rem;
	border: none;
	margin: 40px 0px 0px 0px;
	padding: 10px;
	background-color: #ffffff;
	border-radius: 5px;
}
div.confirm main section.form :where(input[type=button], input[type=submit], button).button-confirm,
main section.form :where(input[type=button], input[type=submit], button):where(.button-back, .button-submit) {
	display: none;
}
div.confirm main section.form :where(input[type=button], input[type=submit], button):where(.button-back, .button-submit) {
	display: flex;
}

/* privacy-policy
-------------------------------------------------------------------------------- */

main section#privacy-policy header,
main section#privacy-policy div.list div.row:not(:last-child) {
	margin-bottom: 80px;
}
main section#privacy-policy div.list div.row h2 {
	position: relative;
	font-size: 1.25rem;
	margin-bottom: 15px;
	padding-left: 30px;
}
main section#privacy-policy div.list div.row h2 span {
	position: absolute;
	left: 0px;
	top: 0px;
}
main section#privacy-policy div.list div.row :where(p, ul) {
	font-weight: 300;
}
main section#privacy-policy div.list div.row :where(p, ul):not(:last-child) {
	margin-bottom: 15px;
}
main section#privacy-policy div.list div.row ul li {
	position: relative;
	padding-left: 20px;
}
main section#privacy-policy div.list div.row ul li::before {
	position: absolute;
	aspect-ratio: 1;
	width: 14px;
	left: 0px;
	top: 10px;
	border: 1px solid #000000;
	content: "";
	border-radius: 50%;
}



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

footer#footer {
	padding: 120px 40px 0px 40px;
	background-color: #e1d9ce;
}
footer nav#navi-sub {
	width: calc(100% - 80px);
	margin: 0px auto 120px auto;
}
footer nav#navi-sub div.list {
	display: flex;
	flex-wrap: wrap;
	margin-right: -40px;
}
footer nav#navi-sub div.list div.row {
	width: calc(33.33% - 40px);
	margin-right: 40px;
}
footer nav#navi-sub div.list div.row a {
	display: block;
	height: 100%;
	padding: 10px 10px 20px 10px;
	background-color: #ffffff;
	border-radius: 5px;
}
footer nav#navi-sub div.list div.row p.image {
	height: 110px;
	margin-bottom: 20px;
}
footer nav#navi-sub div.list div.row p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
footer nav#navi-sub div.list div.row p.sub {
	font-family: "Ysabeau", sans-serif;
	font-size: 0.9375rem;
	color: #988c82;
	margin-bottom: 5px;
}
footer nav#navi-sub div.list div.row div.text {
	position: relative;
	padding: 0px 60px 0px 10px;
}
footer nav#navi-sub div.list div.row h3 {
	text-align: left;
	font-size: 1.375rem;
	font-weight: 600;
	line-height: 25px;
}
footer nav#navi-sub div.list div.row span.button {
	position: absolute;
	right: 10px;
	bottom: 0px;
}
footer#footer div.information-navi-footer-misc {
	padding: 60px;
	background-color: #ffffff;
	border-radius: 40px 40px 0px 0px;
}
footer#footer div.information-navi-footer {
	display: flex;
	flex-wrap: wrap;
}
footer#footer div.information {
	width: calc(100% - 420px);
	font-weight: 300;
}
footer#footer div.information p.logo {
	margin-bottom: 40px;
}
footer#footer div.information p.logo img {
	width: calc(200px * 1.125);
}
footer#footer div.information h3 {
	font-size: 1.0625rem;
	margin-bottom: 10px;
}
footer#footer div.information div.list {
		margin-bottom: 20px;
}
footer#footer div.information div.list div.row,
footer#footer div.information p.tel {
	font-size: 0.9375rem;
	line-height: 1.625rem;
}
footer#footer div.information div.list div.row {
	display: flex;
	flex-wrap: wrap;
}
footer#footer div.information div.list div.row p.label {
	width: 100px;
}
footer#footer div.information div.list div.row p.body {
	width: calc(100% - 100px);
}
footer#footer nav#navi-footer {
	position: relative;
	width: 420px;
}
footer#footer nav#navi-footer div.banner-origin {
	margin-bottom: 20px;
}
footer#footer nav#navi-footer ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	margin-bottom: 50px;
	transform: translateX(10px);
}
footer#footer nav#navi-footer ul li {
	width: 80px;
	font-family: "Ysabeau", sans-serif;
	font-size: 0.9375rem;
}
footer#footer nav#navi-footer ul li:not(:nth-child(3n)) {
	margin-right: 40px;
}
footer#footer nav#navi-footer ul li:nth-child(3n) {
	margin-right: 0px;
}
footer#footer nav#navi-footer p.instagram {
	position: absolute;
	right: 0px;
	bottom: 0px;
}
footer#footer div.misc {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: flex-end;
	align-items: center;
	margin-top: -20px;
}
footer#footer div.misc p {
	font-size: 0.8125rem;
	line-height: 1.25rem;
	color: #988c82;
}
footer#footer div.misc p.privacy-policy a.color:hover {
	color: #000000;
}
footer#footer div.misc p.copyright {
	margin-right: 50px;
}
