@charset "UTF-8";
/* CSS Document */

/*タブ切り替え全体のスタイル*/
html{
	font-size: 62.5%;/*16px×62.5%=10px*/
	height: 100%;
}
body{
	letter-spacing: 0.1em;
	line-height: 1.6;
	color: #2b2b2b;
	font-family: "M PLUS 1p", sans-serif;
	font-size: 1.4rem;
	min-height: 0;
	overflow-x: scroll;
    background: var(--main-c);
	background-image: url(https://www.transparenttextures.com/patterns/dark-denim-3.png);
	height: 100%;
}

.main-container{
    height: calc(var(--vh, 1vh) * 100); /* 動的な高さの設定 */
}
a{
	display: block;
	transition: all .2s;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-ms-transition: all .2s;
	-o-transition: all .2s;
	color: #2b2b2b;
}

a:hover{
	cursor: pointer;
}
li{
	list-style: none;
}
img{
	max-width: 100%;
	height: auto;
}
hr{
	margin: 0;
}
span{
	display: inline-block;
}




:root{
	--main-c: #C11F2F;
	--base-c: #FFE8B5;
	--side-c: #2A5755;
}

.recaptcha{
	text-align: center;
}
.recaptcha a{
	display: inline-block;
	color: cadetblue;
}
.grecaptcha-badge{
	visibility: hidden;
}

/* ----▼---▼▼--▼▼▼-▼▼▼▼- br area -▼▼▼▼-▼▼▼--▼▼---▼---- */

.br-sp{
	display: block;
}

/* ----▼---▼▼--▼▼▼-▼▼▼▼- font area -▼▼▼▼-▼▼▼--▼▼---▼---- */

@font-face {
    font-family: 'HVDTrial Brandon Printed';
    src: url('https://fonts.cdnfonts.com/s/11233/HVDTrialBrandonPrinted-Regular.woff2') format('woff2'),
         url('https://fonts.cdnfonts.com/s/11233/HVDTrialBrandonPrinted-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
.fontA{
	font-family: "Galada", cursive;
}
.fontB{
	font-family: "Homemade Apple", cursive;
}
.fontC{
	font-family: 'Oswald', sans-serif;
}
.fontD{
	font-family: 'HvDTrial Brandon Printed', sans-serif;
}


.cta-button:hover{
	cursor: pointer;
}

/* モーダルのオーバーレイ全体の設定 */
.m-overlay,
.cta-overlay{
    position: fixed; /* ビューポートに対して固定 */
    top: 0;
    left: 0;
    width: 100vw; /* ビューポート全体の幅 */
    height: 100vh; /* ビューポート全体の高さ */
    background: rgba(0, 0, 0, 0.6);
    display: none; /* 初期状態で非表示 */
    z-index: 999; /* 高いZインデックスで前面に表示 */
}

.m-body{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 90vw;
	color: var(--base-c);
    background: var(--main-c);
    background-image: url(https://www.transparenttextures.com/patterns/dark-denim-3.png);
	padding: 5vh;
	box-sizing: border-box;
	border-radius: 1rem;
}
.cta-overlay .m-body{
	width: auto;
	min-width: 640px;
	padding: 30px;
}
.m-close{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 2vh;
    right: 2vh;
    width: 4vh;
    height: 4vh;
    font-size: 4vh;
    line-height: 1;
    cursor: pointer;
}
.cta-overlay .m-close{
    top: 5px;
    right: 5px;
    width: 50px;
    height: 50px;
    font-size: 4rem;
    background: var(--main-c);
    background-image: url(https://www.transparenttextures.com/patterns/dark-denim-3.png);
}
.m-content{
	width: 100%;
	gap: 5vh;
	align-items: center;
}
.cta-overlay .m-content{
	padding: 30px;
	box-sizing: border-box;
	border: solid 1px var(--base-c);
	border-radius: 10px;
}
.m-content .video{
	flex: 1;
}
.m-content iframe{
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: contain;
	border-radius: 1rem;
	flex: 1;
}
.m-content dl{
	width: 30%;
	gap: 5vh;
}
.m-content dt{
	font-size: 2.6vh;
	font-weight: bold;
}
.m-content dd{
	display: flex;
	flex-direction: column;
	gap: 5vh;
}
.m-content dd p{
	font-size: 1.4vh;
}
.m-content dd a{
	display: flex;
	width: fit-content;
	align-items: center;
	gap: 1vh;
	background: var(--base-c);
	color: var(--main-c);
	padding: 1vh 3vh;
	border-radius: 100vh;
}
.cta-overlay h2{
	text-align: center;
	font-size: 9rem;
	margin: 40px 0;
    color: rgba(0, 0, 0, 0.00);
    -webkit-text-stroke: 1px var(--base-c);
	transform: rotate(-10deg);
	line-height: 1;
}
.cta-overlay .des{
	text-align: center;
	font-size: 1.2rem;
	margin-bottom: 30px;
}
.cta-overlay .sns-area{
	align-items: center;
	position: absolute;
	bottom: -40px;
	left: 50%;
	transform: translateX(-50%);
	justify-content: center;
	gap: 10px;
	line-height: 1;
}
.cta-overlay .sns-area p{
	width: max-content;
}
.cta-overlay .sns-area a{
	color: var(--base-c);
	font-size: 1.8rem;
}


form{
	gap: 30px;
	display: flex;
	flex-direction: column;
}
label{
	width: 180px;
	font-size: 1.4rem;
}
input,textarea{
	flex: 1;
	background: none;
	padding: 1em;
	box-sizing: border-box;
	color: var(--base-c);
	border: solid 1px var(--base-c);
	border-radius: 4px;
	font-size: 1.4rem;
	width: 100%;
}
::placeholder {
	color: var(--base-c);
	opacity: 0.6;
}
button{
	width: fit-content;
	background: var(--base-c);
	border: none;
	color: var(--main-c);
	margin: 0 auto;
	padding: 1em 4em;
	line-height: 1;
	border-radius: 100px;
	font-size: 1.4rem;
}




/* ----▼---▼▼--▼▼▼-▼▼▼▼- flex area -▼▼▼▼-▼▼▼--▼▼---▼---- */

.flex-area{
	display: flex;
}
.flex-between{
	justify-content: space-between;
}
.flex-column{
	flex-direction: column;
}
.flex-horizon{
	align-items: center;
}
.flex-wrap{
	flex-wrap: wrap;
}

.writ{
	-ms-writing-mode: tb-lr;
	writing-mode: vertical-lr;
}





/* ----▼---▼▼--▼▼▼-▼▼▼▼- header area -▼▼▼▼-▼▼▼--▼▼---▼---- */


header{
	color: var(--main-c);
}
header section{
	position: fixed;
	z-index: 2;
}
header .logo-area{
	top: 50px;
	left: 50px;
	width: 200px;
	fill: var(--main-c);
}
header .scroll{
	top: 50px;
	right: 50px;
	color: var(--main-c);
	font-size: 1.4rem;
}
header .scroll::before,
header .scroll::after{
	content: '';
	position: absolute;
	bottom: -70px;
	left: 50%;
	transform: translate(-50%);
}
header .scroll::before{
	width: 2px;
	height: 60px;
	background: #707070;
}
header .scroll::after{
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--main-c);
	animation:circlemove 1.6s ease-in-out infinite,cirlemovehide 1.6s ease-out infinite;
}
/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
	0%{bottom: -12px;}
	100%{bottom: -68px;}
}

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
	0%{opacity:0}
	50%{opacity:1;}
	80%{opacity:0.9;}
	100%{opacity:0;}
}
header .scroll a{
	color: var(--main-c);
}
header .sns-area{
	bottom: 50px;
	right: 50px;
	line-height: 1;
	font-size: 1rem;
	align-items: center;
	gap: 16px;
}
header .sns-area hr{
	width: 100%;
}
header .sns-area i{
	color: var(--main-c);
	font-size: 2rem;
}





main section{
	width: max-content;
	padding: 60px;
	box-sizing: border-box;
}

section .title{
	line-height: 1;
}
section .title dt{
	font-size: 14vh;
	color: var(--main-c);
}
section .title dd{
	font-weight: 800;
	font-size: 4vh;
	color: rgba(0, 0, 0, 0.00);
	-webkit-text-stroke: 3px var(--side-c);
}


.fv{
	position: relative;
	width: 100vw;
	height: 100vh;
}
.fv div{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2.1vh;
	line-height: 1;
}
.fv div p{
	font-size: 3vh;
	color: var(--main-c);
}
.fv div h1{
	width: 54vh;
	fill: var(--side-c);
	transform: translateX(-3vh);
}
.fv div h2{
	font-size: 1.2vh;
	background-color: var(--main-c);
	color: var(--base-c);
	padding: 0.8vh 2vh;
	letter-spacing: 0.2em
}
.fv .fv01,
.fv .fv02{
	position: absolute;
	width: 40vh;
	height: auto;
	object-fit: contain;
	margin: 0;
	filter: grayscale(1) drop-shadow(2px 0px 8px rgba(0,0,0,0.6));
}
.fv .fv01{
	top: 0;
	right: 0.5vh;
	animation: switch1 3s infinite linear;
}
@keyframes switch1{
    0%, 33.32% { /* 初期位置と角度 */
        transform: translate(-0.5vh, -0.4vh) rotate(3deg);
    }
    33.33%, 66.65% { /* 右ななめ上に移動し、角度を変える */
        transform: translate(-0.48vh, -0.7vh) rotate(1deg);
    }
    66.66%, 99.99% { /* 左に移動し、別の角度に変更 */
        transform: translate(-0.51vh, -0.5vh) rotate(-2deg);
    }
    100% { /* 初期位置と角度に戻る */
        transform: translate(-0.5vh, -0.4vh) rotate(3deg);
    }
}
.fv .fv02{
	bottom: 0;
	left: 0.5vh;
	animation: switch2 3s infinite linear;
	animation-delay: 250ms;
}
@keyframes switch2{
    0%, 33.32% { /* 初期位置と角度 */
        transform: translate(0.5vh, 0.5vh) rotate(3deg);
    }
    33.33%, 66.65% { /* 右ななめ上に移動し、角度を変える */
        transform: translate(0.48vh, 0.7vh) rotate(1deg);
    }
    66.66%, 99.99% { /* 左に移動し、別の角度に変更 */
        transform: translate(0.51vh, 0.4vh) rotate(-2deg);
    }
    100% { /* 初期位置と角度に戻る */
        transform: translate(0.5vh, 0.5vh) rotate(3deg);
    }
}

.concept{
	display: flex;
	gap: 20vh;
}
.concept .cont{
	gap: 20vh;
}
.concept li.contC{
	display: none;
}
.concept li .dec{
	align-items: flex-end;
}
.concept li .dec img{
	width: auto;
	object-fit: contain;
}
.concept li.contA .dec img{
	height: 80vh;
	margin-bottom: -5vh;
}
.concept li.contB .dec img{
	height: 80vh;
	margin-bottom: -5vh;
}
.concept li .text{
	justify-content: center;
	gap: 8vh;
}
.concept li dl{
	letter-spacing: 0.2em;
}
.concept .contA dl{
	margin-left: -12vh;
}
.concept li dt{
	font-weight: 600;
	color: var(--main-c);
	margin-bottom: 4vh;
}
.concept li.contA dt{
	font-size: 5vh;
}
.concept li.contB dt{
	font-size: 2.4vh;
}
.concept li dd{
	font-weight: bold;
	width: 65vh;
}
.concept li.contA dd{
	font-size: 1.5vh;
}
.concept li.contB dd{
	font-size: 1.2vh;
}
.concept li span{
	position: relative;
}
.concept li.contA span{
	display: flex;
	justify-content: flex-end;
	width: 20vh;
	margin-right: 0;
	margin-left: auto;
}
.concept li.contB span{
	width: 80vh;
	height: 50%;
}
.concept li span::before{
	content: '';
	position: absolute;
	bottom: 4vh;
	background: var(--main-c);
	mix-blend-mode: multiply;
	box-shadow: rgba(0, 0, 0, 0.2) 20px 60px 40px -7px;
}
.concept li.contA span::before{
	left: -16vh;
	width: 20vh;
	height: 6vh;
}
.concept li.contB span::before{
	left: -10vh;
	width: 16vh;
    height: 16vh;
}
.concept li.contA span img{
	width: 20vh;
	object-fit: cover;
	aspect-ratio: 4/5;
	box-shadow: rgba(0, 0, 0, 0.2) 20px 60px 40px -7px;
}
.concept li.contB span img{
	position: absolute;
	object-fit: cover;
	filter: grayscale(1);
	box-shadow: rgba(0, 0, 0, 0.2) 20px 60px 40px -7px;
}
.concept li.contB span img:first-child{
	top: 0;
	left: 0;
	width: 80%;
	height: 70%;
}
.concept li.contB span img:last-child{
	bottom: 0;
	right: 0;
	aspect-ratio: 5/4;
	height: 24vh;
	object-position: top;
}

.archives{
	display: flex;
	gap: 10vh;
}
.archives .title{
	position: relative;
	line-height: 1;
	width: 140vh;
	z-index: 2;
}
.archives .title::before,
.archives .title::after{
	content: '';
	position: absolute;
	background: var(--main-c);
	mix-blend-mode: multiply;
	z-index: 1;
}
.archives .title::before{
	top: -60px;
	left: 10vh;
	width: 20vh;
	height: 70vh;
}
.archives .title::after{
	top: 15vh;
	left: 70vh;
	width: 30vh;
	height: 10vh;
}
.archives .title img{
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	height: 104vh;
	object-fit: contain;
	z-index: -1;
}
.archives .title dl{
	position: absolute;
	bottom: 0;
	right: 0;
	text-align: end;
}
.archives .cont{
	gap: 3vh;
	width: calc((((100vh - 120px) / 3) - 2vh) * 4 + 9vh);
}
.archives .cont li{
	position: relative;
	flex: 1 1 calc(((100vh - 120px) / 3) - 2vh); /* サファリ用にflex指定を追加 */
	width: calc(((100vh - 120px) / 3) - 2vh);
	height: calc(((100vh - 120px) / 3) - 2vh);
	border-radius: 1vh;
	background: var(--base-c);
    background-image: url(https://www.transparenttextures.com/patterns/exclusive-paper.png);
	overflow: hidden;
	cursor: pointer;
}
.archives .cont li img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	mix-blend-mode: multiply;
	transition: all 0.4s ease;
}
.archives .cont li:hover img{
	transform: scale(1.06,1.06);
	mix-blend-mode: initial;
}
.archives .cont li p{
	display: none;
	width: 100%;
	visibility: hidden;
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 1vh;
	box-sizing: border-box;
	color: white;
	background: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,1));
	transition: all ease 0.4s;
}
.archives .cont li:hover p{
	display: block;
	visibility:visible;
}
.archives .link{
	position: relative;
	width: 60vh;
	height: 100%;
}
.archives .link div{
	position: absolute;
	top: 10vh;
	left: 0;
}
.archives .link h3{
	font-size: 1.8vh;
	font-weight: bold;
	margin-bottom: 5vh;
}
.archives .link a{
	display: flex;
	align-items: center;
	font-size: 2vh;
	background: var(--main-c);
	color: var(--base-c);
	width: fit-content;
	padding: 1vh 4vh;
	border: solid 2px transparent;
	border-radius: 100vh;
	gap: 1.6vh;
	transition: all ease 0.4s;
}
.archives .link a:hover{
	background: var(--base-c);
	color: var(--main-c);
	border: solid 2px var(--main-c);
	transform: scale(1.02,1.02);
}
.archives .link i{
	font-size: 3vh;
}
.archives .link img{
	position: absolute;
	bottom: -60px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	filter: grayscale(1) drop-shadow(2px 0px 8px rgba(0,0,0,0.6));
	animation: switch3 2s infinite linear; /* アニメーションの設定 */
}
@keyframes switch3 {
    0%, 33.32% { /* 初期位置と角度 */
        transform: translate(-50%, 2%) rotate(3deg);
    }
    33.33%, 66.65% { /* 右ななめ上に移動し、角度を変える */
        transform: translate(-51%, 2.5%) rotate(2deg);
    }
    66.66%, 99.99% { /* 左に移動し、別の角度に変更 */
        transform: translate(-51%, 3%) rotate(-2deg);
    }
    100% { /* 初期位置と角度に戻る */
        transform: translate(-50%, 2%) rotate(3deg);
    }
}
.service{
	gap: 20vh;
}
.service .title{
	text-align: end;
	height: fit-content;
	margin-top: auto;
	margin-bottom: 0;
}
.service .title dt{
	position: relative;
}
.service .title dt::before{
	content: '';
	position: absolute;
	top: -13vh;
	left: 50%;
	transform: translateX(-50%);
	width: 10.5vh;
	height: 10.5vh;
	background: var(--main-c);
}
.service .cont{
	position: relative;
}
.service .cont::before{
	content: '';
	position: absolute;
	top: -60px;
	right: -20vh;
	width: 10vh;
	height: 40vh;
	background: var(--main-c);
}
.service .cont li{
	width: 30vh;
}
.service .cont span{
	position: relative;
	background: white;
    background-image: url("https://www.transparenttextures.com/patterns/paper-3.png");;
	margin-bottom: 12vh;
	padding: 1.6vh;
	padding-bottom: 7vh;
	box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.service .cont li:first-child span,
.service .cont li:nth-child(4) span{
	transform: rotate(-10deg);
	z-index: 2;
}
.service .cont li:nth-child(2) span,
.service .cont li:nth-child(5) span{
	transform: rotate(12deg);
}
.service .cont li:nth-child(3) span{
	transform: rotate(4deg);
}
.service .cont li:nth-child(6) span{
	transform: rotate(-4deg);
}
.service .cont p{
	position: absolute;
	bottom: 3vh;
	right: 1.6vh;
	font-size: 3.2vh;
	letter-spacing: 0;
	line-height: 1;
	color: var(--main-c);
	transform: rotate(-10deg);
}
.service .cont dl{
	padding: 0 2.4vh;
	box-sizing: border-box;
}
.service .cont dt{
	font-size: 1.8vh;
	font-weight: bold;
	margin-bottom: 2vh;
}
.service .cont dd{
	font-size: 1.3vh;
}
.service .others{
	position: relative;
	width: 100vh;
	height: 100vh;
}
.service .others dl{
	position: absolute;
	top: 10vh;
	right: 0;
	gap: 6vh;
}
.service .others dt{
	font-size: 1.6vh;
	font-weight: bold;
}
.service .others dd{
	font-size: 1.2vh;
	font-weight: bold;
	line-height: 2;
}
.service .others img{
	position: absolute;
	bottom: -60px;
	left: 0;
	width: 95vh;
	height: 95vh;
	object-fit: contain;
	filter: grayscale(1) drop-shadow(2px 0px 8px rgba(0,0,0,0.6));
	animation: switch4 3s infinite linear;
}
@keyframes switch4{
    0%, 33.32% { /* 初期位置と角度 */
        transform: translate(-0.5vh, -0.4vh) rotate(3deg);
    }
    33.33%, 66.65% { /* 右ななめ上に移動し、角度を変える */
        transform: translate(0.5vh, -0.7vh) rotate(1deg);
    }
    66.66%, 99.99% { /* 左に移動し、別の角度に変更 */
        transform: translate(0, -0.5vh) rotate(-2deg);
    }
    100% { /* 初期位置と角度に戻る */
        transform: translate(-0.5vh, -0.4vh) rotate(3deg);
    }
}

.profile .catch{
	position: relative;
	width: 90vh;
	height: 100%;
}
.profile .catch li{
	position: absolute;
}
.profile .catch li:first-child{
	top: 6vh;
	left: 6vh;
	width: 40vh;
}
.profile .catch li:last-child{
	bottom: 6vh;
	right: 6vh;
	width: 57vh;
}
.profile .catch li::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 90%;
	height: 90%;
	background: var(--main-c);
	z-index: -1;
}
.profile .catch li:first-child::before{
	animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
.profile .catch li:last-child::before{
	animation: floating-x 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-x {
  0% {
    transform: translate(-53%,-50%);
  }
  100% {
    transform: translate(-47%,-50%);
  }
}
@keyframes floating-y {
  0% {
    transform: translate(-50%,-53%);
  }
  100% {
    transform: translate(-50%,-47%);
  }
}
.profile .catch li img{
	width: 100%;
	filter: grayscale(1) drop-shadow(-3vh 2vh 0 rgba(193,31,47,1));
}

.profile .cont{
	gap: 11vh;
	width: 60vh;
}
.profile .title{
	text-align: end;
	transform: translateX(-20vh);
}
.profile .title dd{
	margin-right: -10vh;
}
.profile .text{
	gap: 5vh;
}
.profile .text dl{
	gap: 6vh;
	font-size: 1.4vh;
}
.profile .text dt,
.profile .text dd{
	font-weight: bold;
}
.profile .text dt{
	width: 8vh;
}
.profile .text dd{
	flex: 1;
}

.contact{
	gap: 14vh;
	justify-content: center;
	align-items: center;
	width: 100vw;
	height: 100%;
	text-align: center;
}
.contact .title{
	position: relative;
	z-index: 1;
	filter: drop-shadow(2px 0px 8px rgba(0,0,0,0.6));
	margin-top: 13vh;
}
.contact .title::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotate(-10deg);
	margin: auto;
	width: 70vh;
	aspect-ratio: 85.91 / 47;
	background: url("../image/contactA.webp") center/cover;
	z-index: -1;
	filter: drop-shadow(2px 0px 8px rgba(0,0,0,0.6));
	opacity: 0.8;
	animation: yureru-j 2s infinite;
}
@keyframes yureru-j {
    0% {
        transform: translate(-50%,-49.5%) rotate(-10deg);
    }
    5% {
        transform: translate(-50%,-50.5%) rotate(-10deg);
    }
    10% {
        transform: translate(-50%,-49.5%) rotate(-10deg);
    }
    15% {
        transform: translate(-50%,-50.5%) rotate(-10deg);
    }
    20% {
        transform: translate(-50%,-49.5%) rotate(-10deg);
    }
    25% {
        transform: translate(-50%,-50.5%) rotate(-10deg);
    }
    30% {
        transform: translate(-50%,-50%) rotate(-10deg);
    }
}
.contact .title dt{
	font-size: 16vh;
	letter-spacing: 0.08em;
	margin-bottom: 2vh;
}
.contact .title dd{
	position: relative;
	color: var(--base-c);
	font-size: 3vh;
	font-weight: 400;
	letter-spacing: 0.4em;
	-webkit-text-stroke: 0.4vh var(--side-c);
}
.contact .title dd::before {
	content: attr(data-text);
	-webkit-text-stroke: 0;
	position: absolute;
	inset: 0;
}
.contact .link{
	gap: 4vh;
	font-size: 1.4vh;
	line-height: 1.8;
}
.contact .link span{
    display: flex;
    align-items: center;
    font-size: 1.4vh;
    background: var(--main-c);
    color: var(--base-c);
    width: fit-content;
    padding: 1vh 4vh;
    border-radius: 100vh;
    gap: 1vh;
	border: solid 2px transparent;
	transition: all ease 0.4s;
}

.contact .link span:hover{
	background: var(--base-c);
	color: var(--main-c);
	border: solid 2px var(--main-c);
	transform: scale(1.02,1.02);
}
.contact .link i{
	font-size: 3vh;
}
.contact .link p{
	font-weight: bold;
}



footer{
	position: relative;
	width: 100vw;
	height: 100vh;
}
footer section{
	width: auto;
	padding: 0;
	gap: 2vh;
}
footer .inner{
	position: absolute;
	inset: 0;
	margin: auto;
	justify-content: center;
	gap: 1vw;
}
footer .logo-area{
	gap: 1vw;
}
footer svg{
	width: 20vw;
}
footer .sns-area{
    font-size: 1rem;
	gap: 0.8vw;
}
footer .sns-area hr{
	height: 1.2vh;
}
footer .sns-area i{
    font-size: 2rem;
}
footer img{
	width: 6vw;
	object-fit: contain;
}

footer small{
	position: absolute;
	bottom: 50px;
	left: 50px;
	font-weight: bold;
}


main.thanks{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100vw;
	height: 100vh;
	text-align: center;
	line-height: 1;
	box-sizing: border-box;
	color: var(--main-c);
	background: var(--base-c);
    background-image: url(https://www.transparenttextures.com/patterns/exclusive-paper.png);
}
.thanks i{
	font-size: clamp(10rem, 20vw, 30rem);
	margin-bottom: clamp(30px, 10vw, 80px);
}

.thanks h1{
	font-size: clamp(2.1rem, 10vw, 12rem);
	margin-bottom: clamp(10px, 4vw, 30px);
}
.thanks h2{
	font-size: clamp(1.2rem, 3vw, 4.2rem);
	font-weight: bold;
}



@media screen and (max-width:1440px){
	
	
	.m-content dt{
		font-size: 2.4vh;
	}
	header .logo-area{
		top: 40px;
		left: 40px;
		width: 160px;
	}
	header .scroll::before{
		width: 1px;
	}
	header .scroll{
		top: 40px;
		right: 40px;
		font-size: 1.2rem;
	}
	header .sns-area{
		bottom: 40px;
		right: 40px;
		font-size: 0.8rem;
		gap: 12px;
	}
	header .sns-area i{
		font-size: 1.8rem;
	}
	main section{
		width: max-content;
		padding: 50px;
		box-sizing: border-box;
	}
	section .title dd{
		-webkit-text-stroke: 2px var(--side-c);
	}
	.concept{
		display: flex;
		gap: 14vh;
	}
	.concept li.contB dt{
		font-size: 2.6vh;
	}
	.concept li.contB dd{
		font-size: 1.4vh;
	}
	.archives .cont{
		width: calc((((100vh - 100px) / 3) - 2vh) * 4 + 9vh);
	}
	.archives .cont li{
		width: calc(((100vh - 100px) / 3) - 2vh);
		height: calc(((100vh - 100px) / 3) - 2vh);
	}
	.service .others dl{
		top: 6vh;
	}
	.service .others dt{
		font-size: 2vh;
	}
	.service .others dd{
		font-size: 1.4vh;
	}
	.profile .cont {
		gap: 10vh;
	}
	.profile .catch {
		width: 80vh;
		height: 100%;
	}
	.profile .catch li:first-child{
		width: 36vh;
	}
	.profile .catch li:last-child{
		width: 50vh;
	}
	.profile .text{
		gap: 4.6vh;
	}
	.profile .text dl{
		gap: 4vh;
		font-size: 1.5vh;
	}
	footer small{
		bottom: 40px;
		left: 40px;
		font-size: 1.3vh;
	}
	footer .sns-area i{
		font-size: 1.4rem;
	}
	
	
}



@media screen and (max-width:1024px){
	
	#mouse-stalker{
		display: none;
	}
	.m-close {
		top: 2vh;
		right: 2vh;
		width: 1vh;
		height: 1vh;
	}
	.m-body{
		padding: 4vh;
	}
	.m-content{
		flex-direction: column;
	}
	.m-content .video{
		width: 100%;
	}
	.m-content dl{
		width: 100%;
	}
	.fv div h1 {
		width: 46vh;
		transform: translateX(-1vh);
	}
	.fv .fv01,
	.fv .fv02{
		width: 34vh;
	}
	.archives .cont li p{
		display: block;
		visibility: visible;
	}
	.contact .title::before{
		width: 50vh;
	}
	.contact .title dt{
		font-size: 11vh;
	}
	.concept li.contB dt{
        font-size: 2.8vh;
    }
	.concept li.contB span {
		width: 70vh;
	}
	footer .logo-area{
		gap: 1.2vw;
	}
	footer svg{
		width: 40vw;
	}
	footer .sns-area{
		font-size: 1.4rem;
		gap: 1vw;
	}
	footer .sns-area i{
        font-size: 1.8rem;
    }
	footer img{
		width: 9vw;
	}
	
	
}


@media screen and (max-width:599px){
	
	.br-sp{
		display: none;
	}
	
	.cta-overlay .m-body{
		width: calc(100vw - 60px);
		min-width: auto;
		max-height: calc(100vh - 60px);
		padding: 15px;
	}
	.cta-overlay .m-close{
		top: 0;
		right: 0;
		width: 40px;
		height: 40px;
		font-size: 3rem;
		border-radius: 10px;
	}
	.cta-overlay .m-content{
		padding: 15px;
	}
	.cta-overlay h2{
		font-size: 6rem;
		margin: 20px 0;
	}
	.cta-overlay .des{
		font-size: 1rem;
		margin-bottom: 20px;
	}
	.cta-overlay .sns-area{
		bottom: -30px;
	}
	.cta-overlay .sns-area p{
		font-size: 0.8rem;
	}
	form{
		gap: 10px;
	}
	form div{
		flex-direction: column;
	}
	
	label,input,textarea{
		width: 100%;
		font-size: 1.0rem;
	}
	label{
		display: none;
	}
	button{
		margin-top: 10px;
		padding: 0.7em 3.6em;
		font-size: 1.2rem;
	}
	
	
	
	header .logo-area{
        top: 20px;
        left: 20px;
        width: 120px;
    }
	header .scroll{
        top: 20px;
        right: 20px;
    }
	header .sns-area{
		flex-direction: row;
        bottom: 20px;
        right: 20px;
        font-size: 0.8rem;
		gap: 10px;
    }
	header .sns-area .writ{
		-ms-writing-mode: initial;
     	writing-mode: initial; 
	}
	header .sns-area hr{
		width: auto;
		height: 100%;
	}
	header .sns-area i{
        font-size: 1.6rem;
    }
	
	main section{
		width: 100%;
		padding: 40px 20px;
	}
	section .title dt{
		font-size: 16.5vw;
		margin-bottom: 2vw;
	}
	section .title dd{
		font-size: 6.4vw;
	}

	
	.fv .fv01,
	.fv .fv02{
        width: 50vw;
    }
	.fv div p {
		font-size: 6vw;
	}
	.fv div h1{
        width: 70vw;
		transform: translateX(-2vw);
    }
	.fv div h2{
		font-size: 2.1vw;
	}
	
	
	.concept{
		flex-direction: column;
		gap: 10vw;
	}
	.concept .title{
		-ms-writing-mode: initial;
		writing-mode: initial;
	}
	.concept .cont{
		flex-direction: column;
		gap: 16vw;
	}
	.concept li{
		flex-direction: column;
	}
	.concept li.contC{
		display: block;
	}
	.concept li.contB span{
        width: 100vw;
    }
	.concept li.contB span::before{
		inset: -12vw 6vw auto auto;
		width: 20vw;
		height: 20vw;
	}
	.concept li .text{
		gap: 10vw;
	}
	.concept li.contA .text{
		flex-direction: column-reverse;
	}
	.concept li.contA .dec{
		display: none;
	}
	.concept .contA dl {
		margin-left: 0;
	}
	.concept li.contB span{
		width: 100%;
		height: 64vw;
	}
	.concept li.contB span img:last-child {
        height: 32vw;
    }
	.concept li dt{
        width: 100%;
		margin-bottom: 2.4vh;
    }
	.concept li.contA dt{
		font-size: 7vw;
	}
	.concept li.contB dt {
        font-size: 4.6vw;
    }
	.concept li dd{
		width: 100%;
	}

	.archives{
		flex-direction: column;
		gap: 10vw;
	}
	.archives .title{
		width: 100%;
		height: 135vw;
	}
	.archives .title::before {
		top: 0;
		left: 8vw;
		width: 16vw;
		height: 60vw;
	}
	.archives .title::after {
		top: 20vw;
		left: auto;
		right: 10vw;
		width: 30vw;
		height: 10vw;
	}
	.archives .title img {
		position: absolute;
		top: 0;
		transform: initial; 
		height: 100vw;
		width: auto;
		object-fit: cover;
		border-radius: 20px;
	}
	.archives .cont{
		width: 100%;
		flex-direction: row;
		gap: 10px;
	}
	.archives .cont li{
        width: calc((100vw - 50px) / 2);
        height: calc((100vw - 50px) / 2);
		flex: none;
    }
	.archives .cont li p{
        font-size: 1.0rem;
    }
	.archives .link{
		width: 100%;
		height: 130vw;
	}
	.archives .link div{
		top: 0;
	}
	.archives .link h3{
        font-size: 4vw;
        margin-bottom: 10vw;
    }
	.archives .link a{
        font-size: 1.6rem;
        padding: 10px 30px;
    }
	.archives .link i{
		font-size: 6.4vw;
	}
	.archives .link img{
		bottom: 0;
		width: 90%;
	}
	.service{
		flex-direction: column;
		gap: 20vw;
	}
	.service .title{
		-ms-writing-mode: initial;
    	writing-mode: initial;
	}
	.service .title dt::before{
		display: none;
	}
	.service .cont{
		flex-direction: column;
	}
	.service .cont::before{
		display: none;
	}
	.service .cont li{
		width: 100%;
		display: flex;
		align-items: center;
		gap: 10vw;
	}
	.service .cont span{
		width: 44%;
		margin-bottom: 0;
		padding: 1.8vw;
   		padding-bottom: 7vw;
	}
	.service .cont p{
		bottom: 2vw;
		right: 1vw;
		font-size: 4vw;
	}		
	.service .cont dl{
		flex: 1;
		padding: 0;
	}
	.service .cont dt{
        font-size: 3.6vw;
        margin-bottom: 2vw;
    }
	.service .cont dd{
        font-size: 2.4vw;
        line-height: 1.8;
    }
	.service .others{
		width: 100%;
		height: auto;
	}
	.service .others dl{
        position: initial;
		flex-direction: column;
		gap: 6vw;
    }
	.service .others img{
		position: initial;
		width: 100%;
		height: auto;
	}
	.service .others dt{
        font-size: 4.2vw;
    }
	.service .others dd{
        font-size: 3vw;
    }
	
	.profile{
		flex-direction: column-reverse;
		gap: 16vw;
	}
	.profile .catch{
        width: 100%;
        height: 100vw;
    }
	.profile .catch li:first-child{
		top: 0;
		left: 0;
		width: 54%;
	}
	.profile .catch li:last-child{
		bottom: 0;
		right: 0;
		width: 75%;
	}
	.profile .catch li img{
		filter: grayscale(1) drop-shadow(-3vw 3vw 0 rgba(193, 31, 47, 1));
	}
	.profile .cont{
		width: 100%;
		gap: 10vw;
	}
	.profile .title{
        transform: initial;
		text-align: left;
    }
	.profile .title dd{
		margin-right: auto;
	}
	.profile .text{
        gap: 6vw;
    }
	.profile .text dl{
		flex-direction: column;
        font-size: 1.2rem;
		gap: 2vw;
    }
	.profile .text dt{
		width: fit-content;
        color: var(--side-c);
		font-weight: 400;
    }
	
	.contact{
		height: 100vh;
	}
	.contact .title::before {
        width: 60vw;
    }
	.contact .title dt{
        font-size: 14vw;
		margin-bottom: 1vw;
    }
	.contact .title dd{
		font-size: 5vw;
	}
	.contact .link{
		font-size: 3vw;
		gap: 10vw;
	}
	.contact .link span{
		font-size: 3.6vw;
        padding: 3vw 12vw;
	}
	.contact .link i{
		font-size: 6vw;
	}
	
	
	footer section{
		width: auto;
		padding: 0;
		gap: 4vw;
	}
	footer svg{
        width: 50vw;
    }
	footer .sns-area{
        font-size: 1rem;
        gap: 10px;
    }
	footer .sns-area i{
        font-size: 1.4rem;
    }
	footer img{
        width: 14vw;
    }
	footer small{
        bottom: 20px;
        left: 20px;
        font-size: 0.8rem;
    }
	

	
	
}