@charset "utf-8";

/* -------------------------------------------------- */
/* PC*/
/* -------------------------------------------------- */

.start {
	background: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.start p {
	z-index: 9999;
	width: 24%;
	max-width: 200px;
}

.start p img {
	width: 100%;
}

.startLogo {
	width: 100%;
	height: auto;
}

/* =========================================
   メインビジュアル　ロゴ
========================================= */
.mvLogoWrap {
	position: fixed;
	top: 0;
	left: 0;
	width: 220px;
	height: 220px;
	z-index: 950;
	transform-origin: 0 0;
	transition: opacity 0.4s ease, visibility 0.4s ease;
	pointer-events: auto;
}

.mvLogoWrap .logoLink {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	position: relative;
}

.mvLogoWrap .logoFigure {
	width: 114px;
	max-width: 100%;
	transition: all 0.3s ease-in-out;
}

.mvLogoWrap:before,
.mvLogoWrap:after,
.mvLogoWrap .logoLink:before,
.mvLogoWrap .logoLink:after {
	background: #ab0106;
	content: "";
	display: block;
	position: absolute;
	z-index: 10;
	transition: all 0.3s ease;
}

.mvLogoWrap:after {
	width: 0;
	height: 4px;
	top: 0;
	left: 0;
}

.mvLogoWrap:before {
	width: 0;
	height: 4px;
	right: 0;
	bottom: 0;
}

.mvLogoWrap .logoLink:after {
	width: 4px;
	height: 0;
	bottom: 0;
	left: 0;
}

.mvLogoWrap .logoLink:before {
	width: 4px;
	height: 0;
	top: 0;
	right: 0;
}

.mvLogoWrap:hover:before,
.mvLogoWrap:hover:after {
	width: 100%;
}

.mvLogoWrap:hover .logoLink:before,
.mvLogoWrap:hover .logoLink:after {
	height: 100%;
}

body.is-header-visible .mvLogoWrap {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

/* =========================================
   既存の header は最初は非表示にする
========================================= */
header {
	width: 100%;
	height: 100px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 900;
	background: #fff;
	filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.15));
	display: flex;
	align-items: center;

	/* ← 最初は完全非表示 */
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s ease;
}

header.is-show {
	opacity: 1;
	pointer-events: auto;
}

/* ★ 初期状態：フルスクリーン表示 */
#mv {
	width: 100%;
	height: 100vh;
	/* ← 全画面 */
	margin: 0;
	position: relative;
	z-index: 1;
	transition: width 0.6s ease, height 0.6s ease, margin 0.6s ease;
}

/* ← header出現後の最終位置 */
body.is-header-visible #mv {
	width: calc(100% - 120px);
	height: calc(85vh - 100px);
	margin: 100px 0 70px 120px;
}

.mvSliderWrap,
.mvSliderWrap * {
	height: 100%;
}

.mvSlider img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	font-family: 'object-fit: cover;'
}

/* =========================
   Slider Base
========================= */
#mvSliderWrap {
	height: 100%;
	opacity: 0;
	visibility: hidden;
	background: transparent;
	transition: opacity 0.6s ease;
}

#mvSliderWrap.is-visible {
	opacity: 1;
	visibility: visible;
}

#mvSliderWrap .swiper,
#mvSliderWrap .swiper-wrapper,
#mvSliderWrap .swiper-slide {
	height: 100%;
	background: transparent;
}

/* 全画像の初期状態（アニメ開始値と完全一致させる） */
#mvSliderWrap .swiper-slide img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform-origin: center;
	/* transform: scale(1.12); */
	/* ← ここがアニメ開始値 */
	will-change: transform;
}

/* ズームアウト（縮む）アニメだけ行う、拡大ゼロ */
@keyframes mvZoomSmooth {
	0% {
		transform: scale(1.12);
		/* ← 初期値と絶対に同じ */
	}

	100% {
		transform: scale(1);
	}
}

/* JS で付与するクラス */
.mv-zoom-animate {
	animation: mvZoomSmooth 7s ease-out forwards;
}


#mvCatch {
	width: 100%;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -40px);
	z-index: 1;
	overflow: hidden;
}

#catchMain,
#catchSub {
	color: #fff;
}

#catchMain {
	margin: 0;
	font-size: 7rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	overflow: hidden;
}

