@charset "utf-8";
/*-----------------------------------------------
	index
-----------------------------------------------*/
/* secIndexList */
.secIndexList {
	margin-top: 100px;
}

.secIndexList .boxList {
	display: flex;
	gap: 30px;
	margin-bottom: 62px;
	width: 100%;
	justify-content: space-between;
}

.secIndexList .item {
	flex: 1;
	min-width: 0;
	background-color: #f7f7f7;
	display: flex;
	flex-direction: column;
	width: calc((100% - 60px)/3);
}

.secIndexList .item .itemBox {
	text-decoration: none;
}

.secIndexList .item .imgBox {
	width: 100%;
	box-shadow: 0 0 8px 0.32px rgba(0, 0, 0, 0.25);
}

.secIndexList .item .imgBox img {
	/* display: block; */
	width: 100%;
	height: auto;
}

.secIndexList .item .contentBox {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 70px 14px;
}

.secIndexList .item .txtBox {
	text-align: center;
	flex: 1;
}

.secIndexList .item .tit {
	margin-bottom: 21px;
	font-size: 22px;
	letter-spacing: 0.8px;
	font-weight: bold;
}

.secIndexList .item .txt {
	margin-bottom: 22px;
	font-size: 12px;
	line-height: calc(28 / 12);
	letter-spacing: 0.8px;
}

.secIndexList .item .btnMore {
	background-color: #000;
	font-size: 16px;
	letter-spacing: 0.3px;
	color: #fff;
	padding: 22px;
	text-align: center;
	text-decoration: none;
	box-sizing: border-box;
	width: 100%;
	max-width: 300px;
	margin: auto auto 0;
}

@media only screen and (max-width: 767px) {
	.secIndexList {
		margin-top: 20px;
	}

	.secIndexList .boxList {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 0;
		margin-bottom: 0;
	}

	.secIndexList .item {
		width: 100%;
		margin-bottom: 30px;
		background-color: #f7f7f7;
		display: flex;
		flex-direction: column;
	}

	.secIndexList .item .imgBox {
		width: 100%;
		box-shadow: 0 0 8px 0.32px rgba(0, 0, 0, 0.25);
	}

	.secIndexList .item .contentBox {
		display: flex;
		flex-direction: column;
		flex: 1;
		padding: 25px 12px 20px;
	}

	.secIndexList .item .txtBox {
		text-align: center;
		flex: 1;
	}

	.secIndexList .item .tit {
		margin-bottom: 11px;
		font-size: 18px;
	}

	.secIndexList .item .txt {
		margin-bottom: 13px;
		font-size: 11px;
		line-height: calc(24 / 11);
		letter-spacing: 0;
	}

	.secIndexList .item .btnMore {
		padding: 14.5px;
		text-align: center;
		text-decoration: none;
		width: 94.86%;
		margin: 0 auto;
	}
}

@media only screen and (max-width: 374px) {
	.secIndexList .item .contentBox {
		padding: 25px 2px;
	}

	.secIndexList .item .txt {
		font-size: 10px;
	}
}

/*-----------------------------------------------
	details
-----------------------------------------------*/
/* 1400px以上のみ 100vw ブリード用にはみ出し許可。1399以下では hidden にし、幅縮小時の左ズレ・右余白を防ぐ */
@media only screen and (min-width: 1400px) {
	#container:has(.modelHouseSection) {
		overflow: visible !important;
	}

	#container:has(.modelHouseSection) #contents {
		overflow: visible;
	}
}

@media only screen and (max-width: 1399px) and (min-width: 768px) {
	#container:has(.modelHouseSection) {
		overflow: hidden !important;
	}

	#container:has(.modelHouseSection) #contents {
		overflow: hidden;
	}
}

.modelHouseSection {
	width: 100%;
}

.pageTitleArea {
	text-align: center;
	padding: 50px 0 40px;
}

.pageTitle {
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 5px;
	letter-spacing: 1px;
	line-height: calc(40/32);
}

.pageSubTitle {
	font-size: 17px;
	letter-spacing: 0.6px;
}

.modelHouseWrap {
	width: 100%;
	overflow: visible;
	margin-bottom: 100px;
}

.modelHouseContainer {
	background: #f7f7f7;
	border: 1px solid #dddddd;
	border-top: 5px solid #000;
}

