html.is-full {
  position: inherit;
  width: auto;
  height: auto;
}
html::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 1;
  z-index: 10000;
  transition: 1s;
}
html.is-op-1st::before {
  pointer-events: none;
  opacity: 0;
}
html.is-full::before {
  pointer-events: none;
  opacity: 0;
  transition: 0;
}

.l-header {
  opacity: 0;
  transition: opacity 1s;
}
.is-op-2nd .l-header {
  opacity: 1;
}
.is-full .l-header {
  opacity: 1;
}
.l-header-nav-btn {
  border: 1px solid #fff;
}
@media screen and (min-width: 1320.1px) {
  .l-header-nav-list__item a {
    color: #fff;
  }
}
@media screen and (max-width: 1320px) and (min-width: 960.1px) {
  .l-header-nav-list__item a {
    color: #fff;
  }
}
.l-header-nav-list__item a::before {
  background: #fff;
}
.fixed .l-header-nav-list__item a::before {
  background: #1F2021;
}
@media screen and (max-width: 960px) {
  .l-header-head {
    justify-content: flex-end;
  }
}
.l-header-head__ttl {
  pointer-events: none;
  opacity: 0;
  background: none;
}
@media screen and (max-width: 960px) {
  .l-header-head__ttl {
    display: none;
  }
}
.fixed .l-header-head__ttl {
  pointer-events: all;
  opacity: 1;
}
.l-header .gtranslate_wrapper {
  border: 0;
  margin: 0;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-mv {
  position: relative;
  height: 100vh;
  height: 100dvh;
  background: #000;
  padding-bottom: 6.7rem;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-mv {
    padding: 0 5.5rem 18rem;
  }
}
.p-mv__movie {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: calc(100% + 30vw);
  object-fit: cover;
  transition: opacity 1s;
  transform: translateY(-50%);
}
@media screen and (max-width: 960px) {
  .p-mv__movie {
    height: calc(100% + 70vw);
  }
}
.is-full .p-mv__movie {
  transition: 0;
  opacity: 0.8;
}
.is-op-2nd .p-mv__movie {
  opacity: 0.8;
}
.p-mv__inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  flex-flow: column;
  width: 100%;
  height: 100%;
  padding: 0 8rem;
}
@media screen and (max-width: 960px) {
  .p-mv__inner {
    padding: 0;
  }
}
.p-mv-catch {
  width: 100%;
  z-index: 2;
  opacity: 0;
  transition: 1s;
}
.is-op-2nd .p-mv-catch, .is-full .p-mv-catch {
  opacity: 1;
}
.p-mv-catch__ttl {
  position: relative;
  width: 100%;
}
.p-mv-catch__ttl::after {
  content: "";
  position: absolute;
  bottom: 1.2rem;
  right: 0;
  width: calc(100% - 32.4rem);
  height: 1px;
  background: #fff;
  opacity: 0.3;
}
.p-mv-catch__ttl img {
  width: 30.2rem;
}
@media screen and (max-width: 960px) {
  .p-mv-catch__ttl img {
    width: 24.5rem;
  }
}
.p-mv-catch__txt {
  color: #D9D9D9;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  line-height: 1.4;
  margin-top: 1rem;
}
.p-mv-scroll {
  position: relative;
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-style: italic;
  font-weight: 500;
  margin-top: 1.8rem;
  transition: 1s;
  opacity: 0;
}
.is-op-end .p-mv-scroll, .is-full .p-mv-scroll {
  opacity: 1;
}
@media screen and (max-width: 960px) {
  .p-mv-scroll {
    display: none;
  }
}
.p-mv-scroll__dot {
  position: relative;
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  margin-left: 1.2rem;
}
.p-mv-scroll__dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 100%;
  background: #fff;
  transform: translate(-50%, -50%);
}
.p-mv-scroll__dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 100%;
  background: #fff;
  transform: translate(-50%, -50%);
  opacity: 0.3;
  animation: circle 3s infinite;
}
@keyframes circle {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
  }
  60% {
    width: 0;
    height: 0;
  }
  80% {
    width: 1.2rem;
    height: 1.2rem;
    opacity: 0.3;
  }
  100% {
    opacity: 0;
  }
}

