@charset "utf-8";

.pagecontent{
	margin-top: 118px;
	padding-top: 0.2rem;
	padding-bottom: 181px;
}
@media (max-width: 750px){
	.pagecontent{
		margin-top: 1.1rem;
		padding-bottom: 1.8rem;
	}
}


/* 1. 全体 */
.secinner.ms-page-override{
	font-family: '游明朝', 'YuMincho', 'Hiragino Mincho ProN', 'MS PMincho', serif;
	width: 100% !important;
	max-width: none !important;
	padding: 0 !important;
	letter-spacing: 0.12em;
	color: #333;
	-webkit-font-smoothing: antialiased;
}

/* 1140px幅制限用のインナーラッパー */
.ms-content-limit{
	box-sizing: border-box;
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 20px;
}

/* 2. タイポグラフィ */
.ms-serif{
	font-family: '游明朝', 'YuMincho', 'Hiragino Mincho ProN', serif;
}
.ms-gold{
	color: #8b6f47;
}
.ms-center{
	text-align: center;
}

/* 本文テキスト */
.ms-text-p{
	font-size: 15px;
	line-height: 2.4;
	margin-bottom: 0;
}
.ms-text-lead{
	font-size: 16px;
	line-height: 3.2;
}

/* 見出し */
.ms-main-h2{
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 60px;
	text-align: center;
}
.ms-sub-heading{
	font-size: 24px;
	font-weight: 700;
	line-height: 1.6;
	margin-bottom: 30px;
}
.ms-main-line-h2{
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 60px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-flow: column wrap;
	gap: 20px;
}
.ms-main-line-h2:after{
	content:"";
	width: 60px;
	height: 1px;
	background-color: #ccc;
	display: block;
}

/* 3. 余白 */
.ms-section-gap-large{
	margin-top: 120px;
}
.ms-section-gap-medium{
	margin-top: 30px;
}
.ms-section-gap-small{
	margin-top: 2rem;
}
.ms-mb-big{
	margin-bottom: 180px;
}
.ms-mb-large{
	margin-bottom: 120px;
}
.ms-mb-medium{
	margin-bottom: 100px;
}
.ms-mb-small{
	margin-bottom: 60px;
}
@media (max-width: 750px){
	.ms-text-p{
		line-height: 1.7;
	}
	.ms-text-lead{
		line-height: 1.7;
	}
	.ms-section-gap-large{
		margin-top: 60px;
	}
	.ms-section-gap-small{
		margin-top: 2em;
	}
	.ms-mb-big{
		margin-bottom: 1.8rem;
	}
	.ms-mb-large{
		margin-bottom: 60px;
	}
	.ms-mb-medium{
		margin-bottom: 60px;
	}
	.ms-mb-small{
		margin-bottom: 30px;
	}
}


/* 4. メイン（1140px幅） */
.ms-main-visual{
	position: relative;
	width: 100%;
}
.ms-main-img-box{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	background: #e6e3dd;
	aspect-ratio: 1140 / 700;
	overflow: hidden;
}
.ms-main-img-box img{
	width: 100%;
	height: auto;
}
.ms-main-title-band{
	position: absolute;
	top: 120px;
	right: 0;
	display: flex;
	align-items: center;
	flex-direction: column;
	height: auto;
	padding: 20px 60px;
	background: rgba(255, 255, 255, 0.95);
	gap:10px;
}
.ms-main-title-band-h1{
	font-size: 28px;
	font-weight: 700;
	margin: 0;
	letter-spacing: 0.2em;
}
.ms-main-title-band-p{
	font-size: 1em;
	letter-spacing: 0.2em;
	color: #8b6f47;
}
@media (max-width: 750px){
	.ms-main-visual{
		display: flex;
		align-items: flex-start;
		justify-content: flex-start;
		flex-flow: column wrap;
	}
	.ms-main-title-band{
		top: auto;
		right: 0;
		bottom: 0;
		width: 100%;
		height: auto;
		padding: 20px 0 0;
		writing-mode: horizontal-tb;
		position: static;
		gap:5px;
	}
	.ms-main-title-band-h1{
		font-size: 0.36rem;
		line-height: 1.7em;
		letter-spacing: 0;
	}
}