/* 768〜1399px：common の固定幅(1400/1200px)がビューポートより広く見切れるのを防ぎ、比率を保って縮む */
@media only screen and (max-width: 1399px) and (min-width: 768px) {
	.modelHouseContainer.wrapper1400 {
		width: 100%;
		max-width: 1400px;
		padding-left: 20px;
		padding-right: 20px;
		box-sizing: border-box;
	}

	.modelHouseContainer .wrapper1200 {
		width: 100%;
		max-width: 1200px;
		box-sizing: border-box;
	}
}

/* メインビジュアル（modelHouseContainer 内。画像はビューポート幅までブリードして左端揃え） */
/* テキスト側の余白は padding-right のみ（margin で行幅がはみ出さないように） */
.modelHouseContainer > .mainVisualArea {
	padding-left: 0;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	box-sizing: border-box;
}

.mainVisualArea {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	width: 100%;
	max-width: 100%;
	margin-left: 0;
	margin-right: 0;
	padding-left: 0;
	padding-right: 20px;
	margin-bottom: 70px;
	box-sizing: border-box;
	margin-top: 65px;
	overflow: visible;
	min-width: 0;
}

@media only screen and (min-width: 1200px) {
	.mainVisualArea {
		gap: 48px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
	.mainVisualArea {
		gap: 24px;
	}
}

/* 1400px以上：従来どおりビューポート基準で 1200px 列に合わせる */
@media only screen and (min-width: 1400px) {
	.mainVisualArea {
		padding-right: calc((100vw - 1200px) / 2);
	}
}

.mainVisualImg {
	flex: 1 1 0;
	min-width: 0;
	max-width: 960px;
	margin-left: 0;
	margin-right: 0;
	overflow: hidden;
	align-self: center;
}

.mainVisualImg .imgCover {
	width: 100%;
	max-width: 960px;
	margin: 0;
	aspect-ratio: 960 / 550;
	box-shadow: 0 0 8px 0.32px rgba(0, 0, 0, 0.25);
	background: #ececec;
}

.mainVisualText {
	flex: 0 0 500px;
	flex-shrink: 0;
	min-width: 0;
	max-width: 500px;
	box-sizing: border-box;
	margin-left: 0;
	margin-right: 0;
	overflow: visible;
	word-break: break-word;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.mainVisualText {
		flex: 0 1 360px;
		width: 360px;
		max-width: 360px;
		padding: 80px 0 24px 0;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.mainVisualText {
		flex: 0 1 440px;
		width: 440px;
		max-width: 440px;
		padding: 80px 0 24px 0;
	}
}

/* 768〜1399px：100vw ブリードをやめコンテナ内＝ギャラリー等と同一（1201〜1399 での calc(50%-50vw) ずれ・右余白を解消） */
/* メイン画像のみ、コンテナ左 padding（20px）を相殺してビューポート左端に揃える（1400px 未満の PC） */
@media only screen and (max-width: 1399px) and (min-width: 768px) {
	.modelHouseContainer > .mainVisualArea {
		width: 100%;
		max-width: 100%;
		margin-left: 0;
		margin-right: 0;
	}

	.mainVisualArea {
		padding-right: 0;
	}

	.mainVisualImg {
		flex: 1 1 0;
		min-width: 0;
		max-width: none;
		margin-left: -20px;
		position: relative;
		z-index: 1;
	}

	.mainVisualImg .imgCover {
		max-width: 100%;
	}

	.mainVisualText {
		flex: 1 1 240px;
		min-width: 0;
		width: auto;
		max-width: min(460px, 48%);
		padding: clamp(40px, 7vw, 80px) 0 clamp(18px, 2.5vw, 24px) 0;
	}

	.mainVisualTitle {
		font-size: clamp(22px, 3.6vw, 32px);
	}
}

/* 768〜1200pxのみ狭いタブレット向けに gap を詰める（1201〜は上の min-width:1200 で gap:48） */
@media only screen and (max-width: 1200px) and (min-width: 768px) {
	.mainVisualArea {
		gap: clamp(16px, 2.2vw, 28px);
	}
}

/* CMS 本文が flex 子の幅を突き抜けないよう */
.mainVisualText .entry,
.mainVisualText .mainVisualDescBox {
	min-width: 0;
	max-width: 100%;
}

.labelReserve {
	display: inline-block;
	padding: 6px 8px;
	background: #f8f6f4;
	border: 1px solid #88372d;
	color: #88372d;
	font-size: 12px;
	margin-bottom: 5px;
	letter-spacing: 0.5px;
	font-weight: bold;
}

.mainVisualTitle {
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 17px;
	letter-spacing: 1px;
	line-height: 1.5;
}

.mainVisualDescBox {
	font-size: 15px;
    line-height: calc(35 / 15);
    letter-spacing: 1.0px;
    border-top: 1px solid #dddddd;
    padding-top: 30px;
	font-weight: bold;
}

.mainVisualDesc {
	font-size: 13px;
	line-height: calc(25/12);
	letter-spacing: 1px;
	margin-bottom: 15px;
}

.mainVisualDescLead {
	font-size: 15px;
	line-height: calc(35/15);
	font-weight: bold;
	margin-bottom: 12px;
}

/* 各エリア共通 */
.galleryArea {
	margin-bottom: 70px;
}
.infoArea {
	margin-bottom: 77px;
}

.accessArea {
	margin-bottom: 66px;
}

.sectionTitle {
	width: 100%;
	height: 70px;
	line-height: 70px;
	background: #000;
	color: #fff;
	text-align: center;
	font-size: 26px;
	margin: 0 0 50px;
	letter-spacing: 1px;
}

/* ギャラリー（wrapper1200 / wrapperSp 内に収める） */
#sliderGallery.galleryArea {
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
	overflow: hidden;
}

#sliderGallery .gallerySlider {
	position: relative;
	margin-bottom: 0;
	width: 100%;
	box-sizing: border-box;
	overflow: visible;
}

