@charset "utf-8";

/* CSS Document */
/* ----------------------------------------------------------------------------------------------------
 * Set
@media screen and (max-width: 1920px) {}
@media screen and (max-width: 1536px) {}
@media screen and (max-width: 1280px) {}
@media print, screen and (max-width: 1024px) {}
@media screen and (max-width: 560px) {}
---------------------------------------------------------------------------------------------------- */
:root {
	--color-default: #212121;

	--color-white: #FFFFFF;
	--color-black: #212121;
	--color-gray: #F5F5F5;
	--color-darkgray: #9E9E9E;
	--color-bluegray: #ECEFF1;

	--color-bg: #F2E3D5;
	--color-bglight: #F5EADF;
	--color-bgdark: #735030;



	--color-red: #F44336;
	--color-yellow: #FFEE58;


	--ease-normal: all 0.08s linear;
	--ease-fast: all 0.04s linear;
	--ease-slow: all 0.12s linear;

	--size-normal: 1em;
	--size-large: 1.13em;
	--size-xlarge: 1.27em;
	--size-2xlarge: 1.42em;
	--size-3xlarge: 1.60em;
	--size-4xlarge: 1.80em;
	--size-5xlarge: 2.03em;

	--size-small: 0.89em;
	--size-xsmall: 0.79em;
	--size-2xsmall: 0.70em;
	--size-3xsmall: 0.62em;

	--weight-thin: 400;
	--weight-normal: 500;
	--weight-bold: 700;
	--weight-xbold: 900;

	--line-height-narrow: 1.6;
	--line-height-normal: 1.8;
	--line-height-wide: 2.0;

	--border-radius-narrow: 0.32rem;
	--border-radius-normal: 0.64rem;
	--border-radius-wide: 0.88rem;

	--border-width-thin: 1px;
	--border-width-normal: 2px;
	--border-width-thick: 3px;

	--padding-section-narrow: 6.4em;
	--padding-section: 8em;
	--padding-section-wide: 8.8em;

}

@media screen and (max-width: 1280px) {}

@media print,
screen and (max-width: 1024px) {}

@media screen and (max-width: 560px) {
	:root {

		--padding-section-narrow: 4.8em;
		--padding-section: 6.4em;
		--padding-section-wide: 8.0em;
	}
}


/* ----------------------------------------------------------------------------------------------------
 * Common
---------------------------------------------------------------------------------------------------- */
html,
body {
	width: 100%;
	text-align: center;
	color: var(--color-default);
	font-family: "Nunito Sans", "Zen Maru Gothic", sans-serif;
	font-size: 17px;
	font-weight: var(--weight-normal);
	line-height: var(--line-height-normal);
	letter-spacing: 0.02em;
	overflow-wrap: break-word;
	background-color: var(--color-bg);
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	font-family: inherit;
	font-weight: inherit;
}

body.loadAct * {
	transition: none !important;
}