#catchMain>span {
	display: inline-block;
	position: relative;
	transform: translateY(100%);
	will-change: transform;
}

#catchMain.mv-catch-animated>span {
	animation: mvCatchIn 0.6s ease-out forwards;
}

#catchMain.mv-catch-animated>span:nth-child(1) {
	animation-delay: 0s;
}

#catchMain.mv-catch-animated>span:nth-child(2) {
	animation-delay: 0.05s;
}

#catchMain.mv-catch-animated>span:nth-child(3) {
	animation-delay: 0.1s;
}

#catchMain.mv-catch-animated>span:nth-child(4) {
	animation-delay: 0.15s;
}

#catchMain.mv-catch-animated>span:nth-child(5) {
	animation-delay: 0.2s;
}

#catchMain.mv-catch-animated>span:nth-child(6) {
	animation-delay: 0.25s;
}

#catchMain.mv-catch-animated>span:nth-child(7) {
	animation-delay: 0.3s;
}

#catchMain.mv-catch-animated>span:nth-child(8) {
	animation-delay: 0.35s;
}

#catchMain.mv-catch-animated>span:nth-child(9) {
	animation-delay: 0.4s;
}

#catchMain.mv-catch-animated>span:nth-child(10) {
	animation-delay: 0.45s;
}

#catchMain.mv-catch-animated>span:nth-child(11) {
	animation-delay: 0.5s;
}

#catchMain.mv-catch-animated>span:nth-child(12) {
	animation-delay: 0.55s;
}

@keyframes mvCatchIn {
	from {
		transform: translateY(100%);
	}

	to {
		transform: translateY(0);
	}
}

#catchSub {
	font-size: 2.4rem;
	font-weight: 700;
	letter-spacing: 0.46em;
}

/* scrollArea */
.scrollArea {
	width: 14px;
	height: 59px;
	padding: 0 0 109px;
	position: absolute;
	bottom: 0;
	left: -67px;
	line-height: 10px;
	background: url(../../img/top/arrow_scroll.png) no-repeat bottom center;

	/* ▼ 最初は非表示（追加） */
	opacity: 0;
	transition: opacity 0.6s ease;
}

/* ▼ 表示されるとき（追加） */
.scrollArea.is-show {
	opacity: 1;
}

.scrTxt {
	display: block;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: #000;
	transform: rotate(90deg);
}

#topVision .inner {
	margin: 0 auto 120px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
	flex-direction: row-reverse;
}

#topVisionCatch {
	font-size: 5.0rem;
	font-weight: 700;
	letter-spacing: 0.15em;
}

#topVisionCatch span.color {
	font-weight: 700;
	line-height: 1.6;
	color: #ab0106;
}

#topVisionTxt {
	width: 52.333%;
	padding: 64px 0 0;
	font-size: 1.8rem;
	line-height: 1.9;
	letter-spacing: 0;
}

#bgTxt {
	position: absolute;
	top: 2px;
	left: 304px;
	z-index: -1;
	font-size: 250px;
	font-size: 180px;
	font-weight: 600;
	line-height: 0.7;
	white-space: nowrap;
	color: #fcebec;
}

.topVisionBtn {
	width: 400px;
	position: absolute;
	left: 0;
	bottom: 0;
}

#topService {
	margin: 0 0 80px;
	padding: 65px 0 80px;
	position: relative;
}

#topService:before {
	width: 96.75%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: #f9f9f9;
	content: "";
}

#serviceList {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.serviceBox {
	width: 24.5%;
	max-width: 580px;
	margin: 0 0 40px;
	background: #fff;
}

.serviceBoxIn {
	width: 100%;
	height: 100%;
	max-width: 580px;
	/* display: block; */
	background: #fff;
	display: flex;
	flex-direction: column;
}

.serviceBox05 {
	width: 100%;
	height: 560px;
	max-width: inherit;
}

.serviceBox05 .serviceBoxIn {
	max-width: inherit;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.serviceConts {
	height: 100%;
	padding: 1.8em;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	position: relative;
}

.serviceBox:last-child .serviceConts {
	justify-content: flex-start;
}

.serviceBox05 .serviceConts {
	width: 40%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0 50px;
}

.serviceFigure {
	aspect-ratio: 5 / 3;
	overflow: hidden;
	flex-shrink: 0;
}

.serviceBox05 .serviceFigure {
	width: 67%;
	max-width: 720px;
}

.serviceFigure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .3s ease-in-out;
}

