@charset "utf-8";
/* ================================================================
 *  reserve.css   ―  施設サイト9ページ共通「施設予約について」
 * ----------------------------------------------------------------
 *  もともと kurosesgc / higashihirosimasbc / kurose-c-ground /
 *  kurose-m-ground / toyosakasgc の各 layout.css に、
 *  ほぼ同じ内容が別々に入っていたものを1つにまとめました。
 *  （kurosebg / kurosebg-base / kurosepool は持っていませんでした）
 *
 *  【読み込む順番に注意】
 *  このファイルは bundle.css の「前」で読み込みます。
 *  後ろにすると、施設ごとに手を入れた指定を打ち消してしまうためです。
 *  ここは全施設共通の土台で、各施設の bundle.css が上書きできます。
 *
 *  ボタン画像のパスだけは施設ごとに違うので、
 *  <施設>/css/facility-page.css の変数で指定しています。
 * ================================================================ */

:root {
  --fw-reserve-icon: url("/kurosesgc/img/reservebtn01.png");
  --fw-reserve-icon-hover: url("/kurosesgc/img/reservebtn02.png");
}

/* 見出しの上余白（#event などと同じ扱い） */
#reserve {
  padding-top: 150px;
}

/* 区切り線。common-facility/facility.css を読んでいない施設向けの土台 */
.border {
  border: 3px solid #d6d6d6;
  width: 65%;
  margin: 20px auto;
}

.reserveTab {
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: center;
    gap: 60px;
    max-width: 85%;
    margin: 0 auto;
}

.reserveTab>li {
    max-width: 100%;
}

.reserveTab li a {
    opacity: 0.3;
}

.reserveTab>li .icon04 {
    line-height: 2;
    width: 2em;
    height: 2em;
    text-align: center;
    color: #fff;
    background: #E26B5D;
    margin: 0 auto 10px;
    display: block;
    border-radius: 100vh;
    position: relative;
}

.reserveTab>li .icon04::before {
    content: "";
    border: solid transparent;
    border-width: 7px;
    border-top-color: #E26B5D;
    position: absolute;
    top: calc(100% - 2px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.reserveTab>li dl {
    padding: 30px 20px;
    margin: 0;
    border: 3px solid #E26B5D;
    position: relative;
}

.reserveTab>li:not(:first-child) dl::before {
    content: "";
    width: 14px;
    height: 14px;
    margin-right: 10px;
    display: inline-block;
    border-top: 4px solid #E26B5D;
    border-right: 4px solid #E26B5D;
    position: absolute;
    top: calc(50% - 14px);
    left: -45px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.reserveTab>li dl dt {
    font-size: 1.3em;
    font-weight: 600;
    color: #E26B5D;
    -ms-flex-preferred-size: 20%;
    margin-bottom: 10px;
    text-align: center;
}

.reserveTab>li dl dd {
    margin-left: 0;
}

@media(max-width: 880px) {
    .reserveTab {
        gap: 20px;
    }

    .reserveTab>li {
        max-width: unset;

    }

    .reserveTab>li dl {
        padding: 10px;

    }

    .reserveTab>li dl dt {
        font-size: 0.8em;

    }

    .reserveTab>li:not(:first-child) dl::before {
        display: none;
    }
}

.reserveArea {
    width: 80%;
    margin: 0 auto;
}

.reserveBox {
    width: 80%;
    margin: 0 auto;
}

.reseveP {
    text-align: center;
    margin: 0 auto 100px;
    max-width: 80%;
}
.reserve02p{
    text-align: center;
    margin: 50px auto;
    max-width: 80%;
}
.reseveBtn {
    text-align: center;
    background-color: #E26B5D;
    margin: 20px;
    color: #fff;
    font-weight: bold;
    border-radius: 10px;
}

.reseveBtn a {
    color: #fff;
    border-radius: 10px;
    padding: 10px 60px;
    display: inline-block;
    transition: 0.4s;
}

.reseveBtn a:hover {
    background-color: #ae483d;

}

/* .reserveTab li {
    font-size: 30px;
} */


.flow_design07 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flow07 {
    padding-left: 0;
}

.flow07>li {

    display: flex;
    align-items: end;
}

.flow07>li:not(:last-child) {
    margin: 0 0 50px;
}

.flow07>li p {
    padding: 0 0 0 30px;
    width: calc(100% - 80%);
}
.caption {
    width: 100% !important;
}
.flow07>li dl {
    padding: 0 0 0 30px;
    width: calc(100% - 20%);
}

.flow07>li dl dt {
    padding: 0 0 5px;
    margin: 0 0 15px;
    font-size: 1.2em;
    font-weight: bold;
    border-bottom: 4px solid #CCCCCC;
    position: relative;
}

.flow07>li dl dt::after {
    content: '';
    width: 20%;
    height: 4px;
    position: absolute;
    bottom: -4px;
    left: 0;
    background-color: #E26B5D;
}

.flow07>li dl .textArea {
    margin: 0;
    display: flex;
    padding: 0 20px;
}



.icon-btn {
    background: var(--fw-reserve-icon) no-repeat center/cover;
    display: inline-block;
    width: 180px;
    height: 60px;
    border-radius: 10px;
    margin-right: 20px;
    transition: 0.3s;
}

.icon-btn:hover {
    background-image: var(--fw-reserve-icon-hover);
}
