@charset "utf-8";
/*------------------------------------
    全体設計
------------------------------------*/
:root{
	--color-accent: #df6519;
	--color-white: #fff;
}
body{
	letter-spacing: 2px;
	line-height: 1.5;
}
img{
	max-width: 100%;
}
.section-inner{
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 1rem;
}
h2.ttl span{
	display: block;
	text-align: center;
}
h2.ttl .main{
	font-size: clamp(4rem,4.25vw,6.5rem);
	font-weight: 900;
	letter-spacing: .15rem;
	color: #fff;
	margin-bottom: 1rem;
	text-shadow: 1px 1px 0 #000,-1px 1px 0 #000,1px -1px 0 #000,-1px -1px 0 #000;
}
h2.ttl .sub{
	font-size: 1rem;
	font-weight: 600;

}
/* ========================================
	fade-in
========================================= */
/*ロード*/
.fade-in01{ 
	opacity:0;
	animation-name: fade-in01; /*←@keyframesにも同じ名前を記述*/
	animation-duration: 5s; 
	animation-fill-mode: forwards; 
}

@keyframes fade-in01 {  /*←animation-nameにも同じ名前を記述*/
0% {
	opacity: 0;
	color:#000;
}
/*90% {
	opacity: 1;
	color:#000;
}*/
 100% {
	opacity: 1;
} 
}

/*スクロール*/
/* 上からフェードイン */
.slide-top {
	opacity: 0;
	transform: translate(0, -20px);
	transition: all 1s ease-out;
 }

/* 下からフェードイン */
.slide-bottom {
	opacity: 0;
	transform: translate(0, 20px);
	transition: all 1s ease-out;
 }

 /* 左からフェードイン */
.slide-left {
	opacity: 0;
	transform: translate(-20px, 0);
	transition: all 1s ease-out;
 }

/* 右からフェードイン */
.slide-right {
	opacity: 0;
	transform: translate(20px, 0);
	transition: all 1s ease-out;
 }
 /* リストの子要素 下からFadeIn */
.is-fadeInUpList li.show {
  opacity: 0;
	transform: translate(0, 20px);
	transition: all 0.3s ease-out;
}
.is-fadeInUpList li.show:nth-child(1) {
  transition-delay: 0.2s; }

.is-fadeInUpList li.show.show:nth-child(2) {
  transition-delay: 0.4s; }

.is-fadeInUpList li.show:nth-child(3) {
  transition-delay: 0.6s; }

.is-fadeInUpList li.show:nth-child(4) {
  transition-delay: 0.8s; }

.is-fadeInUpList li.show:nth-child(5) {
  transition-delay: 1s; }

.is-fadeInUpList li.show:nth-child(6) {
  transition-delay: 1.2s; }

.is-fadeInUpList li.show:nth-child(7) {
  transition-delay: 1.4s; }

.is-fadeInUpList li.show:nth-child(8) {
  transition-delay: 1.6s; }

.is-fadeInUpList li.show:nth-child(9) {
  transition-delay: 1.8s; }

.is-fadeInUpList li.show:nth-child(10) {
  transition-delay: 2s; }

/* ========================================
　ハンバーガーボタン
========================================= */
.btn {
	position: fixed;
	top: 12px;
	right: 12px;
	width: 48px;
	height: 48px;
	z-index: 10;
	padding: 9px;
	background-color: #fff841;
	border-radius: 50%;
	/*border: solid 2px #212225;*/
}

.btn-line {
	display: block;
	position: relative;
	width: 100%;
	height: 3px;
	background-color: #212225;
	transition: .2s;
}

.btn-line::before,
.btn-line::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #212225;
	transition: .5s;
}

.btn-line::before {
	/* 上の線の位置 */
	transform: translateY(-9px);
}

.btn-line::after {
	/* 下の線の位置 */
	transform: translateY(9px);
}

.btn-line.open {
	background-color: transparent; /* 真ん中の線を透明に */
}

.btn-line.open::before , 
.btn-line.open::after {
	content: "";
	background-color: #333; /* 上下の線の色を変える */
	transition: .2s;
}

.btn-line.open::before {
	transform: rotate(45deg);
}

.btn-line.open::after {
	transform: rotate(-45deg);
}