/* 5. 左右50%セクション */
.ms-flex-sec{
	display: flex;
	align-items: stretch;
}
.ms-flex-reverse{
	flex-direction: row-reverse;
}
.ms-flex-text-part{
	display: flex;
	justify-content: center;
	flex-direction: column;
	box-sizing: border-box;
	padding: 20px 60px 20px 0;
	flex: 0 0 50%;
}
.ms-flex-reverse .ms-flex-text-part{
	padding: 20px 0 20px 60px;
}
.ms-flex-table-part{
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	box-sizing: border-box;
	padding: 0 60px 20px 0;
	flex: 0 0 50%;
}
.ms-flex-reverse .ms-flex-table-part{
	padding: 0 0 20px 60px;
}
.ms-flex-img-part{
	display: flex;
	justify-content: center;
	align-items: center;
	background: transparent;
	flex: 0 0 50%;
}
.ms-flex-grid{
	gap: 40px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
.ms-flex-card{
	padding: 60px 40px;
	border: 1px solid #e0ddd5;
	background: #fff;
	margin: 0;
}
.ms-flex-card-h4{
	font-size: 19px;
	font-weight: 700;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 1px solid #e0ddd5;
}
@media (max-width: 750px){
	.ms-flex-text-part{
		padding: 20px 0px 20px 0;
		flex: 0 0 100%;
	}
	.ms-flex-reverse .ms-flex-text-part{
		padding: 20px 0 20px 0px;
	}
	.ms-flex-img-part{
		min-height: 0;
		flex: 0 0 100%;
	}

	.ms-flex-table-part{
		padding-right: 0;
	}
	.ms-flex-reverse .ms-flex-table-part{
		padding-left: 0;
	}

	.ms-flex-grid{
		grid-template-columns: 1fr;
		gap: 20px;
		flex-direction: column;
	}
	.ms-flex-card{
		padding: 30px 20px;
	}
}


/* 6. 表 */
.ms-table{
	font-size: 14px;
	width: 100%;
	border-collapse: collapse;
	border-top: 1px solid #b3b3b3;
	border-left: 1px solid #b3b3b3;
}
.ms-table th,
.ms-table td{
	line-height: 1.7;
	padding: 25px 15px 25px 20px;;
	text-align: left;
	border-right: 1px solid #b3b3b3;
	border-bottom: 1px solid #b3b3b3;
}
.ms-table th{
	font-weight: 700;
	width: 25%;
	color: #222;
	background: #e7e7e7;
}
.ms-table-spec{
}
.ms-table-spec th:nth-child(1){
	width: 40%;
}
.ms-table-spec th:nth-child(2){
	width: 60%;
}
.ms-table-about{
}
.ms-table-about th{
}
.ms-table-about td{
}
@media (max-width: 750px){
	.ms-table-spec th{
		padding: 0.13rem 0.18rem;
	}
	.ms-table-spec td{
		padding: 0.13rem 0.18rem;
	}

	.ms-table-about,
	.ms-table-about thead,
	.ms-table-about tbody,
	.ms-table-about tr{
		display: block;
	}
	.ms-table-about th{
		display: block;
		width: 100% !important;
		padding: 0.13rem 0.18rem;
	}
	.ms-table-about td{
		display: block;
		width: 100% !important;
		padding: 0.13rem 0.18rem;
	}
}


/* 7. フルワイド画像（100%） */
.ms-full-width-banner{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 0 0 60px;
}
.ms-full-width-banner{
	background-color: transparent;
	background-image: url(../../img/morisho/morisho_lineup_bg.jpg);
	aspect-ratio: 7 / 2;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}


/* 8. コンセプト */
.ms-concept-grid{
	display: flex;
	gap: 40px;
}
.ms-concept-card{
	padding: 60px 40px;
	border: 1px solid #e0ddd5;
	background: #fff;
	flex: 1;
}
.ms-concept-card-h4{
	font-size: 19px;
	font-weight: 700;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 1px solid #e0ddd5;
}
@media (max-width: 750px){
	.ms-concept-card{
		padding: 30px 20px;
	}
}

/* 9. CTA */
.ms-cta-section{
	margin-top: 120px;
	text-align: center;
}
.ms-cta-btn{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 25px 20px;
	transition: background-color 0.3s;
	color: #fff;
	background: #2d2926;
	max-width: 400px;
	width: 100%;
	margin: 0 auto;
}
.ms-cta-btn:before{
	background-color: #600;
}
.ms-cta-btn:hover *,
.ms-cta-btn:focus *{
	color: #fff !important;
}
.ms-cta-btn span {
	font-size: 18px;
}
.ms-cta-btn i{
	top:50%;
	transform: translateY(-50%);
	margin-left: auto;
}
.ms-cta-btn:hover{
	background-color: #8b6f47;
}
@media (max-width: 750px){
	.ms-content-limit{
		width: 100%;
		padding: 0 20px;
	}
	.ms-flex-sec,
	.ms-flex-reverse{
		flex-direction: column;
	}
	.ms-cta-section{
		margin-top: 60px;
	}

	.ms-concept-grid{
		flex-direction: column;
	}
	.ms-cta-btn{
		box-sizing: border-box;
		width: 100%;
		padding: 25px 0;
	}
}
