@charset "UTF-8";
/*
====================================================================
 Fonts
====================================================================
*/
/* Noto Serif Bold */
@font-face {
  font-display: swap;
  font-family: "Noto Serif";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("./fonts/noto-serif-jp-bold.woff2") format("woff2");
}
/* Noto Serif Medium */
@font-face {
  font-display: swap;
  font-family: "Noto Serif";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("./fonts/noto-serif-jp-medium.woff2") format("woff2");
}
/* Cormorant Bold */
@font-face {
  font-display: swap;
  font-family: "Cormorant";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("./fonts/cormorant-bold.woff2") format("woff2");
}
/* Cormorant Medium */
@font-face {
  font-display: swap;
  font-family: "Cormorant";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("./fonts/cormorant-bold.woff2") format("woff2");
}
/* Bodoni Regular */
@font-face {
  font-display: swap;
  font-family: "Bodoni Moda";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("./fonts/bodoni-moda-regular.woff2") format("woff2");
}
/*
====================================================================
 Colors
====================================================================
*/
/*
====================================================================
 Mixins
====================================================================
*/
/*
====================================================================
 KEYVISUAL
====================================================================
*/
.keyvisual div {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
}
.keyvisual div video {
  display: block;
  width: 100%;
  min-width: 1600px;
  max-width: 1920px;
}

/*
====================================================================
 COMMON
====================================================================
*/
.top-section .section__header {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, transform 1s;
}
.top-section .section__body {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, transform 1s;
  transition-delay: 0.5s;
}
.top-section.in-viewport .section__header,
.top-section.in-viewport .section__body {
  opacity: 1;
  transform: translateY(0);
}

/*
====================================================================
 01
====================================================================
*/
.top-section01 {
  position: relative;
}
.top-section01::before {
  transform: scaleY(0);
  transform-origin: 0 0;
  transition: transform 2s ease-out;
  content: "";
  display: block;
  position: absolute;
  width: calc(50% + 55px);
  height: 660px;
  background-color: #f8f5f3;
  top: 0;
  right: 0;
}
.top-section01.in-viewport::before {
  transform: scaleY(1);
}
.top-section01 .container {
  width: 100%;
}
.top-section01 .section__header {
  width: 1000px;
  margin: 0 auto;
}
.top-section01 h2 {
  margin-left: 0;
  animation-delay: 1s;
}
.top-section01 h2::after {
  content: none;
}

.concept-container {
  position: relative;
}
.concept-container::after {
  content: "";
  display: block;
  position: absolute;
  width: calc(50vw + 160px);
  height: 100%;
  background-color: #c7b299;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, transform 1s;
}
.in-viewport .concept-container::after {
  opacity: 1;
  transform: translateY(0);
  animation-delay: 1s;
}
.concept-container .button__block {
  position: absolute;
  width: 500px;
  height: auto;
  left: 50%;
  bottom: 0;
  z-index: 3;
}
.concept-container .button__block a {
  margin-right: 0;
  margin-left: auto;
}
.concept__image {
  position: absolute;
  left: calc(50% + 80px);
  top: -135px;
  z-index: 2;
}
.concept__text {
  width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 40px 0;
  color: white;
  z-index: 1;
}
.concept__text h3 {
  font-family: "Hiragino Mincho ProN", "Noto Serif", serif;
  font-size: 34px;
  line-height: 1.29;
  margin-bottom: 30px;
}
.concept__text p {
  font-weight: 600;
  line-height: 2;
}

