@charset "UTF-8";

body {
    font-family: europa,
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        Meiryo,
        sans-serif;
    font-style: normal;
    background-color: #fff;
    color: #404040;
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.1em;
    max-width: 1400px;
    margin: 0px auto;
}

h1 img {
    width: 105px;
    margin-right: 720px;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0px;
}

.flex2 {
    display: flex;
    justify-content: center;
    align-items: end;
    padding: 30px 0px;

}

header .flex a {
    color: #999;
    font-size: 14px;
}

#forsp {
    display: none;
}

#menu ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#menu li {
    padding-right: 30px;
    color: #999;
}

#menu li:hover {
    color: #404040;
}

#main {
    width: 45%;
}

.headerbtn {
    background-color: #ffaa33;
    border-radius: 50px;
    padding: 20px 80px;
    width: fit-content;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.2em;
    margin: 0px auto 100px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.headerbtn:hover {
    background-color: #fcc372;
}

h2 {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 0.2em;
    text-align: center;
}

#pcnon {
    display: none;
}

.slash {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 30px 0px 2px;
}

.slash::before,
.slash::after {
    content: "";
    width: 25px;
    height: 1px;
    background-color: #000;
    margin: 0px 4px 4px;
}

.slash::before {
    transform: rotate(45deg);
}

.slash::after {
    transform: rotate(-45deg);
}

header .flex2 p:nth-of-type(2) {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
}

header .flex2 p:last-of-type {
    margin: 30px auto 50px;
    width: 80%;
}

h3 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding: 50px 0px 30px;
}

#about img {
    width: 50%;
}

.normalbtn,
.lastbtn {
    border: #ffaa33 1px solid;
    border-radius: 50px;
    padding: 10px 30px;
    width: fit-content;
    color: #ffaa33;
    font-weight: bold;
    letter-spacing: 0.2em;
    margin: 0px auto 100px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.normalbtn:hover {
    background-color: #ffaa33;
    color: #fff;
}

h4 {
    font-size: 18px;
    font-weight: bold;
}

#point .flex:nth-of-type(odd) {
    justify-content: start;
}

.bc {
    position: relative;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background-color: #f0ddd6;
}

#point img {
    width: 50%;
}

#point h4 {
    position: absolute;
    top: 20%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#point .bc p {
    position: absolute;
    top: 55%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.column {
    display: flex;
    justify-content: end;
    align-items: center;
}

#step .flex {
    justify-content: start;
    align-items: start;
}

#step .wrap img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
    border: #fcc372 2px solid;
}

#big {
    width: 45%;
}

.wrapwrap h6 {
    padding: 10px 0px 30px;
}

#step .wrap p:first-child {
    color: #ffaa33;
    text-align: center;
}

#step h6 {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 0.2em;
}

#step .wrap:nth-child(2) {
    padding-left: 50px;
    width: 90%;
}

#step .wrap p:nth-child(2) {
    background-color: #f0f0f0;
    padding: 20px;
    margin: 10px 0px;
    border-radius: 20px;
    box-shadow: 10px 10px 15px -15px;
}

h5 {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

#other h3 {
    text-align: start;
}

#other .flex {
    justify-content: flex-start;
    align-items: start;
    flex-wrap: wrap;
}

#other .wrap {
    width: 20%;
    padding-bottom: 50px;
    text-align: center;
}

#other img {
    width: 100%;
}

dt {
    font-weight: normal;
}

#other dd {
    font-style: oblique;
}

.deco {
    text-decoration: line-through;
}

/* imgスライダー */
.slider {
    width: 100%;
}

.slider li {
    text-align: center;
}

.slider img {
    width: 17vw;
    height: 17vh;
    object-fit: contain;
    margin: 0 auto;
}

.slider .slick-slide {
    margin: 0 10px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
    position: absolute;
    /*絶対配置にする*/
    top: -10%;
    cursor: pointer;
    /*マウスカーソルを指マークに*/
    outline: none;
    /*クリックをしたら出てくる枠線を消す*/
    border-top: 1px solid #666;
    /*矢印の色*/
    border-right: 1px solid #666;
    /*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {
    /*戻る矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {
    /*次へ矢印の位置と形状*/
    right: -5.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
.slick-dots {
    margin: 20px;
    text-align: center;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width: 8px;
    /*ドットボタンのサイズ*/
    height: 8px;
    /*ドットボタンのサイズ*/
    display: block;
    border-radius: 50%;
    background: #ccc;
    /*ドットボタンの色*/
}

.slick-dots .slick-active button {
    background: #333;
    /*ドットボタンの現在地表示の色*/
}

#freegift .flex {
    align-items: start;
}

#freegift .wrap {
    width: 20%;
}

#freegift img {
    height: 20vh;
    width: 100%;
    object-fit: contain;
}

#freepic {
    text-align: center;
}

#freepic img {
    width: 550px;
    height: 330px;
    object-fit: cover;
    object-position: left;
    border-radius: 160px;
    padding-bottom: 30px;
}