.p-intro {
  padding: 2rem;
}
@media screen and (max-width: 960px) {
  .p-intro {
    padding: 1.4rem 1rem;
  }
}
.p-intro__block {
  border-radius: 2rem;
  background: url(../img/home/bg_intro.jpg) center center/cover no-repeat;
}
@media screen and (max-width: 960px) {
  .p-intro__block {
    border-radius: 0;
  }
}
.p-intro__inner {
  max-width: 96rem;
  text-align: right;
  margin: 0 auto;
  padding: 20.9rem 0;
}
@media screen and (max-width: 960px) {
  .p-intro__inner {
    padding: 15.8rem 2.2rem 17.7rem;
  }
}
.p-intro__content {
  display: inline-block;
}
@media screen and (max-width: 960px) {
  .p-intro__content {
    display: block;
  }
}
.p-intro__ttl {
  color: #fff;
  text-align: left;
  font-size: 2.2rem;
  line-height: 1.9;
  margin-bottom: 6rem;
}
@media screen and (max-width: 960px) {
  .p-intro__ttl {
    font-size: 2rem;
    margin-bottom: 5rem;
  }
}
.p-intro__txt {
  color: #fff;
  line-height: 2;
  text-align: left;
  font-size: 1.4rem;
}
.p-intro__txt + .p-intro__txt {
  margin-top: 2.6rem;
}

.p-pickup {
  position: relative;
  margin: 13rem 0 9rem;
}
.p-pickup::before, .p-pickup::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
}
@media screen and (max-width: 960px) {
  .p-pickup::before, .p-pickup::after {
    content: none;
  }
}
.p-pickup::before {
  left: 0;
  width: calc((100% - 128rem) / 2);
  background: url(../img/home/bg_pickup.jpg) 0 center/cover no-repeat;
}
.p-pickup::after {
  right: 0;
  width: calc((100% - 128rem) / 2 + 30rem);
  background: url(../img/home/bg_pickup.jpg) center center/cover no-repeat;
}
@media screen and (max-width: 960px) {
  .p-pickup {
    margin: 0 0 9rem 0;
  }
}
.p-pickup__img {
  position: absolute;
  top: -27.5rem;
  left: 11rem;
  width: 56rem;
}
@media screen and (max-width: 960px) {
  .p-pickup__img {
    top: -6rem;
    left: 50%;
    width: calc(100% - 6rem);
    transform: translateX(-50%);
  }
}
.p-pickup__block {
  max-width: 128rem;
  margin: 0 auto;
}
@media screen and (max-width: 1320px) and (min-width: 960.1px) {
  .p-pickup__block {
    max-width: 120rem;
  }
}
.p-pickup__inner {
  position: relative;
  max-width: 98rem;
  background: #fff;
  padding: 42.8rem 11rem 3rem;
}
@media screen and (max-width: 960px) {
  .p-pickup__inner {
    padding: 35rem 1.6rem 0;
  }
}
.p-pickup__ttl {
  position: relative;
  font-size: 4rem;
  line-height: 1;
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 960px) {
  .p-pickup__ttl {
    font-size: 5rem;
  }
}
.p-pickup__ttl::before {
  content: "";
  position: absolute;
  bottom: 0.6rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: #1F2021;
}
@media screen and (max-width: 960px) {
  .p-pickup__ttl::before {
    bottom: 0.9rem;
  }
}
@media screen and (max-width: 960px) {
  .p-pickup-list {
    padding: 0 1.5rem;
  }
}
.p-pickup-list__item {
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 1.9rem;
}
@media screen and (max-width: 960px) {
  .p-pickup-list__item {
    padding-bottom: 2.5rem;
  }
}
.p-pickup-list__item + .p-pickup-list__item {
  margin-top: 1.9rem;
}
@media screen and (max-width: 960px) {
  .p-pickup-list__item + .p-pickup-list__item {
    margin-top: 2.5rem;
  }
}
.p-pickup-list__item a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.p-pickup-list__img {
  width: 10rem;
  height: 7rem;
}
.p-pickup-list__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-pickup-list__inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: calc(100% - 10rem);
  padding-left: 3rem;
}
@media screen and (max-width: 960px) {
  .p-pickup-list__inner {
    flex-flow: column;
    justify-content: center;
  }
}
.p-pickup-list__date {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 12rem;
  flex-shrink: 0;
  font-size: 1.2rem;
}
@media screen and (max-width: 960px) {
  .p-pickup-list__date {
    width: auto;
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}
.p-pickup-list__txt {
  font-size: 1.4rem;
  padding-top: 2.3rem;
}
@media screen and (max-width: 960px) {
  .p-pickup-list__txt {
    font-size: 1.2rem;
    padding: 0;
  }
}
.p-pickup__all {
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  text-align: right;
  margin-top: 3.6rem;
}
@media screen and (max-width: 960px) {
  .p-pickup__all {
    text-align: center;
    font-size: 1.6rem;
  }
}
.p-pickup__all a span {
  position: relative;
  padding-right: 4.5rem;
}
.p-pickup__all a span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 3rem;
  height: 0.7rem;
  background: url(../img/common/icn_arrow_bk.svg) 0 0/100% auto no-repeat;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .p-pickup__all a:hover span::after {
    right: -1rem;
  }
}