.galleryListWrap {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	overflow: visible!important;
}

#sliderGallery .galleryList.swiper-wrapper {
	box-sizing: border-box;
}

.galleryItem {
	box-sizing: border-box;
	height: auto;
}

#sliderGallery.galleryArea.disabled .galleryItem:not(:last-child) {
	margin-right: 50px;
}

#sliderGallery .galleryItem .imgCover {
	aspect-ratio: 300 / 200;
}

#sliderGallery .swiper-slide.galleryItem {
	width: 300px;
	max-width: 100%;
	box-sizing: border-box;
	flex-shrink: 0;
}

#sliderGallery .galleryItem picture {
	display: block;
}

#sliderGallery .galleryItem img {
	width: 300px;
	height: 200px;
	max-width: 100%;
	object-fit: cover;
	display: block;
	margin: 0 auto 25px;
	box-sizing: border-box;
}

.galleryText {
	font-size: 12px;
	line-height: calc(25 /12);
	letter-spacing: 0.9px;
	text-align: left;
	margin-top: 18px;
}

/* トップバナー等の Slick（.secSlider .slick-arrow）と同じボタン仕様 */
#sliderGallery .swiper-button-prev,
#sliderGallery .swiper-button-next {
	margin-top: 0 !important;
	width: 70px;
	height: 70px;
}

#sliderGallery .swiper-button-prev::after,
#sliderGallery .swiper-button-next::after {
	display: none !important;
}

#sliderGallery .sliderPrevBtn,
#sliderGallery .sliderNextBtn {
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
	-webkit-appearance: none;
	font-size: 0;
	width: 70px;
	height: 70px;
	position: absolute;
	top: 100px;
	transform: translateY(-50%);
	z-index: 10;
	margin: 0;
	border-radius: 50%;
	background-color: #373737;
	display: block;
	transition: background-color 0.2s ease, opacity 0.2s ease;
}

#sliderGallery .sliderPrevBtn {
	left: 15px;
}

#sliderGallery .sliderNextBtn {
	right: 15px;
}

#sliderGallery .sliderPrevBtn:hover,
#sliderGallery .sliderNextBtn:hover,
#sliderGallery .sliderPrevBtn:focus,
#sliderGallery .sliderNextBtn:focus {
	background-color: #2a2a2a;
}

#sliderGallery .sliderPrevBtn:focus-visible,
#sliderGallery .sliderNextBtn:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

#sliderGallery .sliderPrevBtn::before,
#sliderGallery .sliderNextBtn::before {
	content: "";
	display: block;
	width: 14px;
	height: 14px;
	border-style: solid;
	border-width: 4px;
	border-top: none;
	border-right: none;
	border-color: #fff;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
}

#sliderGallery .sliderPrevBtn::before {
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	left: 30px;
}

#sliderGallery .sliderNextBtn::before {
	-ms-transform: rotate(225deg);
	-webkit-transform: rotate(225deg);
	transform: rotate(225deg);
	right: 30px;
}

