@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


/*----------------------------------------------------
	☆Reset
----------------------------------------------------*/
body, h1, h2, h3, h4, h5, h6, pre, ul , ol , li, dl, dt, dd, p, img {
	margin:0;
	padding:0;
}
h1, h2, h3, h4, h5, h6{
    font-weight: 500;
}
body {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	color: #000;
	background: #fff;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.2em;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: antialiased;
}

#wrapper{
	width: 100%;
    overflow: hidden;
}

body, div, p, span, ul, ol, li, dl, dt, dd, table, tr, th, td, img, header, footer, small, section, a, h1, h2, h3, h4, h5, h6{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
a {
	color:#1e2b3a;
	text-decoration:none;
	cursor:pointer;
	outline:none;
}
a:link {
	color:#000;
	text-decoration:none;
	outline:none;
}
a:hover {
	text-decoration:none;
	outline:none;
}
ul, ol {
	list-style-type:none;
}
a:focus {
  outline: none;
}
img{ 
	vertical-align:bottom;
	-webkit-backface-visibility: hidden;
	width: 100%;
    height: auto;
    display: block;
}

.pc-none { display: none;}
.sp-none { display: block;}

/*FONT*/
.nowrap{
    white-space: nowrap;
    display: inline-block;
}

.deco {
    position: absolute;
    left: 0;
    top: 0;
}

/*----------------------------------------------------
	☆header
----------------------------------------------------*/
#header {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
}

#header:before {
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    background: #e60012;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

#header .header01 {
    display: flex;
    justify-content: space-between;
	align-items: center;
    transition: .3s;
	background: #fff;
}

#header .header01 .headerLogo {
    display: flex;
    align-items: center;
	transition: .4s;
    max-width: 200px;
}

/*#header .header01 .headerLogo a {
    padding: 15px;
}*/

#header .header01 .headerLogo img {
    padding: 20px;
}

#gnav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#gnav ul li {
    font-weight:  700;
    position: relative;
    margin-right: 30px;
	font-size: 14px;
}

/*#gnav ul li:last-child {
    margin-right: 30px;
}*/

#gnav ul li a {
    display: block;
    transition: .5s;
    position: relative;
	color: #e60012;
}

#gnav ul li a::after {
	content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #e60012;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: .3s ease;
    -webkit-transition: .3s ease;
}


/*----------------------------------------------------
	☆footer
----------------------------------------------------*/
#footer:before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #e60012;
    z-index: 1;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

#footer .footerInr {
    width: 90%;
	max-width: 640px;
    margin: 45px auto 0;
}

#footer .footerInr .footerLogo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#footer .footerInr .footerLogo a {
    transition: .5s;
}

#footer .footerInr .footerLogo img {
    margin-bottom: 30px;
    width: 100%;
    max-width: 160px;
}

#footer address {
    text-align: center;
    color: rgba(230, 0, 18, 0.5);
    margin: 0 auto;
	padding-bottom: 20px;
}

#footer address small {
    font-size: 10px;
    letter-spacing: 0.2em;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: normal;
}


/*----------------------------------------------------
	☆pagetop
----------------------------------------------------*/
#pagetop {
    width: 60px;
    height: 60px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10;
    opacity: 0;
    transition: .4s;
    cursor: pointer;
    background: #e60012;
    visibility: hidden;
    border-radius: 30px;
}

#pagetop::before {
    content: "";
    display: block;
    position: relative;
    background: url(../images/arrow_02.svg) center center / contain no-repeat;
    width: 15%;
    height: 35%;
    left: 40%;
    top: 32%;
}

#pagetop.is-fadein {
    visibility: visible;
    opacity: 1;
}


/*----------------------------------------------------
	☆HOVER
----------------------------------------------------*/
#gnav ul li a:hover::after {
    width: 100%;
}

#footer .footerInr .footerLogo a:hover {
    opacity: 0.5;
}




