@charset "UTF-8";

:root {
	/* 色 */
	--main-color: #0e3e7f;
	--accent-color: #e60012;
	/* 強調色（例：ボタンやラベル）*/
	--sub-color: #3990c4;
	/* サブカラー*/
	--text-color: #333;
	--text-light-color: #888;
	--bg-color:
		/* #e7eef3 */
		#fff;
	--bg-color-gray: #f4f4f4;
	--bg-color-dark: #222;
	--border-color: #7e8fa8;
	--border-gray: #cdcdcd;
	--success-color: #4caf50;
	--warning-color: #ff9800;
	--error-color: #e60012;

	/* 価格・種別 */
	--price-color: #3990c4;
	--type-bg: #333;
	--type-color: #fff;

	/* ボタン */
	--btn-color--reserve: #0e3e7f;
	/* 予約ボタン */
	--btn-color--reserch: #6583aa;
	/* 検索ボタン */
	--btn-color--form: #0e3e7f;
	/* フォームボタン */

	/* フォント */
	--base-font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
	--base-font-size: 1.4rem;
	--heading-font-size: 1.8rem;

	/* レイアウト */
	--container-width: 1200px;
	--gutter: 24px;
	--radius: 6px;

	/* シャドウ */
	--shadow: 0 2px 8px rgba(0, 0, 0, 0.08);

	/* トランジション */
	--transition-speed: 0.3s;

	/* ブレークポイント */
	--breakpoint-sp: 768px;
	--breakpoint-tablet: 1024px;
	--breakpoint-laptop: 1200px;

	/* z-index */
	--z-header: 1000;
	--z-modal: 2000;
	--z-fixed: 3000;
}

@media (min-width: 768px) {
	:root {
		/* フォント */
		--base-font-size: 1.6rem;
		--heading-font-size: 2.3rem;
	}
}



.l-header {
	position: relative;
	background: #fff;
	box-shadow: -1px 2px 4px -1px rgba(0, 0, 0, 0.2);
}

.l-header .l-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media (min-width: 1024px) {
	.l-nav__sp {
		display: none;
	}
}

.l-nav__pc {
	display: none;
}

@media (min-width: 1024px) {
	.l-nav__pc {
		display: block;
	}
}

.l-2col {
	display: flex;
	width: 100%;
	flex-direction: column;
}

@media (min-width: 768px) {
	.l-2col {
		flex-direction: row-reverse;
		justify-content: space-between;
	}
}

.l-2col__sub {
	width: 100%;
}

@media (min-width: 768px) {
	.l-2col__sub {
		width: 25%;
	}
}

.l-2col__main {
	width: 100%;
}

@media (min-width: 768px) {
	.l-2col__main {
		width: 70%;
	}
}

.l-inner {
	max-width: clamp(1000px, 100vw, 1100px);
	margin: 0 auto;
	padding: 0 15px;
}

@media (min-width: 1200px) {
	.l-inner {
		padding: 0;
	}
}

.l-section {
	padding: 0 0 30px;
}

@media (min-width: 768px) {
	.l-section {
		padding: 0 0 40px;
	}
}

@media (min-width: 1024px) {
	.l-section {
		padding: 0 0 60px;
	}
}

.l-section--white {
	background: #fff;
}

.l-footer {
	width: 100%;
	margin-top: clamp(50px, (50 / 768 * 100vw), 60px);
	background: var(--main-color);
}

.l-footer .l-inner {
	padding: clamp(40px, (40 / 768 * 100vw), 90px) 30px clamp(20px, (20 / 768 * 100vw), 40px);
}

.c-logo {
	height: 48px;
}

.c-logo img {
	display: inline-block;
	padding: 10px 0;
	width: auto;
	height: 100%;
}

@media (min-width: 1024px) {
	.c-logo {
		margin: 10px 0;
		height: 40px;
	}

	.c-logo img {
		padding: 0 0;
	}
}

.c-hamburger {
	position: fixed;
	top: 2px;
	right: 5px;
	z-index: 100;
	width: 48px;
	height: 48px;
	border: none;
	background: transparent;
	cursor: pointer;
}

@media (min-width: 1024px) {
	.c-hamburger {
		display: none;
	}
}

.c-hamburger__line {
	position: absolute;
	left: 11px;
	width: 26px;
	height: 2px;
	background-color: #333;
	transition: all 0.4s;
}

.c-hamburger__line:nth-of-type(1) {
	top: 14px;
}

.c-hamburger__line:nth-of-type(2) {
	top: 23px;
}

.c-hamburger__line:nth-of-type(3) {
	top: 32px;
}

.c-hamburger.active .c-hamburger__line:nth-of-type(1) {
	transform: translateY(9px) rotate(-45deg);
}

.c-hamburger.active .c-hamburger__line:nth-of-type(2) {
	opacity: 0;
}

.c-hamburger.active .c-hamburger__line:nth-of-type(3) {
	transform: translateY(-9px) rotate(45deg);
}

.l-nav__sp .c-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #fff;
	box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
	transform: translateX(-100%);
	transition: transform 0.4s;
	z-index: 90;
}

.l-nav__sp .c-nav.active {
	transform: translateX(0);
}

.l-nav__sp .c-nav__list {
	margin: 0;
	padding: 100px 0 0;
	list-style: none;
}

.l-nav__sp .c-nav__item {
	padding: 0 20px;
}

.l-nav__sp .c-nav__link {
	display: block;
	padding: 15px 0;
	color: #333;
	text-decoration: none;
	border-bottom: 1px solid #eee;
	position: relative;
}

.l-nav__sp .c-nav__link::after {
	content: "\f054";
	position: absolute;
	top: 50%;
	right: 10px;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 1rem;
	transform: translate(-50%, -50%);
}

.l-nav__sp .c-nav__link.js-dropdown::after {
	content: "\f078";
}

.l-nav__sp .c-nav__link.open::after {
	content: "\f077";
}

.l-nav__sp .c-nav__sub-item a {
	text-decoration: none;
	color: var(--text-color);
	display: block;
	position: relative;
	padding: 10px 0 10px 20px;
}

