body {
    color: rgba(255, 255, 255, 0.90);
    background-color: #333;
    background-color:#2f303d;
    margin: 0;
    padding: 0;
    font-family: "Zen Old Mincho", serif;
}


/*
header
*/
.header-area {
    margin: 0;
    width: 100%;
    height: 80px;
    background-color: #222222cc;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    position: absolute;
}
.header-logo {
    margin: 0;
}
.header-logo-img {
    width: 80px;
    height: 80px;
}



/*
main
*/
.main {
    margin: 0;
    padding: 0;
}

section {
    margin: 10px auto;
    margin-bottom: 20px;
    padding: 10px;
    text-align: center;
}

.section-title {
    margin: 10px auto;
    text-align: center;
    justify-content: center;
    font-size: 32px;
}

.title-bar {
    display: none;
}

hr {
    margin: 10px 5px;
    border: 0;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width:768px) {
    .section-title {
        width: 90%;
        text-align: left;
        font-size: 24px;
    }
    .title-bar {
        display: inline;
    }
    hr {
        margin: 5px;
    }
}


/*
view
*/
.view-area {
    margin: 0;
    padding: 0;
    height: 100vh;
    position: relative;
}
.view-background {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    filter: brightness(70%) blur(12px);
}
.view-img-box {
    width: 50%;
    height: auto;
}
.view-img {
    position: absolute;
    top: 120px;
    left: 80px;
    padding: 20px; /* ニューモフィズムの枠線部分 */
    width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius:12px;
    /* ニューモーフィズムのスタイル */
    background-color:#23232d;
    box-shadow: 9px 9px 16px rgba(0, 0, 0, 0.4), -9px -9px 16px    rgba(205, 210, 255, 0.1);
    /* ニューモーフィズムのスタイル */
}
.desc_title, .desc_title_medium {
    position: absolute;
    text-align: center;
    margin: 30px;
    font-weight: bold;
    text-shadow: #333 2px 2px 2px;
    top: 200px;
    right: 100px;
}
.desc_title {
    font-size: 60px;
}
.desc_title_medium {
    font-size: 60px;
}
.desc_small {
    font-size: 42px;
}
@media (max-width:768px) {
    .desc_title, .desc_title_medium {
        margin: auto 10px;
        width: 90%;
        top: 280px;
        left: 10px;
    }
    .desc_title {
        font-size: 30px;
    }
    .desc_title_medium {
        font-size: 28px;
    }
    .desc_small {
        font-size: 18px;
    }
    .view-area {
        height: 70vh;
        display: flex;
        justify-content: center; /* 横方向 */
        align-items: center; /* 縦方向 */
    }
    .view-background {
        height: 70vh;
    }
    .view-img {
        padding: 10px;
        width: 270px;
        height: 180px;
        top: 180px;
        left: 40px;
    }
}

/*
caticopy & menu
*/
.view-catchcopy {
    background-color: rgba(34, 22, 5, 0.5);
    padding: 40px;
    margin: 0;
    font-size: 32px;
    text-align: center;
}
.view-catchcopy-mini {
    display: none;
}
.view-catchcopy, .view-catchcopy-mini {
    font-weight: bold;
    text-shadow: rgba(255, 217, 0, 0.5) 1px 1px 2px;
}

.desc-menu {
    display: flex;
    margin: 0;
    padding: 10px;
    text-align: center;
    background: url(../../img/bg_snow4.png);
}
.dm-item {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 24px;
    margin: 10px;
    width: 80%;
}
.dm-item:hover {
    color: gray;
    transition: color 0.3s ease;
}
/* .between-bar {} */

@media (max-width:768px) {
    .view-catchcopy {
        font-size: 24px;
        padding: 10px;
        display: none;
    }
    .view-catchcopy-mini {
        display: block;
        background-color: rgba(34, 22, 5, 0.5);
        padding: 20px;
        margin: 0;
        font-size: 20px;
        text-align: center;
    }
    .mini-alpha {
        font-size: 18px;
    }
    .dm-item {
        font-size: 18px;
    }
}


.fourth4-inner {
    display: flex; /* 要素をフレックスボックスとして表示 */
    overflow: scroll; /* コンテンツが要素のサイズを超える場合にスクロールバーを表示 */
    scrollbar-width: none; /* Firefox対応のスクロールバー非表示 */
    -ms-overflow-style: none; /* Internet Explorer対応のスクロールバー非表示 */
}
.fourth4-inner a {
    display: inline-block; /* インラインブロック要素として表示 */
    flex: 1; /* フレックスアイテムをフレックスコンテナの残りのスペースに合わせる */
    min-width: calc(25% - 80px); /* 最小幅を計算して設定 */
    word-break: break-all; /* 単語の途中で改行可能 */
    text-align: justify; /* テキストを両端揃えにする */
    position: relative; /* 相対位置指定 */
}
.fourth4-inner a img {
    width: 100%; /* 画像の幅を100%に設定 */
}


