@charset "utf-8";

.c-note {
  font-size: 75%;
  display: inline-table;
  line-height: 1.5;
  opacity: 0.7;
}
.c-note:before {
  content: "※";
  display: table-cell;
}

/* =================== Modal =================== */

#title-box {
  overflow: hidden;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.3);
  height: 100vh;
  z-index: 999;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 20px);
  max-width: 620px;
  background-color: #fff;
  box-sizing: border-box;
  z-index: 100;
  border-radius: 8px;
  box-shadow: none;
  margin-left: 0;
  z-index: 1000;
  overflow: hidden;
}

.modalcontent-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #d6d6d6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 12px 20px;
}
@media screen and (max-width: 820px) {
  .modalcontent-header {
    gap: 10px;
  }
}
.modalclose-btn {
  position: unset;
  right: 20px;
  top: 15px;
  background-color: #fff;
  border: 1px solid #e1e1e2;
  border-radius: 4px;
  padding: 10px 12px;
  cursor: pointer;
  line-height: 1em;
  transition: 0.3s;
  flex-shrink: 0;
}

@media screen and (max-width: 820px) {
  .modalclose-btn {
    padding: 8px;
    font-size: 1.3rem;
  }
}
.modalclose-btn:hover {
  background-color: #e1e1e2;
}

.modalcontent1 {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  box-sizing: border-box;
}
.modalcontentall {
  padding: 25px 20px;
  overflow-y: scroll;
  max-height: 85vh;
}
.modalcontentall::-webkit-scrollbar {
  width: 8px; /* 横スクロールバーの太さ */
  height: 8px; /* 縦スクロールバーの太さ */
}
/* .modalcontentall::-webkit-scrollbar-track {
  background-color: rgb(231, 231, 231);
} */

.modalcontentall::-webkit-scrollbar-thumb {
  background-color: #2d2d34; /* 色 */
}

.modalcontentinbox {
  position: relative;
}
.modaltitleh3 {
  padding: 0;
  border-bottom: none;
}

@media screen and (max-width: 820px) {
  .modaltitleh3 {
    font-size: 1.8rem;
  }
}
.modalcontentbox1 {
  background: #f0efed;
  padding: 10px;
}
.modalcontentbox2 {
  margin-top: 40px;
  justify-content: space-between;
}
.modalcontentbox2l {
  width: 48%;
}
.modaltitleh4 {
  font-weight: 800;
  margin-bottom: 7px;
}
.modalcontentbox2r {
  width: 48%;
}
.modalcontentbox2a {
}
.modalcontentbox2 ul {
}
.modalcontentbox2 li,
.modalcontentbox3 li {
  padding: 1px 5px 1px 15px;
  background: url(../images/dotli.svg) 0px 13px no-repeat;
  background-size: 5px;
}
.modalcontentbox3 {
  margin-top: 40px;
}
.modalcontentbox4 {
  margin-top: 40px;
}
.modalcontentbox4 .modaltitleh4 {
  margin-bottom: 20px;
}
.modalcontentbox3 span {
  margin-left: 0;
  color: #888;
  font-size: 1.3rem;
}
@media screen and (max-width: 820px) {
  .modalcontentbox3 span {
    display: inline-block;
    margin: 0;
  }
}
.modalcontentbox5 {
  margin-top: 5px;
}
.modaldet1 {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.5em;
}
.numberphone {
  background: #fff;
  padding: 3px 7px;
  border: 1px solid #d6d6d6;
  margin-right: 7px;
  line-height: 1em;
}
.step2 .submitbutton {
  margin-top: 20px;
}
.submitbutton a,
.submitbutton input[type="submit"] {
  background: #ad9759;
  padding: 12px 30px;
  display: block;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  border: 1px solid #e1e1e2;
  transition: 0.3s;
  font-size: 1.6rem;
  font-family: var(--ja-font);
  line-height: 1.3em;
  margin-top: 0;
}
.submitbutton a:hover,
.submitbutton input[type="submit"]:hover {
  opacity: 0.7;
}
.submitbutton2 a {
  background: #2d2d34;
}
.modaldet {
  font-size: 1.5rem;
}
.modalcontentbox4 table th,
.modalcontentbox4 table td {
  padding: 5px 10px;
}