#sliderGallery .swiper-button-disabled {
	opacity: 0.35;
	pointer-events: none;
}

.galleryBorderBottom {
	width: 100%;
	margin-top: 49px;
	box-sizing: border-box;
}

#sliderGallery .swiper-scrollbar {
	background: #dddddd;
	height: 4px;
	border-radius: 0;
	position: relative;
	width: 100%;
	margin-top: 0;
	bottom: auto;
	left: auto;
}

/* 幅・left は scripts/modelhouse.js の syncGalleryScrollbar（100%/枚数・左端0%から等分移動）で指定 */
#sliderGallery .swiper-scrollbar-drag {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	background: #88372d;
	border-radius: 0;
	height: 4px;
	min-width: 0;
	box-sizing: border-box;
}

#sliderGallery.disabled .sliderPrevBtn,
#sliderGallery.disabled .sliderNextBtn,
#sliderGallery.disabled .galleryBorderBottom {
	display: none !important;
}

/* インフォメーション */
.infoBox {
	width: 100%;
	background: #fff;
	padding: 40px 100px;
	box-sizing: border-box;
}

.infoRow {
	display: flex;
	align-items: flex-start;
	padding: 6px 0;
	letter-spacing: 2px;
}

.infoRow:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.infoRow dt {
	flex-shrink: 0;
	width: 114px;
	font-size: 15px;
	line-height: 1.5;
}

.infoRow dd {
	flex: 1;
	min-width: 0;
	margin: 0;
	font-size: 15px;
	line-height: 1.5;
}

/* アクセス */
.mapBox iframe {
	width: 100%;
	display: block;
}

/* 予約 */
.reserveArea {
	text-align: center;
	padding-bottom: 62px;
}

.reserveTextTop {
	color: #c30d23;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 19px;
	letter-spacing: 1px;
}

.reserveTextMidWrap {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 31px;
	position: relative;
}

.reserveTextMidWrap::before,
.reserveTextMidWrap::after {
	content: "";
	width: 1px;
	height: 55px;
	background: #000;
	position: absolute;
	top: -35px;
}

.reserveTextMidWrap::before {
	transform: rotate(-30deg);
	left: 297px;
}

.reserveTextMidWrap::after {
	transform: rotate(30deg);
	right: 298px;
}

.reserveTextMid {
	font-size: 19px;
	font-weight: bold;
	letter-spacing: 0.8px;
}

.btnReserveForm {
	display: block;
	width: 530px;
	margin: 0 auto;
	background: #c30d23;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	padding: 27px 0;
	text-decoration: none;
	letter-spacing: 2px;
}

