@charset "UTF-8";

@font-face {
	font-family: "MOBO-SemiBold";
	src: url("../font/MOBO-SemiBold.woff2") format("woff2");
	font-weight: 600;
	font-style: normal;
}
@font-face {
	font-family: "Barlow-SemiBold";
	src: url("../font/Barlow-SemiBold.woff2") format("woff2");
	font-weight: 600;
	font-style: normal;
}

:root {
	--color-white: #EAEAEC;
	--color-black: #343440;
	--color-gray: #969699;
	--color-border: #C8C9CC;
	--font-family-japanese: "MOBO-SemiBold", "Hiragino Kaku Gothic Pro", "Hiragino Kaku Gothic", "Meiryo", sans-serif;
	--font-family-alphabet: "Barlow-SemiBold", "Helvetica Neue", Arial, sans-serif;

	--max-height: 100rem;
}

/* リセットCSS */
*,
*::before,
*::after {
	box-sizing:border-box;
}
* {
	border: 0;
	margin: 0;
	outline: 0;
	padding: 0;
	font: inherit;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	text-decoration: none;
	vertical-align: baseline;
}
article, aside, footer, header, main, nav, article, section {
	display:block;
}
img, picture, audio, canvas, video, svg {
	display:block;
}
br,
hr {
	display:block;
}
ol,
ul {
	list-style:none;
}
blockquote, q {
	quotes:none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content:none;
}
input,
select {
	vertical-align:middle;
}
body {
	line-height:1;
	line-break:strict;
	overflow-wrap:break-word;
	overflow-wrap:anywhere;
	word-break:normal;
	font-feature-settings:"palt";
	-webkit-text-size-adjust:100%;
	-webkit-font-smoothing:antialiased;
}
a {-webkit-tap-highlight-color:transparent;}

/* html format */

html {
    font-size: 0.7vw;
}
@media screen and (min-width: 1600px) {
	html {font-size:11.2px;}/*1600(px)/100(vw)*0.7(vw)*/
}
@media screen and (max-width: 900px) {
	html {font-size:1.4vw;}
}
body {
	background-color: var(--color-white);
	color: var(--color-black);
	font-family: var(--font-family-japanese);
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.5;
	position: relative;
	text-align: left;
	width: 100%;
}
a,
a:link,
a:visited,
a:hover,
a:active {
	color:inherit;
	-webkit-tap-highlight-color:transparent rgba(0,0,0,0);
	text-decoration:none;
	-webkit-text-decoration-skip:objects;
}
a:hover {color:#A9927C; color:var(--color-gold);}
h1,
h2,
h3,
h4,
h5,
h6 {display:block; line-height:1.3;}
i {font-style:normal;font-family: var(--font-family-alphabet);}
u {text-decoration:underline;}
em {font-weight:bold;}
strong {font-weight:bold; font-size:1.2em;}
mark {background:transparent;}
q:before,
q:after {content:'"';}
s {text-decoration:underline;}
del {text-decoration:line-through;}
sup {vertical-align:super; font-size:smaller;}
sub {vertical-align:sub; font-size:smaller;}
hr {border:0;border-top:1px solid; border-color:var(--color-border);height:0;}
table {border-collapse:collapse;border-spacing:0;empty-cells:show;border:0;width:100%;margin:0;}
table th,
table td {vertical-align:middle;}
table caption {text-align:left;}
img {
	width: 100%;
	height: auto;
	line-height: 1;
}

/* template */
.sp {
	display: none;
}
@media screen and (max-width: 900px) {
	.sp {
		display: block;
	}
}
section {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
}
.inner {
	clear: both;
	display: block;
	margin: 0 auto;
	position: relative;
	max-width: 1600px;
	width: 100%;
	padding: 0 10%;
}
.image-wrapper {
	width: 100%;
	height: fit-content;
	line-height: 1;
}
.section-title i {
	font-size: 11rem;
	text-transform: capitalize;
	line-height: 1;
	margin-left: -1rem;
	letter-spacing: -0.1em;
	transition: 1s;
}
.section-title i.move-active {
	letter-spacing: 0;
}
.section-title h3 {
	font-size: clamp(12px, 1.4rem, 999rem);
	position: relative;
	color: var(--color-gray);
	letter-spacing: 0.8em;
	padding-left: 1.4em;
	font-family: var(--font-family-japanese);
	margin-top: 1rem;
	animation-delay: 0.3s;
}
.section-title h3::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	display: block;
	width: 0.4em;
	aspect-ratio: 1/1;
	background-color: var(--color-gray);
	border-radius: 50%;
}
@media screen and (max-width: 900px) {
	.section-title i {
		letter-spacing: 0;
	}
}
.fade-in-object {
	transform: translateY(10rem);
	opacity: 0;
	animation-delay: 0.3s;
}
.fade-in-active {
	animation-name: fade-in-animation;
	animation-fill-mode: forwards;
	animation-duration: 2s;
	animation-iteration-count: 1;
	animation-timing-function: ease;
	animation-direction: normal;
	transform: translateY(10rem);
	opacity: 0;
}
@keyframes fade-in-animation {
	0% {
		transform: translateY(10rem);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

/* main */
#section-top-hero {
	margin-bottom: 10rem;
}
#section-top-hero .content {
	display: flex;
	justify-content: space-between;
	position: relative;
}
#section-top-hero .content .title-wrapper {
	height: 100dvh;
	width: 65rem;
	max-height: var(--max-height);
	display: flex;
	align-items: center;
	white-space: nowrap;
}
#section-top-hero .content .title-wrapper .title {
	margin-top: -3vh;
}
#section-top-hero .content .title-wrapper .title h1 {
	font-size: 13rem;
	font-family: var(--font-family-alphabet);
	line-height: 0.95;
	display: flex;
	align-items: flex-end;
	gap: 0.1em;
}
#section-top-hero .content .title-wrapper .title h2 {
	font-size: 2.5rem;
	font-family: var(--font-family-alphabet);
	padding-left: 0.5em;
	margin-top: 4rem;
}
#section-top-hero .content .title-wrapper .title h1 .cursor-circle {
	
	display: inline-block;
	width: 0.13em;
	aspect-ratio: 1/1;
	border-radius: 50%;
	background-color: #CACACA;
	transform: translate(-50%, -50%);
	transition: all 0.1s cubic-bezier(0.25, 0.1, 0.25, 1);
	pointer-events: none;
}
#section-top-hero .content .title-wrapper .title h1 .cursor-circle.is-active {
	position: fixed;
	width: 0.6em;
	background-color: #E1E2E6;
	z-index: -1;
}
#section-top-hero .circle-animation {
	width: 45rem;
	height: 160vw;
	max-height: var(--max-height);
	position: sticky;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
}
#section-top-hero .circle-animation .animation-wrapper {
	position: relative;
	left: 10%;
	width: 100%;
	aspect-ratio: 1/1;
}
#section-top-hero .circle-animation .circle {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 70%;
	aspect-ratio: 1/1;
	border: 1px solid #777777;
	border-radius: 50%;
	pointer-events: none;
	transform: translate(-50%, -50%);
	overflow: hidden;
}
@media screen and (max-width: 900px) {
	#section-top-hero {
		margin-bottom: 10rem;
		overflow: hidden;
	}
	#section-top-hero .content .title-wrapper .title h1 .cursor-circle.is-active{
		position: static;
		width: 0.13em;
		background-color: #CACACA;
	}
	#section-top-hero .content {
		display: contents;
		flex-wrap: wrap;
	}
	#section-top-hero .content .title-wrapper {
		width: 100%;
		order: 1;
		max-height: 900px;
	}
	#section-top-hero .content .title-wrapper .title h2{
		font-size: 3.8rem;
	}
	#section-top-hero .circle-animation{
		position: absolute;
		top: 50%;
		left: 0;
		width: 100dvh;
		transform: translateY(-50%);
		opacity: 0.15;
		z-index: -1;
	}
}

