@charset "utf-8";


/* ==========================================================
 reset
========================================================== */
/*body,div,pre,p,blockquote,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,form,fieldset,th,td,button,figure,figcaption {margin: 0;padding: 0;
}
input,textarea {margin: 0;font-size: 100%;}
textarea {resize: none;}
button {overflow: visible;cursor: pointer;vertical-align: top;font-size: 100%;color: inherit;border: none;background: none;-webkit-appearance: none;outline: none;}
button:focus-visible {outline: auto;}
label {cursor: pointer;}
table {border-spacing: 0;border-collapse: collapse;font-size: 100%;}
fieldset {border: 0;}
h1,h2,h3,h4,h5,h6,strong,b,address,caption,code,em,th,i {font-size: 100%;font-weight: normal;font-style: normal;}
ol,ul {list-style: none;}
sup {vertical-align: top;}
sub {vertical-align: baseline;}
* {-webkit-box-sizing: border-box;box-sizing: border-box;}
sup,sub {font-size: 60%;}
img {width: 100%;max-width: 100%;height: auto;vertical-align: top;border: 0;}
svg {width: 100%;max-width: 100%;vertical-align: bottom;fill: currentColor;}*/



/* ==========================================================
 root font-size
========================================================== */
html {
	font-size: 10px;
}

@media screen and (max-width: 1680px) {
	html {
		font-size: 0.595238095238095vw;
	}
}

@media screen and (max-width: 1185px) {

	/*14px → min 10px*/
	html {
		font-size: 7.142857142857143px;
	}
}

@media screen and (max-width: 768px) {
	html {
		font-size: 14px;
	}
}

@media screen and (max-width: 560px) {

	/*font-size:10px 10 / 380 */
	html {
		font-size: 2.631578947368421vw;
	}
}



/* ==========================================================
 template style
========================================================== */
:root {
	--vw: 0;
	--header-height: 110px;
	--actionbtn-height: 0px;
	--window-half-width: 50vw;
	--margin-top: 0px;
	--margin-bottom: 0px;
	--leading-trim: 0px;
	--white: #fff;
	--white-rgb: 255, 255, 255;
	--black: #000;
	--black-rgb: 0, 0, 0;
	--global-color: 0;
	--gradation-color: linear-gradient(172.54deg, rgba(172, 156, 81, 1) 0%, rgba(136, 127, 74, 1) 100%);
	/* 背景 */
	--background-base: transparent;
}

@media screen and (max-width: 1200px) {
	:root {
		--header-height: 64px;
		--actionbtn-height: 64px;
	}
}

@supports not (top: 1lh) {
	:root {
		--leading-trim: 0px;
	}
}

html {
	/*scroll-behavior: smooth;*/
	scroll-padding-top: var(--header-height);
}

body {
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	/*font-family: sans-serif;*/
	font-family: serif;
}

/*html,body {
  overflow: clip;
  scrollbar-gutter: stable;
  overflow: revert;
  scrollbar-gutter: revert;
}*/
/* Firefox */
/*@-moz-document url-prefix() {
  html,
  body {
    scrollbar-gutter: revert;
  }
}*/
a {
	color: inherit;
}

a:hover {
	text-decoration: none;
}

.wrapper {
	position: relative;
	overflow: clip;
}

.sp-bl, .sp-il, .tablet-bl {
	display: none !important;
}

@media (any-hover: hover) {
	.opa {
		transition: opacity 0.3s ease-in-out;
	}

	.opa:hover {
		opacity: 0.7 !important;
	}
}

.w100 {
	width: 100% !important;
}

.h100 {
	height: 100% !important;
}

.none {
	display: none !important
}

.visuallyhidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.cf::before, .cf::after {
	content: "";
	display: table;
}

.cf::after {
	clear: both;
}

.cf {
	zoom: 1;
}

.ff {
	text-align: justify;
	text-justify: inter-ideograph;
}

.vText {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-orientation: upright;
}

.vTextEn {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-orientation: mixed;
}

.inner {
	max-width: 1500px;
	width: 90%;
	margin-inline: auto;
	position: relative;
}

.inner2 {
	max-width: 1500px;
	width: 90%;
	margin-inline: auto;
	position: relative;
}

.outer {
	width: 100%;
	max-width: 1920px;
	margin-inline: auto;
	position: relative;
}

.fit-cover {
	overflow: clip;
}

.fit-cover img {
	object-fit: cover;
	object-position: center center;
	height: 100%;
	width: 100%;
}

i, em {
	font-style: normal;
}

b {
	font-weight: bold;
}

sup {
	font-size: 10px;
	vertical-align: text-top;
	letter-spacing: 0;
}

.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}

.flex.nowrap {
	flex-wrap: nowrap;
}

.flex.jc-c {
	justify-content: center;
}

.flex.jc-s {
	justify-content: flex-start;
}

.flex.jc-e {
	justify-content: flex-end;
}

.flex.ai-c {
	align-items: center;
}

.flex.ai-e {
	align-items: flex-end;
}

.flex.ai-st {
	align-items: stretch;
}

.flex.fd-cl {
	flex-direction: column;
}

.flex.fd-rr {
	flex-direction: row-reverse;
}

.grid {
	display: grid;
}

.grid.jc-s {
	justify-content: start;
}

.grid.jc-e {
	justify-content: end;
}

.grid.ai-s {
	align-items: start;
}

.grid.ai-c {
	align-items: center;
}

.grid.ai-e {
	align-items: end;
}

.grid.ai-st {
	align-items: stretch;
}

@media screen and (max-width:768px) {
	.pc {
		display: none !important;
	}

	.sp-bl {
		display: block !important;
	}

	.sp-il {
		display: inline !important;
	}

	.inner {
		width: calc(340 / 380 * 100%);
		max-width: 560px;
	}

	.inner2 {
		width: calc(320 / 380 * 100%);
		max-width: 560px;
	}

	sup {
		font-size: 8px;
	}
}