.noselect,
.noselect * {
	-ms-user-select: none;
	-moz-user-select: -moz-none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

h1,
h2,
h3,
h4,
th,
small {
	font-weight: var(--weight-normal);
	font-size: 100%;
}

a,
button {
	outline: none;
	transition: var(--ease-normal);
}

*:focus {
	outline: none;
}

a {
	color: var(--color-default);
}

a:not(.not):hover {
	color: var(--color-red);
}

a:not(.not) .photo,
a:not(.not) .image,
a:not(.not) img {
	transition: var(--ease-normal);
}

a:not(.not):hover .photo,
a:not(.not):hover .image,
a:not(.not):hover img {
	filter: brightness(64%);
}

ol,
ul {
	list-style: none;
}

img,
svg {
	max-width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	vertical-align: middle;
}

header,
footer,
div,
ul,
li,
h1,
h2,
h3,
nav,
button,
blockquote,
dt,
dd,
figure,
section {
	position: relative;
}

p,
a,
span {
	position: relative;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

.clear::after {
	content: '';
	display: block;
	clear: both;
}

.none {
	display: none;
}

p {
	margin-bottom: 1.6em;
	text-align: left;
}

p:not(.not):last-child,
ul:not(.not):last-child,
ol:not(.not):last-child,
li:not(.not):last-child,
figure:not(.not):last-child,
table:not(.not):last-child,
blockquote:not(.not):last-child {
	margin-bottom: 0 !important;
}

mark {
	background-color: var(--color-yellow);
}

label {
	display: inline-block;
}

sup {
	font-weight: var(--weight-normal);
	font-size: var(--size-xxsmall);
	padding: 0 0.2em;
	vertical-align: middle;
}

strong,
.text-bold {
	font-weight: var(--weight-bold);
}

cite {
	font-style: normal;
}

.text-normal {
	font-weight: var(--weight-normal);
}

.text-underline {
	text-decoration: underline;
}

.text-small {
	font-size: var(--size-small);
}

.text-xsmall {
	font-size: var(--size-xsmall);
}

.text-2xsmall {
	font-size: var(--size-2xsmall);
}

.text-3xsmall {
	font-size: var(--size-3xsmall);
}


.text-large {
	font-size: var(--size-large);
}

.text-xlarge {
	font-size: var(--size-xlarge);
}

.text-2xlarge {
	font-size: var(--size-2xlarge);
}

.text-3xlarge {
	font-size: var(--size-3xlarge);
}

.text-4xlarge {
	font-size: var(--size-4xlarge);
}

.text-5xlarge {
	font-size: var(--size-5xlarge);
}

.text-gray {
	color: var(--color-darkgray);
}

.text-red {
	color: var(--color-red);
}

.text-white {
	color: var(--color-white);
}

.text-vertical {
	writing-mode: vertical-rl;
	text-align: left;
}

.in-center {
	text-align: center !important;
}

.in-right {
	text-align: right !important;
}

.in-left {
	text-align: left !important;
}

.pos-center {
	display: flex;
	justify-content: center;
	align-items: center;
}


.nowrap {
	white-space: nowrap;
}

.block {
	display: block;
}

.inline-block {
	display: inline-block;
}

.inline {
	display: inline;
}

.block-note {
	padding-left: 1em;
	text-indent: -1em;
}

.block-note::before {
	content: '※';
}

.bg-white {
	background-color: var(--color-white);
}

.bg-gray {
	background-color: var(--color-gray);
}

.margin-bt0 {
	margin-bottom: 0 !important;
}

.margin-bt02 {
	margin-bottom: 0.2em !important;
}

.margin-bt04 {
	margin-bottom: 0.4em !important;
}

.margin-bt06 {
	margin-bottom: 0.6em !important;
}

.margin-bt08 {
	margin-bottom: 0.8em !important;
}

.margin-bt10 {
	margin-bottom: 1.0em !important;
}

.margin-bt12 {
	margin-bottom: 1.2em !important;
}

.margin-bt14 {
	margin-bottom: 1.4em !important;
}

.margin-bt16 {
	margin-bottom: 1.6em !important;
}

.margin-bt18 {
	margin-bottom: 1.8em !important;
}

.margin-bt20 {
	margin-bottom: 2.0em !important;
}

.margin-bt22 {
	margin-bottom: 2.2em !important;
}

.margin-bt24 {
	margin-bottom: 2.4em !important;
}

.list-disc {
	list-style: disc;
	margin-left: 1.4em;
	margin-bottom: 1.6em;
}

.list-decimal {
	list-style: decimal;
	margin-left: 1.6em;
	margin-bottom: 1.6em;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
	border: var(--border-width-thin) solid var(--color-default) !important;
	background-color: var(--color-white) !important;
	line-height: var(--line-height-narrow) !important;
	border-radius: var(--border-radius-narrow) !important;
	color: var(--color-default) !important;
	padding-left: 0.6em !important;
	padding-right: 0.6em !important;
	padding-top: 0.4em !important;
	padding-bottom: 0.4em !important;
	max-width: 100% !important;
	transition: var(--ease-normal) !important;
	display: inline-block !important;
	font-size: inherit !important;
}

textarea {
	width: 100% !important;
	height: 12.0em !important;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
textarea:focus {
	box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.16);
	background-color: var(--color-gray) !important;
}

select {
	border: var(--border-width-thin) solid var(--color-default) !important;
	background-color: var(--color-white) !important;
	line-height: var(--line-height-narrow) !important;
	border-radius: var(--border-radius-narrow) !important;
	color: var(--color-default) !important;
	padding-left: 0.6em !important;
	padding-right: 0.6em !important;
	padding-top: 0.6em !important;
	padding-bottom: 0.6em !important;
	max-width: 100% !important;
	transition: var(--ease-normal) !important;
	display: inline-block !important;
	font-size: inherit !important;
}

.pd {
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	padding-left: 8rem;
	padding-right: 8rem;
	width: 100%;
	max-width: 80rem;
}

.pd.narrow {
	max-width: 64rem;
}

.pd.wide {
	max-width: 96rem;
}

.pd.full {
	max-width: none;
}

.show-tb,
.show-sp {
	display: none !important;
}

.hide-tb,
.hide-sp {}

@media screen and (max-width: 1920px) {

	html,
	body {
		font-size: 16px;
	}
}

@media screen and (max-width: 1280px) {
	.pd {
		padding-left: 4.8rem;
		padding-right: 4.8rem;
	}
}

@media print,
screen and (max-width: 1024px) {
	.pd {
		padding-left: min(4.8rem, 6.4vw);
		padding-right: min(4.8rem, 6.4vw);
	}

	.show-tb {
		display: inline !important;
	}

	.show-tb.block {
		display: block !important;
	}

	.show-tb.inline-block {
		display: inline-block !important;
	}

	.hide-tb {
		display: none;
	}
}

@media screen and (max-width: 560px) {

	html,
	body {
		font-size: 15px;
	}

	.show-sp {
		display: inline !important;
	}

	.show-sp.block {
		display: block !important;
	}

	.show-sp.inline-block {
		display: inline-block !important;
	}

	.hide-sp {
		display: none;
	}
}

#wrap {
	width: 100%;
	max-width: 100vw;
	overflow: clip;
}

#contents {
	display: grid;
	grid-template-columns: 100%;
	grid-template-rows: 1fr auto;
	min-height: 100vh;
	min-height: 100lvh;
}


