@charset "utf-8";
@media screen and (max-width:480px){
body {
    margin: 0;
    padding: 0;
    color: #fff;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

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

button {
    display: none;
}

h2 {
    font-size: 2rem;
    padding-top: 64px;
    line-height: 2;
    text-align: center;
}

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

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

p {
    line-height: 1.875;
    padding-top: 35px;
    text-align: center;
    justify-content: 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: 30px;
}

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;
    /* メニューを画面に入れる */
}

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

.gallery {
    background-color: #fff;
    padding-top: 60px;
}

.image-container_pc {
    display: none;
}

/* カルーセル開始*/
img .sp {
    width: auto;
    height: 490px;
    align-items: center;
    justify-items: center;
}

.carousel {
    overflow: hidden;
}

.carousel .image-container_sp {
    display: flex;
    transition: transform 0.4s;
    align-items: center;
    justify-items: center;
    padding-top: 2px;
}

.carousel .navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.carousel .indicator {
    list-style: none;
    margin: 0;
    padding-top: 20px;
    padding-bottom: 0;
    display: flex;
    padding-left: 40vw;
}

.carousel .indicator li {
    width: 13px;
    height: 13px;
    margin-left: 7px;
    margin-right: 7px;
    background-color: #f5f4ef;
    border-radius: 100%;
    cursor: pointer;
}

.carousel .indicator li.current {
    background-color: #CBC4B7;
}

/* カルーセル終了*/

.profile {
    display: none;
}

.contact {
    background-color: #8146BC;
    padding-bottom: 100px;
}

.pc_nekomata {
    display: none;
}

.pc_nukko {
    display: none;
}

.contact section {
    padding-bottom: 75px;
    justify-content: center;
}

.contact p:nth-of-type(1) {
    margin-top: 40px;
}

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

ul {
    list-style: 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;
}

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

}

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

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

/*===========
inview
===========*/

.fadeIn_up {
    opacity: 0;
    transform: translate(0,20%);
    transition: 2s;
  }
  
  .fadeIn_up.is-show {
    transform: translate(0, 0);
    opacity: 1;
  }  
}
@media screen and (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;
    }

    /*カルーセル*/
    .sp {
        display: none;
        padding-top: 0;
    }

    .image-container_sp {
        display: none;
    }

    .pc {
        width: 100%;
        height: auto;
        align-items: center;
        justify-items: center;
    }

    button {
        display: flex;
        appearance: none;
        width: 40px;
        height: 40px;
        border: none;
        padding: 0;
        flex: 0 0 auto;
        cursor: pointer;
    }

    .carousel .image-container_pc {
        display: flex;
        transition: transform 0.4s;
        align-items: center;
        justify-items: center;
        padding-top: 20px;
    }

    .carousel .navigation {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 10px;
    }

    .carousel .indicator {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
    }


    /*カルーセル終了*/

    .gallery .container {
        background-color: #fff;
        display: contents;
    }

    .gallery_images {
        /*position: relative;*/
        max-width: 870px;
        height: auto;
        margin-left: auto;
        margin-right: auto;
        overflow: hidden;
        display: flex;
        transition: transform 0.4s;
        align-items: center;
    }

    .gallery .container .pc {
        align-items: top;
        display: flex;
        justify-content: center;
    }

    .profile {
        background-color: #8146BC;
        display: flex;
        justify-content: center;
    }


    .nekomata_profile {
        justify-content: center;
        padding: 55px 10% 55px;
    }

    .profileimage {
        width: 300px;
        height: auto;
        float: left;
        margin-right: 50px;
    }

    dt {
        display: flex;
        align-items: flex-end;
        justify-content: left;
        margin-top: 0px;
        margin-bottom: 10px;
        position: relative;
    }

    .name::after {
        position: absolute;
        content: "";
        background-color: #fff;
        height: 2px;
        bottom: -10px;
        width: 40vw;
    }

    dl {
        padding-bottom: 65px;
    }

    .name {
        font-size: 2em;
        line-height: 1;
        display: flex;
        text-align: left;
    }

    .profile .icon {
        margin-bottom: 10px;
        margin-left: 30px;
    }

    .profile .icon img {
        width: 20px;
        height: auto;
        /*border-radius: 6px;*/
       /* border: 1px, solid, #fff;*/
        margin-right: 5px;

    }

    .gaiyou {
        text-align: left;
        padding-top: 1rem;
    }

    .contact {
        background-color: #fff;
        color: #8146BC;
        padding-bottom: 0;

    }

    .bunshou {
        display: none;
    }

    .pc_nekomata {
        display: flex;
        padding-top: 0px;
    }

    .pc_nukko {
        display: flex;
        padding-top: 0px;

    }

    .contact p {
        padding: 0 10% 0;
    }

    .contact section {
        padding-bottom: 30px;
    }

    br {
        display: none;
    }

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

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

    }

    .acount h3 {
        padding-bottom: 0px;
    }

    .contact h3 {
        text-align: center;
        margin-top: 30px;
    }

    /*===========
inview
===========*/

.fadeIn_up {
    opacity: 0;
    transform: translate(0,20%);
    transition: 2s;
  }
  
  .fadeIn_up.is-show {
    transform: translate(0, 0);
    opacity: 1;
  }
  
}