@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;
}

/* =========================================
   最初から表示する固定ロゴ
========================================= */
#fixedLogo {
	position: fixed;
	top: 20px;
	left: 30px;
	z-index: 9999;
	/* 一番上 */
}

#fixedLogo img {
	width: 180px;
	height: auto;
}

/* =========================================
   既存の 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: all 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: #000;
	transition: opacity 0.6s ease;
}

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

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

/* 全画像の初期状態（アニメ開始値と完全一致させる） */
#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);
}

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

#catchMain {
	margin: 0 0 55px;
	font-size: 160px;
	font-weight: 600;
	line-height: 0.7;
	letter-spacing: 0.4em;
}

#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: space-between;
	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: 4 / 3;
	overflow: hidden;
	flex-shrink: 0;
}

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

.serviceFigure img {
	width: 100%;
	height: 300px;
	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, 2.0rem);
	font-weight: 700;
	text-align: center;
	color: #ab0106;

	& span {
		margin-top: 0.5em;
		display: block;
		color: #333;
		font-size: clamp(1.2rem, 0.8vw, 1.4rem);
		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;
}

.btnMore {
	font-weight: 700;
	text-align: right;
	transition: all .3s ease-in-out;
}

.btnMore:before,
.btnMore:after {
	display: inline-block;
	content: "";
}

.btnMore:before {
	width: 50px;
	height: 1px;
	margin: 0 20px 0 0;
	background: #ab0106;
	vertical-align: middle;
}

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

.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;
}

.propertyList {
	margin-bottom: 60px;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 2em 2%;
}

.propertyBox {
	width: 49%;
	/* margin: 0 0 40px; */
}

.propertyBoxIn {
	height: 100%;
	display: block;
	display: flex;
	align-items: stretch;
}

.propertyFigure {
	width: 40%;
	flex-shrink: 0;
	overflow: hidden;
}

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

.propertyBoxIn:hover .propertyFigure img {
	transform: scale(1.12);
}

.propertyConts {
	width: 60%;
	padding: 1.5em;
	position: relative;
	border: 1px solid #dedede;
	border-left: none;
	flex-shrink: 0;
}

.propertyContsInner {
	margin-bottom: 0.75em;
	display: flex;
	align-items: center;
	justify-self: flex-start;
	gap: 0 0.5em;
}

.propertyCat {
	width: auto;
	padding: 0.25em 1.0em;
	background: #000;
	color: #fff;
	border-radius: 20px;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	justify-self: center;
}

.propertyTag {
	width: auto;
	padding: 0.15em 0.75em;
	background: #fff;
	color: #000;
	border: 1px solid;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;

	& span {
		font-size: 1.2rem;
	}
}

.propertyHead {
	font-size: 2.0rem;
}

.btnMore {
	font-weight: 700;
	text-align: right;
	transition: all .3s ease-in-out;
}

.propertyBoxIn:hover .propertyHead,
.propertyBoxIn:hover .btnMore {
	color: #333333;
}

.minpaku {
	margin: 0 0 120px;
}

.propertyBoxIn:hover .btnMore {
	transform: translateX(10px);
}

.btnMore:before,
.btnMore:after {
	display: inline-block;
	content: "";
}

.btnMore:before {
	width: 50px;
	height: 1px;
	margin: 0 20px 0 0;
	background: #ab0106;
	vertical-align: middle;
}

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

.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);
}

#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;
}

#worksArea {
	margin-bottom: 60px;
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 1em 1.7%;
}

.worksBox {
	width: 32.2%;
	padding: 1.5em;
	background: #fff;
	position: relative;
}

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

.worksBox:after {
	/* 左上 */
	width: 0;
	height: 2px;
	top: 0;
	left: 0;
}

.worksBox:before {
	/* 右下 */
	width: 0;
	height: 2px;
	right: 0;
	bottom: 0;
}

.worksLink:after {
	/* 左下 */
	width: 2px;
	height: 0;
	bottom: 0;
	left: 0;
}

.worksLink:before {
	/* 右下 */
	width: 2px;
	height: 0;
	top: 0;
	right: 0;
}

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

.worksBox:hover .worksLink:before,
.worksBox:hover .worksLink:after {
	height: 100%;
}

.worksBoxTit {
	margin-bottom: 0.5em;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0 1em;
	letter-spacing: 0.05em;
}

.category {
	padding: 0.25em 0.75em;
	background: #ccc;
	font-size: 1.1rem;
	letter-spacing: 0.02em;
	color: #1a1a1a;
	display: flex;
	align-items: center;
	justify-content: center;
}

.place {
	font-size: 1.8rem;
	font-weight: 700;
}

.worksImg {
	margin-bottom: 1em;
	aspect-ratio: 5 / 3;

	& img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	& :hover img {
		transform: scale(1.12);
	}
}

.noimg {
	border: 1px solid #ccc;
}

.worksCont {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}

.worksContInner {
	width: 48%;

	& p {
		font-size: 1.2rem;
	}

	& p.big {
		color: #ab0106;
		font-size: 2.0rem;
		font-weight: 600;
		text-align: right;

		& span {
			font-size: 1.4rem;
		}
	}
}

.worksContInner:first-child {
	padding-right: 4%;
	border-right: 1px dotted #ccc;
}