.picbtn {
    background-color: #ffaa33;
    border-radius: 50px;
    padding: 20px 80px;
    width: fit-content;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.2em;
    margin: 0px auto 100px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.picbtn:hover {
    background-color: #fcc372;
}

footer {
    text-align: center;
}

footer ul {
    max-width: 500px;
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0px;
}

footer li,
footer p a {
    color: #ffba66;
}

footer small {
    font-size: 13px;
    padding: 50px 0px 100px;
}

@media screen and (max-width:1500px) {
    body {
        max-width: 1000px;
    }
}

@media screen and (max-width:900px) {
    body {
        width: 90%;
    }

    .spnone {
        display: none;
    }

    #forpc {
        display: none;
    }

    #forsp {
        display: block;
    }

    #global-nav li {
        display: block;
    }

    #global-nav {
        position: fixed;
        z-index: 999;
        top: 0;
        left: -120%;
        width: 85%;
        height: 100vh;
        background: rgba(240, 240, 240, 1);
        transition: all 0.6s;
    }

    #global-nav.panelactive {
        left: 0;
        z-index: 1;
    }

    #global-nav ul {
        position: absolute;
        z-index: 999;
        top: 30%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
    }

    #global-nav li {
        padding: 15px;
        font-size: 26px;
        letter-spacing: 0.2em;
    }

    #global-nav li:nth-child(3) {
        padding-top: 40px;
    }

    #global-nav li:nth-child(-n+2) {
        color: #000;
    }

    .menu-trigger {
        width: 50px;
        height: 50px;
        position: fixed;
        top: 10px;
        right: 5px;
        z-index: 2;
        outline: none;
    }

    .menu-trigger span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 50%;
        width: 25px;
        height: 3px;
        background-color: #404040;
        transform: translate(-50%, -50%);
    }

    .menu-trigger span:nth-of-type(1) {
        top: 15px;
    }

    .menu-trigger span:nth-of-type(2) {
        top: 23px;
    }

    .menu-trigger span:nth-of-type(3) {
        top: 31px;
    }

    #menu ul {
        justify-content: space-between;
    }

    #menu li {
        padding: 0px;
    }

    header .headerbtn {
        padding: 15px 50px;
        position: fixed;
        left: 50%;
        bottom: 20px;
        transform: translateX(-50%);
        margin: 0px auto;
        width: 95%;
        text-align: center;
        z-index: 999;
    }


    #menu li:hover {
        color: #999;
    }

    .headerbtn:hover {
        background-color: #ffaa33;
    }

    .normalbtn:hover {
        background-color: #fff;
        color: #ffaa33;
    }


    .flex,
    .flex2 {
        display: block;
        padding: 0px;
    }

    #other .flex,
    #freegift .flex {
        display: flex;
        justify-content: space-between;
        align-items: start;
        flex-wrap: wrap;
    }

    h1 img {
        padding: 15px 0px;
        margin: 0;
    }

    #main {
        width: 100%;
        padding: 30px 0px 0px;
    }

    #pcnon {
        display: block;
    }

    .slash {
        text-align: center;
    }

    header .flex2 p:last-of-type {
        width: 100%;
    }

    #about img {
        width: 100%;
    }

    .bc {
        margin: 0px auto;
        width: 275px;
        height: 275px;
    }

    #point .bc p {
        top: 56%;
        left: 50%;
        width: 190px;
        text-align: center;
    }

    #point img {
        width: 100%;
        padding-bottom: 70px;
    }

    .column {
        flex-direction: column-reverse;
    }

    #step h3 {
        padding-bottom: 0px;
    }

    #step .wrap p:first-child {
        text-align: start;
        margin: 30px 0px 0px 5px;
    }

    #step .wrap img {
        width: 80px;
        height: 80px;
    }

    #step .wrap h6 {
        text-align: center;
        margin-top: -60px;
    }

    #big {
        width: 100%;
        margin-top: 50px;
    }

    #step .normalbtn {
        margin-top: 30px;
    }

    #other .wrap {
        width: 50%;
    }

    .slick-prev {
        right: 5.5%;
    }

    .slick-next {
        right: 0.5%;
    }

    .slider img {
        width: 150px;
        height: 150px;
    }

    dl {
        width: 150px;
    }

    #freegift .wrap {
        width: 50%;
    }

    #freegift img {
        height: 35vh;
    }

    #freegift p {
        width: 70%;
        margin: 0 auto;
        padding-bottom: 30px;
    }

    #freepic img {
        width: 300px;
        height: 192px;
    }

    #freepic .picbtn {
        border-radius: 50px;
        padding: 15px 30px;
        margin: 0px auto 40px;
    }

    footer ul {
        display: block;
        justify-content: space-between;
        align-items: center;
        padding: 0px;
    }

    footer li {
        margin: 30px;
    }
}

@media screen and (max-width:600px) {
    #freegift img {
        height: 20vh;
    }
}