@charset "UTF-8";

/*--------------------------------
reset
--------------------------------*/
html,body,div,p,img,iframe,a,span,blockquote,q,address,cite,
pre,code,em,small,strong,b,i,
header,article,section,nav,figure,figcaption,hgroup,menu,aside,footer,time,
h1,h2,h3,h4,h5,h6,
ul,ol,li,dl,dt,dd,
table,tbody,thead,tfoot,th,tr,td,
form,fieldset,legend,label,select,input,textarea,button{
	margin: 0;
	padding: 0;
	border: 0;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align: baseline;
}
header,article,section,nav,figure,figcaption,hgroup,menu,aside,footer{
	display: block;
}
ul li{
	list-style-type: none;
}
h1,h2,h3,h4,h5,h6{
	font-weight: 500;
}
body{
	line-height: 1;
}
a{
	text-decoration: none;
}
img{
	vertical-align: middle;
}
table{
	border-collapse: collapse;
	border-spacing: 0;
}
select,option,input,textarea,button{
	font: inherit;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
}
input[type=radio]{
	-webkit-appearance: radio;
	-moz-appearance: radio;
	appearance: radio;
}
input[type=checkbox]{
	-webkit-appearance: checkbox;
	-moz-appearance: checkbox;
	appearance: checkbox;
}
blockquote::before,blockquote::after,q::before,q::after{
	content: '';
	content: none;
}
[type=submit],[type=button],[type=reset],[type=file],button{
	cursor: pointer;
}
:focus{
	outline: none;
}
html{
	font-size: 62.5%;
}
body{
	font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Hiragino Sans", "Yu Gothic", sans-serif;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1;
	color: #333;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
}
a {
	color: #006d9e;
	-webkit-tap-highlight-color: rgba(238, 223, 227, 0.2);
}
sup,
sub{
	font-size: xx-small;
}

/*--------------------------------
common
--------------------------------*/
.text-center {
	text-align: center;
}
.is-light{
	color: #fff;
}
.text-right {
	text-align: right;
}

.small-text {
	font-size: 75%;
}
.large-text{
	font-size: 150%;
}
.fit-img {
	width: 100%;
	height: auto;
	vertical-align: middle;
}

.has-max {
	height: auto;
	max-width: 100%;
}

.flex-wrapper {
	display: flex;
}

