.l-container {
	min-width: var(--min-device-width);
}

.l-inner {
	box-sizing: content-box;
	width: 100%;
	max-width: var(--site-width);
	margin-inline: auto;
}

.l-inner:where(._padding) {
	max-width: calc(var(--site-width) + (var(--space-inline) * 2));
	padding-inline: var(--space-inline);
}

.l-section {
	--l-section-inner-width-actual: var(--l-section-inner-width, var(--site-width));
	--l-section-space-inline-actual: var(--l-section-space-inline, var(--space-inline));
}

.l-section:where(._padding) {
	padding-inline: var(--l-section-space-inline-actual);
}

.l-section__inner {
	width: 100%;
	max-width: var(--l-section-inner-width-actual);
	margin-inline: auto;
	background-clip: content-box;
}

.l-section__inner:where(._padding) {
	max-width: calc( 						var(--l-section-inner-width-actual) + 						(var(--l-section-space-inline-actual) * 2) 					);
	padding-inline: var(--l-section-space-inline-actual);
}

.l-section__full {
	margin-inline: calc(var(--l-section-space-inline-actual) * -1);
}

.l-row-gap {
	--l-row-gap-default: 60px;
	--l-row-gap-actual: var(--l-row-gap, var(--l-row-gap-default));
	display: flex;
	flex-direction: column;
	row-gap: var(--l-row-gap-actual);
}

.l-column {
	--l-column-head-width-default: 334px;
	--l-column-columnGap-default: 86px;
	--l-column-rowGap-default: 0px;
	--l-column-head-width-actual: var(--l-column-head-width, var(--l-column-head-width-default));
	--l-column-columnGap-actual: var(--l-column-columnGap, var(--l-column-columnGap-default));
	--l-column-rowGap-actual: var(--l-column-rowGap, var(--l-column-rowGap-default));
	display: grid;
	grid-template-columns: var(--l-column-head-width-actual) 1fr;
	-moz-column-gap: var(--l-column-columnGap-actual);
	column-gap: var(--l-column-columnGap-actual);
	row-gap: var(--l-column-rowGap-actual);
}

.l-column:has(.l-column__foot) .l-column__body {
	grid-row: span 2;
}

.l-tile {
	--l-tile-templateColumns-default: var(--column-count);
	--l-tile-columnGap-default: var(--column3-gap);
	--l-tile-rowGap-default: 55px;
	--l-tile-templateColumns-actual: var(--l-tile-templateColumns, var(--l-tile-templateColumns-default));
	--l-tile-columnGap-actual: var(--l-tile-columnGap, var(--l-tile-columnGap-default));
	--l-tile-rowGap-actual: var(--l-tile-rowGap, var(--l-tile-rowGap-default));
	display: grid;
	grid-template-columns: var(--l-tile-templateColumns-actual);
	-moz-column-gap: var(--l-tile-columnGap-actual);
	column-gap: var(--l-tile-columnGap-actual);
	row-gap: var(--l-tile-rowGap-actual);
}

.l-tile._small {
	--l-tile-columnGap-default: var(--column3-small-gap);
}

.l-tile._large {
	--l-tile-columnGap-default: var(--column3-large-gap);
	--l-tile-rowGap-default: 37px;
}

.l-tile._2n {
	--l-tile-columnGap-default: var(--column2-gap);
	--l-tile-rowGap-default: 27px;
}

.l-margin:where(._top) {
	-webkit-margin-before: var(--space-block);
	margin-block-start: var(--space-block);
}

.l-margin:where(._top_half) {
	-webkit-margin-before: var(--space-block-half);
	margin-block-start: var(--space-block-half);
}

.l-margin:where(._top_medium) {
	-webkit-margin-before: var(--space-block-medium);
	margin-block-start: var(--space-block-medium);
}

.l-margin:where(._top_small) {
	-webkit-margin-before: var(--space-block-small);
	margin-block-start: var(--space-block-small);
}

.l-margin:where(._top_x-small) {
	-webkit-margin-before: var(--space-block-x-small);
	margin-block-start: var(--space-block-x-small);
}

.l-margin:where(._top_large) {
	-webkit-margin-before: var(--space-block-large);
	margin-block-start: var(--space-block-large);
}

.l-margin:where(._bottom) {
	-webkit-margin-after: var(--space-block);
	margin-block-end: var(--space-block);
}

.l-margin:where(._bottom_half) {
	-webkit-margin-after: var(--space-block-half);
	margin-block-end: var(--space-block-half);
}

.l-margin:where(._bottom_medium) {
	-webkit-margin-after: var(--space-block-medium);
	margin-block-end: var(--space-block-medium);
}

.l-margin:where(._bottom_small) {
	-webkit-margin-after: var(--space-block-small);
	margin-block-end: var(--space-block-small);
}

.l-margin:where(._bottom_x-small) {
	-webkit-margin-after: var(--space-block-x-small);
	margin-block-end: var(--space-block-x-small);
}

.l-margin:where(._bottom_large) {
	-webkit-margin-after: var(--space-block-large);
	margin-block-end: var(--space-block-large);
}

.l-padding:where(._top) {
	-webkit-padding-before: var(--space-block);
	padding-block-start: var(--space-block);
}

.l-padding:where(._top_half) {
	-webkit-padding-before: var(--space-block-half);
	padding-block-start: var(--space-block-half);
}

.l-padding:where(._top_medium) {
	-webkit-padding-before: var(--space-block-medium);
	padding-block-start: var(--space-block-medium);
}

.l-padding:where(._top_small) {
	-webkit-padding-before: var(--space-block-small);
	padding-block-start: var(--space-block-small);
}

.l-padding:where(._top_x-small) {
	-webkit-margin-before: var(--space-block-x-small);
	margin-block-start: var(--space-block-x-small);
}

.l-padding:where(._top_large) {
	-webkit-padding-before: var(--space-block-large);
	padding-block-start: var(--space-block-large);
}

.l-padding:where(._bottom) {
	-webkit-padding-after: var(--space-block);
	padding-block-end: var(--space-block);
}

.l-padding:where(._bottom_half) {
	-webkit-padding-after: var(--space-block-half);
	padding-block-end: var(--space-block-half);
}

.l-padding:where(._bottom_medium) {
	-webkit-padding-after: var(--space-block-medium);
	padding-block-end: var(--space-block-medium);
}

.l-padding:where(._bottom_small) {
	-webkit-padding-after: var(--space-block-small);
	padding-block-end: var(--space-block-small);
}

.l-padding:where(._bottom_x-small) {
	-webkit-margin-after: var(--space-block-x-small);
	margin-block-end: var(--space-block-x-small);
}

.l-padding:where(._bottom_large) {
	-webkit-padding-after: var(--space-block-large);
	padding-block-end: var(--space-block-large);
}

.l-spacer {
	height: var(--space-block);
}

.l-spacer:where(._half) {
	height: var(--space-block-half);
}

.l-spacer:where(._small) {
	height: var(--space-block-small);
}

.l-spacer:where(._large) {
	height: var(--space-block-large);
}

.l-spacer:where(._xs) {
	height: var(--space-block-x-small);
}

.mw_wp_form.mw_wp_form_confirm .mw_confirm-hidden {
	display: none;
}

.mw_wp_form:not(.mw_wp_form_confirm) .mw_confirm-show {
	display: none;
}

/* pagenavi */

.wp-pagenavi {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.wp-pagenavi_wrapper._mt {
	-webkit-margin-before: var(--space-block-x-small);
	margin-block-start: var(--space-block-x-small);
}

.wp-pagenavi a,
.wp-pagenavi span {
	display: grid;
	place-content: center;
	min-width: 40px;
	min-height: 40px;
	padding: 2px 5px;
	border-radius: 4px;
	font-weight: 700;
	font-size: 1.25rem;
	background-color: var(--color-bg-pale2);
	line-height: 1;
	--letter-spacing: 0;
	text-decoration: none;
	transition: background-color var(--sec);
}

.wp-pagenavi a:focus-visible {
	color: var(--color-light);
	background-color: var(--color-base);
}

.wp-pagenavi a:focus-visible::before {
	filter: invert(1) brightness(100);
}

.wp-pagenavi .current {
	color: var(--color-light);
	background-color: var(--color-base);
}

.wp-pagenavi .current::before {
	filter: invert(1) brightness(100);
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
	color: transparent;
	font-size: 0;
}

.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
	grid-area: 1/1/2/2;
	content: "";
	display: block;
	width: 9px;
	aspect-ratio: 9/15;
	background-image: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="9" height="15" viewBox="0 0 9 15"><defs><clipPath id="a"><rect width="9" height="15" transform="translate(903 2308)" fill="%23fff" stroke="%23707070" stroke-width="1" opacity="0.38"/></clipPath></defs><g transform="translate(-903 -2308)" clip-path="url(%23a)"><path d="M369.853,2838.31l6,6-6,6" transform="translate(534.648 -528.809)" fill="none" stroke="%23333" stroke-width="2"/></g></svg>');
	background-size: 100% 100%;
}

.wp-pagenavi .previouspostslink {
	scale: -1 1;
}

.wp-pagenavi .extend {
	place-content: start;
	min-width: 0;
	font-weight: normal;
	background: transparent;
}

.post_text {
	display: flow-root;
	font-size: 1rem;
	line-height: 2.125;
}

.post_text p:not(:last-child) {
	margin-bottom: 30px;
}

.post_text :is(ul,
ol,
table):not(:last-child) {
	margin-bottom: 40px;
}

.post_text img {
	max-width: 100%;
	height: auto;
}

.post_text img.alignright {
	float: right;
	margin: 0 0 15px 15px;
	display: block;
}

.post_text img.alignleft {
	float: left;
	margin: 0 15px 15px 0;
	display: block;
}

.post_text img.aligncenter {
	display: block;
	margin: 0 auto 15px;
}

.post_text :is(h1,
h2,
h3,
h4,
h5,
h6) {
	margin-bottom: 20px;
	font-weight: 700;
	line-height: 1.8;
}

.post_text :is(h1,
h2,
h3,
h4,
h5,
h6):not(:first-child) {
	-webkit-margin-before: 40px;
	margin-block-start: 40px;
}

.post_text h2 {
	font-size: 1.625rem;
}

.post_text h2::after {
	content: "";
	display: block;
	width: 40px;
	height: 3px;
	-webkit-margin-before: 10px;
	margin-block-start: 10px;
	background-color: currentColor;
}

.post_text h3 {
	-webkit-padding-after: 8px;
	padding-block-end: 8px;
	-webkit-border-after: 1px solid;
	border-block-end: 1px solid;
	font-size: 1.25rem;
}

.post_text h4 {
	position: relative;
	-webkit-padding-start: 13px;
	padding-inline-start: 13px;
	color: var(--color-primary);
	font-size: 1.125rem;
}

.post_text h4::before {
	content: "";
	position: absolute;
	top: 1px;
	bottom: 2px;
	left: 0;
	width: 4px;
	background-color: var(--color-primary);
}

.post_text table {
	width: 100%;
}

.post_text th,
.post_text td {
	padding: 7px 20px;
	border: 1px solid var(--color-border2);
}

.post_text th {
	background-color: var(--color-bg-pale2);
}

.post_text ul,
.post_text ol {
	padding-left: 23px;
}

.post_text li {
	list-style-type: inherit;
	line-height: 1.4;
}

.post_text li:not(:last-child) {
	margin-bottom: 10px;
}

.post_text ul:not([style]) {
	list-style: none;
	padding: 0;
}

.post_text ul:not([style]) > li {
	display: table;
}

.post_text ul:not([style]) > li::before {
	content: "■";
	display: table-cell;
	padding-right: 7px;
	transform: translate(0, 2px) scale(0.8);
	transform-origin: top center;
}

.post_text ol li::marker {
	font-weight: 700;
}

.post_text a {
	text-decoration: underline;
	color: var(--color-primary);
}

.post_text a:focus-visible {
	text-decoration: none;
}

.c-arrow {
	--c-arrow-width-default: 34px;
	--c-arrow-img-size-default: 14px;
	--c-arrow-width-actual: var(--c-arrow-width, var(--c-arrow-width-default));
	--c-arrow-img-size-actual: var(--c-arrow-img-size, var(--c-arrow-img-size-default));
	flex-shrink: 0;
	width: var(--c-arrow-width-actual);
	aspect-ratio: 1/1;
	border-radius: 9999px;
	display: grid;
	place-content: center;
	color: var(--c-arrow-color, var(--color-primary));
	background-color: var(--c-arrow-backgroundColor, var(--color-light));
	transition-property: background-color;
	transition-duration: var(--sec);
}

.c-arrow svg {
	width: var(--c-arrow-img-size-actual);
}

.c-arrow._border {
	border: 1px solid var(--color-primary);
}

.c-arrow_wrapper:focus-visible {
	--c-arrow-color: var(--color-light);
	--c-arrow-backgroundColor: var(--color-primary);
}

.c-bg {
	position: relative;
	isolation: isolate;
}

.c-bg._base {
	background-color: var(--color-base);
}

.c-bg._outline {
	background-color: var(--color-outline);
}

.c-bg._base-light {
	background-color: var(--color-base-light);
}

.c-bg._primary {
	background-color: var(--color-primary);
}

.c-bg._attention {
	background-color: var(--color-attention);
}

.c-bg._inactive {
	background-color: var(--color-inactive);
}

.c-bg._light {
	background-color: var(--color-light);
}

.c-bg._dark {
	background-color: var(--color-dark);
}

.c-bg._border {
	background-color: var(--color-border);
}

.c-bg._border2 {
	background-color: var(--color-border2);
}

.c-bg._border3 {
	background-color: var(--color-border3);
}

.c-bg._bg-base {
	background-color: var(--color-bg-base);
}

.c-bg._bg-pale {
	background-color: var(--color-bg-pale);
}

.c-bg._bg-pale2 {
	background-color: var(--color-bg-pale2);
}

.c-bg._bg-pale-green {
	background-color: var(--color-bg-pale-green);
}

.c-bg._bg-dark {
	background-color: var(--color-bg-dark);
}

.c-bg._geo {
	background-color: var(--color-geo);
}

.c-bg._caltural {
	background-color: var(--color-caltural);
}

.c-bg._eco {
	background-color: var(--color-eco);
}

.c-bg._ikeda {
	background-color: var(--color-ikeda);
}

.c-bg._oboke-koboke-iyakei {
	background-color: var(--color-oboke-koboke-iyakei);
}

.c-bg._iya {
	background-color: var(--color-iya);
}

.c-bg._tsurugisan-miune-tenguzuka {
	background-color: var(--color-tsurugisan-miune-tenguzuka);
}

.c-bg._ikawa-higashimiyoshi {
	background-color: var(--color-ikawa-higashimiyoshi);
}

.c-bg._mino {
	background-color: var(--color-mino);
}

.c-bg._area {
	background-color: var(--color-area);
}

.c-bg__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	z-index: -10;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.c-box {
	background-color: var(--color-light);
	overflow: hidden;
	position: relative;
	border-radius: 10px;
}

.c-box::after {
	content: "";
	width: 100%;
	height: 7px;
	position: absolute;
	left: 0;
	top: 0;
	background-color: var(--color-primary);
}

.c-box2 {
	background-color: var(--color-bg-pale);
	overflow: hidden;
	position: relative;
	border-radius: 10px;
}

.c-box2::after {
	content: "";
	width: 100%;
	height: 7px;
	position: absolute;
	left: 0;
	top: 0;
	background-color: var(--color-primary);
}

.c-bread {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 80px;
	padding-block: 15px;
	font-size: 0.75rem;
}

.c-bread__list {
	display: flex;
	flex-wrap: wrap;
	-moz-column-gap: 3px;
	column-gap: 3px;
	-webkit-padding-end: 140px;
	padding-inline-end: 140px;
}

.c-bread__list > li:first-child a {
	display: flex;
	align-items: center;
	-moz-column-gap: 5px;
	column-gap: 5px;
}

.c-bread__list > li:first-child a::before {
	content: "";
	display: block;
	width: 20px;
	aspect-ratio: 20/22;
	background-image: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="20" height="22.001" viewBox="0 0 20 22.001"><path d="M-16848,25h-7V10l10-7,10,7V25h-7V17h-6v8Z" transform="translate(16855.002 -2.999)" fill="%23333"/></svg>');
	background-size: 100% 100%;
}

.c-bread__list > li + li:before {
	content: "/";
}

