@charset "UTF-8";

/* CSS Document */

/*==================================================

container
=================================================*/

html {
	background: #FFF;
}
body {
    position: relative;
    left: 0;
}
#wrapper {
	width: 100%;
	height: 100%;
	position: relative;
	margin: 0 auto;
}


/*==================================================

header
=================================================*/

header {
	width: 100%;
	position: -webkit-sticky;
    position: sticky;
	min-width: 100%;
	background-color: rgba(255, 255, 255, 1);
	top: 0;
	left: 0;
	z-index: 7!important;
	
	padding-top: 0;
	
	/* animation */
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
    padding: 25px 5%;
}
header.bg {
    background-color: rgba(255, 255, 255, 1);
}
#header-inner {
	width: 100%;
    max-width: 1280px;
	position: relative;
	margin: 0 auto;
}
#header-inner .header-link {
    width: 60%;
    max-width: 600px;
    position: absolute;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    top: 50%;
	right: 0;
	transform: translate(0, -50%);
    z-index: 2;
}
#header-inner .header-link a {
    width: 31%;
    display: block;
    position: relative;
    font-size: clamp(1.2rem, 1.4vw, 1.4rem);
    line-height: 180%;
	color: #FFF;
    text-align: center;
    text-decoration: none;
    background-color: #000;
    padding: .7em 1em;
}
@media (hover: hover) {
    #header-inner .header-link a:hover {
        opacity: 1;
        background-color: #e60012;
    }
}
#header-inner .header-link a::after {
    content: " ";
	display: block;
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #e60012;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    top: 0;
    left: 0;
    z-index: 1;
}

/* header PC */

#header-logo {
	width: 100%;
	max-width: 100%;
	z-index: 5!important;
}


#header-inner img {
    width: 100%;
	max-width: 100%;
	height: auto;
}

/* header img */

#header-logo img {
	width: 100%;
	max-width: 160px;
	height: auto;
    vertical-align: middle;
}


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

/*==================================================

contents
=================================================*/

.small-font {
	font-size: 55%;
}
.normal-font {
	font-size: 62.5%;
}
.large-font {
	font-size: 70%;
}

#contents {
    width: 100%;
    position: relative;
}


.anchor-item {
	width: 1px;
	height: 1px;
	position: absolute;
	top: -120px;
	left: 0;
}


/* 印刷時 */

@media print {
	header {
		position: absolute;
	}
}

/*==================================================

button
=================================================*/

/* ボタン */

.button {
	width: 100%;
	max-width: 360px;
	display: block;
	position: relative;
	cursor: pointer;
	font-size: clamp(1.6rem, 2vw, 2rem);
    line-height: 180%;
	color: #FFF;
	overflow: hidden;
	text-align: center;
	text-decoration: none;
    border-radius: 60px;
	background-color: #000;
    border: 3px solid #000;
    background-image: url("../../lp_images/blank.png");
    background-position: right 30px center;
    background-repeat: no-repeat;
    background-size: 7%;
    margin: 0 auto;
	padding: .9em 1em;
}

@media (hover: hover) {
    .button:hover {
        opacity: 1;
        color: #ff0014;
        background-color: #FFF;
    }
}
.button-l {
    max-width: 480px;
    text-align: center;
    font-size: clamp(1.6rem, 2vw, 2.4rem);
    background-size: 11px;
    background-position: right 15px center;
    margin: 3% auto 0;
    padding: 1em 1em;
}

[class^="button"] {
	
	/* animation */
	
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}



/*==================================================

footer
=================================================*/

.pagetop {
	width: 150px;
	height: 45px;
	position: fixed;
	right: -150px;
	bottom: 80px;
	z-index: 1001!important;
	
	/* animation */
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.pagetop-visible {
	right: 0;
}
#footer-pagetop {
	width: 100%;
	max-width: 49px;
	text-align: center;
	margin: 5% auto 0;
}

footer {
	width: 100%;
    position: relative;
    background-color: #FFF;
    padding: 80px 0 80px;
}
footer .inner {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}
footer .inner .footer-link {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
footer .inner .footer-link a {
    width: 30%;
    display: block;
    position: relative;
    font-size: clamp(1.6rem, 2vw, 2rem);
    line-height: 180%;
	color: #FFF;
    text-align: center;
    text-decoration: none;
    background-color: #000;
    padding: 1.2em 1em;
}
@media (hover: hover) {
    footer .inner .footer-link a:hover {
        opacity: 1;
        background-color: #e60012;
    }
}
footer .inner .footer-link a::after {
    content: " ";
	display: block;
    position: absolute;
    width: 35px;
    height: 35px;
    background-color: #e60012;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    top: 0;
    left: 0;
    z-index: 1;
}
footer img {
	width: 100%;
	max-width: 100%;
	height: auto;
}
footer #footer-logo {
    width: 40%;
	max-width: 220px;
    margin: 80px auto 40px;
}

