@charset "UTF-8";
body {
  margin: 0;
}

.headBox01 {
  margin-bottom:0;
}
.headBox01 .main_tit {
  margin-top: 0;
}
.page_top_box {
  margin-top: 0;
}

a {
    text-decoration: none;
}

/* =====================================
  Reserve Select
===================================== */

:root {
    --c-red :#a8001f;
}

.reserve-select {
  padding: clamp(48px, 7vw, 80px) 20px;
  background: #f6f6f6;
}

.reserve-select * {
  box-sizing: border-box;
  line-height: 1.6;
}

.reserve-select .f_red {
    color: var(--c-red);
}

.reserve-select__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 56px) clamp(24px, 5vw, 48px);
  background: #fff;
  border-radius: clamp(10px, 1.2vw, 12px);
}

.reserve-select__header {
  margin-bottom: clamp(32px, 5vw, 40px);
}

.reserve-select__title {
  color: var(--c-main);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  text-align: left;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto clamp(24px, 3vw, 32px);
}




.reserve-select__notes {
  display: flex;
  justify-content: center;
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 24px);
  background: #f5f5f5;
  border-radius: 10px;
}

.reserve-select__notes ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.reserve-select__notes li {
  position: relative;
  padding: .5em 0 .5em 1.2em;
  border-bottom:  1px dotted var(--c-gray);
}

.reserve-select__notes li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: .5em;
}

/* ===== button */

[class*="reserve-select__btn0"] {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition:0.2s ease;
  position: relative;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.15);
}

/* 矢印 */
[class*="reserve-select__btn0"]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: clamp(18px, 2vw, 24px);
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

[class*="reserve-select__btn0"]:hover {
  opacity: 0.7;
}

.reserve-select__btn01 {
  color: #fff;
  max-width: 300px;
  padding: 15px clamp(24px, 4vw, 32px);
  background: var(--c-main);
  margin: 0 auto;
}

.reserve-select__btns {
  display: flex;
  gap: clamp(16px, 3vw, 24px);
}

.reserve-select__btn02 {
  color: #fff;
  flex: 1;
  padding: clamp(24px, 4vw, 32px);
}

.reserve-select__btn02:first-child {
  background: var(--c-gold);
}

.reserve-select__btn02:last-child {
  background: #246091;
}


.reserve-select__btn02 ._label {
  display: block;
  font-size: clamp(16px, 2.1vw, 22px);
  font-weight: 700;
  line-height: 1.4;
}

.reserve-select__btn02 ._date ,
.reserve-select__btn02 ._here {
  display: inline-block;
  font-size: 1.5em;
}


/* =====================================
  Responsive
===================================== */

@media screen and (max-width: 767px) {
  .reserve-select {
    padding-left: 15px;
    padding-right: 15px;
  }
}
/* スマホ時は縦並び */
@media screen and (max-width: 767px) {
  .reserve-select__btns {
    flex-direction: column;
  }
}

