@charset "UTF-8";

:root {
	--color-text: #282824;
	--color-subtext: #686761;
	--color-white: #fff;
	--color-cream: #f6f3ec;
	--color-light-cream: #faf8f3;
	--color-beige: #e6dfd2;
	--color-gold: #b48a3b;
	--color-dark-gold: #9b7228;
	--color-border: #d8d3c8;
	--color-footer: #292824;

	--content-width: 1280px;
	--wide-width: 1440px;
	--header-height: 88px;
}

/* ========================================
	Base
======================================== */

html {
	scroll-padding-top: 110px;
}

body {
	color: var(--color-text);
	background: var(--color-white);
	font-family: "LINE Seed JP", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.85;
	letter-spacing: 0.06em;
}

body.is-menu-open {
	overflow: hidden;
}

main {
	overflow: hidden;
}

.inner {
	width: min(calc(100% - 80px), var(--content-width));
	margin-inline: auto;
}

/* ========================================
	Header
======================================== */

.siteHeader {
	position: absolute;
	z-index: 1000;
	top: 24px;
	left: 0;
	width: 100%;
	transition:
		top 0.3s ease,
		transform 0.3s ease,
		background-color 0.3s ease,
		box-shadow 0.3s ease;
}

.siteHeader__inner {
	display: flex;
	align-items: center;
	width: min(calc(100% - 48px), var(--wide-width));
	min-height: var(--header-height);
	margin-inline: auto;
	padding: 12px 24px 12px 30px;
	background: rgba(255, 255, 255, 0.94);
	border-radius: 16px;
	box-shadow: 0 10px 35px rgba(39, 35, 26, 0.08);
	backdrop-filter: blur(12px);
}

.siteHeader.is-fixed {
	position: fixed;
	top: 0;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 5px 20px rgba(32, 28, 20, 0.08);
}

.siteHeader.is-fixed .siteHeader__inner {
	width: 100%;
	max-width: none;
	min-height: 76px;
	padding-block: 8px;
	border-radius: 0;
	box-shadow: none;
}

.siteHeader__logo {
	position: relative;
	z-index: 1100;
	display: block;
	flex: 0 0 auto;
	width: 300px;
}

.siteHeader__logo img {
	width: 100%;
}

/* ========================================
	Global navigation
======================================== */

.globalNav {
	display: flex;
	align-items: center;
	gap: 27px;
	margin-left: auto;
}

.globalNav__list {
	display: flex;
	align-items: center;
	gap: clamp(18px, 1.7vw, 31px);
}

.globalNav__link {
	position: relative;
	display: block;
	padding: 14px 0;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.05em;
	white-space: nowrap;
}

.globalNav__link::after {
	position: absolute;
	right: 0;
	bottom: 7px;
	left: 0;
	width: 0;
	height: 1px;
	margin: auto;
	background: var(--color-gold);
	content: "";
	transition: width 0.25s ease;
}

.globalNav__link:hover::after,
.globalNav__link.is-current::after {
	width: 100%;
}

.headerSns {
	display: flex;
	align-items: center;
	gap: 25px;
}

.headerSns__link {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	background: #272622;
	border-radius: 50%;
	transition:
		opacity 0.25s ease,
		transform 0.25s ease;
}

.headerSns__link:hover {
	opacity: 0.72;
	transform: translateY(-2px);
}

.headerSns__link img {
	width: 17px;
	height: 17px;
	object-fit: contain;
}

/* ========================================
	Menu button
======================================== */

.menuButton {
	display: none;
	position: relative;
	z-index: 1200;
	width: 48px;
	height: 48px;
	background: var(--color-text);
	border-radius: 50%;
}

.menuButton__line {
	position: absolute;
	left: 50%;
	width: 20px;
	height: 1px;
	background: #fff;
	transform: translateX(-50%);
	transition:
		top 0.3s ease,
		transform 0.3s ease,
		opacity 0.3s ease;
}

.menuButton__line:nth-child(1) {
	top: 17px;
}

.menuButton__line:nth-child(2) {
	top: 23px;
}

.menuButton__line:nth-child(3) {
	top: 29px;
}