/*----------------------------------------------------
	☆ANIMATION
----------------------------------------------------*/
#mv .slidein,
.out.slidein,
.out .slidein{
    opacity: 0;
}

#mv .slidein,
.in.slidein,
.in .slidein{
    animation: slidein 0.8s ease forwards;
}

@keyframes slidein{
    0%{ transform: translate(0,10px); opacity: 0; }
    100%{  transform: translate(0,0);opacity: 1;}
}


#new-logo .clip01 {
    clip-path: inset(0 0 100% 0);
}

#new-logo #mv .clip01 {
    animation: clip01 .8s ease forwards;
}


#new-logo .clip02 {
    clip-path: inset(0 100% 0 0);
}

#new-logo #mv .clip02 {
    animation: clip02 .8s ease forwards;
}

#new-logo .clip03 {
    clip-path: inset(100% 0 0 0);
}

#new-logo #mv .clip03 {
    animation: clip03 .8s ease forwards;
}

#new-logo .clip04 {
    clip-path: inset(0 0 0 100%);
}

#new-logo #mv .clip04 {
    animation: clip04 .8s ease forwards;
}

@keyframes clip01 {
	0% { clip-path: inset(0 0 100% 0); }
	100% { clip-path: inset(0 0 0 0); }
}
@keyframes clip02 {
	0% { clip-path: inset(0 100% 0 0); }
	100% { clip-path: inset(0 0 0 0); }
}

@keyframes clip03 {
	0% { clip-path: inset(100% 0 0 0); }
	100% { clip-path: inset(0 0 0 0); }
}

@keyframes clip04 {
	0% { clip-path: inset(0 0 0 100%); }
	100% { clip-path: inset(0 0 0 0); }
}

@keyframes scrollbtn{
    0% { transform: translate(0, -100%); opacity: 0;}
   50% { transform: translate(0, 0px); opacity: 1;}
	100% { transform: translate(0, 100%); opacity: 0;}
}


.delay01{ animation-delay: 0.1s!important;}
.delay02{ animation-delay: 0.2s!important;}
.delay03{ animation-delay: 0.3s!important;}
.delay04{ animation-delay: 0.4s!important;}
.delay05{ animation-delay: 0.5s!important;}
.delay06{ animation-delay: 0.6s!important;}
.delay07{ animation-delay: 0.7s!important;}
.delay08{ animation-delay: 0.8s!important;}
.delay09{ animation-delay: 0.9s!important;}
.delay10{ animation-delay: 1.0s!important;}
.delay11{ animation-delay: 1.1s!important;}
.delay12{ animation-delay: 1.2s!important;}
.delay13{ animation-delay: 1.3s!important;}
.delay14{ animation-delay: 1.4s!important;}
.delay15{ animation-delay: 1.5s!important;}
.delay16{ animation-delay: 1.6s!important;}
.delay17{ animation-delay: 1.7s!important;}
.delay18{ animation-delay: 1.8s!important;}
.delay19{ animation-delay: 1.9s!important;}
.delay20{ animation-delay: 2.0s!important;}
.delay21{ animation-delay: 2.1s!important;}
.delay22{ animation-delay: 2.2s!important;}
.delay23{ animation-delay: 2.3s!important;}
.delay24{ animation-delay: 2.4s!important;}
.delay25{ animation-delay: 2.5s!important;}
.delay26{ animation-delay: 2.6s!important;}
.delay27{ animation-delay: 2.7s!important;}
.delay28{ animation-delay: 2.8s!important;}
.delay29{ animation-delay: 2.9s!important;}
.delay30{ animation-delay: 3.0s!important;}
.delay31{ animation-delay: 3.1s!important;}
.delay32{ animation-delay: 3.2s!important;}
.delay33{ animation-delay: 3.3s!important;}
.delay34{ animation-delay: 3.4s!important;}
.delay35{ animation-delay: 3.5s!important;}
.delay36{ animation-delay: 3.6s!important;}
.delay37{ animation-delay: 3.7s!important;}
.delay38{ animation-delay: 3.8s!important;}
.delay39{ animation-delay: 3.9s!important;}
.delay40{ animation-delay: 4.0s!important;}