.l-nav__sp .c-nav__sub-item a::before {
	content: "\f054";
	position: absolute;
	top: 50%;
	left: 10px;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 1rem;
	transform: translate(-50%, -50%);
}

.l-nav__pc .c-nav__list {
	display: flex;
	list-style: none;
	gap: 0 3rem;
	margin: 0;
	align-items: center;
	font-size: 1.4rem;
	font-weight: 600;
}


.l-nav__pc .c-nav__item {
	padding: 20px 0;
}

.l-nav__pc .c-nav__item:hover .c-nav__sub-list {
	display: flex;
	height: 100px;
	padding: 15px;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.l-nav__pc .c-nav__item a {
	position: relative;
	text-decoration: none;
	color: #333;
}

.l-nav__pc .c-nav__item a:hover {
	text-decoration: none;
	color: var(--main-color);
	transition: all 0.3s ease-in 0s;
}

.l-nav__pc .c-nav__item a::after {
	position: absolute;
	bottom: -8px;
	display: block;
	content: "";
	height: 2px;
	background: var(--main-color);
	width: 100%;
	transform: scaleX(0.0);
}

.l-nav__pc .c-nav__item a:hover::after {
	transform: scaleX(1.0);
	transition: all 0.2s ease-in 0s;
}


.l-nav__pc .c-nav__sub-list {
	background: rgba(255, 255, 255, 0.5);
	position: absolute;
	top: 63px;
	left: 0;
	width: 100%;
	overflow: hidden;
	height: 0;
	transition: height 0.2s;
}

.c-breadcrumbs {
	display: flex;
	align-items: center;
	font-size: 1.1rem;
	margin: 2rem 0;
	list-style: none;
	padding: 0;
}

.c-breadcrumbs__item:not(:last-child) {
	margin-right: 1rem;
}

.c-breadcrumbs__item a {
	color: var(--text-color);
	text-decoration: none;
	transition: color 0.3s ease-in-out;
}

.c-breadcrumbs__item a::after {
	content: ">";
	margin-left: 1rem;
}

.c-news__title {
	font-size: var(--heading-font-size);
}

.c-news__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.c-news__link {
	text-decoration: none;
	color: var(--text-color);
	font-size: 1.4rem;
	display: grid;
	grid-template-columns: 90px auto;
	padding: 8px 20px 8px 0;
	border-bottom: 1px solid var(--border-color);
	position: relative;
}

.c-news__link::after {
	content: "\f054";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 1rem;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.c-news__link:hover {
	opacity: 0.8;
}

.c-section__title {
	font-size: var(--heading-font-size);
	font-weight: bold;
	text-align: center;
	margin-bottom: 1.3em;
}

.c-section__title::after {
	display: block;
	content: "";
	background: #3990c4;
	height: 4px;
	width: 50px;
	margin: 0.5em auto 0;
}

@media (min-width: 1024px) {
	.c-section__title {
		font-size: 2.6rem;
	}
}

.c-button {
	display: inline-block;
	padding: 1rem 2rem;
	font-size: 1.6rem;
	font-weight: bold;
	letter-spacing: 0.08em;
	cursor: pointer;
	background-color: #3886C1;
	border-radius: 0.3rem;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}

.c-button:hover {
	opacity: 0.8;
}

.c-button,
.c-button:hover,
.c-button:visited,
.c-button:active,
a.c-button,
a.c-button:hover,
a.c-button:visited,
a.c-button:active {
	color: #fff !important;
}

.c-button--large {
	max-width: 400px;
	width: 80%;
	padding: 1.5rem;
}

@media (min-width: 768px) {
	.c-button--large {
		max-width: 420px;
		padding: 2rem;
	}
}

.c-button--small {
	padding: 5px 15px;
	font-size: 1.3rem;
}

@media (min-width: 768px) {
	.c-button--small {
		padding: 8px 20px;
		font-size: 1.4rem;
	}
}

.c-pager {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 2rem 0;
	gap: 2px;
	list-style: none;
	padding: 0;
}

@media (min-width: 768px) {
	.c-pager {
		gap: 0.5rem;
	}
}

.c-pager__item a {
	text-decoration: none;
	line-height: 1;
}

.c-pager__item a:hover {
	opacity: 0.7;
}

.c-pager__item span {
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 30px;
	/* width: 35px; */
	background-color: #50809c;
	border-radius: 3px;
	transition: background-color 0.3s ease-in-out;
	font-size: 1.3rem;
	padding: 0 10px;
}

.c-pager__item--current span {
	background-color: #8ab7d1;
}

.c-pager__item--prev span,
.c-pager__item--next span {
	position: relative;
}

.c-pager__item--prev span {
	padding: 0 10px 0 20px;
}

.c-pager__item--next span {
	padding: 0 20px 0 10px;
}

.c-pager__item--prev span::before,
.c-pager__item--next span::before {
	position: absolute;
	top: 50%;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 0.8rem;
	transform: translateY(-50%);
}


.c-pager__item--prev span::before {
	content: "\f053";
	left: 8px;
}

.c-pager__item--next span::before {
	content: "\f054";
	right: 8px;
}


.c-table {
	width: 100%;
	background-color: #fff;
	border: #cdcdcd solid 1px;
	border-right: none;
	border-left: none;
	border-collapse: collapse;
	line-height: 1.5;
}

.c-table th {
	font-weight: normal;
	text-align: left;
	background: #eef2f5;
	white-space: nowrap;
}

.c-table th,
.c-table td {
	border-bottom: #cdcdcd solid 1px;
	display: block;
	width: 100%;
}

.c-table th {
	padding: 0.8rem 2rem;
}

.c-table td {
	padding: 1.5rem 2rem;
}

@media (min-width: 768px) {

	.c-table th,
	.c-table td {
		display: table-cell;
		padding: 1em 2rem;

	}

	.c-table th {
		width: auto;
	}

	.c-table td {
		width: auto;
	}



}

.c-map {
	width: 100%;
	height: 400px;
	margin: 30px 0;
}

.c-label {
	font-size: 1.1rem;
	padding: 3px 9px;
	line-height: 1;
}

.c-label--new {
	background-color: #fff;
	border: 1px solid #f00;
	color: #f00;
}

.c-label--type {
	border: 1px solid #265697;
	background: #265697;
	color: #fff;
}

.c-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
}

.c-modal.is-active {
	display: block;
}

.c-modal__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 101;
}