/*
Weather
*/
.temprature_area {
    text-align: center;
    padding: 10px;
}

.temprature_box {
    text-align: center;
    margin: 0 auto;
    width: 60%;
    border-radius: 4px;
    background-color: #4b4a4abe;
    /* ニューモーフィズムのスタイル */
    box-shadow: 9px 9px 16px rgba(0, 0, 0, 0.4), -9px -9px 16px    rgba(205, 210, 255, 0.1);
    /* ニューモーフィズムのスタイル */
}

.weather-container {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
}

#weather-icon {
    margin: 10px;
    width: 80px;
    height: 80px;
}
#temperature {
    margin: auto 10px;
    font-size: 24px;
    font-weight: bold;
}
#time {
    margin: auto 10px;
    font-size: 18px;
}

@media (max-width:768px) {
    .temprature_box {
        width: 90%;
    }
    /* .weather-container {} */
    #weather-icon {
        margin: 10px;
        width: 80px;
        height: 80px;
    }
    #temperature {
        margin: auto 10px;
        font-size: 20px;
        font-weight: bold;
    }
    #time {
        margin: auto 10px;
        font-size: 16px;
    }
}


/*
info
*/
.info-area {
    background: url(../../img/bg_snow3.png);
    padding: 10px;
}

.info-table {
    margin: 0 auto;
    text-align: center;
    height: 60%;
    width: 900px;
    border-collapse: collapse;
}
/* .table-title {
    text-align: center;
    margin: 0 auto;
    padding: 10px;
    font-size: 36px;
    border-bottom: white 1px solid;
} */
.sub-title {
    padding: 1em;
    /* border-right: 1px solid #ffffff; */
    font-weight: bold;
    font-size: 24px;
    text-align: left;
    width: 40%;
    min-width: 4em;
}

.table-content {
    padding: 1em;
    line-height: 2rem;
    text-align: left;
    font-size: 16px;
}

@media (max-width:768px) {
    .info-table {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    tr {
        display: block;
    }
    .sub-title {
        text-align: left;
        width: 90%;
        margin: 10px;
        padding: 12px 6px;
        font-size: 18px;
        display: block;
        border-bottom: silver 1px solid;
        border-top: silver 1px solid;
        background-color: #7a7a7a23;
    }
    .table-content {
        font-size: 14px;
        display: block;
        margin: 10px;
        padding: 3px 6px;
        padding-bottom: 10px;
    }
}

/*
map
*/
.map-area {
    padding-top: 0;
    padding-bottom: 10px;
    justify-content: center;
    align-items: center;
}

.map {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
    }

.map > iframe {
    width: 100%;
    height: 520px;
    display: block;
    box-sizing: border-box;
}

@media (max-width:768px) {
    .map {
        padding: 0 8px; /* スマホでは横余白を少し縮める */
        max-width: 600px;
    }
    .map > iframe {
        height: 40vh;
    }
}


/*
Official website
*/
.official_link-area {
    padding-top: 5px;
}
.official_link {
    background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
    color: white;
    text-decoration: none;
    margin: 10px;
    padding: 20px;
    font-weight: bold;
    font-size: 20px;
    display: inline-block; /* transformの拡大に対応させるため */
    transition: transform 0.3s ease, background-color 0.3s ease; /* アニメーションを追加 */
    width: 40%;
    border-radius:4px;
    box-shadow: 9px 9px 16px rgba(0, 0, 0, 0.4), -9px -9px 16px    rgba(205, 210, 255, 0.1);
}
.official_link:hover {
    transform: scale(1.1); /* 1.1倍に拡大 */
    background-color: rgba(255, 255, 255, 0.971); /* 少し背景を明るくする */
}
.official_link > span {
    font-size: 12px;
}

@media (max-width:768px) {
    .official_link {
        width: 80%;
        padding: 10px;
    }
}


/*
topに戻るボタン
*/
/***追従するトップへ戻るボタン***/
#page-top {
    position: fixed;
    right: 5px;
    bottom: 20px;
    height: 50px;
    text-decoration: none;
    font-weight: bold;
    transform: rotate(90deg);
    font-size: 90%;
    line-height: 1.5rem;
    color: rgba(255, 255, 255, 0.90);
    padding: 0 0 0 35px;
    border-top: solid 1px;
}
#page-top::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0px;
    width: 15px;
    border-top: solid 1px;
    transform: rotate(35deg);
    transform-origin: left top;
}
/***トップへ戻るボタンここまで***/