@charset 'UFT-8';
@import url('https://fonts.googleapis.com/css2?family=Chewy&family=Kiwi+Maru&display=swap');

/* コンテンツサイズを自動調整し、レイアウト崩れを防止する */
*, *::before, *::after{
    box-sizing: border-box;
}

/* ---------全ページ共通部分--------- */
html{
    background-color: #f9f5ed;
    font-size: 100%;
    /* スクロールをスムーズにする*/
    scroll-behavior: smooth;
}
iframe{
    max-width: 100%;
}
img{
    max-width: 100%;
}
body{
    max-width: 100%;
}
#right{
    margin: 0 0 0 30vw;
}
a{
    text-decoration: none;
}

/* -----------menu------------ */
#menu{
    position: fixed;
    left: 2vw;
    top: 2vh;
    width: 20vw;
    height: 40vh;
}
nav{
    /* ナビゲーションの背景色変更 */
    background-color: #e86e49;
    background-size: contain;
    text-align: center;
    padding: 10%;
    border-radius: 10px;
}
nav li{
    font-family: "Chewy", system-ui;
    list-style-type: none;
    font-size: 4vw;
    padding-top: 4%;
    font-weight: 100;
}
li a{
    color: #f9f5ed;
}
/* ナビゲーションの点線 */
.wave-top{
    border-bottom: #f9f5ed dotted 3px;
}
.wave-top:hover{
    font-size: 4.5vw;
}


/* -----------footer---------- */
table{
    margin: 5% auto;
}
td{
    padding-right: 30px;
    padding-top: 10px;
    /* font-family: "Kiwi Maru", serif; */
    font-size: 1.3vw;
}
.top-reverse img{
    width: 10vw;
    position: fixed;
    bottom: 20px;
    right: 0;
}
small{
    display: block;
    text-align: center;
    margin-bottom: 10px;
}
h1{
    font-size: 13vw;
    text-align: center;
    font-family: "Chewy", system-ui;
    /* 英語フォント */
    color: #2a2a2a;
}



/* -----------TOPページ---------- */
.main{
    padding: 30% 0 20% 0;
}
.rollstar{
    width: 10vw;
}
.main h2{
    font-size: 3.5vw;
    font-weight: 50;
    text-align: center;
    font-family: "Chewy", system-ui;
    color: #2a2a2a;
}
.background-yellow{
    background-color: #fff0bc;
    margin-top: 20%;
    margin-bottom: 30%;
}
#about{
    padding: 15%;
    text-align: center;
}
#about h2,h3, h2{
    text-align: center;
    font-family: "Chewy", system-ui;
    color: #2a2a2a;
}
#about h2, h2{
    font-size: 8vw;
}
#about h3{
    font-size: 3vw;
}
#about p{
    /* font-family: "Kiwi Maru", serif; */
    /* 日本語フォント */
    margin-bottom: 20px;
    font-size: 1.5vw;
    text-align: justify;
}
#about img{
    width: 15vw;
    margin: 3%;
}


/* LOADING画面 */
#loading{
    background-color: lightgrey;
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
}
#loading-screen{
    background-color: #CDE4F5;
    position: fixed;
    inset: 0;
    z-index: 9998;
    translate: 0 100vh;
}
#loading p{
    font-size: 3rem;
    font-family: "Chewy", system-ui;
}

/* --------メディアクリ-------- */
@media(max-width:640px){
    /* ---TOP＆MENU--- */
    #right{
        margin: 0;
    }
    #menu{
        position: fixed;
        width: 400px;
        height: 5px;
        /* 下２つで中央に配置 */
        left: 50%;
        transform: translate(-50%, -50%);
    }
    nav{
        display: flex;
        align-items: center;
        justify-content: space-around;
        padding: 15px;
    }
    nav li{
        padding-top: 0;
        font-size: 5vw;
    }
    .wave-top{
        border-bottom: none;
    }
    .rollstar{
        width: 15vw;
    }
    h1{
        font-size: 16vw;
    }
    .main{
        padding: 40% 0 20% 0;
    }
    .main h2{
        font-size: 6vw;
    }
    /* ---FOOTER--- */
    h2{
        font-size: 14vw;
    }
    td{
        font-size: 3vw;
    }
    .top-reverse img {
        width: 25vw;
    }
    /* ---ABOUT--- */
    #about h2{
        font-size: 14vw;
    }
    #about h3{
        font-size: 4vw;
    }
    #about p{
        font-size: 3.5vw;
    }
}