@charset "utf-8";

/* -----------------------------------------------------------
TOPページ
-------------------------------------------------------------- */
.scroll-hint-icon {
	z-index: 2;
}


/* -------------------------------------------------------------
    mv-area
-------------------------------------------------------------- */
.mv-area {
	width: 100%;
	/* height: 800px;
	max-height: 800px; */
	position: relative;
}

.mv-wrap {
	display: flex;
    align-items: center;
	width: 100%;
	height: 100%;
}

.mv-wrap-left {
    flex: 1;
	width: 100%;
	height: 100%;
	position: relative;
}

.mv-area .mv-img-wrap {
	width: 100%;
	height: 100%;
}

.mv-wrap-left img {
	width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.mv-area .mv-txt-wrap {
	left: 7%;
	top: 30%;
	width: 70%;
	position: absolute;
	z-index: 1;
}

.mv-area .mv-catch-en {
	font-size: 1.4rem;
	font-family: var(--en);
	line-height: 1.3;
	letter-spacing: .4rem;
	/* text-shadow: 0 0 8px rgba(0,0,0,.5); */
}

.mv-area .mv-catch {
	font-size: 6.0rem;
	font-family: var(--jp);
	line-height: 1.5;
	font-weight: 500;
	margin: 30px 0 20px;
	/* text-shadow: 0 0 5px rgba(0,0,0,.5); */
}

.mv-area .mv-txt {
	font-size: 1.8rem;
	line-height: 2.2;
	/* text-shadow: 0 0 5px rgba(0,0,0,.5); */
}

.mv-area .mv-txt-wrap {
	animation: mv-fadeIn 2s .5s cubic-bezier(.2, 1, .2, 1) both;
}

/* 画像が縦に流れるカラム */
.mv-wrap-right {
    position: relative;
    width: 550px;
    height: 100%;
    overflow: hidden;
}

.mv-wrap-track {
    display: flex;
    flex-direction: column;
    animation: scrollUp 14s linear infinite;
}

.mv-wrap-track img {
    width: 550px;
    height: 320px;
    object-fit: cover;
    display: block;
}

  /* 画像セットを複製しているので -50% でシームレスにループ */
@keyframes scrollUp {
    from { transform: translateY(0); }
    to   { transform: translateY(-50%); }
}

@media screen and (max-width: 768px) {
	.mv-area {
		height: 100vh;
		overflow: hidden;
	}

	.mv-wrap {
		flex-direction: column;
	}

	.mv-wrap-left {
	}

	.mv-area .mv-img-wrap {
		height: 400px;
	}

	.mv-wrap-left img {
	}

	.mv-area .mv-txt-wrap {
		left: 20px;
		top: 170px;
		width: 80%;
	}

	.mv-area .mv-catch-en {
		font-size: 1.2rem;
	}

	.mv-area .mv-catch {
		font-size: 3.0rem;
		margin: 8px 0 10px;
	}

	.mv-area .mv-txt {
		font-size: 1.3rem;
	}

	.mv-area .mv-txt-wrap {
		animation: mv-fadeIn 2s .5s cubic-bezier(.2, 1, .2, 1) both;
	}

	/* 画像が横に流れるカラム */
	.mv-wrap-right {
		width: 100%;
		height: 150px;
	}

	.mv-wrap-track {
		flex-direction: row;
		height: 150px;
		animation: scrollRight 14s linear infinite;
	}

	.mv-wrap-track img {
		width: 100%;
		height: 100%;
	}

	/* 画像セットを複製しているので -50% でシームレスにループ */
	@keyframes scrollRight {
		from { transform: translateX(0); }
		to   { transform: translateX(-200%); }
	}
}

/* -------------------------------------------------------------
    news-area   標準仕様
-------------------------------------------------------------- */
.news-wrap {
	/* position: absolute;
	bottom: 0; */
	width: 100%;
    padding: 20px 0 0;
}

.ninews-area {
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.5);
}

.ninews-area .ninews-inner {
	gap: 70px;
}

.ninews-area .ninews-head {
	width: 100px;
}