.menuButton.is-open .menuButton__line:nth-child(1) {
	top: 23px;
	transform: translateX(-50%) rotate(45deg);
}

.menuButton.is-open .menuButton__line:nth-child(2) {
	opacity: 0;
}

.menuButton.is-open .menuButton__line:nth-child(3) {
	top: 23px;
	transform: translateX(-50%) rotate(-45deg);
}

/* ========================================
	Fixed contact
======================================== */

.fixedContact {
	position: fixed;
	z-index: 900;
	top: 50%;
	right: 0;
	width: 58px;
	height: 210px;
	padding: 4px;
	background: #c69127;
	border-radius: 10px 0 0 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
	transform: translateY(-50%);
}

.fixedContact__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 12px 8px 10px;
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-right: 0;
	border-radius: 7px 0 0 7px;
}

.fixedContact:hover {
	background: #ad7d20;
}

.fixedContact i {
	flex-shrink: 0;
	margin-bottom: 8px;
	color: #fff;
	font-size: 17px;
}

.fixedContact__icon {
	margin-bottom: 6px;
	font-size: 17px;
	writing-mode: horizontal-tb;
}

.fixedContact__text {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: 0.08em;
	writing-mode: vertical-rl;
}

.fixedContact__small {
	font-size: 10px;
	letter-spacing: 0.12em;
}

.fixedContact__main {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
}

/* ========================================
	Footer
======================================== */

.siteFooter {
	color: #171713;
	background: #cfc5b3;
}

.siteFooter__inner {
	display: grid;
	grid-template-columns: 1.15fr 1fr 0.95fr;
	gap: clamp(55px, 6vw, 95px);
	width: min(calc(100% - 100px), 1160px);
	margin-inline: auto;
	padding: 76px 0 58px;
}

/* Company */

.siteFooter__company {
	min-width: 0;
}

.siteFooter__logo {
	display: block;
	width: 145px;
	margin: 0 auto 12px;
}

.siteFooter__logo img {
	width: 100%;
}

.siteFooter__lead {
	font-size: 13px;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: 0.02em;
}

.siteFooter__companyName {
	margin-top: 10px;
	font-size: 30px;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: 0.15em;
}

.siteFooter__companyName span {
	display: block;
	margin-top: 1px;
	font-size: 21px;
	text-align: right;
	padding-right: 17px;
}

.siteFooter__address {
	margin-top: 17px;
	font-size: 16px;
	line-height: 1.75;
}


.siteFooter__contact {
	display: flex;
	align-items: baseline;
	width: fit-content;
	margin-top: 17px;
	padding-bottom: 5px;
	border-bottom: 2px solid #b78a25;
}

.siteFooter__tel {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	border-bottom: 0;
	font-family: "LINE Seed JP", sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.1;
}

.siteFooter__tel i {
	font-size: 13px;
}

.siteFooter__hours {
	margin-left: 8px;
	font-size: 9px;
	font-weight: 500;
	white-space: nowrap;
}

/* Navigation */

.footerNav {
	align-self: center;
}

.footerNav__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px 30px;
}

.footerNav__list li {
	border: 0;
}

.footerNav__list a {
	display: block;
	padding: 0;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.5;
	transition: opacity 0.25s ease;
}

.footerNav__list a::after {
	display: none;
}

.footerNav__list a:hover {
	opacity: 0.5;
}

/* SNS links */

.siteFooter__links {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 14px;
	width: 100%;
	max-width: 320px;
	justify-self: end;
}

.footerLink {
	display: block;
	width: 100%;
	padding: 0;
	background: none;
	border-radius: 7px;
	box-shadow: 0 3px 8px rgba(66, 49, 21, 0.08);
	overflow: hidden;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		opacity 0.25s ease;
}

.footerLink:hover {
	transform: translateY(-2px);
	box-shadow: 0 7px 15px rgba(66, 49, 21, 0.13);
}


.footerLink img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.footerLink:hover {
	transform: translateY(-2px);
	box-shadow: 0 7px 15px rgba(66, 49, 21, 0.13);
	opacity: 0.9;
}




/* Copyright */