.c-button {
	position: relative;
	isolation: isolate;
	display: inline-grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 10px;
	align-items: center;
	max-width: 100%;
	padding: 5px 18px;
	border-radius: 9999px;
	font-weight: 700;
	color: var(--c-button-color, var(--color-light));
	line-height: 1.5;
	text-align: center;
	text-decoration: none;
	background-color: var(--c-button-backgroundColor, var(--color-bg-dark));
	transition-property: outline-offset, background-color;
	transition-duration: var(--sec);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.c-button._big {
	padding: 16px;
}
.c-button_wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.c-button_wrapper._center {
	justify-content: center;
}

.c-button_wrapper._mt {
	-webkit-margin-before: 30px;
	margin-block-start: 30px;
}

.c-button_wrapper._mb {
	-webkit-margin-after: 30px;
	margin-block-end: 30px;
}

.c-button_wrapper._mt_large {
	-webkit-margin-before: 40px;
	margin-block-start: 40px;
}

.c-button_wrapper._center {
	justify-content: center;
}

.c-button:where(:has(.c-button__text:first-child))::before {
	content: "";
}

.c-button:where(:has(.c-button__text:last-child))::after {
	content: "";
}

.c-button__text:not(:first-child) {
	-webkit-padding-start: 5px;
	padding-inline-start: 5px;
}

.c-button__icon {
	-webkit-margin-end: 5px;
	margin-inline-end: 5px;
}

.c-button__arrow {
	justify-self: end;
}

.c-button__external {
	justify-self: end;
}

.c-button._w_fluid {
	width: 100%;
}

.c-button._w_regular {
	width: 340px;
}

.c-button._w_small {
	width: 240px;
}

.c-button._h_regular {
	min-height: 60px;
}

.c-button._h_small {
	min-height: 40px;
}

.c-button._small {
	grid-template-columns: auto auto;
	justify-content: space-between;
	width: 150px;
	min-height: 40px;
	padding-inline: 15px;
}

.c-button._small::before {
	content: none;
}

.c-button._c_dark {
	--c-button-color: var(--color-light);
	--c-button-backgroundColor: var(--color-bg-dark);
}

.c-button._h_primary:focus-visible {
	--c-button-color: var(--color-light);
	--c-button-backgroundColor: var(--color-primary);
}

.c-color._base {
	color: var(--color-base);
}

.c-color._outline {
	color: var(--color-outline);
}

.c-color._base-light {
	color: var(--color-base-light);
}

.c-color._primary {
	color: var(--color-primary);
}

.c-color._attention {
	color: var(--color-attention);
}

.c-color._inactive {
	color: var(--color-inactive);
}

.c-color._light {
	color: var(--color-light);
}

.c-color._dark {
	color: var(--color-dark);
}

.c-color._border {
	color: var(--color-border);
}

.c-color._border2 {
	color: var(--color-border2);
}

.c-color._border3 {
	color: var(--color-border3);
}

.c-color._bg-base {
	color: var(--color-bg-base);
}

.c-color._bg-pale {
	color: var(--color-bg-pale);
}

.c-color._bg-pale2 {
	color: var(--color-bg-pale2);
}

.c-color._bg-dark {
	color: var(--color-bg-dark);
}

.c-color._geo {
	color: var(--color-geo);
}

.c-color._caltural {
	color: var(--color-caltural);
}

.c-color._eco {
	color: var(--color-eco);
}

.c-color._ikeda {
	color: var(--color-ikeda);
}

.c-color._oboke-koboke-iyakei {
	color: var(--color-oboke-koboke-iyakei);
}

.c-color._iya {
	color: var(--color-iya);
}

.c-color._tsurugisan-miune-tenguzuka {
	color: var(--color-tsurugisan-miune-tenguzuka);
}

.c-color._ikawa-higashimiyoshi {
	color: var(--color-ikawa-higashimiyoshi);
}

.c-color._mino {
	color: var(--color-mino);
}

.c-color._area {
	color: var(--color-area);
}

.c-heading-under {
	-webkit-margin-after: 25px;
	margin-block-end: 25px;
	line-height: normal;
	font-size: 1.625rem;
	font-weight: 700;
	line-height: 1.3846153846;
}

.c-heading-under::after {
	content: "";
	display: block;
	width: 40px;
	height: 3px;
	-webkit-margin-before: 20px;
	margin-block-start: 20px;
	background-color: var(--color-primary);
}

.c-heading-under._border-gray::after {
	background-color: var(--color-base);
}

.c-heading-under ._color-green {
	color: var(--color-primary);
}

.c-heading-under2 {
	-webkit-margin-after: 30px;
	margin-block-end: 30px;
	margin-top: 30px;
	font-size: 1.5rem;
	line-height: 1.5;
	font-weight: 700;
	background: var(--color-bg-pale);
	border-radius: 10px 0 0 0;
	padding: 20px 25px 20px 25px;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}

.c-heading-under2::before {
	content: "";
	position: absolute;
	left: 27px;
	top: 0;
	width: 2px;
	height: 50px;
	background: var(--color-primary);
	transform: rotate(48deg);
	transform-origin: right top;
}

.c-heading-under2::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 24px;
	height: 50px;
	background: var(--color-primary);
	transform: rotate(48deg);
	transform-origin: right top;
}

.c-heading-under3 {
	-webkit-margin-after: 20px;
	margin-block-end: 20px;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.8;
	padding: 0 0 10px 0;
	border-bottom: 1px solid var(--color-base);
}

.c-heading {
	display: grid;
	grid-template-columns: 1fr;
	-webkit-margin-after: 40px;
	margin-block-end: 40px;
	text-align: center;
	line-height: normal;
}

.c-heading__icon {
	grid-area: 1/1/2/2;
}

.c-heading__sub {
	grid-area: 2/1/3/2;
	font-family: var(--ff-sans-serif2);
	font-weight: 700;
}

.c-heading__title {
	-webkit-margin-before: 15px;
	margin-block-start: 15px;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.4375;
}

.c-heading2 {
	-webkit-margin-after: 15px;
	margin-block-end: 15px;
	line-height: normal;
}

.c-heading2__title {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.5;
}

.c-heading2::after {
	content: "";
	display: block;
	width: 34px;
	height: 1px;
	-webkit-margin-before: 21px;
	margin-block-start: 21px;
	background-color: currentColor;
}

.c-heading3 {
	-webkit-margin-after: 25px;
	margin-block-end: 25px;
	line-height: normal;
}

.c-heading3::after {
	content: "";
	display: block;
	width: 40px;
	height: 3px;
	-webkit-margin-before: 15px;
	margin-block-start: 15px;
	background-color: var(--color-primary);
}

.c-heading3._area-heading {
	/* background-color: var(--color-bg-pale-green); */
	/* padding: 24px 13px; */
	border-radius: 10px;
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 40px;
}

.c-heading3._area-heading::before {
	content: "";
	width: 56px;
	height: auto;
	aspect-ratio: 56/33;
	background: url(../img/area/heading-look.png) no-repeat top left;
	background-size: contain;
}

.c-heading3._area-heading::after {
	content: none;
}

.c-heading3._area-heading .c-heading3__title {
	line-height: 1.4;
}

.c-heading3__title {
	font-weight: 700;
	font-size: 1.625rem;
}

.c-heading-bg-blockStart {
	position: relative;
	-webkit-margin-after: 27px;
	margin-block-end: 27px;
	padding: 22px 25px;
	border-top-left-radius: 10px;
	line-height: normal;
	background-color: var(--color-bg-pale);
	overflow: hidden;
	--c-heading-bg-blockStart-border-position-right: 3px;
	--c-heading-bg-blockStart-border-width: 2px;
}

.c-heading-bg-blockStart::before {
	content: "";
	width: 29px;
	aspect-ratio: 29/27;
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--color-primary);
	-webkit-clip-path: polygon(calc( 				100% - 				var(--c-heading-bg-blockStart-border-position-right) - 				var(--c-heading-bg-blockStart-border-width) 			) 0, 0 calc( 				100% - 				var(--c-heading-bg-blockStart-border-position-right) - 				var(--c-heading-bg-blockStart-border-width) 			), 0 0, 100% 0, 0 100%, 0 calc( 				100% - 				var(--c-heading-bg-blockStart-border-position-right) 			), calc( 				100% - 				var(--c-heading-bg-blockStart-border-position-right) 			) 0);
	clip-path: polygon(calc( 				100% - 				var(--c-heading-bg-blockStart-border-position-right) - 				var(--c-heading-bg-blockStart-border-width) 			) 0, 0 calc( 				100% - 				var(--c-heading-bg-blockStart-border-position-right) - 				var(--c-heading-bg-blockStart-border-width) 			), 0 0, 100% 0, 0 100%, 0 calc( 				100% - 				var(--c-heading-bg-blockStart-border-position-right) 			), calc( 				100% - 				var(--c-heading-bg-blockStart-border-position-right) 			) 0);
}

.c-heading-bg-blockStart__title {
	font-weight: 700;
	font-size: 1.5rem;
}

.c-input input[type=text],
.c-input input[type=tel],
.c-input input[type=email],
.c-input select,
.c-input textarea {
	display: block;
	width: 100%;
	padding: 12px 20px;
	border: 1px solid var(--color-border3);
	border-radius: 4px;
	color: inherit;
	font-family: inherit;
	font-size: 1rem;
	background-color: var(--color-light);
	-webkit-appearance: none;
	-moz-appearance: none;
}

.c-input textarea {
	min-height: 180px;
	resize: vertical;
}

.c-input._w1 {
	flex-wrap: wrap;
}

.c-input._w1 input {
	max-width: 178px;
}

.c-input._zip {
	display: flex;
	align-items: center;
	-moz-column-gap: 10px;
	column-gap: 10px;
}

.c-input:is(._radio,
._checkbox) {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 66px;
}

.c-input:is(._radio,
._checkbox) label {
	display: inline-flex;
	align-items: center;
	-moz-column-gap: 5px;
	column-gap: 5px;
	cursor: pointer;
}

.c-input .mwform-radio-field label {
	display: inline-block;
	cursor: pointer;
}

.c-input .mwform-radio-field .mwform-radio-field-text {
	position: relative;
	display: inline-block;
	padding-left: 35px;
}

.c-input .mwform-radio-field .mwform-radio-field-text::before,
.c-input .mwform-radio-field .mwform-radio-field-text::after {
	content: "";
	display: block;
	position: absolute;
	top: 0.3125rem;
	left: 0;
	width: 24px;
	aspect-ratio: 1/1;
	border-radius: 9999px;
}

.c-input .mwform-radio-field .mwform-radio-field-text::before {
	border: 1px solid var(--color-border7);
	background-color: var(--color-bg-pale);
}

.c-input .mwform-radio-field .mwform-radio-field-text::after {
	background-color: var(--color-bg-dark3);
	transform: scale(0);
	transition: transform 0.03s;
}

.c-input .mwform-radio-field input {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: clip;
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
}

.c-input .mwform-radio-field input:checked ~ .mwform-radio-field-text::after {
	transform: scale(0.6);
}

.c-input .mwform-checkbox-field label {
	display: inline-block;
	cursor: pointer;
}

.c-input .mwform-checkbox-field .mwform-checkbox-field-text {
	position: relative;
	display: inline-block;
	padding-left: 35px;
}

.c-input .mwform-checkbox-field .mwform-checkbox-field-text::before {
	content: "";
	display: block;
	position: absolute;
	top: 0.3125rem;
	left: 0;
	width: 24px;
	aspect-ratio: 1/1;
	border: 2px solid var(--color-border7);
	border-radius: 2px;
	background: no-repeat var(--color-bg-pale) center center;
}

.c-input .mwform-checkbox-field input {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: clip;
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
}

.c-input .mwform-checkbox-field input:checked ~ .mwform-checkbox-field-text::before {
	background-image: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="15.785" height="11.86" viewBox="0 0 15.785 11.86"><path d="M617.563,2117.523l4.511,4.628,8.446-9" transform="translate(-616.149 -2111.738)" fill="none" stroke="%230b1dac" stroke-linecap="round" stroke-width="2"/></svg>');
}

.c-link {
	color: var(--color-primary);
	text-underline-offset: 8px;
}

.c-link[target=_blank] {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	word-break: break-all;
	line-height: inherit;
}

.c-link[target=_blank]::after {
	content: "";
	width: 14px;
	height: 12px;
	position: relative;
	display: inline-block;
	margin-left: 5px;
	top: 5px;
	background-color: var(--color-primary);
	-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg id="svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 14 12"><path d="M1.308,5.166h8.767V9.885H1.308ZM0,11.234H11.383V2.2H0Z" transform="translate(0 0.766)" fill="var(--svg-main-color,currentColor)"/><path d="M3.1,0V1.348h8.636V9.035h1.308V0Z" transform="translate(0.956 0)" fill="var(--svg-main-color,currentColor)"/></svg>') no-repeat center center;
	mask: url('data:image/svg+xml;charset=UTF-8,<svg id="svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 14 12"><path d="M1.308,5.166h8.767V9.885H1.308ZM0,11.234H11.383V2.2H0Z" transform="translate(0 0.766)" fill="var(--svg-main-color,currentColor)"/><path d="M3.1,0V1.348h8.636V9.035h1.308V0Z" transform="translate(0.956 0)" fill="var(--svg-main-color,currentColor)"/></svg>') no-repeat center center;
}

.c-link._border {
	text-decoration: underline !important;
	text-underline-offset: 8px;
}

.c-list-categories {
	display: grid;
	grid-template-columns: auto 1px 1fr;
	-moz-column-gap: 30px;
	column-gap: 30px;
	line-height: normal;
}

.c-list-categories._mb {
	-webkit-margin-after: var(--space-block-x-small);
	margin-block-end: var(--space-block-x-small);
}

.c-list-categories::before {
	grid-area: 1/2/2/3;
	content: "";
	display: block;
	background-color: var(--color-border);
}

.c-list-categories__head {
	display: flex;
	flex-direction: column;
	font-weight: 700;
}

.c-list-categories__sub {
	order: -10;
	-webkit-margin-after: 10px;
	margin-block-end: 10px;
	font-family: var(--ff-sans-serif2);
	font-size: 0.75rem;
}

.c-list-categories__list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	padding-block: 5px;
}

.c-list-categories__list a {
	display: block;
	padding: 8px 20px;
	border-radius: 5px;
	font-weight: 700;
	text-decoration: none;
	background-color: var(--c-list-categories-button-bg, var(--color-bg-pale2));
	transition-property: background-color;
	transition-duration: var(--sec-fast);
}

.c-list-categories__list a:focus-visible {
	color: var(--color-light);
	--c-list-categories-button-bg: var(--color-primary);
}

.c-list-categories .current-cat {
	color: var(--color-light);
	--c-list-categories-button-bg: var(--color-primary);
}

.c-list {
	display: table;
	counter-reset: c-list;
}

.c-list > li {
	display: table-row;
	counter-increment: c-list;
}

.c-list > li::before {
	display: table-cell;
}

.c-list._point > li::before {
	content: "・";
}

.c-list._disc > li::before {
	content: "●";
}

.c-list._square > li::before {
	content: "■";
}

.c-list._decimal > li::before {
	content: counter(c-list) ".";
}

.c-list._decimal-zero > li::before {
	content: counter(c-list, decimal-leading-zero) ".";
}

.c-list._upper-roman > li::before {
	content: counter(c-list, upper-roman) ".";
}

.c-list._lower-roman > li::before {
	content: counter(c-list, lower-roman) ".";
}

.c-list._upper-alpha > li::before {
	content: counter(c-list, upper-alpha) ".";
}

.c-list._lower-alpha > li::before {
	content: counter(c-list, lower-alpha) ".";
}

.c-list._hiragana > li::before {
	content: counter(c-list, hiragana) ".";
}

.c-list._katakana > li::before {
	content: counter(c-list, katakana) ".";
}

.c-list._hiragana-iroha > li::before {
	content: counter(c-list, hiragana-iroha) ".";
}

.c-list._katakana-iroha > li::before {
	content: counter(c-list, katakana-iroha) ".";
}

.c-list._kanji > li::before {
	content: counter(c-list, trad-chinese-informal) ".";
}

.c-list._custom > li::before {
	content: attr(data-list);
}

.c-pager {
	display: grid;
	grid-template: "prev  back next"/200px 1fr 200px;
	-moz-column-gap: 40px;
	column-gap: 40px;
	max-width: 820px;
	margin-inline: auto;
}

