/* 全般のスタイル */
canvas {
    border: 1px solid black;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    /* 余白をリセット */
    padding: 0;
    /* 余白をリセット */
    box-sizing: border-box;
    /* ボックスモデルの調整 */
    height: 100vh;
    /* ビューポートの高さに合わせる */
    display: flex;
    flex-direction: column;
}

header {
    background-color: #69A1B2;
    color: #fff;
    padding: 6px;
    /* パディングを調整 */
    text-align: center;
    width: 100%;
    font-size: 20px;
    margin-bottom: 8px;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    /* パディングを調整 */
    overflow: hidden;
    /* オーバーフローを隠す */
}

section {
    margin-bottom: 10px;
    width: 100%;
}

footer {
    background-color: #69A1B2;
    color: #fff;
    text-align: center;
    padding: 10px;
    width: 100%;
}

.sound-box {
    margin-right: auto;
    margin-left: auto;
}

.sound-image {
    padding: 10px;
    height: auto;
}

.play-sound {
    padding: 10px;
    max-width: 30%;
    height: auto;
}

.audio-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
}

img {
    width: 50%;
    height: 50%;
    margin: auto;
    display: block;
}

/* aタグのリセットCSS */
a {
    color: inherit;
    text-decoration: none;
}


/* buttonタグのリセットCSS */
button {
    padding: 0;
    font-family: inherit;
    appearance: none;
    cursor: pointer;
    background-color: transparent;
    border: none;
}


.button-container {
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-template-rows: auto auto;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

#btn-not-music.buttonNeumorphism,
#btn-music.buttonNeumorphism,
#btn-replay.buttonNeumorphism {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    /* サイズを大きく調整 */
    height: 110px;
    /* サイズを大きく調整 */
    color: #222;
    font-size: 1.4rem;
    background-color: #DADADA;
    border-radius: 50%;
    box-shadow: -4px -4px 8px #fff, 4px 4px 8px rgb(0 0 0 / 24%);
}

#btn-skip.buttonNeumorphism {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    /* サイズを大きく調整 */
    height: 110px;
    /* サイズを大きく調整 */
    color: #222;
    font-size: 1.2rem;
    background-color: #DADADA;
    border-radius: 50%;
    box-shadow: -4px -4px 8px #fff, 4px 4px 8px rgb(0 0 0 / 24%);
}

#btn-replay {
    grid-column: 2 / 3;
    margin-top: 10px;
    /* 上段とのスペースを追加 */
}

.play-sound {
    padding: 5px;
}

#startButton {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 50px;
    transform: translate(-50%, -50%);
    /* ボタンをキャンバスの中央に配置 */
    padding: 10px 20px;
    /* パディングを調整 */
    background-color: #fff;
    border: 1px solid #000;
    cursor: pointer;
    z-index: 1;
    /* ボタンを最前面に */
}

#canvasWrapper {
    position: relative;
    width: 80%;
    /* 希望する幅 */
    height: auto;
    /* 高さは自動調整 */
    margin: auto;
    /* 水平方向の中央揃え */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 子要素を中央揃え */
}

canvas, #seekBar {
    width: 100%;
    /* 親要素の幅に合わせる */
    display: block;
    /* ブロックレベル要素として配置 */
}

#seekBar {
    -webkit-appearance: none;
    /* ブラウザのデフォルトスタイルをオフ */
    appearance: none;
    height: 10px;
    /* バーの高さ */
    background: #ccc;
    /* バーの背景色 */
    outline: none;
    /* アウトラインを消去 */
    opacity: 0.75;
    /* バーの透明度 */
    transition: opacity .2s;
    /* 透明度変化のアニメーション */
}

#seekBar:hover {
    opacity: 1;
    /* ホバー時の透明度 */
}

/* シークバーのトラック部分のスタイルをカスタマイズ */
#seekBar::-webkit-slider-runnable-track {
    width: 100%;
    height: 10px;
    background: #ccc;
    border: none;
}

#seekBar::-moz-range-track {
    width: 100%;
    height: 10px;
    background: #ccc;
    border: none;
}

#seekBar::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 10px;
    background: #4CAF50;
    cursor: pointer;
    margin-top: -5px;
    /* バーから上に少し出る */
}

#seekBar::-moz-range-thumb {
    height: 20px;
    width: 20px;
    border-radius: 10px;
    background: #4CAF50;
    cursor: pointer;
}


