@charset "UTF-8";
/* 色の設定 */
/* ブレイクポイントの設定 */
/* レイアウトの設定 */
.setting-main {
  width: 100%;
  margin: 0 auto;
  padding: 80px 15px;
  display: flex;
  flex-direction: column;
  row-gap: 80px;
}
@media screen and (min-width: 600px) {
  .setting-main {
    padding: 80px 4vw 80px;
  }
}
@media screen and (min-width: 1024px) {
  .setting-main {
    padding: 80px 6vw;
  }
}
@media screen and (min-width: 1440px) {
  .setting-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
  }
}

.sp-only {
  display: block;
}
@media screen and (min-width: 1024px) {
  .sp-only {
    display: none;
  }
}

.pc-only {
  display: none;
}
@media screen and (min-width: 1024px) {
  .pc-only {
    display: inline-block;
  }
}

.p-tour__outer.page .p-button__list.grand {
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
}

.profile__wrapper {
  position: relative;
}

.profile__visual {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  top: -5.3380782918vw;
  right: 3.5587188612vw;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.36);
}
@media screen and (min-width: 1024px) {
  .profile__visual {
    width: 124px;
    height: 124px;
    top: -30px;
    right: 30px;
  }
}
.profile__visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

@media screen and (min-width: 1024px) {
  .l-container.profile {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 1024px) {
  .l-container.profile .post__mv {
    height: 60vh !important;
  }
}
.l-container.profile .post__mv img {
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  -o-object-position: 0% 55%;
     object-position: 0% 55%;
}
.l-container.profile dl {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .l-container.profile dl {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1024px) {
  .l-container.profile dl dt {
    width: 19%;
  }
}
.l-container.profile dl dd {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .l-container.profile dl dd {
    width: 29%;
  }
}
.l-container.profile dl dd:last-of-type {
  width: 100%;
}
.l-container.profile dl dd:nth-of-type(odd) {
  margin-right: 0;
}
@media screen and (min-width: 1024px) {
  .l-container.profile dl dd:nth-of-type(odd) {
    margin-right: 2%;
  }
}
@media screen and (min-width: 1024px) {
  .l-container.profile .profile__spec dt, .l-container.profile .profile__team dt {
    width: 15%;
  }
}
.l-container.profile .profile__spec dd, .l-container.profile .profile__team dd {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .l-container.profile .profile__spec dd, .l-container.profile .profile__team dd {
    width: 33%;
  }
}
.l-container.profile .profile__spec dd:last-of-type, .l-container.profile .profile__team dd:last-of-type {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .l-container.profile .profile__spec dd:last-of-type, .l-container.profile .profile__team dd:last-of-type {
    width: 33%;
  }
}

.l-container.contact {
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
}

#contact {
  padding-top: 1px;
}

.inquiry__form {
  width: 100%;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
.inquiry__form .p-button__btn-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.inquiry__form .p-button__btn {
  width: 140px;
  text-align: center;
  margin-top: 36px;
}
.inquiry__form input[name=privacy] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
  width: 16px;
  height: 16px;
  margin-bottom: 2px;
  margin-right: 8px;
}
.inquiry__form label[for=privacy] {
  text-align: center;
}
.inquiry__form label[for=privacy]:after {
  display: none;
}
.inquiry__form label[for=privacy] a {
  color: blue;
  text-decoration: underline;
}
.inquiry__form .custom-checkbox {
  position: relative;
  display: inline-block;
  cursor: not-allowed; /* クリックできないように見せる */
}
.inquiry__form .custom-checkbox-box {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid #da3401;
  display: inline-block;
  vertical-align: middle;
  background: #fffefa;
  margin-right: 8px;
}
.inquiry__form .custom-checkbox input:checked + .custom-checkbox-box {
  background: #da3401; /* チェックされた状態のスタイル */
}

.inquiry__form label {
  font-size: 16px;
  margin-top: 32px;
  position: relative;
}

@media screen and (max-width: 562px) {
  .inquiry__form label {
    font-size: 15px;
  }
}
.inquiry__form label::after {
  content: "必須";
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #fff;
  background-color: #da3401;
  font-size: 12px;
  padding: 0 15px;
  border-radius: 5px;
  position: absolute;
  top: 2px;
  right: 0;
}

.inquiry__form input[type=text] {
  width: 100%;
  height: 40px;
  padding-left: 0.5em;
  margin-top: 10px;
  border: solid 1px #111;
  border-radius: 5px;
  font-size: 16px;
}

@media screen and (max-width: 562px) {
  .inquiry__form input[type=text] {
    font-size: 16px;
  }
}
.inquiry__form input[type=email] {
  width: 100%;
  height: 40px;
  padding-left: 0.5em;
  margin-top: 10px;
  border: solid 1px #111;
  border-radius: 5px;
  font-size: 16px;
}

@media screen and (max-width: 562px) {
  .inquiry__form input[type=email] {
    font-size: 16px;
  }
}
.inquiry__form textarea {
  width: 100%;
  height: 300px;
  margin-top: 10px;
  padding: 0.5em;
  border: solid 1px #111;
  border-radius: 5px;
  font-size: 16px;
}

@media screen and (max-width: 562px) {
  .inquiry__form textarea {
    font-size: 16px;
  }
}
body.modal-open {
  overflow: hidden;
}

.modal {
  display: none;
  position: fixed;
  z-index: 11;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modal__inner {
  width: 100%;
  height: 97%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fffefa;
  margin: auto;
  padding: 10px;
  border: 1px solid #888;
  width: 90%;
  position: relative;
  height: 90svh;
  overflow-y: hidden;
  border-radius: 4px;
}
@media screen and (min-width: 1024px) {
  .modal-content {
    width: 80%;
    height: 80vh;
    max-width: 1000px;
    padding: 20px;
    margin: auto;
  }
}
.modal-content .post__content {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
.modal-content .post__content p {
  font-size: 14px;
}
@media screen and (min-width: 1024px) {
  .modal-content .post__content p {
    font-size: 15px;
  }
}
.modal-content .close {
  color: #aaa;
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .modal-content .close {
    right: 30px;
    top: 20px;
    font-size: 50px;
  }
}
.modal-content .close:hover,
.modal-content .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.modal-content .p-button__btn {
  margin: 0 0 0 20px;
}

.modal__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  background-color: white;
  z-index: 11;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .modal__footer {
    padding: 20px 0;
  }
}
.modal__footer .p-button__btn {
  margin: 0;
}/*# sourceMappingURL=page.css.map */