@charset "UTF-8";

/* CSS Document */

/*----------------------------------------
PC用レイアウト(768px以上スクリーン)
----------------------------------------*/

/* body全体の初期スタイル調整 */

html,
body {
    width: 100%;
}

body {
    font-size: 62.5%;
    /*emの計算をしやすくするための定番設定*/
    font-family: "YuGothic", "Yu Gothic medium", "Hiragino Sans", "Meiryo", "sans-serif";
    font-weight: normal;
    color: #000;
}

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

    body {
        width: 100%;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }

}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
}

.gnav-pc {
    display: block !important;
}

.gnav-sp {
    display: none !important;
}

.sp {
    display: none !important;
}

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

    .gnav-pc {
        display: none !important;
    }

    .gnav-sp {
        display: block !important;
    }

    .sp {
        display: block !important;
    }

}

/*----------------------------------------
全体レイアウト/背景設定(PC)
----------------------------------------*/

/* 全体エリア(全体背景を設定するにはここ) */

#main {
    width: 100%;
    background-image: url(../images/pc_bg.png);
    position: relative;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 0 auto;
}

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

    #main {
        width: 100%;
        margin: 0%;
    }

}

#main-contents {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;

}

@media only screen and (max-width:768px) {
    #main-contents {
        width: 100vw;
        margin: 0 auto;
    }
}

/*----------------------------------------
下部固定ボタン
----------------------------------------*/

.fixed_btn {
    text-align: center;
    position: fixed;
    /* 重要 */
    z-index: 999;
    /* 重要 */
    max-width: 600px;
    margin: 0 auto;
    right: 0;
    left: 0;
    bottom: -1px;
    display: flex;
    pointer-events: none;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 1%;
    gap: 2%;

}

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

    .fixed_btn {
        max-width: 100%;
    }
}

.fixed_btn a {
    text-align: center;
    display: block;
    pointer-events: auto;
}

.is-active {
    /* 表示する */
    opacity: 1;
    visibility: visible;
    transition-duration: .4s;
}

.is-hidden {
    visibility: hidden;
    opacity: 0;
    transition-duration: .4s;
}

figure {
    width: 800px;
    height: auto;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

figure::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

figure:hover::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/*----------------------------------------
header
----------------------------------------*/

.img {
    vertical-align: bottom;
}

.gnav-pc ul {
    position: fixed;
    margin-top: 5%;
    margin-left: 6%;
    max-width: 25em;
    align-items: center;
}

@media only screen and (max-width:1100px) {
    .gnav-pc ul {
        display: none;
    }
}

.gnav-pc ul li {
    margin-bottom: 18%;
}

ul li a {
    font-family: "noto-sans-cjk-jp", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #2c2a29;
    text-decoration: none;
    font-size: 1.3em;
    letter-spacing: 0.1em;
}

.en {
    font-family: "din-2014", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 2.5em;
    letter-spacing: 0.08em;
    line-height: 1em;
}

ul li a:hover {
    color: #f36c21;
    transition-duration: .4s;
}

.menu-logo {
    width: 60%;
}

.menu-logo a:hover {
    opacity: 0.5;
    transition-duration: .4s;
}

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

    header {
        width: 100%;
        padding: 3% 4%;
        background: #fff;
        position: sticky;
        top: 0;
        align-items: center;
        overflow: hidden;
        height: auto;
        z-index: 999;
        font-size: 3em;
    }

    .logo {
        float: left;
        width: 20%;
    }

    #hamburger {
        float: right;
        position: relative;
        display: block;
        width: 8%;
        height: 25px;
        margin: 2% 0;
    }

    #hamburger span {
        position: absolute;
        top: 50%;
        left: 0;
        display: block;
        width: 100%;
        height: 2px;
        background-color: #2c2a29;
        transform: translateY(-50%);
    }

    #hamburger::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #2c2a29;
    }

    #hamburger::after {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 70%;
        height: 2px;
        background-color: #2c2a29;
    }

    .gnav-sp {
        z-index: 9999;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        display: block;
        width: 100%;
        background: rgba(44, 42, 41, .9);
        transition: all .2s ease-in-out;
        opacity: 0;
        transform: translateY(-100%);
        text-align: center;
    }

    .gnav-sp ul {
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .gnav-sp li {
        margin: 0;
        padding: 0;
    }

    .gnav-sp li span {
        font-size: 1.8em;
        color: #fff;
    }

    .gnav-sp li a,
    .sp-nav li span {
        display: block;
        padding: 20px 0;
    }

    .gnav-sp .close {
        position: relative;
        padding-left: 20px;
        margin-top: 5%;
    }

    /*バツ印線1*/
    .gnav-sp .close::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        display: block;
        width: 16px;
        height: 1px;
        background: #fff;
        transform: rotate(45deg);
    }

    /*バツ印線2*/
    .gnav-sp .close::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        display: block;
        width: 16px;
        height: 1px;
        background: #fff;
        transform: rotate(-45deg);
    }

    .toggle {
        transform: translateY(0);
        opacity: 1;
    }

    ul li a {
        font-family: "noto-sans-cjk-jp", sans-serif;
        font-weight: 500;
        font-style: normal;
        color: #f36c21;
        text-decoration: none;
        font-weight: 400;
        letter-spacing: 0.15em;
    }

    .menu .en {
        font-family: "din-2014", sans-serif;
        font-weight: 500;
        font-style: normal;
        letter-spacing: 0.1em;
        font-size: 2.5em;
        padding-bottom: 5%;
    }

    .menu-logo {
        width: 30%;
    }

}

