h1{
    font-size: clamp(1.1em, calc(1.1rem + ((1vw - 0.2em) * 0.5)), 1.4em);
    min-height: 0vw;
    padding: 0.25em 0 0.25em 0.75em;
    border-left: 6px solid #ccc;
    margin-bottom: 1em;
    font-weight: normal;
}

.samday-print-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 840px;
  margin: 20px auto 30px;
  text-align: center;
}

.fs{
    font-size: 17px;
}

.samday-print-flex .box-line {
  width: calc(50% - 20px);
  box-sizing: border-box;
}

/* ▼ 850px以下：ボックスごと小さく ▼ */
@media (max-width: 850px) {
  .samday-print-flex {
    justify-content: center;
  }

  .samday-print-flex .box-line {
    width: 100%;        /* 縦並びに戻す */
    max-width: 380px;   /* ボックスの最大幅を小さくする（調整可） */
    margin: 25px auto 25px;
  }

  .samday-print-flex picture img {
    width: 100%;        /* ボックス幅に自動でフィットする */
    height: auto;
  }
}

/* よくある質問 */

.QandA {
  margin: 3rem 0;
  padding: 1rem;
  letter-spacing: 1px;
}

.QandA a {
  color: #aa1829;
  transition: 0.5s;
}

.QandA a:hover {
  border-bottom: solid 1px #aa1829 !important;
}

/*ボックス全体*/
.accordion-box {
  margin: 0 auto;
  max-width: 840px;
  padding: 0 0 2em;
  text-align: left;
  font-size: clamp(13px, calc(0.8125rem + ((1vw - 3.4px) * 0.5882)), 16px);
  min-height: 0vw;
}

/*ラベル*/
.accordion-box label {
  display: block;
  cursor: pointer;
  font-weight: bold;
  padding: 2.5rem 0 0rem;
  /* line-height: 1.5rem; */
  text-indent: -3em;
  margin-left: 3em;
}

/*チェックボックスを非表示にする*/
.accordion-box input {
  display: none;
}

/*中身を非表示にしておく*/
.accordion-box div {
  height: 0;
  overflow-y: hidden;
  transition: 0.5s;
  /*表示するスピード*/
  opacity: 0;
}

/*クリックで中身を表示*/
.accordion-box input:checked + label + div {
  height: auto;
  opacity: 1;
  background-color: #fafafa;
  padding: 2rem 2rem 0;
  font-weight: normal;
}

/*アイコン*/
.accordion-box label::before {
  content: "＋";
  padding-right: 8px;
  color: #ccc;
}

/*クリックでアイコン入れ替え*/
.accordion-box input:checked + label::before {
  content: "－";
}

#reserve {
  padding-top: 3em;
  width: 100%;
}


/* 店舗ボタン */
.button003 {
  margin-top: 1rem;
}
.button003 a {
  background: #00AF95;;
  border-radius: 5px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 340px;
  padding: 10px 0px 10px;
  color: #fff !important;
  transition: 0.3s ease-in-out;
  font-weight: bold;
  font-size: 18px;
}
.button003 a:hover {
  background: #C2D968;;
  color: #fff;
}
.button003 a:after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(135deg) translateY(-50%);
  position: absolute;
  bottom: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}
.button003 a:hover:after {
  border-color: #fff;
}

/* スマホ用 */
@media screen and (max-width: 400px) {
    .button003 a {
        font-size: 15px;
        padding: 7px 0px 7px;
    }
}
