@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-kv {
  background-color: #2d2d2d;
  padding: 64px 0 72px;
}
@media only screen and (max-width: 767px) {
  .p-kv {
    padding: 40px 0;
  }
}

.p-kv__sub-title {
  color: #adc563;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.p-kv__main-title {
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-kv__main-title {
    font-size: 32px;
  }
}

.p-kv__catch {
  margin-top: 20px;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-kv__catch {
    font-size: 21px;
  }
}

.p-kv__desc {
  color: #fff;
  margin-top: 24px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-kv__desc {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .p-kv__desc {
    text-align: left;
  }
}

.p-option-section {
  padding: 80px 0;
}
@media only screen and (max-width: 767px) {
  .p-option-section {
    padding: 40px 0;
  }
}
.p-option-section--bg-gray {
  background-color: #f7f7f6;
}

.p-merit__title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .p-merit__title {
    font-size: 28px;
  }
}
.p-merit__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #adc563;
}

.p-merit-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 57px -16px 0;
}
@media only screen and (max-width: 1271px) {
  .p-merit-list {
    margin-right: auto;
    margin-left: auto;
    row-gap: 24px;
    max-width: 600px;
  }
}

.p-merit-list__item {
  width: 33.3%;
  padding: 0 16px;
}
@media only screen and (max-width: 1271px) {
  .p-merit-list__item {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
}

.p-merit-list__inner {
  background-color: #fff;
  border-radius: 16px;
  border: solid 2px #ccc;
  padding: 40px 30px;
  -webkit-box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.16);
          box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.16);
  height: 100%;
}

.p-merit-list__num {
  text-align: center;
  position: relative;
  z-index: 0;
  font-weight: bold;
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  color: #fff;
}
.p-merit-list__num::before, .p-merit-list__num::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 1/1;
  width: 40px;
  height: auto;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.p-merit-list__num::before {
  background-color: #adc563;
  z-index: -1;
}
.p-merit-list__num::after {
  left: calc(50% + 5px);
  border: solid 1px #adc563;
}

.p-merit-list__title {
  margin-top: 24px;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  position: relative;
  padding-bottom: 8px;
}
.p-merit-list__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0px;
  left: 0px;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}

.p-merit-list__detail {
  margin-top: 24px;
  font-weight: 500;
}

.p-option-title {
  text-align: center;
}

.p-option-title__num {
  font-size: 28px;
  font-weight: bold;
  color: #adc563;
  font-family: "Noto Serif JP", serif;
}

.p-option-title__title {
  font-size: 28px;
  font-weight: bold;
}

.p-catering__intro {
  margin-top: 32px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-catering__intro {
    margin-top: 24px;
  }
}
@media only screen and (max-width: 480px) {
  .p-catering__intro {
    text-align: left;
  }
}

.p-catering-list {
  margin-top: 48px;
}
@media only screen and (max-width: 767px) {
  .p-catering-list {
    margin-top: 24px;
  }
}

.c-option-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px 0;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-left: -16px;
  margin-right: -16px;
}
@media only screen and (max-width: 1271px) {
  .c-option-list {
    margin-left: -8px;
    margin-right: -8px;
  }
}
@media only screen and (max-width: 767px) {
  .c-option-list {
    margin-right: 0;
    margin-left: 0;
  }
}
.c-option-list--2col .c-option-list__item {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .c-option-list--2col .c-option-list__item {
    width: 100%;
  }
}