.c-pager._mt {
	-webkit-margin-before: 60px;
	margin-block-start: 60px;
}

.c-pager__item._prev {
	grid-area: prev;
}

.c-pager__item._back {
	grid-area: back;
}

.c-pager__item._next {
	grid-area: next;
}

.c-pager a {
	display: grid;
	place-content: center;
	-moz-column-gap: 14px;
	column-gap: 14px;
	min-height: 60px;
	width: 100%;
	padding-inline: 20px;
	color: var(--color-light);
	font-weight: 700;
	text-decoration: none;
	background-color: var(--color-bg-dark);
	transition-property: background-color;
	transition-duration: var(--sec);
	text-align: center;
	border-radius: 9999px;
}

.c-pager a:focus-visible {
	background-color: var(--color-primary);
}

.c-pager__item:is(._prev,
._next) a {
	grid-template-columns: 1fr auto 1fr;
}

.c-pager__item._prev a::after {
	content: "";
}

.c-pager__item._prev .c-pager__arrow {
	justify-self: start;
	transform: scale(-1, 1);
}

.c-pager__item._next a {
	flex-direction: row-reverse;
}

.c-pager__item._next a::before {
	content: "";
}

.c-pager__item._next .c-pager__arrow {
	justify-self: end;
}

.c-pager__item._back a {
	justify-content: center;
}

.c-pagetitle {
	position: relative;
	isolation: isolate;
	color: var(--color-light);
	line-height: normal;
	text-align: center;
	text-shadow: 0 3px 12px var(--color-dark);
}

.c-pagetitle::before {
	content: "";
	position: absolute;
	z-index: -10;
	inset: 0;
	background-color: rgba(var(--color-dark-rgb), 0.24);
}

.c-pagetitle._area .c-pagetitle__inner {
	padding: 60px 0 20px;
}

.c-pagetitle__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	z-index: -20;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.c-pagetitle__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 410px;
	padding-block: 20px;
}

.c-pagetitle__text .c-pagetitle__text-inner {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	position: relative;
	margin: 0 auto;
}

.c-pagetitle__icon {
	order: -20;
	width: 37px;
	-webkit-margin-after: 10px;
	margin-block-end: 10px;
}

.c-pagetitle__icon._area {
	position: absolute;
	top: -24px;
	-webkit-margin-after: 0;
	margin-block-end: 0;
	filter: drop-shadow(0px 3px 10px var(--color-dark));
}

.c-pagetitle__icon._area:nth-child(3) {
	left: -36px;
}

.c-pagetitle__icon._area:nth-child(4) {
	right: -34px;
}

.c-pagetitle__icon._bubble {
	width: 113px;
	aspect-ratio: 113/76;
	top: -84px;
	left: 0;
	filter: none;
}

.c-pagetitle__title-sub {
	order: -10;
	-webkit-margin-after: 10px;
	margin-block-end: 10px;
	font-family: var(--ff-sans-serif2);
	font-weight: 700;
	font-size: 1.125rem;
}

.c-pagetitle__title {
	font-weight: 700;
	font-size: 2.875rem;
	word-break: keep-all;
	overflow-wrap: anywhere;
}

.c-stepbar {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	--c-stepbar-arrow-width: 3px;
	--c-stepbar-default-arrow: polygon(
  	0 0, var(--c-stepbar-arrow-width) 0,
  	100% 50%,
  	var(--c-stepbar-arrow-width) 100%, 0 100%,
  	calc(100% - var(--c-stepbar-arrow-width)) 50%
  );
	--c-stepbar-fill-arrow: polygon(
  	0 0, 100% 50%, 0 100%
  );
}

.c-stepbar__item {
	position: relative;
	display: grid;
	place-content: center;
	min-height: 50px;
	color: var(--color-base-light);
	font-weight: 700;
	text-align: center;
	background-color: var(--color-light);
}

.c-stepbar__item::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: -1px;
	width: 21px;
	background-color: var(--c-stepbar-arrow-backgroundColor, var(--color-primary));
	-webkit-clip-path: var(--c-stepbar-clipPath, var(--c-stepbar-default-arrow));
	clip-path: var(--c-stepbar-clipPath, var(--c-stepbar-default-arrow));
}

.c-stepbar__item:first-child::before {
	content: none;
}

.c-stepbar__item[aria-current=step] {
	color: var(--color-light);
	background-color: var(--color-primary);
	--c-stepbar-arrow-backgroundColor: var(--color-light);
	--c-stepbar-clipPath: var(--c-stepbar-fill-arrow);
}

.c-stepbar__item[aria-current=step] ~ .c-stepbar__item {
	--c-stepbar-arrow-backgroundColor: var(--color-primary);
	--c-stepbar-clipPath: var(--c-stepbar-default-arrow);
}

.c-stepbar__item[aria-current=step] + .c-stepbar__item {
	--c-stepbar-clipPath: var(--c-stepbar-fill-arrow);
}

.c-text {
	--c-text-gap-defalut: 10px;
	--c-text-gap-actualy: var(--c-text-gap, var(--c-text-gap-defalut));
}

.c-text > :where(:not(:last-child)) {
	-webkit-margin-after: var(--c-text-gap-actualy);
	margin-block-end: var(--c-text-gap-actualy);
}

.c-text._center {
	text-align: center;
}

.c-toggle {
	display: grid;
}

.c-toggle__item {
	grid-column: 1/2;
	grid-row: 1/2;
	transition-property: opacity, visibility;
	transition-duration: var(--sec);
}

.c-toggle__item._after {
	visibility: hidden;
	opacity: 0;
}

.c-toggle.is-open .c-toggle__item._before {
	opacity: 0;
	visibility: hidden;
}

.c-toggle.is-open .c-toggle__item._after {
	opacity: 1;
	visibility: visible;
}

.c-toggle._hover:focus-visible .c-toggle__item._before {
	opacity: 0;
	visibility: hidden;
}

.c-toggle._hover:focus-visible .c-toggle__item._after {
	opacity: 1;
	visibility: visible;
}

.p-area {
	display: flex;
	flex-direction: column;
	line-height: normal;
	text-decoration: none;
}

.p-area__image {
	order: -10;
	position: relative;
	aspect-ratio: 366/240;
	border-radius: 5px;
	overflow: hidden;
}

.p-area__image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	scale: var(--p-area-image-scale, 1);
	transition-property: scale;
	transition-duration: var(--sec);
}

.p-area__detail {
	display: flex;
	flex-direction: column;
	-webkit-padding-before: 20px;
	padding-block-start: 20px;
}

.p-area__sub {
	order: -10;
	font-family: var(--ff-sans-serif2);
	font-size: 0.75rem;
	--letter-spacing: 0.2em;
}

.p-area__title {
	font-weight: 700;
	font-size: 1.375rem;
}

.p-area__copy {
	margin-block: 10px 5px;
	color: var(--color-primary);
	font-weight: 700;
	word-break: keep-all;
}

.p-area__block {
	position: relative;
	-webkit-margin-before: 15px;
	margin-block-start: 15px;
	padding: 34px 25px 17px 25px;
	border-radius: 9px;
	background-color: var(--color-bg-pale);
}

.p-area__label {
	position: absolute;
	isolation: isolate;
	top: 0;
	left: 10px;
	padding: 4px 5px 8px 5px;
}

.p-area__label::before {
	content: "";
	position: absolute;
	z-index: -10;
	inset: 0;
	width: 100%;
	background-color: var(--color-primary);
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 6px), 0 100%);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 6px), 0 100%);
}

.p-area__label span {
	display: block;
	color: var(--color-light);
	font-weight: 700;
	font-size: 0.75rem;
	--letter-spacing: 0;
}

.p-area__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 16px;
	color: var(--color-base-light);
	font-size: 0.75rem;
}

.p-area__tags li::before {
	content: "#";
}

.p-area__arrow {
	position: absolute;
	z-index: 10;
	bottom: 25px;
	right: 20px;
}

.p-area:focus-visible {
	--p-area-image-scale: var(--zoom);
}

.p-area:focus-visible .p-area__title,
.p-area:focus-visible .p-area__sub {
	color: var(--color-primary);
}

.p-bottomnavi .p-bottomnavi__list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
}

.p-bottomnavi .p-bottomnavi__link {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 48.3%;
	height: 260px;
	position: relative;
	z-index: 1;
	text-decoration: none;
	text-align: center;
	color: var(--color-light);
	overflow: hidden;
}

.p-bottomnavi .p-bottomnavi__text {
	position: relative;
	z-index: 2;
}

.p-bottomnavi .p-bottomnavi__title {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.125;
	margin-bottom: 24px;
}

.p-bottomnavi .p-bottomnavi__title-sub {
	display: block;
	margin-bottom: 8px;
	font-size: 1rem;
	line-height: 2.25;
	font-family: var(--ff-sans-serif2);
	font-weight: 700;
	text-transform: uppercase;
}

.p-bottomnavi .p-bottomnavi__title-sub svg {
	display: block;
	margin: 0 auto;
}

.p-bottomnavi .p-bottomnavi__arrow svg {
	display: block;
	margin: 0 auto;
}

.p-bottomnavi .p-bottomnavi__image {
	z-index: 1;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
}

.p-bottomnavi .p-bottomnavi__image:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.3);
	opacity: 1;
	transition-duration: var(--sec);
}

.p-bottomnavi .p-bottomnavi__image img {
	display: block;
	margin: 0 auto;
	max-width: none;
}

.p-form {
	padding: 40px 130px;
	background-color: var(--color-bg-pale2);
}

.p-form__head {
	-webkit-margin-after: 37px;
	margin-block-end: 37px;
}

.p-form__item {
	-webkit-padding-after: 32px;
	padding-block-end: 32px;
}

.p-form__label {
	display: contents;
}

.p-form__label-in {
	position: relative;
	display: flex;
	flex-direction: row-reverse;
	justify-content: start;
	align-items: start;
	-moz-column-gap: 14px;
	column-gap: 14px;
}

.p-form__label-in._center {
	align-self: center;
}

.p-form__badge {
	flex-shrink: 0;
	padding: 5px 4px;
	color: var(--color-light);
	font-weight: 700;
	font-size: 0.875rem;
	translate: 0 0.25rem;
	line-height: 1;
}

.p-form__badge._require {
	background-color: var(--color-attention);
}

.p-form__badge._optional {
	background-color: var(--color-inactive);
}

.p-form__title {
	font-size: 1rem;
	font-weight: 700;
}

.p-form__exp {
	display: block;
	-webkit-margin-after: 5px;
	margin-block-end: 5px;
	font-size: 0.75rem;
}

.p-form .c-input._text {
	-webkit-padding-after: 4px;
	padding-block-end: 4px;
}

.p-form__group-item:not(:last-child) {
	-webkit-margin-after: 18px;
	margin-block-end: 18px;
}

.p-form__group-title {
	display: block;
	-webkit-margin-after: 6px;
	margin-block-end: 6px;
}

.p-form__submit {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	-webkit-margin-before: 8px;
	margin-block-start: 8px;
	gap: 20px 40px;
}

.p-form__submit-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	-moz-column-gap: 16px;
	column-gap: 16px;
	width: 340px;
	min-height: 60px;
	max-width: 100%;
	border: 0;
	border-radius: 9999px;
	color: var(--color-light);
	font-family: inherit;
	font-weight: 700;
	font-size: 1rem;
	text-align: center;
	text-decoration: none;
	background-color: var(--color-light);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	transition-property: background-color;
	transition-duration: var(--sec);
}

.p-form__submit-button._back {
	background-color: var(--color-inactive);
}

.p-form__submit-button._confirm,
.p-form__submit-button._submit,
.p-form__submit-button._top {
	background-color: var(--color-bg-dark);
}

.p-form__submit-button._confirm:focus-visible,
.p-form__submit-button._submit:focus-visible,
.p-form__submit-button._top:focus-visible {
	background-color: var(--color-primary);
}

.p-post {
	font-size: 0.875rem;
	line-height: 1.4285714286;
	display: flex;
	flex-direction: column;
	text-decoration: none;
}

.p-post__image {
	order: -10;
}

.p-post__title {
	grid-area: title;
}

.p-post__date {
	grid-area: date;
}

.p-post__category {
	grid-area: cat;
}

.p-post__detail {
	display: grid;
	grid-template: "date  cat" auto "title title" auto/auto 1fr;
	-moz-column-gap: 12px;
	column-gap: 12px;
}

.p-post__image {
	position: relative;
	aspect-ratio: 300/220;
	border-radius: 5px;
	overflow: hidden;
}

.p-post__image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	scale: var(--p-post-image-scale, 1);
	transition-property: scale;
	transition-duration: var(--sec);
}

.p-post__detail {
	-webkit-padding-before: 17px;
	padding-block-start: 17px;
}

.p-post__date {
	font-family: var(--ff-sans-serif2);
}

.p-post__category {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 12px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding-inline: 12px;
	border-inline: 1px solid;
}

.p-post__title {
	-webkit-margin-before: 10px;
	margin-block-start: 10px;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.875;
}

.p-post:focus-visible {
	color: var(--color-primary);
	--p-post-image-scale: var(--zoom);
}

.p-thanks {
	text-align: center;
}

.p-thanks__title {
	-webkit-margin-after: 14px;
	margin-block-end: 14px;
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.7;
	text-align: center;
}

.p-thanks__link {
	color: var(--color-primary);
	font-weight: 700;
}

[data-tel] a {
	color: inherit;
	text-decoration: underline;
}

[data-details] summary { /* Safariで表示されるデフォルトの三角形アイコンを削除 */
	display: block;
	cursor: pointer;
}

[data-details] summary::-webkit-details-marker {
	display: none;
}

html.noscroll {
	overflow: hidden;
}

/*全画面*/

.g-wrapper {
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	flex-direction: column;
	-webkit-padding-before: var(--header-size);
	padding-block-start: var(--header-size);
	background-color: var(--color-bg-base);
}

/*ヘッダー*/

.g-header {
	position: fixed;
	z-index: var(--header-z-index);
	top: 0;
	left: 0;
	width: 100%;
	line-height: normal;
	background-color: var(--color-light);
}

.g-header .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
	-moz-column-gap: 10px;
	column-gap: 10px;
	height: var(--header-size);
	padding: 10px 40px 20px 20px;
	position: relative;
}

.g-header .language {
	position: absolute;
	top: 30px;
	right: 30px;
	display: flex;
	gap: 10px;
}
.g-header .language a:hover{
	color: var(--color-primary);
	text-decoration: none;
}
.g-header .language .line {
	width: 1px;
	border-inline-end: 1px solid;
}

.g-header .logo {
	width: 200px;
}

.g-header .navi {
	display: flex;
	-moz-column-gap: 28px;
	column-gap: 28px;
}

.g-header .navi__item:focus-visible {
	--g-navi-color: var(--color-primary);
}

.g-header .navi__item.is-open {
	--g-navi-color: var(--color-primary);
}

.g-header .navi__button {
	position: relative;
	display: flex;
	align-items: center;
	height: 30px;
	color: var(--g-navi-color, inherit);
	font-weight: 700;
	text-decoration: none;
	--letter-spacing: 0.1em;
	cursor: pointer;
	letter-spacing: 0;
}

.g-header .navi__button:not(:last-child)::after {
	content: "";
	position: absolute;
	inset-inline: 0;
	bottom: -10px;
	margin-inline: auto;
	width: 12px;
	aspect-ratio: 12/8;
	background-color: var(--color-primary);
	-webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.g-header .navi__child .c-button__icon{
	min-width: 25px;
	margin-inline-end: 0;
}

.g-header .mega {
	position: fixed;
	top: var(--header-size);
	left: 50%;
    padding-inline: 20px;
    transform: translateX(-50%);
}

.g-header .mega__inner {
	max-height: calc(100dvh - var(--header-size));
	overflow-y: auto;
	padding: 43px 50px 50px;
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
	background-color: var(--color-bg-pale);
}

.g-header .mega__top {
	display: flex;
	align-items: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	-webkit-margin-after: 30px;
	margin-block-end: 30px;
	text-decoration: none;
}

.g-header .mega__icon {
	-webkit-margin-end: 14px;
	margin-inline-end: 14px;
}

.g-header .mega__title {
	font-weight: 700;
	font-size: 1.5rem;
}

.g-header .mega__arrow {
	-webkit-margin-start: 20px;
	margin-inline-start: 20px;
}

.g-header .mega__list {
	display: grid;
	grid-template-columns: repeat(3, 280px);
	gap: 30px;
}

.g-header .post {
	display: flex;
	flex-direction: column;
	text-decoration: none;
}

.g-header .post__image {
	order: -10;
	position: relative;
	aspect-ratio: 560/320;
	border-radius: 5px;
	overflow: hidden;
}

.g-header .post__image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	scale: var(--g-header-image-scale, 1);
	transition-property: scale;
	transition-duration: var(--sec);
}