/*----------------------------------------
FV
----------------------------------------*/

#fv {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

/*----------------------------------------
CVエリア
----------------------------------------*/

.cv_area {
    position: relative;
    margin: 0 auto;
    text-align: center;
}

.cv-btn {
    position: absolute;
    bottom: 6.5%;

}

.cv-btn img {
    width: 90%;
    transition-duration: .4s;
}

.cv-btn:hover {
    transform: scale(1.1);
    opacity: 0.6;
}

.cv-btn.anim-box {
    animation: fuwafuwa 1s ease 0s infinite alternate;
    transform-origin: center;
}

@keyframes fuwafuwa {
    from {
        transform: scale(0.9, 0.9);
    }

    to {
        transform: scale(1, 1);
    }
}

/*----------------------------------------
sec01_新発想
----------------------------------------*/

.newbrand {
    position: relative;
    margin-top: -1px;
}

.leaf {
    position: absolute;
    width: 25%;
    bottom: -4%;
    z-index: 100;
}

.mov_wrap {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    margin: auto;
    padding: 0 4% 8% 4%;
    background: none;
}

video.movie {
    width: 100%;
    max-width: 690px;
    border-radius: 20px;
}

/*----------------------------------------
sec02_新発想
----------------------------------------*/

.trouble {
    margin-top: -1px;
}

/*----------------------------------------
sec03_逆転発想
----------------------------------------*/

.solution {
    margin-top: -0.4px;
}

/*----------------------------------------
sec03_SV
----------------------------------------*/

.sv {
    margin-top: -1px;
}

/*----------------------------------------
sec05_髪の構成要素に着目
----------------------------------------*/

.component {
    margin-top: -1px;
}

/*----------------------------------------
sec06_問題
----------------------------------------*/

.problems {
    position: relative;
    margin: 0 auto;
    text-align: center;
}

.btn_gel {
    position: absolute;
    top: 49%;
    left: 1.5%;
}

.btn_gel img {
    width: 85%;
}

.btn_gel:hover {
    opacity: 0.6;
}

.btn_cream {
    position: absolute;
    bottom: 1.5%;
    left: 1.5%;
}

.btn_cream img {
    width: 85%;
}

.btn_cream:hover {
    opacity: 0.6;
}

/*----------------------------------------
sec07_ジェル紹介
----------------------------------------*/

#gel_contents {
    margin-top: -1px;
}

/*----------------------------------------
sec08_ジェル_ビフォーアフター
----------------------------------------*/


.before-after_wrap01 {
    background-image: url(../images/sec08_before_after.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    padding: 20% 0 5.7% 0;
    margin-top: -0.3px;
}

.before-after_wrap_inner01 {
    width: 92.5%;
    margin: 0 auto;
    text-align: center;
}

/*----------------------------------------
sec10_6つの成分の特徴
----------------------------------------*/

.gel_ingredient_point1 {
    margin-top: -1px;
}

.gel_ingredient_point3 {
    margin-top: -1px;
}

.gel_ingredient_point4 {
    margin-top: -1px;
}

/*----------------------------------------
sec12_クリーム_ビフォーアフター
----------------------------------------*/

.before-after_wrap02 {
    background-image: url(../images/sec12_before_after.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    padding: 20% 0 5.9% 0;
}

.before-after_wrap_inner02 {
    width: 92.5%;
    margin: 0 auto;
    text-align: center;
}

/*----------------------------------------
sec14_5つの成分の特徴
----------------------------------------*/

.cream_ingredient_point1 {
    margin-top: -1px;
}

.cream_ingredient_point4 {
    margin-top: -1px;
}

.cream_ingredient_point5 {
    margin-top: -1px;
}

/*----------------------------------------
sec14_3タイプのカーリーヘア
----------------------------------------*/

.curly_type1 {
    margin-top: -1px;
}

/*----------------------------------------
sec14_使い方
----------------------------------------*/

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

.howtouse_tit {
    margin-top: -0.42px;
}

}

/*----------------------------------------
sec17_商品一覧
----------------------------------------*/
#line-up {
    position: relative;
    margin: 0 auto;
    text-align: center;
}