.c-option-list__item {
  width: 33.3%;
  padding: 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (max-width: 1271px) {
  .c-option-list__item {
    padding: 0 8px;
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .c-option-list__item {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
}

.c-option-list__item-inner {
  background-color: #fff;
  border: solid 2px #ccc;
  border-radius: 16px;
  overflow: hidden;
}

.c-option-list__thumb {
  border-bottom: solid 1px #ccc;
}

.c-option-list__thumb-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
}

.c-option-list__text {
  padding: 32px;
}
@media only screen and (max-width: 1271px) {
  .c-option-list__text {
    padding: 15px;
  }
}

.c-option-list__title {
  font-weight: bold;
  font-size: 24px;
  border-bottom: solid 1px #ccc;
  padding-bottom: 8px;
  margin-bottom: 24px;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .c-option-list__title {
    font-size: 18px;
  }
}
.c-option-list__title--small {
  font-size: 21px;
}

.c-option-list__title-small {
  font-size: 14px;
}

.c-option-list__desc {
  margin-bottom: 16px;
}
.c-option-list__desc:last-child {
  margin-bottom: 0;
}

.p-catering-btn-wrap {
  margin: 48px auto 0;
  max-width: 320px;
  width: 100%;
}

.c-link-btn {
  border: solid 2px #2d2d2d;
  border-radius: 4px;
  display: block;
  padding: 15px;
  text-align: center;
  background-color: #fff;
}
.c-link-btn:hover {
  background-color: #2d2d2d;
}
.c-link-btn:hover .c-link-btn__text {
  color: #fff;
}
.c-link-btn:hover .c-link-btn__icon {
  background-color: #adc563;
}

.c-link-btn__text {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-left: 26px;
}

.c-link-btn__icon {
  position: absolute;
  top: 46%;
  left: 0;
  aspect-ratio: 1/1;
  width: 16px;
  height: auto;
  background-color: #2d2d2d;
  border-radius: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.c-link-btn__icon::before {
  content: "";
  display: block;
  position: absolute;
  width: 4px;
  height: auto;
  aspect-ratio: 1/1;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  top: 50%;
  left: 4px;
  -webkit-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg);
}

.p-rental__intro {
  margin-top: 32px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-rental__intro {
    margin-top: 24px;
  }
}
@media only screen and (max-width: 480px) {
  .p-rental__intro {
    text-align: left;
  }
}

.p-rental-list {
  margin-top: 48px;
}
@media only screen and (max-width: 767px) {
  .p-rental-list {
    margin-top: 24px;
  }
}

.c-option-list__price {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: bold;
}

.c-option-list__price-small {
  font-size: 14px;
}

.c-option-list__notes-item {
  font-size: 14px;
}

.p-equipment-links {
  margin-top: 56px;
}

.p-equipment-links__intro {
  text-align: center;
}
@media only screen and (max-width: 480px) {
  .p-equipment-links__intro {
    text-align: left;
  }
}

.p-equipment-links__list-wrap {
  margin: 48px auto 0;
  max-width: 664px;
}

.p-equipment-links__list {
  margin: 0 -12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .p-equipment-links__list {
    margin-right: 0;
    margin-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}

.p-equipment-links__item {
  width: 50%;
  padding: 0 12px;
}
@media only screen and (max-width: 767px) {
  .p-equipment-links__item {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
}

.p-streaming__intro {
  margin-top: 32px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-streaming__intro {
    margin-top: 24px;
  }
}
@media only screen and (max-width: 480px) {
  .p-streaming__intro {
    text-align: left;
  }
}

.p-streaming-list {
  margin-top: 48px;
}

.c-option-list__detail {
  margin-bottom: 16px;
}
.c-option-list__detail:last-child {
  margin-bottom: 0;
}

.c-option-list__detail-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 8px;
}

.c-option-list__small-note {
  font-size: 0.8em;
}

.c-option-list__check-list-item {
  position: relative;
  padding-left: 27px;
  font-weight: bold;
}
.c-option-list__check-list-item::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0px;
  aspect-ratio: 1/1;
  width: 16px;
  height: auto;
  background-image: url("/common/img/icon_list-check.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.c-option-list__check-list-item + .c-option-list__check-list-item {
  margin-top: 8px;
}
@media only screen and (max-width: 480px) {
  .c-option-list__check-list-item + .c-option-list__check-list-item {
    margin-top: 4px;
  }
}

.c-option-list__bottom-note {
  margin-top: 16px;
  text-align: right;
}

.p-interp__intro {
  margin-top: 32px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-interp__intro {
    margin-top: 24px;
  }
}
@media only screen and (max-width: 480px) {
  .p-interp__intro {
    text-align: left;
  }
}

.p-interp-list {
  margin-top: 48px;
}
@media only screen and (max-width: 767px) {
  .p-interp-list {
    margin-top: 24px;
  }
}

.p-interp__outro {
  margin-top: 48px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-interp__outro {
    margin-top: 24px;
  }
}

.p-production__intro {
  margin-top: 32px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-production__intro {
    margin-top: 24px;
  }
}
@media only screen and (max-width: 480px) {
  .p-production__intro {
    text-align: left;
  }
}

.p-production-list {
  margin-top: 48px;
}
@media only screen and (max-width: 767px) {
  .p-production-list {
    margin-top: 24px;
  }
}

.p-production__note-list {
  margin-top: 48px;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-other-option-list {
  margin-top: 48px;
}
@media only screen and (max-width: 767px) {
  .p-other-option-list {
    margin-top: 24px;
  }
}

.p-other-option__outro {
  margin-top: 48px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-other-option__outro {
    margin-top: 24px;
  }
}

/* 以下AI追記 */