:root {
  --color-white: #fff;
  --color-black: #000;
  --color-yellow: #d1c182;
}

.p-hero {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-hero {
    display: block;
    padding-bottom: 5.8rem;
  }
}
.p-hero__kv {
  flex-shrink: 0;
  width: 51.5%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-hero__kv {
    width: 100%;
    margin-bottom: 11.5%;
  }
}
.p-hero__kv img {
  transform: scale(1.1);
}
.is-load .p-hero__kv img {
  transform: scale(1);
  transition: transform 5s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-hero__content {
  width: 48.5%;
}
@media screen and (max-width: 767px) {
  .p-hero__content {
    width: 100%;
  }
}
.p-hero__sns {
  padding: 2rem 2rem 11.4%;
}
@media screen and (max-width: 767px) {
  .p-hero__sns {
    padding: 2rem 2rem 0;
  }
}
.p-hero__sns-list {
  display: flex;
  justify-content: flex-end;
  width: 25rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-hero__sns-list {
    width: 100%;
    justify-content: center;
  }
}
.p-hero__sns-list-item {
  border: 1px solid var(--color-white);
  box-sizing: border-box;
  width: 48%;
  border-radius: 100px;
  transition: background 0.45s cubic-bezier(0.37, 0, 0.63, 1);
}
@media (hover: hover) {
  .p-hero__sns-list-item:hover {
    background-color: var(--color-white);
  }
  .p-hero__sns-list-item:hover .p-hero__sns-text {
    color: var(--color-black);
  }
  .p-hero__sns-list-item:hover .p-hero__sns-icon {
    fill: var(--color-black);
  }
}
@media screen and (max-width: 767px) {
  .p-hero__sns-list-item {
    width: 12rem;
  }
}
.p-hero__sns-list-item + .p-hero__sns-list-item {
  margin-left: 4%;
}
@media screen and (max-width: 767px) {
  .p-hero__sns-list-item + .p-hero__sns-list-item {
    margin-left: 1rem;
  }
}
.p-hero__sns-list-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 1rem 0 0.9rem;
}
@media screen and (max-width: 767px) {
  .p-hero__sns-list-item a {
    padding: 0.8rem 0 0.9rem;
  }
}
.p-hero__sns-text {
  color: var(--color-white);
  font-size: 1.25rem;
  margin-right: 0.5rem;
  transition: color 0.45s cubic-bezier(0.37, 0, 0.63, 1);
}
@media screen and (max-width: 767px) {
  .p-hero__sns-text {
    margin-right: 0.8rem;
    font-size: 1rem;
  }
}
.p-hero__sns-icon {
  padding-top: 0.1rem;
  width: 1.4rem;
  fill: var(--color-white);
  transition: fill 0.45s cubic-bezier(0.37, 0, 0.63, 1);
}
@media screen and (max-width: 767px) {
  .p-hero__sns-icon {
    width: 1.2rem;
  }
}
.p-hero__ttl {
  margin: 0 auto;
  margin-bottom: 3.7rem;
  width: 67%;
  transform: translateY(15%);
  opacity: 0;
}
.is-load .p-hero__ttl {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.2s;
}
@media screen and (max-width: 767px) {
  .p-hero__ttl {
    width: 88%;
    margin-bottom: 2.8rem;
  }
}
.p-hero__text {
  text-align: center;
  line-height: 1.8;
  font-size: 1.55rem;
  letter-spacing: 0.8px;
  transform: translateY(35px);
  opacity: 0;
}
.is-load .p-hero__text {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.4s;
}
@media screen and (min-width: 1700px) {
  .p-hero__text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__text {
    line-height: 1.9;
    font-size: 1.2rem;
    letter-spacing: 1px;
  }
}
.p-hero__text-cap {
  margin-bottom: 0.5rem;
  color: var(--color-yellow);
  font-weight: 700;
  font-size: 2.7rem;
}
@media screen and (min-width: 1700px) {
  .p-hero__text-cap {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__text-cap {
    letter-spacing: 0;
    font-size: 2rem;
    margin-bottom: 0.1rem;
  }
}
.p-hero__text-small {
  font-size: 1.2rem;
  margin-top: 1.1rem;
  color: #a6a6a6;
}
@media screen and (min-width: 1700px) {
  .p-hero__text-small {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__text-small {
    font-size: 1rem;
    margin-top: 0.4rem;
  }
}
.p-hero__bnr {
  overflow: hidden;
  margin-top: 8.9rem;
  width: 100%;
  transform: translateY(18%);
  opacity: 0;
}
.is-load .p-hero__bnr {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.6s;
}
@media screen and (max-width: 767px) {
  .p-hero__bnr {
    margin-top: 2.9rem;
  }
}
.p-hero__bnr img {
  width: 100%;
}
.p-hero__bnr-control {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 4.8rem;
  position: relative;
  margin-top: 1.7rem;
}
.is-no-slide .p-hero__bnr-control {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-hero__bnr-control {
    padding: 0 2.8rem;
    margin-top: 1.2rem;
  }
}
.p-hero__bnr-control .swiper-pagination {
  position: relative;
}
.p-hero__bnr-pager {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-family: "Gilda Display", serif;
  font-weight: 400;
}
.p-hero__bnr-pager-now {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-hero__bnr-pager-now {
    font-size: 1.5rem;
  }
}
.p-hero__bnr-pager-total {
  font-size: 1.7rem;
  position: relative;
  display: flex;
  margin-left: 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-hero__bnr-pager-total {
    font-size: 1rem;
  }
}
.p-hero__bnr-pager-total::before {
  content: "/";
  position: relative;
  display: block;
  padding-right: 0.5rem;
}
.p-hero__bnr-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2rem;
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 767px) {
  .p-hero__bnr-btn {
    width: 0.7rem;
  }
}
.p-hero__bnr-btn.-prev {
  left: 0;
  transform: translateY(-50%) scaleX(-1);
}
.p-hero__bnr-btn.-next {
  right: 0;
}
@media (hover: hover) {
  .p-hero__bnr-btn:hover {
    opacity: 0.6;
  }
}

.is-no-slide .bnr_swiper {
  margin: 0 auto;
  width: 72.8%;
}
.bnr_swiper .swiper-slide a {
  display: block;
  overflow: hidden;
  position: relative;
}
.bnr_swiper .swiper-slide a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
@media (hover: hover) {
  .bnr_swiper .swiper-slide a:hover::after {
    opacity: 1;
  }
  .bnr_swiper .swiper-slide a:hover img {
    transform: scale(1.05);
  }
}
.bnr_swiper .swiper-slide img {
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.p-box__head {
  font-size: 4.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.4;
  margin-bottom: 4.8rem;
  opacity: 0;
  transform: translateY(25px);
}
.l-section.is-active .p-box__head {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 767px) {
  .p-box__head {
    letter-spacing: 1.5px;
    font-size: 2.7rem;
    text-align: center;
    margin-bottom: 2.1rem;
  }
}
.p-box__ac .c-ac__item {
  opacity: 0;
  transform: translateY(35px);
}
.l-section.is-active .p-box__ac .c-ac__item {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.l-section.is-active .p-box__ac .c-ac__item:nth-child(1) {
  transition-delay: 0.2s;
}
.l-section.is-active .p-box__ac .c-ac__item:nth-child(2) {
  transition-delay: 0.33s;
}
.p-box__ac-box + .p-box__ac-box {
  margin-top: 2.3rem;
}
.p-box__ac-list-item {
  display: flex;
  align-items: center;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-box__ac-list-item {
    line-height: 1.5;
  }
}
.p-box__ac-list-item + .p-box__ac-list-item {
  margin-top: 0.6rem;
}
@media screen and (max-width: 767px) {
  .p-box__ac-list-item + .p-box__ac-list-item {
    margin-top: 0.8rem;
  }
}
.p-box__ac-list-label {
  color: #a6a6a6;
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 15.5rem;
}
@media screen and (max-width: 767px) {
  .p-box__ac-list-label {
    padding-left: 0.1rem;
    font-size: 1.1rem;
    width: 14rem;
  }
}
.p-box__ac-list-text {
  font-size: 1.6rem;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 767px) {
  .p-box__ac-list-text {
    font-size: 1.3rem;
  }
}
.p-box__ac-list-text.-small {
  font-size: 1.2rem;
  padding-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-box__ac-list-text.-small {
    font-size: 1rem;
    padding-top: 0.1rem;
  }
}
.p-box__btn {
  margin-top: 5.1rem;
  opacity: 0;
  transform: translateY(35px);
}
.l-section.is-active .p-box__btn {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.5s;
}
@media screen and (max-width: 767px) {
  .p-box__btn {
    margin-top: 3rem;
  }
}