@charset "UTF-8";

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    font-size: 100%;
}

body {
    margin: 0;
    font-family: 'Zen Maru Gothic', 'Montserrat Alternates',sans-serif;
}

/*a {
    text-decoration: none;
    color: black;
}*/

a:hover {
    color:#8AE8FF;
    transition: color,0.4s;
}

h2 {
    font-family: 'Montserrat Alternates', 'Zen Maru Gothic', sans-serif;
    font-size: 2rem;
    font-weight: 400;
}

h3 {
    font-weight: 400;
    font-size: 1.3rem;
}

p,a{
    font-weight: 200;
    line-height: 1.7rem;
}

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

footer {
    height: 15vh;
    text-align: center;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    padding-bottom: 10vh;
    position: absolute;
    bottom: 0;
    }


/* Layout */
    .container {
        height: 100vh;
        overflow: auto;
        scroll-snap-type: y mandatory;
        position: relative;
    }
    .item {
        height: 100vh;
        width: 100%;
        scroll-snap-align: start;
        display: flex;
        align-items: center;
        justify-content: center;
    }

/* nav-menu */
    .menu-btn {
        top: 15px;
        right: 15px;
        border: none;
        height: 40px;
        width: 40px;
        position: fixed;
        z-index: 3;
    }

    .close-btn {
        margin: auto 0;
        text-decoration: none;
        display: block;
        margin: auto;        
    }

    .close-btn p {
        color: lightgray;
    }

    .menu-list {
        background-color: rgba(255 255 255 / 90%);
        width: 25%; 
        position: fixed;
        z-index: 2;
        top: 0px;
        right: 0px;
        overflow: hidden;
        height: 100vh;
        transition: 0.8s ease-out;
        transition-delay: 0.2s;
        opacity: 0;
    }

    .menu-list li {
        text-align: center;
        margin: 2rem 0;
        text-decoration: none;
    }

    .menu-list.open-menu {
        opacity: 1;
    }

    .space {
        height: 15%;
    }
    

/* site-title */
    .site-title {
        display: flex;
        justify-content: center;
    }
    
    .title-animation {
        animation-name: title-animation;
        animation-duration: 3.5s;
        animation-fill-mode: forwards;
        animation-timing-function: ease-out;
        opacity: 0;
    }
    
    .title-logo {
        padding: 5%;
        max-width: 600px;
        max-height: 600px;
    }

    @keyframes title-animation {
        0% {
            opacity: 0%;
            transform: translateY(100px);
        }


        100% {
            opacity: 100%;
            transform: translateY(0);
        }
    }



/* About */
    .about {
        height: 100vh;
        width: 100%;
        background-image: url(../images/bg1sp.png);
        background-size: cover;
        background-repeat: no-repeat;
        justify-content: flex-start;
    }

    .about h2,.about p {
        padding-left: 8%;
    }

    .about h2 {
        padding-top: 10vh;
    }

    .about p {
        padding-top: 3vh;
        font-size: 0.9rem;
    }


/* Profile */
    .profile {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        height: 100vh;
        width: 100%;
        padding-bottom: 20vh;
        position: relative;
    }

    .profile-text {
        font-size:0.9rem;

    }

    .profile h2,.profile h3,.profile p{
        padding-left: 8%;
    }

    .profile p,.profile h3  {
        padding-top: 3vh;
    }

    .bird {
        position: absolute;
        left: 45%;
        top:1vh;
        height: 25%;
        width: auto;
        margin-left: auto;
    }