.carousel_wrap {
    position: absolute;
    bottom: 4%;
}

.c-carousel {
    position: relative;
    width: 92%;
    margin: 0 auto;
    text-align: center;
}

.c-carousel__activator-main {
    position: absolute;
    z-index: -1;
    position: fixed
}

.c-carousel__main {
    overflow: hidden;
    position: relative;
}

.c-carousel__main-track {
    display: flex;
    white-space: nowrap;
    transition: transform 0.5s ease-out;
}

.c-carousel__main-item {
    flex-shrink: 0;
    width: 100%;
    position: relative;

}

.c-carousel__main-image {
    display: block;
    width: 100%;
}

.c-carousel__main-control-item {
    display: none;
}

.c-carousel__btn-prev-main,
.c-carousel__btn-next-main {
    position: absolute;
    top: 50%;
    right: 16px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10%;
    transform: translateY(-50%);
    transition: opacity 0.3s;
    cursor: pointer;
}

.c-carousel__btn-prev-main:hover {
    opacity: 0.6;
}

.c-carousel__btn-next-main:hover {
    opacity: 0.6;
}


.c-carousel__btn-prev-main {
    right: auto;
    left: 16px;
}

.c-carousel__activator-main:nth-child(1):checked~.c-carousel__main .c-carousel__main-control-item:nth-child(1) {
    display: block;
}

.c-carousel__activator-main:nth-child(2):checked~.c-carousel__main .c-carousel__main-control-item:nth-child(2) {
    display: block;
}

.c-carousel__activator-main:nth-child(3):checked~.c-carousel__main .c-carousel__main-control-item:nth-child(3) {
    display: block;
}

.c-carousel__activator-main:nth-child(1):checked~.c-carousel__main .c-carousel__main-track {
    transform: translateX(calc(-100% * 0));
}

.c-carousel__activator-main:nth-child(2):checked~.c-carousel__main .c-carousel__main-track {
    transform: translateX(calc(-100% * 1));
}

.info-btn1 {
    position: absolute;
    bottom: 6.5%;
    left: 5.5%;
    transition: opacity 0.3s;
}

@media only screen and (max-width:768px) {
    .info-btn1 {
        position: absolute;
        bottom: 6.5%;
        left: 3.5%;
        transition: opacity 0.3s;
    }
}

.info-btn1 img {
    width: 80%;
}

.info-btn1:hover {
    opacity: 0.6;
}

.info-btn2 {
    position: absolute;
    bottom: 6.5%;
    left: 5.5%;
    transition: opacity 0.3s;
}

@media only screen and (max-width:768px) {
    .info-btn2 {
        position: absolute;
        bottom: 6.5%;
        left: 3.5%;
        transition: opacity 0.3s;
    }
}

.info-btn2 img {
    width: 80%;
}

.info-btn2:hover {
    opacity: 0.6;
}

/*----------------------------------------
フッター部分
----------------------------------------*/

.footer {
    background-image: linear-gradient(324deg, rgba(243, 108, 33, 1) 40%, rgba(242, 144, 90, 1) 90%);
    padding: 2.5em 0em;
    text-align: center;
    font-size: 1.4em;
    color: #fff;

}

footer ul {
    display: flex;
    justify-content: center;
}

footer ul li {
    padding: 0 1.5%;
}

footer li+li {
    border-left: 1px solid #fff;
}

.footer a {
    color: #fff;
    font-size: 0.9em;
    letter-spacing: 0.05em;
}

.footer a:hover {
    color: #fcf909;
}

.footer_logo {
    transition: opacity 0.3s;
}

.footer_logo img {
    width: 12%;
    margin-bottom: 2%;
    transition: opacity 0.3s;

}

.footer_logo:hover {
    opacity: 0.6;
}

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

    .footer {
        background-image: linear-gradient(324deg, rgba(243, 108, 33, 1) 40%, rgba(242, 144, 90, 1) 90%);
        padding: 2em 1.5em;
        text-align: center;
        font-size: 1.5em;
        color: #fff;
    }

    footer ul {
        display: flex;
        justify-content: center;
        margin-bottom: 5%;
    }

    .footer_logo img {
        width: 40%;
        margin-bottom: 7%;
        margin-top: 7%;
        transition-duration: .4s;
    }

    .footer_logo:hover {
        opacity: 0.6;
    }    

}