.c-modal__content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	padding: 2rem;
	z-index: 102;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	width: calc(100% - 4rem);
	max-width: 600px;
	text-align: center;
}

.c-modal__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 2rem;
	height: 2rem;
	cursor: pointer;
	background: none;
	border: none;
	outline: none;
}

.c-modal__close::before,
.c-modal__close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 2px;
	background-color: #333;
	transform-origin: center;
}

.c-modal__close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.c-modal__close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.c-modal__list {
	text-align: left;
}

.c-modal__list dt {
	font-weight: bold;
	margin-bottom: 5px;
}

.c-modal__list dd {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 2rem;
	margin-bottom: 20px;
}

.c-modal__list dd label {
	display: block;
}

.c-related__title {
	background: #ddd;
	padding: 10px 20px;
	margin-bottom: 35px;
}

@media (min-width: 768px) {
	.c-related__title {
		margin-bottom: 20px;
	}
}

.c-related__list-wrapper {
	position: relative;
}

.c-related__list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	overflow: hidden;
}

@media (min-width: 768px) {
	.c-related__list {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
}

@media (min-width: 1024px) {
	.c-related__list {
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	}
}

.c-related__item {
	background: #fff;
	width: 100%;
	border-bottom: 1px solid #ccc;
	padding-bottom: 60px;
	position: relative;
}

.c-related__item a {
	display: block;
	color: inherit;
	text-decoration: none;
	transition: all 0.3s ease-in-out 0s;
	height: 100%;
}

.c-related__item a:hover {
	opacity: 0.7;
}

.c-related__image {
	width: 100%;
	aspect-ratio: 640 / 460;
}

.c-related__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.c-related__data {
	padding: 15px;
	font-size: 1.4rem;
}

.c-related__name {
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.2;
	margin: 5px 0;
}

.c-related__address {
	margin-top: 5px;
	padding-top: 5px;
	border-top: 1px solid var(--border-color);
}

.c-related__button {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	width: 85%;
}

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

.c-related__list-wrapper .swiper-button-next,
.c-related__list-wrapper .swiper-button-prev {
	top: 30%;
	width: 30px;
	height: 30px;
	;
	background: rgb(126 171 201 / 80%);
	border-radius: 100%;

}

.c-related__list-wrapper .swiper-button-next::after,
.c-related__list-wrapper .swiper-button-prev:after {
	color: #fff;
	font-size: 14px;
}

.c-related__list-wrapper .swiper-button-next {
	right: -35px;
}

.c-related__list-wrapper .swiper-button-prev {
	left: -35px;
}

@media (max-width: 1024px) {
	.c-related__list-wrapper .swiper-button-next {
		right: -15px;
	}

	.c-related__list-wrapper .swiper-button-prev {
		left: -15px;
	}
}

@media (max-width: 768px) {

	.c-related__list-wrapper .swiper-button-next,
	.c-related__list-wrapper .swiper-button-prev {
		top: -10px;
		background: #fff;
	}

	.c-related__list-wrapper .swiper-button-next {
		right: 0px;
	}

	.c-related__list-wrapper .swiper-button-prev {
		left: 0px;
	}

	.c-related__list-wrapper .swiper-button-next::after,
	.c-related__list-wrapper .swiper-button-prev:after {
		color: #666;
		font-size: 18px;
	}
}




.c-fixed {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	padding: 2rem 0;
	z-index: 100;
}

.c-fixed__inner {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
}

.c-footer__logo {
	color: #fff;
}

.c-progress__list {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 15px 0 !important;
	font-size: 1.2rem;
}

@media (min-width: 768px) {
	.c-progress__list {
		font-size: 1.4rem;
	}
}

@media (min-width: 1024px) {
	.c-progress__list {
		font-size: 1.6rem;
	}
}

.c-progress__item {
	position: relative;
	width: 33%;
	text-align: center;
	position: relative;
	align-items: center;
	justify-content: center;
	padding: 16px 0;
	line-height: 1.5;
	background: #f5f5f5;
	color: #999999;
}

.c-progress__item:not(:last-child)::before,
.c-progress__item:not(:last-child)::after {
	position: absolute;
	z-index: 2;
	top: 0;
	bottom: 0;
	left: 100%;
	content: "";
	border: 25px solid transparent;
	border-left: 20px solid #f5f5f5;
	margin: auto;
}

.c-progress__item :not(:last-child)::before {
	margin-left: 1px;
	border-left-color: #fff;
}

.c-progress__item.active {
	z-index: 1;
	background: #0070bd;
	color: #fff;
}

.c-progress__item.active:not(:last-child)::after {
	border-left-color: #0070bd;
}

.c-progress__item.active:not(:last-child)::before {
	border-left: none;
}

.c-error {
	color: var(--error-color);
	font-size: 1.4rem;
}

.c-voice__title {
	font-size: var(--heading-font-size);
	margin-bottom: 1rem;
}

.c-voice__list {
	display: grid;
	gap: 1.6rem;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.c-voice__item {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	gap: 5px;
	background: #fff;
	text-decoration: none;
	color: var(--text-color);
	font-size: 1.4rem;
}

.c-voice__item:hover {
	opacity: 0.8;
}

.c-voice__image img {
	width: 100%;
}

.c-voice__comment {
	padding: 15px 15px 0 15px;
}

.c-voice__name {
	color: #0070bd;
	padding: 0px 15px 15px;
}

.c-line__list {
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: left;
}

.c-line__item {
	border-bottom: 1px solid var(--border-color);
	padding: 10px 0;
	font-size: 1.6rem;
}

.c-line__item--small {
	font-size: 1.4rem;
}

.c-line__item:last-child {
	border-bottom: none;
}

.c-station__list,
.c-city__list {
	margin: 10px 0 0;
	padding: 10px;
	list-style: none;
	text-align: left;
	flex-wrap: wrap;
	background: #efefef;
	font-size: 1.4rem;
	max-height: 220px;
	overflow-y: auto;
}

.c-railway__button {
	text-align: center;
	margin: clamp(25px, (25 / 768 * 100vw), 40px) auto;
}

.c-railway__button input[type="submit"] {
	width: 90%;
	padding: 1em 3em;
	color: #fff;
	border: 0;
	border-radius: 10px;
	background: var(--btn-color--reserch);
}

.c-data__list {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 0px;
	/* align-items: center; */
}

.c-data__title {
	display: flex;
	align-items: center;
	background: #f1f1f1;
	font-size: 1.3rem;
	padding: 5px;
	line-height: 1;
	border-bottom: 1px solid #ccc;
	padding: 10px;
}

.c-data__text {
	font-size: 1.4rem;
	border-bottom: 1px solid #ccc;
	padding: 13px;
}

.c-data__button {
	margin-top: 30px;
	display: flex;
	justify-content: center;
	gap: 10px;
}

@media (min-width: 768px) {
	.c-data__button {
		text-align: left;
	}
}

.c-data__button .c-button {
	width: 100%;
	font-size: 1.5rem;
}

.c-data__button .c-button.c-data__button__reserve {
	background: var(--btn-color--reserve);
}

.c-data__button .c-button.c-data__button__tel {
	background: #fff;
	color: var(--main-color) !important;
	border: 1px solid var(--main-color);
}

@media (min-width: 768px) {
	.c-data__button a.c-data__button__tel {
		pointer-events: none;
	}
}

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

.c-result__list {
	display: flex;
	flex-direction: column;
	gap: 30px;
	list-style: none;
	padding: 0;
}

.c-result__item {
	position: relative;
	border-top: 1px solid var(--border-color);
	padding: 20px 0 0;
	background-color: #fff;
	/* border-radius: 10px; */
}

@media (min-width: 768px) {
	.c-result__item {
		padding: clamp(30px, (20 / 768 * 100vw), 40px) 0 0;
	}
}

@media (min-width: 768px) {
	.c-result__wrapper {
		display: flex;
		gap: 0 3rem;
	}
}

.c-result__left {
	width: 100%;
}

@media (min-width: 768px) {
	.c-result__left {
		width: 45%;
	}
}

.c-result__right {
	width: 100%;
}

@media (min-width: 768px) {
	.c-result__right {
		width: 55%;
	}
}

.c-result__label {
	display: flex;
	gap: 5px;
}

.c-result__title {
	font-size: 2rem;
	line-height: 1.4;
	font-weight: bold;
	margin-top: 0.2em;
}

@media (min-width: 768px) {
	.c-result__title {
		font-size: 2.4rem;
	}
}

.c-result__copy {
	display: none;
}

@media (min-width: 768px) {
	.c-result__copy {
		display: block;
		font-size: 15px;
		margin: 0.7rem 0 2rem;
	}
}

.c-result__image {
	margin: 10px 0 15px;
}

@media (min-width: 768px) {
	.c-result__image {
		margin: 0;
	}
}

.c-result__image img {
	width: 100%;
	height: auto;
	max-height: 244px;
	object-fit: contain;
}

@media (min-width: 1024px) {
	.c-result__image img {
		max-height: 400px;
	}
}

.c-price {
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1;
	color: var(--price-color);
}

.c-price--small {
	font-size: 1.8rem;
}

.c-price__unit {
	font-size: 1.6rem;
	font-weight: normal;
	color: #333;
}

.c-price__unit--small {
	font-size: 1.4rem;
}

.c-price__info {
	font-size: 1.3rem;
}

.c-office__list {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.c-office__item {
	background: #fff;
	border-radius: 10px;
	padding: 20px;
}

@media (min-width: 768px) {
	.c-office__item {
		display: flex;
	}
}

@media (min-width: 768px) {
	.c-office__item-image {
		width: 50%;
		margin-right: 20px;
	}
}

@media (min-width: 768px) {
	.c-office__item-content {
		width: 50%;
	}
}

.c-office__item-title {
	font-size: 2.4rem;
	margin-bottom: 20px;
}

.c-office__item-copy {
	color: var(--main-color);
}

.c-office__item-address {
	margin: 10px 0;
}

.c-office__item-tel {
	font-size: 2.4rem;
	margin: 10px 0;
	font-weight: bold;
}

.c-office__item-tel a {
	text-decoration: none;
	color: var(--text-color);
}

.c-office__item-tel::before {
	content: "\f095";
	font-family: "Font Awesome 6 Free";
	font-size: var(--heading-font-size);
	margin-right: 5px;
	font-weight: bold;
}

.c-office__item-email {
	font-size: var(--heading-font-size);
	margin: 10px 0;
	font-weight: bold;
}

.c-office__item-email a {
	text-decoration: none;
	color: #333;
}

.c-office__item-email::before {
	content: "\f0e0";
	font-family: "Font Awesome 6 Free";
	font-size: var(--heading-font-size);
	margin-right: 5px;
	font-weight: bold;
}

.c-office__item-button {
	text-align: center;
	margin-top: 30px;
}

.c-topics__box {
	margin-top: clamp(30px, (30 / 768 * 100vw), 40px);
	padding-top: clamp(30px, (30 / 768 * 100vw), 40px);
	border: 0 solid var(--border-color);
	border-width: 1px 0 0;
}

.c-topics {
	/* background-color: #fff; */
	/* padding: clamp(20px, (20 / 768 * 100vw), 30px) clamp(30px, (30 / 768 * 100vw), 40px); */
	width: calc(100% - 40px);
	max-width: 900px;
	margin: 0 auto;
	/* border-radius: 10px; */
}

.c-topics__title {
	font-size: 2rem;
	color: var(--main-color);
	margin-bottom: 5px;
}

@media (min-width: 768px) {
	.c-topics__title {
		font-size: 2.6rem;
	}
}

.c-topics__list {
	list-style: none;
	padding: 0;
}

.c-topics__item {
	display: flex;
	flex-direction: column;
	border: 0 solid var(--border-color);
	border-width: 1px 0 0;
	padding: 15px 0;
}



@media (min-width: 768px) {
	.c-topics__item {
		flex-direction: row;
	}
}

.c-topics__item:last-of-type {
	border-width: 1px 0;
}

.c-topics__date {
	width: 14rem;
	font-size: 0.9em;
	color: var(--main-color);
	font-weight: 600;
	margin-bottom: 0.2em;
}

@media (min-width: 768px) {
	.c-topics__item {
		margin-bottom: 0;
	}
}

.c-pagetop {
	position: fixed;
	bottom: 45px;
	right: 20px;
	z-index: 100;
	width: 50px;
	height: 50px;
	background-color: #585a60;
	color: #fff;
	border-radius: 50%;
	display: block;
	text-decoration: none;
}

.c-pagetop::before {
	content: "\f062";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: var(--heading-font-size);
	display: block;
	text-align: center;
	line-height: 50px;
	color: #fff;
}

.c-form__wrapper {
	max-width: 700px;
	margin: 0 auto;
}

.c-form__title {
	font-size: var(--heading-font-size);
	margin-bottom: 20px;
	padding: 0.5em;
	text-align: center;
	background: #eef2f5;
}

.c-form__list {
	display: flex;
	flex-direction: column;
	gap: 5px;
	list-style: none;
	padding: 0;
	margin: 0;
}

@media (min-width: 768px) {
	.c-form__list {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 0;
	}
}

.c-form__list input,
.c-form__list textarea,
.c-form__list select {
	padding: 5px;
}

.c-form__term {
	width: 100%;
	font-weight: normal;
	display: flex;
	align-items: center;
	padding: 5px 10px;
}

.c-form__term span {
	display: block;
}

@media (min-width: 768px) {
	.c-form__term {
		width: 45%;
		padding: 25px 20px;
		border-bottom: #ccc solid 1px;
	}
}

.c-form__desc {
	width: 100%;
	border-bottom: #ccc solid 1px;
	padding: 5px 10px 30px;
}

@media (min-width: 768px) {
	.c-form__desc {
		width: 55%;
		padding: 25px 20px;
	}
}

.c-form__desc .mwform-tel-field input[type="text"] {
	width: 80px;
}

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

.c-form__button button,
.c-form__button input[type="button"],
.c-form__button input[type="reset"],
.c-form__button input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 6px;
	background: var(--btn-color--form);
	color: #fff;
	padding: 0.6em 2em;
	min-width: 190px;
}

.c-form__button input[type="submit"][name="submitBack"] {
	margin-bottom: 20px;
	border: 1px solid var(--btn-color--form);
	background: #fff;
	color: var(--btn-color--form) !important;
}

.c-form__text {
	max-width: 100%;
}

.c-require {
	background: var(--accent-color);
	color: #fff;
	font-size: 1.1rem;
	/* margin-top: 10px; */
	font-weight: normal;
	border-radius: 5px;
	padding: 3px 5px;
	display: inline-block;
	margin-left: 5px;
}

.smf-progress-tracker {
	max-width: 900px;
	margin: 0 auto;
}

.smf-form {
	max-width: clamp(1000px, 100vw, 1200px);
	margin: 0 auto;
	padding: 0 15px;
	max-width: 800px;
}

@media (min-width: 1200px) {
	.smf-form {
		padding: 0;
	}
}

.smf-form .wp-block-heading {
	font-size: 1.6rem;
	text-align: center;
	padding: 10px;
	margin-top: 30px;
}

.smf-item {
	display: flex;
	align-items: center;
}

.smf-item__col--label {
	width: 35%;
}

.smf-item__col--controls {
	width: 65%;
}

/* 必須ラベル */
.smf-item:has([data-validations~=required]) .smf-item__label__text::after {
	content: "必須";
	display: inline-block;
	padding: 5px 6px;
	color: #fff;
	background-color: crimson;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1;
	margin-left: 1em;
	border-radius: 4px;
}

:where(.wp-block-columns) {
	margin: 0 !important;
}

.sp-only {
	display: block;
}

@media (min-width: 768px) {
	.sp-only {
		display: none;
	}
}

.tablet-only {
	display: none;
}

@media (min-width: 768px) {
	.tablet-only {
		display: block;
	}
}

.laptop-only {
	display: none;
}

@media (min-width: 1024px) {
	.laptop-only {
		display: block;
	}
}

.tablet-and-pc-only {
	display: none;
}

@media (min-width: 768px) {
	.tablet-and-pc-only {
		display: block;
	}
}

@media (min-width: 1024px) {
	.tablet-and-pc-only {
		display: block;
	}
}

html {
	font-size: 62.5%;
}

body {
	font-family: var(--base-font-family);
	font-size: var(--base-font-size);
	line-height: 1.6;
	color: var(--text-color);
	background-color: var(--bg-color);
}

.post,
.page {
	margin: 0 0 0em;
}

body.is-hidden {
	overflow: hidden;
}

select {
	background-color: #fff;
	border-radius: 3px;
	padding: 3px;
}

ul,
ol {
	list-style: none;
	padding: 0;
	margin: 0;
}

a:visited {
	color: var(--text-color);
}

.p-heading,
.entry-header {
	position: relative;
	background: var(--main-color);
	padding: clamp(20px, (20 / 480 * 100vw), 30px) 0;
	margin-bottom: 30px;
}

.p-heading::before,
.p-heading::after,
.entry-header::before,
.entry-header::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background: rgba(255, 255, 255, 0.4);
}

.p-heading::before,
.entry-header::before {
	bottom: 2px;
}

.p-heading::after,
.entry-header::after {
	top: 2px;
}

@media (min-width: 768px) {

	.p-heading,
	.entry-header {
		margin-bottom: clamp(30px, (30 / 768 * 100vw), 40px);
	}
}

.p-heading__title,
.entry-title {
	color: #fff;
	font-size: var(--heading-font-size);
	font-weight: 200;
	text-align: center;
	line-height: 1;
}


.p-top__mv {
	background: url("../img/dummy_mv.jpg") no-repeat center center;
	background-size: cover;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: clamp(40px, (40 / 768 * 100vw), 60px);
}

.p-top__mv #form_search_result {
	display: flex;
	width: 80%;
	max-width: 500px;
}