@media screen and (max-width: 1920px) {}

@media screen and (max-width: 1536px) {}

@media screen and (max-width: 1280px) {}

@media print,
screen and (max-width: 1024px) {}

@media screen and (max-width: 560px) {}

/* ----------------------------------------------------------------------------------------------------
 * Common (add)
---------------------------------------------------------------------------------------------------- */

@media screen and (max-width: 1280px) {}

@media print,
screen and (max-width: 1024px) {}

@media screen and (max-width: 560px) {}


/* ----------------------------------------------------------------------------------------------------
 * Loading
---------------------------------------------------------------------------------------------------- */

#loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	height: 100lvh;
	background-color: var(--color-bg);
	z-index: 10000;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 16em;
}

#loading>.inner {
	width: 80px;
	max-width: 16vw;
	aspect-ratio: 1;
	border-radius: 100vh;
	background-image: conic-gradient(rgba(21, 21, 21, 0), rgba(21, 21, 21, 1));
	animation: loading 2s linear infinite;
}

#loading>.inner::before {
	content: '';
	background-color: var(--color-bg);
	border-radius: 100vh;
	position: absolute;
	left: 0.3em;
	top: 0.3em;
	right: 0.3em;
	bottom: 0.3em;
}

body {
	overflow: hidden;
}
body.loadEnd {
	overflow: visible;
}


@keyframes loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);

	}
}

@media screen and (max-width: 1280px) {
	#loading {
		padding-left: 0;
	}
}

@media print,
screen and (max-width: 1024px) {}

@media screen and (max-width: 560px) {}


/* ----------------------------------------------------------------------------------------------------
 * Header
---------------------------------------------------------------------------------------------------- */
header {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	height: 100lvh;
	width: 16em;
	display: grid;
	grid-template-rows: 1fr auto;
	padding-left: 2.4em;
	padding-right: 2.4em;
	gap: 4.0em;
	overflow-x: hidden;
	overflow-y: auto;
	z-index: 10000;
}

header .main {
	padding-top: 4.8em;
}

header .main h1 {
	margin-bottom: 4.0em;
}

header .main .menu {
	display: grid;
	gap: 2.0em;
	margin-bottom: 2.6em;
}

header .main .menu li::after {
	content: '';
	display: block;
	width: 0.24em;
	aspect-ratio: 1;
	background-color: var(--color-black);
	border-radius: 100vh;
	margin-left: auto;
	margin-right: auto;
	transform: translate(-0.12em, 1.0em);
}

header .main .menu li:last-child::after {
	display: none;
}


header .main .menu a {
	display: block;
	text-decoration: none;
	font-weight: var(--weight-bold);
	letter-spacing: 0.04em;
}

header .main .link {
	display: flex;
	justify-content: center;
	gap: 1.0em;
}


header .main .link a {
	display: block;
}

header .main .link a.contact {
	width: 1.6em;
}

header .main .link a.instagram {
	width: 1.6em;
}