/* Main */

    main {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .menu,.contact,.reserve {
        display: flex;
        align-items: center;
        justify-content: space-around;
        height: 25vh;
        width: 90%;
    }

    main h2 {
        text-align: center;
        font-size: 1.6rem;
    }

    main p {
        text-align: center;
    }

    .content-icon {
        max-height: 100%;
        width: auto;
        border: #f4e592 6px solid;
        border-radius: 50%
    }

    .content-text {
        display: flex;
        flex-direction: column;
    }

    main a {
        display: inline-block;
        height: 70%;
    }

    .contact {
        margin-bottom: 10vh;
    }

/* news-sns */
    .news-sns {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        align-content: center;
        height: 100vh;
        width: 100%;
        background-image: url(../images/bg2.png);
        background-repeat: no-repeat;
        position: relative;
    }
    
    
    .news {
        height: 30vh;
    }

    .news p {
        font-size: 0.9rem;
    }

    .news h2 {
        padding-top: 10vh;
        padding-bottom: 5vh;
    }
    
    .sns {
        height: 55vh;
    }

    /*.sns h2 {
        padding-left: 38px;
    }*/


    .sns p {
        font-size: 0.8rem;
    }

    .box {
        width:100%;
        display: flex;
        flex-direction: row;
        align-items: center;
    }

/* --------------
SNS
---------------*/

.X-logo {
    margin: 39px;
    width: 26px;
    height: 26px;
}

.note-logo {
    margin: 25px;
    width: 55px;
    height: 55px;
}

/*----------------
Menu Page
----------------*/

.menu-description {
    display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        align-content: center;
        height: 100vh;
        width: 100%;
        background-image: url(../images/bg2sp.png);
        background-repeat: no-repeat;
}

.menu-text {
    text-align: center;
    font-size: 0.8rem;
    padding-top: 1.5vh;
    padding-bottom: 2vh;
}

.stance {
    display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        align-content: center;
        height: 100vh;
        width: 100%;
        background-image: url(../images/bg2sp.png);
        background-repeat: no-repeat;
        position: relative;
        padding-bottom: 10vh;
}

.stance-text {
    text-align: center;
    font-size: 0.8rem;
    padding-top: 1.5vh;
}

.gray {
    color: lightgray;
}


/*--------------
responsive Desktop Size
----------------*/

@media (min-width: 950px) {
    
/* Kaigyou */
.desktop-hidden {
    display: none;
   }

/* Layout */
.container {
    height: 100vh;
    overflow: auto;
    scroll-snap-type: y mandatory;
}
.item {
    height: 100vh;
    width: 100%;
    scroll-snap-align: start;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* nav-menu */
.menu-btn {
    top: 30px;
    right: 60px;
    height: 60px;
    width: 60px;
}

.menu-list {
    width: 20%;
}



/* About */

.about {
    height: 100vh;
    width: 100%;
    background-image: url(../images/bg1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    justify-content: flex-start;
}

/* profile */

.bird {
    position: absolute;
    left: 60%;
    top:30%;
    height: 50%;
    width: auto;
    margin-left: auto;
}

/* Main */

main {
    width: 100%;
    height: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}

.menu,.contact,.reserve {
    justify-content: center;
    width: auto;
    }

main h2 {
    font-size: 2rem;
}

.content-text {
    padding-left: 8%;
    white-space: nowrap
}

.content-icon {
    transition: all 0.5s ease-out;
}

main a {
    display: inline-block;
    height: 80%;
}

.content-icon:hover {
    transform: translateY(-10px);
}

.menu,.contact,.reserve {
    padding: 0 15vh;
}
.mobile-blank {
    height: 30vh;
    width: 30%;
}

.contact {
    margin-bottom: 0;
}


/*　SNS　*/

.news-sns {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    height: 100vh;
    width: 100%;
}

.news,.sns {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
    height: 60vh;
}

.sns p{
    font-size: 0.9rem;
}

.news h2 {
    padding-top: 0;
}

.news-sns .img {
    height: 30%;
}

.img,footer{
    width: 100%;
}



.X-logo,.note-logo{
transition: all 0.3s ease-out;
}

.X-logo:hover {
    transform: translateY(-10px);
}

.note-logo:hover {
    transform: translateY(-10px);
}


/*　Menu Page */

.menu-text {
    font-size: 0.9rem;
}

.menu-description , .stance {
    background-image: url(../images/bg2.png);
        background-repeat: no-repeat;
}

}
/* responsive for iPhoneSE */
@media (max-width: 380px) {
    
    .about {
    background-position: 40px 0;
    }
    .profile {
        padding-bottom: 15vh;
    }
}


/* responsive for Pad */
@media (min-width:750px) and (max-width: 950px) {
    .title-logo {
        padding: 10%;
    }

    .about {
        background-image: url(../images/bg1pad.png);
        background-size: cover;
        background-repeat: no-repeat;
    }

    .about p {
        font-size: 1rem;
    }

    main h2 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.8rem;
        font-weight: 400;
    }

    p,a {
        font-size: 1.175rem;
        line-height: 2.0rem;
    }
    

    .profile-text {
        font-size:1rem;
    }

    .bird {
        position: absolute;
        left: 45%;
        top:10%;
        height: 30%;
        width: auto;
        margin-left: auto;
    }
    

    .content-text p {
        text-align: center;
    }

    .news p{
        font-size: 1.175rem;
    }

    .sns p{
        font-size: 1.175rem;
    }

/* nav-menu */
    .menu-btn {
        top: 30px;
        right: 40px;
        height: 60px;
        width: 60px;
    }

/* Menu Page */

    .menu-description , .stance {
        background-image: url(../images/bg2.png);
            background-repeat: no-repeat;
    }


}

/*　responsive for iPad pro */
@media (min-width:900px) and (max-width: 1025px){

    .title-logo {
        padding: 15%;
    }


    h3 {
        font-size: 2rem;
    }

    h4 {
        font-size: 1.6rem;
    }

    .about { 
    background-image: url(../images/bg1pad.png);
    background-size: cover;
    background-repeat: no-repeat;
    }

    p , a {
        font-size: 1.2rem;
        line-height: 2;
    }


    .desktop-hidden {
        display: block;
    }

    .bird {
        position: absolute;
        left: 45%;
        top:10vh;
        height: 30%;
        width: auto;
        margin-left: auto;
    }
    
    #iPad-only {
        display: block;
    }

    .menu-text,.stance-text {
        text-align: center;
        font-size: 1.2rem;
        line-height: 2;
    }


}