.p-top__mv #form_search_result #searchword {
	width: calc(100% - 10rem);
	padding: 5px 10px;
	font-size: 18px;
	padding: 1rem 2rem;
	margin: 0 -6px 0 0;
	border-radius: 11px 0 0 11px;
	border: none;
	box-shadow: 0px 0px 30px -10px var(--main-color);
}

.p-top__mv #form_search_result a.btn_search {
	position: static;
	background: #3886C1;
	width: 10rem;
	margin: 0 auto;
	color: white;
	text-align: center;
	text-decoration: none;
	font-weight: bold;
	font-size: 18px;
	padding: 1rem 2rem;
	border-radius: 0 11px 11px 0;
}

@media (max-width: 768px) {
	.p-top__mv #form_search_result {
		max-width: 95%;
	}
}

.p-top__headline {
	font-size: var(--heading-font-size);
	font-weight: bold;
	text-align: center;
	margin-bottom: 1.5em;
}

.p-top__headline::after {
	display: block;
	content: "";
	background: #3990c4;
	height: 4px;
	width: 50px;
	margin: 0.8em auto 0;
}


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

.p-top__company__txt>p {
	display: inline-block;
	text-align: left;
}


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

.p-top__company.l-section {
	padding-bottom: clamp(60px, (60 / 768 * 100vw), 90px);
}