.ninews-area .ninews-head .en {
	font-size: 2.0rem;
    margin: 0;
}

.ninews-area .ninews-head .catch {
	font-size: 1.6rem;
	margin: 0 0 10px;
}

.ninews-area .ninews-head .ttl-s .jp {
	font-size: 2.4rem;
	letter-spacing: 0;
}

.ninews-area .ninews-head-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--cmnblack);
	font-size: 1.2rem;
	/* margin: 0; */
}

.ninews-area .ninews-head-link:hover {
	color: var(--main);
}

/* .ninews-area .ninews-head-link .arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: #333;
	overflow: hidden;
	position: relative;
}

.ninews-area .ninews-head-link .arrow::before {
	content: '';
	display: block;
	width: 14px;
	height: 14px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cline stroke='black' stroke-width='1.5' stroke-linecap='round' x1='1' y1='7' x2='11' y2='7'/%3E%3Cpolyline fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' points='7%2C3 11%2C7 7%2C11'/%3E%3C/svg%3E") no-repeat center;
	background-size: contain;
} */

.ninews-area .ninews-head-link:hover .arrow::before {
	animation: arrowSlide 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes arrowSlide {
	0%   { translate: 0;       opacity: 1; }
	40%  { translate: 20px 0;  opacity: 0; }
	41%  { translate: -20px 0; opacity: 0; }
	100% { translate: 0;       opacity: 1; }
}

.ninews-area .ninews-list {
	max-width: 800px;
}

.ninews-area .ninews-list .ninews-item:nth-child(n+3) {
	display: none;
}

.ninews-area .ninews-date {
	color: var(--cmnblack);
	font: 500 1.5rem /1 var(--en);
	letter-spacing: .05em;
}

.ninews-cate-wrap .ninews-cate {
	/*border: none;
	color: var(--cmnblack);
	padding: 0;*/
	min-width: 100px;
	text-align: center;
	justify-content: center;
}

.ninews-area .ninews-cate-wrap .ninews-cate:nth-child(3n) {
	display: none;
}

.ninews-area .ninews-title {
	color: var(--cmnblack);
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0em;
	line-height: 1.5;
}

.ninews-area .more-btn {
	position: absolute;
	right: 0;
}

@media screen and (max-width: 768px) {
	.news-wrap {
		/* position: static; */
        padding: 0;
	}

	.ninews-area {
		padding: 30px 0;
	}

	.ninews-area .ninews-inner{
		padding: 0 20px;
		position: relative;
	}

	.ninews-area .ninews-head {
		margin: 0 0 10px;
		width: 100%;
	}

	.ninews-area .ninews-head .en {
	}

	.ninews-area .ninews-head .catch{
		margin: 0;
	}
	
	.ninews-area .ninews-head .ttl-s .jp{
		font-size: 2.2rem;
	}

	.ninews-area .ninews-head-link {
		font-size: 1.1rem;
		margin: 0;
		gap: 5px;
		padding: 0 20px 0 0;
		position: absolute;
		top: 0;
		right: 0;
	}

	.ninews-area .ninews-list {
		width: 100%;
	}

	.ninews-area .ninews-date {
		font-size: 1.6rem;
	}

	.ninews-area .ninews-title {
		font-size: 1.4rem;
	}

	.ninews-area .more-btn {
		position: static;
		right: 0;
	}
}

/* -------------------------------------------------------------
    news-area   ninews-no-thumb サムネイルなし
-------------------------------------------------------------- */
/* #top .ninews-no-thumb .ninews-title::before {
	content: "\f105";
	color: var(--link);
	font: 900 1.4rem/1 var(--webicon);
	right: 7px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
} */

#top .ninews-no-thumb .ninews-item a {
	/* border-bottom: 1px solid var(--border2); */
	gap: 20px;
	padding: 18px 0;
}

#top .ninews-no-thumb .ninews-item a:hover {
	opacity: .8;
}

#top .ninews-no-thumb .ninews-item a::before {
	background: var(--link);
	bottom: 15px;
	content: "";
	width: 0;
	height: 1px;
	position: absolute;
	left: 0;
	transition: .5s;
}

