.c-mv__icon {
  position: absolute;
  z-index: -1;
}
.c-mv__icon.icon-01 {
  bottom: -0.5rem;
  right: 3.2rem;
  width: 3.4rem;
}
@media (min-width: 768px) {
  .c-mv__icon.icon-01 {
    bottom: 2rem;
    right: 7rem;
    width: 6.2rem;
  }
}
.c-mv__icon.icon-01 img {
  animation-delay: 0.3s;
}
.c-mv__icon.icon-02 {
  bottom: 1.2rem;
  right: 6.2rem;
  width: 4.2rem;
}
@media (min-width: 768px) {
  .c-mv__icon.icon-02 {
    bottom: 5.1rem;
    right: 13rem;
    width: 7.7rem;
  }
}

.p-guide__list {
  display: grid;
  gap: 0.8rem;
}
@media (min-width: 768px) {
  .p-guide__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
  }
}

.guide-card {
  background-color: #fff;
  border-radius: 1rem;
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 1.6rem;
  padding: 2rem;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .guide-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem;
  }
}
.guide-card:hover {
  color: var(--color-secondary);
}
.guide-card:hover .guide-card__img img {
  transform: scale(1.1);
}
.guide-card:hover .c-icon {
  background-color: #D85C1A;
}
.guide-card__img {
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 302/227;
}
.guide-card__img img {
  transition: 0.3s ease;
  border-radius: inherit;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.guide-card__ttl {
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 1.8rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .guide-card__ttl {
    gap: 2.2rem;
    font-size: 2.2rem;
  }
}
.guide-card__ttl .c-icon {
  --icon-size-pc: 0.8rem;
  --icon-size-sp: 0.6rem;
  --icon-width-pc: 3.6rem;
  --icon-width-sp: 2.4rem;
  flex-shrink: 0;
}

.guide-detail {
  padding-inline: 3rem;
}
@media (min-width: 768px) {
  .guide-detail {
    padding-inline: 8.3rem;
  }
}
.guide-detail__head {
  margin-bottom: 3rem;
  padding-bottom: 4rem;
  position: relative;
}
@media (min-width: 768px) {
  .guide-detail__head {
    display: grid;
    grid-template-columns: 1fr 48rem;
    grid-template-rows: auto 1fr;
    -moz-column-gap: 6.8rem;
    column-gap: 6.8rem;
    align-items: start;
    margin-bottom: 6rem;
    padding-bottom: 6rem;
  }
}
.guide-detail__head::after {
  content: "";
  background-color: #EDE5D3;
  border-radius: 10rem;
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.guide-detail__ttl {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 2.4rem;
}
@media (min-width: 768px) {
  .guide-detail__ttl {
    font-size: 3.6rem;
    margin-bottom: 4.2rem;
  }
}
.guide-detail__gallery {
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 2.4rem;
  position: relative;
}
@media (min-width: 768px) {
  .guide-detail__gallery {
    grid-column: 2;
    grid-row: 1/3;
    align-self: start;
    margin-bottom: 0;
  }
}
.guide-detail__gallery-zoom {
  background-color: rgba(219, 205, 173, 0.7);
  border-radius: 0 1rem 0 4rem;
  pointer-events: none;
  padding: 1.1rem 1.2rem 1.7rem 1.6rem;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
@media (min-width: 768px) {
  .guide-detail__gallery-zoom {
    padding: 1.4rem 1.2rem 1.7rem 2rem;
  }
}
.guide-detail__gallery-zoom::after {
  content: "";
  background: url("../images/common/icon_zoom.svg") no-repeat center/contain;
  aspect-ratio: 1;
  display: block;
  width: 2rem;
}
@media (min-width: 768px) {
  .guide-detail__gallery-zoom::after {
    width: 2.8rem;
  }
}
.guide-detail__gallery .splide__track {
  cursor: pointer;
}
.guide-detail__gallery .splide__arrow {
  background: #F8F0C0;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.2rem;
  width: 3.2rem;
}
@media (min-width: 768px) {
  .guide-detail__gallery .splide__arrow {
    height: 5rem;
    width: 5rem;
  }
}
.guide-detail__gallery .splide__arrow svg {
  display: none;
}
.guide-detail__gallery .splide__arrow::after {
  content: "";
  background-color: var(--color-secondary);
  -webkit-mask: url("../images/common/icon_arrow01.svg") no-repeat center/contain;
  mask: url("../images/common/icon_arrow01.svg") no-repeat center/contain;
  aspect-ratio: 8/14;
  width: 0.8rem;
}
.guide-detail__gallery .splide__arrow--prev {
  left: 1.2rem;
}
@media (min-width: 768px) {
  .guide-detail__gallery .splide__arrow--prev {
    left: 2rem;
  }
}
.guide-detail__gallery .splide__arrow--prev::after {
  transform: scaleX(-1);
}
.guide-detail__gallery .splide__arrow--next {
  right: 1.2rem;
}
@media (min-width: 768px) {
  .guide-detail__gallery .splide__arrow--next {
    right: 2rem;
  }
}
.guide-detail__gallery .splide__slide {
  overflow: hidden;
  padding-top: 75%;
  position: relative;
}
.guide-detail__gallery .splide__slide img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.guide-detail__info table {
  width: 100%;
}
.guide-detail__info table tr {
  height: auto !important;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 768px) {
  .guide-detail__info table tr {
    flex-direction: row;
  }
  .guide-detail__info table tr:first-child td {
    border-top: 2px solid #CCCDD0;
  }
  .guide-detail__info table tr:first-child td:first-child {
    border-top-color: var(--color-secondary);
    border-top-left-radius: 0.6rem;
  }
  .guide-detail__info table tr:first-child td:last-child {
    border-top-right-radius: 0.6rem;
  }
  .guide-detail__info table tr:last-child td {
    border-bottom: 2px solid #CCCDD0;
  }
  .guide-detail__info table tr:last-child td:first-child {
    border-bottom-color: var(--color-secondary);
    border-bottom-left-radius: 0.6rem;
  }
  .guide-detail__info table tr:last-child td:last-child {
    border-bottom-right-radius: 0.6rem;
  }
}
@media (max-width: 767px) {
  .guide-detail__info table tr:first-child td:first-child {
    border-radius: 0.6rem 0.6rem 0 0;
  }
  .guide-detail__info table tr:last-child td:last-child {
    border-bottom: 2px solid #CCCDD0;
    border-radius: 0 0 0.6rem 0.6rem;
  }
}
.guide-detail__info table td {
  flex: 1;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.42;
  height: auto !important;
  width: auto !important;
  padding: 1.4rem 2.2rem;
  text-align: left;
}
@media (min-width: 768px) {
  .guide-detail__info table td {
    border-bottom: 2px solid #CCCDD0;
    border-right: 2px solid #CCCDD0;
    font-size: 1.6rem;
    line-height: 1.5;
    padding: 2rem 2.8rem;
  }
}
@media (max-width: 767px) {
  .guide-detail__info table td {
    border-left: 2px solid #CCCDD0;
    border-right: 2px solid #CCCDD0;
  }
}
.guide-detail__info table td:first-child {
  background-color: var(--color-secondary);
  border-bottom-color: #fff;
  border-right: 0;
  color: #fff;
  font-weight: bold;
}
@media (min-width: 768px) {
  .guide-detail__info table td:first-child {
    flex: 0 16rem;
    width: 16rem;
  }
}
@media (max-width: 767px) {
  .guide-detail__info table td:first-child {
    border-left-color: var(--color-secondary);
    border-right-color: var(--color-secondary);
  }
}

.gallery-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 999;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  pointer-events: none;
  opacity: 0;
  transition: 0.3s opacity;
}
.gallery-modal.is-active {
  pointer-events: all;
  opacity: 1;
}
.gallery-modal__btn-close {
  position: absolute;
  z-index: 1;
  right: 2.8rem;
  top: 2.8rem;
  width: 5rem;
  height: 5rem;
  border-radius: 6rem;
  background: #919191 url("../images/common/icon_x.svg") no-repeat center;
  background-size: 2rem auto;
}
@media (min-width: 768px) {
  .gallery-modal__btn-close {
    right: 4rem;
    top: 4rem;
    width: 6rem;
    height: 6rem;
    background-size: 2.4rem auto;
    transition: 0.3s background-color ease;
    cursor: pointer;
  }
  .gallery-modal__btn-close:hover {
    background-color: #6c6b6b;
  }
}
.gallery-modal .splide {
  aspect-ratio: 325/244;
  max-width: 32.5rem;
  width: 100%;
}
@media (min-width: 768px) {
  .gallery-modal .splide {
    aspect-ratio: 96/60;
    max-width: 96rem;
    padding-inline: 8rem;
  }
}
.gallery-modal .splide__track {
  aspect-ratio: 4/3;
  max-width: 80rem;
  width: 100%;
  border-radius: 1rem;
}
.gallery-modal .splide__slide {
  overflow: hidden;
  aspect-ratio: 325/244;
}
@media (min-width: 768px) {
  .gallery-modal .splide__slide {
    aspect-ratio: 4/3;
  }
}
.gallery-modal .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.gallery-modal .splide__arrow {
  width: 3.2rem;
  height: 3.2rem;
  background-color: #FFF;
  opacity: 1;
  transition: 0.3s ease;
}
.gallery-modal .splide__arrow svg {
  display: none;
}
@media (min-width: 768px) {
  .gallery-modal .splide__arrow {
    width: 5rem;
    height: 5rem;
  }
  .gallery-modal .splide__arrow:hover {
    opacity: 1;
    background-color: var(--color-secondary);
  }
  .gallery-modal .splide__arrow:hover::after {
    background-color: #FFF;
  }
}
.gallery-modal .splide__arrow::after {
  position: absolute;
  top: 50%;
  width: 1.2rem;
  height: 2.4rem;
  background-color: var(--color-secondary);
  -webkit-mask: url("../images/common/icon_arrow01.svg") no-repeat center;
  mask: url("../images/common/icon_arrow01.svg") no-repeat center;
  -webkit-mask-size: auto 1.4rem;
  mask-size: auto 1.4rem;
  transform: translate(-50%, -50%);
  content: "";
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .gallery-modal .splide__arrow::after {
    -webkit-mask-size: auto 1.6rem;
    mask-size: auto 1.6rem;
  }
}
.gallery-modal .splide__arrow.splide__arrow--prev {
  left: 1.2rem;
}
@media (min-width: 768px) {
  .gallery-modal .splide__arrow.splide__arrow--prev {
    left: 0;
  }
}
.gallery-modal .splide__arrow.splide__arrow--prev::after {
  left: 1.6rem;
  -webkit-mask-image: url("../images/common/icon_arrow05.svg");
  mask-image: url("../images/common/icon_arrow05.svg");
}
@media (min-width: 768px) {
  .gallery-modal .splide__arrow.splide__arrow--prev::after {
    left: 2.5rem;
  }
}
.gallery-modal .splide__arrow.splide__arrow--next {
  right: 1.2rem;
}
.gallery-modal .splide__arrow.splide__arrow--next::after {
  left: 1.8rem;
}
@media (min-width: 768px) {
  .gallery-modal .splide__arrow.splide__arrow--next {
    right: 0;
  }
  .gallery-modal .splide__arrow.splide__arrow--next::after {
    left: 2.6rem;
  }
}