.modalcontentbox4 table tr:nth-child(odd) > * {
  background-color: #f0efed;
}
.modalcontentbox4 table td:nth-child(2) {
  text-align: right;
}
.modalbtn {
  background: none;
  padding: 0;
}

.modalform-label {
  font-size: 1.5rem;
  font-weight: 600;
}
.modalform-label .req {
  background: #ad9759;
  color: #fff;
  font-size: 1.1rem;
  padding: 2px 7px;
}
.modalform-item {
  line-height: 1.5em;
}
.modalform-item + .modalform-item {
  margin-top: 20px;
}
.modalform-input {
  margin-top: 5px;
}
.modalform-input,
.modalform-input > * {
  font-size: 1.5rem;
}
.modalform-input * {
  font-family: var(--ja-font);
}

.modalform-input input {
  border: 1px solid #d6d6d6;
  width: 100%;
  padding: 10px;
  outline-color: #ad9759;
}

.modalform-input input.readonly {
  background-color: #d6d6d6;
  cursor: not-allowed;
  outline: none;
}

.modalform-input input[type="date"],
.modalform-input input.fit {
  width: fit-content;
}
.modalform-input input.fit1 {
  max-width: 70px;
}
.modalform-input input.text-center {
  text-aling: center;
}
.modalform-input .checkbox {
  display: flex;
  align-items: center;
  gap: 5px;
}

.modalform-input .checkbox.center {
  justify-content: center;
}
.modalform-input .checkbox + .checkbox {
  margin-top: 5px;
}

.modalform-input input[type="checkbox"] {
  display: none; /* デフォルトのチェックボックスを非表示 */
}

/* チェックボックスのカスタムスタイル */
.modalform-input .checkbox label {
  position: relative;
  padding-left: 31px;
  cursor: pointer;
  font-size: 16px;
}

.modalform-input .checkbox label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 1px solid #d6d6d6;
  background-color: #fff;
  transition: background-color 0.3s, border-color 0.3s;
}

.modalform-input input[type="checkbox"]:checked + label::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #ad9759;
}

.outagreebox {
  max-height: 150px;
  padding: 20px;
  margin-top: 40px;
  border: 1px solid #d6d6d6;
  overflow-y: scroll;
  overflow-x: unset;
}
.outagreebox::-webkit-scrollbar {
  width: 5px; /* 横スクロールバーの太さ */
  height: 5px; /* 縦スクロールバーの太さ */
}
/* .outagreebox::-webkit-scrollbar-track {
  background-color: rgb(231, 231, 231);
} */

.outagreebox::-webkit-scrollbar-thumb {
  background-color: #2d2d34; /* 色 */
}

.modalcontentall.complete p {
  font-size: 17px;
  margin-bottom: 1em;
}
.modalcontentall.complete .modalbutton.close a {
  background: #fff;
  color: var(--main-color);
}
.modalcontentall.complete .modalbutton.close a:hover {
  background-color: #e1e1e2;
}

/* チェックボックス全体のスタイル */
.wpcf7-form-control.wpcf7-checkbox span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.wpcf7-form-control.wpcf7-checkbox span.center {
  justify-content: center;
}

.wpcf7-form-control.wpcf7-checkbox span + span {
  margin-top: 5px;
}

/* デフォルトのチェックボックスを非表示 */
.wpcf7-form-control.wpcf7-checkbox input[type="checkbox"],
.wpcf7-acceptance input[type="checkbox"] {
  display: none;
}

/* チェックボックスのカスタムスタイル */
.wpcf7-form-control.wpcf7-checkbox span .wpcf7-list-item-label,
.wpcf7-acceptance .wpcf7-list-item-label {
  position: relative;
  padding-left: 31px;
  cursor: pointer;
  font-size: 16px;
}

.wpcf7-form-control.wpcf7-checkbox span .wpcf7-list-item-label::before,
.wpcf7-acceptance .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 1px solid #d6d6d6;
  background-color: #fff;
  transition: background-color 0.3s, border-color 0.3s;
}

/* チェック状態のスタイル */
.wpcf7-form-control.wpcf7-checkbox input[type="checkbox"]:checked + .wpcf7-list-item-label::after,
.wpcf7-acceptance input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #ad9759;
}

/* チェックボックスラベルのマージンを調整 */
.wpcf7-form-control.wpcf7-checkbox input[type="checkbox"] + label + label,
.wpcf7-acceptance input[type="checkbox"] + label + label {
  margin-top: 5px;
}