.serviceBoxIn:hover .serviceFigure img {
	transform: scale(1.12);
}

.serviceHead {
	margin: 0 0 1em;
	font-size: clamp(1.6rem, 1.6vw, 1.8rem);
	font-weight: 700;
	text-align: center;
	color: #ab0106;

	& span {
		margin-top: 0.5em;
		display: block;
		color: #333;
		font-size: clamp(1.1rem, 0.8vw, 1.3rem);
		line-height: 2.0;
		background: #eee;
	}
}

.serviceTxt {
	margin: 0 0 1em;
	font-size: 1.5rem;
	line-height: 1.5;
	font-feature-settings: "palt";
}

.serviceBoxIn:hover .serviceTxt,
.serviceBoxIn:hover .btnMore {
	color: #333333;
}

.serviceTxt.txtLetters {
	letter-spacing: 0.05em;
}

.serviceBoxIn:hover .btnMore {
	margin: 0 -10px 0 0;
}

.stayingTtl {
	background: url(../../img/staying/staying_mv_bg.jpg) no-repeat center center / cover;
}

.emphasize {
	font-weight: 700;
	color: #ab0106;
}

.propertyOther .secTtl02 {
	padding: 0 0 12px;
	line-height: 1.0;
}

.propertyOther .secTtlIn {
	font-size: 2.5rem;
}

.propertyOther .secTtlIn:after {
	bottom: -14px;
}

.propertyOther {
	padding: 30px 28px 40px;
}

.otherList {
	margin: 0 0 30px;
	position: relative;
	display: block;
}

.otherList:nth-last-of-type(1) {
	margin: 0;
}

.otherList .propertyPlace {
	margin: 0 0 15px;
}

.listName {
	font-size: 2.0rem;
	line-height: 1.0;
	transition: all .3s ease-in-out;
}

.otherList:hover .listName {
	color: #ab0106;
}

.otherList:before,
.otherList:after {
	position: absolute;
	content: "";
	transition: all .3s ease-in-out;
}

.otherList:before {
	bottom: 6px;
	right: 11px;
	width: 30px;
	height: 1px;
	background: #ab0106;
}

.otherList:after {
	bottom: 2px;
	right: 0;
	width: 8px;
	height: 8px;
	border-top: 1px solid #ab0106;
	border-right: 1px solid #ab0106;
	transform: rotate(45deg);
}

.otherList:hover:before {
	transform: translateX(5px);
}

.otherList:hover:after {
	transform: translateX(5px) rotate(45deg);
}

/* 共通：style.css に集約
#works {
	margin: 0 0 80px;
	padding: 80px 0 100px;
	background: #f9f9f9;
}
*/

.worksTtl {
	margin: 0 0 50px;
	position: relative;
	z-index: 0;
	text-align: center;
}

.worksTtlIn {
	padding: 0 50px;
	display: inline-block;
	background: #f9f9f9;
	font-size: 3.5rem;
	font-weight: 700;
	color: #1a1a1a;
}

.worksTtl:before {
	width: 100%;
	height: 1px;
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	z-index: -1;
	background: #b6b6b6;
}

#contsNav {
	margin: 0 0 150px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.cNavBox {
	width: 100%;
	max-width: 360px;
	margin: 0 40px 0 0;
}

.cNavBoxIn {
	display: block;
	position: relative;
}

.cNavBox03 {
	margin: 0 !important;
}

.cNavFigure {
	position: relative;
	overflow: hidden;
}

.cNavFigure:before {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background: rgba(0, 0, 0, 0.5);
	content: "";
}

.cNavImg {
	width: 100%;
}

.cNavTtl {
	width: 100%;
	position: absolute;
	left: 1em;
	bottom: 1em;
	z-index: 1;
}

.cNavTtlEn,
.cNavTtlJp {
	display: block;
	color: #fff;
}

.cNavTtlEn {
	margin: 0 0 10px;
	font-size: clamp(2.6rem, 3.0vw, 4.0rem);
	font-weight: 700;
	line-height: 0.7;
	text-transform: uppercase;
}