#top .ninews-no-thumb .ninews-item a:hover::before {
	width: 100%;
	transition: .5s;
}

#top .ninews-no-thumb .ninews-title {
	padding: 0 35px 0 0;
}

#top .ninews-no-thumb .ninews-item a:hover .ninews-title::before {
	right: 0;
}

#top .ninews-no-thumb .ninews-date {
	width: 100px;
}

#top .ninews-no-thumb .ninews-elements {
	gap: 20px;
}

@media screen and (max-width: 768px) {
	#top .ninews-no-thumb .ninews-item:not(:last-child) {
		margin-bottom: 18px;
	}

	#top .ninews-no-thumb .ninews-item a {
		padding: 0;
	}

	#top .ninews-no-thumb .ninews-elements {
		gap: 10px;
	}

	#top .ninews-no-thumb .ninews-title {
		margin: 0;
		padding: 0;
	}

	#top .ninews-area .ninews-title::before {
		font-size: 1.3rem;
		top: 53%;
	}
}

/* -------------------------------------------------------------
    news-area   ninews-have-thumb サムネイルあり
-------------------------------------------------------------- */
#top .ninews-have-thumb.ninews-list {
	gap: 20px;
}

#top .ninews-have-thumb .ninews-item {
	width: calc((100% - 20px) / 2);
}

#top .ninews-have-thumb .ninews-item a {
	gap: 20px;
}

#top .ninews-thumb__img {
	width: 240px;
	height: 180px;
}

#top .ninews-thumb__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .5s;
}

#top .ninews-have-thumb a:hover img {
	transform: scale(1.15);
}

#top .ninews-thumb__elements {
	gap: 10px;
	width: calc(100% - 240px - 20px);
}

#top .ninews-have-thumb .ninews-title {
	-webkit-line-clamp: 2;
	max-height: 50px;
}

#top .ninews-have-thumb .ninews-elements {
	gap: 12px;
}

@media screen and (max-width: 768px) {
	#top .ninews-have-thumb .ninews-item {
		width: 100%;
	}

	#top .ninews-have-thumb .ninews-item a {
		gap: 15px;
	}

	#top .ninews-thumb__img {
		width: 45%;
		height: auto;
		aspect-ratio: 3/2;
	}

	#top .ninews-thumb__elements {
		gap: 5px;
		width: calc(45% - 15px);
	}

	#top .ninews-have-thumb .ninews-elements {
		gap: 8px 10px;
	}
}

/* -------------------------------------------------------------
    studio-area
-------------------------------------------------------------- */
.studio-area {
	margin: 25px 0 0;
}

/* ---------- Feature Set (the reusable scroll component) ---------- */
.studio-area .feature-set {
	position: relative;
}

.studio-area .set-heading {
	position: absolute;
	top: 64px;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 5;
	pointer-events: none;
}

.studio-area .set-heading .en {
	font-size: 12px;
	letter-spacing: .4em;
	color: var(--gold);
}

.studio-area .set-heading .jp {
	font-size: 15px;
	letter-spacing: .25em;
	margin-top: 6px;
	color: var(--charcoal);
}

.studio-area .sticky-wrap {
	/*position: sticky;
	top: 0;
	height: 100vh;
	*/
	display: flex;
    background: url(../img/studio-bg.png) repeat;
    overflow: hidden;
}

/* image stage */
.studio-area .image-stage {
	position: relative;
	width: calc(100% - 880px);
}

.studio-area .img-item {
	/*
	background-size: cover;
	background-position: center;
	box-shadow: 0 -18px 40px -12px rgba(0,0,0,.35);
	transform: translateY(100%);
	transition: transform .25s cubic-bezier(.22,.61,.36,1);
	will-change: transform;*/
    position: absolute;
	inset: 0;
    width: 100%;
    height: 100%;
    max-width: 1000px;
}

/*.studio-area .img-item:first-child {
	transform: translateY(0);
}*/

.studio-area .img-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* banquet: image sits on the right instead of the left */
.studio-area .banquet .sticky-wrap {
	flex-direction: row-reverse;
}

