/* 全体のスタイル */
.access {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.access_box {
    max-width: 80%;
    margin: 0 auto 100px;
    padding: 15px;
}

/* 見出しスタイル */
.access h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
}

.access h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.access h4 {
    font-size: 1.6em;
    margin-bottom: 15px;
}

/* 概要ブロック */
.access-intro {
    text-align: center;
    margin-bottom: 40px;
}

/* お店情報ブロック */
.access-info {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
}

.access-img img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.access-details {
    flex: 1;
}

.access-details ul {
    list-style: none;
    padding: 0;
}

.access-details ul li {
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* 詳細情報ブロック */
.access-detail-text {
    text-align: left;
}

.access-detail-text p {
    font-size: 1.1em;
    line-height: 1.6;
}

.kameido-area {
    max-width: 600px;
    margin: auto;
}

.kameido-area .btn:hover {
    background-color: #e73370;
}

.kameido-area .btn {
    display: inline-block;

    padding: 5px 14px;
    background-color: #ff4081;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.kameido-area h4{
    font-size: 20px;
}

.kameido-area p{
    margin: 0 0 15px;
    line-height: normal;
}

.area-detail {
    padding-bottom: 20px;
    border-bottom: 2px dotted #ccc;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .access_box {
        max-width: 100%;
    }

    .access-info {
        flex-direction: column;
        text-align: center;
    }

    .access-img img {
        max-width: 100%;
    }

    .access-details ul {
        text-align: center;
    }
}