.siteFooter__copyright {
	padding: 0 20px 23px;
	font-size: 9px;
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.03em;
}

.pageTop {
	position: fixed;
	right: 28px;
	bottom: 35px;
	z-index: 90;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border: 1px solid #171713;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);

	/* 最初は非表示 */
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	pointer-events: none;

	transition:
		opacity .35s ease,
		visibility .35s ease,
		transform .35s ease,
		background .3s;
}

/* スクロールしたら表示 */
.pageTop.is-show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.pageTop.is-show:hover {
	background: #171713;
	transform: translateY(-3px);
}

.pageTop__arrow {
	position: relative;
	display: block;
	width: 14px;
	height: 14px;
}

.pageTop__arrow::before {
	content: "";
	position: absolute;
	top: 4px;
	left: 2px;
	width: 9px;
	height: 9px;
	border-top: 2px solid #171713;
	border-left: 2px solid #171713;
	transform: rotate(45deg);
}

.pageTop:hover .pageTop__arrow::before {
	border-color: #fff;
}

/* 全カード共通 */

.worksCard {
	min-width: 0;
	background: transparent;
}

.worksCard__link {
	display: block;
	height: auto;
	overflow: visible;
}

.worksCard__image {
	overflow: hidden;
	width: 100%;
	aspect-ratio: 1.55 / 1;
	border-radius: 14px;
	background: #eee;
}

.worksCard__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.worksCard__link:hover .worksCard__image img {
	transform: scale(1.035);
}

/* 通常カードの文章 */

.worksCard__body {
	position: static;
	padding: 15px 0 0;
	color: var(--color-text);
	background: none;
	opacity: 1;
	transform: none;
}

.worksCard__title {
	font-family: "LINE Seed JP", sans-serif;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.65;
	letter-spacing: 0.02em;
	min-height: 3.4em; /* 2行分 */
}

.worksCard__text {
	display: block;
	margin-top: 7px;
	color: #55534e;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0.02em;
	min-height: 40px;
}

.worksCard__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 10px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5;
}

.worksCard__meta i {
	flex-shrink: 0;
	font-size: 12px;
	transform: rotate(-35deg);
}


/* 1枚目の大きなカード */

.worksCard--large {
	grid-column: auto;
	grid-row: auto;
	height: auto;
}

.worksCard--large .worksCard__link {
	display: block;
	min-height: 0;
	overflow: hidden;
	border-radius: 14px;
}

.worksCard__mainImage {
	display: block;
	width: 100%;
	height: auto;
	transition: opacity 0.3s ease;
}

/* ========================================
	News / Contact / Bottom visual
======================================== */

.homeInformation {
	position: relative;
	margin-top: 20px;
	padding: 80px 0 0;
	overflow: hidden;
	background: #fff;
}

.homeInformation::before {
	position: absolute;
	z-index: 1;
	top: 235px;
	right: 0;
	bottom: 0;
	left: 0;
	content: "";
}

.homeInformation__bg {
	position: absolute;
	z-index: 0;
	top: 235px;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
}


.homeInformation__bg::after {
	position: absolute;
	inset: 0;
	content: "";
}

.homeInformation__bg img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 58% 70%;
}

.homeInformation__inner {
	position: relative;
	z-index: 2;
	width: min(calc(100% - 80px), 1160px);
	margin-inline: auto;
}

.homeInformation__boxes {
	display: grid;
	grid-template-columns: 0.96fr 1.04fr;
	gap: 28px;
	align-items: start;
}

/* ========================================
	News
======================================== */

.newsBox {
	min-height: 440px;
	padding: 48px 42px 0;
	overflow: hidden;
	background: rgba(247, 247, 247, 0.97);
	border-radius: 14px;
	box-shadow: 0 8px 22px rgba(41, 31, 19, 0.08);
}

.newsBox__en,
.contactBox__en {
	color: #9f8b6d;
	font-family: "Noto Serif JP", serif;
	font-size: 11px;
	letter-spacing: 0.16em;
}

.newsBox__title {
	margin-top: 6px;
	font-family: "LINE Seed JP", sans-serif;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.04em;
}