/* text panel — single fixed block, no per-image switching */
.studio-area .text-panel {
	position: relative;
	width: 880px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 100px 80px 80px 120px;
}

.studio-area .text-content .en {
	font-size: 5rem;
}
.studio-area .text-content .jp {
	font-size: 1.7rem;
}
.studio-area .text-content .catch {
	font-size: 2.8rem;
	margin: 40px 0 0;
    color: var(--cv-color);
}
.studio-area .text-content .basic-txt {
	margin: 20px 0 0;
}

.studio-area .feature-content {
	margin: 20px 0 0;
}
.studio-area .feature-content .feature-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.studio-area .feature-content .feature-list .feature-item {
	background: var(--white);
	gap: 20px;
	justify-content: flex-start;
	width: 100%;
	padding: 10px 0;
}
.studio-area .feature-content .feature-list .feature-item .img-wrap {
	width: 250px;
	height: 180px;
	flex-shrink: 0;
}

.studio-area .feature-content .feature-list .feature-item .img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.studio-area .feature-content .feature-list .feature-item .spec-list {
	font-size: 1.6rem;
	/* font-weight: bold; */
	line-height: 1.8;
	padding: 20px 10px;
}


.studio-area .spacer{
    height: 100px;
}


/*info-box*/
.floor-area {
    padding: 0 0 10px;
}

.floor-area .info-box {
    display: flex;
    margin: 40px 0 0;
    gap: 30px;
}
/*info-box：l-box*/
.floor-area .l-box {
    width: 165px;
}
.floor-area .l-box .name {
    font-family: var(--en_serif);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1;
}
.floor-area .l-box .name span {
    font-size: 5rem;
    font-weight: 300;
}
.floor-area .l-box .price {
    font-size: 1.8rem;
    line-height: 1.5;
    margin: 10px 0 0;
}
.floor-area .l-box .price span {
    font-size: 1.2rem;
    display: block;
    margin: 2px 0 0;
}

/*info-box：r-box*/
.floor-area .r-box {
}
.floor-area .r-box .disc-list li {
    font-size: 1.4rem;
}
.floor-area .r-box .disc-list li+li {
    margin-top: 12px;
}