.g-header .post__detail {
	display: flex;
	justify-content: space-between;
	align-items: center;
	-moz-column-gap: 10px;
	column-gap: 10px;
	-webkit-padding-before: 10px;
	padding-block-start: 10px;
}

.g-header .post__title {
	font-weight: 700;
}

.g-header .post:focus-visible {
	color: var(--color-primary);
	--g-header-image-scale: var(--zoom);
}

/*フッター*/

.g-footer {
	color: var(--color-light);
	background-color: var(--color-bg-dark);
}

.g-footer .inner {
	position: relative;
	padding-block: 105px 35px;
}

.g-footer .pagetop {
	position: absolute;
	top: -80px;
	right: 20px;
	display: grid;
	overflow: hidden;
}

.g-footer .pagetop__body {
	grid-area: 1/1/2/2;
}

.g-footer .pagetop__flag {
	grid-area: 1/1/2/2;
	translate: 0 10px;
	transition-property: translate;
	transition-duration: var(--sec-fast);
}

.g-footer .pagetop:focus-visible .pagetop__flag {
	translate: 0 0;
}

.g-footer .container {
	display: grid;
	grid-template-columns: repeat(2, auto);
	justify-content: space-between;
	max-width: 1000px;
	margin-inline: auto;
}

.g-footer .container a img {
	transition-property: opacity;
	transition-duration: var(--sec);
}

.g-footer .container a:focus-visible img {
	opacity: 0.5;
}

.g-footer .info {
	font-size: 0.875rem;
}

.g-footer .info__detail {
	max-width: 370px;
}

.g-footer .info__logo {
	width: 310px;
	-webkit-margin-after: 30px;
	margin-block-end: 30px;
	border-radius: 5px;
	overflow: hidden;
}

.g-footer .info__name {
	-webkit-margin-after: 16px;
	margin-block-end: 16px;
	font-weight: 700;
	font-size: 0.95rem;
	line-height: normal;
}

.g-footer .info__data {
	-webkit-padding-start: 6px;
	padding-inline-start: 6px;
	font-family: var(--ff-sans-serif2);
}

.g-footer .data {
	display: flex;
	flex-wrap: wrap;
	-moz-column-gap: 2em;
	column-gap: 2em;
	font-weight: 700;
}

.g-footer .data__item {
	display: flex;
	align-items: baseline;
	-moz-column-gap: 1em;
	column-gap: 1em;
}

.g-footer .sns {
	display: flex;
	align-items: center;
	-moz-column-gap: 14px;
	column-gap: 14px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	-webkit-margin-before: 20px;
	margin-block-start: 20px;
	padding: 12px 21px 14px 14px;
	line-height: normal;
	border-radius: 5px;
	background-color: var(--color-light);
}

.g-footer .navi {
	display: flex;
	align-items: start;
	-moz-column-gap: 52px;
	column-gap: 52px;
	row-gap: 22px;
	-webkit-padding-end: 18px;
	padding-inline-end: 18px;
	line-height: normal;
	--letter-spacing: 0;
}

.g-footer .navi__list {
	display: flex;
	flex-direction: column;
	row-gap: 22px;
}

.g-footer .navi__link {
	display: inline-grid;
	grid-template-columns: auto 1fr;
	align-items: baseline;
	-moz-column-gap: 8px;
	column-gap: 8px;
	font-weight: 700;
	text-decoration: none;
}

.g-footer .navi__link::before,
.g-footer .navi__link::after {
	grid-area: 1/1/2/2;
	content: "";
	display: block;
	width: 12px;
	aspect-ratio: 1/1;
	border-radius: 9999px;
	background-color: currentColor;
	transition-duration: scale;
	transition-property: var(--sec);
}

.g-footer .navi__link::after {
	background-color: var(--color-primary);
	scale: 0;
}

.g-footer .navi__link:focus-visible::after {
	scale: 0.6;
}

.g-footer .navi__button {
	position: relative;
	-webkit-margin-start: 5px;
	margin-inline-start: 5px;
	font-weight: 700;
	font-size: 1rem;
}

.g-footer .navi__button::before {
	content: "";
	position: absolute;
	inset: -10px -20px -10px -10px;
}

.g-footer .child {
	display: none;
	font-size: 0.875rem;
}

.g-footer .child__list {
	display: flex;
	flex-direction: column;
	row-gap: 15px;
	-webkit-padding-before: 18px;
	padding-block-start: 18px;
	-webkit-padding-start: 22px;
	padding-inline-start: 22px;
}

.g-footer .copyright {
	-webkit-margin-before: 73px;
	margin-block-start: 73px;
	font-weight: 700;
	font-size: 0.875rem;
	text-align: center;
}

/*メイン*/

.g-main {
	display: block;
	flex-grow: 1;
}

.g-main:after {
	content: " ";
	display: block;
	clear: both;
}

/*メニュー*/

.g-menu {
	opacity: 0;
	visibility: hidden;
	position: fixed;
	z-index: calc(var(--header-z-index) - 10);
	inset: 0;
	width: calc(var(--vw) * 100);
	height: 100dvh;
	color: var(--color-light);
	line-height: normal;
	background-color: var(--color-bg-dark);
	transition-property: opacity, visibility;
	transition-duration: var(--sec);
	overflow: hidden;
}

.g-menu.is-open {
	opacity: 1;
	visibility: visible;
}

.g-menu .inner {
	height: 100%;
	padding-block: calc(var(--header-size) + 40px) 40px;
	overflow-y: scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.g-menu .inner::-webkit-scrollbar {
	display: none;
}

.g-menu .navi {
	display: flex;
	flex-direction: column;
	row-gap: 25px;
	padding-inline: 25px;
}

.g-menu .navi__button {
	display: flex;
	align-items: center;
	-moz-column-gap: 6px;
	column-gap: 6px;
	font-weight: 700;
	font-size: 1rem;
	--letter-spacing: 0.1em;
}

.g-menu .navi__button[data-details-summary]::after {
	content: "";
	display: block;
	width: 12px;
	aspect-ratio: 24/16;
	background-color: var(--color-light);
	-webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.g-menu .navi__item.is-open .navi__button::after {
	scale: 1 -1;
}

.g-menu .mega {
	--c-arrow-width: 25px;
	--c-arrow-img-size: 10px;
	-webkit-padding-before: 15px;
	padding-block-start: 15px;
	color: var(--color-base);
}

.g-menu .mega__inner {
	margin-inline: -25px;
	padding: 25px;
	border-radius: 10px;
	background-color: var(--color-bg-pale);
}

.g-menu .mega__top {
	display: flex;
	align-items: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	-webkit-margin-after: 30px;
	margin-block-end: 30px;
	text-decoration: none;
}

.g-menu .mega__icon {
	-webkit-margin-end: 12px;
	margin-inline-end: 12px;
}

.g-menu .mega__icon svg {
	width: 28px;
}

.g-menu .mega__title {
	font-weight: 700;
	font-size: 0.875rem;
}

.g-menu .mega__arrow {
	-webkit-margin-start: 10px;
	margin-inline-start: 10px;
}

.g-menu .mega__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px 15px;
}

.g-menu .post {
	display: flex;
	flex-direction: column;
	text-decoration: none;
}

.g-menu .post__image {
	order: -10;
	position: relative;
	aspect-ratio: 280/160;
	border-radius: 5px;
	overflow: hidden;
}

.g-menu .post__image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.g-menu .post__detail {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	-moz-column-gap: 5px;
	column-gap: 5px;
	-webkit-padding-before: 7px;
	padding-block-start: 7px;
}

.g-menu .post__title {
	font-weight: 700;
	font-size: 0.875rem;
	line-height: 1.5;
}

.g-menu .sns {
	display: flex;
	align-items: center;
	justify-content: space-between;
	-moz-column-gap: 14px;
	column-gap: 14px;
	max-width: 345px;
	-webkit-margin-before: 20px;
	margin-block-start: 20px;
	padding: 12px 21px 14px 14px;
	line-height: normal;
	border-radius: 5px;
	background-color: var(--color-light);
}

.q-access {
	--l-row-gap: var(--space-block-medium);
}

.q-access .map {
	-webkit-margin-before: 46px;
	margin-block-start: 46px;
}

.q-access .access {
	padding: 40px 90px;
	background-color: var(--color-bg-pale);
}

.q-access .guide {
	display: grid;
	grid-template: "map copy" auto "map desc" auto "map info" 1fr/1fr 530px;
	-moz-column-gap: 40px;
	column-gap: 40px;
}

.q-access .guide__copy {
	grid-area: copy;
}

.q-access .guide__map {
	grid-area: map;
}

.q-access .guide__desc {
	grid-area: desc;
}

.q-access .guide__info {
	grid-area: info;
}

.q-access .guide__copy {
	-webkit-margin-after: 14px;
	margin-block-end: 14px;
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 1.9166666667;
}

.q-access .guide__map {
	position: relative;
	min-width: 0;
}

.q-access .guide__map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.q-access .info {
	position: relative;
	-webkit-margin-before: 22px;
	margin-block-start: 22px;
	padding: 22px 30px;
	border-radius: 10px;
	line-height: normal;
	background-color: var(--color-light);
	overflow: hidden;
}

.q-access .info::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 7px;
	background-color: var(--color-primary);
}

.q-access .info__item {
	display: grid;
	grid-template-columns: auto 1fr;
}

.q-access .info__item:not(:last-child) {
	-webkit-margin-after: 10px;
	margin-block-end: 10px;
}

.q-access .info__item dt {
	font-weight: 700;
	padding-inline-end: 0.4em;
}

.q-access .info__link {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	-moz-column-gap: 14px;
	column-gap: 14px;
	-webkit-margin-before: 15px;
	margin-block-start: 15px;
}

.q-access .info .c-button {
	-webkit-margin-end: 10px;
	margin-inline-end: 10px;
}

.q-area-detail .eyecatch img {
	width: 100%;
}

.q-area-detail .feature {
	margin-top: 37px;
	display: grid;
	grid-template-columns: auto 1fr;
	-moz-column-gap: 39px;
	column-gap: 39px;
	padding-bottom: 50px;
}

.q-area-detail .feature__title {
	text-align: center;
}

.q-area-detail .feature__copy {
	-webkit-margin-after: 8px;
	margin-block-end: 8px;
	color: var(--color-primary);
	font-family: var(--ff-sans-serif2);
	--letter-spacing: 0.2em;
}

.q-area-detail .note {
	-webkit-margin-after: 10px;
	margin-block-end: 10px;
	font-size: 0.75rem;
}

.q-area-detail .flag {
	-webkit-margin-after: 5px;
	margin-block-end: 5px;
	padding: 10px 0 0 10px;
	line-height: 1.4;
	background-repeat: no-repeat;
	background-position: top left;
	background-image: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="19.308" height="17.896" viewBox="0 0 19.308 17.896"><g transform="translate(0.078 0.095)"><path d="M0,5V0" transform="translate(12.387 0) rotate(11)" fill="none" stroke="%23333" stroke-width="1"/><path d="M0,5V0" transform="matrix(0.848, 0.53, -0.53, 0.848, 18.806, 2.301)" fill="none" stroke="%23333" stroke-width="1"/><path d="M0,5V0" transform="translate(4.197 2.301) rotate(-40)" fill="none" stroke="%23333" stroke-width="1"/><path d="M0,5V0" transform="translate(0 9.221) rotate(-81)" fill="none" stroke="%23333" stroke-width="1"/><path d="M0,5V0" transform="translate(1.136 17.334) rotate(-111)" fill="none" stroke="%23333" stroke-width="1"/></g></svg>');
}

.q-area-detail .flag__pole {
	-webkit-padding-after: 10px;
	padding-block-end: 10px;
	-webkit-border-start: 3px solid;
	border-inline-start: 3px solid;
}

.q-area-detail .flag__title {
	position: relative;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	min-width: 146px;
	-webkit-margin-start: 2px;
	margin-inline-start: 2px;
	padding: 3px 14px 5px 13px;
	border: 1px solid;
	-webkit-border-end: 0;
	border-inline-end: 0;
	font-weight: 700;
	font-size: 0.9375rem;
	text-align: center;
}

.q-area-detail .flag__title::before,
.q-area-detail .flag__title::after {
	content: "";
	display: block;
	position: absolute;
	right: 0;
	width: 3px;
	height: 50%;
	border: 1px solid;
	background-color: var(--color-primary);
}

.q-area-detail .flag__title::before {
	top: 0;
	transform: skewX(-20deg);
	transform-origin: top right;
}

.q-area-detail .flag__title::after {
	bottom: 0;
	transform: skewX(20deg);
	transform-origin: bottom right;
}

.q-area-detail .list1 {
	--l-row-gap: 30px;
}

.q-area-detail .list1__item {
	display: grid;
	grid-template-columns: 360px 1fr;
	-moz-column-gap: 45px;
	column-gap: 45px;
}

.q-area-detail .list1__image {
	grid-area: 1/1/2/2;
}

.q-area-detail .list1__image img {
	width: 100%;
}

.q-area-detail .list1__term {
	-webkit-margin-after: 5px;
	margin-block-end: 5px;
	color: var(--color-primary);
	font-weight: 700;
	font-size: 1.125rem;
	line-height: 1.85;
}

.q-area-detail .list2 {
	--l-tile-rowGap: 20px;
}

.q-area-detail .list2__image img {
	width: 100%;
}

.q-area-detail .list2__detail {
	-webkit-padding-before: 7px;
	padding-block-start: 7px;
}

.q-area-detail .list2__title {
	font-weight: 700;
	line-height: 1.75;
}

.q-area-detail .sight__head {
	-webkit-margin-after: 40px;
	margin-block-end: 40px;
}

.q-area-detail .sight__heading {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: baseline;
	-moz-column-gap: 10px;
	column-gap: 10px;
	-webkit-margin-after: 15px;
	margin-block-end: 15px;
	-webkit-padding-after: 8px;
	padding-block-end: 8px;
	-webkit-border-after: 1px solid;
	border-block-end: 1px solid;
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.8;
}

.q-area-detail .sight__icon svg {
	translate: 0 9px;
}

.q-area-detail .sight__exp {
	font-weight: 700;
}

.q-area-detail .sight__posts {
	--l-row-gap: 40px;
}

.q-area-detail .sight-post__heading {
	position: relative;
	-webkit-margin-after: 20px;
	margin-block-end: 20px;
	-webkit-padding-after: 13px;
	padding-block-end: 13px;
	-webkit-border-after: 1px solid;
	border-block-end: 1px solid;
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.8;
}

.q-area-detail .sight-post__image {
	grid-area: image;
}

.q-area-detail .sight-post__tags {
	grid-area: tags;
	align-self: start;
}

.q-area-detail .sight-post__detail {
	grid-area: detail;
}

.q-area-detail .sight-post__body .sight-post__tags {
	-webkit-margin-after: 10px;
	margin-block-end: 10px;
}

.q-area-detail .sight-post__image {
	-webkit-margin-after: 12px;
	margin-block-end: 12px;
}

.q-area-detail .sight-post__image img {
	width: 100%;
}

.q-area-detail .sight-post__map {
	-webkit-margin-before: 15px;
	margin-block-start: 15px;
}

.q-area-detail .sight-post__tags {
	display: flex;
	align-items: start;
	flex-wrap: wrap;
	gap: 10px;
}

.q-area-detail .sight-post__tag {
	padding: 3px 8px;
	border: 1px solid var(--q-tag-themeColor, var(--color-primary));
	border-radius: 4px;
	color: var(--color-primary);
	font-weight: 700;
	font-size: 0.875rem;
	line-height: normal;
	background-color: var(--q-tag-themeColor, var(--color-light));
}

.q-area-detail .sight-post__tag[class*=" _"] {
	color: var(--color-light);
}

.q-area-detail .sight-post__tag._geo {
	--q-tag-themeColor: var(--color-geo);
}