.cNavTtlJp {
	font-size: clamp(1.2, 1.4vw, 1.6rem);
	font-weight: 700;
	letter-spacing: 0.16em;
}

.cNavImg,
.cNavFigure:before {
	transition: all .3s ease-in-out;
}

.cNavBoxIn:hover .cNavImg {
	transform: scale(1.04);
}

.cNavBoxIn:hover .cNavFigure:before {
	background: rgba(0, 0, 0, 0);
}

@media screen and (min-width: 1201px) and (max-width: 1520px) {
	#contsNav {
		padding: 0 40px;
	}
}

@media screen and (min-width: 1025px) and (max-width: 1640px) {
	.linkHouseDo {
		width: 170px;
		height: 170px;
		padding: 75px 0 0;
	}

	.logoHd {
		width: 82%;
		max-width: 180px;
	}

	.logoHd img {
		width: 95%;
		max-width: 170px;
	}

	.boxHdTxt {
		font-size: 1.0rem;
	}
}

@media screen and (min-width: 1025px) and (max-width: 1640px) {
	.mvLogoWrap {
		width: 170px;
		height: 170px;
	}

	.mvLogoWrap .logoFigure {
		width: 88px;
	}
}

@media screen and (min-width: 1025px) and (max-width: 1320px) {
	.serviceBox {
		width: 49%;
		max-width: none;
	}
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
	#catchMain {
		font-size: 5.6rem;
	}

	#topVisionCatch {
		font-size: 4.5rem;
		font-weight: 700;
		letter-spacing: 0.1em;
	}

	#topService:before {
		width: 100%;
	}

	#contsNav {
		margin: 0 0 150px;
		padding: 0 2.5%;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.cNavBox {
		width: 100%;
		max-width: 480px;
		margin: 0 1% 0 0;
	}

	.cNavBoxIn {
		display: block;
		position: relative;
	}

	.cNavTtlEn {
		/* font-size: 3.2rem; */
	}

	#strength {
		margin: 0 0 150px;
	}

	#strength:before {
		display: none;
	}

	#strengthTtl {
		font-feature-settings: "palt";
		letter-spacing: 0.12em;
	}

	#service {
		margin: 0 0 60px;
	}

	.youtube {
		height: 328px
	}

	.youtube iframe {
		width: 100%;
	}
}

/* -------------------------------------------------- */
/* TAB & SP (max-width: 1024px) */
/* -------------------------------------------------- */
@media screen and (max-width: 1024px) {
	#topVision .inner {
		margin: 0 auto 65px;
		flex-wrap: wrap;
		flex-direction: column-reverse;
	}

	#topVision {
		flex-direction: column-reverse;
	}

	#topVisionTxt {
		width: 100%;
		text-align: center;
	}

	#topVisionTxt h1,
	#topVisionTxt p {
		text-align: left;
	}

	.topVisionBtn {
		width: 100%;
		position: relative;
		left: 0;
		bottom: 0;
		display: inline-block;
		margin-top: 30px;
	}

	#topService {
		margin: 0 0 50px;
		padding: 50px 0;
		position: relative;
	}

	#topService:before {
		width: 100%;
	}

	.serviceBoxIn {
		display: block;
	}

	.serviceBoxIn:hover .serviceFigure img {
		transform: none;
	}

	.serviceConts {
		height: auto;
	}

	.serviceBox05 .serviceConts {
		display: block;
		padding: 25px 7.9%;
	}

	.serviceHead {
		margin: 0 0 10px;
		font-size: 2.0rem;
	}

	.serviceBoxIn:hover .serviceTxt,
	.serviceBoxIn:hover .btnMore {
		color: #333333;
	}

	.serviceBoxIn:hover .btnMore {
		margin: 0;
	}

	.propertyOther {
		padding: 0 4.5%;
	}

	.secTtl02 {
		font-size: 2.0rem;
	}

	.propertyOther .secTtlIn:after {
		bottom: -13px;
	}

	.otherList {
		padding: 0 50px 0 0;
	}

	.listName {
		font-size: 2.0rem;
	}

	.otherList:hover .listName {
		color: inherit;
	}

	.otherList:hover:before {
		transform: translateX(0);
	}

	.otherList:hover:after {
		transform: translateX(0) rotate(45deg);
	}
}