.p-detail {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  height: 162rem;
  padding-top: 12.5rem;
}
@media screen and (max-width: 1320px) and (min-width: 960.1px) {
  .p-detail {
    height: 158rem;
  }
}
@media screen and (max-width: 960px) {
  .p-detail {
    display: block;
    height: auto;
    padding-top: 5.3rem;
  }
}
.p-detail + .p-detail {
  margin-top: 10rem;
}
.p-detail-catch {
  pointer-events: none;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: sticky;
  top: 11rem;
  left: 0;
  mix-blend-mode: exclusion;
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .p-detail-catch {
    top: 2rem;
  }
}
.p-detail-catch__ttl {
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  font-size: 10rem;
  color: #fff;
  writing-mode: vertical-rl;
  margin: 0 -1.7rem;
}
@media screen and (max-width: 1320px) and (min-width: 960.1px) {
  .p-detail-catch__ttl {
    font-size: 8rem;
  }
}
@media screen and (max-width: 960px) {
  .p-detail-catch__ttl {
    height: 44rem;
    font-size: 7rem;
  }
  .p-detail-catch__ttl.u-small {
    font-size: 5rem;
    margin-left: -0.9rem;
  }
}
.p-detail-catch__txt {
  color: #fff;
  writing-mode: vertical-rl;
  line-height: 1;
  letter-spacing: 0.5em;
  margin-left: 4.8rem;
}
@media screen and (max-width: 960px) {
  .p-detail-catch__txt {
    margin-left: 2rem;
    font-size: 1.4rem;
  }
}
.p-detail__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100rem;
  overflow: hidden;
}
.p-detail__img .simpleParallax {
  height: 100%;
}
.p-detail__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 960px) {
  .p-detail__img {
    height: 54rem;
  }
}
.p-detail-content {
  position: relative;
  height: 74rem;
  background: #fff;
  border-top-left-radius: 6rem;
  border-top-right-radius: 6rem;
  padding: 14rem 0 0;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .p-detail-content {
    height: auto;
    padding: 7.2rem 3rem 0;
    border-top-left-radius: 3rem;
    border-top-right-radius: 3rem;
    z-index: 2;
  }
}
.p-detail-content__inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: 128rem;
  margin: 0 auto;
}
@media screen and (max-width: 1430px) {
  .p-detail-content__inner {
    margin-right: 5rem;
  }
}
@media screen and (max-width: 1320px) and (min-width: 960.1px) {
  .p-detail-content__inner {
    max-width: 120rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 960px) {
  .p-detail-content__inner {
    display: block;
    margin-right: 0;
  }
}
.p-detail-content__txt {
  max-width: 48rem;
}
@media screen and (max-width: 1320px) and (min-width: 960.1px) {
  .p-detail-content__txt {
    max-width: 44rem;
  }
}
@media screen and (max-width: 960px) {
  .p-detail-content__txt {
    max-width: inherit;
  }
}
.p-detail-content__ttl {
  font-size: 2.2rem;
  line-height: 1.9;
}
@media screen and (max-width: 960px) {
  .p-detail-content__ttl {
    font-size: 2rem;
  }
}
.p-detail-content__overview {
  font-size: 1.4rem;
  line-height: 2;
  word-break: normal;
  margin-top: 5rem;
}
@media screen and (max-width: 960px) {
  .p-detail-content__overview {
    height: 36.8rem;
    width: 18rem;
    font-size: 1.2rem;
  }
}
.p-detail-content__btn {
  position: relative;
  width: 38rem;
  height: 8rem;
  margin-top: 5rem;
}
@media screen and (max-width: 960px) {
  .p-detail-content__btn {
    width: 100%;
    height: 5.6rem;
    margin: 0;
  }
}
.p-detail-content__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 3.1rem;
  height: 0.9rem;
  transform: translateY(-50%);
  background: url(../img/common/icn_arrow_wh.svg) 0 0/100% auto;
  mix-blend-mode: exclusion;
  transition: 0.3s;
}
@media screen and (max-width: 960px) {
  .p-detail-content__btn::after {
    top: 1.8rem;
    width: 2rem;
    height: 0.7rem;
    transform: none;
  }
}
.p-detail-content__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  border-radius: 0.5rem;
  background: linear-gradient(45deg, rgb(10, 32, 82) 0%, rgb(23, 72, 184) 100%);
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .p-detail-content__btn:hover::after {
    right: -1.4rem;
  }
  .p-detail-content__btn:hover::before {
    width: 100%;
  }
}
.p-detail-content__btn a {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #1F2021;
  padding: 0 4rem;
}
@media screen and (max-width: 960px) {
  .p-detail-content__btn a {
    align-items: flex-start;
    padding: 1rem 2rem 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-detail-content__btn a:hover {
    color: #fff;
    opacity: 1;
    border-bottom: 0;
  }
}
.p-detail-content-slider {
  width: 49rem;
  margin: -25rem 0 0 12.4rem;
}
@media screen and (max-width: 960px) {
  .p-detail-content-slider {
    position: absolute;
    bottom: 13.6rem;
    right: 0;
    width: 15rem;
    margin: 0;
  }
}
.p-detail-content-slider__item {
  width: 49rem;
  height: 72rem;
  line-height: 0;
}
@media screen and (max-width: 960px) {
  .p-detail-content-slider__item {
    width: 15rem;
    height: 28rem;
  }
}
.p-detail-content-slider__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-detail-content-slider .slick-dots {
  position: absolute;
  bottom: -0.6rem;
  right: -7rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 1.4rem;
  width: 18rem;
  border-top: 1px solid #1F2021;
  background: #fff;
  padding: 2.2rem 0 3.2rem;
  transform: rotate(-45deg);
}
@media screen and (max-width: 1430px) {
  .p-detail-content-slider .slick-dots {
    width: 12rem;
    top: 100%;
    bottom: a;
    right: 0;
    justify-content: flex-end;
    border-top: 0;
    padding: 2.2rem 0 0;
    transform: none;
  }
}
@media screen and (max-width: 960px) {
  .p-detail-content-slider .slick-dots {
    width: 15rem;
    justify-content: flex-start;
    gap: 0 1.2rem;
    padding: 0;
    margin: 2rem 0 0;
  }
}
.p-detail-content-slider .slick-dots li {
  line-height: 0;
}
.p-detail-content-slider .slick-dots li.slick-active button {
  background: #1F2021;
}
.p-detail-content-slider .slick-dots button {
  font-size: 0;
  width: 0.8rem;
  height: 0.8rem;
  border: 1px solid #1F2021;
  border-radius: 100%;
}

.p-image {
  padding: 0 2rem;
  margin: 10rem 0 0;
}
@media screen and (max-width: 960px) {
  .p-image {
    margin: 9.5rem 0 0;
    padding: 0 1rem;
  }
}
.p-image img {
  width: 100%;
  border-radius: 2rem;
  aspect-ratio: 1400/1000;
}
@media screen and (max-width: 960px) {
  .p-image img {
    aspect-ratio: 370/480;
    border-radius: 0.5rem;
  }
}

.p-insta {
  position: relative;
  overflow: hidden;
  margin: 20rem 0 0;
}
@media screen and (max-width: 960px) {
  .p-insta {
    margin: 7rem 0 0;
  }
}
.p-insta::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 16rem;
  background: #F0EBE9;
}
.p-insta-marquee {
  position: relative;
  z-index: 1;
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
.p-insta-marquee .scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.p-insta-marquee .scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}
.p-insta-marquee .scroll-infinity__list--left {
  animation: infinity-scroll-left 40s infinite linear 0.5s both;
}
.p-insta-marquee .scroll-infinity__list--right {
  animation: infinity-scroll-right 40s infinite linear 0.5s both;
}
.p-insta-marquee .scroll-infinity__item--text {
  width: 86rem;
  font-size: 1.8rem;
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-style: italic;
  font-weight: 600;
  line-height: 1.3;
}
.translated-ltr .p-insta-marquee .scroll-infinity__item--text {
  width: 71rem;
}
.p-insta-marquee .scroll-infinity__item--text img {
  display: inline;
  width: 1.8rem;
  margin: 0 0 0 1.5rem;
  vertical-align: middle;
}
.p-insta-marquee .scroll-infinity__item {
  width: 112rem;
}
.p-insta-marquee .scroll-infinity__item > img {
  width: 100%;
}
@media screen and (max-width: 960px) {
  .p-insta-marquee.u-sp {
    margin: 2rem 0 8rem;
  }
}
.p-insta-top {
  position: relative;
  max-width: 128rem;
  margin: 4rem auto 0;
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .p-insta-top {
    position: absolute;
    bottom: 4.5rem;
    left: 50%;
    width: calc(100% - 6rem);
    height: 12rem;
    margin: 0;
    transform: translateX(-50%);
  }
}
.p-insta-top::before {
  content: "";
  position: absolute;
  top: 0;
  right: 32rem;
  width: 112rem;
  height: 100%;
  background: url(../img/home/img_insta_01.jpg) 0 0/100% auto no-repeat;
}
@media screen and (max-width: 960px) {
  .p-insta-top::before {
    content: none;
  }
}
.p-insta-top__link {
  width: 28rem;
  height: 28rem;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 960px) {
  .p-insta-top__link {
    width: 100%;
    height: 100%;
    margin: 0;
  }
}
.p-insta-top__link a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid #1F2021;
  background: #1F2021;
  color: #fff;
}
.p-insta-top__link a p {
  position: relative;
  font-size: 1.8rem;
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  padding-bottom: 3.6rem;
}
@media screen and (max-width: 960px) {
  .p-insta-top__link a p {
    width: 100%;
    padding: 0 3rem;
  }
}
.p-insta-top__link a p::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 3.1rem;
  height: 0.9rem;
  background: url(../img/common/icn_arrow_wh.svg) 0 0/100% auto no-repeat;
  transform: translateX(-50%);
}
@media screen and (max-width: 960px) {
  .p-insta-top__link a p::after {
    top: 50%;
    bottom: auto;
    left: auto;
    right: 3rem;
    transform: translateY(-50%);
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-insta-top__link a:hover {
    background: #fff;
    opacity: 1;
  }
  .p-insta-top__link a:hover p {
    color: #1F2021;
  }
  .p-insta-top__link a:hover p::after {
    background: url(../img/common/icn_arrow_bk.svg) 0 0/100% auto no-repeat;
  }
}
.p-insta-bottom {
  position: relative;
  max-width: 128rem;
  height: 28rem;
  margin: 4rem auto;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .p-insta-bottom {
    display: none;
  }
}
.p-insta-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 154.4rem;
  height: 100%;
  background: url(../img/home/img_insta_02.jpg) 0 0/100% auto no-repeat;
}