header .address {
	font-size: var(--size-xsmall);
	line-height: var(--line-height-narrow);
	text-align: left;
	white-space: nowrap;
	padding-bottom: 1.6em;
}

header .address .name {
	display: block;
	font-weight: var(--weight-bold);
	font-size: var(--size-xlarge);
}

header .address .more {
	margin-bottom: 0.4em;
}

header .address .link {
	text-align: center;
}

header .address .link a {
	display: inline-block;
	font-size: var(--size-small);
	background-color: var(--color-black);
	color: var(--color-white);
	text-decoration: none;
	border-radius: 100vh;
	padding: 0.5em 1.6em 0.4em;

}

header .address .link a img {
	width: 1.0em;
	vertical-align: middle;
	margin-right: 0.3em;
	transform: translate(0, -0.05em);
}


@media screen and (max-width: 1280px) {


	header {
		position: absolute;
		height: auto;
		width: 100%;
		display: block;
		padding-top: 1.6em;
		padding-left: min(3.2rem, 4.8vw);
		padding-right: min(3.2rem, 4.8vw);
	}

	header .main {
		padding: 0;
	}

	header .main h1 {
		width: 10em;
		max-width: 28vw;
	}

	header .main .menu,
	header .main .link {
		display: none;
	}

	header .address {
		display: none;
	}


}

@media print,
screen and (max-width: 1024px) {}

@media screen and (max-width: 560px) {}

/* ----------------------------------------------------------------------------------------------------
 * Footer
---------------------------------------------------------------------------------------------------- */

footer {
	z-index: 1;
}

footer small {
	font-size: var(--size-xsmall);
	text-align: right;
	display: block;
	padding: 0.8em 1.6em;
}

footer small a {
	text-decoration: none;
}

@media screen and (max-width: 1280px) {}

@media print,
screen and (max-width: 1024px) {}

@media screen and (max-width: 560px) {}

/* ----------------------------------------------------------------------------------------------------
 * Page
---------------------------------------------------------------------------------------------------- */

#wrap::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/bg-page.png);
	background-size: min(120em, 400vw);
	background-repeat: repeat;
	mix-blend-mode: multiply;
	opacity: 0.32;
	background-position: left top;

}

#contents {
	margin-left: 16em;
}

.title-l {
	font-weight: var(--weight-bold);
	text-align: center;
	margin-bottom: 1.6em;


}

.title-l .copy {
	font-size: var(--size-xsmall);
	border: var(--border-width-normal) solid var(--color-black);
	background-color: var(--color-white);
	border-radius: var(--border-radius-narrow);
	padding: 0.3em 0.8em 0.2em;
	display: inline-block;
	margin-bottom: 0.8em;

}


.title-l .copy::before {
	content: '';
	display: block;
	width: 0.8em;
	aspect-ratio: 4/ 3;
	clip-path: polygon(50% 100%, 0 0, 100% 0);
	background-color: var(--color-black);
	position: absolute;
	left: 50%;
	top: calc(100% + 1px);
	margin-left: -0.4em;

}



.title-l .title {
	display: block;
	font-size: 2.89em;
	letter-spacing: 0.04em;


}


.title-m {
	font-weight: var(--weight-bold);
	font-size: var(--size-4xlarge);
	margin-top: 2.8em;
	margin-bottom: 0.8em;
	line-height: var(--line-height-narrow);

}

.title-m::after {
	content: '';
	display: block;
	width: 1.0em;
	border-bottom: var(--border-width-thick) solid var(--color-black);
	margin-top: 0.4em;
}


.title-s {
	font-weight: var(--weight-bold);
	font-size: var(--size-2xlarge);
	margin-top: 1.6em;
	margin-bottom: 0.3em;

}


section>* {
	z-index: 10;
}

.bg-section {}

.bg-section::before,
.bg-section::after {
	content: '';
	display: block;
	position: absolute;
	right: 0;
	left: -16em;
	height: 52%;
	background-color: var(--color-bglight);
	background-size: 100% 2.8em;
}

.bg-section::before {
	top: 0;
	background-image: url(../images/bg-section01.svg);
	background-position: center top;
}

.bg-section::after {
	bottom: 0;
	background-image: url(../images/bg-section02.svg);
	background-position: center bottom;
}



@media screen and (max-width: 1280px) {

	#contents {
		margin-left: 0;
	}

	.bg-section::before,
	.bg-section::after {
		left: 0;
	}


}

