/* ---- ページ全体 ---- */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: "Shippori Mincho", serif;
  box-sizing: border-box;
}

h2,
h3,
h4,
h5,
h5,
p,
a {
  font-weight: 400;
  color: #ffffff;
}

h3 {
  font-size: 0.95rem;
  line-height: 2;
}

a {
  text-decoration: none;
}

.btn {
  background-color: #faf8f5;
  border: 1px solid #999999;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
  background-color: #e0dfda;
  /* 少し濃いベージュ */
  color: #000;
}

#main {
  background-color: rgb(176, 176, 176);
}

.wrapper {
  margin: 0 20px;
}

.content_wrapper {
  padding: 80px 0;
}

.text-block {
  padding: 20% 20px;
  letter-spacing: 2px;
  margin: 0;
  position: relative;
  z-index: 1;
}

.text-block p {
  font-size: 0.75rem;
  margin-top: 30px;
  line-height: 1.75;
}

.js-fade-text.is-active h3,
.js-fade-text.is-active p {
  opacity: 1;
  transform: translateY(0);
  transform: none;
  filter: none;
}


.fade-line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  filter: blur(8px);
  line-height: inherit;
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s ease;
}

.js-fade-text.is-active .fade-line {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);

}

.sp-br {
  display: block;
}

.content_wrapper h4 {
  color: #000;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.75rem;
  margin: 0 0 60px 0;
  opacity: 0;
  transform: translateY(15px);
}

.content_wrapper h4::before {
  content: "";
  width: 30px;
  /* 少し長めが良い */
  height: 1px;
  background-color: #000;
  transform: scaleX(0);
  transform-origin: left;
}

.content_wrapper h4.is-active {
  opacity: 1;
  transform: translateY(0);
  transition: 1s ease;
  transition-delay: 0.3s;
}

.content_wrapper h4.is-active::before {
  transform: scaleX(1);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.content_wrapper p {
  color: #000000;
  margin: 20px 0;
  line-height: 2;
}

.content_wrapper a {
  display: block;
  color: #000000;
}

.content_img {
  margin-top: 60px;
}

.content_img img {
  width: 100%;
  height: auto;
  display: block;
}

.en {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/*--共通-ここまで--*/

/*--KV-ここから--*/

.top--first {
  width: 100%;
  height: calc(100dvh - 43px);
  background-image: url(../img/251001_02_sugimoto_0087.jpg);
  background-size: cover;
  background-position: 39% 100%;
  background-repeat: no-repeat;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-color: #00000020;
  z-index: 1;
}

h2 {
  position: absolute;
  top: calc(50% - 46px);
  left: 20px;
  display: flex;
  flex-direction: row-reverse;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  transform: translateY(-50%);
  z-index: 5;
  margin: 0;
}

/* 縦書き */
h2>span {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: clamp(14px, 1.5rem, 29.6px);
  white-space: nowrap;
}

/* テキストブロック */
.js-fade>span {
  background-color: transparent;
  padding: 20px 5px;
  letter-spacing: 5px;
  margin: 0;
  position: relative;
  z-index: 0;
}

/* 2行目だけ下にずらす */
.js-fade>span:last-child {
  margin-top: 120px;
}

/* 背景アニメ */
.js-fade>span::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #34343476;
  z-index: -1;
  opacity: 1;
  transform: scaleY(0);
  transform-origin: top;
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--line-delay, 0s);
}

.js-fade.active>span::before {
  transform: scaleY(1);
  background-color: #ffffff;
}

/* 文字アニメ */
.js-fade .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  filter: blur(2px);
  color: #000;
  line-height: 1;
  white-space: nowrap;
  writing-mode: inherit;
  text-orientation: inherit;
  position: relative;
  z-index: 1;
}

.js-fade.active .char {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition:
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}


.bottom-area {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
}

.scroll-bar {
  margin: 0px 0 50px 2%;
}

.scroll-bar p {
  writing-mode: vertical-lr;
  vertical-align: middle;
  text-align: center;
  letter-spacing: 1px;
  font-size: 0.875rem;
  margin: 0 0 0 2%;
  position: relative;
}

.scroll-bar p::after {
  display: block;
  content: "";
  width: 1px;
  height: 30px;
  background-color: #fff;
  margin: 10px auto 0;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 30px;
  opacity: 0;
  animation: scrollLine 1.5s infinite;
}