.q-area-detail .sight-post__tag._caltural {
	--q-tag-themeColor: var(--color-caltural);
}

.q-area-detail .sight-post__tag._eco {
	--q-tag-themeColor: var(--color-eco);
}

.q-area-detail .sight-post__tag._ikeda {
	--q-tag-themeColor: var(--color-ikeda);
}

.q-area-detail .sight-post__tag._oboke-koboke-iyakei {
	--q-tag-themeColor: var(--color-oboke-koboke-iyakei);
}

.q-area-detail .sight-post__tag._iya {
	--q-tag-themeColor: var(--color-iya);
}

.q-area-detail .sight-post__tag._tsurugisan-miune-tenguzuka {
	--q-tag-themeColor: var(--color-tsurugisan-miune-tenguzuka);
}

.q-area-detail .sight-post__tag._ikawa-higashimiyoshi {
	--q-tag-themeColor: var(--color-ikawa-higashimiyoshi);
}

.q-area-detail .sight-post__tag._mino {
	--q-tag-themeColor: var(--color-mino);
}

.q-area-detail .other {
	display: grid;
	grid-template-columns: 127px auto;
	min-height: 110px;
	border: 2px solid var(--q-other-themeColor);
	border-block-end-width: 6px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.85;
	text-decoration: none;
	overflow: hidden;
	transition-property: background-color;
	transition-duration: var(--sec-fast);
}

.q-area-detail .other_wrapper {
	--q-other-themeColor: var(--color-light);
}

.q-area-detail .other__image {
	grid-area: 1/1/2/2;
}

.q-area-detail .other__image img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.q-area-detail .other__detail {
	align-self: center;
	padding: 10px 20px 10px 35px;
}

.q-area-detail .other[aria-current=page] {
	color: var(--color-light);
	background-color: var(--q-other-themeColor);
}

.q-area-detail .other:focus-visible {
	color: var(--color-light);
	background-color: var(--q-other-themeColor);
}

.q-area-detail .other._ikeda {
	--q-other-themeColor: var(--color-ikeda);
}

.q-area-detail .other._oboke-koboke-iyakei {
	--q-other-themeColor: var(--color-oboke-koboke-iyakei);
}

.q-area-detail .other._iya {
	--q-other-themeColor: var(--color-iya);
}

.q-area-detail .other._tsurugisan-miune-tenguzuka {
	--q-other-themeColor: var(--color-tsurugisan-miune-tenguzuka);
}

.q-area-detail .other._ikawa-higashimiyoshi {
	--q-other-themeColor: var(--color-ikawa-higashimiyoshi);
}

.q-area-detail .other._mino {
	--q-other-themeColor: var(--color-mino);
}

.q-area-detail .attention {
	border: 1px solid;
	padding: 20px;
	border-radius: 5px;
}

.q-ikawa .minoda-oohashi__item {
	margin-bottom: 30px;
}

.q-ikawa .minoda-oohashi .l-column-gap {
	display: grid;
	grid-template-columns: 360px 1fr;
	gap: 45px;
}

.q-ikawa .minoda-oohashi__copy {
	color: var(--color-primary);
	font-size: 1.125em;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 2.055555;
}

.q-iya .dodai-history .c-text {
	margin-bottom: 30px;
}

.q-iya .dodai-history .l-column-gap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px 40px;
}

.q-iya .dodai-history__desc {
	margin-top: 20px;
	color: var(--color-primary);
	font-size: 1.125em;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 2.055555;
}

.q-iya .dodai-history__desc._first {
	max-width: 564px;
}

.q-iya .dodai-history__desc._second {
	max-width: 505px;
}

.q-mino .heiya-history.l-column-gap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px 40px;
}

.q-mino .heiya-history__desc {
	margin-top: 20px;
	color: var(--color-primary);
	font-size: 1.125em;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 2.05555;
}

.q-oboke-koboke-iyakei .origin__head {
	-webkit-margin-after: 30px;
	margin-block-end: 30px;
}

.q-oboke-koboke-iyakei .origin__copy {
	color: var(--color-primary);
	font-weight: 700;
	font-size: 1.125rem;
}

.q-oboke-koboke-iyakei .origin__image {
	-webkit-margin-after: 40px;
	margin-block-end: 40px;
}

.q-oboke-koboke-iyakei .origin__image img {
	width: 100%;
}

.q-oboke-koboke-iyakei .origin__list {
	margin-block: 10px 30px;
}

.q-oboke-koboke-iyakei .origin__list img {
	width: 100%;
}

.q-tsurugisan .kouhou-history__item {
	margin-bottom: 30px;
}

.q-tsurugisan .kouhou-history .l-column-gap {
	display: grid;
	grid-template-columns: auto 44%;
	gap: 40px;
}

.q-tsurugisan .kouhou-history__copy {
	color: var(--color-primary);
	font-size: 1.125em;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 2.055555;
}

.q-area .head {
	-webkit-margin-after: 84px;
	margin-block-end: 84px;
}

.q-area .image {
	-webkit-margin-before: 40px;
	margin-block-start: 40px;
}

.q-area .image img {
	width: 100%;
}

/* concerned-parties */

.q-miyoshi-concerned-navi {
	margin-bottom: 35px;
}