#section-top-works .content {
	display: flex;
	justify-content: space-between;
	row-gap: 10rem;
	flex-wrap: wrap;
	margin-top: 10rem;
}
#section-top-works .content .box {
	flex-basis: 43%;
}
#section-top-works .content .box .image-wrapper {
	box-shadow: 10px 10px 20px 10px rgba(0, 0, 0, 0.1);
	border-radius: 3px;
	overflow: hidden;
	/* border: 0.5px solid var(--color-white); */
}
#section-top-works .content .box .image-wrapper img {
	transition: 0.5s;
}
#section-top-works .content .box a:hover .image-wrapper img {
	transform: scale(1.03);
}
#section-top-works .content .box .title {
	font-size: 1.8rem;
	letter-spacing: 0.1em;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	position: relative;
	padding-right: 1.5em;
	padding-left: 1rem;
	margin-top: 2.5rem;
}
#section-top-works .content .box a .title::after {
	display: block;
	position: absolute;
	content: "";
	top: 5%;
	right: 1rem;
	display: block;
	width: 1.25em;
	height: 1.25em;
	background-image: url("../images/icon-external.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
#section-top-works .content .box .caption {
	font-size: 1.4rem;
	color: var(--color-gray);
	letter-spacing: 0.1em;
	padding-left: 1rem;
	margin-top: 0.5rem;
	text-transform: capitalize;
	display: block;
}
@media screen and (max-width: 900px) {
	#section-top-works .content .box {
		flex-basis: 100%;
	}
	#section-top-works .content .box .title{
		font-size: 2.4rem;
	}
	#section-top-works .content .box .caption{
		font-size: 2rem;
	}

}






#footer {
	padding: 10rem 0;
	text-align: center;
	background-color: #DEDFE3;
	color: var(--color-gray);
	margin-top: 10rem;
}