@keyframes scrollLine {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(19px);
  }
}

.logo {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin: 0 2% 0 auto;
}

.kracie_logo {
  max-width: 120px;
}

.HERALBONY_logo_top {
  max-width: 150px;
}

.cross {
  width: 1px;
  height: 18px;
  background-color: #fff;
  transform: rotate(45deg);
}

.cross::after {
  display: block;
  content: "";
  width: 1px;
  height: 18px;
  background-color: #fff;
  transform: rotate(-90deg);
}

/*--KV-ここまで--*/

.second-ttl h3,
.second-ttl p,
.force-ttl h3,
.force-ttl p {
  text-align: right;
}

.fade-line {
  display: inline;
  text-align: inherit;
}

.top--second {
  width: 100%;
  background-image: url(../img/251001_02_sugimoto_0067-2.jpg);
  background-size: cover;
  background-position: 45% 100%;
  background-repeat: no-repeat;
  position: relative;
}

.top--third {
  width: 100%;
  background-image: url(../img/251001_02_sugimoto_0060.jpg);
  background-size: cover;
  background-position: 70% 100%;
  background-repeat: no-repeat;
  position: relative;
}

.top--force {
  width: 100%;
  background-image: url(../img/251001_02_sugimoto_0103.jpg);
  background-size: cover;
  background-position: 45% 100%;
  background-repeat: no-repeat;
  position: relative;
}

/*-- movie ここから--*/

.movie {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* video */
.movie video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.movie-wrapper {
  position: relative;
}

/* video.js本体 */
.video-js {
  width: 100%;
  display: block;
  z-index: 1;
}

/* デフォルト再生ボタン非表示 */
.video-js .vjs-big-play-button {
  display: none;
}

/*--movie-ここまで--*/

/*--introduction-ここから--*/

.introduction {
  background-color: #ffffff;
}

.introduction_title {
  position: relative;
}

.introduction_item {
  margin: 0 20px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  transition-delay: 0.5s;
}

.introduction_item.is-active {
  margin: 0 20px;
  opacity: 1;
  transform: translateY(0);
}

.Heralbony_logo {
  width: 80%;
  margin: 0 auto 40px auto;
}

.Heralbony_logo img {
  width: 100%;
  height: auto;
  display: block;
}

.introduction_left p {
  font-size: 0.875rem;
}

.link-hover {
  transform: translateX(0);
  transition: transform 0.4s ease;
}

.link-hover:hover {
  transform: translateX(6px);
}

/*--introduction-ここまで--*/

/*--news-ここから--*/

.news {
  background-color: #f5f4f3;
}

.news-list {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: 0.8s;
}

.news-list.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   LIST ITEM BASE
========================= */

.news-list li {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

/* 共通の黒い下線（全てのli） */
.news-list li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
}

/* =========================
   HOVER LINE（aがある時だけ）
========================= */

.news-list li:has(a)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #aaa;
  transition: width 0.5s ease;
}

.news-list li:has(a):hover::after {
  width: 100%;
}

/* =========================
   LINK STYLE
========================= */

.news-list li a {
  display: block;
  position: relative;
  padding-right: 50px;
  transition: transform 0.4s ease;
}

/* 矢印 */
.news-list li a::before,
.news-list li a::after {
  content: "";
  position: absolute;
  top: 50%;
  background-color: #000;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-list li a::before {
  right: 0;
  width: 20px;
  height: 1px;
  transform: translateX(-50%);
}

.news-list li a::after {
  right: 9px;
  width: 9px;
  height: 1px;
  transform: rotate(45deg);
  transform-origin: 100% 50%;
}

/* =========================
   HOVER EFFECT（aありのみ）
========================= */

.news-list li:has(a):hover a {
  transform: translateX(3px);
}

.news-list li:has(a):hover a::before {
  transform: translateX(-5px);
}

.news-list li:has(a):hover a::after {
  transform: translateX(5px) rotate(45deg);
}

/* =========================
   TEXT
========================= */

.news-item dt {
  letter-spacing: 1px;
  margin-bottom: 5px;
  font-size: 0.875rem;
}

.news-item dd {
  font-size: 0.95rem;
}

/*--news-ここまで--*/

/*--collaboration-ここから--*/

.collaboration {
  background-image: url(../img/p0324_l.jpeg);
  position: relative;
}