.p-column {
  background: #F0EBE9;
  padding: 20rem 0 24.8rem;
}
@media screen and (max-width: 960px) {
  .p-column {
    padding: 10rem 1.8rem 11.8rem;
  }
}
.p-column__ttl {
  width: 61.3rem;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-column__ttl {
    width: auto;
  }
}
.p-column__block {
  position: relative;
  min-height: 47rem;
  max-width: 128rem;
  margin: 6.8rem auto 0;
  padding-left: 54.4rem;
}
@media screen and (max-width: 1320px) and (min-width: 960.1px) {
  .p-column__block {
    max-width: 120rem;
  }
}
@media screen and (max-width: 960px) {
  .p-column__block {
    min-height: inherit;
    margin: 4.7rem 0 0;
    padding: 0;
  }
}
.p-column__info {
  position: relative;
  width: 30rem;
  font-size: 1.2rem;
  background: #fff;
  line-height: 1.5;
  padding: 0.6rem 3.4rem 0.6rem 5rem;
  margin-bottom: 9rem;
  border-radius: 3rem;
}
@media screen and (max-width: 960px) {
  .p-column__info {
    display: none;
  }
}
.p-column__info img {
  position: absolute;
  top: 50%;
  left: 1.8rem;
  width: 1.6rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 960px) {
  .p-column-list {
    padding: 0 1.2rem;
  }
}
.p-column-list__head {
  font-size: 1.2rem;
  color: #727272;
  margin-bottom: 1.4rem;
}
.p-column-list__head a {
  color: #727272;
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .p-column-list__head a:hover {
    text-decoration: none;
  }
}
.p-column-list__ttl {
  font-size: 1.4rem;
}
@media screen and (max-width: 960px) {
  .p-column-list__ttl {
    font-size: 1.3rem;
  }
}
.p-column-list__ttl a {
  position: relative;
  display: block;
  padding-right: 5rem;
}
.p-column-list__ttl a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 3.1rem;
  height: 0.9rem;
  background: url(../img/common/icn_arrow_bk.svg) 0 0/100% auto no-repeat;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (max-width: 960px) {
  .p-column-list__ttl a::after {
    content: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-column-list__ttl a:hover::after {
    right: 0;
  }
}
.p-column-list__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 47rem;
  height: 47rem;
  border-radius: 1rem;
  overflow: hidden;
  opacity: 0;
  transition: 0.3s;
}
@media screen and (max-width: 960px) {
  .p-column-list__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 8rem;
    height: 8rem;
    opacity: 1;
  }
}
.p-column-list__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-column-list__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0 0 3.2rem;
}
@media screen and (max-width: 960px) {
  .p-column-list__item {
    position: relative;
    padding: 0.2rem 0 3.2rem 10rem;
  }
}
.p-column-list__item:first-child .p-column-list__img {
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .p-column-list__item:hover .p-column-list__img {
    opacity: 1;
  }
}
.p-column-list__item + .p-column-list__item {
  margin-top: 4.6rem;
}
@media screen and (max-width: 960px) {
  .p-column-list__item + .p-column-list__item {
    margin-top: 4rem;
  }
}