@charset "UTF-8";

body {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 750px;
    font-family: '游明朝 Medium', serif;
}

img {
    width: 100%;
    vertical-align: top;
    vertical-align: bottom;
}

.fv {
    position: relative;
}

.fv-btn {
    position: absolute;
    width: 43%;
    top: 2%;
    right: 2%;
    cursor: pointer;
    overflow: hidden;
    animation: anime2 0.5s ease 0s infinite alternate;
}
.fv-btn::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -20%;
    width: 40px;
    height: 100%;
    transform: scale(3) rotate(10deg);
    background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, .5) 100%, rgba(255, 255, 255, 0) 0%);

    animation-name: shiny;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}


.three-step {
    position: relative;
}

.present-btn {
    position: relative;
    overflow: hidden;
    margin-top: -1px;
}
.present-btn::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -20%;
    width: 40px;
    height: 100%;
    transform: scale(3) rotate(10deg);
    background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, .5) 100%, rgba(255, 255, 255, 0) 0%);

    animation-name: shiny;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.plus {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    line-height: 1;
    width: 6vw;
    max-width: 40px;
    height: 10px;
    max-height: 50px;
    background: currentColor;
    border-radius: 0.1em;
    position: absolute;
    bottom: 47.7%;
    right: 7%;
}
@media screen and (max-width:550px) {
    .plus {
        height: 6px;
    }
}

.plus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    transform: rotate(90deg);
    transition: 0.5s;
}

/*
プラスがクリックされたら縦棒を横にしてマイナスにする疑似要素
jQueryで付け外しを行う
  */
.active::before {
    transform: rotate(0);
    transition: 0.5s;
}

.present-open {
    display: none;
}




.slider,
.slider > div {
    background-position: center center;
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #000;
    /* overflow: hidden; */
    -moz-transition: transform 0.4s;
    -o-transition: transform 0.4s;
    -webkit-transition: transform 0.4s;
    transition: transform 0.4s;
}

.slider > div {
    position: absolute;
}

.slider > i {
    color: #5bbd72;
    position: absolute;
    font-size: 60px;
    margin: 20px;
    top: 40%;
    text-shadow: 0 10px 2px #223422;
    transition: 0.3s;
    width: 30px;
    padding: 10px 13px;
    background: #fff;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    line-height: 0;
    box-sizing: content-box;
    border-radius: 3px;
    z-index: 4;
}

.slider > i svg {
    margin-top: 3px;
}

.slider > .left {
    left: -100px;
}
.slider > .right {
    right: -100px;
}
.slider:hover > .left {
    left: 0;
}
.slider:hover > .right {
    right: 0;
}

.slider > i:hover {
    background: #fff;
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(-2px);
}

.slider > i.right:hover {
    transform: translateX(2px);
}

.slider > i.right:active,
.slider > i.left:active {
    transform: translateY(1px);
}

.slider:hover > div {
    transform: scale(1.01);
}

.hoverZoomOff:hover > div {
    transform: scale(1);
}

.slider > ul {
    position: absolute;
    bottom: -35px;
    left: 50%;
    z-index: 4;
    padding: 0;
    margin: 0;
    transform: translateX(-50%);
    border: none;
}

.slider > ul > li {
    padding: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    list-style: none;
    float: left;
    margin: 10px 10px 0;
    cursor: pointer;
    border: 1px solid #fff;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.slider > ul > .showli {
    background-color: #7ec03d;
    -moz-animation: boing 0.5s forwards;
    -o-animation: boing 0.5s forwards;
    -webkit-animation: boing 0.5s forwards;
    animation: boing 0.5s forwards;
}

.slider > ul > li:hover {
    background-color: #7ec03d;
}

.slider > .show {
    z-index: 1;
}

.hideDots > ul {
    display: none;
}

.showArrows > .left {
    left: 0;
}

.showArrows > .right {
    right: 0;
}

.titleBar {
    z-index: 2;
    display: inline-block;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    width: 100%;
    bottom: 0;
    transform: translateY(100%);
    padding: 20px 30px;
    transition: 0.3s;
    color: #fff;
}

.titleBar * {
    transform: translate(-20px, 30px);
    transition: all 700ms cubic-bezier(0.37, 0.31, 0.2, 0.85) 200ms;
    opacity: 0;
}

.titleBarTop .titleBar * {
    transform: translate(-20px, -30px);
}

.slider:hover .titleBar,
.slider:hover .titleBar * {
    transform: translate(0);
    opacity: 1;
}

.titleBarTop .titleBar {
    top: 0;
    bottom: initial;
    transform: translateY(-100%);
}

.slider > div span {
    display: block;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 0;
    color: #fff;
    text-align: center;
    padding: 0;
    width: 100%;
}

@keyframes boing {
    0% {
        transform: scale(1.2);
    }
    40% {
        transform: scale(0.6);
    }
    60% {
        transform: scale(1.2);
    }
    80% {
        transform: scale(0.8);
    }
    100% {
        transform: scale(1);
    }
}

/* -------------------------------------- */

#ns-slider1 {
    min-width: 60%;
}
.slider-text {
    min-width: 35%;
    padding-left: 20px;
}
.achievement {
    position: relative;
}
.product-slider-wrap {
    display: flex;
    width: 90%;
    height: 31%;
    margin: 0 auto;
    position: absolute;
    top: 63%;
    left: 5%;
}




.cta-btn {
    position: absolute;
    top: 23%;
    left: 5.5%;
    width: 90%;
    overflow: hidden;
    cursor: pointer;
    animation: anime1 0.5s ease 0s infinite alternate;
    transform-origin: center;
}

.cta-btn::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -20%;
    width: 40px;
    height: 100%;
    transform: scale(3) rotate(10deg);
    background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, .5) 100%, rgba(255, 255, 255, 0) 0%);

    animation-name: shiny;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.cta-btn:hover {
    animation-play-state: paused;
}



@keyframes anime1 {
    from {
        transform: scale(0.95, 0.95);
    }

    to {
        transform: scale(1.05, 1.05);
    }
}
@keyframes anime2 {
    from {
        transform: scale(1, 1);
    }

    to {
        transform: scale(1.03, 1.03);
    }
}
@keyframes anime3 {
    from {
        transform: scale(1, 1);
    }

    to {
        transform: scale(1.01, 1.01);
    }
}
@keyframes shiny {
    0% {
        left: -20%;
    }

    10% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

footer { 
    text-align: center;
    background-color: #242424;
    color: #FFFFFF;
    font-size: 20px;
    padding: 30px 0;
}
@media screen and (max-width:550px) {
    footer {
        font-size: 14px;
    }
}
footer p {
    margin: 0;
    margin-bottom: 10px;
}
footer p a {
    color: #FFFFFF;
    text-decoration: none;
}