/* レスポンシブ (SP) */
@media only screen and (max-width: 767px) {
	/* PC用に外した overflow を SP では戻し、100vw 系の横はみ出し・左見切れ・横スクロールを防ぐ */
	#container:has(.modelHouseSection) {
		overflow: hidden !important;
	}

	#container:has(.modelHouseSection) #contents {
		overflow: hidden;
	}

	.modelHouseSection {
		max-width: 100%;
		overflow-x: hidden;
	}

	/* コンテナ自体を wrapperSp335 相当に狭めてはみ出しを防止 */
	.modelHouseContainer {
		border-top: 1px solid #dddddd;
        border-left: none;
        border-right: none;
		width: 89.336vw;
		margin: 0 auto;
		position: relative;
	}
	.modelHouseContainer::before, 
	.modelHouseContainer::after {
		content: "";
		display: block;
		width: 1px;
		height: 100%;
		background: #dddddd;
		position: absolute;
		top: 0;
		z-index: 2;
	}
	.modelHouseContainer::before {
		left: 0;
	}
	.modelHouseContainer::after {
		right: 0;
	}
	.modelHouseWrap {
		padding: 0;
		margin-bottom: 50px;
		max-width: 100%;
		overflow-x: hidden;
	}

	.pageTitleArea {
		padding: 20px 0;
	}

	.pageTitle {
		font-size: 18px;
		margin-bottom: 12px;
		letter-spacing: 0.5px;
	}

	.pageSubTitle {
		font-size: 12px;
		letter-spacing: 0.4px;
	}

	.mainVisualArea {
		flex-direction: column;
		gap: 0;
		margin-bottom: 24px;
		width: 100%;
		max-width: 100%;
		margin-left: 0;
		padding-right: 0;
	}

	.modelHouseContainer > .mainVisualArea {
		width: 100% !important;
		max-width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		margin-top: 0;
	}

	.mainVisualImg {
		/* メイン画像のみ画面幅いっぱい（100vw）に広げる */
		width: 100%;
		max-width: 100%;
		flex: none;
		margin-left: 0;
		margin-bottom: 30px;
		margin-top: 0;
	}

	.mainVisualImg .imgCover img {
		object-fit: cover;
	}

	.mainVisualText {
		flex: none;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		margin-left: 0;
		margin-right: 0;
		padding: 0 20px;
	}

	.mainVisualDescBox {
		font-size: 13px;
		line-height: calc(26 / 13);
		letter-spacing: 1px;
		padding-top: 8px;
	}

	.mainVisualTitle {
		font-size: 20px;
		line-height: calc(40/20);
		margin-bottom: 4px;
	}

	.mainVisualDescLead {
		font-size: 13px;
		line-height: calc(26/13);
		margin-bottom: 22px;
	}

	.mainVisualDesc {
		font-size: 12px;
		margin-bottom: 18px;
		line-height: 2.1;
	}

	.galleryArea,
	.infoArea,
	.accessArea,
	.reserveArea {
		padding: 0;
		box-sizing: border-box;
	}

	.galleryArea {
		margin-bottom: 50px;
	}

	.reserveArea {
		padding-bottom: 30px;
	}

	.sectionTitle {
		height: auto;
		line-height: 1.5;
		padding: 7.5px 0;
		font-size: 20px;
		margin-bottom: 20px;
	}

	/* 画面幅375pxの時にwidth:210pxになるよう、画面幅に対して56％の大きさを維持 */
	#sliderGallery .swiper-slide.galleryItem {
		width: 56vw !important;
		max-width: 100%;
	}

	#sliderGallery .galleryItem picture {
		width: 100%;
		max-width: 100%;
	}

	#sliderGallery .galleryItem img {
		width: 56vw !important;
		height: auto !important;
		aspect-ratio: 3 / 2;
		max-width: 100%;
		object-fit: cover;
		margin-bottom: 0;
	}

	/* スライダー全体をコンテナにピッタリ収める */
	#sliderGallery .gallerySlider {
		width: 100%;
		margin: 0 auto;
		overflow: visible;
	}

	/* centeredSlides 時の translate 負方向が親の外に出て左見切れしないよう、SP では隠す */
	#sliderGallery .galleryListWrap {
		width: 100%;
		margin-left: auto;
		margin-right: auto;
		overflow: visible!important;
	}

	/* 矢印ボタンをコンテナ境界線上に配置 */
	#sliderGallery .sliderPrevBtn,
	#sliderGallery .sliderNextBtn,
	#sliderGallery .swiper-button-prev,
	#sliderGallery .swiper-button-next {
		top: 50%;
		width: 35px;
		height: 35px;
	}
	#sliderGallery .sliderPrevBtn {
		left: 0;
	}
	#sliderGallery .sliderNextBtn {
		right: 0;
	}
	#sliderGallery .sliderPrevBtn::before,
	#sliderGallery .sliderNextBtn::before {
		width: 7px;
		height: 7px;
		border-width: 2px;
	}

	#sliderGallery .sliderPrevBtn::before {
		left: 16px;
	}

	#sliderGallery .sliderNextBtn::before {
		right: 16px;
	}

	.galleryBorderBottom {
		width: 100%;
		margin: 20px auto 0;
	}

	#sliderGallery .swiper-scrollbar {
		width: 100%;
		margin: 0;
	}

	.infoArea {
		margin-bottom: 46px;
	}

	.infoBox {
		padding: 16px 6%;
	}

	.infoRow {
		flex-direction: column;
		padding: 16px 0 14px;
		border-bottom: 1px solid #dddddd;
		letter-spacing: 0.5px;
	}
	.infoRow:first-child {
		padding-top: 0;
	}

	.infoRow dt {
		width: 100%;
		margin-bottom: 3px;
		font-size: 14px;
	}

	.infoRow dd {
		width: 100%;
		font-size: 14px;
	}

	.accessArea {
		margin-bottom: 16px;
	}

	.mapBox iframe {
		height: 335px;
	}

	.reserveTextTop {
		font-size: 12px;
		letter-spacing: 0.5px;
		line-height: calc(20/12);
		margin-bottom: 4px;
	}

	.reserveTextMidWrap::before,
	.reserveTextMidWrap::after {
		height: 37px;
		top: 4px;
	}

	.reserveTextMidWrap::before {
		left: 2%;
	}

	.reserveTextMidWrap::after {
		right: 2%;
	}

	.reserveTextMidWrap {
		margin-bottom: 10px;
	}

	.reserveTextMid {
		font-size: 14px;
		line-height: calc(22/14);
		letter-spacing: 0.4px;
	}

	.btnReserveForm {
		width: 100%;
		padding: 17px 0;
		font-size: 16px;
		letter-spacing: 1.5px;
	}
}