/*----------------------------------------------------
	☆TOP UNDER 900
----------------------------------------------------*/

@media screen and (max-width:900px) {
	.pc-none { display: block;}
	.sp-none { display: none;}
	
	/*------ hamburger */

	#hamburgerBox .hamburger {
	   width: 30px;
       height: 20px;
	   position: fixed;
       z-index: 9999;
       top: 4.8%;
       right: 5%;
	   transition: opacity 0.4s ease, transform 0.4s ease;
	}


	#hamburgerBox .hamburger #nav-open {
		width: 100%;
		height: 100%;
		position: relative;
	}

	#hamburgerBox .hamburger #nav-open span {
	    position: absolute;
		left: 0;
		width: 100%;
		height: 1px;
		background: #e60012;
		transition: 0.4s;
	}

	#nav-open span:nth-child(1) {
	  top: 0;
	}

	#nav-open span:nth-child(2) {
	  top: 7px;
	}

	#nav-open span:nth-child(3) {
	  top: 14px;
	}

	#hamburgerBox .hamburger.open #nav-open span {
		background-color: #e60012;
	}

	#hamburgerBox .hamburger .nav-close {
		display: block;
		width: 100%;
		height: 0;
		position: absolute;
		top: 0;
		left: 0;
	}



	/* ナビゲーション（ドロップダウン用） */
	#hamburgerBox #nav-content {
	    overflow: auto;
		position: fixed;
		top: 0;
		right: 0px;
		z-index: 9997;
		width: 100%;
		height: 100vh;
		transition: 0.75s;
		visibility: hidden;
		text-align: left;
		opacity: 0;
		padding: 15% 10% 0;
		background-color: #f2efe3;
	}

	#hamburgerBox #nav-content.open {
	   opacity: 1;
       visibility: visible;
	}
	
	#hamburgerBox #nav-content .navLogo {
		margin-bottom: 30px;
        width: 200px;
	}
	
	#hamburgerBox #nav-content ul li {
	   margin: 20px 0;
       font-weight: 700;
	}
	
	#hamburgerBox #nav-content ul li {
	   padding: 0 0 0 20px;
       position: relative;
       display: flex;
       flex-direction: column;
	}

	#hamburgerBox #nav-content ul li a {
	  display: block;
	  text-decoration: none;
	  color: #e60012;
	  font-size: 20px;
	  transition: .5s ease;
	}
	
	#hamburgerBox #nav-content ul li a::before {
        content: "";
        display: block;
        position: absolute;
        left: 0;
		top: 30%;
        width: 12px;
        height: 12px;
        background: #e60012;
        border-radius: 10px;
    }
	

	 /*ハンバーガー → × のアニメーション */
	.hamburger.open #nav-open span:nth-child(1),
	.hamburger.open #nav-open span:nth-child(3) {
	  top: 7px;
	}

	.hamburger.open span:nth-child(1) {
	  transform: rotate(45deg);
	}

	.hamburger.open span:nth-child(3) {
	  transform: rotate(-45deg);
	}

	.hamburger.open span:nth-child(2) {
	  opacity: 0;
	}
}



/*--- 画像ボケ防止 ---*/
@media screen and (min-width:769px) {
	img { 
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		image-rendering: crisp-edges;
		image-rendering: -webkit-optimize-contrast;
	}
}



@media screen and (max-width: 600px) {
    #hamburgerBox #nav-content ul li a {
        font-size: 18px;
    }
	
	#hamburgerBox #nav-content {
        padding: 25% 10% 0;
    }
	
	#footer .footerInr .footerLogo {
		flex-direction: column;
	}
}