.q-miyoshi-concerned-navi .anchor {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.q-miyoshi-concerned-navi .anchor .link {
	font-size: 1rem;
	line-height: 1.2857142857;
	font-weight: 700;
	color: var(--color-base);
	background: var(--color-bg-pale2);
	width: 100%;
	height: 60px;
	border-radius: 10px 10px 0 0;
	padding: 0 21px 0 15px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-decoration: none;
	position: relative;
	transition-property: background-color;
	transition-duration: var(--sec);
}

.q-miyoshi-concerned-navi .anchor .link::after {
	content: "";
	width: 100%;
	height: 2px;
	background: var(--color-primary);
	position: absolute;
	left: 0;
	bottom: 2px;
	transition-property: background-color;
	transition-duration: var(--sec);
}

.q-miyoshi-concerned-navi .anchor .link:hover {
	color: var(--color-light);
	background: var(--color-primary);
}

.q-miyoshi-concerned-navi .anchor .link:hover::after {
	background: var(--color-bg-pale2);
}

.q-miyoshi-concerned-navi .anchor .link:hover .icon {
	color: var(--color-bg-pale2);
}

.q-miyoshi-concerned-navi .anchor .link:hover .arrow {
	color: var(--color-bg-pale2);
}

.q-miyoshi-concerned-navi .anchor .link .icon {
	width: 30px;
	color: var(--color-primary);
}

.q-miyoshi-concerned-navi .anchor .link .text {
	padding: 0 5px;
	width: calc(100% - 44px);
	text-align: center;
}

.q-miyoshi-concerned-navi .anchor .link .arrow {
	width: 14px;
	color: var(--color-primary);
	transform: rotate(90deg);
}

.q-miyoshi-concerned {
	padding-top: 30px;
	margin-top: -30px;
}

.q-miyoshi-concerned .c-text ._color-bold {
	font-weight: 700;
}

.q-miyoshi-concerned .c-text ._color-green {
	color: var(--color-primary);
}

.q-miyoshi-concerned .c-text a {
	color: var(--color-primary);
	text-decoration: underline;
}

.q-miyoshi-concerned .c-text a:focus-visible {
	text-decoration: none;
}

.q-miyoshi-concerned .content {
	margin-bottom: 60px;
}

.q-miyoshi-concerned .content:last-child {
	margin-bottom: 0;
}

.q-miyoshi-concerned .content .c-link[target=_blank]::after {
	width: 20px;
	height: 20px;
}

.q-miyoshi-concerned .list1 {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.q-miyoshi-concerned .list1 .image {
	margin: 0 auto 20px;
}

.q-miyoshi-concerned .list1 .image img {
	max-width: none;
	width: 100%;
}

.q-miyoshi-concerned .list1 .title {
	display: flex;
	align-items: center;
	width: 100%;
	margin-bottom: 13px;
}

.q-miyoshi-concerned .list1 .title__s1 {
	background-color: var(--color-primary);
	color: var(--color-light);
	font-family: var(--ff-sans-serif2);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 1.5rem;
	line-height: 1.5;
	width: 48px;
	height: 48px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-right: 12px;
}

.q-miyoshi-concerned .list1 .title__s2 {
	width: calc(100% - 60px);
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5652173913;
}

.q-miyoshi-concerned .list1 .sub-text {
	margin-top: 5px;
	font-size: 0.875rem;
	line-height: 1.7142857143;
	color: var(--color-inactive);
}

.q-miyoshi-concerned .list2 li {
	margin-bottom: 15px;
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 1100px;
}

.q-miyoshi-concerned .list2 li:last-child {
	margin-bottom: 0;
}

.q-miyoshi-concerned .list2 .text {
	margin-right: 20px;
}

.q-miyoshi-concerned .list2 .button .c-button {
	width: 150px;
	height: 40px;
}

.q-miyoshi-concerned .button1 .c-button {
	width: 440px;
	height: 80px;
}

.q-miyoshi-concerned .button2 {
	width: 100%;
	max-width: 860px;
}

.q-miyoshi-concerned .button2._wide {
	width: 100%;
	max-width: none;
}

.q-miyoshi-concerned .button2 .c-button_wrapper {
	justify-content: center;
}

.q-miyoshi-concerned .faq__item {
	margin-bottom: 29px;
}

.q-miyoshi-concerned .faq__item:last-child {
	margin-bottom: 0;
}

.q-miyoshi-concerned .faq .question {
	display: flex;
	align-items: center;
	width: 100%;
	margin-bottom: 15px;
}

.q-miyoshi-concerned .faq .question__s1 {
	background-color: var(--color-primary);
	color: var(--color-light);
	font-family: var(--ff-sans-serif2);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 1.5rem;
	line-height: 1.5;
	width: 40px;
	height: 40px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-right: 10px;
	padding-bottom: 3px;
}

.q-miyoshi-concerned .faq .question__s2 {
	width: calc(100% - 50px);
	color: var(--color-primary);
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5652173913;
}

.q-miyoshi-concerned .recruitment {
	margin-top: 40px;
	width: 100%;
	max-width: 860px;
	padding: 47px 0 29px;
	text-align: center;
}

.q-miyoshi-concerned .recruitment__text1 {
	color: var(--color-primary);
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.125;
	padding: 0 20px;
	margin-bottom: 36px;
}

.q-miyoshi-concerned .recruitment__text2 {
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	background: var(--color-light);
	border-radius: 9999px;
	width: 100%;
	max-width: 680px;
	margin: 0 auto;
	padding: 10px 20px;
}

.q-miyoshi-concerned .recruitment__text2 span {
	color: var(--color-attention);
}

.q-miyoshi-concerned .logo {
	display: flex;
	flex-wrap: nowrap;
	width: 100%;
	margin-bottom: -12px;
}

.q-miyoshi-concerned .logo__image {
	width: 168px;
	min-width: 168px;
	margin-right: 30px;
}

.q-miyoshi-concerned .logo .title {
	font-weight: 700;
	font-size: 1.125rem;
	line-height: 2;
}

.q-contact {
	--l-row-gap: 90px;
}

.q-contact .heading {
	display: flex;
	-moz-column-gap: 14px;
	column-gap: 14px;
	line-height: 1.8;
}

.q-contact .heading__title {
	font-weight: 700;
	font-size: 1.625rem;
}

.q-contact .tel {
	padding: 43px var(--space-inline) 20px;
	text-align: center;
	line-height: normal;
	background-color: var(--color-bg-pale2);
}

.q-contact .tel__title {
	-webkit-margin-after: 20px;
	margin-block-end: 20px;
	font-weight: 700;
}

.q-contact .tel__number {
	font-family: var(--ff-sans-serif2);
	font-weight: 700;
	font-size: 2rem;
	--letter-spacing: 0.1em;
}

.q-contact .tel__time {
	-webkit-margin-before: 10px;
	margin-block-start: 10px;
	font-size: 0.875rem;
}

.q-contact .text {
	-webkit-margin-before: 8px;
	margin-block-start: 8px;
	-webkit-margin-after: 32px;
	margin-block-end: 32px;
}

.q-contact .text a {
	text-decoration: underline;
}

.q-contact .text a:focus-visible {
	text-decoration: none;
}

/* ↓20250708追加 */
.q-contact .guidetour_content{
	margin-top: 30px;
	text-align: center;
}
.q-contact .guidetour_text-l{
	font-size: 16px;
	font-weight: 700;
}
.q-contact .guidetour_text{
	font-size: 25px;
	font-weight: 700;
	line-height: 1.2;
	margin-top: 10px;
}
/* ↑20250708追加 */

.q-download .head {
	-webkit-margin-after: 44px;
	margin-block-end: 44px;
}

.q-download .download {
	position: relative;
	display: flex;
	flex-direction: column;
	text-decoration: none;
}

.q-download .download__image {
	order: -10;
	position: relative;
	aspect-ratio: 340/360;
	-webkit-margin-after: 20px;
	margin-block-end: 20px;
	border: 1px solid var(--color-border2);
	border-radius: 5px;
	overflow: hidden;
}

.q-download .download__image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	scale: var(--q-download-image-scale, 1);
	transition-property: scale;
	transition-duration: var(--sec);
}

.q-download .download__title {
	font-weight: 700;
	line-height: 1.875;
}

.q-download .download__button {
	-webkit-margin-before: 20px;
	margin-block-start: 20px;
}

.q-download .download a {
	position: static;
	padding-inline: 30px;
}

.q-download .download a::after {
	content: "";
	position: absolute;
	inset: 0;
}

.q-download .download:has(a:hover) {
	color: var(--color-primary);
	--q-download-image-scale: var(--zoom);
}

/* miyoshi-geo-park-project */

.q-miyoshi-gpp-giopark .banner__pic {
	margin-bottom: 15px;
}

.q-miyoshi-gpp-about .landscape {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 62px;
}

.q-miyoshi-gpp-about .landscape__title {
	width: 100%;
	-webkit-margin-after: 30px;
	margin-block-end: 30px;
	font-weight: 700;
	font-size: 1.4375rem;
	line-height: 1.5652173913;
}

.q-miyoshi-gpp-about .landscape__detail {
	width: 48.4%;
	max-width: 570px;
	text-align: center;
}

.q-miyoshi-gpp-about .landscape__detail > div:nth-child(1) {
	margin-bottom: 5px;
}

.q-miyoshi-gpp-about .landscape__detail > div:nth-child(2) {
	width: 68%;
	margin: 0 auto;
}

.q-miyoshi-gpp-about .history__detail {
	width: 100%;
	margin-bottom: 41px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.q-miyoshi-gpp-about .history .title {
	width: 100%;
	margin: 0 auto 10px;
}

.q-miyoshi-gpp-about .history .title__text {
	line-height: 2;
	font-weight: 700;
	width: 260px;
	height: 62px;
	box-sizing: border-box;
	text-wrap: nowrap;
	padding: 10px 10px 10px 30px;
	display: flex;
	align-items: center;
	background: url(../img/miyoshi-geo-park-project/history_bg.png) no-repeat left top;
	background-size: 261px;
}

.q-miyoshi-gpp-about .history .title__s1 {
	font-size: 1.25rem;
	color: var(--color-primary);
	margin-right: 7px;
	display: inline-block;
}

.q-miyoshi-gpp-about .history .title__s2 {
	font-size: 1.125rem;
	letter-spacing: 0;
	display: inline-block;
}

.q-miyoshi-gpp-about .history .image1 {
	width: 48.4%;
	max-width: 570px;
}

.q-miyoshi-gpp-about .history .image2 {
	width: 48.4%;
	max-width: 570px;
}

.q-miyoshi-gpp-about .history .c-text {
	margin-top: 25px;
	width: 100%;
}

/* model-course */

.q-miyoshi-model-tokogio .detail {
	margin-bottom: -22px;
	padding: 40px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	background-color: var(--color-bg-pale);
}

.q-miyoshi-model-tokogio .detail__image {
	width: 44%;
}

.q-miyoshi-model-tokogio .detail__text {
	width: 52.7%;
}

.q-miyoshi-model-tokogio .detail__title {
	font-size: 1.5rem;
	line-height: 2;
	font-weight: 700;
	margin-top: -6px;
	margin-bottom: 14px;
}

.q-miyoshi-model-tokogio .detail__sub {
	margin-top: 20px;
	padding: 24px 30px;
	box-sizing: border-box;
}

.q-miyoshi-model-tokogio .detail__sub .info li {
	line-height: 1.8;
	margin-bottom: 5px;
}

.q-miyoshi-model-tokogio .detail__sub .info span {
	font-weight: 700;
}

.q-miyoshi-model-tokogio .detail__sub .button {
	margin-top: 17px;
}

.q-miyoshi-model-tokogio .detail__sub .button .c-button {
	width: 240px;
	height: 40px;
}

.q-miyoshi-model-course .head {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 63px;
	position: relative;
}

.q-miyoshi-model-course .head__text {
	width: 81%;
}

.q-miyoshi-model-course .head__image {
	width: 18.6%;
	position: relative;
}

.q-miyoshi-model-course .about {
	margin-bottom: 35px;
}

.q-miyoshi-model-course .about .c-heading-under2 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
}

.q-miyoshi-model-course .about .c-heading-under2 .number {
	font-size: 1.625rem;
	color: var(--color-primary);
	font-family: var(--ff-sans-serif2);
	margin-right: 9px;
}

.q-miyoshi-model-course .about .c-heading-under2 .text {
	margin-right: 10px;
}

.q-miyoshi-model-course .about .c-heading-under2 .time {
	font-size: 0.875rem;
	line-height: 1.8;
	background-color: var(--color-light);
	border-radius: 3px;
	padding: 10px 17px;
	text-align: center;
	box-sizing: border-box;
	margin-left: auto;
}

.q-miyoshi-model-course .course {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
	margin-bottom: 47px;
}

.q-miyoshi-model-course .course__map {
	width: 61%;
}

.q-miyoshi-model-course .course__map iframe {
	width: 100%;
	height: 480px;
}

.q-miyoshi-model-course .course__route {
	width: 35.6%;
}

.q-miyoshi-model-course .course__route .title {
	border-top: 2px solid var(--color-base);
	border-bottom: 1px solid var(--color-border2);
	font-size: 1.125rem;
	line-height: 1.8;
	color: var(--color-primary);
	font-weight: 700;
	padding: 10px 2px 14px;
	box-sizing: border-box;
	margin-bottom: 19px;
}

.q-miyoshi-model-course .course__route .title svg {
	display: inline-block;
	vertical-align: middle;
}

.q-miyoshi-model-course .course__route .title span {
	display: inline-block;
	vertical-align: middle;
}

.q-miyoshi-model-course .course__route ol li {
	display: flex;
	align-items: center;
	width: 100%;
	position: relative;
	margin-bottom: 18px;
	z-index: 2;
}

.q-miyoshi-model-course .course__route ol li::after {
	content: "";
	width: 2px;
	height: 100%;
	position: absolute;
	left: 19px;
	top: 20px;
	background-color: var(--color-primary);
}

.q-miyoshi-model-course .course__route ol li:last-child {
	margin-bottom: 0;
}

.q-miyoshi-model-course .course__route ol li:last-child::after {
	display: none;
}

.q-miyoshi-model-course .course__route ol .number {
	position: absolute;
	left: 0;
	top: -4px;
	width: 40px;
	height: 40px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 9999px;
	background-color: var(--color-primary);
	color: var(--color-light);
	font-family: var(--ff-sans-serif2);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 1.25rem;
	line-height: 1;
	z-index: 2;
}

.q-miyoshi-model-course .course__route ol .text {
	background-color: var(--color-bg-pale2);
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.2857142857;
	width: calc(100% - 20px);
	padding: 6px 20px 5px 32px;
	margin-left: auto;
}

.q-miyoshi-model-course .course__route ol .spot {
	color: var(--color-primary);
	background-color: var(--color-light);
	font-size: 0.75rem;
	line-height: 1.3846153846;
	display: inline-block;
	border-radius: 9999px;
	padding: 4px 8px;
	text-decoration: none !important;
}

.q-miyoshi-model-course .point .c-button {
	margin-bottom: 44px;
	line-height: 2.2;
}

.q-miyoshi-model-course .point ul {
	margin-top: 43px;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.q-miyoshi-model-course .point ul li {
	margin-bottom: 40px;
	width: 31%;
	margin-right: 3.5%;
}

.q-miyoshi-model-course .point ul li:nth-child(3n) {
	margin-right: 0;
}

.q-miyoshi-model-course .point .image {
	margin-bottom: 18px;
}

.q-miyoshi-model-course .point .image img {
	display: block;
	overflow: hidden;
	border-radius: 5px;
}

.q-miyoshi-model-course .point .caption {
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.4;
}

.q-miyoshi-model-course .point .caption span {
	display: block;
	margin-block-end: 5px;
}

.q-miyoshi-model-course .point .caption span::before {
	content: "▲";
	font-size: 0.875rem;
	color: var(--color-primary);
	margin-right: 4px;
}

.q-miyoshi-model-guide .number {
	font-size: 1.625rem;
	color: var(--color-primary);
	font-family: var(--ff-sans-serif2);
	margin-right: 9px;
}

.q-miyoshi-model-guide .detail {
	margin-top: 38px;
	margin-bottom: 8px;
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.q-miyoshi-model-guide .detail__info {
	width: 75.5%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 26px 30px 20px;
	box-sizing: border-box;
}

.q-miyoshi-model-guide .detail__text {
	width: 54%;
	border-right: 1px solid var(--color-border);
}

.q-miyoshi-model-guide .detail__text .title {
	font-weight: 700;
	font-size: 1.125rem;
	line-height: 2;
	margin-bottom: 10px;
}

.q-miyoshi-model-guide .detail__text .info {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.q-miyoshi-model-guide .detail__text .info li {
	line-height: 1.8;
	margin-bottom: 10px;
}

.q-miyoshi-model-guide .detail__text .info a {
	text-decoration: none !important;
}

.q-miyoshi-model-guide .detail__text .info span {
	font-weight: 700;
}

.q-miyoshi-model-guide .detail__text .info .en {
	font-family: var(--ff-sans-serif2);
	font-weight: 700;
	letter-spacing: 0.113em;
	width: auto;
	margin-right: 30px;
}

.q-miyoshi-model-guide .detail__button {
	width: 41%;
}

.q-miyoshi-model-guide .detail__image {
	width: 20.4%;
	margin-top: 15px;
}

.q-news-detail .article {
	max-width: 1000px;
	margin-inline: auto;
}

.q-news-detail .head {
	display: flex;
	flex-direction: column;
	-webkit-margin-after: 37px;
	margin-block-end: 37px;
}

.q-news-detail .info {
	order: -10;
	display: grid;
	grid-template-columns: auto auto 1fr;
	-moz-column-gap: 23px;
	column-gap: 23px;
	-webkit-margin-after: 30px;
	margin-block-end: 30px;
	line-height: normal;
}

.q-news-detail .info__date {
	font-family: var(--ff-sans-serif2);
	font-weight: 500;
}

.q-news-detail .info__category {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 10px;
	padding-inline: 23px;
	border-inline: 1px solid var(--color-border2);
}

.q-news-detail .tags {
	display: grid;
	grid-template-columns: auto 1fr;
	-moz-column-gap: 20px;
	column-gap: 20px;
	font-size: 0.875rem;
}

.q-news-detail .tags__list {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 20px;
}

.q-news-detail .tags__list a {
	display: block;
	color: var(--color-base-light);
}

.q-news-detail .tags__list a::before {
	content: "#";
}

.q-news-detail .heading {
	font-weight: 700;
	font-size: 1.75rem;
	line-height: 1.7142857143;
}

.q-news-detail .mv {
	max-width: 800px;
	margin-inline: auto;
	-webkit-margin-before: 40px;
	margin-block-start: 40px;
	border-radius: 5px;
	overflow: hidden;
}

.q-news-detail .mv img {
	width: 100%;
}

.q-news-detail .related {
	-webkit-margin-before: var(--space-block-large);
	margin-block-start: var(--space-block-large);
}

.q-news-detail .related__heading {
	display: flex;
	-moz-column-gap: 10px;
	column-gap: 10px;
	-webkit-margin-after: 20px;
	margin-block-end: 20px;
	-webkit-padding-start: 10px;
	padding-inline-start: 10px;
}

.q-news-detail .related__title {
	font-weight: 700;
	font-size: 1.625rem;
	line-height: 1.8;
}

.q-thought {
	--l-row-gap: 120px;
}

.q-thought .thought {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	-webkit-margin-before: 48px;
	margin-block-start: 48px;
	gap: 20px 1.6949152542%;
}

.q-thought .thought__item {
	max-width: 100%;
	width: 23.7288135593%;
	text-align: center;
}

.q-thought .thought img {
	width: 100%;
}

.q-thought .content {
	margin-bottom: 60px;
}

.q-thought .content:last-child {
	margin-bottom: 0;
}

.q-thought .content .c-text a {
	text-decoration: underline;
	color: var(--color-primary);
}

.q-thought .content .c-text a:focus-visible {
	text-decoration: none;
}

.q-thought .organization {
	--l-row-gap: 30px;
	text-align: center;
}

.q-top-mv {
	position: relative;
	color: var(--color-light);
	overflow: hidden;
}

.q-top-mv .copy {
	position: absolute;
	inset: 0;
	display: grid;
	place-content: center;
	z-index: 500;
	pointer-events: none;
}

.q-top-mv .copy img {
	pointer-events: auto;
}

.q-top-mv .movie {
	width: 100%;
	height: 100%;
	height: calc(100svh - var(--header-size));
}

.q-top-mv .movie video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.q-top-mv .scroll {
	position: absolute;
	z-index: 500;
	bottom: 0;
	left: 50%;
	translate: -50% 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-family: var(--ff-sans-serif2);
	--letter-spacing: 0.2em;
}

.q-top-mv .scroll::before,
.q-top-mv .scroll::after {
	content: "";
	display: block;
	background-color: currentColor;
}

.q-top-mv .scroll::before {
	order: 10;
	width: 11px;
	aspect-ratio: 1/1;
	border-radius: 9999px;
	-webkit-margin-before: 10px;
	margin-block-start: 10px;
}

.q-top-mv .scroll::after {
	order: 20;
	width: 1px;
	height: 60px;
}

.q-top-mv .thumb {
	position: absolute;
	z-index: 500;
	bottom: 46px;
	right: 34px;
	display: flex;
	flex-direction: column;
	row-gap: 25px;
}

.q-top-mv .thumb li {
	position: relative;
	isolation: isolate;
	width: 14px;
	aspect-ratio: 1/1;
	border-radius: 9999px;
	background-color: var(--color-light);
	opacity: 1 !important;
	cursor: pointer;
}

.q-top-mv .thumb li::before,
.q-top-mv .thumb li::after {
	content: "";
	position: absolute;
	margin: auto;
}

.q-top-mv .thumb li::before {
	inset: -10px;
}

.q-top-mv .thumb li::after {
	width: 6px;
	aspect-ratio: 1/1;
	inset: 0;
	border-radius: inherit;
	background-color: var(--color-primary);
	opacity: 0;
	transition-property: opacity;
	transition-duration: var(--sec);
}

.q-top-mv .thumb li.active::after {
	opacity: 1;
}

.q-top-what {
	display: flex;
	flex-direction: column;
}

.q-top-what .slide {
	order: -10;
	display: flex;
	padding-block: 8px 40px;
	overflow: hidden;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.q-top-what .slide__item {
	-webkit-padding-end: 80px;
	padding-inline-end: 80px;
	flex-shrink: 0;
	-webkit-animation-name: q-top-what-copy;
	animation-name: q-top-what-copy;
	-webkit-animation-duration: 30s;
	animation-duration: 30s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	--q-top-what-copy-end: -100% 0;
}

.q-top-what .slide img {
	max-width: none;
}

.q-top-what .what__container {
	display: grid;
	grid-template-columns: 1fr 506px;
	align-items: start;
	-moz-column-gap: 54px;
	column-gap: 54px;
}

.q-top-what .what__image {
	grid-area: 1/1/2/2;
	border-radius: 5px;
	overflow: hidden;
}

.q-top-what .copy {
	display: flex;
	flex-direction: column;
	-webkit-margin-after: 10px;
	margin-block-end: 10px;
	line-height: normal;
}

.q-top-what .copy__sub {
	order: -10;
	-webkit-margin-after: 5px;
	margin-block-end: 5px;
	color: var(--color-primary);
	font-family: var(--ff-sans-serif2);
	font-weight: 700;
	font-size: 1.125rem;
}

.q-top-what .copy__title {
	font-family: var(--typography-copy-font-family);
	font-weight: var(--typography-copy-font-weight);
	font-size: var(--typography-copy-font-size);
	line-height: var(--typography-copy-line-height);
	--letter-spacing: var(--typography-copy-letter-spacing);
}

.q-top-what .news__inner {
	position: relative;
	padding-block: 70px 80px;
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-rows: auto 1fr;
	align-items: start;
	-moz-column-gap: 50px;
	column-gap: 50px;
}

.q-top-what .news__body {
	grid-row: span 2;
}

.q-top-what .news__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	-moz-column-gap: var(--column3-small-gap);
	column-gap: var(--column3-small-gap);
}

.q-top-what .news__illust {
	position: absolute;
	top: -67px;
	left: 9px;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.q-top-area .guide {
	display: grid;
	grid-template-columns: 1fr;
	-webkit-margin-after: -20px;
	margin-block-end: -20px;
}

.q-top-area .guide__map {
	grid-area: 1/1/2/2;
}

.q-top-area .guide__content {
	padding-block: 18px 30px;
}

.q-top-area .guide__map {
	position: relative;
}

.q-top-area .guide__map img {
	width: 100%;
}

.q-top-area .guide__copy {
	position: absolute;
	z-index: 10;
	top: 0;
	right: 0;
	inline-size: 363px;
	block-size: 50px;
	padding-inline: 20px;
	border-bottom-left-radius: 30px;
	font-family: var(--ff-sans-serif2);
	--letter-spacing: 0.2em;
	line-height: 1;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	background-color: var(--color-light);
}

.q-top-area .guide__copy span {
	display: block;
	translate: 50% 0;
}

.q-top-area .guide__illust {
	-webkit-margin-before: 28px;
	margin-block-start: 28px;
	max-width: 411px;
	text-align: right;
}

.q-top-experiental {
	position: relative;
	isolation: isolate;
	display: grid;
	grid-template-columns: 1fr;
	align-items: end;
	overflow: hidden;
}

.q-top-experiental .image {
	grid-area: 1/1/2/2;
}

.q-top-experiental .image {
	overflow: hidden;
}

.q-top-experiental .detail {
	position: relative;
	padding-block: 135px;
}

.q-top-experiental .detail::before {
	content: "";
	position: absolute;
	z-index: -10;
	inset: 0 -10000px;
	background-color: var(--color-bg-pale);
}

.q-top-parties {
	--l-tile-rowGap: 20px;
	position: relative;
	isolation: isolate;
	color: var(--color-light);
}

.q-top-parties .bg::before {
	content: "";
	position: absolute;
	z-index: -10;
	inset: 0;
	background-color: rgba(var(--color-light-rgb), 0.1);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

.q-top-parties .bg img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	z-index: -20;
}

.q-top-parties .link {
	position: relative;
	display: grid;
	grid-template: "icon title" auto "icon exp" auto/auto 1fr;
	-moz-column-gap: 20px;
	column-gap: 20px;
	min-height: 180px;
	padding: 10px 10px 10px 30px;
	border: 4px solid transparent;
	border-radius: 30px 30px 30px 0;
	color: var(--color-base);
	text-decoration: none;
	background-color: var(--color-light);
	transition-property: border-color;
	transition-duration: var(--sec-fast);
}

.q-top-parties .link__icon {
	grid-area: icon;
	align-self: center;
}

.q-top-parties .link__title {
	grid-area: title;
	align-self: end;
}

.q-top-parties .link__exp {
	grid-area: exp;
	align-self: start;
}

.q-top-parties .link__title {
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.8;
}

.q-top-parties .link__exp {
	-webkit-padding-after: 4px;
	padding-block-end: 4px;
	font-weight: 700;
	font-size: 0.75rem;
}

.q-top-parties .link__arrow {
	position: absolute;
	bottom: 17px;
	right: 15px;
}

.q-top-parties .link:focus-visible {
	color: var(--color-primary);
	border-color: var(--color-primary);
}

.q-top-access {
	--l-column-rowGap: 40px;
}

.q-top-access .c-heading__title{
	grid-column: auto;
}

.q-top-access .illust {
	-webkit-margin-before: 20px;
	margin-block-start: 20px;
	text-align: right;
}

.q-top-link .l-tile {
	--l-tile-templateColumns-default: repeat(4,1fr);
	gap: 10px var(--column4-gap);
}

.q-top-link .l-tile a {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color-bg-base);
	padding: 10px;
	border-radius: 5px;
}

.q-top-link .l-tile a img {
	width: 100%;
}

@media (hover: hover) and (pointer: fine) {

.wp-pagenavi a:hover {
	color: var(--color-light);
	background-color: var(--color-base);
}

.wp-pagenavi a:hover::before {
	filter: invert(1) brightness(100);
}

.post_text a:hover {
	text-decoration: none;
}

.c-arrow_wrapper:hover {
	--c-arrow-color: var(--color-light);
	--c-arrow-backgroundColor: var(--color-primary);
}

.c-button._h_primary:hover {
	--c-button-color: var(--color-light);
	--c-button-backgroundColor: var(--color-primary);
}

.c-list-categories__list a:hover {
	color: var(--color-light);
	--c-list-categories-button-bg: var(--color-primary);
}

.c-pager a:hover {
	background-color: var(--color-primary);
}

.c-toggle._hover:hover .c-toggle__item._before {
	opacity: 0;
	visibility: hidden;
}

.c-toggle._hover:hover .c-toggle__item._after {
	opacity: 1;
	visibility: visible;
}

.p-area:hover {
	--p-area-image-scale: var(--zoom);
}

.p-area:hover .p-area__title,
.p-area:hover .p-area__sub {
	color: var(--color-primary);
}

.p-form__submit-button._confirm:hover,
.p-form__submit-button._submit:hover,
.p-form__submit-button._top:hover {
	background-color: var(--color-primary);
}

.p-post:hover {
	color: var(--color-primary);
	--p-post-image-scale: var(--zoom);
}

.g-header .navi__item:hover {
	--g-navi-color: var(--color-primary);
}

.g-header .post:hover {
	color: var(--color-primary);
	--g-header-image-scale: var(--zoom);
}

.g-footer .pagetop:hover .pagetop__flag {
	translate: 0 0;
}

.g-footer .container a:hover img {
	opacity: 0.5;
}

.g-footer .navi__link:hover::after {
	scale: 0.6;
}

.q-area-detail .other:hover {
	color: var(--color-light);
	background-color: var(--q-other-themeColor);
}

.q-miyoshi-concerned .c-text a:hover {
	text-decoration: none;
}

.q-contact .text a:hover {
	text-decoration: none;
}

.q-thought .content .c-text a:hover {
	text-decoration: none;
}

.q-top-parties .link:hover {
	color: var(--color-primary);
	border-color: var(--color-primary);
}

}

@media (min-width: 560.02px) {

.l-tile._2n {
	--l-tile-templateColumns-default: repeat(2,1fr);
}

.g-footer .child {
	display: block !important;
}

}

@media (min-width: 768.02px) {

.c-button._small-min-sp {
	grid-template-columns: auto auto;
	justify-content: space-between;
	width: 150px;
	min-height: 40px;
	padding-inline: 15px;
}

.c-button._small-min-sp::before {
	content: none;
}

.c-heading._horizontal-min-sp {
	grid-template-columns: auto 1fr;
	align-items: center;
	-moz-column-gap: 15px;
	column-gap: 15px;
	text-align: left;
}

.c-heading._horizontal-min-sp .c-heading__sub {
	grid-area: 1/2/2/3;
	translate: 0 -2px;
}

.c-heading._horizontal-min-sp .c-heading__title {
	-webkit-margin-before: 4px;
	margin-block-start: 4px;
	grid-column: span 2;
}

.c-text._pc_center {
	text-align: center;
}

.p-bottomnavi .p-bottomnavi__link:hover .p-bottomnavi__image:after {
	opacity: 0;
}

.p-bottomnavi .p-bottomnavi__image img {
	width: auto !important;
	height: 100% !important;
}

.p-form__item {
	display: grid;
	grid-template-columns: 210px 1fr;
	-moz-column-gap: 10px;
	column-gap: 10px;
}

.g-footer .info__br {
	display: none;
}

.q-area-detail .sight-post__body {
	display: grid;
	-moz-column-gap: 40px;
	column-gap: 40px;
	grid-template: "tags" auto "detail" auto/1fr;
}

.q-area-detail .sight-post__body:has(.sight-post__image) {
	grid-template: "image detail" auto "tags  detail" 1fr/450px 1fr;
}

.q-area-detail .sight-post__body:has(.sight-post__image) .sight-post__tags {
	-webkit-margin-after: 0;
	margin-block-end: 0;
}

.q-miyoshi-concerned-navi .anchor .anchor__item {
	width: 280px;
	margin-right: 29px;
	margin-bottom: 25px;
}

.q-miyoshi-concerned-navi .anchor .anchor__item:nth-child(4n) {
	margin-right: 0;
}

.q-miyoshi-concerned {
	-webkit-padding-after: 115px;
	padding-block-end: 115px;
}

.q-miyoshi-concerned .c-heading-under3 + .c-text {
	margin-top: -8px;
}

.q-miyoshi-concerned .content__box {
	margin-bottom: 56px;
}

.q-miyoshi-concerned .content__box:last-child {
	margin-bottom: 0;
}

.q-miyoshi-concerned .list1 li {
	width: 31%;
	margin-right: 3.5%;
	margin-bottom: 30px;
}

.q-miyoshi-concerned .list1 li:nth-child(3n) {
	margin-right: 0;
}

.q-miyoshi-concerned .button1 .c-button {
	padding-left: 30px;
	padding-right: 30px;
}

.q-miyoshi-concerned .button2 .c-button_wrapper {
	gap: 20px 40px;
}

.q-miyoshi-concerned .button2 .c-button {
	width: 260px;
	padding-left: 30px;
	padding-right: 30px;
}

.q-miyoshi-gpp-giopark .banner {
	margin-top: 30px;
	margin-bottom: -19px;
}

.q-miyoshi-gpp-about .history {
	margin-top: -2px;
	margin-bottom: -10px;
}

.q-miyoshi-model .c-text {
	margin-bottom: -12px;
}

.q-miyoshi-model-tokogio .detail__sub .button .c-button_wrapper {
	gap: 20px 20px;
}

.q-miyoshi-model-course .head__image img {
	display: block;
	position: absolute;
	left: 0;
	top: 4px;
}

.q-miyoshi-model-course .about .c-heading-under2 {
	padding: 17px 20px 18px;
	-webkit-margin-after: 25px;
	margin-block-end: 25px;
}

.q-thought .content__box {
	margin-bottom: 56px;
}

.q-thought .content__box:last-child {
	margin-bottom: 0;
}

.q-top-what .news__head {
	-webkit-margin-after: 17px;
	margin-block-end: 17px;
	-webkit-padding-before: 10px;
	padding-block-start: 10px;
}

.q-top-what .news__illust {
	width: 167px;
}

.q-top-parties {
	-webkit-padding-after: 150px;
	padding-block-end: 150px;
}

.q-top-parties .l-tile{
	grid-template-columns: repeat(2,1fr);
}

}

@media (min-width: 768.02px) and (max-width: 1180px) {

.p-form__badge {
	font-size: 0.75rem;
}

.q-area-detail .sight-post__body:has(.sight-post__image) {
	grid-template-columns: 300px 1fr;
}

}

@media (min-width: 900.02px) {

.c-button._small-min-md {
	grid-template-columns: auto auto;
	justify-content: space-between;
	width: 150px;
	min-height: 40px;
	padding-inline: 15px;
}

.c-button._small-min-md::before {
	content: none;
}

.c-heading._horizontal-min-md {
	grid-template-columns: auto 1fr;
	align-items: center;
	-moz-column-gap: 15px;
	column-gap: 15px;
	text-align: left;
}

.c-heading._horizontal-min-md .c-heading__sub {
	grid-area: 1/2/2/3;
	translate: 0 -2px;
}

.c-heading._horizontal-min-md .c-heading__title {
	-webkit-margin-before: 4px;
	margin-block-start: 4px;
	grid-column: span 2;
}

.q-top-area .guide__detail {
	grid-area: 1/1/2/2;
}

.q-top-area .guide__content {
	-webkit-padding-start: calc(50% + 70px);
	padding-inline-start: calc(50% + 70px);
}

.q-top-area .guide__map {
	-webkit-margin-end: calc(50% - 50px);
	margin-inline-end: calc(50% - 50px);
}

.q-top-experiental .detail {
	grid-area: 1/1/2/2;
}

.q-top-experiental .content {
	-webkit-padding-start: calc(50% + 90px);
	padding-inline-start: calc(50% + 90px);
}

.q-top-experiental .image {
	-webkit-margin-end: calc(50% - 20px);
	margin-inline-end: calc(50% - 20px);
}

.q-top-experiental .image {
	border-top-right-radius: 5px;
}

}

@media (max-width: 900px) and (min-width: 660.02px) {

.g-footer .info {
	display: flex;
	justify-content: space-between;
	align-items: start;
}

}

@media (min-width: 900.02px) and (max-width: 1180px) {

.q-top-experiental .content {
	-webkit-padding-start: calc(50% + 70px);
	padding-inline-start: calc(50% + 70px);
}

}

@media (min-width: 1180.02px) {

.c-button._small-min-lg {
	grid-template-columns: auto auto;
	justify-content: space-between;
	width: 150px;
	min-height: 40px;
	padding-inline: 15px;
}

.c-button._small-min-lg::before {
	content: none;
}

.c-heading._horizontal-min-lg {
	grid-template-columns: auto 1fr;
	align-items: center;
	-moz-column-gap: 15px;
	column-gap: 15px;
	text-align: left;
}

.c-heading._horizontal-min-lg .c-heading__sub {
	grid-area: 1/2/2/3;
	translate: 0 -2px;
}

.c-heading._horizontal-min-lg .c-heading__title {
	-webkit-margin-before: 4px;
	margin-block-start: 4px;
	grid-column: span 2;
}

.p-area__copy {
	-webkit-margin-end: -5px;
	margin-inline-end: -5px;
}

.q-top-what .news__heading {
	-webkit-margin-after: 0;
	margin-block-end: 0;
}

}

@media (max-width: 1180px) and (min-width: 560.02px) {

.g-footer .navi__list:nth-child(2) {
	grid-area: 2/1/3/2;
}

.g-footer .navi__list:nth-child(3) {
	grid-area: 1/2/2/3;
	grid-row: span 2;
}

}

@media (max-width: 1180px) and (min-width: 768.02px) {

.q-thought .thought__item {
	width: 28%;
}

.q-thought .thought__item:nth-child(5n+1) {
	-webkit-margin-start: 21%;
	margin-inline-start: 21%;
}

.q-thought .thought__item:nth-child(5n+2) {
	-webkit-margin-end: 21%;
	margin-inline-end: 21%;
}

}

@media (min-width: 1180.02px) and (max-width: 1600px) {

.q-top-area .guide__map {
	position: relative;
}

.q-top-area .guide__map img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center right;
	object-position: center right;
}

}

@media (min-width: 1300.02px) {

.g-header .menu-button {
	display: none;
}

}

@media (max-width: 1600px) {

.g-header .navi {
	-moz-column-gap: 1vw;
	column-gap: 1vw;
}

.g-header .navi__button {
	font-size: 1vw;
}

}

@media (max-width: 1300px) {

.g-header .navi {
	display: none;
}

.g-header .inner {
	flex-direction: row;
	padding-block-end: 10px;
}

.g-header .language {
	right: 110px;
}

}

@media (max-width: 1280px) {

.q-top-area .guide__copy {
	block-size: 30px;
}

}

@media (max-width: 1180px) {

.l-column {
	--l-column-head-width-default: 300px;
	--l-column-columnGap-default: 30px;
}

.l-column._vertical-max-lg {
	grid-template-columns: 1fr;
}

.post_text img {
	float: none;
	margin: 0 auto;
	display: block;
}

.post_text img.emoji {
	display: inline !important;
}

.post_text table {
	width: 100% !important;
}

.c-button_wrapper._center-max-lg {
	justify-content: center;
}

.c-heading__title {
	font-size: 1.75rem;
}

.c-pagetitle._area .c-pagetitle__inner {
	padding: 40px 0 20px;
}

.c-pagetitle__inner {
	min-height: 340px;
}

.c-pagetitle__title {
	font-size: 2.375rem;
}

.p-area__title {
	font-size: 1.125rem;
}

.p-form {
	padding-inline: var(--space-inline);
}

.g-header .inner {
	-webkit-padding-end: 20px;
	padding-inline-end: 20px;
}

.g-header .language {
	right: 80px;
}

.g-footer .navi {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: auto 1fr;
	-webkit-padding-end: 0;
	padding-inline-end: 0;
}

.g-footer .copyright {
	-webkit-margin-before: 43px;
	margin-block-start: 43px;
}

.q-access .access {
	padding: 40px;
}

.q-access .guide {
	grid-template-columns: 1fr 400px;
	-moz-column-gap: 20px;
	column-gap: 20px;
}

.q-area-detail .feature {
	grid-template-columns: 1fr;
	row-gap: 30px;
}

.q-area-detail .other {
	font-size: 1.125rem;
}

.q-area-detail .other__detail {
	padding-inline: 15px;
}

.q-thought .thought {
	-moz-column-gap: 2%;
	column-gap: 2%;
}

.q-top-what .what__container {
	grid-template-columns: 1fr 48%;
}

.q-top-what .news__inner {
	grid-template-columns: 1fr;
}

.q-top-experiental .detail {
	padding-block: 60px;
}

}

@media (max-width: 900px) {

.l-column._vertical-max-md {
	grid-template-columns: 1fr;
}

.c-button_wrapper._center-max-md {
	justify-content: center;
}

.c-list-categories {
	grid-template-columns: 1fr;
}

.c-list-categories::before {
	grid-area: 2/1/3/2;
	height: 1px;
	margin-block: 10px;
}

.c-pager {
	-moz-column-gap: 20px;
	column-gap: 20px;
}

.p-post {
	font-size: 0.75rem;
}

.p-post__title {
	font-size: 0.875rem;
}

.g-footer .container {
	grid-template-columns: 1fr;
	row-gap: 70px;
}

.g-footer .navi {
	display: flex;
	justify-content: end;
	-moz-column-gap: 90px;
	column-gap: 90px;
	-webkit-padding-end: 18px;
	padding-inline-end: 18px;
}

.g-menu .mega__list._button {
	grid-template-columns: repeat(2, 1fr);
}

.g-menu .post {
	min-width: 130px;
}

.q-access .guide {
	grid-template: "copy" auto "desc" auto "map" auto "info" 1fr/1fr;
}

.q-access .guide__map {
	height: 240px;
	-webkit-margin-before: 20px;
	margin-block-start: 20px;
}

.q-area-detail .list1__item {
	grid-template-columns: 240px 1fr;
	-moz-column-gap: 20px;
	column-gap: 20px;
}

.q-area-detail .list1__term {
	font-size: 1rem;
}

.q-miyoshi-concerned .list1 {
	justify-content: space-between;
}

.q-miyoshi-concerned .list1 li {
	width: 48%;
	margin-right: 0;
	margin-bottom: 40px;
}

.q-miyoshi-concerned .button2 .c-button {
	width: 300px;
}

.q-miyoshi-model-tokogio .detail {
	padding: 30px 20px;
}

.q-miyoshi-model-tokogio .detail__image {
	width: 100%;
	margin: 0 auto 30px;
}

.q-miyoshi-model-tokogio .detail__image img {
	width: 100%;
	max-width: none;
}

.q-miyoshi-model-tokogio .detail__text {
	width: 100%;
}

.q-miyoshi-model-course .head__text {
	width: 100%;
}

.q-miyoshi-model-course .head__image {
	width: 180px;
	margin: 10px auto 0;
}

.q-miyoshi-model-course .head__image img {
	position: relative;
	top: 0;
}

.q-miyoshi-model-course .about .c-heading-under2 {
	flex-direction: column;
}

.q-miyoshi-model-course .about .c-heading-under2 .time {
	margin-top: 5px;
}

.q-miyoshi-model-course .course {
	margin-bottom: 60px;
}

.q-miyoshi-model-course .course__map {
	width: 100%;
	order: 2;
}

.q-miyoshi-model-course .course__map iframe {
	height: 280px;
}

.q-miyoshi-model-course .course__route {
	width: 100%;
	order: 1;
	margin-bottom: 30px;
}

.q-miyoshi-model-course .point ul {
	margin-top: 20px;
	justify-content: space-between;
	max-width: 750px;
}

.q-miyoshi-model-course .point ul li {
	width: 49%;
	margin-right: 0;
	margin-bottom: 30px;
}

.q-miyoshi-model-course .point .image {
	margin-bottom: 10px;
}

.q-miyoshi-model-guide .detail {
	flex-direction: column;
}

.q-miyoshi-model-guide .detail__info {
	width: 100%;
	flex-direction: column;
	padding: 30px 20px;
}

.q-miyoshi-model-guide .detail__text {
	width: 100%;
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-right: none;
	border-bottom: 1px solid var(--color-border);
}

.q-miyoshi-model-guide .detail__text .info {
	flex-direction: column;
}

.q-miyoshi-model-guide .detail__text .info .en {
	width: 100%;
	margin-right: 0;
}

.q-miyoshi-model-guide .detail__button {
	width: 100%;
}

.q-miyoshi-model-guide .detail__button .c-button {
	width: 300px;
}

.q-miyoshi-model-guide .detail__image {
	width: 180px;
	margin-top: 25px;
	margin-left: auto;
	margin-right: auto;
}

.q-top-what .what__container {
	grid-template-columns: 1fr;
	row-gap: 40px;
}

.q-top-what .news__list {
	grid-template-columns: var(--column-count);
	row-gap: 40px;
}

.q-top-area .guide {
	-webkit-margin-after: 0;
	margin-block-end: 0;
}

.q-top-area .guide__content {
	padding-block: 40px 50px;
}

.q-top-area .guide__map {
	-webkit-margin-end: var(--space-inline);
	margin-inline-end: var(--space-inline);
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	overflow: hidden;
}

.q-top-area .guide__copy {
	display: none;
}

.q-top-area .guide__illust {
	display: none;
}

.q-top-experiental .detail {
	padding-block: 38px var(--space-block);
}

.q-top-access {
	-webkit-padding-after: 50px;
	padding-block-end: 50px;
}

.q-top-access .illust {
	-webkit-margin-before: -30px;
	margin-block-start: -30px;
	text-align: left;
}

.q-top-link .l-tile {
	--l-tile-templateColumns-default: repeat(3,1fr);
}

}

@media (max-width: 768px) {

.l-column._vertical-max-sp {
	grid-template-columns: 1fr;
}

.post_text th,
.post_text td {
	padding-inline: 10px;
}

.c-bread__list {
	-webkit-padding-end: 70px;
	padding-inline-end: 70px;
}

.c-button_wrapper._mt_large {
	-webkit-margin-before: 30px;
	margin-block-start: 30px;
}

.c-button_wrapper._center-max-sp {
	justify-content: center;
}

.c-button._w_regular {
	width: 300px;
}

.c-button._w_small {
	width: 300px;
}

.c-button._h_regular {
	min-height: 50px;
}

.c-button._h_small {
	min-height: 50px;
}

.c-heading-under {
	-webkit-margin-after: 22px;
	margin-block-end: 22px;
	font-size: 1.6875rem;
	line-height: 1.488372093;
}

.c-heading-under::after {
	-webkit-margin-before: 30px;
	margin-block-start: 30px;
}

.c-heading-under2 {
	padding: 16px 20px 16px 20px;
	-webkit-margin-after: 25px;
	margin-block-end: 25px;
	font-size: 1.375rem;
	line-height: 1.6363636364;
}

.c-heading-under3 {
	font-size: 1.125rem;
	line-height: 1.7777777778;
}

.c-heading {
	-webkit-margin-after: 30px;
	margin-block-end: 30px;
}

.c-heading__icon svg {
	width: 23px;
}

.c-heading__sub {
	font-size: 0.8125rem;
}

.c-heading__title {
	-webkit-margin-before: 10px;
	margin-block-start: 10px;
	font-size: 1.625rem;
	line-height: 1.4038461538;
}

.c-heading2__title {
	font-size: 1.125rem;
	line-height: 1.7777777778;
}

.c-heading2::after {
	-webkit-margin-before: 17px;
	margin-block-start: 17px;
}

.c-heading3__title {
	font-size: 1.375rem;
}

.c-input:is(._radio,
._checkbox) {
	padding-block: 20px;
}

.c-pager {
	grid-template: "prev next" "back back"/1fr 1fr;
	gap: 20px 10px;
}

.c-pager a {
	padding-inline: 20px;
}

.c-pagetitle__inner {
	min-height: 205px;
}

.c-pagetitle__icon {
	width: 22px;
}

.c-pagetitle__icon._area {
	top: -14px;
}

.c-pagetitle__icon._area:nth-child(3) {
	left: -20px;
}

.c-pagetitle__icon._area:nth-child(4) {
	right: -18px;
}

.c-pagetitle__icon._bubble {
	width: 60px;
	top: -46px;
}

.c-pagetitle__title-sub {
	font-size: 0.8125rem;
}

.c-pagetitle__title {
	font-size: 1.625rem;
}

.c-stepbar {
	--c-stepbar-arrow-width: 1px;
}

.c-stepbar__item {
	min-height: 45px;
	font-size: 0.625rem;
}

.c-stepbar__item::before {
	width: 14px;
}

.p-area__title {
	font-size: 1.34375rem;
}

.p-area__block {
	-webkit-margin-before: 20px;
	margin-block-start: 20px;
}

.p-bottomnavi .p-bottomnavi__link {
	width: 100%;
	height: 160px;
	margin-bottom: 20px;
}

.p-bottomnavi .p-bottomnavi__title {
	font-size: 1.25rem;
	margin-bottom: 14px;
}

.p-bottomnavi .p-bottomnavi__title-sub {
	font-size: 0.75rem;
	line-height: 3;
	margin-bottom: 0;
}

.p-bottomnavi .p-bottomnavi__title-sub svg {
	margin-bottom: -5px;
}

.p-bottomnavi .p-bottomnavi__arrow svg {
	width: 16px;
	height: 13px;
}

.p-bottomnavi .p-bottomnavi__image img {
	width: 100% !important;
	height: auto !important;
}

.p-form__label-in {
	-webkit-margin-after: 10px;
	margin-block-end: 10px;
}

.p-form__submit {
	flex-direction: column-reverse;
}

.p-form__submit-button {
	width: 280px;
}

.p-post__category {
	padding-inline: 10px;
}

.g-header .inner {
	padding-inline: 14px;
}

.g-header .logo {
	width: 214px;
}

.g-footer .inner {
	-webkit-padding-before: 50px;
	padding-block-start: 50px;
}

.g-header .language {
	right: 68px;
	top: 26px;
}

.g-footer .pagetop {
	width: 75px;
	top: -30px;
	right: var(--space-inline);
}

.g-footer .container {
	row-gap: 50px;
}

.g-footer .info__logo {
	width: 250px;
	-webkit-margin-after: 25px;
	margin-block-end: 25px;
}

.g-footer .info__name {
	-webkit-padding-start: 0;
	padding-inline-start: 0;
}

.g-footer .info__address {
	-webkit-margin-after: 10px;
	margin-block-end: 10px;
	font-size: 0.84375rem;
	line-height: 2;
}

.g-footer .info__data {
	-webkit-padding-start: 0;
	padding-inline-start: 0;
}

.g-footer .data {
	flex-direction: column;
	line-height: 2.1428571429;
}

.g-footer .sns {
	-webkit-margin-before: 32px;
	margin-block-start: 32px;
}

.g-footer .navi__list {
	row-gap: 25px;
}

.g-footer .navi__link {
	-moz-column-gap: 11px;
	column-gap: 11px;
}

.g-footer .navi__link::before,
.g-footer .navi__link::after {
	width: 10px;
}

.g-footer .child {
	font-size: 0.84375rem;
}

.g-menu .mega__list {
	grid-template-columns: repeat(2, 1fr);
}

.g-menu .mega__list._button {
	grid-template-columns: 1fr;
}

.g-menu .sns {
	-webkit-margin-before: 32px;
	margin-block-start: 32px;
}

.q-access .guide__copy {
	font-size: 1.25rem;
}

.q-access .info {
	padding-inline: 15px;
}

.q-access .info__link {
	gap: 5px;
}

.q-access .info .c-button {
	-webkit-margin-end: 0;
	margin-inline-end: 0;
}

.q-area-detail .list1__item {
	grid-template-columns: 1fr;
	row-gap: 20px;
}

.q-area-detail .sight-post__image {
	-webkit-margin-after: 24px;
	margin-block-end: 24px;
}

.q-area-detail .sight-post__map {
	-webkit-margin-after: 20px;
	margin-block-end: 20px;
}

.q-area-detail .other_wrapper {
	--l-tile-rowGap: 20px;
}

.q-area-detail .other {
	grid-template-columns: 80px auto;
	min-height: 90px;
	font-size: 1rem;
}

.q-area-detail .other__detail {
	padding-inline: 10px;
}

.q-ikawa .minoda-oohashi .l-column-gap {
	display: block;
}

.q-ikawa .minoda-oohashi img {
	width: 100%;
	max-width: 720px;
}

.q-ikawa .minoda-oohashi__copy {
	margin-top: 10px;
}

.q-tsurugisan .kouhou-history .l-column-gap {
	display: block;
}

.q-tsurugisan .kouhou-history img {
	width: 100%;
}

.q-tsurugisan .kouhou-history__copy {
	margin-top: 10px;
}

.q-miyoshi-concerned-navi {
	margin-bottom: 80px;
}

.q-miyoshi-concerned-navi .anchor .anchor__item {
	width: 100%;
	margin-bottom: 15px;
}

.q-miyoshi-concerned .content {
	margin-bottom: 80px;
}

.q-miyoshi-concerned .content__box {
	margin-bottom: 40px;
}

.q-miyoshi-concerned .list1 li {
	width: 100%;
}

.q-miyoshi-concerned .list2 li {
	margin-bottom: 40px;
	flex-wrap: wrap;
	justify-content: start;
}

.q-miyoshi-concerned .list2 .text {
	margin-right: 0;
	margin-bottom: 15px;
}

.q-miyoshi-concerned .list2 .button {
	width: 100%;
}

.q-miyoshi-concerned .list2 .button .c-button {
	width: 300px;
	height: 50px;
	margin: 0 auto;
}

.q-miyoshi-concerned .button1 .c-button {
	width: 380px;
	height: 70px;
}

.q-miyoshi-concerned .faq .question {
	margin-bottom: 8px;
}

.q-miyoshi-concerned .recruitment {
	padding: 30px 10px 30px;
	margin-top: 30px;
}

.q-miyoshi-concerned .recruitment__text1 {
	font-size: 1.625rem;
	line-height: 1.6363636364;
	padding: 0 10px;
	margin-bottom: 30px;
}

.q-miyoshi-concerned .recruitment__text2 {
	font-size: 1rem;
	line-height: 1.6363636364;
	letter-spacing: inherit;
}

.q-miyoshi-concerned .logo {
	margin-bottom: 0;
	flex-direction: column;
}

.q-miyoshi-concerned .logo__image {
	margin-left: 0;
}

.q-miyoshi-concerned .logo__text {
	width: 100%;
}

.q-contact .heading__icon {
	width: 40px;
}

.q-contact .heading__title {
	font-size: 1.375rem;
}

.q-contact .tel {
	padding-block: 30px;
}

.q-contact .tel__number {
	font-size: 1.5rem;
}

/* ↓20250708追加 */
.q-contact .guidetour_text-l{
	font-size: 14px;
	line-height: 1.2;
}
.q-contact .guidetour_text{
	font-size: 20px;
	line-height: 1.5;
	margin-top: 10px;
}
/* ↑20250708追加 */

.q-miyoshi-gpp-giopark .banner__pic {
	margin-top: 30px;
	margin-bottom: 40px;
}

.q-miyoshi-gpp-giopark .banner__link {
	margin-top: 25px;
	line-height: 1.8;
}

.q-miyoshi-gpp-about .landscape__title {
	font-size: 1.375rem;
	line-height: 1.6363636364;
}

.q-miyoshi-gpp-about .landscape__detail {
	width: 100%;
	margin: 0 auto 50px;
}

.q-miyoshi-gpp-about .history .image1 {
	width: 100%;
	margin: 0 auto 20px;
}

.q-miyoshi-gpp-about .history .image2 {
	width: 100%;
	margin: 0 auto;
}

.q-miyoshi-model-tokogio .detail__title {
	margin-top: 0;
	margin-bottom: 15px;
	font-size: 1.25rem;
	line-height: 1.8;
}

.q-miyoshi-model-tokogio .detail__sub {
	padding: 30px 20px;
}

.q-miyoshi-model-tokogio .detail__sub .info {
	margin-bottom: 20px;
}

.q-miyoshi-model-course .about .c-heading-under2 .text {
	margin-bottom: 5px;
	margin-right: 0;
}

.q-news-detail .info {
	grid-template-columns: auto 1fr;
	row-gap: 10px;
}

.q-news-detail .info__category {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.q-news-detail .info__tag {
	grid-column: span 2;
}

.q-news-detail .tags {
	-moz-column-gap: 10px;
	column-gap: 10px;
}

.q-news-detail .tags__icon svg {
	width: 18px;
}

.q-news-detail .heading {
	font-size: 1.5rem;
}

.q-thought {
	--l-row-gap: 80px;
}

.q-thought .thought {
	-moz-column-gap: 4%;
	column-gap: 4%;
}

.q-thought .thought__item {
	width: 48%;
}

.q-thought .content {
	margin-bottom: 80px;
}

.q-thought .content__box {
	margin-bottom: 40px;
}

.q-top-mv .copy {
	-webkit-padding-after: 30px;
	padding-block-end: 30px;
}

.q-top-mv .scroll {
	font-size: 0.75rem;
}

.q-top-mv .scroll::before {
	width: 11.5px;
	-webkit-margin-before: 2px;
	margin-block-start: 2px;
}

.q-top-mv .scroll::after {
	height: 30px;
}

.q-top-mv .thumb {
	row-gap: 15px;
	bottom: 15px;
	right: var(--space-inline);
}

.q-top-what .slide {
	padding-block: 15px 7px;
}

.q-top-what .slide__item {
	-webkit-padding-end: 40px;
	padding-inline-end: 40px;
}

.q-top-what .slide img {
	width: 720px;
}

.q-top-what .copy__sub {
	font-size: 0.875rem;
}

.q-top-what .news__inner {
	padding-block: var(--space-block);
}

.q-top-what .news__illust {
	top: -80px;
	left: 0;
}

.q-top-area .guide__content {
	-webkit-padding-after: 45px;
	padding-block-end: 45px;
}

.q-top-area .guide__map {
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

.q-top-parties {
	--l-tile-templateColumns: 1fr;
	padding-block: var(--space-block);
}

.q-top-parties .link {
	border-radius: 15px 15px 15px 0;
}

.q-top-access .illust img {
	width: 113px;
}

.q-top-link .l-tile {
	--l-tile-templateColumns-default: repeat(2,1fr);
	gap: 10px var(--column4-gap);
}

}

@media (max-width: 660px) {

.g-footer .navi {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	-webkit-padding-end: 0;
	padding-inline-end: 0;
}

}

@media (max-width: 560px) {

.c-input:is(._radio,
._checkbox) {
	flex-direction: column;
}

.g-footer .info__br {
	display: none;
}

.g-footer .navi {
	grid-template-columns: 1fr;
	row-gap: 25px;
	font-size: 0.96875rem;
}

.q-access .access {
	padding: 20px;
}

.q-iya .dodai-history .l-column-gap {
	display: block;
}

.q-iya .dodai-history__desc {
	margin-top: 0;
}

.q-iya .dodai-history__item {
	margin-bottom: 30px;
}

.q-mino .heiya-history.l-column-gap {
	display: block;
}

.q-mino .heiya-history__desc {
	margin-top: 0;
}

.q-mino .heiya-history__item {
	margin-bottom: 30px;
}

}

@media (max-width: 460px) {

.q-thought .thought__item {
	width: 280px;
}

}

@-webkit-keyframes q-top-what-copy {

0% {
	translate: 0 0;
}

100% {
	translate: var(--q-top-what-copy-end);
}

}

@keyframes q-top-what-copy {

0% {
	translate: 0 0;
}

100% {
	translate: var(--q-top-what-copy-end);
}

}