/*-----------------------------------------------
	FORM
-----------------------------------------------*/
/* secTop */
.secTop .maintit img{
	width: 100%;
	height: auto;
}

/* secMerit */
.secMerit .boxContent{
	padding:0 0 134px;
	background:#F3F3F3;
}
.secMerit .boxList{
	width:1200px;
	margin:0 auto;
	padding:80px 0 55px;
	font-size:0;
}
.secMerit .boxList li{
	display:inline-block;
	vertical-align:top;
	width:350px;
	font-size:12px;
	margin:0 75px 0 0;
}
.secMerit .boxList li:last-child{
	margin-right:0;
}
.secMerit .img{
	padding:0 0 40px;
	text-align:center;
}
.secMerit .tit{
	font-size:15px;
	font-weight:bold;
	text-align:center;
	letter-spacing:1px;
	line-height:26px;
	padding-top:25px;
	margin:0 0 19px;
	height:100px;
}
.secMerit .boxList li:last-child .tit{
	/*padding-top:20px;*/
	padding-top:10px;
}
.secMerit .txt{
	font-size:13px;
	line-height:24px;
	letter-spacing:0.5px;
	color:#202020;
}
.secMerit .txtSales{
	font-size:24px;
	font-weight:bold;
	text-align:center;
	letter-spacing:1.5px;
	line-height:36px;
	color:#2C2626;
}
@media only screen and (max-width:767px){
	.secMerit{
		padding:0;
	}
	.secMerit .boxContent{
		padding:0 0 30px;
	}
	.secMerit .boxList{
		width:94%;
		padding:30px 0 0;
	}
	.secMerit .boxList li{
		display:block;
		width:100%;
		margin:0 0 30px;
	}
	.secMerit .img{
		width:160px;
		padding:0 0 20px;
		margin:0 auto;
	}
	.secMerit .tit{
		font-size:13px;
		letter-spacing:0.5px;
		line-height:1.5;
		padding:10px;
		margin:0 0 10px;
		height:auto;
	}
	.secMerit .boxList li:last-child .tit{
		padding-top:10px;
	}
	.secMerit .txt{
		line-height:1.5;
		letter-spacing:0.5px;
	}
	.secMerit .txtSales{
		font-size:18px;
		letter-spacing:0.5px;
		line-height:1.5;
		text-align:left;
		padding:0 3%;
	}
}

/* secShowroom */
.secShowroom .boxList{
	width:1200px;
	margin:0 auto;
	padding:50px 0 98px;
	font-size:0;
}
.secShowroom .boxList li{
	display:inline-block;
	vertical-align:top;
	font-size:12px;
	width:350px;
	margin:0 75px 50px 0;
	text-align:center;
}
.secShowroom .boxList li:nth-child(3n){
	margin-right:0;
}
.secShowroom .img{
	height:220px;
	position:relative;
	margin:0 0 24px;
}
.secShowroom .tit{
	font-size:18px;
	letter-spacing:1px;
	line-height:1.5;
	padding:0 0 14px;
}
.secShowroom .tit a{
	color:#1F1F1F;
	text-decoration:none;
}
.secShowroom .txtDetails{
	font-size:13px;
	letter-spacing:1.5px;
	padding:0 0 38px;
}
.secShowroom .txtDetails a{
	color:#1F1F1F;
}
.secShowroom .btn{
	display:block;
	width:180px;
	font-size:14px;
	letter-spacing:1px;
	padding:21px 0 23px;
	margin:0 auto;
	text-align:center;
	text-decoration:none;
	border-radius:4px;
	color:#30415D;
	background:#fff;
	border:solid 1px #30415D;
}
@media only screen and (max-width:767px){
	.secShowroom .boxList{
		width:100%;
		padding:0;
	}
	.secShowroom .boxList li{
		display:block;
		width:100%;
		margin:0;
		padding:10px 3%;
		text-align:left;
		border-bottom:solid 1px #E1E1E1;
	}
	.secShowroom .img{
		width:100px;
		height:80px;
		margin:0 10px 0 0;
		float:left;
	}
	.secShowroom .boxTxt{
		overflow:hidden;
		position:relative;
		height:80px;
	}
	.secShowroom .tit{
		font-size:14px;
		letter-spacing:0.5px;
		padding:0 0 10px;
	}
	.secShowroom .txtDetails{
		font-size:12px;
		padding:0 0 15px;
	}
	.secShowroom .btn{
		width:100%;
		font-size:12px;
		letter-spacing:0.5px;
		padding:5px 0;
		position:absolute;
		bottom:0;
	}
}