.collaboration_title {
  position: relative;
  z-index: 5;
}

.collaboration_title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -10%;
  display: block;
  width: 100%;
  height: 180px;
  background-image: url("../img/collaboration_circle.svg");
  background-repeat: no-repeat;
  opacity: 0.7;
  z-index: -1;
  transform: translateY(-50%);
}

.collaboration .content_wrapper p {
  margin: 0;
  line-height: 1.5;
}

.collaboration .content_wrapper .tag {
  color: #656565;
  font-size: 0.875rem;
  margin-top: 20px;
}


.scroll_img {
  overflow: hidden;
}

.scroll_img img {
  aspect-ratio: 1 / 1.27;
  object-fit: cover;
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.8s ease
}

.scroll_img img:hover {
  opacity: 0.7;
}

.Collaboration_01-img {
  object-position: 67% -3vw !important;
  transform: scale(1.3);
}

.swiper-wrap {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease,
    transform 0.8s ease;
  transition-delay: 0.5s;
}

.swiper-wrap.is-active {
  opacity: 1;
  transform: translateY(0px);
}


.swiper-wrapper .sp-none {
  display: none;
}

/*--collaboration-ここまで--*/

/*--swiper設定--*/

.swiper-wrap {
  position: relative;
  z-index: 5;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "" !important;
}

.swiper-button-prev::before,
.swiper-button-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform-origin: center;
  transition: transform 0.4s ease, border-color 0.3s ease;
}

.swiper-button-next::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.swiper-button-prev::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.swiper-button-prev:hover::before,
.swiper-button-next:hover::before {
  border-top: 1px solid #656565;
  border-right: 1px solid #656565;
}

.scroll {
  margin: 0 auto;
  padding: 0 50px;
}

/*--swiper設定ここまで--*/


/*--mediaここから--*/

.media {
  background-color: #f5f4f3;
}

.media_list-wrapper {
  background-color: #fff;
  padding: 20px;
}

.media_list-wrapper .btn {
  display: block;
  align-items: center;
  padding: 10px 20px;
  position: relative;
  max-width: 160px;
  padding-right: 45px;
}

.media_list-wrapper .btn::before {
  content: "";
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateX(-80%);
  width: 20px;
  height: 1px;
  border-radius: 9999px;
  background-color: #000000;
}

.media_list-wrapper .btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 9px;
  height: 1px;
  border-radius: 9999px;
  background-color: #000000;
  transform: rotate(45deg);
  transform-origin: 100% 50%;
}