@media print,
screen and (max-width: 1024px) {

	.bg-section::before,
	.bg-section::after {
		background-size: 120% 2.6em;
	}

}

@media screen and (max-width: 560px) {

	.title-l .title {
		font-size: 2.57em;


	}


	.title-m {
		font-size: var(--size-3xlarge);

	}


	.title-s {
		font-size: var(--size-xlarge);

	}

	.bg-section::before,
	.bg-section::after {
		background-size: 140% 2.4em;
	}


}


.home-main {
	height: 100vh;
	height: 100svh;
	max-height: 72em;
	z-index: 10;

}

.home-main * {
	height: 100%;
}

.home-main .copy {
	position: absolute;
	left: 4.8em;
	bottom: 3.2em;
	color: var(--color-white);
	height: auto;
	line-height: var(--line-height-narrow);
	text-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
	font-size: min(1em, 2.3vw);
	white-space: nowrap;
}

.home-main .copy p:first-child {
	font-size: 2.57em;
	margin-bottom: 0.2em;
}

.home-main .copy p:last-child {
	font-size: var(--size-large);
}

.home-main .info {
	background-image: url(../images/icon-badge.svg);
	position: absolute;
	top: 1.6em;
	right: 1.2em;
	height: auto;
	background-size: contain;
	color: var(--color-white);
	font-weight: var(--weight-bold);
	line-height: 1.4;
	padding: 2.6em;
	transform: rotate(12deg);
	font-size: min(1em, 2.8vw);
	white-space: nowrap;
}

@media screen and (max-width: 1280px) {}

@media print,
screen and (max-width: 1024px) {



	.home-main .copy {
		left: min(4.8rem, 6.4vw);
	}


	.home-main .info {
		top: 1.6em;
		right: 0.8em;
	}




}

@media screen and (max-width: 560px) {
	.home-main .info {
		top: 1.6em;
		right: 0.4em;
	}

}


#lead {
	padding-top: var(--padding-section-narrow);
	padding-bottom: var(--padding-section-narrow);
}

.home-block-lead {
	font-size: var(--size-large);
	line-height: var(--line-height-wide);
}

@media screen and (max-width: 1280px) {}

@media print,
screen and (max-width: 1024px) {
	.home-block-lead {
		font-size: var(--size-normal);
	}

}

@media screen and (max-width: 560px) {}


#topics {
	padding-top: var(--padding-section-wide);
	padding-bottom: var(--padding-section-wide);
}


@media screen and (max-width: 1280px) {}

@media print,
screen and (max-width: 1024px) {}

@media screen and (max-width: 560px) {}


#menu {
	padding-top: var(--padding-section);
	padding-bottom: var(--padding-section);
}


.home-block-menu-photo {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.4em;
	margin-bottom: 3.2em;
}

.home-block-menu-photo img {
	border-radius: var(--border-radius-normal);
	margin-bottom: 0.8em;
}

.home-block-menu-photo figcaption {
	font-size: var(--size-small);
}

.home-block-menu-photo figcaption .name {
	display: block;
	text-align: center;
	font-size: var(--size-xlarge);
	font-weight: var(--weight-bold);
	margin-bottom: 0.1em;
}

.home-block-menu {
	padding: 3.2em;
}

.home-block-menu h3 {
	text-align: center;
	margin-bottom: 1.6em;
}

.home-block-menu h3>.inner {
	font-size: var(--size-3xlarge);
	font-weight: var(--weight-bold);
	display: inline-block;
	padding: 0 0.8em;
}

.home-block-menu h3>.inner::before,
.home-block-menu h3>.inner::after {
	content: '';
	display: block;
	position: absolute;
	top: 0.1em;
	bottom: 0.2em;
	width: var(--border-width-normal);
	background-color: var(--color-black);
	border-radius: 100vh;
}

.home-block-menu h3>.inner::before {
	left: 0;
	transform: rotate(-16deg);
}

.home-block-menu h3>.inner::after {
	right: 0;
	transform: rotate(16deg);
}

.home-wrap-menu {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 3.2em;
	align-items: start;
	margin-bottom: 1.6em;

}

.list-menu {
	display: grid;
	grid-template-columns: 1fr auto;
	border-top: var(--border-width-thin) solid var(--color-black);
	line-height: var(--line-height-narrow);
}

.list-menu dt,
.list-menu dd {
	border-bottom: var(--border-width-thin) solid var(--color-black);
	padding-top: 0.8em;
	padding-bottom: 0.7em;
}

