@charset "utf-8";
/* pcとspでもともと全く別のページ・全く別のソースだったので、cssソースが分かれています */

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");

/* common */
* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-weight: normal;
    vertical-align: baseline
}

*,*::before,*::after {
    box-sizing: border-box
}

article,aside,details,figcaption,figure,main,footer,header,hgroup,menu,nav,section {
    display: block
}

html {
    font-size: 10px;
    line-height: 1
}

input:not([type=checkbox]),textarea,button,select {
    margin: 0;
    padding: 0;
    -ms-appearance: none;
    -webkit-appearance: none;
    appearance: none
}

ol,ul {
    list-style: none
}

main {
    display: block
}

button {
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
    cursor: pointer;
    font-family: "Hiragino Kaku Gothic ProN",Meiryo,sans-serif
}

a {
    text-decoration: none
}

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

/* #wrapはsp #wrapperはpc */
@media(max-width: 640px) {
    #wrap {
        display: block;
        width: 100%;
        position: relative;
        padding-bottom: 250px;
    }
    .wrapper {
        display: none;
    }
}
@media(min-width: 641px) {
    #wrap {
        display: none;
    }
    .wrapper {
        display: block;
    }
}

/* modal.cssの上書き */
.modaal-inner-wrapper {
    padding: 0;
}
.modaal-container {
    width: auto;
    background: none;
}
.modaal-content-container {
    padding: 0;
}
/* .modaal-close {
    width: 40px;
    height: 40px;
    right: 17px;
    top: 17px;
}
.modaal-close::before,
.modaal-close::after {
    top: 5px;
    left: 17px;
    width: 2px;
    height: 27px;
} */

@media (max-width: 640px) {
.modaal-inner-wrapper {
    padding: 10% 5%;
}
/* .modaal-wrapper .modaal-close {
    width: 9vw;
    height: 9vw;
    top: 2vw;
    right: 2vw;
}
.modaal-close::before,
.modaal-close::after {
    top: 1.6vw;
    left: 4.2vw;
    width: 0.5vw;
    height: 5.5vw;
} */
}