/* -------------------------------------------------- */
/* TAB */
/* -------------------------------------------------- */
@media screen and (min-width: 768px) and (max-width: 1024px) {
	header {
		height: 80px;
	}

	.start {
		display: none;
	}

	.linkHouseDo:hover:before,
	.linkHouseDo:hover:after {
		width: 0;
	}

	.linkHouseDo:hover .linkHdInner:before,
	.linkHouseDo:hover .linkHdInner:after {
		height: 0;
	}

	#mv {
		width: 100%;
		height: calc(100vh - 80px);
		margin: 80px 0 40px;
	}

	.mvLogoWrap {
		width: 100px;
		height: 100px;
	}

	.mvLogoWrap .logoFigure {
		width: 51px;
	}

	.slick-track {
		height: calc(100vh - 80px) !important;
	}

	/*
    .mvSlider01 {
        background: url(../../img/top/bg_mv01.jpg) no-repeat center bottom / cover;
    }
    .mvSlider02 {
        background: url(../../img/top/bg_mv02.jpg) no-repeat center bottom / cover;
    }
    .mvSlider03 {
        background: url(../../img/top/bg_mv03.jpg) no-repeat center bottom / cover;
    }
    .mvSlider04 {
        background: url(../../img/top/bg_mv04.jpg) no-repeat center bottom / cover;
    }
	*/
	.scrollArea {
		display: none;
	}

	.linkHouseDo {
		width: 100px;
		height: 100px;
		padding: 40px 10px 0;
	}

	.linkHouseDo img {
		width: 100%;
	}

	.boxHdTxt {
		display: none;
	}

	.linkHouseDo:before,
	.linkHouseDo:after,
	.linkHdInner:before,
	.linkHdInner:after {
		display: none;
	}

	#mvCatch {
		transform: translate(-50%, -100%);
	}

	#catchMain {
		font-size: 5rem;
	}

	#catchSub {
		font-size: 1.5rem;
	}

	#topVisionCatch {
		font-size: 4.0rem;
		line-height: 1.3;
	}

	#bgTxt {
		position: absolute;
		top: -10px;
		left: 56px;
		font-size: 180px;
		letter-spacing: 0;
	}

	#topVisionTxt {
		padding: 30px 0 0;
		font-size: 1.8rem;
		letter-spacing: 0.05em;
	}

	.serviceBox {
		width: 49%;
		margin: 0 0 25px;
	}

	.serviceBoxIn05 {
		margin: 0;
	}

	.serviceFigure img {
		width: 100%;
	}

	.serviceConts {
		padding: 1em 1.5em;
	}

	.serviceTxt {
		margin: 0 0 21px;
		font-size: 1.6rem;
		line-height: 1.4;
		font-feature-settings: "palt";
	}

	.businessSecTtl {
		margin: 0 0 20px;
		padding: 0 0 20px;
	}

	.busiSubTtlEn {
		font-size: 3.5rem;
	}

	.listName {
		line-height: 1.2;
	}

	.youtube {
		height: 240px;
	}

	.youtube iframe {
		width: 100%;
		height: 100%;
	}

	/* 共通：style.css に集約
	#works {
		margin: 0 0 50px;
		padding: 50px 0 55px;
	}

	.worksTtl {
		margin: 0 0 30px;
	}

	.worksTtlIn {
		padding: 0 40px;
		font-size: 3.0rem;
	}

	.worksBox {
		width: 48.3%;
		margin: 0 0 25px;
		padding: 20px 2.5%;
	}

	.category {
		margin: 0 0 10px;
		font-size: 1.3rem;
	}

	.place {
		margin: 0 0 15px;
		font-size: 2.0rem;
		letter-spacing: 0.08em;
	}

	.worksCost {
		margin: 0 0 20px;
	}

	.worksCost dt, .worksCost dd {
		font-size: 1.4rem;
	}

	.worksConts li {
		padding: 0 0 0 3%;
		font-size: 1.3rem;
		letter-spacing: 0.08em;
	}

	.worksConts {
		margin: 0 0 20px;
	}

	.construction dt, .construction dd {
		font-size: 1.3rem;
	}

	#topNews {
		margin: 0 auto 60px;
	}

	#topNewsList {
		margin: 0 0 30px;
	}

	.topNewsBox {
		max-width: 100%;
		margin: 0;
		border-bottom: 1px solid #e5e5e5;
	}

	.topNewsBoxIn {
		padding: 24px 0;
		align-items: flex-start;
		border-bottom: 1px solid #e5e5e5;
	}

	.postThumb {
		width: 37%;
		max-width: 200px;
	}

	.postThumb img {
		width: 100%;
	}

	.topNewsBoxIn:hover .postThumb img {
		transform: none;
	}

	.postConts {
		width: 63.8%;
		padding: 0 0 30px 20px;
	}

	.dateCat {
		margin: 0 0 8px;
	}

	.listDate,
	.listCat {
		font-size: 1.2rem;
	}

	.listDate:after {
		margin: 0 10px;
	}

	.listTtl {
		line-height: 1.2;
	}

	.topNewsBoxIn:hover .listTtl {
		color: inherit;
	}

	.topNewsBoxIn:hover .postConts:before {
		right: 11px;
	}

	.topNewsBoxIn:hover .postConts:after {
		right: 0px;
	}
	*/

	#contsNav {
		margin: 0 0 34px;
		padding: 0 4%;
		justify-content: space-between;
	}

	.cNavBox {
		width: 32%;
		max-width: inherit;
		margin: 0 0 16px;
	}

	.cNavBoxIn {
		width: 100%;
	}

	.cNavImg {
		width: 100%;
	}

	.cNavBoxIn:hover .cNavImg {
		transform: none;
	}

	.cNavBoxIn:hover .cNavFigure:before {
		background: rgba(0, 0, 0, 0.5);
	}

	.cNavTtl {
		right: 20px;
		bottom: 20px;
	}

	.cNavTtlEn {
		margin: 0 0 6px;
		font-size: 2.5rem;
	}

	.cNavTtlJp {
		font-size: 1.4rem;
	}
}

