@charset "UTF-8";
/* ----------------------------------
    モジュール読み込み
------------------------------------ */
/* ----------------------------------
	font-family
	フォントファミリーの変数
------------------------------------ */
:root {
  --base-vw: 1920; /* 基準となるビューポート幅 */
}

/* ----------------------------------
    モジュール読み込み
------------------------------------ */
/* ----------------------------------
	index
	globalディレクトリのファイルを@forwardしてまとめる
------------------------------------ */
/* ----------------------------------
	mediaquery
	メディアクエリのmixin
------------------------------------ */
/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.7;
  color: #333;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

.atag {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 999999999;
}

/* ----------------------------------
	index
	globalディレクトリのファイルを@forwardしてまとめる
------------------------------------ */
/* ----------------------------------
    モジュール読み込み
------------------------------------ */
html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar {
  display: none;
}

.menu {
  width: 110px;
  height: 20px;
  position: fixed;
  top: 60px;
  right: 50px;
  z-index: 999999999;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-shadow: none;
  cursor: pointer;
}
@media (max-width: 767px) {
  .menu {
    width: 40px;
    top: 25px;
    right: 20px;
  }
}
.menu__inner {
  display: flex;
  align-items: center;
  gap: 18px;
}
@media (max-width: 767px) {
  .menu__inner-text {
    display: none;
  }
}
.menu .lines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  position: relative;
}
.menu .lines .line {
  width: 37px;
  height: 1px;
  background: #070606;
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.3s, background 0.3s, width 0.3s ease;
  transform-origin: center;
}
.menu .lines .line.l3 {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 0px;
  margin: auto;
}
@media (hover: hover) and (pointer: fine) {
  .menu:hover .line.l1 {
    transform: translateY(-4px) !important;
  }
  .menu:hover .line.l2 {
    transform: translateY(4px) !important;
  }
  .menu:hover .line.l3 {
    width: 37px;
  }
}
.menu.active .lines .line {
  background: #ffffff;
}
.menu.active .l1 {
  transform: translateY(4px) rotate(205deg);
}
.menu.active .l2 {
  transform: translateY(-4px) rotate(-205deg);
}
.menu.active .menu__inner-text p {
  top: 2px;
}
.menu.active .menu__inner-text span:first-child {
  opacity: 0;
}
.menu.active .menu__inner-text span:last-child {
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .menu.active:hover .line.l1 {
    transform: translateY(4px) rotate(205deg) !important;
  }
  .menu.active:hover .line.l2 {
    transform: translateY(-4px) rotate(-205deg) !important;
  }
  .menu.active:hover .line.l3 {
    width: 0px;
  }
}
.menu__inner-text p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: #070606;
  margin: 0;
  position: relative;
  height: 20px;
  display: flex;
  align-items: center;
  line-height: 1;
  transition: color 0.3s;
  top: 2px;
}
.menu__inner-text span {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.menu__inner-text span:first-child {
  opacity: 1;
}
.menu__inner-text span:last-child {
  left: 0;
  opacity: 0;
}

.flowting-logo {
  position: fixed;
  top: -100px;
  left: 55px;
  z-index: 9999;
  width: 350px;
  height: 20;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .flowting-logo {
    top: 0px;
    left: 25px;
    width: 230px;
    height: 13px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .flowting-logo:hover {
    opacity: 0.5 !important;
  }
}

.menu-board {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #333;
  color: #fff;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  opacity: 0;
  visibility: hidden;
}
.menu-board__inner {
  width: 90%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: calc(80 / var(--base-vw) * 100vw);
  margin: auto;
}
@media (max-width: 767px) {
  .menu-board__inner {
    flex-direction: column;
    padding: 80px 22px 200px 22px;
    height: 100vh;
    display: block;
    align-items: normal;
    justify-self: unset;
    overflow: scroll;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
}
.menu-board__inner::-webkit-scrollbar {
  display: none;
}
.menu-board__left, .menu-board__right {
  flex: 1 1 0;
  min-width: 0;
}
@media (max-width: 767px) {
  .menu-board__left, .menu-board__right {
    flex: 0 0 100%;
    width: 100%;
    display: block;
  }
}
.menu-board__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 850px;
  width: 100%;
}
.menu-board__left > .menu-board__title {
  display: flex;
  align-items: center;
  font-size: calc(40 / var(--base-vw) * 100vw);
  font-weight: 400;
  margin-bottom: calc(48 / var(--base-vw) * 100vw);
  position: relative;
}
@media (max-width: 767px) {
  .menu-board__left > .menu-board__title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .menu-board__left > .menu-board__title:hover .menu-board__title-arrow img.before {
    transform: translateX(100%) !important;
  }
  .menu-board__left > .menu-board__title:hover .menu-board__title-arrow img.after {
    transform: translateX(0) !important;
  }
}
.menu-board__left > .menu-board__title .menu-board__title-arrow {
  display: inline-flex;
  align-items: center;
  margin-left: calc(16 / var(--base-vw) * 100vw);
  position: relative;
  width: calc(32 / var(--base-vw) * 100vw);
  height: calc(32 / var(--base-vw) * 100vw);
  overflow: hidden;
}
@media (max-width: 767px) {
  .menu-board__left > .menu-board__title .menu-board__title-arrow {
    margin-left: 10px;
    width: 22px;
    height: 22px;
  }
}
.menu-board__left > .menu-board__title .menu-board__title-arrow img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.3s ease;
}
.menu-board__left > .menu-board__title .menu-board__title-arrow img.before {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(0) !important;
  transition: transform 0.3s ease;
}
.menu-board__left > .menu-board__title .menu-board__title-arrow img.after {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%) !important;
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .menu-board__left > .menu-board__title .menu-board__title-arrow img {
    width: 100%;
    height: 100%;
  }
}
.menu-board__left > .menu-board__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.menu-board__left > .menu-board__list > .menu-board__item {
  position: relative;
  border-bottom: 1px solid #aaa;
  background: transparent;
  padding: 0;
}
.menu-board__left > .menu-board__list > .menu-board__item:first-child {
  border-top: 1px solid #aaa;
}
.menu-board__left > .menu-board__list > .menu-board__item:nth-child(2) {
  pointer-events: none;
}
.menu-board__left > .menu-board__list > .menu-board__item:nth-child(3) {
  pointer-events: none;
}
.menu-board__left > .menu-board__list > .menu-board__item:last-child {
  pointer-events: none;
}
@media (max-width: 767px) {
  .menu-board__left > .menu-board__list > .menu-board__item:last-child {
    border-bottom: none;
  }
}
.menu-board__left > .menu-board__list > .menu-board__item .menu-board__group {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: calc(80 / var(--base-vw) * 100vw);
  padding: 0;
  position: relative;
}
@media (max-width: 767px) {
  .menu-board__left > .menu-board__list > .menu-board__item .menu-board__group {
    min-height: auto;
    flex-direction: column;
    border-bottom: 1px solid #ffffff;
    margin-bottom: 20px;
    border-left: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
  }
}
.menu-board__left > .menu-board__list > .menu-board__item .menu-board__group .menu-board__order {
  flex: 0 0 calc(100 / var(--base-vw) * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(28 / var(--base-vw) * 100vw);
  font-weight: 400;
  border-right: 1px solid #aaa;
  border-left: 1px solid #aaa;
  background: transparent;
}
@media (max-width: 767px) {
  .menu-board__left > .menu-board__list > .menu-board__item .menu-board__group .menu-board__order {
    font-size: 1.25rem;
    width: 100%;
    flex: 0 0 100%;
    text-align: left;
    justify-content: flex-start;
    border-bottom: 1px solid #ffffff;
    border-left: none;
    border-right: none;
    padding: 5px;
    padding-left: 18px;
  }
}
.menu-board__left > .menu-board__list > .menu-board__item .menu-board__group .menu-board__info {
  flex: 1 1 0;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .menu-board__left > .menu-board__list > .menu-board__item .menu-board__group .menu-board__info {
    flex-direction: column;
    padding-top: 15px;
  }
}
.menu-board__left > .menu-board__list > .menu-board__item .menu-board__group .menu-board__info .menu-board__artist-group {
  flex: 0 0 35%;
  max-width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: calc(12 / var(--base-vw) * 100vw) 0 calc(12 / var(--base-vw) * 100vw) calc(70 / var(--base-vw) * 100vw);
  min-width: 0;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .menu-board__left > .menu-board__list > .menu-board__item .menu-board__group .menu-board__info .menu-board__artist-group {
    height: 38px;
    flex: none;
    max-width: 100%;
    padding: 0;
    border-right: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
  }
}
.menu-board__left > .menu-board__list > .menu-board__item .menu-board__group .menu-board__info .menu-board__flavor-group {
  flex: 0 0 65%;
  max-width: 65%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: calc(12 / var(--base-vw) * 100vw) calc(24 / var(--base-vw) * 100vw);
  min-width: 0;
  border-right: 1px solid #aaa;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .menu-board__left > .menu-board__list > .menu-board__item .menu-board__group .menu-board__info .menu-board__flavor-group {
    height: 50px;
    flex: none;
    max-width: 100%;
    padding: 0;
    border-right: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    border-right: none;
  }
}
.menu-board__left > .menu-board__list > .menu-board__item .menu-board__group .menu-board__arrow {
  flex: 0 0 calc(100 / var(--base-vw) * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #aaa;
  position: relative;
  width: calc(32 / var(--base-vw) * 100vw);
  height: calc(105 / var(--base-vw) * 100vw);
  overflow: hidden;
  padding: 10px;
}
@media (max-width: 767px) {
  .menu-board__left > .menu-board__list > .menu-board__item .menu-board__group .menu-board__arrow {
    flex: none;
    width: 50px;
    height: 44px;
    border-right: none;
    position: absolute;
    right: 0;
    top: 0;
  }
}
.menu-board__left > .menu-board__list > .menu-board__item .menu-board__group .menu-board__arrow img {
  width: 50%;
  height: 50%;
  display: block;
  position: relative;
  z-index: 10;
  transition: transform 0.3s ease;
  margin: auto;
}
.menu-board__left > .menu-board__list > .menu-board__item .menu-board__group .menu-board__arrow img.before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: translateX(-5%);
  transition: transform 0.3s ease;
}
.menu-board__left > .menu-board__list > .menu-board__item .menu-board__group .menu-board__arrow img.after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: translateX(-150%);
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .menu-board__left > .menu-board__list > .menu-board__item .menu-board__group .menu-board__arrow img.after {
    transform: translateX(-220%);
  }
}
@media (max-width: 767px) {
  .menu-board__left > .menu-board__list > .menu-board__item .menu-board__group .menu-board__arrow img {
    width: 18px;
    height: 18px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .menu-board__left > .menu-board__list > .menu-board__item:hover .menu-board__arrow::before {
    width: 100%;
  }
  .menu-board__left > .menu-board__list > .menu-board__item:hover .menu-board__arrow img {
    mix-blend-mode: difference;
  }
  .menu-board__left > .menu-board__list > .menu-board__item:hover .menu-board__arrow img.before {
    transform: translateX(150%);
  }
  .menu-board__left > .menu-board__list > .menu-board__item:hover .menu-board__arrow img.after {
    transform: translateX(-5%);
  }
}
.menu-board__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 400px;
  width: 100%;
  gap: calc(40 / var(--base-vw) * 100vw);
  margin-top: 20px;
}
.menu-board__right .menu-board__nav {
  list-style: none;
  padding: 0;
  margin: 0 0 calc(70 / var(--base-vw) * 100vw) 0;
}
@media (hover: hover) and (pointer: fine) {
  .menu-board__right .menu-board__nav li:hover .menu-board__nav-arrow img.before {
    transform: rotate(0deg) translateX(100%) !important;
  }
  .menu-board__right .menu-board__nav li:hover .menu-board__nav-arrow img.after {
    transform: rotate(0deg) translateX(0) !important;
  }
}
.menu-board__right .menu-board__nav li {
  font-size: calc(40 / var(--base-vw) * 100vw);
  font-weight: 700;
  margin-bottom: calc(25 / var(--base-vw) * 100vw);
  color: #fff;
  display: flex;
  align-items: center;
  gap: calc(8 / var(--base-vw) * 100vw);
  position: relative;
}
@media (max-width: 767px) {
  .menu-board__right .menu-board__nav li {
    font-size: 2rem;
    margin-bottom: 0px;
  }
}
.menu-board__right .menu-board__nav li .arrow {
  font-size: calc(28 / var(--base-vw) * 100vw);
}
.menu-board__right .menu-board__nav li:last-child {
  margin-bottom: 0;
}
.menu-board__right .menu-board__external-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: calc(45 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .menu-board__right .menu-board__external-row {
    width: 100%;
    position: relative;
  }
}
.menu-board__right .menu-board__external {
  display: flex;
  flex-direction: column;
  gap: calc(18 / var(--base-vw) * 100vw);
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (hover: hover) and (pointer: fine) {
  .menu-board__right .menu-board__external li:hover .menu-board__nav-arrow img.before {
    transform: rotate(-45deg) translateX(120%) !important;
  }
  .menu-board__right .menu-board__external li:hover .menu-board__nav-arrow img.after {
    transform: rotate(-45deg) translateX(0) !important;
  }
}
.menu-board__right .menu-board__external li {
  display: flex;
  align-items: center;
  font-size: calc(20 / var(--base-vw) * 100vw);
  color: #bbb;
  gap: calc(8 / var(--base-vw) * 100vw);
  position: relative;
}
@media (max-width: 767px) {
  .menu-board__right .menu-board__external li {
    font-size: 1.375rem;
    gap: 0;
    line-height: 1.4;
  }
}
.menu-board__right .menu-board__external li .menu-board__nav-arrow img {
  transform: rotate(-45deg);
  width: calc(28 / var(--base-vw) * 100vw);
  height: calc(28 / var(--base-vw) * 100vw);
  display: block;
  transition: transform 0.3s ease;
}
.menu-board__right .menu-board__external li .menu-board__nav-arrow img.before {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-45deg) translateX(0) !important;
  transition: transform 0.3s ease;
}
.menu-board__right .menu-board__external li .menu-board__nav-arrow img.after {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-45deg) translateX(-120%) !important;
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .menu-board__right .menu-board__external li .menu-board__nav-arrow img {
    width: 17px;
    height: 17px;
  }
}
.menu-board__right .menu-board__sns {
  display: flex;
  flex-direction: row;
  align-items: bottom;
  position: relative;
  top: 40px;
  gap: calc(24 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .menu-board__right .menu-board__sns {
    width: 63px;
    height: 22px;
    position: absolute;
    right: 0;
    top: auto;
    bottom: 15px;
    gap: 18px;
  }
}
.menu-board__right .menu-board__sns a img {
  width: calc(30 / var(--base-vw) * 100vw);
  height: calc(30 / var(--base-vw) * 100vw);
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .menu-board__right .menu-board__sns a img:hover {
    opacity: 0.5;
  }
}
@media (max-width: 767px) {
  .menu-board__right .menu-board__sns a img {
    width: 22px;
    height: 22px;
  }
}
.menu-board__label-en {
  font-size: calc(12 / var(--base-vw) * 100vw);
  color: #aaa;
  margin-bottom: calc(2 / var(--base-vw) * 100vw);
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-weight: 400;
  letter-spacing: 0.03125rem;
}
@media (max-width: 767px) {
  .menu-board__label-en {
    width: 25%;
    font-size: 0.625rem;
    top: 10px;
    position: relative;
    padding-left: 20px;
  }
}
.menu-board__artist, .menu-board__flavor {
  font-size: calc(32 / var(--base-vw) * 100vw);
  color: #fff;
  font-weight: 600;
  word-break: break-all;
}
@media (max-width: 767px) {
  .menu-board__artist, .menu-board__flavor {
    font-size: 1.1875rem;
  }
}
.menu-board__nav-arrow {
  display: inline-flex;
  align-items: center;
  margin-left: calc(12 / var(--base-vw) * 100vw);
  position: relative;
  width: calc(28 / var(--base-vw) * 100vw);
  height: calc(28 / var(--base-vw) * 100vw);
  overflow: hidden;
}
@media (max-width: 767px) {
  .menu-board__nav-arrow {
    margin-left: 15px;
    width: 17px;
    height: 17px;
  }
}
.menu-board__nav-arrow img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.3s ease;
}
.menu-board__nav-arrow img.before {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(0) !important;
  transition: transform 0.3s ease;
}
.menu-board__nav-arrow img.after {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%) !important;
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .menu-board__nav-arrow img {
    width: 100%;
    height: 100%;
  }
}
.menu-board__external .menu-board__nav-arrow img {
  transform: rotate(-45deg);
}