.p-top__search {
	background: #3990c4;
	border-radius: 10px;
	padding: 15px;
}

.p-top__search-title {
	color: #fff;
	font-size: var(--heading-font-size);
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
}

.p-top__search-list {
	display: grid;
	gap: 10px;
	font-weight: bold;
}

@media (min-width: 768px) {
	.p-top__search-list {
		grid-template-columns: repeat(3, 1fr);
	}
}

.p-top__search-link {
	text-decoration: none;
	display: block;
	width: 100%;
	padding: 20px 0;
	text-align: center;
	border-radius: 10px;
	color: var(--text-color);
	background: #fff;
}

.p-top__search-link:hover {
	opacity: 0.8;
}

.p-railroad__list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	font-size: 1.4rem;
	text-align: center;
	margin-bottom: clamp(60px, (60 / 768 * 100vw), 90px);
}

@media (min-width: 768px) {
	.p-railroad__list {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1024px) {
	.p-railroad__list {
		grid-template-columns: repeat(4, 1fr);
	}
}

.p-railroad__link {
	display: block;
	padding: 15px 0;
	background: var(--main-color);
	color: #fff;
	font-weight: bold;
	border-radius: 8px;
	text-decoration: none;
	letter-spacing: 0.12em;
}

.p-railroad__link:visited {
	color: #fff;
}

.p-railroad__link:hover {
	cursor: pointer;
	opacity: 0.8;
	color: #fff;
}

.p-result__condition {
	display: flex;
	flex-direction: column;
	gap: 20px;
	background: #fff;
	margin: 50px 0;
	padding: 20px;
	border-radius: 10px;
}

@media (min-width: 768px) {
	.p-result__condition {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}

.p-result__condition-list {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 10px;
	font-size: 1.3rem;
}

.p-result__condition-list dt {
	background: #ccc;
	border-radius: 5px;
	text-align: center;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
}

.p-result__condition-list dd span::after {
	content: "/";
	padding: 0 5px;
}

.p-result__condition-list dd span:last-child::after {
	content: "";
}

.p-result__sort {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.p-result__sort-select {
	border-radius: 5px;
	padding: 3px 10px;
}

.p-sub {
	background: #fff;
}

.p-sub__title {
	background: var(--main-color);
	color: #fff;
	font-size: 1.6rem;
	font-weight: normal;
	padding: 10px;
	margin-bottom: 0.5em;
}

.p-sub__section {
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.8;
}

.p-sub__section:last-child {
	margin-bottom: 0;
}

.p-sub__heading {
	font-size: 1.4rem;
	font-weight: bold;
	color: var(--main-color);
	margin-bottom: 10px;
	border-bottom: var(--main-color) 1px solid;
}

.p-sub__section .searchword__box input {
	width: 90%;
}

#toSearch a {
	position: fixed;
	color: var(--main-color);
	padding: 8px 12px 8px 28px;
	border: 2px solid var(--main-color);
	background: rgba(255, 255, 255, .95);
	border-radius: 6px;
	left: 16px;
	bottom: 16px;
	font-size: 13px;
	z-index: 20;
	text-decoration: none;
}

#toSearch a:after {
	display: block;
	width: 6px;
	height: 6px;
	border-top: 2px solid var(--main-color);
	border-right: 2px solid var(--main-color);
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	content: "";
	position: absolute;
	left: 12px;
	top: calc(50% - 3.14px);
}





.p-detail__main {
	/* border: var(--main-color) 1px solid; */
	/* border-radius: 10px; */
	margin-bottom: 30px;
}

.p-detail__heading {
	background: var(--main-color);
	color: #fff;
	padding: 10px;
	/* border-radius: 10px 10px 0 0; */
}

.p-detail__label .c-label.c-label--type {
	border: 1px solid #7d8999;
}



@media (min-width: 768px) {
	.p-detail__heading {
		display: flex;
		align-items: center;
		gap: 10px;
		justify-content: center;
	}
}

.p-detail__title {
	font-size: clamp(2rem, 2vw, 2.2rem);
	font-weight: bold;
}

.p-detail__data-wrapper {
	display: flex;
	flex-direction: column-reverse;
	gap: 20px;
	padding: clamp(20px, (20 / 480 * 100vw), 30px) 0;
	background: #fff;
	padding-top: 0 !important;
}

@media (min-width: 1024px) {
	.p-detail__data-wrapper {
		flex-direction: row-reverse;
		gap: 0 20px;
		justify-content: space-between;
		padding: clamp(30px, (30 / 1024 * 100vw), 50px) 0;
	}
}

@media (min-width: 1024px) {
	.p-detail__data {
		width: 50%;
	}
}

@media (min-width: 768px) {
	.p-detail__data .c-data__text {
		font-size: 1.5rem;
	}
}


@media (min-width: 1024px) {
	.p-detail__image {
		width: 45%;
	}
}

.p-detail__image img {
	width: 100%;
	height: auto;
}

.p-detail__image-caption {
	font-size: 1.2rem;
	text-align: center;
	margin-top: 5px;
}

.p-detail .c-data__button {
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 0 20px;
	gap: 0;
	margin: 0 auto;
	max-width: 840px;
}

.p-detail .c-data__button .c-button {
	width: 100%;
	margin: 0 auto 15px;
}

@media (min-width: 768px) {
	.p-detail .c-data__button .c-button {
		width: 48%;
		margin: 0 auto 30px;
	}
}

.p-detail .propertyInfomation ul {
	margin-top: 0.5em;
}

.p-detail .propertyInfomation ul li {
	display: flex;
	align-items: baseline;
	margin-bottom: .5em;
	line-height: 1.55;
}

.p-detail .propertyInfomation ul li::before {
	content: "●";
	flex: 0 0 1.5em;
	display: block;
}




.p-detail .p-thumbnail {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}

.p-detail .p-thumbnail__item {
	width: 19%;
	display: flex;
	flex-direction: column;
}

.p-detail .p-thumbnail__image {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 640 / 460;
	object-fit: contain;
	object-position: center top;
}

.p-detail .p-thumbnail__caption {
	font-size: 1.2rem;
	text-align: center;
	margin-top: 5px;
}

.p-detail__caption {
	font-size: clamp(1.2rem, 2vw, 1.4rem);
}

.p-detail__thumb {
	max-width: 800px;
	position: relative;
	margin: 0 auto;
}

.p-detail__thumb .swiper-button-prev,
.p-detail__thumb .swiper-button-next {
	position: absolute;
}

.p-detail__thumb .swiper-button-prev::after,
.p-detail__thumb .swiper-button-next::after {
	position: absolute;
	font-size: 1.6rem;
}

.p-detail__thumb .swiper-button-prev {
	left: 0;
}

.p-detail__thumb .swiper-button-prev::after {
	left: -12px;
}

@media (min-width: 1024px) {
	.p-detail__thumb .swiper-button-prev {
		left: -30px;
	}
}

.p-detail__thumb .swiper-button-next {
	right: 0;
}

.p-detail__thumb .swiper-button-next::after {
	right: -12px;
}

@media (min-width: 1024px) {
	.p-detail__thumb .swiper-button-next {
		right: -30px;
	}
}

.p-detail__thumb-swiper {
	width: 100%;
	max-width: 800px;
	display: flex;
	justify-content: center;
	gap: 0 10px;
	margin: 0 auto;
	overflow: hidden;
}

.p-detail__contact {
	background: #fff;
	border: 1px solid var(--main-color);
	padding: 30px 10px;
	margin: 0 auto 60px;
	text-align: center;
	max-width: 800px;
}

.p-detail__tel {
	font-size: 3.5rem;
	font-weight: 900;
}

.p-detail__open {
	font-size: 1.3rem;
}

.p-feature {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	border: 1px solid #889ab2;
	outline: 3px solid var(--main-color);
	outline-offset: 3px;
	background: #fff;
	padding: 30px 20px;
}

.p-feature__text {
	text-align: center;
	margin-bottom: 20px;
}

.p-feature__text>p {
	display: inline-block;
	text-align: left;
}

.p-feature__staff {
	background: var(--main-color);
	color: #fff;
	display: inline-block;
	margin: 0 auto;
}

.p-staff__list {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 30px;
	padding-bottom: 30px;
}

@media (min-width: 768px) {
	.p-staff__list {
		grid-template-columns: repeat(2, 1fr);
	}
}

.p-staff__item {
	background: #fff;
	border: 3px solid var(--border-color);
	outline: 1px solid var(--border-color);
	outline-offset: -6px;
	padding: clamp(30px, (30 / 786 * 100vw), 40px);
}

.p-staff__header {
	display: flex;
	gap: 20px;
	align-items: center;
}

.p-staff__image {
	width: 50%;
	max-width: 200px;
}

@media (min-width: 1024px) {
	.p-staff__image {
		width: 40%;
	}
}

.p-staff__image img {
	border-radius: 50%;
	width: 100%;
	max-width: 200px;
}

.p-staff__profile {
	width: 50%;
}

@media (min-width: 1024px) {
	.p-staff__profile {
		width: 60%;
	}
}

.p-staff__name {
	font-weight: normal;
	font-size: var(--heading-font-size);
	color: #24589d;
	margin-bottom: 20px;
}

.p-staff__title {
	font-size: 0.8em
}

.p-staff__text {
	margin-top: 20px;
	padding: 1em;
	border-top: 1px solid var(--border-color);

}

.js-accordion__button {
	cursor: pointer;
}

.js-accordion__body {
	display: none;
}

.p-form__title {
	font-size: 1.8rem;
	font-weight: bold;
	border-bottom: 1px solid var(--border-color);
	margin-bottom: 10px;
}

.p-form__list {
	margin-bottom: 20px;
}

@media (min-width: 768px) {
	.p-form__list {
		display: flex;
		align-items: start;
	}
}

.p-form__list dt {
	font-size: 1.4rem;
	font-weight: bold;
	display: flex;
	margin-bottom: 10px;
}

@media (min-width: 768px) {
	.p-form__list dt {
		width: 30%;
	}
}

@media (min-width: 768px) {
	.p-form__list dd {
		width: 70%;
	}
}

.p-form__required {
	font-size: 1.1rem;
	background: var(--main-color);
	color: #fff;
	padding: 3px 8px;
	margin-right: 10px;
	font-weight: normal;
}

.p-form__name th {
	font-weight: normal;
	width: 10%;
}

.p-form__name td {
	width: 40%;
}

.p-form__name input {
	width: 100%;
}

.p-form__privacy {
	margin-bottom: 20px;
}

.p-form__privacy h3 {
	font-size: 1.5rem;
}

.p-form__privacy p {
	font-size: 1.2rem;
}

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

.p-form ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.p-form textarea {
	width: 100%;
}

.p-message__wrapper {
	background: #fff;
	padding: 30px 20px;
	border-radius: 10px;
}

@media (min-width: 768px) {
	.p-message__wrapper {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
}

.p-message__image {
	text-align: center;
	height: 250px;
}

@media (min-width: 768px) {
	.p-message__image {
		height: auto;
		width: 30%;
	}
}

.p-message__image img {
	margin: 0 auto;
	border-radius: 10px;
	height: 100%;
	width: auto;
}

@media (min-width: 768px) {
	.p-message__image img {
		width: 100%;
		max-width: 250px;
		height: auto;
	}
}

@media (min-width: 768px) {
	.p-message__content {
		width: 65%;
	}
}

.p-message__title {
	font-size: 1.8rem;
	font-weight: bold;
	margin: 10px 0;
}

.p-message__text {
	line-height: 2;
}

.p-reserve__heading {
	display: flex;
	max-width: 900px;
	margin: 0 auto;
}

.p-reserve__label {
	width: 35%;
}

.p-reserve__contents {
	width: 65%;
	display: flex;
	justify-content: space-between;
}

.p-reserve__image {
	width: 30%;
}

.p-reserve__image img {
	width: 100%;
}

.p-reserve__info {
	/* width: 65%; */
}

.p-reserve__info-01 {
	/* display: flex;
  justify-content: space-between; */
}

.p-copyright {
	background-color: var(--main-color);
	padding: 30px 0;
	text-align: center;
	font-size: 1.2rem;
	color: #fff;
	border: 0 solid rgba(255, 255, 255, 0.5);
	border-width: 1px 0 0;

}

.p-information {
	color: #fff;
}

@media (max-width: 1200px) {
	.p-information {
		max-width: 800px;
		margin: 0 auto;
	}
}

.p-information__txtWrap {
	display: flex;
}

@media (max-width: 768px) {
	.p-information__txtWrap {
		display: flex;
		flex-wrap: wrap;
	}

	.p-information__txtWrap__ttl,
	.p-information__txtWrap__txt {
		width: 100%;
	}
}

.p-information__txtWrap__ttl {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: space-between;
	margin-right: clamp(60px, (60 / 1200 * 100vw), 90px);
	;
}

.p-information__txtWrap__ttl__name {
	font-size: 2rem;
	font-weight: 600;
}

.information__txtWrap__ttl__contact .c-button {
	margin-top: 1em;
	padding: 1rem 6rem;
	font-size: 1.4rem;
	font-weight: bold;
	color: #fff;
	background-color: #4F6CA5;
}

@media (max-width: 768px) {
	.information__txtWrap__ttl__contact .c-button {
		padding: 1rem 8rem;
		margin-bottom: 1em;
	}
}

.p-information__txtWrap__txt__tel {
	margin-bottom: 0.5em;
	font-size: 1.6rem;
	font-weight: 600;
}

.p-information__txtWrap__txt__tel a {
	text-decoration: none;
	color: #fff;
}

@media (min-width: 768px) {
	.p-information__txtWrap__txt__tel a {
		pointer-events: none;
	}
}



.p-information__txtWrap__txt__address,
.p-information__txtWrap__txt__time,
.p-information__txtWrap__txt__holiday {
	font-size: 1.4rem;
}

.p-information__snsWrap {
	display: flex;
	justify-content: flex-end;
	gap: 20px;
}

@media (max-width: 768px) {
	.p-information__snsWrap {
		justify-content: center;
		margin-top: 20px;
	}
}


a.p-information__snsWrap__instagram,
a.p-information__snsWrap__x,
a.p-information__snsWrap__facebook {
	display: block;
}

a.p-information__snsWrap__instagram {
	background: url("../img/footer_icon_insta.svg") no-repeat top center;
	background-size: 100% auto;
	width: 30px;
	height: 30px;
}

a.p-information__snsWrap__x {
	background: url("../img/footer_icon_x.svg") no-repeat top center;
	background-size: 100% auto;
	width: 28px;
	height: 30px;
}

a.p-information__snsWrap__facebook {
	background: url("../img/footer_icon_facebook.svg") no-repeat top center;
	background-size: 100% auto;
	width: 30px;
	height: 30px;
}








.p-voice__list {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 30px;
	margin-bottom: 30px;
}

@media (min-width: 768px) {
	.p-voice__list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.p-voice__list {
		grid-template-columns: repeat(2, 1fr);
	}
}

.p-voice__item {
	background: #fff;
	border: 3px solid var(--border-color);
	outline: 1px solid var(--border-color);
	outline-offset: -6px;
	padding: clamp(30px, (30 / 786 * 100vw), 40px);
}

.p-voice__title {
	font-size: 1.7rem;
	font-weight: bold;
	margin: 0.3em 0 1em;
	padding: 0.5em 0.1em;
	border: 0 solid #0e3e7f;
	border-width: 3px 0 1px;
}

.p-voice__name {
	font-size: var(--heading-font-size);
	font-weight: bold;
	color: var(--main-color);
}

.p-voice__age {
	font-weight: normal;
	font-size: 1.8rem;
}

.p-voice__text {
	font-size: 1.5rem;
}

/* 物件詳細GMAP */
.c-section__gmap iframe {
	width: 100%;
	height: 450px;
	display: block;
	margin: 0 auto;
}