.list-menu dd {
	text-align: right;
	padding-left: 1.2em;
}


.home-block-menu>* {
	z-index: 2;
	position: relative;

}

.home-block-menu+.home-block-menu {
	margin-top: 3.2em;
}

.home-block-menu::before,
.home-block-menu::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	border-radius: var(--border-radius-normal);
}

.home-block-menu::before {
	background-color: var(--color-black);
	transform: translate(0.3em, 0.2em) rotate(0.6deg);
	opacity: 0.04;

}

.home-block-menu::after {
	background-color: var(--color-white);
}


@media screen and (max-width: 1280px) {}

@media print,
screen and (max-width: 1024px) {


	.home-wrap-menu {
		grid-template-columns: repeat(1, 1fr);

	}

	.list-menu+.list-menu {
		border-top: none;
	}


}

@media screen and (max-width: 560px) {

	.home-block-menu-photo {
		grid-template-columns: repeat(1, 1fr);
	}



	.home-block-menu {
		padding: 2.4em 2.0em;
	}

	.home-block-menu h3 {
		margin-bottom: 1.2em;
	}

	.home-block-menu h3>.inner {
		font-size: var(--size-2xlarge);
	}





}

#info {
	padding-top: var(--padding-section-wide);
	padding-bottom: var(--padding-section-wide);
}

.home-block-info {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3.2em;
}

.home-block-info .photo>.inner {
	height: 100%;
	background-image: url(../images/info-photo01.jpg);
	border-radius: var(--border-radius-normal);

}

.home-block-info .text {
	padding: 2.4em 0;
}

.home-block-map {
	height: 44vh;
	max-height: 28em;
	margin-left: -16em;
	background-color: var(--color-bgdark);
	margin-top: var(--padding-section-narrow);
	margin-bottom: var(--padding-section);

}

.home-block-map iframe {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	mix-blend-mode: hard-light;

}



.list-note {
	font-size: var(--size-small);
}

.list-note li {
	padding-left: 1.2em;
}

.list-note li::before {
	content: '※';
	position: absolute;
	left: 0;
	top: 0;
}

.home-table-info {

	margin-bottom: 1.0em;
}

.home-table-info th,
.home-table-info td {
	border: var(--border-width-thin) solid var(--color-black);
	padding: 0.8em 1.0em;
	background-color: var(--color-white);

}

.home-table-info th {
	background-color: var(--color-bluegray);
	font-weight: var(--weight-bold);
	white-space: nowrap;
	line-height: var(--line-height-narrow);
}

.home-table-info th br,
.home-table-info td br {
	display: none;
}



@media screen and (max-width: 1280px) {

	.home-block-map {
		margin-left: 0;

	}

}

@media print,
screen and (max-width: 1024px) {



	.home-block-info {
		grid-template-columns: repeat(1, 1fr);
		gap: 0;
	}

	.home-block-info .photo {
		aspect-ratio: 3 / 2;

	}

	.home-block-info .text {
		padding-bottom: 0;
	}



	.home-block-map {
		max-height: 20em;

	}

}

@media screen and (max-width: 560px) {

	.home-table-info th {
		white-space: wrap;
	}

	.home-table-info td {
		white-space: nowrap;
	}

	.home-table-info th br,
	.home-table-info td br {
		display: inline;
	}



}

#about {
	padding-top: var(--padding-section);
	padding-bottom: var(--padding-section);
}

.list-about {
	display: grid;
	gap: 0.2em;
}

.list-about li {
	padding-left: 1.2em;
}

.list-about li::before {
	position: absolute;
	left: 0;
	top: 0;
}

.list-about li:nth-child(1)::before {
	content: '①';
}

.list-about li:nth-child(2)::before {
	content: '②';
}

.list-about li:nth-child(3)::before {
	content: '③';
}


.block-about-photo {
	display: grid;
	grid-template-columns: 2.4fr 1fr;
	width: 120%;
	margin-left: -10%;
	margin-top: 2.4em;
	margin-bottom: 2.4em;
	align-items: end;
	gap: 1.2em;
}

.block-about-photo img {
	border-radius: var(--border-radius-normal);
}

.block-about-photo.opp {
	grid-template-columns: 1fr 2.4fr;
}

.block-about-photo.last {
	margin-bottom: 0;
}

@media screen and (max-width: 1280px) {}

@media print,
screen and (max-width: 1024px) {}

@media screen and (max-width: 560px) {
	.block-about-photo {
		gap: 1.0em;
	}

}