.media_list-wrapper .btn::before,
.media_list-wrapper .btn::after {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.media_list-wrapper .btn:hover::before {
  transform: translateX(-50%);
}

.media_list-wrapper .btn:hover::after {
  transform: translateX(6px) rotate(45deg);
}

.media_list-wrapper p {
  margin: 10px 0;
  font-size: 0.875rem;
}

/*--mediaここまで--*/


/*--PC--PC--PC--PC--PC--PC--PC--PC--PC--PC*/
/*--PC--PC--PC--PC--PC--PC--PC--PC--PC--PC*/
/*--PC--PC--PC--PC--PC--PC--PC--PC--PC--PC*/


@media (min-width: 640px) {

  /*--共通-ここから--*/

  .wrapper {
    margin: 0 auto;
    max-width: 1440px;
    padding: 0 80px;
  }

  h3 {
    font-size: 1.5rem;
  }

  .text-block {
    padding: 20% 80px;
  }

  .text-block p {
    font-size: 1rem;
    margin-top: 30px;
    line-height: 1.75;
  }

  .content_wrapper {
    padding: 160px 0;
  }

  .content_wrapper h4 {
    font-size: clamp(40px, 3.5vw, 4rem);
    gap: 20px;
    margin: 0 0 80px 0;
  }

  .content_wrapper h4::before {
    width: 60px;
  }

  .content_wrapper h3::before {
    width: 60px;
  }

  .content_wrapper p {
    margin: 30px 0;
  }

  .content_img {
    margin-top: 60px;
  }


  /*--共通-ここまで--*/

  /*--KV-ここから--*/

  .top--first {
    background-position: center;
    height: calc(100vh - 94px);
  }

  h2 {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin: 0 80px;
    padding: 0;
    height: calc(100vh - 47px);
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
  }

  /* 縦書き */
  h2>span {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: clamp(20px, 2.5rem, 48px);
    white-space: nowrap;
  }

  /* テキストブロック */
  .js-fade>span {
    padding: 20px 8px;
    letter-spacing: 6px;
    position: relative;
  }

  .bottom-area {
    justify-content: center;
    align-items: center;
  }

  .scroll-bar {
    margin: 0 0 77px 50%;
  }

  .scroll-bar p::after {
    height: 50px;
    top: 18px;
  }

  .scroll-bar p {
    writing-mode: horizontal-tb;
    vertical-align: middle;
    text-align: center;
    letter-spacing: 2px;
    font-size: 1rem;
  }

  .logo {
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin: 0 2% 0 auto;
  }

  /* 
  .logo img {
    flex: 1 1 180px;
    max-width: 180px;
  } */

  .kracie_logo {
    max-width: 160px;
  }

  .HERALBONY_logo_top {
    max-width: 200px;
  }

  .sp-br {
    display: none !important;
  }

  /*--KV-ここまで--*/

  .top--second {
    background-position: center;
  }

  .top--third {
    background-position: center;
  }

  .top--force {
    background-position: center;
  }

  /*--introduction-ここから--*/

  .introduction_item {
    display: flex;
    gap: clamp(20px, 5vw, 80px);
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }

  .introduction_left {
    max-width: clamp(100%, 100vw, 580px);
    flex: 1 1 356px;
  }

  .introduction_right {
    width: 100%;
    flex: 1 1 356px;
  }

  .Heralbony_logo {
    width: clamp(140px, 30vw, 280px);
    margin: 0;
  }

  .introduction_left p {
    font-size: 1rem;
  }

  /*--introduction-ここまで--*/

  /*--NEWS-ここから--*/

  .news-list li {
    padding-bottom: 20px;
    margin-bottom: 30px;
  }

  .news-list li a {
    padding-right: 50px;
  }

  .news-list li a::before {
    width: 30px;
  }

  .news-list li a::after {
    right: 14px;
    width: 13px;
  }

  .news-list li:has(a):hover a::before {
    transform: translateX(-9px) translateY(-50%);
  }

  .news-list li:has(a):hover a::after {
    transform: translateX(5px) translateY(-50%) rotate(45deg);
  }

  .news-item {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .news-item dt {
    margin-bottom: 0;
    font-size: 1rem;
  }

  .news-item dd {
    font-size: 1.15rem;
  }

  /*--NEWS-ここまで--*/

  /*--collaboration-ここから--*/

  .collaboration .content_wrapper .tag {
    font-size: 1rem;
  }

  .collaboration .content_wrapper p {
    font-size: 1.15rem;
  }

  .collaboration_title::after {
    height: 200px;
  }

  /*--collaboration-ここまで--*/

  /*--swiper設定--*/

  /* ボタンサイズ */
  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    height: 40px;
    position: relative;
  }

  .swiper-button-prev::before,
  .swiper-button-next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 30px;
    height: 30px;
    transform-origin: center;
  }

  .swiper-button-prev::before {
    left: -30px;
  }

  .swiper-button-next::before {
    left: 60px;
  }

  .swiper-button-next::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .swiper-button-prev::before {
    transform: translate(-50%, -50%) rotate(-135deg);
  }

  .scroll {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  /*Coming Soon PCだけ表示のため*/

  .scroll .sp-none {
    aspect-ratio: 1 / 1.27;
    width: 100%;
    height: 100%;
    background-color: #D9D9D9;
    object-fit: cover;
    position: relative;
  }

  .scroll .sp-none p {
    color: #fff;
    font-size: 1rem;
    white-space: nowrap;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .scroll .sp-none p {
    color: #fff;
  }

  .swiper-wrapper .sp-none {
    display: block;
  }


  /*--swiper設定ここまで--*/

  /*--media-ここから--*/

  .media_list-wrapper {
    max-width: 100%;
  }

  .media_list-wrapper p {
    margin: 20px 0;
    font-size: 1rem;
  }

  .media_list-wrapper .btn::before {
    width: 30px;
    transform: translateX(-50%);
  }

  .media_list-wrapper .btn:hover::before {
    transform: translateX(-30%);
  }

  /*--media-ここまで--*/

}

p.copyright {
  text-align: center;
}