@charset "UTF-8";

/* loader */

.loader {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
	background: #FDEDFD;
}

.loader-inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

@-webkit-keyframes ball-scale {
	0% {
		-webkit-transform: scale(0);
						transform: scale(0); }
	100% {
		opacity: 0;
		-webkit-transform: scale(1);
						transform: scale(1); } }

@keyframes ball-scale {
	0% {
		-webkit-transform: scale(0);
						transform: scale(0); }
	100% {
		opacity: 0;
		-webkit-transform: scale(1);
						transform: scale(1); } }

.ball-scale > div {
	display: inline-block;
	width: 80px;
	height: 80px;
	margin: 2px;
	border-radius: 100%;
	background-color: #fff;
	-webkit-animation: ball-scale 1s 0s ease-in-out infinite;
					animation: ball-scale 1s 0s ease-in-out infinite;
	-webkit-animation-fill-mode: both;
					animation-fill-mode: both; }


body {
    position: relative;
    font-size: 16px;
}

img {
    width: 100%;
    height: auto;
}

.-pc {
    display: block;
}

.-sp {
    display: none;
}

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

@-webkit-keyframes fadeInUpSmall {
    from {
    opacity: 0;
    transform: translate3d(0, 30%, 0);
    }
    to {
    opacity: 1;
    transform: none;
    }
}
@keyframes fadeInUpSmall {
    from {
    opacity: 0;
    transform: translate3d(0, 30%, 0);
    }
    to {
    opacity: 1;
    transform: none;
    }
}
.fadeInUpSmall {
    -webkit-animation-name: fadeInUpSmall;
    animation-name: fadeInUpSmall;
}


/* drawer */

.openbtn {
    width: 60px;
    height: 60px;
    background-color: #EA6DA4;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.openbtn-wrap {
    position: relative;
    width: 40px;
    height: 22px;
}

.openbtn-item {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.openbtn-item.-item01 {
    top: 0;
}

.openbtn-item.-item02 {
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.openbtn-item.-item03 {
    bottom: 0;
}

.-active .openbtn .openbtn-item.-item01 {
    top: 50%;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

.-active .openbtn .openbtn-item.-item02 {
    opacity: 0;
}

.-active .openbtn .openbtn-item.-item03 {
    bottom: auto;
    top: 50%;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

@media (min-width: 768px) {

    .openbtn {
        transition: 0.3s;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
    }

    .openbtn:hover {
        background-color: #D5BB2E;
    }
}

@media screen and (max-width: 768px) {

    .openbtn {
        width: 54px;
        height: 54px;
    }

}


/* drawer */

.-linktxt {
    height: 100%;
    width: auto;
}

.drawer {
    background-color: #FDEDFD;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    z-index: 998;
    opacity: 0;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
}

.-active .drawer {
    opacity: 1;
    left: 0;
}

.drawer-wrapper {
    padding: 159px 0;
    margin: 0 auto;
}

.drawer-link-item {
    display: block;
    height: 43px;
    margin-bottom: 80px;
}

/* .drawer-link-item:first-child {
    margin-bottom: 60px; 
}*/


.drawer-link-item.-pagelink {
    height: 45px;
}

.drawer-link-item.-aboutlink {
    margin-bottom: 40px;
}

.drawer-link-item.-smalllink {
    height: 30px;
    margin-bottom: 40px;
}


@media (min-width: 768px) {

    .drawer-wrapper {
        max-width: 1000px;
        width: 90%;
        display: flex;
    }

    .drawer-link.-left {
        margin-right: 12%;
    }    

    .drawer-link-item {
        transition: 0.3s;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
    }

    .drawer-link-item:hover {
        opacity: 0.6;
    }

}

@media screen and (max-width: 768px) {

    .drawer {
        overflow-y: scroll;
    }

    .drawer-wrapper {
        padding: 21.333vw 0;
    }
    
    .drawer-link-item {
        text-align: center;
        height: 26px;
        margin-bottom: 12.8vw;
    }
    
    .drawer-link-item.-pagelink {
        height: 27px;
    }

    .drawer-link-item.-aboutlink {
        margin-bottom: 8vw;
    }

    .drawer-link-item.-smalllink {
        height: 21px;
        margin-bottom: 8vw;
    }

    .drawer-link-item.-smalllink:last-child {
        margin-bottom: 12.8vw;
    }

}

/* last */

.last {
    background-color: #EA6DA4;
    }

.last-wrapper {
    padding: 40px 0;
    }

.last-logo {
    width: 30%;
    margin: 0 auto 30px;
    }

.last-topbtn {
    display: block;
    background-color: #fff;
    border: 2px solid #fff;
    color: #EA6DA4;
    font-size: 20px;
    font-weight: bold;
    font-family: source-han-serif-japanese,serif;
    line-height: 1.5;
    text-align: center;
    width: 180px;
    margin: 0 auto;
    padding-bottom: 1px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    }

@media screen and (min-width: 769px) {

.last-topbtn {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    }

.last-topbtn:hover {
    color: #fff;
    background-color: #EA6DA4;
    }

}

@media screen and (max-width: 768px) {

.last-wrapper {
    padding: 10.666vw 0;
    }
    
.last-logo {
    width: 67.536%;
    margin: 0 auto 5.333vw;
    }
    
.last-topbtn {
    font-size: 16px;
    line-height: 1.5;
    width: 165px;
    }

}

