/* ====== メインコンテンツ ====== */
/* ==画像 == */
.container{
    position: relative;
    border-bottom: 1px solid #FFFFFF;
}
.container img{
    height: auto;
    object-fit: cover;
    width: 100%;
}
.logo {
    position: absolute;
    top: 50%;
    left: 76%;
    transform: translate(-50%, -50%);
    width: 40%;
}
.logo img {
    width: 100%;
    height: auto;
}
/* ==　自己紹介 == */
.group1{
    max-width: 80%; /* 画面幅の最大80%まで広がる */
    width: 600px; /* 最小時の基準 */
    margin: 0 auto; /* 左右の中央寄せ */
    padding: 30px;
}
.group1 li{
    list-style-type: none;
}
/* ==　ボタン == */
.content_button1{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px;
}
.button1 {
    width: auto;
    min-width: 220px;
    padding: 12px;
    border-radius: 30px;
    font-size: 16px;
    border: 1px solid #EFC22B;
    background-color: transparent;

    text-align: center;
    text-decoration: none;
    color: #EFC22B;
    transition: .2s;
}
/* ==　ギャラリー == */
.gallery-container {
    position: relative;

    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;

    background-color: #EFC22B;
    width: 100%;
    overflow: hidden;
}
#gallery-text{
    margin-top: 60px;
    margin-bottom: 20px;
}
.gallery {
    margin-top: 20px;
    margin-bottom: 20px;

    display: flex;
    gap: 20px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto; /* 横スクロール可能に */
    padding: 10px;
    max-width: 100vw;
}
.gallery::-webkit-scrollbar {
    display:none;
}
.gallery-item {
    scroll-snap-align: center;
    min-width: 260px;
    max-width: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    display: block;
}


.content_button2{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 60px;
}
.button2 {
    width: auto;
    min-width: 220px;
    padding: 12px;
    border-radius: 30px;
    font-size: 18px;
    border: 1px solid #FFFFFF;
    background-color: transparent;

    text-align: center;
    text-decoration: none;
    color: #FFFFFF;
    transition: .2s;
}