/* 画面幅が479pxまでのスタイル */
@media screen and (max-width: 479px) {
    header {
        padding: 5px;
    }

    nav ul {
        text-align: center;
        margin-top: 10px;
    }

    nav li {
        display: block;
        margin: 5px 0;
    }

    main {
        padding: 10px;
    }

    footer {
        position: static;
        width: auto;
    }

    .sound-image {
        padding: 10px;
        height: auto;
    }

    .button-container {
        display: grid;
        grid-template-columns: repeat(3, auto);
        grid-template-rows: auto auto;
        gap: 10px;
        justify-content: center;
        align-items: center;
        row-gap: 2.5px;
    }

    #btn-not-music.buttonNeumorphism,
    #btn-skip.buttonNeumorphism,
    #btn-music.buttonNeumorphism,
    #btn-replay.buttonNeumorphism {
        width: 75px;
        /* 小さい画面のためにサイズを小さく */
        height: 75px;
        /* 小さい画面のためにサイズを小さく */
        font-size: 0.8rem;
    }

    #btn-replay {
        grid-column: 2 / 3;
        margin-top: 5px;
        /* 上段とのスペースを追加 */
        margin-bottom: 5px;
    }

    #startButton {
        transform: translate(-50%, -50%);
        /* 小さい画面でボタン位置を調整 */
        font-size: 1rem;
    }

    #counter {
        font-size: 1.25rem;
    }

    h1 {
        font-size: 20px;
    }

    div #seekBar {
        margin-right: auto;
        margin-left: auto;
    }

    #modal-content {
        width: 95%;
        max-width: 95%;
        max-height: 80vh;
        padding: 10px 15px;
    }

    #modal-content h2 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    #modal-content label,
    #modal-content select,
    #modal-content input {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 4px;
    }
}

@media (any-hover: hover) {
    .buttonNeumorphism {
        transition: box-shadow 0.2s;
    }

    .buttonNeumorphism:hover {
        box-shadow: -2px -2px 4px #fff, 2px 2px 4px rgb(0 0 0 / 24%);
    }

    .buttonNeumorphism:active {
        background-color: #ebebeb;
        box-shadow: inset 4px 4px 8px rgb(0 0 0 / 16%);
    }
}

.buttonNeumorphism:disabled {
    background-color: #ccc;
    /* 灰色の背景色 */
    box-shadow: none;
    /* 影をなしにする */
    pointer-events: none;
    /*イベントを無効化する*/
}

/* 画面幅が768px以上の場合にボタン間の間隔を広げる */
@media screen and (min-width: 768px) {
    .button-container {
        gap: 10px 100px;
        /* 間隔を広げる */
    }
}

@media (max-width: 768px) {
    .button-container .btn {
        flex: 1 1 100%;
        /* モバイルではボタンを画面幅全体に */
    }


    #btn-not-music.buttonNeumorphism,
    #btn-skip.buttonNeumorphism,
    #btn-music.buttonNeumorphism,
    #btn-replay.buttonNeumorphism {
        width: 60px;
        /* 小さい画面のためにサイズを小さく */
        height: 60px;
        /* 小さい画面のためにサイズを小さく */
        font-size: 0.6rem;
    }

    #btn-not-music, #btn-replay {
        flex: 0 1 auto;
        /* わからないとリプレイは画面幅全体ではなく、必要最小限の幅 */
    }
}


/* スタイルの追加 */
/* モーダル全体の設定：中央寄せ */
#modal {
    display: flex;
    /* Flexbox を利用して中央配置 */
    align-items: center;
    /* 垂直方向に中央揃え */
    justify-content: center;
    /* 水平方向に中央揃え */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

/* モーダルコンテンツの設定：余白・サイズ調整 */
#modal-content {
    background: #fff;
    padding: 20px 30px;
    /* 横のパディングを少し広めに */
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    max-height: 60vh;
    /* PCでは縦幅を60vhに制限 */
    overflow-y: auto;
    box-sizing: border-box;
    /* ここでは margin は不要。Flexbox により中央配置されるため */
}

/* モーダル内のテキスト調整 */
#modal-content h2 {
    font-size: 1.6rem;
    /* もとの1.4remより大きく */
    margin-bottom: 12px;
    /* 余白を少し広げる */
    line-height: 1.4;
}

#modal-content label,
#modal-content select,
#modal-content input {
    font-size: 1.1rem;
    /* 少し大きめに */
    line-height: 1.5;
    /* 行間を広めに */
    margin-bottom: 6px;
}

#modal-content input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    padding: 6px;
    margin-bottom: 10px;
}

/* スマホ表示用の調整（必要に応じて微調整） */
@media screen and (max-width: 480px) {
    #modal-content {
        width: 95%;
        max-width: 95%;
        max-height: 80vh;
        padding: 10px 15px;
    }

    #modal-content h2 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    #modal-content label,
    #modal-content select,
    #modal-content input {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 4px;
    }
}


.hidden {
    display: none;
}

#submitButton {
    margin-top: 10px;
    float: right;
    background-color: #4CAF50;
    /* クリック前の色 */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#submitButton:active {
    background-color: #45a049;
    /* クリック時の色 */
}

@media screen and (min-width: 481px) {
    #modal-content {
        background: #fff;
        padding: 20px 30px;
        border-radius: 10px;
        width: 90vw;
        max-width: 70vw;
        max-height: 95vh;
        overflow-y: auto;
        box-sizing: border-box;
        margin: 80px auto;  /* 上下左右に80pxの余白 */
    }
    
    /* モーダル内タイトルの行間を拡大 */
    #modal-content h2 {
        font-size: 2.7rem;
        margin-bottom: 20px;
        line-height: 1.6; /* 以前の1.4から1.6に拡大 */
    }
    
    /* ラベル、セレクト、入力要素の行間を拡大 */
    #modal-content label,
    #modal-content select,
    #modal-content input {
        font-size: 2.2rem;
        line-height: 1.7; /* 以前の1.5から1.7に拡大 */
        margin-bottom: 10px;
    }
    
    #modal-content input[type="text"] {
        padding: 6px;
        margin-bottom: 16px;
    }
}