/* ----------------------------------
	index
	globalディレクトリのファイルを@forwardしてまとめる
------------------------------------ */
/* ----------------------------------
    モジュール読み込み
------------------------------------ */
/* ----------------------------------
    共通パーツ読み込み
------------------------------------ */
/* ----------------------------------
    モジュール読み込み
------------------------------------ */
/* ----------------------------------
	index
	globalディレクトリのファイルを@forwardしてまとめる
------------------------------------ */
/* ----------------------------------
    共通パーツ読み込み
------------------------------------ */
/* ------------------------------
      ページフッター
  ------------------------------ */
.sec-head {
  width: 85%;
  height: 100%;
  margin: auto;
}
.sec-head__title {
  font-size: calc(80 / var(--base-vw) * 100vw);
  color: #ffffff;
  letter-spacing: 0.1em;
  font-weight: 100;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  padding: 150px 0 0 0;
}
.sec-head__subtitle {
  font-size: calc(18 / var(--base-vw) * 100vw);
  color: #ffffff;
  letter-spacing: 0.1em;
  font-weight: 100;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  padding: 0 0 100px 0;
}

/* ----------------------------------
    モジュール読み込み
------------------------------------ */
/* ----------------------------------
	index
	globalディレクトリのファイルを@forwardしてまとめる
------------------------------------ */
/* ----------------------------------
    モジュール読み込み
------------------------------------ */
/* ----------------------------------
    インデックスページのスタイル
------------------------------------ */
.fix-menu {
  width: 70px;
  height: 120px;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #EB4826;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
@media (max-width: 767px) {
  .fix-menu {
    width: 50px;
    height: 100px;
  }
}
.fix-menu__inner-btn {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: calc(12 / var(--base-vw) * 100vw);
  font-weight: 200;
  letter-spacing: 0;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 10px;
  position: relative;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .fix-menu__inner-btn {
    font-size: 0.5rem;
    letter-spacing: 0;
    height: 50px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .fix-menu__inner-btn:hover {
    opacity: 0.7;
  }
}
.fix-menu__inner-btn:first-child p {
  padding-top: 20px;
}
.fix-menu__inner-btn:last-child::before {
  width: 80%;
  height: 1px;
  content: "";
  background: #ef8b6d;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}

.wrapper {
  position: relative;
  z-index: 9995;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
}

.product_item {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .product_item {
    padding-bottom: 1.25rem;
  }
}

.product_item_inner {
  width: calc(400 / var(--base-vw) * 100vw);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 767px) {
  .product_item_inner {
    width: calc(280 / var(--base-vw) * 100vw);
  }
}

.product_item_image {
  width: 100%;
}
.product_item_image img {
  width: 100%;
  height: auto;
  display: block;
  mask: url(#imageMask);
  -webkit-mask: url(#imageMask);
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  mask-position: center center;
  -webkit-mask-position: center center;
}

.main-wrapper {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 999;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 767px) {
  .main-wrapper {
    height: 100svh;
  }
}
.main-wrapper__inner {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .main-wrapper__inner {
    height: 100svh;
  }
}
.main-wrapper__inner-bg {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 767px) {
  .main-wrapper__inner-bg {
    height: 100svh;
  }
}
.main-wrapper__inner-bg-parallax {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  will-change: auto;
}
.main-wrapper__inner-bg-parallax-carousel {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.main-wrapper__inner-bg-parallax-slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  will-change: opacity;
}
.main-wrapper__inner-bg-parallax-slide.active {
  opacity: 1;
}
.main-wrapper__inner-bg-parallax-slide-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .main-wrapper__inner-bg-parallax-slide-image {
    display: none;
  }
}
.main-wrapper__inner-bg-parallax-slide-image-sp {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: none;
}
@media (max-width: 767px) {
  .main-wrapper__inner-bg-parallax-slide-image-sp {
    display: block;
  }
}
.main-wrapper__inner-bg-parallax-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 15px;
}
@media (max-width: 767px) {
  .main-wrapper__inner-bg-parallax-nav {
    bottom: 20px;
    gap: 10px;
  }
}
.main-wrapper__inner-bg-parallax-nav-dots {
  display: flex;
  gap: 15px;
}
@media (max-width: 767px) {
  .main-wrapper__inner-bg-parallax-nav-dots {
    gap: 10px;
  }
}
.main-wrapper__inner-bg-parallax-nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .main-wrapper__inner-bg-parallax-nav-dot {
    width: 10px;
    height: 10px;
  }
}
.main-wrapper__inner-bg-parallax-nav-dot.active {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}
.main-wrapper__inner-bg-parallax-nav-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}
.main-wrapper__inner-kv {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.main-wrapper__inner-kv-inner {
  width: 100%;
  height: 100%;
}
.main-wrapper__inner-kv-inner-text {
  width: 85%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  will-change: auto;
  margin: auto;
}
.main-wrapper__inner-kv-inner-text h2 {
  font-size: calc(32 / var(--base-vw) * 100vw);
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.09375rem;
  padding-top: 50px;
}
@media (max-width: 767px) {
  .main-wrapper__inner-kv-inner-text h2 {
    font-size: 0.8125rem;
    padding-top: 20px;
  }
}

.main-wrapper__ancorBtn {
  width: 100%;
  display: flex;
  justify-content: center;
  position: absolute;
  left: 0;
  bottom: calc(60 / var(--base-vw) * 100vw);
  z-index: 20;
}
@media (max-width: 767px) {
  .main-wrapper__ancorBtn {
    bottom: 20px;
  }
}
.main-wrapper__ancorBtn-link {
  width: 100%;
  max-width: 370px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #52bad3;
  color: #070606;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: calc(26 / var(--base-vw) * 100vw);
  font-weight: 700;
  text-decoration: none;
  padding: calc(8 / var(--base-vw) * 100vw) calc(20 / var(--base-vw) * 100vw);
  border-radius: 0;
  box-shadow: none;
  letter-spacing: 0.09375rem;
  transition: none;
}
@media (max-width: 767px) {
  .main-wrapper__ancorBtn-link {
    max-width: 265px;
    font-size: 1.125rem;
    padding: 0.3125rem 0.9375rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .main-wrapper__ancorBtn-link:hover .main-wrapper__ancorBtn-icon img.before {
    transform: rotate(0deg) translateY(100%) !important;
  }
  .main-wrapper__ancorBtn-link:hover .main-wrapper__ancorBtn-icon img.after {
    transform: rotate(0deg) translateY(0) !important;
  }
}
.main-wrapper__ancorBtn-order {
  font-size: inherit;
  font-weight: 700;
  color: #070606;
  margin-right: calc(24 / var(--base-vw) * 100vw);
  white-space: nowrap;
}
.main-wrapper__ancorBtn-name {
  font-size: inherit;
  font-weight: 700;
  color: #070606;
  margin-right: auto;
  margin-left: calc(16 / var(--base-vw) * 100vw);
  white-space: nowrap;
}
.main-wrapper__ancorBtn-icon {
  position: relative;
  width: calc(30 / var(--base-vw) * 100vw);
  height: calc(30 / var(--base-vw) * 100vw);
  overflow: hidden;
}
@media (max-width: 767px) {
  .main-wrapper__ancorBtn-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.main-wrapper__ancorBtn-icon img {
  width: 100%;
  height: 100%;
  display: block;
  filter: none;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .main-wrapper__ancorBtn-icon img {
    width: 100%;
    height: 100%;
  }
}
.main-wrapper__ancorBtn-icon img.before {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(0deg) translateY(0) !important;
  transition: transform 0.3s ease;
}
.main-wrapper__ancorBtn-icon img.after {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(0deg) translateY(-100%) !important;
  transition: transform 0.3s ease;
}

.concept {
  position: relative;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
}
.concept__inner {
  width: 100%;
  min-height: 100%;
  position: relative;
  display: flex;
  align-items: top;
  justify-content: center;
}
.concept__inner-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.concept__inner-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.concept__inner-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: 90%;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 0 calc(50 / var(--base-vw) * 100vw);
  box-sizing: border-box;
  padding-top: calc(350 / var(--base-vw) * 100vw);
  padding-bottom: calc(400 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .concept__inner-content {
    min-height: auto;
    flex-direction: column;
    padding-top: 150px;
    padding-bottom: 150px;
  }
}
.concept__col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .concept__col {
    flex-wrap: wrap;
    flex-direction: row;
  }
}
.concept__col--left {
  flex: 0 0 38%;
  align-items: flex-start;
  justify-content: center;
  max-width: 480px;
  padding-right: calc(40 / var(--base-vw) * 100vw);
  text-align: left;
}
@media (max-width: 767px) {
  .concept__col--left {
    width: 100%;
    flex: none;
    max-width: 100%;
    padding-right: 0;
  }
}
.concept__col--right {
  flex: 1 1 0;
  align-items: flex-start;
  justify-content: center;
  max-width: 700px;
  padding-left: calc(40 / var(--base-vw) * 100vw);
  text-align: left;
  padding-top: 270px;
}
@media (max-width: 767px) {
  .concept__col--right {
    width: 100%;
    flex: none;
    max-width: 100%;
    padding-left: 0;
    padding-top: 20px;
  }
}
.concept__logo {
  width: 80px;
  height: 80px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .concept__logo {
    width: 78px;
    height: 78px;
    margin-left: auto;
  }
}
.concept__logo img {
  width: 100%;
  height: auto;
  display: block;
}
.concept__subtitle {
  font-size: calc(24 / var(--base-vw) * 100vw);
  color: #222;
  letter-spacing: -0.1px;
  opacity: 0.7;
  margin-left: 0.5rem;
  margin-top: calc(150 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .concept__subtitle {
    width: 100%;
    font-size: 1rem;
    margin-top: 0;
    text-align: left;
    margin-bottom: 87px;
  }
}
.concept__subtitle b {
  width: 20px;
  display: inline-block;
}
.concept__title {
  font-size: calc(44 / var(--base-vw) * 100vw);
  font-weight: 500;
  margin-bottom: 2.5rem;
  line-height: 2;
  letter-spacing: 0.03125rem;
  color: #222;
}
@media (max-width: 767px) {
  .concept__title {
    width: 100%;
    font-size: 1.4375rem;
    margin-bottom: 1.25rem;
  }
}
.concept__text {
  font-size: calc(20 / var(--base-vw) * 100vw);
  color: #222;
  line-height: 2;
  letter-spacing: 0.03125rem;
  font-weight: 400;
  white-space: pre-line;
}
@media (max-width: 767px) {
  .concept__text {
    width: 100%;
    font-size: 0.8125rem;
    line-height: 1.8;
    letter-spacing: 0;
    padding-right: 5%;
  }
}
.concept__inner-content {
  display: flex;
  align-items: flex-start;
}
.concept__col--left {
  justify-content: flex-start;
}
.concept__logo {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .concept__logo {
    margin-bottom: 150px;
  }
}

.main-visual {
  position: relative;
  width: 100vw;
  height: calc(1200 / var(--base-vw) * 100vw);
  overflow: hidden;
  clip-path: inset(0 0 0 0);
}
@media (max-width: 767px) {
  .main-visual {
    height: 90svh;
  }
}
.main-visual__inner {
  width: 10%;
  height: 16%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .main-visual__inner {
    width: 80%;
    height: 45%;
  }
}
.main-visual img {
  width: 100%;
  height: 130%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}
.main-visual__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
}
@media (max-width: 767px) {
  .main-visual__text {
    width: 100%;
  }
}
.main-visual__text .main-visual__collab {
  width: 207px;
  height: 28px;
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.09375rem;
  opacity: 0.85;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  position: relative;
  text-align: center;
  margin: auto;
}
@media (max-width: 767px) {
  .main-visual__text .main-visual__collab {
    font-size: 1rem;
    margin-bottom: 0;
    letter-spacing: 0;
  }
}
.main-visual__text .main-visual__collab b {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
  top: 100px;
  left: 0;
  white-space: nowrap;
  text-align: center;
  letter-spacing: -0.1px;
}
.main-visual__text .main-visual__artist {
  width: 142px;
  height: 45px;
  display: block;
  font-size: 2.8125rem;
  font-weight: 700;
  letter-spacing: 0.15625rem;
  line-height: 1.1;
  text-align: center;
  margin: auto;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
}
@media (max-width: 767px) {
  .main-visual__text .main-visual__artist {
    font-size: 2.75rem;
    letter-spacing: 0;
  }
}
.main-visual__text .main-visual__artist b {
  display: block;
  width: 0%;
  height: 100%;
  background: #ffffff;
  position: relative;
  top: 100px;
  left: 0;
  white-space: nowrap;
  text-align: center;
  letter-spacing: -0.1px;
}
.main-visual__plus {
  position: absolute;
  width: 17px;
  height: 17px;
  z-index: 3;
}
.main-visual__plus::before, .main-visual__plus::after {
  content: "";
  position: absolute;
  background: #fff;
  opacity: 0.8;
}
.main-visual__plus::before {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 3px;
  height: 0%;
  margin: auto;
  transition: height 1s ease;
}
.main-visual__plus::after {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  margin: auto;
  transition: width 1s ease;
}
.main-visual__plus--topleft {
  top: 1.5rem;
  left: 1.5rem;
}
.main-visual__plus--topright {
  top: 1.5rem;
  right: 1.5rem;
}
.main-visual__plus--bottomleft {
  bottom: 1.5rem;
  left: 1.5rem;
}
.main-visual__plus--bottomright {
  bottom: 1.5rem;
  right: 1.5rem;
}
.main-visual__plus.animate-plus::before {
  height: 100%;
}
.main-visual__plus.animate-plus::after {
  width: 100%;
}
.main-visual__line {
  position: absolute;
  z-index: 3;
}
.main-visual__line--top {
  width: 80%;
  height: 1px;
  top: 2rem;
  right: 10%;
}
@media (max-width: 767px) {
  .main-visual__line--top {
    width: 70%;
    right: 15%;
  }
}
.main-visual__line--top-inner {
  width: 0%;
  height: 100%;
  background: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
}
.main-visual__line--bottom {
  width: 80%;
  height: 1px;
  bottom: 2rem;
  right: 10%;
}
@media (max-width: 767px) {
  .main-visual__line--bottom {
    width: 70%;
    right: 15%;
  }
}
.main-visual__line--bottom-inner {
  width: 0%;
  height: 100%;
  background: #ffffff;
  position: absolute;
  top: 0;
  right: 0;
}
.main-visual__line--left {
  width: 1px;
  height: 80%;
  top: 10%;
  left: 2rem;
}
@media (max-width: 767px) {
  .main-visual__line--left {
    height: 70%;
    top: 15%;
  }
}
.main-visual__line--left-inner {
  width: 100%;
  height: 0%;
  background: #ffffff;
  position: absolute;
  bottom: 0;
  left: 0;
}
.main-visual__line--right {
  width: 1px;
  height: 80%;
  bottom: 10%;
  right: 2rem;
}
@media (max-width: 767px) {
  .main-visual__line--right {
    height: 70%;
    bottom: 15%;
  }
}
.main-visual__line--right-inner {
  width: 100%;
  height: 0%;
  background: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
}
.main-visual__bg {
  position: absolute;
  left: 0;
  top: -15%;
  width: 100%;
  height: 130%;
  z-index: 1;
  will-change: auto;
  overflow: hidden;
}
@media (max-width: 767px) {
  .main-visual__bg {
    height: 115%;
  }
}
.main-visual__bg img {
  width: 100%;
  height: 120%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.product-section {
  position: relative;
}
.product-section__inner {
  width: 100%;
  height: 70%;
  position: relative;
  z-index: 10;
  margin: 0;
  display: flex;
  align-items: stretch;
  gap: calc(60 / var(--base-vw) * 100vw);
  justify-content: center;
  padding: 85px 65px;
}
@media (max-width: 767px) {
  .product-section__inner {
    flex-direction: column;
    padding: 60px 0px;
    gap: 27px;
  }
}
.product-section__image {
  flex: 0 0 calc(600 / var(--base-vw) * 100vw);
  max-width: calc(600 / var(--base-vw) * 100vw);
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .product-section__image {
    flex: 0 0 100%;
    max-width: 85%;
    margin: auto;
  }
}
.product-section__image img {
  width: 100%;
  height: auto;
  display: block;
}
.product-section__image-mask-width {
  position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  height: 20px;
  z-index: 2;
  pointer-events: none;
  background: #6BB9CB;
  transition: width 0.5s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-origin: right center;
}
.product-section__image-mask-height {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 20px);
  z-index: 2;
  pointer-events: none;
  background: #6BB9CB;
  transition: height 0.5s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-origin: center bottom;
}
.product-section__info {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  padding: 0 0 calc(40 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .product-section__info {
    flex: 0 0 100%;
    width: 85%;
    max-width: none;
    margin: auto;
  }
}
.product-section__info .product-section__category {
  font-size: calc(20 / var(--base-vw) * 100vw);
  color: #30606C;
  margin-bottom: calc(390 / var(--base-vw) * 100vw);
  display: block;
  letter-spacing: -0.1px;
}
@media (max-width: 767px) {
  .product-section__info .product-section__category {
    font-size: 1rem;
    margin-bottom: 100px;
  }
}
.product-section__info .product-section__category b {
  width: 20px;
  display: inline-block;
}
.product-section__info .product-section__title {
  font-size: calc(44 / var(--base-vw) * 100vw);
  margin-bottom: calc(16 / var(--base-vw) * 100vw);
  line-height: 1.35;
}
@media (max-width: 767px) {
  .product-section__info .product-section__title {
    font-size: 1.4375rem;
    margin-bottom: 10px;
    letter-spacing: 0;
    line-height: 1.5;
  }
}
.product-section__info .product-section__title b {
  position: relative;
  left: -15px;
}
.product-section__info .product-section__meta {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #30606C;
}
@media (max-width: 767px) {
  .product-section__info .product-section__meta {
    font-size: 0.875rem;
    margin-bottom: 10px;
  }
}
.product-section__info .product-section__meta span + span {
  margin-left: 1rem;
}
.product-section__info .product-section__meta span::before {
  content: "■";
  margin-right: 0.25rem;
}
.product-section__info .product-section__shop-btn {
  position: absolute;
  right: calc(40 / var(--base-vw) * 100vw);
  bottom: calc(80 / var(--base-vw) * 100vw);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: #0158A3;
  color: #fff;
  font-size: calc(12 / var(--base-vw) * 100vw);
  text-decoration: none;
  transition: background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 8px;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 767px) {
  .product-section__info .product-section__shop-btn {
    width: 80px;
    height: 80px;
    right: 0px;
  }
}
.product-section__info .product-section__shop-btn:hover {
  background: #014080;
}
.product-section__info .product-section__shop-btn-inner {
  width: 60%;
  height: 60%;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: translate(0, -10%);
  overflow: hidden;
}
.product-section__info .product-section__shop-btn-inner::before {
  width: 100%;
  height: 100%;
  background: url(../images/arr.svg) no-repeat;
  background-size: 60% 60%;
  background-position: center center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
}
@media (max-width: 767px) {
  .product-section__info .product-section__shop-btn-inner::before {
    width: 53px;
    height: 53px;
  }
}
.product-section__info .product-section__shop-btn span {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 27px);
  font-size: calc(11 / var(--base-vw) * 100vw);
  letter-spacing: 0.03125rem;
}
@media (max-width: 767px) {
  .product-section__info .product-section__shop-btn span {
    font-size: 0.4375rem;
    transform: translate(-50%, 20px);
    letter-spacing: 0;
  }
}

.product-detail {
  display: flex;
  gap: 2px;
  background: #6BB9CB;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}
@media (max-width: 767px) {
  .product-detail {
    flex-direction: column;
  }
}
.product-detail__col {
  flex: 1 1 0;
  border-right: 1px solid #222;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
@media (max-width: 767px) {
  .product-detail__col {
    flex: 0 0 100%;
    border-right: none;
    border-bottom: 1px solid #222;
  }
}
.product-detail__col:last-child {
  border-right: none;
}
@media (max-width: 767px) {
  .product-detail__col:last-child {
    border-bottom: none;
  }
}
.product-detail__col-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  padding: 60px 40px;
  gap: 40px;
  height: 100%;
  min-height: 300px;
}
@media (max-width: 767px) {
  .product-detail__col-inner {
    flex-direction: column;
    padding: 60px 0px;
    gap: 0px;
  }
}
.product-detail__image {
  width: 50%;
  height: 400px;
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .product-detail__image {
    width: 85%;
    height: 336px;
    margin: auto;
  }
}
.product-detail__image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.product-detail__image-mask-width {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 20px;
  z-index: 2;
  pointer-events: none;
  background: #6BB9CB;
  transition: width 0.5s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-origin: right center;
}
.product-detail__image-mask-height {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 20px);
  z-index: 2;
  pointer-events: none;
  background: #6BB9CB;
  transition: height 0.5s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-origin: center bottom;
}
.product-detail__content {
  width: 50%;
  height: 100%;
  margin-top: 0;
  margin-bottom: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
}
@media (max-width: 767px) {
  .product-detail__content {
    width: 85%;
    height: auto;
    padding: 27px 0px;
    margin: auto;
  }
}
.product-detail__label {
  font-size: calc(20 / var(--base-vw) * 100vw);
  color: #30606C;
  text-align: left;
  width: 100%;
  font-weight: 400;
  letter-spacing: -0.1px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 767px) {
  .product-detail__label {
    font-size: 1rem;
    position: relative;
  }
}
.product-detail__label b {
  width: 20px;
  display: inline-block;
}
.product-detail__title {
  font-size: calc(27 / var(--base-vw) * 100vw);
  margin-bottom: calc(16 / var(--base-vw) * 100vw);
  text-align: left;
  width: 100%;
  letter-spacing: 0.09375rem;
  line-height: 1.35;
}
@media (max-width: 767px) {
  .product-detail__title {
    font-size: 1.4375rem;
    margin-bottom: 10px;
    letter-spacing: 0;
    line-height: 1.5;
    margin-top: 70px;
  }
}
.product-detail__text {
  font-size: calc(16 / var(--base-vw) * 100vw);
  color: #222;
  text-align: left;
  width: 100%;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.03125rem;
}
@media (max-width: 767px) {
  .product-detail__text {
    font-size: 0.875rem;
    margin-bottom: 10px;
    letter-spacing: 0;
    line-height: 1.8;
    text-align: justify;
    padding-right: 5%;
  }
}

.product-sns {
  position: relative;
  width: 100vw;
  background: #6BB9CB;
  padding: 100px 0;
}
@media (max-width: 767px) {
  .product-sns {
    padding: 50px 0;
  }
}
.product-sns__inner {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .product-sns__inner {
    padding: 220px 0 250px 0;
  }
}
.product-sns__plus {
  position: absolute;
  width: 17px;
  height: 17px;
  z-index: 2;
}
.product-sns__plus::before, .product-sns__plus::after {
  content: "";
  position: absolute;
  background: #222;
  border-radius: 2px;
  opacity: 0.7;
}
.product-sns__plus::before {
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
}
.product-sns__plus::after {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
}
.product-sns__plus--topleft {
  top: 40px;
  left: 40px;
}
.product-sns__plus--topright {
  top: 40px;
  right: 40px;
}
.product-sns__plus--bottomleft {
  bottom: 40px;
  left: 40px;
}
.product-sns__plus--bottomright {
  bottom: 40px;
  right: 40px;
}
.product-sns__profile {
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
@media (max-width: 767px) {
  .product-sns__profile {
    gap: 20px;
    flex-wrap: wrap;
  }
}
.product-sns__icon {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  background: #fff;
  display: block;
}
@media (max-width: 767px) {
  .product-sns__icon {
    width: 90px;
    height: 90px;
    margin-left: 17.5%;
  }
}
.product-sns__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  margin-right: 32px;
}
@media (max-width: 767px) {
  .product-sns__info {
    min-width: 30%;
    margin-right: 0;
    flex-wrap: wrap;
  }
}
.product-sns__label {
  font-size: calc(20 / var(--base-vw) * 100vw);
  color: #30606C;
  margin-bottom: calc(12 / var(--base-vw) * 100vw);
  letter-spacing: -0.1px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .product-sns__label {
    font-size: 1rem;
    margin-bottom: 0px;
    letter-spacing: 0;
    line-height: 1.5;
  }
}
.product-sns__label b {
  width: 20px;
  display: inline-block;
}
.product-sns__name {
  font-size: calc(42 / var(--base-vw) * 100vw);
  font-weight: 700;
  letter-spacing: 0.075rem;
  display: flex;
  align-items: center;
  gap: calc(16 / var(--base-vw) * 100vw);
  color: #222;
}
@media (max-width: 767px) {
  .product-sns__name {
    font-size: 2.25rem;
    letter-spacing: 0;
    line-height: 1.5;
  }
}
.product-sns__snsicon {
  display: inline-block;
  vertical-align: middle;
  margin-left: calc(8 / var(--base-vw) * 100vw);
  position: relative;
  top: 3px;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .product-sns__snsicon:hover {
    opacity: 0.5;
  }
}
@media (max-width: 767px) {
  .product-sns__snsicon {
    margin-left: 8px;
  }
}
.product-sns__snsicon img {
  width: calc(32 / var(--base-vw) * 100vw);
  height: calc(32 / var(--base-vw) * 100vw);
  display: block;
}
@media (max-width: 767px) {
  .product-sns__snsicon img {
    width: 22px;
    height: 22px;
  }
}
.product-sns__desc {
  font-size: calc(18 / var(--base-vw) * 100vw);
  color: #222;
  line-height: 2;
  margin-left: calc(32 / var(--base-vw) * 100vw);
  max-width: 700px;
  font-weight: 400;
  letter-spacing: 0.03125rem;
  text-align: justify;
}
@media (max-width: 767px) {
  .product-sns__desc {
    width: 73%;
    font-size: 0.875rem;
    margin: auto;
    max-width: 100%;
    line-height: 1.8;
  }
}

.interview-banner {
  width: 100vw;
  background: #6BB9CB;
  font-size: calc(32 / var(--base-vw) * 100vw);
  font-weight: bold;
  text-align: left;
  padding: 2rem 0;
  letter-spacing: 0.125rem;
  overflow: hidden;
  position: relative;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}
@media (max-width: 767px) {
  .interview-banner {
    padding: 0.625rem 0;
    font-size: 2.9375rem;
  }
}
.interview-banner__track {
  display: inline-block;
  white-space: nowrap;
  will-change: auto;
  animation: banner-scroll 40s linear infinite;
}
@media (max-width: 767px) {
  .interview-banner__track {
    animation: banner-scroll 80s linear infinite;
  }
}
.interview-banner__track span {
  letter-spacing: -0.5px;
}

@keyframes banner-scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.next-collaboration__item-artistimg-sns {
  display: none !important;
}
@media (max-width: 767px) {
  .next-collaboration__item-artistimg-sns {
    display: inline-block !important;
  }
}

.gallery-block {
  background: #6BB9CB;
  overflow: hidden;
  position: relative;
  z-index: 9998;
}
.gallery-block:last-child {
  margin-bottom: 0;
}

.product-popupItem {
  position: relative;
  width: 100vw;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #6BB9CB;
}
@media (max-width: 767px) {
  .product-popupItem {
    min-height: auto;
    flex-direction: column;
  }
}
.product-popupItem__bg {
  position: fixed;
  transform: scale(0);
  transition: none;
  width: 455px;
  height: 455px;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 767px) {
  .product-popupItem__bg {
    width: 100%;
    height: 200px;
    position: relative;
    transform: translate(0, 0) !important;
    top: 0 !important;
    left: 0 !important;
    border-bottom: 1px solid #222;
  }
}
.product-popupItem__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.product-popupItem__bg .product-popupItem__blur {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background: rgba(0, 0, 0, 0.15);
  z-index: 2;
  pointer-events: none;
}
.product-popupItem__inner {
  position: relative;
  z-index: 3;
  width: 90%;
  max-width: 1350px;
  min-height: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
@media (max-width: 767px) {
  .product-popupItem__inner {
    width: 100%;
    min-height: auto;
    flex-direction: column;
    gap: 0px;
    padding: 44px 0 60px 0;
  }
}
.product-popupItem__col {
  flex: 1 1 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: 5%;
}
.product-popupItem__col--btn {
  align-items: end;
  justify-content: center;
}
@media (hover: hover) and (pointer: fine) {
  .product-popupItem__col:hover .product-popupItem__btn {
    opacity: 0.5;
    transition: opacity 0.3s ease;
  }
}
@media (max-width: 767px) {
  .product-popupItem__col {
    flex: 0 0 100%;
    width: 80%;
    margin: auto;
    padding: 0;
  }
}
.product-popupItem__maintext {
  width: 100%;
  font-size: calc(34 / var(--base-vw) * 100vw);
  color: #070606;
  line-height: 1.7;
  margin-bottom: calc(32 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .product-popupItem__maintext {
    font-size: 1.0625rem;
    margin-bottom: 10px;
    line-height: 1.8;
  }
}
.product-popupItem__maintext small {
  font-size: calc(20 / var(--base-vw) * 100vw);
  color: #30606C;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: calc(35 / var(--base-vw) * 100vw);
  display: block;
  letter-spacing: -0.1px;
}
@media (max-width: 767px) {
  .product-popupItem__maintext small {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
.product-popupItem__maintext small b {
  width: 20px;
  display: inline-block;
}
.product-popupItem__subtext {
  width: 80%;
  font-size: calc(18 / var(--base-vw) * 100vw);
  color: #070606;
  font-weight: 400;
  line-height: 2;
}
@media (max-width: 767px) {
  .product-popupItem__subtext {
    width: 100%;
    font-size: 0.8125rem;
    margin-bottom: 10px;
    line-height: 2;
    padding-right: 3%;
  }
}
.product-popupItem__btn {
  position: relative;
  width: 160px;
  height: 160px;
  background: transparent;
  border: 2px solid #070606;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #070606;
  font-size: calc(16 / var(--base-vw) * 100vw);
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  left: 0;
}
@media (max-width: 767px) {
  .product-popupItem__btn {
    width: 80px;
    height: 80px;
    right: 0;
    left: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .product-popupItem__btn:hover {
    opacity: 0.5;
  }
}
.product-popupItem__btn-plus {
  position: relative;
  width: 60px;
  height: 60px;
  display: block;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .product-popupItem__btn-plus {
    width: 30px;
    height: 30px;
    margin-bottom: 6px;
  }
}
.product-popupItem__btn-plus::before, .product-popupItem__btn-plus::after {
  content: "";
  position: absolute;
  background: #070606;
  border-radius: 2px;
}
.product-popupItem__btn-plus::before {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
  transition: height 1s ease;
  background: #070606;
  content: "";
}
.product-popupItem__btn-plus::after {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
  transition: width 1s ease;
  background: #070606;
  content: "";
}
.product-popupItem__btn-label {
  font-size: calc(12 / var(--base-vw) * 100vw);
  color: #070606;
  letter-spacing: 0.09375rem;
  font-weight: 400;
  text-align: center;
  display: block;
}
@media (max-width: 767px) {
  .product-popupItem__btn-label {
    font-size: 0.4375rem;
    letter-spacing: 0;
  }
}
.product-popupItem__btn.animate-plus::before {
  height: 100%;
}
.product-popupItem__btn.animate-plus::after {
  width: 100%;
}

.next-collaboration {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  overflow: hidden;
  padding: 150px 0 40px 0;
  clip-path: inset(0 0 0 0);
}
@media (max-width: 767px) {
  .next-collaboration {
    padding: 75px 0 40px 0;
  }
}
.next-collaboration__bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
}
.next-collaboration__bg img {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  filter: grayscale(0.2) brightness(1.1);
}
.next-collaboration__inner {
  position: relative;
  z-index: 2;
  width: 90%;
  margin: 0 auto;
}
.next-collaboration__title {
  font-size: calc(54 / var(--base-vw) * 100vw);
  font-weight: 400;
  color: #000000;
  margin-bottom: 20px;
  letter-spacing: -0.1px;
}
@media (max-width: 767px) {
  .next-collaboration__title {
    font-size: 1.375rem;
    margin-bottom: 10px;
  }
}
.next-collaboration__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.next-collaboration__item {
  display: flex;
  overflow: hidden;
  min-height: 160px;
  position: relative;
  /*

  // マスクのスタイル
  &-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }

  // マスクを適用
  mask: url(#imageMask-collab-1);
  -webkit-mask: url(#imageMask-collab-1);
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  mask-position: center center;
  -webkit-mask-position: center center;

  // 2つ目、3つ目のitem用
  &:nth-child(2) {
    mask: url(#imageMask-collab-2);
    -webkit-mask: url(#imageMask-collab-2);
  }

  &:nth-child(3) {
    mask: url(#imageMask-collab-3);
    -webkit-mask: url(#imageMask-collab-3);
  }

  // 明示的なサイズ設定（マスク用）
  width: 100%;
  height: auto;
  min-height: 160px;

  */
}
@media (max-width: 767px) {
  .next-collaboration__item-artistimg-sns {
    width: 22px;
    height: 22px;
    display: inline-block !important;
    position: relative;
    top: -8px;
    margin-left: 13px;
  }
}
@media (max-width: 767px) {
  .next-collaboration__item {
    flex-direction: column;
  }
}
.next-collaboration__item::before {
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(36, 36, 36, 0.58);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.next-collaboration__item-col--left {
  flex: 0 0 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 12px;
  font-size: calc(20 / var(--base-vw) * 100vw);
  color: #ffffff;
  border-right: 6px solid #070606;
}
@media (max-width: 767px) {
  .next-collaboration__item-col--left {
    flex: 0 0 100%;
    width: 100%;
    border-right: none;
    border-bottom: 3px solid #070606;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
  }
}
.next-collaboration__item-col--left.border-blue {
  border-right-color: #75A854;
}
@media (max-width: 767px) {
  .next-collaboration__item-col--left.border-blue {
    border-bottom-color: #75A854;
  }
}
.next-collaboration__item-col--left.border-green {
  border-right-color: #d29bcc;
}
@media (max-width: 767px) {
  .next-collaboration__item-col--left.border-green {
    border-bottom-color: #d29bcc;
  }
}
.next-collaboration__item-col--left.border-gray {
  border-right-color: #a97cd8;
}
@media (max-width: 767px) {
  .next-collaboration__item-col--left.border-gray {
    border-bottom-color: #a97cd8;
  }
}
.next-collaboration__item-order {
  font-size: calc(39 / var(--base-vw) * 100vw);
  line-height: 1.2;
  margin-top: 5px;
}
@media (max-width: 767px) {
  .next-collaboration__item-order {
    font-size: 2.4375rem;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.next-collaboration__item-date {
  font-size: calc(14 / var(--base-vw) * 100vw);
  color: #ffffff;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .next-collaboration__item-date {
    font-size: 0.875rem;
    margin-bottom: 0;
    position: relative;
    top: 8px;
  }
}
.next-collaboration__item-col--main {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 120px;
  background: transparent;
}
@media (max-width: 767px) {
  .next-collaboration__item-col--main {
    padding: 30px 24px;
  }
}
.next-collaboration__item-artist {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 0;
  padding: 32px 0 25px 0;
  position: relative;
}
@media (max-width: 767px) {
  .next-collaboration__item-artist {
    flex-direction: column;
    padding: 0px;
  }
}
.next-collaboration__item-artist .next-collaboration__item-artistimg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .next-collaboration__item-artist .next-collaboration__item-artistimg {
    position: absolute;
    left: 0;
    top: 0;
  }
}
.next-collaboration__item-artist .next-collaboration__item-artistimg .next-collaboration__item-artistimg-inner {
  width: 125px;
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  margin-top: -20px;
  position: relative;
}
@media (max-width: 767px) {
  .next-collaboration__item-artist .next-collaboration__item-artistimg .next-collaboration__item-artistimg-inner {
    width: 90px;
    height: 90px;
    margin-top: 0;
  }
}
.next-collaboration__item-artist .next-collaboration__item-artistimg .next-collaboration__item-artistimg-inner img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.next-collaboration__item-artist .next-collaboration__item-artistimg .next-collaboration__item-artistimg-sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  transition: all 0.3s ease;
}
.next-collaboration__item-artist .next-collaboration__item-artistimg .next-collaboration__item-artistimg-sns img {
  width: 32px;
  height: 32px;
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .next-collaboration__item-artist .next-collaboration__item-artistimg .next-collaboration__item-artistimg-sns:hover {
    opacity: 0.5;
  }
}
.next-collaboration__item-artist .next-collaboration__item-artisttext {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  width: 100%;
}
.next-collaboration__item-artist .next-collaboration__item-artisttext .next-collaboration__item-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
}
.next-collaboration__item-artist .next-collaboration__item-artisttext .next-collaboration__item-row .next-collaboration__item-artistinfo {
  white-space: nowrap;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.next-collaboration__item-artist .next-collaboration__item-artisttext .next-collaboration__item-row .next-collaboration__item-artistinfo .next-collaboration__item-label {
  font-size: calc(18 / var(--base-vw) * 100vw);
  color: #222;
  font-weight: 400;
}
.next-collaboration__item-artist .next-collaboration__item-artisttext .next-collaboration__item-row .next-collaboration__item-artistinfo .next-collaboration__item-name {
  font-size: calc(32 / var(--base-vw) * 100vw);
  font-weight: 700;
  color: #222;
}
.next-collaboration__item-artist .next-collaboration__item-artisttext .next-collaboration__item-row .next-collaboration__item-desc {
  font-size: calc(16 / var(--base-vw) * 100vw);
  color: #222;
  line-height: 1.7;
  font-weight: 400;
  max-width: 480px;
  flex: 1 1 0;
  min-width: 200px;
}
.next-collaboration__item-artist .next-collaboration__item-artisttext .next-collaboration__item-flavor {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .next-collaboration__item-artist .next-collaboration__item-artisttext .next-collaboration__item-flavor {
    flex-direction: column;
    gap: 0px;
  }
}
.next-collaboration__item-artist .next-collaboration__item-artisttext .next-collaboration__item-flavor .next-collaboration__item-label {
  font-size: calc(18 / var(--base-vw) * 100vw);
  color: #ffffff;
  opacity: 0.6;
  width: 25%;
  display: block;
}
@media (max-width: 767px) {
  .next-collaboration__item-artist .next-collaboration__item-artisttext .next-collaboration__item-flavor .next-collaboration__item-label {
    width: 100%;
    font-size: 0.6875rem;
  }
}
.next-collaboration__item-artist .next-collaboration__item-artisttext .next-collaboration__item-flavor .next-collaboration__item-flavorname {
  font-size: calc(28 / var(--base-vw) * 100vw);
  color: #ffffff;
  width: 70%;
  display: block;
}
@media (max-width: 767px) {
  .next-collaboration__item-artist .next-collaboration__item-artisttext .next-collaboration__item-flavor .next-collaboration__item-flavorname {
    width: 100%;
    font-size: 1.0625rem;
    margin-top: 3px;
  }
}
.next-collaboration__item-flavor {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.next-collaboration__item-flavor .next-collaboration__item-label {
  font-size: calc(14 / var(--base-vw) * 100vw);
  color: #ffffff;
}
.next-collaboration__item-flavor .next-collaboration__item-flavorname {
  font-size: calc(18 / var(--base-vw) * 100vw);
  color: #ffffff;
}
.next-collaboration__item-desc {
  width: 70%;
  font-size: calc(18 / var(--base-vw) * 100vw);
  color: #ffffff;
  line-height: 2;
  letter-spacing: 0.09375rem;
}
@media (max-width: 767px) {
  .next-collaboration__item-desc {
    width: 100%;
    font-size: 0.8125rem;
    line-height: 2.1;
  }
}
.next-collaboration__item-artistinfo {
  width: 25%;
  color: #ffffff;
}
@media (max-width: 767px) {
  .next-collaboration__item-artistinfo {
    width: 100%;
    padding-left: 110px;
  }
}
.next-collaboration__item-label {
  font-size: calc(20 / var(--base-vw) * 100vw);
  opacity: 0.6;
}
@media (max-width: 767px) {
  .next-collaboration__item-label {
    font-size: 0.6875rem;
  }
}
.next-collaboration__item-name {
  font-size: calc(39 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .next-collaboration__item-name {
    font-size: 1.9375rem;
  }
}

.why-start-project {
  width: 100%;
  padding: 170px 0 80px 0;
  background: none;
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .why-start-project {
    padding: 90px 0 50px 0;
  }
}
.why-start-project__inner {
  width: 70%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .why-start-project__inner {
    width: 85%;
  }
}
.why-start-project__title {
  font-size: calc(22 / var(--base-vw) * 100vw);
  font-weight: 400;
  margin-bottom: 36px;
  letter-spacing: -0.05em;
}
@media (max-width: 767px) {
  .why-start-project__title {
    font-size: 1.125rem;
  }
}
.why-start-project__title b {
  width: 20px;
  display: inline-block;
}
.why-start-project__lead {
  width: 80%;
  font-size: calc(22 / var(--base-vw) * 100vw);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .why-start-project__lead {
    width: 100%;
    font-size: 0.875rem;
    margin-bottom: 50px;
    letter-spacing: 0;
    padding-right: 5%;
  }
}
.why-start-project__text {
  font-size: 1rem;
  line-height: 2.1;
  color: #333;
  margin-bottom: 56px;
  letter-spacing: 0.04em;
}
.why-start-project__text-inner {
  width: 70%;
  margin-left: auto;
}
@media (max-width: 767px) {
  .why-start-project__text-inner {
    width: 100%;
    margin: 0;
  }
}
.why-start-project__text-inner h3 {
  font-size: calc(44 / var(--base-vw) * 100vw);
  font-weight: 400;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .why-start-project__text-inner h3 {
    font-size: 1.4375rem;
  }
}
.why-start-project__text-inner p {
  font-size: calc(29 / var(--base-vw) * 100vw);
  line-height: 2.1;
  color: #333;
  margin-bottom: 56px;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .why-start-project__text-inner p {
    font-size: 1.1875rem;
    margin-bottom: 0px;
  }
}
.why-start-project__bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 40px;
  position: relative;
}
@media (max-width: 767px) {
  .why-start-project__bottom {
    flex-direction: column;
    align-items: center;
    margin-top: 0px;
    gap: 20px;
  }
}
.why-start-project__bottom-col {
  flex: 1 1 0;
  min-width: 0;
  text-align: left;
}
.why-start-project__bottom-col::before {
  width: 35px;
  height: 35px;
  content: "";
  background: url(../images/batsu.svg) no-repeat center center;
  font-size: calc(55 / var(--base-vw) * 100vw);
  font-weight: 100;
  color: #000000;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
}
@media (max-width: 767px) {
  .why-start-project__bottom-col::before {
    bottom: 0px;
  }
}
.why-start-project__bottom-col--left {
  width: 50%;
  padding: 0 5% 0 0;
}
@media (max-width: 767px) {
  .why-start-project__bottom-col--left {
    width: 100%;
    padding: 45px 0;
  }
}
.why-start-project__bottom-col--right {
  width: 50%;
  padding: 10px 0 0 5%;
}
@media (max-width: 767px) {
  .why-start-project__bottom-col--right {
    width: 100%;
    padding: 50px 0;
  }
}
.why-start-project__artsticker-logo {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 5px;
  position: relative;
}
.why-start-project__artsticker-logo img {
  width: 150px;
  position: relative;
  left: -10px;
}
@media (max-width: 767px) {
  .why-start-project__artsticker-logo img {
    width: 200px;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
  }
}
.why-start-project__artsticker-text {
  font-size: calc(18 / var(--base-vw) * 100vw);
  line-height: 1.9;
  margin-bottom: 18px;
  color: #222;
  text-align: justify;
}
@media (max-width: 767px) {
  .why-start-project__artsticker-text {
    font-size: 0.875rem;
    margin-bottom: 10px;
  }
}
.why-start-project__app-badges {
  margin-top: 8px;
  position: relative;
  display: inline-block;
  transition: all 0.5s ease;
}
.why-start-project__app-badges img {
  vertical-align: middle;
}
@media (max-width: 767px) {
  .why-start-project__app-badges img {
    width: 130px;
    height: auto !important;
    display: block;
    margin: 20px auto 0 auto !important;
  }
}
@media (hover: hover) and (pointer: fine) {
  .why-start-project__app-badges:hover {
    opacity: 0.5;
  }
}
.why-start-project__pbs-title {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .why-start-project__pbs-title {
    margin-bottom: 20px;
  }
}
.why-start-project__pbs-title img {
  width: 100%;
  max-width: 350px;
  height: auto;
}
@media (max-width: 767px) {
  .why-start-project__pbs-title img {
    max-width: 240px;
    margin: auto;
  }
}
.why-start-project__pbs-text {
  font-size: calc(18 / var(--base-vw) * 100vw);
  line-height: 1.9;
  color: #222;
  text-align: justify;
}
@media (max-width: 767px) {
  .why-start-project__pbs-text {
    font-size: 0.875rem;
  }
}

.footer-line {
  width: 100%;
  height: 10px;
  position: relative;
  background: linear-gradient(90deg, #b3e6f7 0%, #1fa2ff 20%, #2871c8 40%, #a259c4 60%, #ff6a3d 80%, #ffd600 100%);
}

.other-contents {
  width: 100%;
  height: 487px;
  /* background: $gradation; */
  position: relative;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
}
@media (max-width: 767px) {
  .other-contents {
    height: 383px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .other-contents:hover .other-contents__bg::before {
    opacity: 1 !important;
  }
}
.other-contents__bg {
  will-change: auto;
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 130%;
  z-index: 1;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
}
.other-contents__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.other-contents__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.3s ease;
}
.other-contents__inner {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 999;
}
.other-contents__logo {
  width: 480px;
  height: 60px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 767px) {
  .other-contents__logo {
    width: 321px;
    height: 35px;
  }
}

footer {
  width: 100%;
  position: relative;
  z-index: 9997;
  background-size: 700px;
  background: #181818;
  margin-top: -1px;
}
footer .copy {
  font-size: 0.5rem;
  color: #ffffff;
  text-align: center;
  padding: 2vw 0;
}
@media (max-width: 768px) {
  footer .copy {
    padding-bottom: 40px;
  }
}
footer .in {
  display: flex;
  justify-content: space-between;
  gap: 0;
  position: relative;
}
@media (max-width: 768px) {
  footer .in {
    flex-wrap: wrap;
  }
}
footer .in::before {
  width: 1px;
  height: 40%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #ffffff;
  opacity: 0.5;
  margin: auto;
  content: "";
  z-index: 10;
}
@media (max-width: 768px) {
  footer .in::before {
    display: none;
  }
}
footer .in .link {
  width: 50%;
  position: relative;
  z-index: 1;
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 768px) {
  footer .in .link {
    width: 100%;
    padding: 60px 25px;
  }
  footer .in .link:first-child::before {
    display: none;
  }
}
footer .in .link::before {
  width: 0%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  content: "";
  background: #e5392c;
}
@media (max-width: 768px) {
  footer .in .link::before {
    width: 100px;
    height: 1px;
    margin: auto;
    background: #ffffff;
    right: 0;
    left: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  footer .in .link:hover::before {
    width: 100%;
  }
}
footer .in .link h2 {
  text-align: center;
  font-size: calc(63 / var(--base-vw) * 100vw);
  color: #ffffff;
  padding-top: 6vw;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  footer .in .link h2 {
    font-size: 2.75rem;
    padding-bottom: 10px;
  }
}
footer .in .link h3 {
  text-align: center;
  font-size: calc(15 / var(--base-vw) * 100vw);
  color: #ffffff;
  padding-bottom: 6vw;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  footer .in .link h3 {
    font-size: 0.9375rem;
  }
}
footer .sns--link {
  width: 87px;
  margin: auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-bottom: 2vw;
  padding-top: 2vw;
}
@media (max-width: 768px) {
  footer .sns--link {
    width: 80px;
    margin-bottom: 20px;
  }
}
footer .sns--link .icon {
  width: 26px;
  position: relative;
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
footer .sns--link .icon:hover {
  opacity: 0.4;
}

.ancor-link {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  background: #6a6a6a;
}
.ancor-link__inner {
  width: 100%;
  display: flex;
  border: 1px solid #070606;
  border-radius: 2px;
  overflow: hidden;
  background: none;
}
.ancor-link__item {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: calc(16 / var(--base-vw) * 100vw);
  padding: calc(12 / var(--base-vw) * 100vw) calc(24 / var(--base-vw) * 100vw);
  border-right: 1px solid #070606;
  background: none;
  min-height: calc(56 / var(--base-vw) * 100vw);
  text-decoration: none;
  transition: background 0.2s;
  font-size: calc(18 / var(--base-vw) * 100vw);
  position: relative;
}
.ancor-link__item:last-child {
  border-right: none;
}
.ancor-link__item.is-current {
  background: #52bad3;
  font-weight: 700;
}
.ancor-link__item.is-current .ancor-link__order,
.ancor-link__item.is-current .ancor-link__name {
  color: #222;
}
.ancor-link__item.is-current .ancor-link__icon img {
  filter: none;
}
@media (hover: hover) and (pointer: fine) {
  .ancor-link__item:hover .ancor-link__icon img.before {
    transform: rotate(0deg) translateY(100%) !important;
  }
  .ancor-link__item:hover .ancor-link__icon img.after {
    transform: rotate(0deg) translateY(0) !important;
  }
}
.ancor-link__order {
  font-size: calc(18 / var(--base-vw) * 100vw);
  font-weight: 700;
  color: #070606;
  margin-right: calc(8 / var(--base-vw) * 100vw);
  letter-spacing: 0.03125rem;
  white-space: nowrap;
}
.ancor-link__name {
  font-size: calc(18 / var(--base-vw) * 100vw);
  font-weight: 500;
  color: #070606;
  letter-spacing: 0.03125rem;
  white-space: nowrap;
}
.ancor-link__icon {
  margin-left: auto;
  display: flex;
  align-items: center;
  position: relative;
  width: calc(24 / var(--base-vw) * 100vw);
  height: calc(24 / var(--base-vw) * 100vw);
  overflow: hidden;
}
@media (max-width: 767px) {
  .ancor-link__icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.ancor-link__icon img {
  width: 100%;
  height: 100%;
  display: block;
  filter: invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}
.ancor-link__icon img.before {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(0deg) translateY(0) !important;
  transition: transform 0.3s ease;
}
.ancor-link__icon img.after {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(0deg) translateY(-100%) !important;
  transition: transform 0.3s ease;
}
.ancor-link__coming {
  margin-left: auto;
  font-size: calc(18 / var(--base-vw) * 100vw);
  color: #070606;
  font-weight: 400;
  letter-spacing: 0.03125rem;
  white-space: nowrap;
}
.ancor-link__item--disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.6;
}
.ancor-link__item--disabled .ancor-link__order,
.ancor-link__item--disabled .ancor-link__name,
.ancor-link__item--disabled .ancor-link__coming {
  color: #070606;
}
.ancor-link__icon img {
  transform: rotate(90deg);
}

.popup-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000000000000000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.popup-wrapper.is-active {
  opacity: 1;
  visibility: visible;
}
.popup-wrapper__inner {
  display: flex;
  width: 100%;
  height: 100vh;
  background: #6bb9cb;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  position: relative;
  padding: 0 130px;
  clip-path: inset(0 0 0 0);
}
@media (max-width: 767px) {
  .popup-wrapper__inner {
    display: block;
    overflow: auto;
    padding: 0;
  }
}
.popup-wrapper__inner-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url(../images/popup-wrapper-bg.webp) no-repeat center center;
  background-size: cover;
  z-index: -1;
}
@media (max-width: 767px) {
  .popup-wrapper__inner-bg {
    background: url(../images/popup-wrapper-bg-sp.webp) no-repeat center center;
    background-size: cover;
  }
}
.popup-wrapper ::-webkit-scrollbar {
  display: none;
}
.popup-wrapper__col {
  height: 100%;
  display: block;
  padding-top: 200px;
}
@media (max-width: 767px) {
  .popup-wrapper__col {
    height: auto;
  }
}
.popup-wrapper__col--left {
  width: 38%;
  background: none;
  align-items: center;
  text-align: center;
  padding: 150px 20px 40px 20px;
  position: relative;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .popup-wrapper__col--left {
    width: 90%;
    padding: 0;
    margin: auto;
    text-align: left;
  }
}
.popup-wrapper__col--right {
  flex: 1 1 0;
  background: none;
  overflow-y: auto;
  padding: 150px 32px 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 767px) {
  .popup-wrapper__col--right {
    width: 100%;
    padding: 0;
    overflow: visible;
  }
}
.popup-wrapper__special {
  font-size: calc(18 / var(--base-vw) * 100vw);
  color: #222;
  margin-bottom: 32px;
  letter-spacing: -0.1px;
}
@media (max-width: 767px) {
  .popup-wrapper__special {
    font-size: 1rem;
  }
}
.popup-wrapper__special b {
  display: inline-block;
  width: 20px;
}
.popup-wrapper__lead {
  font-size: calc(28 / var(--base-vw) * 100vw);
  color: #222;
  margin-bottom: 48px;
  line-height: 2;
}
@media (max-width: 767px) {
  .popup-wrapper__lead {
    font-size: 1rem;
    margin-bottom: 0px;
  }
}
.popup-wrapper__close {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-top: 24px;
  width: 56px;
  height: 56px;
  background: #222;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 1.125rem;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.popup-wrapper__close:hover {
  background: #444;
}
.popup-wrapper__close-label {
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.1em;
}
.popup-wrapper__close::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("../../../../assets/images/batsu.svg") center/contain no-repeat;
  margin: 0 auto 4px auto;
}
.popup-wrapper__qa-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.popup-wrapper__qa-block {
  margin-bottom: 48px;
}
.popup-wrapper__qa-q {
  background: #1566a0;
  color: #fff;
  border-radius: 8px;
  padding: 32px 32px 20px 32px;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid #222;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.popup-wrapper__qa-q + p, .popup-wrapper__qa-q + div {
  margin-top: 18px;
}
.popup-wrapper__qa-a {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-top: 24px;
}
.popup-wrapper__profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 90px;
  margin-right: 0;
}
.popup-wrapper__profile-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.popup-wrapper__profile-name {
  font-size: 1.1875rem;
  color: #222;
  margin-top: 2px;
  font-weight: 500;
}
.popup-wrapper__qa-text {
  position: relative;
  background: #d2f0fa;
  border-radius: 12px;
  padding: 28px 32px;
  color: #222;
  font-size: 1.125rem;
  line-height: 2;
  min-width: 320px;
  max-width: 600px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: left;
  margin-left: 0;
}
.popup-wrapper__qa-text::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 32px;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-right: 24px solid #d2f0fa;
}
@media (max-width: 900px) {
  .popup-wrapper__qa-q {
    font-size: 1.3125rem;
    padding: 20px 12px 12px 12px;
  }
  .popup-wrapper__profile-img {
    width: 48px;
    height: 48px;
  }
  .popup-wrapper__qa-text {
    font-size: 1rem;
    padding: 16px 12px;
    min-width: 0;
    max-width: 100%;
  }
  .popup-wrapper__qa-text::before {
    left: -14px;
    top: 18px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 14px solid #d2f0fa;
  }
}
@media (max-width: 600px) {
  .popup-wrapper__inner {
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    position: relative;
  }
  .popup-wrapper__col--left, .popup-wrapper__col--right {
    padding: 16px 4px;
  }
  .popup-wrapper__col--left {
    padding-top: 80px;
  }
  .popup-wrapper__col--right {
    max-height: 60vh;
  }
}
@media (max-width: 600px) and (max-width: 767px) {
  .popup-wrapper__col--right {
    max-height: auto;
  }
}
@media (max-width: 600px) {
  .popup-wrapper__close {
    width: 44px;
    height: 44px;
    font-size: 0.875rem;
  }
  .popup-wrapper__close::before {
    width: 18px;
    height: 18px;
  }
}

.popup-wrapper__inner > .modal-close-area {
  position: fixed;
  right: 18px;
  top: 0px;
  display: none !important;
  z-index: 99999999999;
}
@media (max-width: 767px) {
  .popup-wrapper__inner > .modal-close-area {
    display: block !important;
  }
}

.interview-block {
  margin-bottom: 48px;
  text-align: center;
}
@media (max-width: 767px) {
  .interview-block {
    margin-bottom: 0px;
  }
}

.interview-q {
  background: #0158a3;
  color: #fff;
  padding: 50px;
  border: 1px solid #000000;
  margin-left: auto;
  width: calc(80% - 52.5px);
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .interview-q {
    width: 70%;
    margin-right: 5%;
    margin-left: auto;
  }
}
.interview-q .interview-q-label {
  font-size: calc(34 / var(--base-vw) * 100vw);
  font-weight: 600;
  margin-bottom: 18px;
  text-align: left;
}
@media (max-width: 767px) {
  .interview-q .interview-q-label {
    font-size: 1rem;
  }
}
.interview-q .interview-q-text {
  font-size: calc(17 / var(--base-vw) * 100vw);
  line-height: 2;
  text-align: left;
}
@media (max-width: 767px) {
  .interview-q .interview-q-text {
    font-size: 0.8125rem;
  }
}

.interview-a-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 70px;
  margin-bottom: 32px;
}

.interview-profile {
  width: 20%;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -3vw;
}
@media (max-width: 767px) {
  .interview-profile {
    right: 0;
    height: 60px;
  }
}
.interview-profile img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .interview-profile img {
    width: 35px;
    height: 35px;
  }
}
.interview-profile .interview-profile-name {
  font-size: 1.1875rem;
  color: #222;
  margin-top: 2px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .interview-profile .interview-profile-name {
    font-size: 0.625rem;
  }
}

.interview-a {
  width: 80%;
  position: relative;
  background: #d2f0fa;
  padding: 50px;
  color: #222;
  font-size: calc(17 / var(--base-vw) * 100vw);
  line-height: 2;
  text-align: left;
}
@media (max-width: 767px) {
  .interview-a {
    font-size: 0.8125rem;
  }
}

.interview-a::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-right: 34px solid #d2f0fa;
}

@media (max-width: 767px) {
  .interview-q {
    padding: 35px;
  }
  .interview-a-row {
    align-items: center;
    gap: 12px;
    width: 90%;
    margin-left: auto;
    margin-right: 5%;
  }
  .interview-a {
    min-width: 0;
    max-width: 100%;
    padding: 35px;
  }
  .interview-a::before {
    left: -15px;
    top: -18px;
    border-right: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 20px solid #d2f0fa;
  }
}
.modal-close-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .modal-close-area {
    display: none;
  }
}

.modal-close-btn {
  width: 80px;
  height: 80px;
  background: #222;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .modal-close-btn {
    width: 42px;
    height: 42px;
    border-radius: 5px;
  }
}
.modal-close-btn:hover {
  background: #444;
}
.modal-close-btn svg {
  display: block;
}
@media (max-width: 767px) {
  .modal-close-btn svg {
    width: 20px;
    height: 20px;
  }
}

.modal-close-label {
  margin-top: 4px;
  font-size: calc(18 / var(--base-vw) * 100vw);
  color: #070606;
  font-family: inherit;
  text-align: center;
}
@media (max-width: 767px) {
  .modal-close-label {
    font-size: 0.625rem;
  }
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.loading-screen__progress {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.loading-screen__progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 0%;
  margin: auto;
  background: #6BB9CB;
  transition: width 0.3s ease;
}

.mask-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 50px;
  z-index: 1;
  pointer-events: none;
}

.next-collaboration__item {
  position: relative;
  overflow: hidden;
}

/* ----------------------------------
    基本スタイル
------------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
}

body, html {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-weight: 200;
  line-height: 1.7;
  scroll-behavior: auto;
}

.big-bk {
  width: 100%;
  height: 100%;
  background: url(../images/bk.webp) no-repeat;
  background-size: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

[pc-only] {
  display: block !important;
}

[sp-only] {
  display: none !important;
}

@media (max-width: 767px) {
  [pc-only] {
    display: none !important;
  }
  [sp-only] {
    display: block !important;
  }
}
/* ----------------------------------
    ローディング時のちらつき防止
------------------------------------ */
/* ローディング中のスクロール無効化 */
body {
  overflow: auto;
}
body.loading {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
  height: 100% !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
}

html.loading {
  overflow: hidden !important;
}

/* プログレスバーの初期状態 */
.loading-screen__progress-bar {
  width: 0%;
  height: 10px;
}

/* メイン背景の初期状態 */
.main-wrapper__inner-bg-parallax {
  height: 0%;
}

/* メインビジュアルの初期状態 */
.main-wrapper__inner-kv {
  opacity: 0;
  transform: translateY(20px);
}

/* アンカーボタンの初期状態 */
.main-wrapper__ancorBtn {
  opacity: 0;
  transform: translateY(30px);
}

/* メニューの初期状態 */
.menu {
  opacity: 0;
  transform: translateY(-30px);
}

/* 固定メニューの初期状態 */
.fix-menu {
  opacity: 0;
  transform: translateX(30px);
}

/* JavaScript読み込み後にアニメーション可能にする */
body.loaded .loading-screen__progress-bar {
  width: auto;
  height: auto;
}
body.loaded .main-wrapper__inner-bg-parallax {
  height: 0%;
}
body.loaded .main-wrapper__inner-kv,
body.loaded .main-wrapper__ancorBtn,
body.loaded .menu,
body.loaded .fix-menu {
  opacity: auto;
  transform: none;
}
/*# sourceMappingURL=app.css.map */
