@charset "UTF-8";

/* 共通部分
------------------------------- */
html {
    font-size: 100%;
}
body{
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
    margin: 0 auto;
    /* border:solid 1px black; */
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4%;
    /* border:solid 1px black; */
}

/* 背景 */
.background {
    background-size: cover;
    background-position: center top;
    aspect-ratio: 4/3;
    /* border:solid 1px black; */
}


/* ボタン */
.page:hover {
    background: rgba(255,255,255,0.7);
}

.page {
    transition:all 0.5s;
  }

.item:hover {
    box-shadow:0px 2px black;
}

.item {
    transition:all 0.5s;
  }


/* HEADER
------------------------------- */
header{
    display: flex;
    justify-content: space-between;
    /* border:solid 1px black; */
}

header .page {
    color:black;
    height: 50px;
    width:100%;
    text-align: center;
    line-height: 50px;
    background-color: rgba(255,255,255,.5);
    /* border:solid 1px black; */
}


/* top
------------------------------- */
#top {
    background-image: url(../images/bg_top.png);
    position: relative;
    /* border:solid 1px black; */
}

.top-sentence {
    color: black;
    font-size: 40px;
    writing-mode: vertical-rl;
    position: relative;
    left: 50%;
    margin-top: 20px;
    letter-spacing: 15px; 
    /* border:solid 1px black; */
}

.top-sentence span { 
    color: rgb(4, 80, 94);
}

.top-yarly {
    position:absolute;
    width:35%;
    bottom: 18%;
    right: 2%;
    /* border:solid 1px black; */
}



/* cafe
------------------------------- */
#cafe {
    background-image: url(../images/bg_cafe.png);
    position: relative;
    /* border:solid 1px black; */
}

.cafe-book {
    position: absolute;
    width:20%;
    top: 50%;
    left: 55%; 
}

.cafe-wrapper p {
    color: black;
    background-color: rgba(255,255,255,.5);
    font-size: 25px;
    position: absolute;
    bottom: 10px;
    left: 3%;
    /* border:solid 1px black; */

}


/* menu
------------------------------- */
#menu {
    background-image: url(../images/bg_menu.jpg);
    text-align: center;
    /* border:solid 1px black; */
}

#menu h1 {
    font-size: 100px;
    margin-top: 400px;
}

.menu-wrapper {
    display: grid;
    gap: 30px 10px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-top: 6%;
    margin-bottom: 50px;
    /* border:solid 1px black; */
}

.grid{
    max-width: 350px;
    /* border:solid 1px black; */
}

.grid img {
    width: 100%;
    /* border:solid 1px black; */
}

.grid p {
    font-size: 1.125rem;
    text-align: center;
    width: 100%; 
    /* border:solid 1px black; */
}


/* sticker
------------------------------- */
#sticker {
    background-image: url(../images/bg_sticker.jpg);
    position: relative;
    /* border:solid 1px black; */
}

.title-wrapper {
    display: flex;
    justify-content: space-between;
    height: 100px;
    margin-top: 30px;
    padding: 0 3%;
    /* border:solid 1px black; */
}

.title-wrapper h2 {
    font-size: 50px;
    height: 100px;
    /* border:solid 1px black; */
}

.sticker-wrapper {
    display: grid;
    gap: 70px 50px;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    margin-top: 6%;
    text-align: center;
    /* border:solid 1px black; */
}

.item {
    width: 50%;
    /* border:solid 1px black; */
}

.sticker-comment {
    font-size: 25px;
    position: absolute;
    bottom: 5%;
    left: 5%;
    /* border:solid 1px black; */
}


/* hello
------------------------------- */
#hello {
    /* border:solid 1px black; */
}

.hello-wrapper {
    position: relative;
    /* border:solid 1px black; */
}

.hello-img {
    position:absolute;
    top: 30%;
    left: 40%;
    width: 250px;
    /* border:solid 1px black; */
}

.pmotion1 {
    position:absolute;
    top: 10%;
    left: 5%;
    font-size: 30px;
    /* border:solid 1px black; */
}

.pmotion2 {
    position:absolute;
    top: 10%;
    right: 5%;
    font-size: 30px;
    /* border:solid 1px black; */
}

.pmotion3 {
    position:absolute;
    bottom: 5%;
    left: 5%;
    font-size: 30px;
    /* border:solid 1px black; */
}

.pmotion4 {
    position:absolute;
    bottom: 5%;
    right: 5%;
    font-size: 30px;
    /* border:solid 1px black; */
}



/* フッター
------------------------------- */

footer {
    display: flex;
    justify-content: space-between;
    background: rgb(255, 255, 255);
    color: black;
    height: 50px;
    /* border:solid 1px black; */
}

.icon-box{
    float:left;
    padding-left:4%;
    /* border:solid 1px black; */
}

.icon {
    height: 50px;
    /* border:solid 1px black; */
}

.footer-right {
    padding-right: 4%;
    padding-top: 10px;
    height: 50px;
    /* border:solid 1px black; */
}

/* モバイル版
------------------------------- */
@media (max-width: 600px) {
    .page-title {
        font-size: 2.5rem;
    }
    .page-header {
        flex-direction: column;
        align-items: center;
    }

    /* HEADER */
    .main-nav {
        font-size: 1rem;
        margin-top: 10px;
    }
    .main-nav li {
        margin: 0 20px;
    }

    /* HOME */
    .home-content {
        margin-top: 20%;
    }


    /* MENU */
    .menu-content {
        margin-top: 20%;
    }

    .grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
    

}