.newsList {
	margin-top: 35px;
}

.newsList__item {
	border-bottom: 0;
}

.newsList__link {
	display: grid;
	grid-template-columns: 104px minmax(0, 1fr);
	gap: 20px;
	align-items: center;
	padding: 10px 0;
	transition: opacity 0.25s ease;
}

.newsList__link:hover {
	opacity: 0.55;
}

.newsList time {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

.newsList p {
	overflow: hidden;
	font-size: 11px;
	line-height: 1.6;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.newsBox__footer {
	margin: 23px -42px 0;
	border-top: 1px solid #dadada;
}

.newsBox__more {
	display: flex;
	align-items: center;
	gap: 10px;
	width: fit-content;
	padding: 17px 42px 19px;
	font-size: 11px;
	font-weight: 700;
	transition: opacity 0.25s ease;
}

.newsBox__more:hover {
	opacity: 0.55;
}

.newsBox__more i {
	font-size: 9px;
}

/* ========================================
	Contact
======================================== */

.contactBox {
	position: relative;
	min-height: 440px;
	overflow: hidden;
	border-radius: 14px;
	box-shadow: 0 8px 22px rgba(41, 31, 19, 0.08);
}

.contactBox__image,
.contactBox__overlay {
	position: absolute;
	inset: 0;
}

.contactBox__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.6s ease;
}

.contactBox:hover .contactBox__image img {
	transform: scale(1.025);
}

.contactBox__overlay {
	/*background: rgba(174, 149, 84, 0.42);*/
}

.contactBox__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	min-height: 440px;
	padding: 48px 50px 40px;
	color: #161512;
}

.contactBox__title {
	max-width: 440px;
	margin-top: 6px;
	font-family: "LINE Seed JP", sans-serif;
	font-size: 27px;
	font-weight: 700;
	line-height: 1.55;
	letter-spacing: 0.03em;
}

.contactBox__text {
	margin-top: 42px;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.8;
}

.contactButton {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 280px;
	min-height: 55px;
	margin-top: auto;
	padding: 0 20px 0 26px;
	color: #171612;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 9px;
	font-size: 12px;
	font-weight: 700;
	box-shadow: 0 5px 15px rgba(46, 31, 14, 0.08);
	transition:
		background-color 0.25s ease,
		transform 0.25s ease;
}

.contactButton:hover {
	background: #fff;
	transform: translateY(-2px);
}

.contactButton i {
	font-size: 10px;
}

/* ========================================
	Service banners
======================================== */

.serviceBanners {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	margin-top: 185px;
	margin-bottom: 100px;
}

.serviceBanner {
	display: grid;
	grid-template-columns: 82px minmax(0, 1fr) 65px;
	align-items: center;
	gap: 16px;
	min-height: 105px;
	padding: 16px 22px;
	background: rgba(255, 255, 255, 0.97);
	border-radius: 7px;
	box-shadow: 0 8px 22px rgba(41, 31, 19, 0.13);
	transition: transform 0.25s ease;
}

.serviceBanner:hover {
	transform: translateY(-4px);
}

.serviceBanner__logo img {
	width: 72px;
}

.serviceBanner__small {
	font-size: 9px;
	font-weight: 700;
	line-height: 1.4;
}

.serviceBanner__title {
	margin-top: 2px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0.02em;
	white-space: nowrap;
}

.serviceBanner__icon {
	width: 60px;
	height: 60px;
	object-fit: contain;
}



/* ========================================
	Tablet
======================================== */

@media screen and (max-width: 1180px) {

	.siteFooter__inner {
		grid-template-columns: 1fr 1fr;
		gap: 55px;
	}
	
	.siteHeader__logo {
		width: 145px;
	}

	.siteFooter__links {
		grid-column: 1 / -1;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}
	
	.globalNav {
		gap: 17px;
	}

	.globalNav__list {
		gap: 16px;
	}

	.globalNav__link {
		font-size: 11px;
	}

	.headerSns {
		gap: 7px;
	}

	.headerSns__link {
		width: 33px;
		height: 33px;
	}

	.siteFooter__inner {
		grid-template-columns: 1fr 1.4fr;
	}

	.siteFooter__links {
		grid-column: 1 / -1;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}
	.worksCard__overlay {
		padding: 28px;
	}

}

