/* **************************************************

  		　       　スクール一覧

************************************************** */
section#place_body {
    background:#000;
    padding:0rem 0 5rem;
}

#place_miyazaki ,
#place_shintomi {
    margin:0 0 8rem 0;
}

/* -----------------------------------------------------
　　　　　　　　　　　自動カルーセル
----------------------------------------------------- */
.carousel {
    margin:2rem auto;
    position: relative;
    width:100%;
    max-width:960px;
    overflow: hidden;
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-images img {
    width: 100%;
    flex-shrink: 0;
}

.carousel-nav {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.carousel-nav button {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.6);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-nav button.active {
    background-color: #ffffff;
}

/* -----------------------------------------------------
　　　　　　　　　       スクール詳細
----------------------------------------------------- */
.place_detail {
    width:98%;
    max-width:640px;
    margin:2rem auto 0;
}

.place_detail dl {
    margin:0rem 0 0;
}
.place_detail dl div {
    display:flex;
    flex-wrap:wrap;
    padding:0.5rem 0rem;
}
.place_detail dl div dt {
    border:1px solid #000;
    width:5rem;
    color:#fff;
    background:#373030;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:0.9rem;
}
.place_detail dl div dd {
    width:calc(100% - 5rem);
    text-align:left;
    color:#fff;
    margin-left:auto;
    padding:0 0 0 1.5em;
}
.place_detail dl div dd a {
    color:#fff;
}
.place_detail dl div dd span {
    font-size:0.8rem;
    display:block;
    color:#fff;
}

/* -----------------------------------------------------
　　　　　　　　　　　スケジュールリンク
----------------------------------------------------- */
.schedule_link {
    text-align:center;
}
.schedule_link a {
    border:1px solid #fff;
    color:#fff;
    border-radius:2rem;
    font-size:0.8rem;
    line-height:1em;
    margin:2rem auto 0;
    padding:1em 2em;
    display:inline-block;
}

/* -----------------------------------------------------
　　　　　　　　　　　Googleマップ埋め込み
----------------------------------------------------- */
.white_box {
    background:#fff;
    width:100%;
    height:auto;
    margin:3rem 0;
    padding:1.5rem 0;
}
iframe.place_map {
    width:100%;
    height:auto;
    aspect-ratio: 640 / 480;
    border:0;
    margin:0rem auto 0;
    vertical-align:bottom;
}