/* secFlow */
.secFlow{
	width:1200px;
	margin:0 auto;
}
.secFlow .titTop{
	padding:0 0 40px;
	text-align:center;
	letter-spacing:2.5px;
	font-size:22px;
	font-weight:bold;
}
.secFlow .titTop::after{
	content:"";
	display:block;
	margin:40px auto 0;
	width:50px;
	height:1px;
	background:#30415D;
}
.secFlow .boxList{
	font-size:0;
	padding:0 0 118px;
}
.secFlow .boxList li{
	display:inline-block;
	vertical-align:top;
	font-size:12px;
	width:200px;
	min-height:180px;
	margin:0 50px 0 0;
	padding:82px 0 0;
	text-align:center;
	background-repeat:no-repeat;
	position:relative;
}
.secFlow .boxList li:not(:nth-child(5)){
	color:#fff;
	background-color:#000000;
}
.secFlow .boxList li::after{
	content:"";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 0 10px 9px;
	border-color: transparent transparent transparent #30415D;
	position:absolute;
	top:0;
	bottom:0;
	right:-30px;
	margin:auto 0;
}
.secFlow .boxList li:last-child::after{
	display:none;
}
.secFlow .boxList li:nth-child(1){
	background-image:url(../img/reserve/imgFlow01.png);
	background-position: center 29px;
	background-size:32px;
}
.secFlow .boxList li:nth-child(2){
	background-image:url(../img/reserve/imgFlow02.png);
	background-position: center 29px;
	background-size:32px;
}
.secFlow .boxList li:nth-child(3){
	background-image:url(../img/reserve/imgFlow03.png);
	background-position: center 29px;
	background-size:32px;
}
.secFlow .boxList li:nth-child(4){
	background-image:url(../img/reserve/imgFlow04.png);
	background-position: center 29px;
	background-size:32px;
}
.secFlow .boxList li:nth-child(5){
	background-image:url(../img/reserve/imgFlow05.png);
	background-position: center 29px;
	background-size:36px 32px;
	margin-right:0;
}
.secFlow dt{
	font-size:15px;
	font-weight:bold;
	letter-spacing:1px;
	padding:0 0 9px;
}
.secFlow dd{
	letter-spacing:0.8px;
	line-height:1.83;
}
@media only screen and (max-width:767px){
	.secFlow{
		width:100%;
		padding: 50px 0 0;
	}
	.secFlow .titTop{
		padding:0 0 20px;
		letter-spacing:0.5px;
		font-size:15px;
	}
	.secFlow .titTop::after{
		margin:15px auto 0;
	}
	.secFlow .boxList{
		padding:0;
	}
	.secFlow .boxList li{
		display:block;
		width:100%;
		min-height:0;
		margin:0 0 1px;
		padding:15px 3%;
		text-align:left;
	}
	.secFlow .boxList li::after{
		display:none;
	}
	.secFlow .boxList li:nth-child(1),
	.secFlow .boxList li:nth-child(2),
	.secFlow .boxList li:nth-child(3),
	.secFlow .boxList li:nth-child(4){background-image:none;}
	.secFlow .boxList li:nth-child(5){
		background-image:none;
		margin-bottom:0;
	}
	.secFlow dt{
		letter-spacing:0.5px;
		padding:0 0 5px;
	}
	.secFlow dd{
		letter-spacing:0.5px;
		line-height:1.5;
	}
}

/* secForm */
.secForm{
	padding-bottom:150px;
}
.secFormTel{
	width:500px;
}
.secForm .btnForm{
	background-color:#C30D23;
}
@media only screen and (max-width:767px){
	.secForm{
		padding-bottom:50px;
	}
	.secFormTel{
		width:94%;
	}
}



.bnrFixed{
	display: none;
}