footer p {
    width: 100%;
    color: #999;
	font-size: 1.4rem;
	line-height: 180%;
	text-align: center;
}


/*==================================================

size m
=================================================*/


@media only screen and (min-width:1px) and (max-width: 860px) {
    
    .anchor-item {
		top: -150px;
	}
}

@media only screen and (min-width:1px) and (max-width: 768px) {
	
	#wrapper {
		width: 100%;
		min-width: 100%;
	}
	
	/*==================================================
	
	header
	=================================================*/
	
	header {
		width: 100%;
		min-width: 100%;
        padding: 10px 0 0;
	}
    #header-inner {
        width: 100%;
    }
    #header-logo {
        width: 100%;
        max-width: 100%;
        position: relative;
        text-align: center;
        margin: 0 auto 10px;
    }
    #header-logo span {
        font-size: 1.4rem;
    }
    #header-logo img {
        max-width: 100px;
    }
    #header-inner .header-link {
        width: 100%;
        max-width: 100%;
        position: relative;
        top: 0;
        right: 0;
        transform: translate(0, 0);
        z-index: 2;
    }
    #header-inner .header-link a {
        width: 33.33%;
        display: block;
        position: relative;
        font-size: clamp(1.2rem, 1.2vw, 1.4rem);
        border-top: 3px solid #e60012;
        border-left: 1px solid #FFF;
    }
    #header-inner .header-link a::after {
        content: " ";
        display: none;
    }
	.sp-only {
		display: block;
	}
	.pc-only {
		display: none;
	}
	
	/*==================================================
	
	contents
	==================================================*/
	
    
	#contents {
		margin: 0 auto;
	}

	.button {
        font-size: 1.6rem;
        padding: .8em 1em;
    }
    .button-l {
        margin: 6% auto 0;
        padding: 1em 1em;
    }
	
	
	/*==================================================
	
	footer
	=================================================*/
	
    .pagetop {
        bottom: 80px;
    }
	.pagetop-visible {
		right: -100px;
	}
    
    footer {
        width: 100%;
        position: relative;
        background-color: #FFF;
        padding: 0 0 80px;
    }
    footer .inner {
        width: 90%;
        max-width: 1100px;
        margin: 0 auto;
    }
    footer .inner .footer-link {
        width: 100%;
        flex-direction: column;
    }
    footer .inner .footer-link a {
        width: 100%;
        display: block;
        position: relative;
        font-size: clamp(1.6rem, 2vw, 2rem);
        line-height: 180%;
        color: #FFF;
        text-align: center;
        text-decoration: none;
        background-color: #000;
        margin-top: 4%;
        padding: 1.2em 1em;
    }
    @media (hover: hover) {
        footer .inner .footer-link a:hover {
            opacity: 1;
            background-color: #e60012;
        }
    }
    footer .inner .footer-link a::after {
        content: " ";
        display: block;
        position: absolute;
        width: 25px;
        height: 25px;
        background-color: #e60012;
        clip-path: polygon(0 0, 0% 100%, 100% 0);
        top: 0;
        left: 0;
        z-index: 1;
    }
    footer img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    footer #footer-logo {
        width: 40%;
        max-width: 220px;
        margin: 8% auto 5%;
    }
	
}

/*==================================================

size s
==================================================*/

@media only screen and (min-width:1px) and (max-width: 568px) {
	
	
	/*==================================================
	
	header
	==================================================*/

		
	/*==================================================
	
	Navi
	==================================================*/
	
	
	/*==================================================
	
	contents
	==================================================*/
	
	
	/*==================================================
	
	footer
	==================================================*/
	

}

@media only screen and (min-width:1px) and (max-width: 480px) {
	
	
	/*==================================================
	
	header
	==================================================*/

	
	/*==================================================
	
	Navi
	==================================================*/
	
	
	/*==================================================
	
	contents
	==================================================*/
	
	
	/*==================================================
	
	table
	==================================================*/
	
	
	/*==================================================
	
	footer
	==================================================*/
	
	
}