/* key-visual */
.key-visual-carousel {
  position: relative;
}

.key-visual__item {
  height: 600px;
}

.key-visual__branding,
.key-visual__achievement,
.key-visual__links {
  position: absolute;
}

.key-visual__branding {
  bottom: 113px;
  left: 0;
  right: 0;
  margin: auto;
  width: 170px;
}

.key-visual__achievement {
  top: 16px;
  right: 16px;
  width: 125px;
  height: 131px;
}

.key-visual__branding-logo,
.key-visual__achievement-image {
  width: 100%;
  height: auto;
}

.key-visual__links {
  bottom: 0;
  width: 100%;
  background-color: rgba(255,255,255,0.8);
}

.key-visual__links-list {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 12px 24px;
  padding: 16px 0;
}

.key-visual__list-item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2px;
  color: #536A80;
  font-family: "Yu Gothic", "Noto Sans JP", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.key-visual__list-item:nth-child(odd) {
  justify-content: flex-end;
}

.key-visual__list-item a::after {
  content: "";
  position: absolute;
  right: 0;
  width: 20px;
  height: 24px;
  background: url(../../images/anchor-arrow.png) no-repeat center center / contain;
}

.key-visual__list-item a {
  position: relative;
  padding-right: 24px;
  z-index: 1;
}

.wedding-style-detail__inner::before {
  height: 24px;
}

.wedding-style-detail__action {
  margin: 0 16px;
}

.wedding-style-detail__video-wrapper {
  max-width: calc(100% - 32px);
  margin: 30px auto 0;
}

.wedding-style-detail__video {
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .key-visual__item {
    height: 536px;
  }

  .key-visual__branding {
    bottom: 84px;
    left: 0;
    right: 0;
    margin: auto;
    width: 270px;
  }

  .key-visual__achievement {
    top: 26px;
    right: 30px;
    width: 198px;
    height: 207px;
  }

  .key-visual__links-list {
    display: flex;
    justify-content: center;
    gap: 14px;
  }

  .key-visual__list-item {
    width: initial;
    font-size: 18px;
  }

  .key-visual__list-item:nth-child(odd) {
    width: initial;
  }

  .key-visual__list-item a::after {
    height: 27px;
  }
}

/* features */
.features {
  background-color: #fff;
}

.feature-images-slide {
  display: flex;
  align-items: center;
  height: 160px;
  overflow: hidden;
}

@keyframes loop-slide-top {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop-slide-bottom {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.feature-images-list-top {
  display: flex;
  animation: loop-slide-top 90s infinite linear -45s both;
}

.feature-images-list-bottom {
  display: flex;
  animation: loop-slide-bottom 90s infinite linear -45s both;
}

.feature-images-list-item {
  width: 160px;
  height: 160px;
}

.feature-images__slide-img {
  width: 100%;
}

.features-item__header-text {
  padding: 32px 16px;
  color: #536A80;
}

.features__title {
  padding: 40px;
}

#features {
  margin-top: -100px; /* アンカーリンク対応 */
  padding-top: 100px; /* アンカーリンク対応 */
}

.features-reasons-list {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  max-width: 980px;
  margin: 0 auto -12px;
}

.features-reason-item {
  width: 100%;
  margin-bottom: 40px;
}

.features-reason-image {
  width: 100%;
  height: auto;
  display: none;
}
.features-reason-image-sp {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .feature-images-slide {
    height: 240px;
  }

  .feature-images-list-item {
    width: 240px;
    height: 240px;
  }

  .features-item__header-text {
    padding: 72px 16px 64px;
    font-size: 26px;
  }

  .features__title {
    padding: 50px 0 48px;
  }

  .features-reasons-list {
    flex-flow: row;
    flex-wrap: wrap;
  }

  .features-reason-item {
    width: calc(50% - 12px);
    margin-bottom: 24px;
  }

  .features-reason-image {
    display: block;
  }
  .features-reason-image-sp {
    display: none;
  }
}

/* venue */
#venue {
  margin-top: -100px; /* アンカーリンク対応 */
  padding-top: 100px; /* アンカーリンク対応 */
}

.venue__list-wrapper {
  gap: 16px;
  flex-direction: column;
}

.venue__list-item {
  width: 100%;
}

.venue__card-picture-round {
  border-radius: 8px;
}

.venue__card-place-name.venue__special {
  font-size: 16px;
}

.venue__card-label.venue__special,
.venue__card-value.venue__special {
  font-size: 12px;
}

.venue-action {
  padding: 40px 16px 0;
  background: #fff;
}