#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 {
	position: absolute;
	right: 30px;
	bottom: 40px;
	z-index: 1;
}

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

.cNavTtlEn {
	margin: 0 0 10px;
	font-size: 4.0rem;
	font-weight: 700;
	line-height: 0.7;
	text-transform: uppercase;
}

.cNavTtlJp {
	font-size: 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: 1200px) {
	.inner {
		width: 95%;
		margin: 0 auto;
	}

	#catchMain {
		font-size: 128px;
	}

	#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 218px;
	}

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

	#service {
		margin: 0 0 60px;
	}

	#strength {
		margin: 0 0 150px;
	}

	#strength:before {
		display: none;
	}

	.youtube {
		height: 328px
	}

	.youtube iframe {
		width: 100%;
	}
}

/* -------------------------------------------------- */
/* TAB */
/* -------------------------------------------------- */
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.start {
		display: none;
	}

	.inner {
		width: 92%;
		margin: 0 auto;
	}

	.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;
	}

	.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 {
		margin: 0 0 20px;
		font-size: 57px;
	}

	#catchSub {
		font-size: 1.5rem;
	}

	#topVision .inner {
		margin: 0 auto65px;
		flex-wrap: wrap;
		flex-direction: column-reverse;
	}

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

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

	#topVisionTxt {
		width: 100%;
		padding: 30px 0 0;
		font-size: 1.8rem;
		letter-spacing: 0.05em;
		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%;
	}

	.serviceBox {
		margin: 0 0 25px;
	}

	.serviceBoxIn {
		display: block;
	}

	.serviceBoxIn05 {
		margin: 0;
	}

	.serviceFigure img {
		width: 100%;
	}

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

	.serviceConts {
		padding: 25px 7.9%;
	}

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

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

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

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

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

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

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

	.busiTtlEn {
		font-size: 2.5rem;
	}

	.busiSubTtl {
		margin: 0 0 30px;
	}

	.busiSubTtlJp {
		font-size: 2.0rem;
		letter-spacing: 0.05em;
	}

	.busiSubTtlEn {
		font-size: 3.5rem;
	}

	.propertyBox {
		width: 48.3%;
		margin: 0 0 30px;
	}

	.propertyFigure img {
		width: 100%;
	}

	.propertyBox:hover .propertyFigure img {
		transform: scale(1);
	}

	.propertyConts {
		padding: 20px 4.5%;
	}

	.propertyHead {
		margin: 0 0 30px;
		font-size: 2.5rem;
		letter-spacing: 0.05em;
	}

	.propertyBox:hover .btnMore {
		transform: translateX(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;
		line-height: 1.2;
	}

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

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

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

	.minpaku {
		margin: 0 0 50px;
	}

	.youtube {
		height: 240px;
	}

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

	#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) {

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

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

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

	.inner {
		width: 92%;
		margin: 0 auto;
	}

	#mv {
		width: 100%;
		height: calc(100vh - 60px);
		margin: 60px 0 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 {
		margin: 0 0 20px;
		font-size: 57px;
	}

	#catchSub {
		font-size: 1.5rem;
	}

	#topVision .inner {
		margin: 0 auto 65px;
		flex-wrap: wrap;
		flex-direction: column-reverse;
	}

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

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

	#topVisionTxt {
		width: 100%;
		padding: 30px 0 0;
		font-size: 1.8rem;
		line-height: 1.4;
		letter-spacing: 0.05em;
		text-align: center;
	}

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

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

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

	#topService:before {
		width: 100%;
	}

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

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

	.serviceBoxIn {
		width: 100%;
		display: block;
	}

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

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

	.serviceFigure img {
		width: 100%;
	}

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

	.serviceConts {
		padding: 25px 7.9%;
	}

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

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

	.serviceTxt {
		margin: 0 0 21px;
		font-size: 1.6rem;
		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 20px;
		padding: 0 0 20px;
	}

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

	.busiTtlEn {
		font-size: 2.0rem;
	}

	.busiSubTtl {
		margin: 0 0 30px;
	}

	.busiSubTtlJp {
		font-size: 2.0rem;
		letter-spacing: 0.05em;
	}

	.busiSubTtlEn {
		font-size: 3.5rem;
	}

	.propertyBox {
		width: 100%;
		margin: 0 0 30px;
	}

	.propertyFigure img {
		width: 100%;
	}

	.propertyBox:hover .propertyFigure img {
		transform: scale(1);
	}

	.propertyConts {
		padding: 20px 4.5%;
	}

	.propertyHead {
		margin: 0 0 30px;
		font-size: 2.5rem;
	}

	.propertyBox:hover .btnMore {
		transform: translateX(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;
		line-height: 1.4;
	}

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

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

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

	.minpaku {
		margin: 0 0 50px;
	}

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

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

	#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;
	}

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

	.topNewsBoxIn {
		padding: 24px 0;
		align-items: flex-start;
	}

	.postThumb {
		width: 36.2%;
	}

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

	.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;
	}

	.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 0 16px;
	}

	.cNavImg {
		width: 100%;
	}

	.cNavTtl {
		right: 7.3vw;
		bottom: 6.7vw;
	}

	.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: 4.0rem;
	}

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