/*
====================================================================
 02
====================================================================
*/
.top-section02 {
  padding-bottom: 0;
}
.top-section02 .section__header p {
  font-weight: 600;
  text-align: center;
}
.top-section02 .button__block {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service {
  opacity: 0;
  transition: opacity 0.1s 1.5s;
}
.in-viewport .service {
  opacity: 1;
}
.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
}
.service-list__item {
  position: relative;
  overflow: hidden;
}
.service-list__item a {
  display: block;
  overflow: hidden;
}
.service-list__item:nth-child(-n+6) {
  border-bottom: 1px solid black;
}
.service-list__item:not(:nth-child(3n)) {
  border-right: 1px solid black;
}
.service-list__item:not(:nth-child(3n)):nth-last-child(n+4)::before {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: black;
  border-radius: 50%;
  right: -3px;
  bottom: -3px;
  z-index: 99;
}
.service-list__item::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #333;
  z-index: 3;
  transform: translateX(-102%);
}
.in-viewport .service-list__item::after {
  animation: screenImage 1s ease-in-out 1s forwards;
}
@keyframes screenImage {
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(101%);
  }
}
.service__image img {
  height: 234px;
  -o-object-fit: cover;
     object-fit: cover;
}
.service__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}
.service__title::after {
  content: "";
  display: block;
  position: absolute;
  width: 157.5px;
  height: 157.5px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transition: transform 0.6s ease-in-out;
}
a:hover .service__title::after {
  opacity: 1;
  transform: scale(2.6);
  transition: transform 0.6s ease-in-out;
}
.service__title h3 {
  width: 157.5px;
  height: 157.5px;
  padding: 16px 0;
  font-family: "Hiragino Mincho ProN", "Noto Serif", serif;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
.service__title h3 span {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.5;
  letter-spacing: 0;
}
.service__title h3::after {
  content: "";
  display: block;
  position: static;
  width: 30px;
  height: 6px;
  background: url(../images/common/icon_arrow_thin.svg) center center/contain no-repeat;
  margin: 14px auto 10px auto;
}

/*
====================================================================
 03
====================================================================
*/
.top-section03 {
  padding-bottom: 0;
}
.top-section03 .container {
  width: 100%;
  position: relative;
}
.top-section03 .section__header {
  width: 1000px;
  margin: 0 auto;
}
.top-section03 h2 {
  margin-right: 0;
}
.top-section03 h2::after {
  content: none;
}
.top-section03 h2 .jp {
  text-align: center;
  padding: 0;
}
.top-section03 h2 .en {
  padding-left: 35px;
}

.swiper-main {
  width: 100%;
  height: 100%;
}
.swiper-main-container {
  width: 870px;
  height: 800px;
  position: absolute;
  right: calc(50% - 70px);
  top: -125px;
  z-index: 3;
}
.swiper-pagination {
  counter-reset: number;
  padding: 28px;
  position: absolute;
  top: -125px;
  right: calc(50% - 70px);
  z-index: 4;
}
.swiper-pagination span {
  display: block;
  position: relative;
  width: 48px;
  height: 48px;
  background-color: transparent;
  border-radius: 50%;
  transition: background-color 0.5s;
  color: white;
  counter-increment: number;
  cursor: pointer;
}
.swiper-pagination span::before {
  content: "0" counter(number);
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-family: "Hiragino Mincho ProN", "Noto Serif", serif;
}
.swiper-pagination span:not(:last-child) {
  margin-bottom: 12px;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #c9a412;
  transition: background-color 0.3s;
}
.swiper-thumbs {
  padding-left: 625px;
}
.swiper-thumbs-container {
  background-color: #333;
  width: calc(50% + 500px);
  margin-right: 0;
  margin-left: auto;
  padding: 40px 0 80px 0;
}
.swiper-thumbs-container .button {
  background-color: transparent;
  border-color: white;
  margin: 0 auto;
}
.swiper-thumbs-container .button__block {
  width: 1000px;
  margin-top: 96px;
}
.swiper-thumbs-container .button__block svg {
  fill: white;
}
.swiper-thumbs-container .button__text {
  color: white;
}
.swiper-thumbs-container .button:hover {
  border-color: #333;
  background-color: white;
}
.swiper-thumbs-container .button:hover svg {
  fill: #333;
}
.swiper-thumbs-container .button:hover .button__text {
  color: #333;
}
.swiper-thumbs .swiper-wrapper {
  flex-direction: column;
  row-gap: 12px;
  padding-left: 42px;
  border-left: 1px solid white;
}
.swiper-thumbs .swiper-slide {
  width: auto !important;
  opacity: 0.5;
  transition: opacity 0.5s;
  cursor: pointer;
}
.swiper-thumbs .swiper-slide h3 {
  color: white;
  font-family: "Hiragino Mincho ProN", "Noto Serif", serif;
  font-size: 20px;
  transition: color 0.5s;
}
.swiper-thumbs .swiper-slide p {
  color: white;
  font-weight: 600;
}
.swiper-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
.swiper-thumbs .swiper-slide-thumb-active h3 {
  color: #c9a412;
}

.slide-detail {
  position: absolute;
  right: 15px;
  bottom: 19px;
  border: 1px solid white;
  background-color: rgba(51, 51, 51, 0.3);
  padding: 20px;
  display: grid;
  grid-template-columns: 210px 140px 140px;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
.slide-detail span {
  display: block;
  border: 1px solid white;
  font-size: 14px;
  color: white;
  font-weight: 600;
  text-align: center;
  padding-top: 1px;
}
.slide-detail p {
  position: absolute;
  top: 68px;
  right: 0px;
  color: white;
  text-align: right;
  font-size: 10px;
}

/*
====================================================================
 04
====================================================================
*/
.top-section04 {
  padding-bottom: 0;
}
.top-section04 .container {
  width: 100%;
}
.top-section04 .button {
  margin: 0 auto;
}

.creator-list {
  position: relative;
  z-index: 1;
  width: 1000px;
  margin: 0 auto 90px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 45px 90px;
}
.creator-list__item {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s, transform 1s;
  width: 170px;
}
.in-viewport .creator-list__item {
  opacity: 1;
  transform: translateY(0);
}
.creator-list__item:nth-child(1) {
  transition-delay: 0.2s;
}
.creator-list__item:nth-child(2) {
  transition-delay: 0.4s;
}
.creator-list__item:nth-child(3) {
  transition-delay: 0.6s;
}
.creator-list__item:nth-child(4) {
  transition-delay: 0.8s;
}
.creator-list__item:nth-child(5) {
  transition-delay: 1s;
}
.creator-list__item:nth-child(6) {
  transition-delay: 1.2s;
}
.creator-list__item:nth-child(7) {
  transition-delay: 1.4s;
}
.creator-list__item:nth-child(8) {
  transition-delay: 1.6s;
}
.creator-list-wrapper {
  position: relative;
  padding: 35px 0 40px 0;
}
.creator-list-wrapper::before, .creator-list-wrapper::after {
  transform: scaleY(0);
  transform-origin: 0 0;
  transition: transform 2s ease-out;
  transition-delay: 0.5s;
  content: "";
  display: block;
  position: absolute;
  width: calc(50% - 460px);
  height: 100%;
  background-color: #c7b299;
  top: 0;
}
.in-viewport .creator-list-wrapper::before, .in-viewport .creator-list-wrapper::after {
  transform: scaleY(1);
}
.creator-list-wrapper::before {
  left: 0;
}
.creator-list-wrapper::after {
  right: 0;
}

.creator {
  padding: 0 15px;
  height: 218px;
}
.creator::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: calc(100% - 48px);
  background-color: #f8f5f3;
  border-radius: 0 0 85px 85px;
  bottom: 0;
  left: 0;
  z-index: 1;
  transition: background-color 0.5s;
}
a:hover .creator::before {
  background-color: #333;
}
.creator::after {
  content: "";
  display: block;
  position: absolute;
  width: 50%;
  height: 50%;
  background: #333 url(../images/common/icon_arrow_plain_white.svg) right 6px bottom 8px no-repeat;
  right: 0;
  bottom: 0;
}
.creator__image {
  position: relative;
  z-index: 2;
  padding: 5px;
  background-color: #f8f5f3;
  border-radius: 50%;
  outline: 1px solid black;
  outline-offset: -3px;
}
.creator__name {
  display: block;
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: "Hiragino Mincho ProN", "Noto Serif", serif;
  font-weight: 300;
  margin-top: 6px;
  letter-spacing: 0.05em;
  transition: color 0.5s;
}
a:hover .creator__name {
  color: white;
}

/*
====================================================================
 05
====================================================================
*/
.top-section05 .container {
  display: grid;
  grid-template-columns: 318px 1fr;
}

/*
====================================================================
 06
====================================================================
*/
.top-section06 {
  background-color: #f8f5f3;
}
.top-section06 .container {
  background-color: white;
  padding: 40px 0 38px 0;
}

.news {
  width: 840px;
  margin: 0 auto;
  border-top: 0.5px solid #333;
}
.news__item {
  border-bottom: 0.5px solid #333;
}
.news__content {
  height: 78px;
  display: grid;
  grid-template-columns: auto 100px 1fr;
  align-items: center;
  transition: opacity 0.5s;
}
.news__content:hover {
  opacity: 0.7;
}
.news__category {
  padding-left: 20px;
  font-family: "Cormorant";
  font-weight: 600;
  color: #c9a412;
}
.news__text {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news__text::after {
  content: "＞";
}
.news__text span {
  display: block;
  width: 598px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/*
====================================================================
 07
====================================================================
*/
.top-section07 p {
  text-align: center;
  font-weight: 600;
}

/*----------------------------------------------------------------*/
@media (max-width: 767px) {
  /*----------------------------------------------------------------*/
  /*
  ====================================================================
   SP / KEYVISUAL
  ====================================================================
  */
  .keyvisual div video {
    min-width: unset;
  }
  /*
  ====================================================================
   SP / COMMON
  ====================================================================
  */
  .button {
    width: calc(100% - 30px);
    height: 50px;
  }
  .button__icon--arrow {
    height: 26px;
  }
  .button__icon--head {
    left: 8px;
    top: 16px;
    height: 18px;
    width: 23px;
  }
  /*
  ====================================================================
   SP / 01
  ====================================================================
  */
  .top-section01 {
    padding-bottom: 0;
  }
  .top-section01::before {
    width: 100%;
    height: 300px;
    top: 130px;
  }
  .top-section01 .section__header {
    width: 100%;
  }
  .top-section01 h2 {
    margin-left: auto;
    margin-bottom: 40px;
  }
  .concept-container {
    padding-top: 36px;
  }
  .concept-container::before {
    width: calc(100% + 30px);
    height: 300px;
    top: 0;
    left: -15px;
  }
  .concept-container::after {
    width: calc(100% + 30px);
    height: calc(100% - 262px);
    left: -15px;
    top: unset;
    bottom: 0;
  }
  .concept-container .button__block {
    position: relative;
    z-index: 1;
    width: 100%;
    left: 0;
    padding-bottom: 50px;
  }
  .concept-container .button__block a {
    margin-right: auto;
    margin-left: auto;
  }
  .concept__image {
    position: relative;
    z-index: 2;
    left: 0;
    top: 0;
  }
  .concept__text {
    width: 100%;
    position: relative;
    padding: 40px 0;
  }
  .concept__text h3 {
    font-size: 25px;
    line-height: 1.2;
  }
  .concept__text p {
    line-height: 1.6;
  }
  /*
  ====================================================================
   SP / 02
  ====================================================================
  */
  .top-section02 {
    padding-bottom: 0;
  }
  .top-section02 .section__header p {
    text-align: left;
  }
  .top-section02 h2 .en img {
    height: 29px;
  }
  .top-section02 .button__block {
    margin-top: 45px;
  }
  .service-list {
    display: block;
    margin-top: 30px;
  }
  .service-list__item:nth-child(-n+7) {
    border-bottom: 1px solid black;
  }
  .service-list__item:not(:nth-child(3n)) {
    border-right: none;
  }
  .service-list__item:not(:nth-child(3n)):nth-last-child(n+4)::before {
    content: none;
  }
  .service-list__item:nth-child(odd) .service__title h3 {
    margin-right: -20px;
    margin-left: auto;
  }
  .service-list__item:nth-child(odd) .service__title::after {
    right: -35px;
  }
  .service-list__item:nth-child(even) .service__title h3 {
    margin-left: -20px;
    margin-right: auto;
  }
  .service-list__item:nth-child(even) .service__title::after {
    left: -35px;
  }
  .service__image img {
    height: auto;
  }
  .service__title::after {
    width: 54%;
    height: 0;
    padding-bottom: 54%;
    background-color: rgba(255, 255, 255, 0.7);
  }
  .service__title h3 {
    width: 54%;
    height: 100%;
    padding: 0;
  }
  .service__title h3 span {
    margin: 8px 0;
    font-size: 18px;
  }
  .service__title h3 span img {
    height: 22px;
  }
  .service__title h3::after {
    width: 24px;
    height: 6px;
    margin: 0 auto;
  }
  /*
  ====================================================================
   SP / 03
  ====================================================================
  */
  .top-section03 .section__header {
    width: 100%;
  }
  .top-section03 h2 {
    margin-right: auto;
  }
  .top-section03 h2 .en {
    padding-left: 5px;
  }
  .top-section03 h2 .en img {
    height: 29px;
  }
  .swiper-main {
    position: absolute;
  }
  .swiper-main-container {
    width: 100%;
    height: 0;
    padding-bottom: 113.5%;
    position: relative;
    right: unset;
    top: unset;
    z-index: 3;
  }
  .swiper-main .swiper-slide {
    position: relative;
  }
  .swiper-button {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    top: calc(50% - 25px);
    z-index: 4;
  }
  .swiper-button::before {
    content: "";
    display: block;
    position: absolute;
    width: 17.5px;
    height: 17.5px;
    border-top: 1px solid white;
    border-left: 1px solid white;
    top: 50%;
  }
  .swiper-button-next {
    right: -10px;
  }
  .swiper-button-next::before {
    left: 25%;
    transform: translateY(-50%) rotate(135deg);
  }
  .swiper-button-prev {
    left: -10px;
  }
  .swiper-button-prev::before {
    right: 25%;
    transform: translateY(-50%) rotate(-45deg);
  }
  .swiper-pagination {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid white;
    padding: 20px 0 15px 0;
    position: relative;
    top: unset;
    right: unset;
    z-index: 1;
  }
  .swiper-pagination span {
    width: 44px;
    height: 44px;
    margin-bottom: 0 !important;
  }
  .swiper-thumbs {
    padding-left: 0;
  }
  .swiper-thumbs-container {
    background-color: transparent;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding: 24px 0 46px;
    position: relative;
  }
  .swiper-thumbs-container::before {
    content: "";
    display: block;
    position: absolute;
    width: calc(100% + 30px);
    height: calc(100% + 160px);
    background-color: #333;
    top: -160px;
    left: -15px;
  }
  .swiper-thumbs-container .button__block {
    width: 100%;
    margin-top: 40px;
  }
  .swiper-thumbs .swiper-wrapper {
    width: 100%;
    flex-direction: row;
    row-gap: 12px;
    padding-left: 0;
    border-left: none;
  }
  .swiper-thumbs .swiper-slide {
    width: 100% !important;
    opacity: 1;
  }
  .swiper-thumbs .swiper-slide h3 {
    color: white;
    font-family: "Hiragino Mincho ProN", "Noto Serif", serif;
    font-size: 20px;
    transition: color 0.5s;
  }
  .swiper-thumbs .swiper-slide p {
    color: white;
    font-weight: 600;
  }
  .swiper-thumbs .swiper-slide-thumb-active {
    opacity: 1;
  }
  .swiper-thumbs .swiper-slide-thumb-active h3 {
    color: #c9a412;
  }
  .slide-detail {
    width: 60.9%;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    right: unset;
    bottom: unset;
    padding: 2px;
    display: block;
  }
  .slide-detail span {
    border: none;
    padding: 0;
  }
  .slide-detail span:nth-child(n+2) {
    display: none;
  }
  p.slideText {
    /* display: none;*/
    position: absolute;
    right: 10px;
    bottom: 5px;
    color: white;
    text-align: right;
    font-size: 11px;
  }
  /*
  ====================================================================
   SP / 04
  ====================================================================
  */
  .creator-list {
    width: 100%;
    margin-bottom: 50px;
    justify-content: space-between;
    -moz-column-gap: unset;
         column-gap: unset;
    row-gap: 40px;
  }
  .creator-list__item {
    width: 46%;
  }
  .creator-list-wrapper {
    position: relative;
    padding: 35px 0 40px 0;
  }
  .creator-list-wrapper::before, .creator-list-wrapper::after {
    width: 40px;
  }
  .creator-list-wrapper::before {
    left: -15px;
  }
  .creator-list-wrapper::after {
    right: -15px;
  }
  .creator {
    padding: 0 13px;
    height: 202px;
  }
  .creator::before {
    height: calc(100% - 42px);
    border-radius: 0 0 80px 80px;
  }
  .creator__name {
    font-size: 18px;
  }
  /*
  ====================================================================
   SP / 05
  ====================================================================
  */
  .top-section05 .container {
    display: block;
  }
  /*
  ====================================================================
   SP / 06
  ====================================================================
  */
  .top-section06 .container {
    width: calc(100% - 30px);
    padding: 40px 15px;
  }
  .news {
    width: 100%;
    margin-top: 65px;
  }
  .news__content {
    padding: 24px 0;
    height: auto;
    grid-template-columns: auto 1fr;
  }
  .news__text {
    grid-column: 1/3;
    align-items: flex-end;
  }
  .news__text span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    width: 100%;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    white-space: normal;
    max-height: 3.5em;
  }
  /*----------------------------------------------------------------*/
}
/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
@media (min-width: 768px) and (max-width: 1119px) {
  /*----------------------------------------------------------------*/
  .top-section02 .block:nth-child(odd) .block__content {
    padding-left: 50px;
  }
  .top-section02 .block:nth-child(even) .block__content {
    padding-left: 40px;
  }
  .top-section02 .block h3 {
    padding-left: 130px;
  }
  .top-section02 .block h3::before {
    font-family: "DIN Alternate", sans-serif !important;
  }
  .top-section02 .block .links {
    width: unset;
  }
  /*----------------------------------------------------------------*/
}
/*----------------------------------------------------------------*//*# sourceMappingURL=top.css.map */