.grid-wrapper {
	display: grid;
}
.attention-text{
	color: #837C59;
}
.strong-text{
	color: #79516e;
}
.img-wrapper{
	position: relative;
}
.img-wrapper .caption{
	position: absolute;
	bottom: 0;
	left: 8px;
	right: 8px;
	z-index: 1;
}
.gara-font{
	font-family: 'EB Garamond', serif;
}
.en-font{
	font-family: 'Noto Serif', serif;
}
.ja-font{
	font-family: 'Noto Serif JP', serif, "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.gothic-font{
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Hiragino Sans", 'Noto Sans JP', sans-serif, "Yu Gothic", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Sans Emoji";
	font-weight: 300;
}
.vertical-text{
	writing-mode: vertical-rl;
	-webkit-text-orientation: upright;
	text-orientation: upright;
	-webkit-font-feature-settings: normal;
	font-feature-settings: normal;
}
.inline-block{
	display: inline-block;
}
@media screen and (max-width: 767px){
	.sp-none{
		display: none;
	}
}
@media screen and (min-width: 768px){
	.pc-none{
		display: none;
	}
}
@keyframes slideUpFade{
	0% {
		opacity: 0;
		transform: translate(0, 20px);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}
@keyframes blink{
	0%,40%,60%,100% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}

a.none{
    pointer-events: none;
    opacity: .4;
}
/*--------------------------------
componet
--------------------------------*/
.inner{
	margin: 0 auto;
	padding: 0 16px;
	max-width: 1200px;
}
.inner-wide{
	margin: 0 auto;
	padding: 0 16px;
	max-width: 1680px;
}
.primary-heading{
	margin-bottom: .8em;
	font-size: 4.6rem;
	line-height: 1.3;
}
.secondary-heading{
	margin-bottom: .8em;
	font-size: 3rem;
	line-height: 1.3;
}
.tertiary-heading{
	margin-bottom: .8em;
	font-size: 2rem;
	line-height: 1.4;
}
.primary-lead{
	font-size: 2.8rem;
	line-height: 1.7;
}
.page-title-wrap{
	padding: 24px 0;
	text-align: center;
}
.page-title{
	font-family: 'Cormorant Garamond', serif;
	font-size: 4rem;
	line-height: 1.2;
	letter-spacing: .02em;
	text-indent: .02em;
}
.page-title-lead{
	font-size: 1.4rem;
	line-height: 1.4;
}
.page-title-wrap .secondary-heading{
	margin-top: 2em;
}
@media screen and (max-width: 767px){
	.primary-heading{
		font-size: 2.4rem;
	}
	.secondary-heading{
		font-size: 2rem;
	}
	.tertiary-heading{
		font-size: 1.6rem;
	}
	.primary-lead{
		font-size: 1.6rem;
	}
	.page-title{
		font-size: 3rem;
	}
}
.note{
	margin: 1em 0;
	font-size: 1.6rem;
	line-height: 1.6;
}
.primary-note{
	margin: .8em 0;
	font-size: 2rem;
	line-height: 1.8;
}
@media screen and (max-width: 767px){
	.note{
		font-size: 1.4rem;
	}
	.primary-note{
		font-size: 1.4rem;
	}
}
.caption{
	margin: 8px 0;
	font-weight: 300;
	font-size: 1.2rem;
	line-height: 1.4;
}
.btn{
	padding: 8px 16px;
	display: inline-block;
	position: relative;
	background: #333;
	color: #fff;
	font-size: 1.6rem;
	transition: all .3s ease-out;
}
.btn:hover{
	opacity: .8;
}
.general-btn{
	margin: 8px 4px;
	padding: 0 16px;
	width: 100%;
	max-width: 330px;
	height: 60px;
	font-size: 2.8rem;
	line-height: 60px;
	box-shadow: 0 1px 14px rgba(0,0,0,.3);
}

.light-bg{
	background-color: #eaeded;
}
.gray-bg{
	background-color: #eee;
}
.light-gray-bg{
	background-color: #fbfbfb;
}
.gold-bg{
	background: rgb(201,190,153);
	background: linear-gradient(120deg, rgb(160, 149, 110) 0%, rgba(201,190,153,1) 69%, rgba(217,212,191,1) 100%);
}
.general-box{
	margin: 16px 0;
	padding: 48px 72px;
	background: #fff;
	box-shadow: 1px 1px 4px rgba(0,0,0,.2);
}
@media screen and (max-width: 767px){
	.general-box{
		padding: 16px;
	}
}


/*--------------------------------
layout
--------------------------------*/
.main-container{
	overflow: hidden;
	transition: all .3s ease-in-out;
}
.mv-container{
	position: relative;
}
.mv-text{
	position: absolute;
	top: 5%;
	left: 5%;
	max-width: 940px;
	width: 48%;
}
@media screen and (max-width: 767px){
	.mv-text{
		width: 60%;
	}
	.mv-container .img-wrapper .caption{
		font-size: 1rem;
		text-align: right;
		bottom: -5px;
	}
}
.is-sticky{
	/*margin-top: 100px;*/
}
.general-section .inner{
	padding: 80px 16px;
}
.general-section .inner-wide{
	padding: 80px 5%;
}
.general-section .inner-full{
	padding: 80px 0;
}
@media screen and (max-width: 1029px){
	.is-sticky{
		/*margin-top: 50px;*/
	}
}
@media screen and (max-width: 767px){
	.general-section .inner{
		padding: 40px 16px;
	}
	.general-section .inner-wide{
		padding: 40px 16px;
	}
	.general-section .inner-full{
		padding: 40px 0;
	}
}
.general-section .inner + .inner{
	padding-top: 0;
}
.general-parts .inner{
	padding: 32px 16px;
}
.general-area{
	margin-bottom: 64px;
}
@media screen and (max-width: 767px){
	.general-area{
		margin-bottom: 32px;
	}
}
.btn-space{
	margin-top: 40px;
	text-align: center;
}
.col-2,
.col-3{
	margin: 0 -24px;
	flex-wrap: wrap;
}
.col-2 > .flex-item{
	margin: 0 24px 16px;
	width: calc(50% - 48px);
}
.col-3 > .flex-item{
	margin: 0 24px 16px;
	width: calc(100% / 3 - 48px);
}
@media screen and (max-width: 767px){
	.col-2 > .flex-item,
	.col-3 > .flex-item{
		width: calc(100% - 48px);
	}
}
.section-parts{
	margin-bottom: 64px;
}
.component-parts{
	margin-bottom: 16px;
}


/*--------------------------------
footer
--------------------------------*/
footer{
    padding: 65px 0 50px;
    background: #F4F4F4;
}
.annotation{
    margin: 0 auto;
    max-width: 1090px;
    font-size: 1.2rem;
    line-height: 1.4;
}
.footer_company{
    margin: 40px auto;
    display: flex;
    justify-content: center;
}
.footer_company-item{
    max-width: 250px;
}
address{
    text-align: center;
		font-style: normal;
}
@media screen and (max-width: 787px){
	footer{
		padding: 36px 0 30px;
	}
	.footer_company-item{
		max-width: 180px;
	}
	.annotation{
    max-width: 90%;
    font-size: .9rem;
	}
}
/*--------------------------------
home
--------------------------------*/
.mv-container .slick-slide {
  line-height: 0;
  font-size: 0;
}
.usp-container{
	background: url(../images/usp-bg.webp) no-repeat top center;
	background-size: 100%;
	background-color: #393c40;
}
.usp-inner{
	margin: 0 auto;
	padding: 200px 0 54px;
	max-width: 1500px;
	width: calc(100% - 40px);
}
@media screen and (max-width: 787px){
	.usp-container{
		background: url(../images/usp-bg-sp.webp) no-repeat top center;
		background-size: 100%;
		background-color: #393c40;
	}
	.usp-inner{
		padding: 60px 0 40px;
    max-width: 90%;
	}
}

.mansion-inner{
	padding: 100px 0 80px;
}
.mansion-ttl{
	margin: 0 auto;
	max-width: 730px;
}
.mansion-ttl-sub{
	margin-top: 50px;
	color: #fff;
	font-size: 2rem;
	line-height: 1.6;
	text-align: center;
}
.usp{
	margin-top: 40px;
}
@media screen and (max-width: 787px){
	.usp{
		margin-top: 20px;
	}
}
/*.mansion-items01,
.mansion-items02{
	margin: 0 auto 40px;
	max-width: 1580px;
	width: calc(100% - 30px);
	display: flex;
	justify-content: space-between;
}
.mansion-item{
	width: 31%;
}*/
.mansion-items01,
.mansion-items02 {
  margin: 0 auto 40px;
  max-width: 1580px;
  width: calc(100% - 30px);
}
.mansion-items01 .slick-track,
.mansion-items01 .slick-track{
	padding-bottom: 10px;
}
.mansion-item {
  padding: 0 8px;
  box-sizing: border-box;
}
.mansion-name{
	margin-top: 24px;
	font-size: 2.4rem;
	line-height: 1.4;
}
.mansion-access{
	margin-top: 24px;
	font-size: 1.6rem;
	line-height: 1.4;
	/*min-height: 96px;*/
}
.mansion-status{
	margin-top: 18px;
	font-size: 2.6rem;
	line-height: 1.4;
	color: #A72121;
}
.mansion-status-small{
	font-size: 2.2rem;
	line-height: 1.3;
}
.mansion-status .text-small{
	font-size: 1.8rem;
}
.mansion-btn-wrap{
	margin: 26px auto 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px 2%;
}
.mansion-btn{
	width:49%;
}
.mansion-btn.mansion-btn-single{
	width: 56%;
}
.mansion-btn-arrow{
	width: 56%
}
.mansion-indicator01,
.mansion-indicator02 {
  display: flex;
  width: calc(100% - 30px);
	max-width: 1580px;
  height: 6px;
  background: #eee;
  margin: 60px auto 0;
  overflow: hidden;
}

.indicator {
  flex: 1;
  height: 100%;
  background: transparent;
  transition: background-color 0.3s ease;
}

.indicator.active {
  background-color: #B5B5B5;
}


@media screen and (max-width: 787px){
	.mansion-container{
		background: linear-gradient(180deg, #f1f2f5 0%, #f4f5f7 25%, #f8f9fa 50%, #fbfbfb 75%, #ffffff 100%);
	}
	.mansion-inner{
		padding: 40px 0 40px;
	}
	.mansion-ttl-wrap{
		padding: 60px 0;
		background-image: none;
	}
	.mansion-ttl{
		margin: 0 auto;
		max-width: 76%;
	}
	.mansion-ttl-sub {
    margin-top: 30px;
    font-size: 1.4rem;
	}
	.mansion-items01,
	.mansion-items02{
		margin: 0 auto 40px;
		flex-direction: column;
		gap: 60px 0;
		max-width: 76%;
	}
	.mansion-item{
		width: 100%;
		padding: 0 8px;
		box-sizing: border-box;
	}
	.mansion-name{
		margin-top: 14px;
		font-size: 2.1rem;
		line-height: 1.4;
	}
	.mansion-access{
		margin-top: 10px;
		font-size: 1.4rem;
		line-height: 1.4;
		/*min-height: auto;*/
	}
	.mansion-status{
		margin-top: 10px;
		font-size: 2.3rem;
		line-height: 1.4;
		color: #A72121;
	}
	.mansion-status-small{
		font-size: 1.8rem;
	}
	.mansion-status .text-small{
		font-size: 1.4rem;
	}
	.mansion-btn-arrow {
    width: 70%;
	}
	.mansion-btn.mansion-btn-single{
		width: 70%;
	}
	.mansion-indicator01,
	.mansion-indicator02 {
		margin: 0 auto;
		display: flex;
		width: 80%;
		height: 4px;
		background: #E8E8E8;
		margin-top: 12px;
		overflow: hidden;
	}
	.indicator {
		flex: 1;
		height: 100%;
		background: transparent;
		transition: background 0.3s ease;
	}
	.indicator.active {
		background: #B5B5B5;
	}
}


.btn-black{
	padding: 20px 0;
	background: #A78E42;
	color: #fff;
	text-align: center;
	display: inline-block;
	width: 100%;
	font-size: 1.8rem;
	transition: all 0.2s;
}
.btn-black:hover{
	opacity: .7;
}
.btn-arrow{
	padding: 20px 0;
	text-align: center;
	display: inline-block;
	width: 100%;
	color: #4A4C58;
	border: 1px solid #4A4C58;
	position: relative;
	transition: all 0.2s;
	font-size: 1.8rem;
	background: #fff;
}

.btn-arrow::before{
	content: "";
	position: absolute;
	display: inline-block;
  width: 60px;
  height: 1px;
  border-radius: 9999px;
  background-color: #000000;
	top: 50%;
  transform: translateY(-50%);
	right: -13%;
	transition: all 0.2s;
}
.btn-arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: -13%;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #000000;
  transform: rotate(45deg);
  transform-origin: calc(100% - 2px) 50%;
	transition: all 0.2s;
}
.btn-arrow:hover:before,
.btn-arrow:hover:after{
  right: -16%;
}

.btn-arrow.mv-btn{
	margin-top: 4%;
	background: #C1B48D;
	color: #333;
	max-width: 390px;
	border: none;
}
.btn-arrow.mv-btn::before{
	width: 24px;
	right: 5%;
}
.btn-arrow.mv-btn::after {
	right: 5%;
	width: 10px;
}
.btn-arrow.mv-btn:hover{
	opacity: .7;
}
@media screen and (min-width: 481px) and (max-width: 1240px) {
	.mansion-name {
    font-size: 2.3vw;
	}
	.mansion-access {
    font-size: 1.4vw;
		/*min-height: 70px;*/
	}
	.btn-arrow{
		font-size: 1.2vw;
	}
	.btn-black {
    font-size: 1.2vw;
	}
	.mansion-status {
    font-size: 2.2vw;
	}
	.mansion-btn-wrap{
		margin: 24px auto 0;
	}
	.btn-arrow::before {
    width: 40px;
	}
}
@media screen and (max-width: 787px){
	.mansion-btn-wrap{
		margin: 18px auto 0;
	}
	.btn-black{
		padding: 14px 0;
		font-size: 1.4rem;
	}
	.btn-arrow{
		padding: 14px 0;
		font-size: 1.4rem;
	}
	.btn-arrow::before{
		width: 40px;
		right: -10%;
	}
	.btn-arrow::after {
		width: 6px;
		height: 1px;
		right: -10%;
	}
	.btn-arrow.mv-btn{
		max-width: 66%;
		font-size: 1rem;
		padding: 6px 7% 6px 0;
	}
	.btn-arrow.mv-btn::before {
    width: 10px;
    right: 6%;
	}
	.btn-arrow.mv-btn::after {
    right: 6%;
    width: 5px;
	}
}

.detail-ttl-sub{
	font-size: 3.6rem;
	line-height: 1.5;
	text-align: center;
}
.detail-ttl{
	margin-top: 40px;
	font-size: 6rem;
	text-align: center;
	color: #A78E42;
}
.detail-item {
	margin: 100px auto 0;
	font-weight: 300;
}
.badge-area{
	position: absolute;
	right: 5vw;
	bottom: 1vw;
	width: 12.4vw;
	max-width: 280px;
}
@media screen and (max-width: 1300px){
	.badge-area{
		bottom: 2.4vw;
	}
}
@media screen and (max-width: 787px){
	.badge-area{
		position: relative;
		right: unset;
		bottom: unset;
		width: 100%;
		max-width: unset;
		min-width: unset;
		width: 93vw;
		left: 50%;
		right: 50%;
		margin-left: -46.5vw;
		margin-right: -46.5vw;
		margin-bottom: -22px;
		margin-top: 6px;
	}
}
.detail-text-box{
	margin: 0 auto;
	max-width: 1300px;
	width: calc(100% - 40px);
}

.detail-text-items{
	margin: 100px auto 0;
	display: flex;
	justify-content: center;
	gap: 0 30px;
	width: calc(100% - 40px);
}
.detail-text-item{
	width: 50%;
}
.detail-name{
	font-size: 5rem;
	padding-bottom: 24px;
	border-bottom: 1px solid #333;
}
.detail-access{
	margin-top: 54px;
	display: flex;
	gap: 0 20px;
	align-items: end;
}
.detail-access01{
	font-size: 5.6rem;
	position: relative;
}
.detail-access-station{
	font-size: 1.7rem;
	position: absolute;
	left: 0;
	top: -24px;
}
.detail-access01 .small-text{
	font-size: 2.8rem;
}
.detail-access01 .middle-text{
	font-size: 4.8rem;
}
.detail-access01 .num-text{
	font-size: 9rem;
}
.detail-access02{
	margin-bottom: 8px;
	font-size: 1.3rem;
	line-height: 1.4;
}
.detail-price{
	margin-top: 30px;
	font-size: 8rem;
}
.detail-price .middle-text{
	font-size: 5.6rem;
}
.detail-price .small-text{
	font-size: 4.3rem;
}
.detail-status{
	margin-top: 68px;
	font-size: 6rem;
	color: #9A0000;
	line-height: 1.2;
}
.detail-status-small{
	font-size: 4rem;
	line-height: 1.4;
}
.detail-status-small .text-small{
	font-size: 3.2rem;
}
.detail-status .middle-text{
	font-size: 4.8rem;
}
.detail-usp{
	font-size: 4.2rem;
	line-height: 1.3;
	padding: 36px 0;
	border-bottom: 1px solid #333;
}
.detail-usp:first-child{
	padding: 0 0 40px;
}
.detail-usp .middle-text{
	font-size: 3.6rem;	
}
.detail-usp .min-middle-text{
	font-size: 3rem;	
}
.detail-usp .small-text{
	font-size: 2.2rem;	
}
.detail-usp .min-text{
	font-size: 1.6rem;	
}
.detail-usp sup{
	font-size: 1.7rem;
}
.detail-btn-box{
	margin: 80px auto 0;
	display: flex;
	justify-content: center;	
	gap: 0 30px;
	max-width: 1100px;
	width: calc(100% - 40px);
}
.detail-btn-wrap{
	width: 50%;
}
.detail-btn{
	padding: 20px 0;
	font-size: 2.8rem;
	text-align: center;
	border: 1px solid #333;
	width: 100%;
	display: inline-block;
	color: #333;
}
.detail-btn.detail-btn-entry{
	border: none;
	color: #fff;
	background: #A78E42;
}
@media screen and (max-width: 1360px){
	.detail-name{
		font-size: 4vw;
	}
	.detail-access01{
		font-size: 3.9vw;
	}
	.detail-access-station{
		font-size: 1.26vw;
	}
	.detail-access01 .small-text{
		font-size: 1.8vw;
	}
	.detail-access01 .middle-text{
		font-size: 2.9vw;
	}
	.detail-access01 .num-text{
		font-size: 5.8vw;
	}
	.detail-access02{
		font-size: 0.9vw;
	}
	.detail-price{
		font-size: 5.7vw;
	}
	.detail-price .middle-text{
		font-size: 3.8vw;
	}
	.detail-price .small-text{
		font-size: 3vw;
	}
	.detail-status{
		font-size: 4.62vw;
	}
	.detail-status-small{
		font-size: 3vw;
	}
	.detail-status-small .text-small{
		font-size: 2.4vw;
	}
	.detail-status .middle-text {
    font-size: 3.5vw;
	}
	.detail-usp{
		font-size: 3.22vw;
	}
	.detail-usp .middle-text{
		font-size: 2.52vw;	
	}
	.detail-usp .small-text{
		font-size: 1.54vw;	
	}
	.detail-usp .min-text{
		font-size: 1.12vw;	
	}
	.detail-usp sup{
		font-size: 1.4vw;
	}
	.detail-btn{
		font-size: 1.96vw;
	}
}

@media screen and (max-width: 787px){
	.detail-inner{
		padding: 40px 0;
	}
	.detail-ttl-sub {
    font-size: 2rem;
	}
	.detail-ttl {
    margin-top: 22px;
    font-size: 4rem;
	}
	.detail-item {
    margin: 40px auto 0;
	}
	.detail-text-items {
    margin: 30px auto 0;
    display: flex;
		flex-direction: column;
    gap: 20px 0;
	}
	.detail-text-item {
		margin: 24px auto 0;
    width: 100%;
	}
	.detail-text-item.detail-text-item-left {
		margin: 24px auto 0;
    width: 50%;
	}
	.detail-name {
		font-size: 2.4rem;
		padding-bottom: 16px;
	}
	.detail-access {
    margin-top: 26px;
    display: flex;
		flex-direction: column;
    gap: 4px 0;
    align-items: flex-start;
	}
	.detail-access-station {
		font-size: 1.2rem;
		top: -5px;
	}
	.detail-access01 {
		font-size: 3.5rem;
	}
	.detail-access01 .small-text {
		font-size: 1.7rem;
	}
	.detail-access01 .num-text {
		font-size: 5.2rem;
	}
	.detail-access01 .middle-text {
		font-size: 2.7rem;
	}
	.detail-access02 {
		font-size: 1.2rem;
	}
	.detail-price {
		margin-top: 14px;
		font-size: 3.7rem;
	}
	.detail-price:first-child{
		margin-top: 8px;
	}
	.detail-price .middle-text {
		font-size: 2.5rem;
	}
	.detail-price .small-text {
		font-size: 2.1rem;
	}
	.detail-status {
		margin-top: 28px;
		font-size: 3.1rem;
	}
	.detail-status-small {
		font-size: 2rem;
	}
	.detail-status-small .text-small {
		font-size: 1.6rem;
	}
	.detail-status .middle-text {
		font-size: 2.4rem;
	}
	.detail-usp {
		padding: 18px 0;
		font-size: 2rem;
		text-align: center;
		letter-spacing: -.02em;
	}
	.detail-usp:first-child {
    padding: 18px 0;
		border-top: 1px solid #333;
	}
	.detail-usp .middle-text {
		font-size: 2.2rem;
	}
	.detail-usp .small-text {
		font-size: 1.4rem;
	}
	.detail-usp .min-text {
		font-size: 0.9rem;
	}
	.detail-usp sup{
		font-size: 0.9rem;
	}
	.usp-sub-text-right{
		margin-top: 4px;
		padding-right: 4%;
		display: block;
    text-align: right;
	}
	.usp-sub-text-center{
		margin-top: 4px;
		display: block;
    text-align: center;
	}
	.detail-usp .min-middle-text.usp-sub-text-shop{
		margin-bottom: -20px;
		margin-top: 4px;
		display: block;
		font-size: 1.8rem;
	}
	.detail-btn-box{
		margin: 40px auto 0;
		flex-direction: column;
		gap: 10px 0;
	}
	.detail-btn-wrap {
		margin: 0 auto;
    width: 90%;
	}
	.detail-btn {
		padding: 18px 0;
		font-size: 1.4rem;
	}
}
@media screen and (max-width: 480px){
	.detail-text-item.detail-text-item-left {
		margin: 24px auto 0;
    width: 100%;
	}
}


.plan-container{
	
}
.plan-inner{
	margin: 0 auto;
	padding: 100px 0 80px;
}
.plan-ttl-wrap{
	padding: 80px 0 350px;
	background: url(../images/bg02.webp) no-repeat top right;
	background-size: 86%;
}

.plan-ttl{
	margin: 0 auto;
	max-width: 1580px;
	width: calc(100% - 40px);
	font-size: 6rem;
	letter-spacing: .1em;
}

.plan-items{
	margin: -270px auto 40px;
	max-width: 1580px;
	width: calc(100% - 40px);
	display: flex;
	justify-content: space-between;
}

.plan-item{
	padding: 0 0 30px;
	width: 31%;
	background: #fff;
}
.plan-detail{
	margin-top: 30px;
	text-align: center;
	font-size: 2.6rem;
	letter-spacing: .01em;
}
.plan-name{
	margin-top: 18px;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 300;
}
.plan-item .mansion-btn-arrow{
	margin: 20px auto 0;
}


@media screen and (max-width: 1400px){
	.plan-items{
		margin: -12% auto 40px;
	}
	.plan-ttl-wrap{
		padding: 5% 0 16%;
		background-size: 100%;
	}
}
@media screen and (max-width: 787px){
	.plan-container{
		background: linear-gradient(180deg, #f1f2f5 0%, #f4f5f7 25%, #f8f9fa 50%, #f8f9fa 75%, #ffffff 100%);
	}
	.plan-inner{
		margin: 0 auto;
		padding: 0;
	}
	.plan-ttl-wrap{
		padding: 50px 0 30px;
		background-image: none;
	}
	.plan-ttl{
		font-size: 2.8rem;
	}
	.plan-items{
		margin: 0 auto 40px;
		flex-direction: column;
		gap: 40px;
	}
	.plan-item{
		padding: 20px 0 40px;
		width: 100%;
	}
}