/* tips */
.swiper .swiper-wrapper {
	transition-timing-function: linear;
}

.gradationText * {
	display: inline-block;
	line-height: 1.2;
	margin-bottom: -.1em;
	background: linear-gradient(90deg, rgba(228, 203, 172, 1) 0%, rgba(153, 135, 112, 1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}



/* フォント */
/*.main {
	font-family: YakuHanMP, "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-weight: 400;
  letter-spacing: .05em;
}*/
.wf-zenoldmincho-n4-active .main {
	font-family: YakuHanMP, "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
	font-weight: 400;
	/*
  Regular 400
	Medium 500
	SemiBold 600
	Bold 700
	*/
	letter-spacing: .05em;
}

/*.crimson {
  font-family: "Crimson Pro", serif;
  font-weight: 200;
  letter-spacing: .08em;
  line-height: 1cap;
  --leading-trim: calc((1cap - 1lh) / 2);
}*/
.wf-crimsonpro-n2-active .crimson {
	font-family: "Crimson Pro", serif;
	font-weight: 200;
	letter-spacing: .1em;
	line-height: 1cap;
	--leading-trim: calc((1cap - 1lh) / 2);
}

.wf-notosansjp-n4-active .notosans {
	/*font-family: YakuHanJP, 'Noto Sans JP', "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;*/
	/*font-family: "Zen Kaku Gothic Antique", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;*/
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
}

.wf-notoserifjp-n4-active .notoserif {
	font-family: YakuHanMP, "Noto Serif JP", serif;
	font-weight: 400;
}

.wf-shipporiminchob1-n4-active .shippori {
	font-family: YakuHanMP, "Shippori Mincho B1", serif;
	font-weight: 400;
}

/*
@font-face{
	font-family: "font-family";
	src: url(fontfail.woff2) format('woff2');
	font-style: normal;
	font-display: swap;
}
.font-family {
	font-family: "font-family";
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}
*/




/*--------------------------------------
nomura template Configuration
default.cssの内容に追加する場合はここに記載
--------------------------------------*/
.header-property-logo {
	width: auto;
}

/* - ナビ背景色 - */
.nav-global-property {
	background: #fff;
}

.nav-global-property-item,
.nav-global-property-item:nth-child(9n) {
	width: 100%;
}

.nav-global-property-item:first-child::before,
.nav-global-property-item::after {
	border-color: #666666;
}

.nav-global-property-item.nav-global-brand::after {
	border-color: transparent;
}

.nav-global-property-item.nav-global-brand {
	background: #000066 !important;
}

.nav-global-property-item.nav-global-brand.is-soon {
	opacity: .3;
}

.nav-global-property-item.nav-global-brand.is-soon .nav-global-property-link {
	opacity: 1;
}

.nav-global-property-link {
	color: #333333;
}

.nav-global-property-link:hover::after,
.nav-global-property-link.is-current::after {
	border-bottom-color: #333333;
}

.nav-global-property-item.nav-global-brand .nav-global-property-link:hover::after,
.nav-global-property-item.nav-global-brand .nav-global-property-link.is-current:after {
	border-bottom-color: #333333 !important;
}

.nav-global-property-item.is-new .nav-global-property-link::before {
	top: 0;
}

.nav-global-property-item.is-soon .nav-global-property-link {
	opacity: .3;
	pointer-events: none;
}

.box-bukken-contact {
	background-color: #333333;
}

/*.box-bukken-contact-inner{
	color: #ffffff;
}
.box-bukken-contact-list-item {
  background: url(../img/common/ico_arrow_right_02_pc.png) right center no-repeat;
}
.box-bukken-contact-inner, 
.box-bukken-contact-list-link{
	color: #000000;
}*/
.list-bukken-contact {
	align-items: stretch;
}

.list-bukken-contact-link {
	height: 100%;
}

.list-bukken-contact-link-green {
	border: 1px #2c4e2a solid;
}

.ttl-property-main {
	background-color: #333333;
	/*border-top: solid 1px #666666;
	color: #000000;*/
}

/*.btn-pagetop-property,
.footer-property-link-wrap{
	background-color: #303336;
}*/
.is-pc1200l .list-property-control-wrap .list-property-control {
	flex-wrap: nowrap;
}

.is-pc1200l .list-property-control-wrap .list-property-control-item {
	width: 100%;
}

/* - タブレット「お問い合わせ」削除 -  */
.tablet .list-property-control-item.contact {
	display: none;
}

/* フォント変更 */
.wf-shipporiminchob1-n4-active .header-property-utility,
.wf-shipporiminchob1-n4-active .nav-global-property-link,
.wf-shipporiminchob1-n4-active .header-property-menu-button-close a,
.wf-shipporiminchob1-n4-active .box-bukken-contact,
.wf-shipporiminchob1-n4-active .ttl-property-main {
	font-family: "Shippori Mincho B1", serif;
}


/* オンライン商談ボタン */
.list-property-control-link-yellow {
	border: 1px solid #bb951e;
}

.list-property-control-link-yellow:hover {
	border: 1px solid #fff;
}

.list-property-control-link-yellow .list-property-control-icon {
	width: 16px;
	height: 15px;
	background: url("../img/common/icon_reservation_online.png") top left no-repeat;
	background-size: auto;
	background-size: 16px 13px;
}

.list-property-control-link-yellow:hover .list-property-control-icon.reservation01 {
	background: url(/general/img/ico_reservation_01_pc.png) top left no-repeat;
	background-size: auto;
	background-size: 17px 14px;
}

.list-property-control-link-yellow .list-property-control-text {
	color: #bb951e;
}

.list-property-control-link-yellow:hover {
	background-color: #bb951e;
}

.list-property-control-link-yellow:hover .list-property-control-text {
	color: #fff;
}

.list-bukken-contact-item .online {
	border: 1px solid #bb951e;
}

.online .list-bukken-contact-icon {
	width: 17px;
	height: 14px;
	background: url(../img/common/icon_reservation_online.png) top left no-repeat;
	background-size: auto;
	background-size: 17px 14px;
}

.online:hover .list-bukken-contact-icon {
	width: 17px;
	height: 14px;
	background: url(../img/common/icon_reservation_online_hover.png) top left no-repeat;
	background-size: auto;
	background-size: 17px 14px;
}

.list-bukken-contact-link-yellow .list-bukken-contact-text {
	color: #bb951e;
}

.list-bukken-contact-link-yellow:hover .list-bukken-contact-text {
	color: #fff;
}

.list-bukken-contact-link-yellow:hover {
	background-color: #bb951e;
}

.reservation03 .list-bukken-contact-icon {
	width: 17px;
	height: 14px;
	background: url(../img/common/icon_reservation_online.png) top left no-repeat;
	background-size: 17px 14px;
}

.reservation03 .list-bukken-contact-link:hover .list-bukken-contact-icon {
	background: url(../img/common/icon_reservation_online_hover.png) top left no-repeat;
	background-size: 17px 14px;
}

@media screen and (max-width: 1200px) {

	/*.nav-global-property-list{
		background-color: #5f5f58;
	}
	.header-property-menu{
		background-color: #5f5f58;
	}
	.header-property-btn-menu.header-local-menu.is-open{
		background-color: #5f5f58 !important;
	}
	.nav-global-property-inner.nav-global-property-inner-first,
	.nav-global-property-inner.nav-global-property-inner-second{
		background: #5f5f58;
	}*/
	.nav-global-property-item,
	.nav-global-property-item:nth-child(9n) {
		width: 50%;
	}

	.list-property-control {
		flex-wrap: nowrap;
	}

	.list-property-control-item {
		width: 100%;
	}

	.nav-global-property-link {
		color: #fff;
	}
}

@media screen and (max-width: 768px) {

	/* .header-property-logo{
		padding: 21px 0;
  } */
	.header-property-logo-link .header-property-logo-title img {
		/*height: 20px;*/
		width: 135%;
	}
}

/*@media screen and (max-width:736px) {
	.box-bukken-contact-tel > a {
  	background-size: 18px 16px;
	}
	.box-bukken-contact-list-item {
    background: url(../img/common/ico_arrow_right_03.png) right center no-repeat;
    background-size: 6px 10px;
	}
}*/
/* common.cssとの競合 */
@media screen and (max-width: 768px) {
	.bnr-bukken .pc {
		display: block !important;
	}
}

@media screen and (max-width: 736px) {
	.bnr-bukken .pc {
		display: none !important;
	}

	.bnr-bukken .sp {
		display: block !important;
	}
}

@media screen and (max-width:736px) {
	.wrapper {
		padding-top: 0 !important;
	}
}

/* 物件エントリー者様限定サイトボタン付与var */
/*@media screen and (max-width: 736px){
	.list-bukken-contact li a {
	    height: 56px;
	}
}*/
/* 下部CVボタン中央揃えvar（要望があった場合）*/
@media screen and (max-width: 736px) {
	.list-bukken-contact {
		justify-content: center;
	}
}



/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
rem使用の場合
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.box-bukken-contact-text {
	font-size: 11px;
}

.box-bukken-contact-list-item,
.box-bukken-contact-list-link {
	font-size: 13px;
}

.ttl-property-main {
	font-size: 12px;
}

.list-property-control-text {
	font-size: 12px;
}

.nav-global-property-link {
	font-size: 14px;
}

.list-bukken-contact-text {
	font-size: 13px;
}

.header-property-list01-item>a {
	font-size: 12px;
}

.box-bukken-contact-tel>span,
.box-bukken-contact-tel>a {
	font-size: 22px;
}

.box-bukken-contact-title {
	font-size: 14px;
}

.ttl-heading {
	font-size: 26px;
}

.mod-visited-text {
	font-size: 15px;
}

.box-bukken-contact-assistance-with {
	font-size: 11px;
}

.footer-copyright-text {
	font-size: 11px;
}

@media screen and (max-width: 1200px) {
	.nav-global-property-link {
		font-size: 13px;
	}

	.header-property-menu-button-close a {
		font-size: 12px;
	}

	.list-property-control-link {
		font-size: 14px;
	}

	.list-property-control-link span {
		font-size: 10px;
	}
}

@media screen and (max-width: 736px) {
	.ttl-property-main {
		font-size: 11px;
	}

	.box-bukken-contact-list-item,
	.box-bukken-contact-list-link {
		font-size: 12px;
	}

	.list-bukken-contact-text {
		font-size: 11px;
	}

	.box-bukken-contact-tel>span,
	.box-bukken-contact-tel>a {
		font-size: 17px;
	}

	.box-bukken-contact-title {
		font-size: 12px;
	}

	.ttl-heading {
		font-size: 22px;
	}

	.box-bukken-contact-assistance-with {
		font-size: 11px;
	}

	.footer-copyright-text {
		font-size: 10px;
	}
}




/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
main
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.main {
	position: relative;
	color: #000000;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1;
	font-feature-settings: "palt";
	overflow-x: clip;
}

.main img {
	/*image-rendering: -webkit-optimize-contrast;*/
	width: 100%;
	max-width: 100%;
}

.main svg {
	width: 100%;
	max-width: 100%;
	vertical-align: bottom;
	fill: currentColor;
}

.main em {
	font-style: normal;
	font-weight: inherit;
}



/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
cursor-pointer
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.cursor-pointer {
	visibility: hidden;
	opacity: 0;
	position: fixed;
	z-index: 10;
	transform: scale(0);
	width: 120px;
	height: 60px;
	margin: -30px 0 0 -60px;
	background: url('../img/common/icon_cursor.svg') no-repeat center center/cover;
	transition: transform .3s, opacity .3s, visibility .3s;
	pointer-events: none;
}

.cursor-pointer.is-active {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

.cursor-none,
.cursor-none * {
	cursor: none;
}



/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
caption
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.photo, .figure {
	position: relative;
}

.p-caption, .f-caption {
	position: absolute;
	font-size: 10px;
	line-height: 1.4;
	text-align: right;
	right: 0;
	bottom: 0;
	padding: 3px 6px;
	/*letter-spacing: .01em;*/
	letter-spacing: 0;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
}

.p-caption.wt, .f-caption.wt {
	color: #fff;
	font-weight: 500;
	padding: 6px 10px 6px;
}

.p-caption.pwt, .f-caption.pwt {
	color: #fff;
	transform: translateY(110%);
	font-size: 11px;
}

.p-caption.bt, .f-caption.bt {
	color: var(--black);
	padding: 0 10px 6px;
}

.p-caption.gt, .f-caption.gt {
	color: #999;
	padding: 0 10px 6px;
}

.p-caption.pbt, .f-caption.pbt {
	color: var(--black);
	transform: translateY(110%);
}

.p-caption.w, .f-caption.w {
	color: rgba(255, 255, 255, 1);
	padding: 3px 4px 3px;
	background: rgba(0, 0, 0, .6);
}

.p-caption.b, .f-caption.b {
	/*color: var(--black);*/
	color: var(--black);
	padding: 3px 4px 1px;
	background: rgba(255, 255, 255, .7);
}

.p-caption.ow, .f-caption.ow {
	color: #fff;
	font-size: 11px;
	line-height: 1.2;
	display: block;
	position: static;
	margin-top: 10px;
	padding: 0;
}

.p-caption.ob, .f-caption.ob {
	color: var(--black);
	/*color: #666666;*/
	font-size: 11px;
	line-height: 1.2;
	display: block;
	position: static;
	margin-top: 10px;
	padding: 0;
}

.p-caption.s, .f-caption.s {
	text-shadow: 0 0 3px rgba(0, 0, 0, .2), 2px 0 3px rgba(0, 0, 0, .2), 0 2px 3px rgba(0, 0, 0, .2), 0 0 3px rgba(0, 0, 0, .2), 2px 0 3px rgba(0, 0, 0, .2), 0 2px 3px rgba(0, 0, 0, .2);
}

.p-caption.bt.s, .f-caption.bt.s {
	text-shadow: 0 0 3px rgba(255, 255, 255, .2), 2px 0 3px rgba(255, 255, 255, .2), 0 2px 3px rgba(255, 255, 255, .2), 0 0 3px rgba(255, 255, 255, .2), 2px 0 3px rgba(255, 255, 255, .2), 0 2px 3px rgba(255, 255, 255, .2);
}

.p-caption.l, .f-caption.l {
	right: auto;
	left: 0;
	text-align: left;
}

.p-caption.tb, .f-caption.tb {
	bottom: 30px;
}

.p-caption.op, .f-caption.op {
	opacity: .7;
	color: #d9ddd9;
}

.p-caption small.bl, .f-caption small.bl {
	display: block;
}

.p-caption.thin, .f-caption.thin {
	background: rgba(0, 0, 0, .13);
}

@media screen and (max-width:768px) {
	.p-caption, .f-caption {
		font-size: 8px;
		padding: 3px 5px;
	}

	.p-caption.wt, .f-caption.wt {
		padding: 3px 5px 3px;
	}

	.p-caption.bt, .f-caption.bt {
		padding: 3px 5px 3px;
	}

	.p-caption.gt, .f-caption.gt {
		padding: 3px 5px 3px;
	}

	.p-caption.ow, .f-caption.ow,
	.p-caption.ob, .f-caption.ob {
		font-size: 10px;
		margin-top: 5px;
	}

	.p-caption.tb, .f-caption.tb {
		bottom: 20px;
	}
}



/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
common-linebnr
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.common-linebnr {
	max-width: 1323px;
	margin-block: 70px;
}

.common-linebnr img {
	width: 100%;
	max-width: 100%;
}

@media screen and (max-width: 768px) {
	.common-linebnr {
		max-width: 560px;
		margin-block: 40px;
	}
}




/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
common__note
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.common__note {
	padding-top: 90px;
	padding-bottom: 90px;
}

.common__note__item {
	font-size: 11px;
	line-height: 1.545454545454545;
	letter-spacing: .02em;
	font-weight: 400;
	word-break: break-all;
	text-indent: -1em;
	padding-left: 1em;
}

.common__note__custom {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 0 10px;
	text-indent: 0;
	padding-left: 0;
	margin-top: 1em;
}

.common__note__custom p:nth-of-type(1) {
	font-size: 14px;
	padding: 4px 26px 6px;
	border: solid 1px #333333;
	box-sizing: border-box;
}

.common__note__custom p:nth-of-type(2) {
	flex: 1;
}

@media screen and (max-width: 768px) {
	.common__note {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.common__note__item {
		font-size: 10px;
	}
}

@media screen and (max-width: 480px) {
	.common__note__custom {
		padding: 4px 20px 10px;
		border: solid 1px #333333;
		box-sizing: border-box;
		margin-top: 1.5em;
	}

	.common__note__custom p:nth-of-type(1),
	.common__note__custom p:nth-of-type(2) {
		flex: 1 1 100%;
	}

	.common__note__custom p:nth-of-type(1) {
		text-align: center;
		border: none;
		border-bottom: solid 1px #333333;
		padding: 0 0 3px;
		margin-bottom: 7px;
	}
}





/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
swipeIcon
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.js-scroll--target {
	position: relative;
}

.swipebox {
	display: none;
}

@media screen and (max-width: 768px) {
	.js-scroll--target {
		overflow-x: auto;
	}

	.swipebox {
		display: block;
		position: absolute;
		z-index: 1;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: url(../img/common/img_swipe.svg) no-repeat center/208px auto, rgba(0, 0, 0, .7);
		/*background: url(../img/common/img_swipe2.svg) no-repeat center/280px auto,rgba(0, 0, 0, .5);*/
		pointer-events: none;
		/*animation: swipeIcon 1.5s ease-in-out infinite;*/
	}

	.is-swipe .swipebox {
		display: none;
	}
}

@keyframes swipeIcon {
	0% {
		transform: translate(-5%, 0);
	}

	50% {
		transform: translate(5%, 0);
	}

	100% {
		transform: translate(-5%, 0);
	}
}

.modal-swipe-btn {
	display: none;
}

@media screen and (max-width: 768px) {
	.modal-swipe-btn {
		display: block;
		position: absolute;
		right: 0;
		top: 0;
		width: 35px;
		height: 35px;
		cursor: pointer;
		pointer-events: auto;
		background: url(../img/common/btn_modal_swipe.svg) no-repeat center center/cover;
		z-index: 1;
	}
}



/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
tab
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.tab {
	position: relative;
	border: none;
	outline: none;
	font: inherit;
	color: inherit;
	background: none;
	cursor: pointer;
}

.tab:focus-visible {
	outline: auto;
}

.tabpanel {
	display: none;
	position: relative;
}

.tabpanel.active {
	display: block;
	animation: tabFadeIn .5s;
}

@keyframes tabFadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}



/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
swiper
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
/* スライド */
.swiper-button-next, .swiper-button-prev {
	width: 48px;
	--swiper-navigation-size: 48px;
	background: url('data:image/svg+xml;utf8,<svg width="16" height="14" viewBox="0 0 16 14" xmlns="http://www.w3.org/2000/svg"><path d="M0 7L16 14L11.7334 7L16 0L0 7Z" fill="%23151515"/></svg>') no-repeat center/calc(16 / 48 * 100%) auto rgba(var(--color-white), .8);
	transition: background-color .3s ease-out;
	position: relative;
	border: none;
	outline: none;
	font: inherit;
	color: inherit;
	background: none;
	cursor: pointer;
	width: 100%;
	padding: 0;
}

.swiper-button-next:focus-visible,
.swiper-button-prev:focus-visible {
	outline: auto;
}

.swiper-button-prev {
	left: 0;
}

.swiper-button-next {
	right: 0;
	transform: rotate(180deg);
}

.swiper-button-next:after,
.swiper-button-prev:after {
	content: none;
}

@media (any-hover: hover) {
	.swiper-button-next:hover, .swiper-button-prev:hover {
		background-color: rgba(var(--color-white), 1);
	}
}




/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
modal
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.modal {
	position: fixed;
	z-index: 100001;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
}

.modal.active {
	display: flex;
	justify-content: center;
	align-items: center;
}

.modal[aria-hidden="true"] {
	animation: modal-close .5s;
}

.modal[aria-hidden="false"] {
	animation: modal-open .5s;
}

@keyframes modal-open {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes modal-close {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@keyframes modal-fadeIn {
	0% {
		opacity: 0;
		transform: translateY(5%);
	}

	100% {
		opacity: 1;
		transform: translateY(0%);
	}
}

@keyframes modal-fadeOut {
	0% {
		opacity: 1;
		transform: translateY(0%);
	}

	100% {
		opacity: 0;
		transform: translateY(5%);
	}
}

.modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .7);
	z-index: 1;
}

.modal-container {
	position: relative;
	max-width: 1500px;
	width: 90%;
	/* modal-closeのサイズで調整 */
	max-height: calc(100% - 60px);
	margin: 0 auto;
	/*padding: 60px 0;*/
	padding: 0;
	box-sizing: border-box;
	background: transparent;
	overflow: auto;
	z-index: 2;
}

.modal[aria-hidden="true"] .modal-container {
	animation: modal-fadeOut .5s;
}

.modal[aria-hidden="false"] .modal-container {
	animation: modal-fadeIn .5s;
}

.modal-content {
	position: relative;
}

.modal-close {
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	margin-top: calc(50 / 1500 * 100%);
	margin-right: calc(50 / 1500 * 100%);
	width: calc(56 / 1500 * 100%);
	height: calc(56 / 1500 * 100%);
	color: transparent;
	/*border: 10px solid transparent;*/
	background: rgba(0, 0, 0, 0);
	cursor: pointer;
	z-index: 3;
}

.modal-close::before,
.modal-close::after {
	content: '';
	display: block;
	width: 100%;
	height: 5px;
	background: #fff;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.modal-close::after {
	transform: rotate(-45deg);
}

.modal-open {
	border: none;
	outline: none;
	background: none;
	cursor: pointer;
}

.modal-open:focus-visible {
	outline: auto;
}

@media screen and (max-width: 1800px) {
	.modal-container {
		/* modal-closeのサイズで適宜調整 */
		max-height: calc(100% - 220px);
	}
}

@media screen and (max-width: 768px) {
	.modal-container {
		width: calc(340 / 380 * 100%);
		/* modal-closeのサイズで調整 */
		max-height: calc(100% - 120px);
		/*padding: 30px 0;*/
		padding: 0;
	}

	.modal-close {
		margin-top: min(calc(20 / 380 * 100%), 20px);
		margin-right: min(calc(20 / 380 * 100%), 20px);
		width: min(calc(36 / 380 * 100%), 36px);
		height: min(calc(36 / 380 * 100%), 36px);
	}

	.modal-close::before,
	.modal-close::after {
		height: 3px;
	}
}




/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
animation photo
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
@keyframes maskPhoto {
	from {
		clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
	}

	to {
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	}
}

.js-maskPhoto {
	visibility: hidden;
}

.js-maskPhoto.active {
	animation-name: maskPhoto;
	animation-fill-mode: both;
	animation-duration: 2.0s;
	animation-timing-function: cubic-bezier(.115, .405, .24, 1);
	visibility: visible !important;
}

.js-effectphoto {
	position: relative;
	opacity: 0;
	transition: 1s opacity cubic-bezier(.40, .575, .565, 1);
}

.js-effectphoto.active {
	opacity: 1;
	transition: 1.9s opacity cubic-bezier(.40, .575, .565, 1);
}

.js-effectphoto::after,
.js-effectphoto::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #fff;
	opacity: 1;
	transition: 1.7s opacity cubic-bezier(.39, .575, .565, 1), 1.8s width cubic-bezier(.215, .61, .355, 1);
}

.js-effectphoto:before {
	background-color: rgba(255, 255, 255, .1);
	transition-delay: .3s;
}

.js-effectphoto.active:after,
.js-effectphoto.active:before {
	width: 0;
	opacity: 0;
}

.js-parallax-wrap {
	width: 100%;
	overflow: clip;
	display: flex;
	align-items: center;
	justify-content: center;
}

.js-parallax,
.js-parallax-reverse {
	/*transform: scale(1.1);*/
	transform: scale(1.2);
}

.js-animeImage {
	mask-image: linear-gradient(90deg, #fff, #fff, transparent);
	mask-repeat: no-repeat;
	mask-size: 200% 100%;
	mask-position: top 0% right -100%;
	/*transition: mask-position .75s cubic-bezier(.40,.575,.565,1);*/
}

@media screen and (max-width: 768px) {

	.js-parallax,
	.js-parallax-reverse {
		transform: scale(1.2);
	}
}



/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
animation text
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.js-translateText {
	overflow: clip;
}

.js-translateText span {
	display: inline-block;
	transform: translateY(70%);
	opacity: 0;
}





/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Universal animation
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.fi-u, .fi-d, .fi, .fi-r, .fi-l, .fi-b {
	visibility: hidden;
}

.fi-u-stagger>* {
	opacity: 0;
	/*filter: blur(20px);*/
	translate: 0 20px;
}

/* fade in */
@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.fi.faded {
	animation-name: fadeIn;
	animation-fill-mode: both;
	animation-duration: 1.5s;
	visibility: visible !important;
	opacity: 0;
}

/* fade in up */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 20px, 0);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.fi-u.faded {
	animation-name: fadeInUp;
	animation-fill-mode: both;
	animation-duration: 1.5s;
	visibility: visible !important;
	opacity: 0;
}

/* fade in down */
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translate3d(0, -20px, 0);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.fi-d.faded {
	animation-name: fadeInDown;
	animation-fill-mode: both;
	animation-duration: 1.5s;
	visibility: visible !important;
	opacity: 0;
}

/* fade in right */
@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translate(30px, 0);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.fi-r.faded {
	animation-name: fadeInRight;
	animation-fill-mode: both;
	animation-duration: 1.5s;
	visibility: visible !important;
	opacity: 0;
}

/* fade in left */
@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translate(-30px, 0);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.fi-l.faded {
	animation-name: fadeInLeft;
	animation-fill-mode: both;
	animation-duration: 1.5s;
	visibility: visible !important;
	opacity: 0;
}

/* fade blur */
@keyframes fadeBlur {
	from {
		opacity: 0;
		transform: translate3d(0, 20px, 0);
		filter: blur(5px);
	}

	to {
		opacity: 1;
		transform: none;
		filter: blur(0px);
	}
}

.fi-b.faded {
	animation-name: fadeBlur;
	animation-fill-mode: both;
	animation-duration: 1.5s;
	visibility: visible !important;
	opacity: 0;
}






/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Unique style
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/



/*  common-lower
--------------------------------------------------*/
.common-lower {
	background: #eef2f3;
}

.common-lower__container {
	position: relative;
}

.common-lower__heading {
	width: 100%;
	height: 14.0rem;
	font-size: 3.6rem;
	text-align: center;
	padding-top: .1em;
	background: url('../img/common/bg_common_lower_heading.webp') no-repeat center center/cover;
}

.common-lower__list {
	width: 100%;
}

.common-lower__list__item {
	position: relative;
	width: calc(100% / 3);
	height: 36.0rem;
	background: var(--black);
}

.common-lower__list__item a {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: clip;
}

.common-lower__list__item--soon a {
	pointer-events: none;
	cursor: default;
}

.common-lower__list__item__photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

/*.common-lower__list__item--soon .common-lower__list__item__photo::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #808080;
	mix-blend-mode: multiply;
	z-index: 1;
}*/
.common-lower__list__item__photo img {
	object-fit: cover;
	object-position: center center;
	width: 101%;
	height: 101%;
}

.common-lower__list__item__detail {
	position: relative;
	width: 100%;
	text-align: center;
	z-index: 1;
}

.common-lower__list__item--soon .common-lower__list__item__detail {
	opacity: .4;
}

.common-lower__list__item__detail__enHeading {
	font-size: 4.8rem;
	color: var(--white);
	margin-bottom: 3.0rem;
}

.common-lower__list__item__detail__more {
	position: relative;
	width: fit-content;
	margin-inline: auto;
	font-size: 2.6rem;
	color: var(--white);
	padding-right: 2.0rem;
}

.common-lower__list__item--soon .common-lower__list__item__detail__more {
	padding-right: 0;
}

.common-lower__list__item__detail__more::after {
	content: '';
	position: absolute;
	right: 0;
	top: 35%;
	transform: rotate(45deg);
	width: 1.0rem;
	height: 1.0rem;
	border-top: 1px solid var(--white);
	border-right: 1px solid var(--white);
}

.common-lower__list__item--soon .common-lower__list__item__detail__more::after {
	display: none;
}

@media screen and (max-width:768px) {
	.common-lower__heading {
		height: 11.0rem;
		font-size: 2.3rem;
		background: url('../img/common/bg_common_lower_heading-sp.webp') no-repeat center left/cover;
	}

	.common-lower__list__item {
		width: calc(100% / 2);
		height: 14.2rem;
	}

	.common-lower__list__item__detail__enHeading {
		font-size: 2.3rem;
		margin-bottom: 1.8rem;
	}

	.common-lower__list__item__detail__more {
		font-size: 1.5rem;
		padding-right: 1.0rem;
	}

	.common-lower__list__item__detail__more::after {
		top: 30%;
		width: .6rem;
		height: .6rem;
	}
}

@media (any-hover: hover) {
	.common-lower__list__item__photo img {
		transition: transform .3s linear;
	}

	.common-lower__list__item a:hover .common-lower__list__item__photo img {
		transform: scale(1.1);
	}

	.common-lower__list__item__detail__more::after {
		transition: right .3s linear;
	}

	.common-lower__list__item a:hover .common-lower__list__item__detail__more::after {
		right: -5%;
	}
}



/*  背景
--------------------------------------------------*/
/*ウェーブの背景（暗め）*/
.commonBg--waveDark {
	background: url('../img/common/bg_wave_dark.webp') no-repeat center center/cover;
}

/*ウェーブの背景（明るめ）*/
.commonBg--waveLight {
	background: url('../img/common/bg_wave_light.webp') no-repeat center center/cover;
}

/*ウェーブの背景（全面に模様）*/
.commonBg--waveFull {
	background: url('../img/common/bg_wave_full.webp') no-repeat center center/cover;
}

/*ウェーブの背景（全面に模様暗め）*/
.commonBg--waveFullDark {
	background: url('../img/common/bg_wave_full_dark.webp') no-repeat center center/cover;
}

/*格子状の背景*/
.commonBg--grid {
	background: url('../img/common/bg_grid.svg') repeat left top/5.1rem;
}

/*格子状の背景(透過)*/
.commonBg--gridLight {
	background: url('../img/common/bg_grid_light.svg') repeat left top/5.1rem;
}

/*草の背景*/
.commonBg--leaf {
	background: url('../img/common/bg_leaf.webp') no-repeat left top/cover;
}

@media screen and (max-width:768px) {

	/*ウェーブの背景（暗め）*/
	.commonBg--waveDark {
		background: url('../img/common/bg_wave_dark-sp.webp') no-repeat center center/cover;
	}

	/*ウェーブの背景（明るめ）*/
	.commonBg--waveLight {
		background: url('../img/common/bg_wave_light-sp.webp') no-repeat center center/cover;
	}

	/*ウェーブの背景（全面に模様）*/
	.commonBg--waveFull {
		background: url('../img/common/bg_wave_full-sp.webp') no-repeat center center/cover;
	}

	/*ウェーブの背景（全面に模様暗め）*/
	.commonBg--waveFullDark {
		background: url('../img/common/bg_wave_full_dark-sp.webp') no-repeat center center/cover;
	}

	/*草の背景*/
	.commonBg--leaf {
		background: url('../img/common/bg_leaf-sp.webp') no-repeat left top/cover;
	}
}



/*  ボタン
--------------------------------------------------*/
.common-btn {
	position: relative;
	width: 100%;
	height: 8.6rem;
	font-size: 2.8rem;
	line-height: 1;
	letter-spacing: .1em;
	color: var(--white);
	text-align: center;
	padding-bottom: .1em;
	overflow: clip;
	z-index: 1;
}

.common-btn--request::before {
	content: '';
	position: absolute;
	left: -100%;
	top: 0;
	width: 200%;
	height: 100%;
	background: linear-gradient(90deg, rgba(77, 77, 77, 1) 0%, rgba(128, 128, 128, 1) 50%, rgba(77, 77, 77, 1) 100%);
	z-index: -1;
}

.common-btn--small {
	height: 5.6rem;
	font-size: 2.2rem;
}

.common-btn::after {
	content: '';
	position: absolute;
	right: 2.5rem;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	translate: 0 0;
	width: 1.4rem;
	height: 1.4rem;
	border-top: 1px solid var(--white);
	border-right: 1px solid var(--white);
}

.common-btn--back::after {
	right: auto;
	left: 2.5rem;
	top: 50%;
	transform: translateY(-50%) rotate(-135deg);
}

.common-btn--small::after {
	right: 2.0rem;
	width: 1.0rem;
	height: 1.0rem;
}

@media (any-hover: hover) {
	.common-btn--request::before {
		transition: left .4s linear;
	}

	.common-btn--request:hover::before {
		left: 0;
	}

	.common-btn::after {
		transition: translate .4s linear;
	}

	.common-btn:hover::after {
		translate: 50% 0;
	}

	.common-btn--back:hover::after {
		translate: -50% 0;
	}
}

@media screen and (max-width:768px) {
	.common-btn {
		height: 6.0rem;
		font-size: 2.0rem;
	}

	.common-btn::after {
		right: 1.7rem;
		width: .9rem;
		height: .9rem;
	}

	.common-btn--small {
		height: 4.0rem;
		font-size: 1.6rem;
	}

	.common-btn--small::after {
		right: 1.0rem;
		width: .7rem;
		height: .7rem;
	}
}




/*  下層kv
--------------------------------------------------*/
.l-kv {
	position: relative;
	width: 100%;
	height: 82.0rem;
	opacity: 0;
	transition: opacity 1s cubic-bezier(.40, .575, .565, 1);
	border-bottom: solid 1px var(--black);
	overflow: clip;
}

.subLoaded .l-kv {
	opacity: 1;
}

.kv-photo {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.kv-photo img {
	object-fit: cover;
	object-position: center center;
	width: 100%;
	height: 100%;
}

.kv-detail {
	position: absolute;
	width: fit-content;
	padding-left: 3.0rem;
	padding-bottom: 2.0rem;
	left: 6.5rem;
	/*bottom: 7.5rem;*/
	bottom: 5.5rem;
	mask-image: linear-gradient(90deg, #fff, #fff, transparent);
	mask-repeat: no-repeat;
	mask-size: 200% 100%;
	mask-position: top 0% right -100%;
	transition: mask-position 1s linear .3s;
	z-index: 1;
}

.subLoaded .kv-detail {
	mask-position: right 100% top 0%;
}

.kv-detail__catch {
	/*font-size: 4.0rem;*/
	font-size: 11.0rem;
	line-height: 1.13636364 !important;
	letter-spacing: .1em !important;
	color: var(--white);
	/*margin-bottom: 1.5rem;*/
}

.kv-detail__catch--jp {
	font-size: 5.3rem;
	margin-bottom: 1.5rem;
}

.kv-detail__catch small {
	font-size: calc(17 / 30 * 1.0em);
	letter-spacing: .1em;
	padding-left: .4em;
}

.kv-detail__ttl {
	font-size: 5.6rem;
	line-height: 1.45;
	letter-spacing: .1em;
	color: var(--white);
}

@media screen and (max-width:768px) {
	.l-kv {
		/*height: 66.5rem;*/
		height: calc(100lvh - 64px);
	}

	.kv-detail {
		padding-left: 1.5rem;
		padding-bottom: 1.5rem;
		left: 1.0rem;
		bottom: 3.0rem;
	}

	.kv-detail__catch {
		/*font-size: 2.2rem;*/
		font-size: 6.2rem;
		/*margin-bottom: 1.0rem;*/
	}

	.kv-detail__catch--jp {
		font-size: 3.0rem;
		margin-bottom: 1.0rem;
	}

	.kv-detail__ttl {
		font-size: 3.0rem;
	}
}



/*  下層イントロダクション
--------------------------------------------------*/
.l-common-intro {
	position: relative;
	padding-block: 18.0rem 15.5rem;
	border-bottom: solid 1px var(--black);
}

.common-intro__head {
	margin-bottom: 8.5rem;
}

.common-intro__head__heading {
	/*font-size: 3.6rem;*/
	font-size: 4.0rem;
	line-height: 1.66666667;
	letter-spacing: .05em;
	text-align: center;
}

.common-intro__head__heading em {
	font-size: 1.8em;
	line-height: 1;
	vertical-align: -.02em;
	display: inline-block;
	background: var(--gradation-color);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-top: calc((1cap - 1lh) / 2);
}

.common-intro__head__desc {
	/*font-size: 1.6rem;*/
	font-size: 2.1rem;
	line-height: 2;
	letter-spacing: .1em;
	text-align: center;
}

.common-intro__head__heading+.common-intro__head__desc {
	margin-top: 4.5rem;
}

.common-intro__contents {
	width: 100%;
}

@media screen and (max-width:768px) {
	.l-common-intro {
		padding-block: 7.0rem 5.0rem;
	}

	.common-intro__head {
		margin-bottom: 4.0rem;
	}

	.common-intro__head__heading {
		font-size: 2.3rem;
	}

	.common-intro__head__desc {
		font-size: 1.4rem;
		line-height: 2.14285714;
	}

	.common-intro__head__heading+.common-intro__head__desc {
		margin-top: 2.6rem;
	}
}




/*  swiper - SP only
--------------------------------------------------*/
@media screen and (min-width: 769px) {
	:root .common-slide__control {
		display: none;
	}
}

@media screen and (max-width:768px) {
	:root .common-slide__control {
		position: relative;
		margin-top: 2.5rem;
		z-index: 1;
	}

	:root .common-slide__control .swiper-button-prev,
	:root .common-slide__control .swiper-button-next {
		transition: none;
		cursor: pointer;
		background: none;
	}

	:root .common-slide__control .swiper-button-prev {
		position: relative;
		left: auto;
		top: auto;
		transform: translate(0, 0);
		width: 12px;
		height: auto;
		margin: 0;
		background: none;
		pointer-events: auto;
	}

	:root .common-slide__control .swiper-button-next {
		position: relative;
		right: auto;
		top: auto;
		transform: translate(0, 0);
		width: 12px;
		height: auto;
		margin: 0;
		background: none;
		pointer-events: auto;
	}

	:root .common-slide__control .swiper-button-prev:after,
	:root .common-slide__control .swiper-button-next:after {
		display: none;
	}

	:root .common-slide__control .swiper-button-disabled {
		opacity: .6;
	}

	:root .common-slide__control .swiper-pagination {
		position: relative;
		left: auto;
		right: auto;
		bottom: auto;
		width: fit-content;
		border-radius: 0;
		line-height: 1;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 0;
		gap: 5px;
	}

	:root .common-slide__control .swiper-pagination-bullet {
		width: 7px;
		height: 7px;
		margin: 0;
		top: auto;
		position: relative;
		display: block;
		border-radius: 50%;
		background: #b6c8d2;
		pointer-events: auto;
		opacity: 1;
	}

	:root .common-slide__control .swiper-pagination-bullet.swiper-pagination-bullet-active {
		background: #609b9b;
	}
}



/*  masked-photo（波紋アニメーション用）
--------------------------------------------------*/
/*
<a href="masked-photo__link">
  <figure class="masked-photo">
    <img src="img_mask.jpg" alt="">
    <img class="masked-img" src="img_mask.jpg" alt="">
    <figcaption class="f-caption wt"></figcaption>
  </figure>
</a>
*/
.masked-photo {
	overflow: clip;
}

.masked-photo img {
	object-fit: cover;
	object-position: center center;
	width: 100%;
	height: 100%;
}

.masked-img {
	position: absolute;
	top: 0;
	left: 0;
	clip-path: circle(0 at center center);
	transform: scale(.75);
	height: 100%;
	width: 100%;
	overflow: clip;
}

@media (any-hover: hover) {
	.masked-photo__link:hover .masked-img {
		clip-path: circle(65% at center center);
		transition: clip-path 1s ease-in-out, transform 1s ease-in-out;
		transform: scale(1);
	}
}






/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
印刷用
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
@media print {
	body, html {
		zoom: .8 !important;
	}

	.header-property,
	.box-bukken-contact,
	.box-bukken,
	.area-user-footer-wrap,
	.footer-property,
	.ttl-property-main,
	.search-wrap {
		display: none;
	}

	.contents-property {
		padding-top: 0 !important;
	}

	.common-lower {
		display: none;
	}
}