@media (min-width: 768px) {
  .venue__list {
    margin: 16px auto 48px;
  }

  .venue__list-wrapper {
    flex-direction: row;
  }

  .venue__list-item {
    width: calc(50% - 8px);
    padding-bottom: 20px;
  }

  .venue__card-place-name.venue__special {
    font-size: 18px;
  }

  .venue__card-label.venue__special,
  .venue__card-value.venue__special {
    font-size: 14px;
  }

  .venue-action {
    padding: 80px 16px;
  }
}

/* party style */
#party-style {
  margin-top: -100px; /* アンカーリンク対応 */
  padding-top: 100px; /* アンカーリンク対応 */
}

.party-style__button {
  padding: 12px 16px!important;
}

/* plan */
#plan {
  margin-top: -100px; /* アンカーリンク対応 */
  padding-top: 100px; /* アンカーリンク対応 */
}

.plan__types {
  display: flex;
  justify-content: center;
  gap: 8px;
  max-width: 1012px;
  padding: 0 16px;
}

.plan__type {
  flex: 1;
}

.plan__type-link {
  display: block;
  padding: 30px 8px;
  font-family: "Yu Gothic", "Noto Sans JP", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 135%;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  border-radius: 8px;
}

.plan__type-link--light {
  color: #7CBF9A;
  border: 1px solid #7CBF9A;
}
.plan__type-link--light.active {
  color: #fff;
  background: #7CBF9A;
}

.plan__type-link--standard {
  color: #536A80;
  border: 1px solid #536A80;
}
.plan__type-link--standard.active {
  color: #fff;
  background: #536A80;
}

.plan__type-link--premium {
  color: #AC8C4B;
  border: 1px solid #AC8C4B;
}
.plan__type-link--premium.active {
  color: #fff;
  background: #AC8C4B;
}

.plan__text-description {
  font-size: 18px;
  line-height: 1.5;
}

.plan__text-description--light,
.plan__text-description--standard,
.plan__text-description--premium {
  padding: 0 16px 24px;
  font-weight: 700;
  text-align: center;
}

.plan__color--light,
.plan__text-description--light {
  color: #63997C;
}

.plan__color--standard,
.plan__text-description--standard {
  color: #536A80;
}

.plan__color--premium,
.plan__text-description--premium {
  color: #AC8C4B;
}

.plan-item__pricing--light {
  background: #63997C;
}

.plan-item__pricing--standard {
  background: #536A80;
}

.plan-item__pricing--premium {
  background: #AC8C4B;
}

.plan-basic {
  padding: 0 16px 2px 16px;
}

.plan-basic-items {
  flex-flow: row;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
}

.plan-basic-item {
  width: calc(50% - 8px);
  margin-bottom: 4px;
}

.plan-basic-item__picture-name {
  position: initial;
  display: block;
  padding: 4px 0 0 0;
  font-family: "Yu Gothic", "Noto Sans JP", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.plan-basic-item__cut {
  position: absolute;
  bottom: 0;
  padding: 6px 6px 0 0;
  color: #222;
  font-family: Futura, Jost;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  background: #fff;
}

.plan-basic-item__cut--light {
  color: #63997C;
}

.plan-basic-item__cut--standard {
  color: #536A80;
}

.plan-basic-item__cut--premium {
  color: #AC8C4B;
}

.plan-basic-item__type {
  position: absolute;
  top: 0;
  padding: 2px 6px;
  color: #fff;
  font-family: "Yu Gothic", "Noto Sans JP", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.plan-basic-item__type--standard {
  background-color: #536A80;
}

.plan-basic-item__type--premium {
  background-color: #AC8C4B;
}

.plan-other {
  max-width: none;
  margin: 0 0 40px;
}

@media (min-width: 768px) {
  .plan__type-link {
    font-size: 18px;
  }

  .plan__text-description {
    font-size: 20px;
  }

  .plan__text-description--light,
  .plan__text-description--standard,
  .plan__text-description--premium {
    padding: 18px 16px 48px;
  }

  .plan-basic {
    padding: 24px 16px 20px 16px;
  }

  .plan-basic-item {
    width: calc(25% - 12px);
    margin-bottom: 36px;
  }

  .plan-basic-item__picture-name {
    font-size: 14px;
  }

  .plan-basic-item__type {
    font-size: 12px;
  }

  .plan-other {
    margin: 0 16px 40px;
  }
}

/* faq */
.faq {
  max-width: 1012px;
}
@media (min-width: 768px) {

}

/* wedding style */
.wedding-style {
  max-width: 1012px;
}
@media (min-width: 768px) {

}
