@charset "utf-8";
@media screen and (max-width:480px){

body {
    margin: 0;
    padding: 0;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    ;
}

h2,
h3,
p,
ul,
li,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
}

h2 {
    color: #8146BC;
    font-size: 2rem;
    padding-top: 90px;
    line-height: 2;
    text-align: center;
}

h2 span {
    text-align: center;
    padding-bottom: 13px;
    border-bottom: 6px solid #FFB100;
}

h3 {
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    text-align: center;
    position: relative;
    margin-top: 40px;
    margin-bottom: 10px;
}

p {
    color: #8146BC;
    line-height: 1.875;
    padding-top: 35px;
    text-align: center;
}

.container {
    width: 100%;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    background-color: #6420A8;
    z-index: 10000;
}

header img {
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: 30px;
    width: auto;
    height: 20px;
}

header img:nth-child(2) {
    width: 37px;
    height: 30px;
    padding-right: 30px;
}

.header__nav {
    display: none;
}

/* ハンバーガーメニュー */
/* チェックボックスを非表示にする */
.drawer_hidden {
    display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
    /* 重なり順を一番上にする */
    cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #fff;
    transition: 0.5s;
    position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
    bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
    top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked~.drawer_open span {
    background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked~.drawer_open span::before {
    bottom: 0;
    transform: rotate(45deg);
    background-color: #8146BC;
}

#drawer_input:checked~.drawer_open span::after {
    top: 0;
    transform: rotate(-45deg);
    background-color: #8146BC;
}

/* メニューのデザイン*/
.nav_content_hm {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    /* メニューを画面の外に飛ばす */
    z-index: 99;
    background: #fff;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    transition: .5s;
    padding: 200px 0 0;
    justify-items: center;
}

li.nav_item_hm {
    padding-bottom: 37px;
}

.nav_item_hm a {
    text-decoration: none;
    color: #8146BC;
    justify-content: center;
}

li.nav_item_hm a:hover {
    color: #FFB100;
}

.nav_icons_hm img {
    justify-content: center;
    margin: 27px;
}

/* メニュー黒ポチを消す */
.nav_list_hm {
    list-style: none;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked~.nav_content_hm {
    left: 0;
    /* メニューを画面に入れる */
}

/*ハンバーガー終了*/

.acount {
    padding-top: 65px;
    padding-bottom: 75px;
    background-color: #8146BC;
}

.bunshou {
    background-color: #fff;
    padding-bottom: 75px;
}

.pc_nekomata {
    display: none;
}

.pc_nukko {
    display: none;
}

.button {
    text-align: center;
    padding: 20px;
    margin: 40px;
    margin-top: 20px;
    align-items: center;
}

.button a {
    font-size: 20px;
    background: url(../img/yajirushi.png), linear-gradient(to right, #FFB100, #6420A8);
    background-repeat: no-repeat;
    background-position: 90%;
    appearance: none;
    color: #fff;
    padding: 15px 30px;
    font-weight: bold;
    text-decoration: none;
    min-width: 260px;
    display: inline-block;
    border-radius: 50px;
    border: 1px, solid, #fff;
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.65);
    text-indent: -15px;
}

.button img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

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

.button a:hover {
    background: url(../img/yajirushi.png), #FFB100;
    background-repeat: no-repeat;
    background-position: 90%;
    appearance: none;
    color: #fff;

}

footer {
    color: #fff;
    background: url(../img/footer.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    align-items: bottom;
}

footer p {
    color: #fff;
    font-size: 12px;
    padding-top: 117px;
    padding-bottom: 20px;
    text-align: center;
}
}

@media (min-width:768px) {
    header .container {
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        background-color: #6420A8;
        width: 100%;
        z-index: 10000;
    }

    header .container img:nth-of-type(1) {
        margin: 0 30px 0;
    }

    header .container img:nth-of-type(2) {
        display: none;
    }

    .header__nav {
        margin: 0 40px 0;
        display: flex;
        justify-content: space-around;
    }

    /*header nav {
        margin: 0 40px 0;
        display: flex;
        justify-content: space-around;

    }*/

    .nav__items {
        display: flex;
        justify-content: space-around;
        list-style: none;
    }

    .nav__item a {
        align-items: center;
        color: #fff;
        display: flex;
        font-family: 'Inter', sans-serif;
        font-size: 22px;
        height: 72px;
        text-decoration: none;
        margin-right: 10vw;
    }

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

    nav a img {
        width: 20px;
        height: auto;
        border-radius: 6px;
        border: 1px, solid, #fff;
    }

    .nav__item a:hover {
        color: #FFB100;
    }

    .humburger {
        display: none;
    }

    .bunshou {
        display: none;
    }

    .pc_nekomata {
        display: flex;

    }

    .pc_nukko {
        display: flex;
    }

  h2 {
        padding: 120px 0 57px;
    }

    p {
        text-align: center;
        justify-content: center;
        color: #fff;
    }

    .acount {
        display: flex;
        flex-flow: row;
        justify-content: space-around;
        align-items: center;
        padding-top: 100px 0 100px;
    }

    dl {
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
    }

}