/*info-box：r-box：floor-plan*/
.floor-area .r-box .floor-plan{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.floor-area .r-box .floor-plan .zu{
    width: 200px;
    object-fit: contain;
    height: auto;
}
.floor-area .r-box .floor-plan .txt-box{
}
.floor-area .r-box .size {
    font-size: 1.6rem;
    margin: 0 0 10px;
}
.floor-area .r-box .pdf-link {
    font-size: 1.6rem;
    margin: 30px 0 0;
}
.floor-area .r-box .pdf-link a {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px var(--gray) dashed;
    width: fit-content;
}
.floor-area .r-box .pdf-link a::before {
	content: "";
	display: block;
	background: url("../img/pdf-icon.svg") no-repeat center / contain;
	aspect-ratio: 150 / 150;
	width: 22px;
    height: auto;
}
.floor-area .r-box .pdf-link a:hover {
    border-bottom: 1px var(--main-color) dashed;
}


@media screen and (max-width: 768px) {
    
	.studio-area {
		margin: 10px 0 0;
	}

	.studio-area .sticky-wrap,
	.studio-area .banquet .sticky-wrap {
		flex-direction: column-reverse;
		height: auto;
	}

	.studio-area .image-stage,
	.studio-area .text-panel {
		width: 100%;
	}

	.studio-area .image-stage {
		height: 260px;
	}

	.studio-area .text-panel {
		height: 100%;
		padding: 40px 20px 50px;
		align-items: flex-start;
	}

	.studio-area .text-content .en {
		font-size: 3.6rem;
	}

	.studio-area .text-content .jp {
		font-size: 1.6rem;
	}

	.studio-area .text-content .catch {
		font-size: 2.2rem;
		margin: 30px 0 0;
	}

	.studio-area .feature-content {
		margin: 30px 0 0;
	}

	.studio-area .feature-content .feature-list {
		gap: 20px;
	}

	.studio-area .feature-content .feature-list .feature-item {
		flex-direction: row;
		gap: 15px;
		width: 100%;
		padding: 10px 20px;
	}

	.studio-area .feature-content .feature-list .feature-item .img-wrap {
		width: 100px;
		height: 100px;
		flex-shrink: 0;
	}

	.studio-area .feature-content .feature-list .feature-item .img-wrap img {
		width: 100%;
		height: 100%;
	}

	.studio-area .feature-content .feature-list .feature-item .spec-list {
		font-size: 1.3rem;
		line-height: 1.8;
		margin: 0;
		padding: 0;
	}

	.studio-area .btn-more {
	}

	/* no scroll-linked switching on mobile — just show a single static image */
	.studio-area .img-item {
		transform: none;
		opacity: 0;
		box-shadow: none;
		transition: none;
        position: inherit;
		display: none;
	}

	.studio-area .img-item:first-child {
		opacity: 1;
		display: block;
	}
    
    .studio-area .spacer{
        height: 0;
    }
    
    /*info-box*/
    .floor-area {
    }
    .floor-area .info-box {
        display: block;
        margin: 0;
        padding: 30px 0 0;
    }
    /*info-box：l-box*/
    .floor-area .l-box {
        width: 100%;
        position: relative;
        display: flex;
        gap: 15px;
    }
    .floor-area .l-box .name {
        font-size: 3rem;
    }
    .floor-area .l-box .name span {
        font-size: 4.4rem;
    }
    .floor-area .l-box .price {
        font-size: 1.7rem;
        line-height: 1.4;
        margin: 0;
    }
    .floor-area .l-box .price span {
        font-size: 1.2rem;
        margin: 0;
    }

    /*info-box：r-box*/
    .floor-area .r-box {
        width: 100%;
        margin: 10px 0 0;
    }
    .floor-area .r-box .disc-list li {
        line-height: 1.5;
        font-size: 1.3rem;
        padding-left: 12px;
    }
    
    .floor-area .r-box .disc-list li::before {
        top: 8px;
    }
    .floor-area .r-box .disc-list li+li {
        margin: 6px 0 0;
    }

    /*info-box：r-box：floor-plan*/
    .floor-area .r-box .floor-plan{
        gap: 15px;
    }
    .floor-area .r-box .floor-plan .zu{
        width: 135px;
    }
    .floor-area .r-box .floor-plan .txt-box{
        width: calc(100% - 150px);
    }
    .floor-area .r-box .size {
        margin: 0 0 6px;
        line-height: 1.4;
        font-size: 1.5rem;
    }
    .floor-area .r-box .pdf-link {
        margin: 20px 0 0 auto;
    }
    .floor-area .r-box .pdf-link a {
        gap: 5px;
        margin: 0 0 0 auto;
    }
    
}


/* -------------------------------------------------------------
    free-space-area
-------------------------------------------------------------- */
.free-space-area {
	margin: 120px 0 0;
	padding: 0 30px;
	width: 100%;
	height: 800px;
	position: relative;
}

.free-space-area::after {
	background: url(../img/free-space-bg.png) no-repeat;
	background-size: cover;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.free-space-wrap {
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 1600px;
	height: 100%;
	margin: 0 auto;
}

.free-space-wrap-left,
.free-space-wrap-right {
	width: 440px;
	overflow: hidden;
}

.free-space-wrap-center {
	/*background: url(../img/gallery-bg.png);*/
	padding: 160px 20px;
	width: 660px;
}

.free-space-wrap-center .free-space-txt-wrap {
	text-align: center;
}

.free-space-wrap-center .free-space-txt-wrap .en {
	font-size: 5.0rem;
}

.free-space-wrap-center .free-space-txt-wrap .jp {
	font-size: 1.7rem;
}

.free-space-wrap-center .free-space-txt-wrap .catch {
	font-size: 2.6rem;
	line-height: 1.8;
	margin: 45px 0 0;
}

.free-space-wrap-center .free-space-txt-wrap .basic-txt {
	margin: 30px 0 0;
}

.free-space-wrap-center .btn-more {
	margin: 50px auto 0;
}

.free-space-wrap-track {
	display: flex;
	flex-direction: column;
}

.free-space-wrap-left .free-space-wrap-track {
	animation: scroll-up 10s linear infinite;
}

.free-space-wrap-right .free-space-wrap-track {
	animation: scroll-down 10s linear infinite;
}

@keyframes scroll-up {
	from { transform: translateY(0); }
	to   { transform: translateY(-50%); }
}

@keyframes scroll-down {
	from { transform: translateY(-50%); }
	to   { transform: translateY(0); }
}

.free-space-wrap-left .free-space-wrap-track img {
	display: block;
	height: 300px;
	object-fit: cover;
}

@media screen and (max-width: 768px) {
	.free-space-area {
		margin: 115px 0 0;
		padding: 0;
		height: auto;
	}

	.free-space-area::after {
	}

	.free-space-wrap {
		flex-direction: column;
		justify-content: space-between;
		width: 100%;
		height: 100%;
		margin: 0 auto;
		position: relative;
	}

	.free-space-wrap-left {
		width: 100%;
		overflow: hidden;
		position: absolute;
		top: -80px;
	}

	.free-space-wrap-right {
		width: 100%;
		overflow: hidden;
		position: absolute;
		bottom: -80px;
	}

	.free-space-wrap-center {
		padding: 160px 0;
		width: 100%;
	}

	.free-space-wrap-center .free-space-txt-wrap {
	}

	.free-space-wrap-center .free-space-txt-wrap .en {
		font-size: 3.4rem;
	}

	.free-space-wrap-center .free-space-txt-wrap .jp {
		font-size: 1.6rem;
	}

	.free-space-wrap-center .free-space-txt-wrap .catch {
		font-size: 2.2rem;
		line-height: 1.5;
		margin: 30px 0 0;
	}

	.free-space-wrap-center .free-space-txt-wrap .basic-txt {
        text-align: left;
        padding: 0 20px;
        margin: 15px 0 0;
	}

	.free-space-wrap-center .btn-more {
		margin: 40px auto 0;
	}

	.free-space-wrap-track {
		display: flex;
		flex-direction: row;
	}

	.free-space-wrap-left .free-space-wrap-track {
		animation: scroll-left 10s linear infinite;
	}

	@keyframes scroll-left {
		from { transform: translateX(0); }
		to   { transform: translateX(-100%); }
	}

	.free-space-wrap-right .free-space-wrap-track {
		animation: scroll-right 10s linear infinite;
	}

	@keyframes scroll-right {
		from { transform: translateX(-100%); }
		to   { transform: translateX(0); }
	}

	.free-space-wrap-left .free-space-wrap-track img,
	.free-space-wrap-right .free-space-wrap-track img {
		display: block;
		width: 170px;
		height: 170px;
		object-fit: cover;
	}

	.free-space-wrap-left .free-space-wrap-track img:nth-child(even),
	.free-space-wrap-right .free-space-wrap-track img:nth-child(even) {
		margin: 15px 0 0;
	}
}

/* -------------------------------------------------------------
    about-area
-------------------------------------------------------------- */
.about-area {
	margin: 0 0 60px;
	padding: 120px 0 0;
	margin: 120px 0 0;
	position: relative;
}

.about-area::after {
	background: url(../img/about-bg.png) no-repeat;
	background-size: contain;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.about-area .txt-content .en {
	font-size: 5.0rem;
}

.about-area .txt-content .flex-box {
	margin: 70px 0 0;
}

.about-area .txt-content .flex-box .catch {
	font-size: 4.4rem;
	line-height: 1.8;
}

.about-area .feature-content {
	margin: 30px 0 0;
}

.about-area .feature-content .feature-item:nth-of-type(1) {
	margin: 100px 0 0;
}

.about-area .feature-content .feature-item:nth-of-type(2) {
	margin: 50px 0 0;
}

.about-area .feature-content .feature-item .img-wrap {
	width: 400px;
	height: 450px;
	position: relative;
}

.about-area .feature-content .feature-item .img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-area .feature-content .feature-item .img-wrap p {
	color: var(--white);
	font-family: var(--en);
	font-size: 3.2rem;
	line-height: 1.2;
	position: absolute;
	bottom: -12px;
}

.about-area .feature-content .feature-item .txt-box {
	padding: 30px 60px 30px 40px;
	position: relative;
}

.about-area .feature-content .feature-item .txt-box::after {
	content: "";
	display: block;
	background: url(../img/frame.png) no-repeat;
	background-size: contain;
	width: 400px;
	height: 270px;
	position: absolute;
	bottom: -30px;
	right: 0;
}

.about-area .feature-content .feature-item .txt-box .feature-item-catch {
	font-size: 2.2rem;
}

.about-area .feature-content .feature-item .txt-box .basic-txt {
	margin: 20px 0 0;
}

@media screen and (max-width: 768px) {
	.about-area {
		margin: 120px 0 60px;
		padding: 50px 0 0;
	}

	.about-area::after {
		background: url(../img/about-bg-sp.png) no-repeat;
		background-size: contain;
		/* content: "";
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1; */
	}

	.about-area .txt-content .en {
		font-size: 3.6rem;
	}

	.about-area .txt-content .flex-box {
		margin: 30px 0 0;
		align-items: flex-start;
		gap: 30px;
	}

	.about-area .txt-content .flex-box .catch {
		font-size: 2.8rem;
		line-height: 1.8;
	}

	.about-area .feature-content {
		margin: 40px 0 0;
	}

	.about-area .feature-content .feature-list.flex-box {
		gap: 10px;
	}

	.about-area .feature-content .feature-item {
		align-items: center;
		display: flex;
		gap: 15px;
	}

	.about-area .feature-content .feature-item:nth-of-type(1) {
		margin: 0;
	}

	.about-area .feature-content .feature-item:nth-of-type(2) {
		margin: 0;
	}

	.about-area .feature-content .feature-item .img-wrap {
		width: 130px;
		height: 100px;
	}

	.about-area .feature-content .feature-item .img-wrap img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.about-area .feature-content .feature-item .img-wrap p {
	}

	.about-area .feature-content .feature-item .txt-box {
		padding: 0;
		width: calc(100% - (130px + 15px));
	}

	.about-area .feature-content .feature-item .txt-box .en {
		font-size: 1.2rem;
		color: var(--main);
	}

	.about-area .feature-content .feature-item .txt-box::after {
		display: none;
	}

	.about-area .feature-content .feature-item .txt-box .feature-item-catch {
		font-size: 1.6rem;
		line-height: 1.4;
		margin: 5px 0 0;
	}

	.about-area .feature-content .feature-item .txt-box .basic-txt {
	}
}


/* -----------------------------------------------------------
	bot-about-area
-------------------------------------------------------------- */
.bot-about-area {
    margin: 120px 0;
}
.bot-about-area .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}
.bot-about-area .img-wrap {
    width: 800px;
    height: 540px;
}
.bot-about-area .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bot-about-area .txt-box {
    width: 340px;
}
/*.bot-about-area .txt-box .en {
    font-size: 4rem;
}*/
.bot-about-area .txt-box .catch {
    font-size: 2.6rem;
    font-weight: 500;
    color: var(--cv-color);
    margin: 40px 0 20px;
}
.bot-about-area .txt-box .basic-text {
    font-size: 1.6rem;
}
.bot-about-area .txt-box .btn-more {
    margin: 40px 0 0 0;
}

@media screen and (max-width: 768px) {
    .bot-about-area {
        margin: 130px 0 0;
    }
    .bot-about-area .inner {
        display: block;
    }
    .bot-about-area .img-wrap {
        width: 100%;
        height: 300px;
        display: none;
    }
    .bot-about-area .txt-box {
        width: 100%;
        padding: 0 20px 0;
    }
    /*.studio-link-area .txt-box .en {
        font-size: 3.4rem;
    }*/
    .bot-about-area .txt-box .catch {
        font-size: 2.2rem;
        margin: 30px 0 15px;
    }
    .bot-about-area .txt-box .basic-text {
        font-size: 1.5rem;
    }
    .bot-about-area .txt-box .btn-more {
        margin: 30px 0 0 auto;
    }
    
}

/* -----------------------------------------------------------
    link-area
-------------------------------------------------------------- */
.link-area {
	margin: 110px 0 0;
}

.link-area .link-list {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	width: 100%;
}

.link-area .link-list .link-item {
	position: relative;
	width: calc((100% - 80px) / 2);
	height: 300px;
}

.link-area .link-list .link-item a {
	display: block;
	width: 100%;
	height: 100%;
}

.link-area .link-list .link-item a:hover {
	box-shadow: none;
}

.link-area .link-list .link-item.link-item-gallery {
	background: url(../img/link-gallery.jpg);
	background-size: cover;
}

.link-area .link-list .link-item.link-item-price {
	background: url(../img/st3.jpg);
	background-size: cover;
}

.link-area .link-list .link-item.link-item-access {
	background: url("../img/gaikan.jpg");
	background-size: cover;
}

.link-area .link-list .link-item a::before {
	background: var(--main);
	content: "";
	display: block;
	width: 35px;
	height: 1px;
	position: absolute;
	bottom: 50px;
	right: -10px;
	z-index: 1;
	transition: 0.3s ease;
}

.link-area .link-list .link-item a::after {
	content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
	transition: 0.3s ease;
    border: 1px #707F89 solid;
}

.link-area .link-list .link-item a:hover::before {
	right: -20px;
}

.link-area .link-list .link-item a:hover::after {
	opacity: .5;
}

.link-area .link-list .link-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.link-area .link-list .link-item .ttl-s {
	/*color: var(--white);*/
	position: absolute;
	bottom: 50px;
	left: 50px;
	z-index: 1;
    color: var(--black);
}

.link-area .link-list .link-item .ttl-s .en {
	font-size: 3.6rem;
}
.link-area .link-list .link-item .ttl-s .jp {
	font-size: 1.6rem;
}
.link-area .link-list .link-item .ttl-s .basic-txt {
	margin: 20px 0 0;
    color: #888;
}

@media screen and (max-width: 768px) {
	.link-area {
		margin: 50px 0 0;
	}

	.link-area .link-list {
		flex-wrap: wrap;
		gap: 10px;
	}

	.link-area .link-list .link-item {
		width: calc((100% - 20px) / 2);
		padding: 20px 10px 30px;
        height: auto;
	}

	.link-area .link-list .link-item a {
		box-shadow: none;
	}

	.link-area .link-list .link-item.link-item-gallery,
	.link-area .link-list .link-item.link-item-price,
	.link-area .link-list .link-item.link-item-access {
		/*background: url(../img/link-item-spbg.jpg);*/
        background: #fff;
	}

	.link-area .link-list .link-item a::before {
		width: 20px;
		height: 1px;
		position: absolute;
		bottom: 20px;
		right: -10px;
		z-index: 1;
		transition: 0.3s ease;
	}

	.link-area .link-list .link-item a::after {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: none;
	}

	.link-area .link-list .link-item::before {
		width: 15px;
		right: -7px;
		bottom: 10px;
	}

	.link-area .link-list .link-item::after {
		display: none;
	}

	.link-area .link-list .link-item .img-wrap {
		display: block;
		margin: 0 auto;
		width: 90px;
		height: 90px;
	}

	.link-area .link-list .link-item .img-wrap img {
		width: 100%;
		height: 100%;
        border-radius: 50%;
	}

	.link-area .link-list .link-item .ttl-s {
		color: var(--black);
		text-align: center;
		display: block;
		margin: 10px auto 0;
		position: static;
	}

	.link-area .link-list .link-item .ttl-s .en {
		font-size: 2rem;
        font-weight: 400;
	}

	.link-area .link-list .link-item .ttl-s .jp {
		font-size: 1.4rem;
	}

	.link-area .link-list .link-item .ttl-s .jp.brackets-w::before {
		background: url(../img/brackets-left.svg) no-repeat;
	}

	.link-area .link-list .link-item .ttl-s .jp.brackets-w::after {
		background: url(../img/brackets-right.svg) no-repeat;
	}
}