.menu {
	/* メニューの位置マイナス指定で画面外に */
	position: fixed;
	right: -100%;
	width: 100%;
	height: 100vh;
	/* メニューを縦に */
	display: flex;
	flex-direction: column;
	color: #202124;
	background-color: rgba(255 248 65 / .93);
	transition: .3s;
	z-index: 2;
}

.menu-list {
	line-height: 5rem;
	margin: 0 auto;
}

.menu-list a{
	font-weight: 900;
	margin: 2.5rem auto;
	text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000;
    color: #fff;
    font-size: 1.5rem;
}

.IG a{
	font-weight: 600;
    border: 2px solid;
    border-radius: 50%;
    width: 1.7rem;
    height: 1.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.3rem;
}

.menu li:first-child{
	margin-top: 8vh;
}

.menu.open {
	right: 0;
}

header{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9990;
	height: 114px;
	transition: all .3s ease;
}
/* ========================================
	fview
========================================= */
h1{
	display: block;
	text-indent: -119988px;
	overflow: hidden;
	background: url(../images/common/logo.png) left/auto 100% no-repeat;
	background-size: contain;
	width: 16rem;
	height: 4.45rem;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -70px 0 0 -130px;
}
.fview{
	width:100%;
	position: relative;
	background-image: url(../images/common/bg_pc.jpg);
	background-size: cover;
  overflow: hidden;
}
.scroll{
	position: absolute;
	left: 50%;
	bottom: 30px;
	margin-left: -16px;
	line-height: 0;
}
.scroll::after{
    content: "SCROLL";
    position: absolute;
	left: 50%;
    bottom: -16px;
	margin-left: -25px;
    font-size: .8rem;
	color: #000;
	font-weight: 900;
}

.scroll .mouse-line {
    display: block;
    position: absolute;
    left: 50%;
    top: 20px;
    width: 2px;
    height: 8px;
    margin-left: -1px;
    background-color: #000;
}

.mouse-line {
	animation-name: anim_mouse-line;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-duration: 1.5s;
}

@keyframes anim_mouse-line {
    0% {
		transform: translate(0, 0px);
	}
	100% {
		transform: translate(0, -15px);
	}
}
/* ========================================
	contact
========================================= */

#contact{
	width: 50%;
	margin: 7rem auto;
}

#contact .section-inner{
	display: block;
    width: calc(100% - 12px);
    background: #fff;
	text-align: center;
    border-radius: 14px;
    margin: 0 auto;
    position: relative;
}

#contact .section-inner::after{
	content: "";
    background: url(../images/common/bg_contact_pc.jpg) no-repeat center top / cover;
    border-radius: 20px;
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: -10px;
    left: -10px;
    z-index: -1;
}
#contact .fa-envelope{
	font-size: 3rem;
}
#contact p{
	margin: 2rem auto 0;
	font-weight: 900;
}
/* ========================================
	footer
========================================= */
footer{
	width:100%;
	height: 55vh;
	position: relative;
    background: url(../images/common/bg_pc.jpg) center/auto 100% no-repeat;
	background-size: cover;
}
.footer-logo{
	max-width: 200px;
	margin: auto;
}
.footer-logo img{
	width: 100%;
	margin: auto;
}
.footer-sns{
	margin: 20px auto;
}
.footer-sns ul{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
.footer-sns ul li a{
	display: inline-block;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	padding: 10px;
}
.footer-IG a{
	border: 2px solid #c62ad5;
}
.footer-LINE a{
	border: 2px solid #06c755;
}
.f-nav,.footercopy-text{
	font-size: 0.8rem;
	text-align: center;
	line-height: 1.5;
}

footer .f-inner{
	position: absolute;
	top: 10rem;
	margin: 0 auto;
	padding: 4rem 0;
	width: 100%;
	background-color: #fff;
}

/* ========================================
	page_top
========================================= */
#page_top{
	width: 50px;
	height: 50px;
	position: fixed;
	right: 12px;
	bottom: 12px;
	background: #cacdd2;
	opacity: 0.6;
	border-radius: 50%;
}

#page_top a{
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
	text-decoration: none;
}

#page_top a::before{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f106';
	font-size: 25px;
	color: #fff;
	position: absolute;
	width: 25px;
	height: 25px;
	top: -5px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
}

/* ========================================
	reCAPTCHA
========================================= */
.grecaptcha-badge{
	visibility: hidden;
}
