html {
    font-size: 16px; /* 1rem = 16px */
}

.row {
    display: flex;             /* 横並びにする */
    align-items: center;       /* 高さを中央揃え */
    justify-content: center;   /* 横方向の中央揃え（必要に応じて） */
    gap: 10px;                  /* 要素間の隙間 */
    background-color: white;
}
.row p {
    font-size: 38px;
    margin-top: 0;
    margin-bottom: 0;
    color:green;
}
.row img {
    max-height: 50px;           /* 画像の幅（必要に応じて調整） */
    width: auto;
}
.sp{
    display: none;
}
body{
    background-color: antiquewhite;
    max-width: 1080px;
    margin: 0 auto 0 auto;
    font-family: "Source Sans Pro", "Hiragino Kaku Gothic ProN", Meiryo, Arial, sans-serif;
}
footer{
    width:100%;
    background-color: black;
    color:white;
    margin-bottom: 0;
    text-align: right;
}
#copyright{
    margin:0;
}
.section {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 500px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

  /* 各articleごとの背景画像 */
.bg1 {
    background-image: url('../images/IMG_4584.JPG'); /* ←お好きな画像に変更 */
}

.bg2 {
    background-image: url('../images/tsuruga.jpeg');
}

  /* テキストを画像の上に重ねる */
.overlay {
    background: rgba(0, 0, 0, 0.6); /* 半透明背景で可読性向上 */
    padding: 2rem;
    border-radius: 12px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
/* マウスホバー時 */
.overlay:hover {
    color: black;
    background: rgba(0, 255, 64, 0.7); /* さらに暗くする */
    transform: translateY(-5px);    /* 少し上に浮く */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); /* 影を追加 */

}
h2 {
    font-size: 3rem;
}
.overlay p {
    font-size: 2rem;
}
.overlay-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
@media (max-width: 768px) {
    header{
        font-weight: bolder;
    }
    body{
        width:100%;
    }
    .sp{
        display: block;
    }
    .sp h2{
        margin:0;
        padding-left: 10px;
        background-color: green;
        color:white;
    }
    .sp p{
        margin:0;
        background-color: white;
        padding-left: 15px;
    }
    .section{
        width:100%;
        height:auto;
        margin:0;
    }
    .bg1{
        width:100%;
        margin-bottom: 20px;
    }
    .bg2{
        width:100%;
    }
    .overlay{
        border-radius: 0;
    }
    .overlay-link{
        width: 100%;
    }
    h2 {
        font-size: 28px;
    }
    .overlay p {
        font-size: 1rem;
    }
    .row p {
        font-size: 20px;
    }
}