/* -------------------------------------------------- */
/* SP */
/* -------------------------------------------------- */
@media screen and (max-width: 767px) {

	header {
		height: 60px;
	}

	.start p {
		width: 104px !important;
	}

	.start img {
		width: 100%;
		height: auto;
	}

	.br_:after {
		content: "\A";
		white-space: pre;
	}

	#mv {
		width: 100%;
		height: calc(100vh - 60px);
		margin: 60px 0 40px;
	}

	body.is-header-visible #mv {
		width: 100%;
		margin-left: 0;
	}

	.mvLogoWrap {
		width: 60px;
		height: 60px;
	}

	.mvLogoWrap .logoFigure {
		width: 40px;
	}

	.slick-track {
		height: calc(100vh - 60px) !important;
	}

	.mvSlider01 {
		background: url(../../img/top/bg_mv01.jpg) no-repeat center bottom / cover;
	}

	.mvSlider02 {
		background: url(../../img/top/bg_mv02.jpg) no-repeat center bottom / cover;
	}

	.mvSlider03 {
		background: url(../../img/top/bg_mv03.jpg) no-repeat center bottom / cover;
	}

	.mvSlider04 {
		background: url(../../img/top/bg_mv04.jpg) no-repeat center bottom / cover;
	}

	.scrollArea {
		left: 4%;
	}

	#mvCatch {
		transform: translate(-50%, -100%);
	}

	#catchMain {
		font-size: 2.5rem;
	}

	#catchSub {
		font-size: 1.5rem;
	}

	#topVisionCatch {
		font-size: 2.4rem;
		line-height: 1.3;
	}

	#bgTxt {
		position: absolute;
		top: -10px;
		left: 0;
		font-size: 11rem;
		letter-spacing: 0;
	}

	#topVisionTxt {
		padding: 1em 0 0;
		font-size: 1.5rem;
		line-height: 1.4;
		letter-spacing: 0.05em;
	}

	.serviceBox {
		width: 100%;
		max-width: none;
		margin: 0 0 25px;
	}

	.serviceBox05 {
		height: auto;
		margin: 0;
	}

	.serviceBoxIn {
		width: 100%;
		max-width: none;
		display: block;
	}

	.serviceBox05 .serviceBoxIn {
		flex-wrap: wrap;
	}

	.serviceBox05 .serviceFigure {
		width: 100%;
		max-width: inherit;
	}

	.serviceFigure {
		aspect-ratio: 2 / 1;
	}

	.serviceFigure img {
		width: 100%;
		height: 100%;
	}

	.serviceBoxIn:hover .serviceFigure img {
		transform: none;
	}

	.serviceConts {
		padding: 2em;
	}

	.serviceBox05 .serviceConts {
		width: 100%;
	}

	.serviceTxt {
		margin: 0 0 21px;
		font-size: 1.4rem;
		line-height: 1.4;
		font-feature-settings: "palt";
	}

	.serviceBox05 {
		flex-wrap: wrap;
	}

	.serviceBoxIn:hover .btnMore {
		margin: 0;
	}

	.stayingTtl {
		background: url(../../img/staying/sp_staying_mv_bg.jpg) no-repeat center center / cover;
	}

	.businessSecTtl {
		margin: 0 0 1.5em;
		padding: 0 0 1em;
		flex-direction: column;
		gap: 0.2em 1em;
	}

	.busiTtlJp {
		margin: 0 0 8px;
		font-size: 2.4rem;
	}

	.busiTtlEn {
		font-size: 1.2rem;
	}

	.busiSubTtl {
		margin: 0 0 1em;
		padding: 0 0 0 1em;
	}

	.busiSubTtlJp {
		font-size: 1.6rem;
		letter-spacing: 0.05em;
		line-height: 1.3;
	}

	.busiSubTtlEn {
		font-size: 3.5rem;
	}

	.listName {
		line-height: 1.4;
	}

	.youtube {
		position: relative;
		width: 100%;
		padding-top: 56.25%;
	}

	.youtube iframe {
		position: absolute;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
	}

	/* 共通：style.css に集約
	#works {
		margin: 0 0 50px;
		padding: 50px 0 55px;
	}

	.worksTtl {
		margin: 0 0 30px;
	}

	.worksTtlIn {
		padding: 0 40px;
		font-size: 3.0rem;
	}

	.worksBox {
		width: 100%;
		margin: 0 0 25px;
		padding: 20px 4%;
	}

	.worksBox:nth-last-of-type(1) {
		margin: 0;
	}

	.category {
		margin: 0 0 10px;
		font-size: 1.3rem;
	}

	.place {
		margin: 0 0 15px;
		font-size: 2.0rem;
	}

	.worksCost {
		margin: 0 0 20px;
	}

	.worksCost dt, .worksCost dd {
		font-size: 1.4rem;
	}

	.worksConts li {
		padding: 0 0 0 3%;
		font-size: 1.3rem;
		letter-spacing: 0.08em;
	}

	.worksConts {
		margin: 0 0 20px;
	}

	.construction dt, .construction dd {
		font-size: 1.3rem;
	}

	#topNews {
		margin: 0 auto 60px;
	}

	#topNewsList {
		margin: 0 0 30px;
	}

	.postThumb {
		width: 36.2%;
	}

	.postThumb img {
		width: 100%;
		height: auto;
	}

	.listDate:after {
		margin: 0 10px;
	}

	.topNewsBox:hover .listTtl {
		color: inherit;
	}

	.topNewsBox:hover .postThumb img {
		transform: scale(1.0);
	}

	.topNewsBox:hover .postConts:before {
		right: 11px;
	}

	.topNewsBox:hover .postConts:after {
		right: 0;
	}
	*/

	#contsNav {
		margin: 0 0 34px;
		padding: 0 4%;
		flex-wrap: wrap;
	}

	.cNavBox {
		/* max-width: inherit; */
		margin: 0;
		width: 49%;
		aspect-ratio: 1 / 1;
	}

	.cNavBoxIn {
		width: 100%;
		height: 100%;
	}

	.cNavFigure {
		position: relative;
		overflow: hidden;
		width: 100%;
		height: 100%;
	}

	.cNavImg {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.cNavTtl {
		right: 1em;
		bottom: 1em;
	}

	.cNavBoxIn:hover .cNavFigure:before {
		background: rgba(0, 0, 0, 0.5);
	}

	.cNavBoxIn:hover .cNavImg {
		transform: scale(1.0);
	}

	.cNavTtlEn {
		margin: 0 0 6px;
		font-size: 2.5rem;
	}

	.cNavTtlJp {
		font-size: 1.4rem;
	}
}

@media screen and (max-width: 374px) {
	#catchMain {
		font-size: 2rem;
	}

	.topNewsBtn {
		width: 100%;
		margin: auto;
	}
}