.wpcf7-acceptance {
  display: block;
  text-align: center;
}

.modalcontentbox4 .modal_accordion {
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.modalcontentbox4 .modal_accordion.short {
  max-height: 200px;
}

.modalcontentbox4 .modal_accordion.active {
  max-height: fit-content;
}

.modal_toggle-btn {
  padding: 5px 10px;
  background-color: #fff;
  border: 1px solid #e1e1e2;
  border-radius: 4px;
  padding: 10px 12px;
  cursor: pointer;
  line-height: 1em;
  transition: 0.3s;
  flex-shrink: 0;
  margin-top: 10px;
}

.modal_toggle-btn:hover,
.modal_toggle-btn.active {
  background-color: #e1e1e2;
}

.submitbuttonbox {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.submitbuttonbox * {
  width: 50%;
}

.submitbuttonbox .modalbutton {
  width: 100%;
}
@media screen and (max-width: 820px) {
  .submitbuttonbox {
    flex-wrap: wrap;
  }
  .submitbuttonbox * {
    width: 100%;
  }
}

#kawahisa2 .boxlist {
  margin-top: 50px;
}

#kawahisa2 .listli {
  display: flex;
  gap: 30px;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

#kawahisa2 .listli-c {
  background: #fff;
  padding: 20px 20px;
}

@media screen and (min-width: 820.98px) {
  #kawahisa2 .listli-c {
    width: calc(100% / 2);
  }
}
@media screen and (min-width: 820.98px) {
  #kawahisa2 .listli-c-c {
    border: 1px solid #d6d6d6;
    position: relative;
    padding: 50px 30px 30px;
    height: 100%;
  }
}
#kawahisa2 .listli-c-c ul {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

@media screen and (max-width: 820px) {
  #kawahisa2 .listli-c {
    padding: 30px 0;
    background: none;
  }

  #kawahisa2 .listli-c-c {
    position: relative;
  }
  #kawahisa2 .listli-c:nth-child(2) {
    border-top: 1px solid #d6d6d6;
  }
  #kawahisa2 .listli-c-c ul {
    margin-left: 55px;
  }
}
@media screen and (min-width: 820.98px) {
  #kawahisa2 .listli-c-c ul {
    /* 
    grid-template-columns: 1fr 1fr; */

    justify-content: center;
    align-items: center;
  }
}
#kawahisa2 .listli-c-c ul li {
  padding: 1px 5px 1px 15px;
  background: url(../images/dotli.svg) center left no-repeat;
  background-size: 5px;
  font-size: 1.6rem;
  line-height: 1.5em;
}
#kawahisa2 .listli-c-c ul li br {
  display: none;
}
#kawahisa2 .listlocation {
  margin-top: 10px;
  font-size: 1.5rem;
  margin-top: 30px;
  display: block;
  width: 100%;
}

#kawahisa2 .listul {
  display: block;
}

#kawahisa2 .boxlist {
  background: transparent;
  padding: 0;
  overflow: visible;
}
#kawahisa2 .boxlistin {
  border: none;
  position: static;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 820px) {
  .display-sp {
    display: block;
  }
  .display-pc {
    display: none;
  }
  #kawahisa2 .absround {
    left: 0;
    top: 0;
  }
  #kawahisa2 .boxlist {
    background: #fff;
    padding: 20px 20px;
    overflow: hidden;
    margin-top: 20px;
  }
  #kawahisa2 .boxlistin {
    border: 1px solid #d6d6d6;
    position: relative;
  }

  #kawahisa2 .flex2 {
    width: 100%;
    flex-direction: column;
    padding: 10px 20px 0px;
    gap: 0;
  }
  #kawahisa2 .listli-c-c ul li {
    font-size: 1.5rem;
  }
  #kawahisa2 .titleh2,
  #kawahisa4 .titleh3 span,
  #kawahisa5 .titleh4 {
    font-size: 2.3rem;
  }
  #kawahisa2 .text {
    font-size: 1.4rem;
    margin-top: 20px;
  }
}

.swiper-button-disabled {
  opacity: 0.3;
}

#single-detail .swiper-slide img {
  object-fit: cover;
}

.number9 #title-box img {
  object-position: top;
}