/* ========================================
	Smartphone
======================================== */

@media screen and (max-width: 767px) {

	:root {
		--header-height: 68px;
	}

	html {
		scroll-padding-top: 85px;
	}

	body {
		font-size: 14px;
	}

	.inner {
		width: calc(100% - 40px);
	}

	.siteHeader {
		top: 12px;
	}

	.siteHeader__inner {
		width: calc(100% - 24px);
		min-height: var(--header-height);
		padding: 8px 9px 8px 17px;
		border-radius: 12px;
	}

	.siteHeader.is-fixed {
		top: 0;
	}

	.siteHeader.is-fixed .siteHeader__inner {
		width: 100%;
		min-height: var(--header-height);
		padding-inline: 16px 9px;
		border-radius: 0;
	}

	.siteHeader__logo {
		width: 235px;
	}

	.menuButton {
		display: block;
		margin-left: auto;
	}

	body.is-menu-open .fixedContact,
	body.is-menu-open .pageTop {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}

	.worksCard {
		width: 100%;
		min-width: 0;
		height: auto;
	}

	.worksCard__link {
		display: block;
		width: 100%;
		height: auto;
		overflow: visible;
	}

	.worksCard--large {
		height: auto;
	}

	.worksCard--large .worksCard__link {
		height: auto;
		min-height: 0;
		overflow: hidden;
		border-radius: 10px;
	}
	

	.worksCard__mainImage {
		display: block;
		width: 100%;
		height: auto;
	}
	
	.worksCard__image {
		width: 100%;
		aspect-ratio: 1.5 / 1;
		overflow: hidden;
		border-radius: 10px;
	}

	.worksCard__image img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	.worksCard__body {
		display: block;
		padding-top: 13px;
	}

	.worksCard__title {
		font-size: 18px;
		line-height: 1.6;
	}

	.worksCard__text {
		margin-top: 7px;
		font-size: 15px;
		line-height: 1.8;
	}

	.worksCard__meta {
		margin-top: 9px;
	}


	.globalNav {
		position: fixed;
		z-index: 1050;
		top: 0;
		right: 12px;
		bottom: auto;
		left: 12px;

		display: block;
		width: auto;
		height: calc(100dvh - 12px);
		min-height: 100vh;
		margin: 0;
		padding: 100px 28px 45px;
		border-radius: 0 0 16px 16px;
		
		overflow-x: hidden;
		overflow-y: auto;
		overscroll-behavior: contain;

		visibility: hidden;
		background: rgba(247, 244, 237, 0.99);
		opacity: 0;
		transform: translateY(-15px);

		transition:
			visibility 0.35s ease,
			opacity 0.35s ease,
			transform 0.35s ease;
	}

	.globalNav.is-open {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
	}

	.globalNav__list {
		display: block;
		border-top: 1px solid rgba(40, 40, 36, 0.16);
	}

	.globalNav__item {
		border-bottom: 1px solid rgba(40, 40, 36, 0.16);
	}

	.globalNav__link {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 17px 4px;
		font-size: 15px;
	}

	.globalNav__link::before {
		order: 2;
		content: "→";
	}

	.globalNav__link::after {
		display: none;
	}

	.headerSns {
		justify-content: center;
		gap: 14px;
		margin-top: 35px;
	}

	.headerSns__link {
		width: 44px;
		height: 44px;
	}

	.fixedContact {
		top: auto;
		right: 14px;
		bottom: 16px;
		width: 94px;
		height: 94px;
		min-width: 0;
		padding: 0;
		border-radius: 50%;
		transform: none;
		writing-mode: horizontal-tb;
	}

	.fixedContact:hover {
		width: 94px;
	}

	.fixedContact__inner {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		padding: 0;
		border: none;
		border-radius: 50%;
	}

	.fixedContact__text {
		writing-mode: horizontal-tb;
		text-orientation: mixed;
		white-space: normal;
		text-align: center;
		font-size: 11px;
		line-height: 1.4;
	}
	
	.fixedContact__icon {
		margin: 0 0 4px;
		font-size: 15px;
	}

	.fixedContact__small,
	.fixedContact__main {
		display: block;
		writing-mode: horizontal-tb;
		text-orientation: mixed;
		white-space: nowrap;
	}

	.fixedContact__small {
		font-size: 10px;
		line-height: 1.3;
	}

	.fixedContact__main {
		font-size: 12px;
		line-height: 1.3;
	}

	.siteFooter__inner {
		display: block;
		width: calc(100% - 40px);
		padding: 60px 0 40px;
	}

	.siteFooter__company {
		text-align: center;
	}

	.siteFooter__contact {
		margin: 17px auto 0;
	}

	.siteFooter__logo {
		margin-inline: auto;
	}

	.siteFooter__companyName {
		font-size: 22px;
	}

	.siteFooter__companyName span {
		text-align: center;
	}

	.siteFooter__tel {
		justify-content: center;
	}

	.siteFooter__hours {
		display: block;
		margin: 8px 0 0;
	}

	.footerNav {
		margin-top: 45px;
	}

	.footerNav__list {
		gap: 22px 30px;
	}

	.siteFooter__links {
		display: flex;
		flex-direction: column;
		gap: 14px;
		width: 100%;
		max-width: 320px;
		margin: 45px auto 0;
		justify-self: center;
	}

	.footerLink {
		min-height: 62px;
	}

	.siteFooter__copyright {
		padding-bottom: 20px;
	}
	.pageTop {
		right: 18px;
		bottom: 112px;
		width: 42px;
		height: 42px;
	}

	.pageTop__arrow {
		width: 10px;
		height: 10px;
	}

	.homeInformation {
		margin-top: 0;
		padding: 60px 0 0;
	}

	.homeInformation__inner {
		width: calc(100% - 30px);
	}

	.homeInformation__boxes {
		display: grid;
		grid-template-columns: 1fr;
		gap: 16px;
	}

	/* お知らせ */
	.newsBox {
		width: 100%;
		min-height: 0;
		padding: 38px 22px 0;
	}

	.newsBox__heading {
		align-items: center;
	}

	.newsList__link {
		display: grid;
		grid-template-columns: 82px 1fr;
		gap: 8px 12px;
		padding: 14px 0;
	}

	.newsList p {
		grid-column: auto;
		white-space: normal;
	}

	/* お問い合わせ */
	.contactBox {
		width: 100%;
		min-height: 430px;
		margin-top: 0;
	}

	.contactBox__content {
		min-height: 430px;
		padding: 40px 25px;
	}

	.contactBox__title {
		font-size: 25px;
	}

	.contactBox__text br {
		display: none;
	}

	/* 背景写真 */
	.homeInformation__bg {
		top: 280px;
	}

	/* 下部バナー */
	.serviceBanners {
		grid-template-columns: 1fr;
		gap: 14px;
		margin-top: 180px;
		margin-bottom: 50px;
	}

	.serviceBanner {
		grid-template-columns: 70px minmax(0, 1fr) 44px;
		gap: 10px;
		min-height: 90px;
		padding: 14px;
	}

	.serviceBanner__logo img {
		width: 68px;
	}

	.serviceBanner__title {
		font-size: 14px;
		white-space: normal;
	}

	.serviceBanner__icon {
		width: 42px;
		height: 42px;
	}
}


/* ======================================================
   Page Top
====================================================== */

.pageTop {
	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 9999;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 52px;
	height: 52px;

	padding: 0;
	border: 1px solid rgba(255, 255, 255, .45);
	border-radius: 4px;

	background: #2f4639;
	color: #fff;

	font-size: 16px;
	cursor: pointer;

	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);

	transition:
		opacity .3s ease,
		visibility .3s ease,
		transform .3s ease,
		background .3s ease;
}

.pageTop.is-show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.pageTop:hover {
	background: #22372d;
}

@media (max-width: 767px) {

	.pageTop {
		right: 16px;
		bottom: 16px;
		width: 46px;
		height: 46px;
	}

}

