body {
    font-family: 'Kosugi Maru', sans-serif;
    /* font-weight: bold; */
    background: url('bg.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #333;
    min-height: 100vh;
}

h1{
    font-size: 3rem;
    color: #3f3f3f;
    text-shadow: 2px 2px 4px #fff;
}

h5{
    font-size: 1.5rem;
    color: #3f3f3f;
    text-shadow: 2px 2px 4px #fff;
}

p {
    font-size: 1.2rem;
    color: #3f3f3f;
}

li {
    font-size: 1.2rem;
    color: #3f3f3f;
}

.btn {
    display: inline-block;
    padding: 10px 30px;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #ccee67;
    color: #294a3c;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #a4b04f;
}

.img-qa {
    max-width: 100%;
}

/* 画像の注釈 */
.img-caption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    text-align: center;
    font-style: italic;
    text-shadow: 1px 1px 2px #fff;
}

/* アニメーション関連 */
.pre-animate {
    opacity: 0;
    /* visibility: hidden; */
}

/* ナビゲーションメニュー */
#mainNav{
    background-color: rgba(255, 255, 255, 0.8);
}

/* ホーム */
.top-right {
    min-height: auto;
    margin-top: 50px;
}
.white-box {
    background-color: rgba(63, 63, 63);
    /* padding: 20px; */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    position: relative;
    z-index: 1;
    /* margin-top: 30px; */
    color: #fff;
}

.character-img {
    width: 100%;
    height: auto;
    /* max-height: 100vh; */
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
    padding-top: 100px;
    padding-bottom: 50px;
    box-sizing: content-box;
}

#copy-img{
    max-width: 100%;
}

/* キャラクター紹介 */
#character {
    background-color: rgba(255, 255, 255, 0.8);
    padding-top: 50px;
    padding-bottom: 50px;
}
#character img{
    width: 100%;
    height: auto;
    max-width: 200px;
    object-fit: cover;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    margin-bottom: 50px;
    border: 8px solid #c7ed5d;
    background-color: #fff5d5;
}

/* 募集要項 */
#requirements {
    background-color: rgba(255, 255, 210, 0.8);
    padding-top: 50px;
    padding-bottom: 50px;
}

/* 応募方法 */
#apply {
    background-color: rgba(255, 255, 255, 0.8);
    padding-top: 50px;
    padding-bottom: 50px;
}

/* よくある質問 */
#faq {
    background-color: rgba(255, 255, 210, 0.8);
    padding-top: 50px;
    padding-bottom: 50px;
}

#faq strong{
    color: #294a3c;
    text-shadow: 2px 2px 4px #fff;
    background-color: #c7ed5d;
    padding: 0 4px;
}

/* お問い合わせ */
#contact {
    background-color: rgba(255, 255, 255, 0.8);
    padding-top: 50px;
    padding-bottom: 50px;
}

.c-img{
    width: 100%;
    height: auto;
    max-width: 200px;
    object-fit: cover;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    margin-bottom: 30px;
}
.sakura{
    border: 8px solid #d96b98;
}
.staff{
    border: 8px solid #5e5e5e;
}

.shareon > .twitter {
    background-color: #0f1419 !important;
}
.shareon > .twitter:before {
    background-image: url("x.svg") !important;
}

/* フッター */
#footer p{
    font-size: 0.8rem;
    color: #333;
    text-shadow: 1px 1px 2px #fff;
}

/* 読み込み画面 */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
    transform: translateY(0);
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #afafaf;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    margin-top: 10px;
    font-size: 1.5rem;
    color: #afafaf;
}

/* ナビゲーションメニュー */
#mainNav {
    transition: top 0.3s ease-in-out;
}

.logo{
    width: 100px;
    height: auto;
}

/* スクロールプロンプト */
.scroll-prompt {
    position: fixed;
    bottom: 20px;
    left: 50%; 
    width: 100%;
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 2px 2px 4px #000;
    text-align: center;
    animation: bounce 2s infinite;
    transition: opacity 0.3s ease;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* スマホ対応 */
@media (max-width: 1400px) {

}
@media (max-width: 1199px) {

}
@media (max-width: 992px) {
    .white-box{
        margin-left: -100px;
    }
}
@media (max-width: 768px) {
    .pr-text-col{
        text-align: center;
    }
    .white-box {
        margin-left: 0px;
    }
    .top-right{
        margin-top: -700px;
    }

    h1{
        font-size: 2rem;
    }

    .debut{
        font-size: 2rem;
    }
}
@media (max-width: 440px) {
    p {
        font-size: 1.0rem;
    }
    li {
        font-size: 1.0rem;
    }
    .btn{
        font-size: 1.2rem;
    }
    .top-right{
        margin-top: -500px;
    }
    .c-img {
        max-width: 150px;
    }
}
@media (max-width: 420px) {

}
@media (max-width: 370px) {
    #character p{
        font-size: 0.8rem;
    }
}
