@charset "utf-8";
/* ==================================
 共通設定
================================== */
/* フェード共通 */
.fadeup-target {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s, transform 1s;
}
.fade-in-02 {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: opacity 1s, transform 1s;
}
.collab_v2 {
    letter-spacing: 0.04em;
    color: #231816;
    padding-bottom: calc(200/1920*100vw);
}
.fade-group {
  position: relative;
  width: 100%;
  height: auto;
}

.fade-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1s;
  z-index: 1;
  pointer-events: none;
}

.fade-img.is-active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.section-title {
  text-align: center;
  font-size: calc(28/1920*100vw);
  letter-spacing: 0.08em;
  margin-top: calc(200/1920*100vw);
}

@media screen and (max-width:768px) {
.section-title {
  font-size: calc(28/750*100vw);
  margin-top: calc(140/750*100vw);
}
.collab_v2 {
    letter-spacing: 0.04em;
    color: #231816;
    padding-bottom: calc(140/750*100vw);
}
}

/* メインビジュアル
-------------------------------------*/
.collab_v2 .hero {
  position: relative;
}

.collab_v2 .hero-img img {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ヒーローテキストふわっと */
.collab_v2 .hero-text {
  position: absolute;
  top: 54%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%) translateY(40px); /* 中央配置＋アニメ */
  opacity: 0;
  text-align: center;
  z-index: 2;
  transition: opacity 1s, transform 1s;
  color: #fff; /* 必要に応じて調整 */
}
.collab_v2 .hero-text.fade-up {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0); /* アニメ後は中央 */
}
.hero-text h1 {
  font-size: calc(70 / 1920 * 100vw);
  letter-spacing: 0.12em;
  margin: calc(10 / 1920 * 100vw) 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-text h1 span {
  font-size: calc(40 / 1920 * 100vw);
}
.hero-text p {
  font-size: calc(16 / 1920 * 100vw);
  margin: calc(10 / 1920 * 100vw) 0;
  letter-spacing: 0.12em;
}
@media screen and (max-width:768px) {
  .hero-text h1 {
    font-size: calc(70 / 750 * 100vw);
    margin: calc(10 / 750 * 100vw) 0;
  }
.hero-text h1 span {
  font-size: calc(40 / 750 * 100vw);
}
  .hero-text p {
    font-size: calc(16 / 750 * 100vw);
    margin: calc(10 / 750 * 100vw) 0;
  }
}

/* 期間限定エリア アコーディオン
-------------------------------------*/

/* アコーディオン */
.limited-section .accordion {
    margin: 100px auto 0;
    max-width: 670px;
}

.limited-section .accordion-box {
  background: #fff;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  overflow: hidden; /* 角丸を下に伝播させる */
  margin-bottom: 20px;
}

.limited-section .accordion-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  background: #fff;
  color: #202020;
  border: none;
  padding: 20px 32px;
  font-size: 1rem;
  padding: 16px 20px;
  cursor: pointer;
  transition: background .2s;
  font-size: 2.4rem;
  color: #de3131;
}

.limited-section .icon {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: inline-block;
}
.limited-section .line1, .limited-section .line2 {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 1px;
  background: #202020;
  border-radius: 1px;
  transition: transform 0.25s cubic-bezier(.4,2,.6,1.5);
}
.limited-section .line1 {
  transform: translate(-50%, -50%) rotate(0deg);
}
.limited-section .line2 {
  transform: translate(-50%, -50%) rotate(90deg);
}
.limited-section .icon.open .line1 {
  transform: translate(-50%, -50%) rotate(0deg);
}
.limited-section .icon.open .line2 {
  transform: translate(-50%, -50%) rotate(0deg);
}

.limited-section .accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s cubic-bezier(.4,2,.6,1.5);
  background: #fff;
  padding: 0 20px;
}

[aria-expanded="true"] + .accordion-panel,
.accordion-panel[style*="max-height"] {
  padding: 0;
}

.limited-section .limited__contents {
  overflow: hidden;
  text-align: center;
  display: block;
  opacity: 1;
  border: none;
}
@media (max-width: 768px) {
  .limited-section .accordion {
    margin: calc(90 / 750 * 100vw) auto 0;
    max-width: calc(670 / 750 * 100vw);
    }

    .limited-section .accordion-btn {
    font-size: calc(24 / 750 * 100vw);
    }
}


/* lead
-------------------------------------*/
.nanami .limited__contents {
  margin-top: -6px;
}
.intro {
    margin: calc(200/1920*100vw) 0;
}
.intro h2 {
    font-size: calc(28/1920*100vw);
    font-weight: 400;
    text-align: center;
}
.intro p {
    font-size: calc(20/1920*100vw);
    text-align: center;
}
@media screen and (max-width:768px) {
.intro {
    margin: calc(120/750*100vw) 0;
}
.intro h2 {
    font-size: calc(28/750*100vw);
}
.intro p {
    font-size: calc(20/750*100vw);
}
}

/* スナップギャラリー
-------------------------------------*/
.snap-gallery {
    margin: calc(200/1920*100vw) 0;
}
.collab_v2 .img_01, .collab_v2 .img_08 {
  margin-top: calc(200/1920*100vw);
  margin-right: calc(860/1920*100vw);
  margin-left:  calc(160/1920*100vw);
}
.collab_v2 .img_02, .collab_v2 .img_09 {
  margin-top: calc(200/1920*100vw);
  margin-right: calc(160/1920*100vw);
  margin-left:  calc(1090/1920*100vw);
}
.collab_v2 .img_03, .collab_v2 .img_10 {
    margin-top: calc(200/1920*100vw);
    position: relative;
}
.collab_v2 .img_03 p, .collab_v2 .img_10 p {
    font-size: calc(20/1920*100vw);
    color: #fff;
    position: absolute;
    left: calc(68/1920*100vw);
    bottom: calc(360/1920*100vw);
}
.collab_v2 .img_04, .collab_v2 .img_11 {
    margin-top: calc(200/1920*100vw);
    margin-right: calc(776/1920*100vw);
    margin-left:  calc(290/1920*100vw);
}
.collab_v2 .img_05,.collab_v2 .img_12 {
    margin-top: calc(200/1920*100vw);
    margin-right: 0;
    margin-left:  calc(1170/1920*100vw);
}
.collab_v2 .img_06, .collab_v2 .img_13 {
    margin-top: calc(200/1920*100vw);
    margin-right: calc(908/1920*100vw);
    margin-left:  calc(160/1920*100vw);
}
.collab_v2 .img_07 {
    margin-top: calc(200/1920*100vw);
    margin-right: calc(200/1920*100vw);
    margin-left:  calc(960/1920*100vw);
}
@media screen and (max-width:768px) {
.snap-gallery {
    margin: calc(200/750*100vw) 0;
}
.collab_v2 .img_01, .collab_v2 .img_08 {
    margin-right: calc(80/750*100vw);
    margin-left: 0;
}
.collab_v2 .img_02, .collab_v2 .img_09 {
  margin-top: calc(140/750*100vw);
  margin-right: 0;
  margin-left: calc(120/750*100vw);
}
.collab_v2 .img_03, .collab_v2 .img_10 {
    margin-top: calc(140/750*100vw);
}
.collab_v2 .img_03 p, .collab_v2 .img_10 p {
    font-size: calc(26/750*100vw);
    left: calc(32/750*100vw);
    bottom: calc(890/750*100vw);
}
.collab_v2 .img_04, .collab_v2 .img_11 {
    margin-top: calc(140/750*100vw);
    margin-right: 0;
    margin-left:  calc(190/750*100vw);
}
.collab_v2 .img_05,.collab_v2 .img_12 {
    margin-top: calc(140/750*100vw);
    margin-right: 0;
    margin-left: 0;
}
.collab_v2 .img_06, .collab_v2 .img_13 {
    margin-top: calc(140/750*100vw);
    margin-right: calc(80/750*100vw);
    margin-left:  0;
}
.collab_v2 .img_07 {
    margin-top: calc(140/750*100vw);
    margin-right: 0;
    margin-left:  0;
}
}
/* hideka03 only */

.collab_v2.hideka03 .img_03, .collab_v2.hideka03 .img_10 {
  background-color: #bcbeba;
}

@media screen and (max-width:768px) {
.collab_v2.hideka03 .img_07 {
  margin-left: calc(320/750*100vw);
}
.collab_v2.hideka03 .img_08 {
  margin-top: calc(140/750*100vw);
}
.collab_v2.hideka03 .img_12{
margin-right: calc(290/750*100vw);
}
.collab_v2.hideka03 .img_13 {
  margin-right: calc(60/750*100vw);
  margin-left: calc(60/750*100vw);
}
}

/* detail
-------------------------------------*/
.detail-slider .slide-item {
  padding: 0 10px;
  box-sizing: border-box;
  text-align: center;
}
.detail-slider img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.detail-desc {
  font-size: calc(22 / 1920 * 100vw);
  color: #fff;
  position: absolute;
  left: calc(40 / 1920 * 100vw);
  bottom: calc(40 / 1920 * 100vw);
  width: 90%;
}

.slick-arrow {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  padding: 0;
}

.slick-arrow span {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
}

.slick-prev {
  left: 10px;
}

.slick-prev span {
  transform: rotate(-135deg);
  margin-left: 10px;
}

.slick-next {
  right: 10px;
}

.slick-next span {
  transform: rotate(45deg);
  margin-right: 10px;
}

@media screen and (max-width:768px) {
  .collab_v2.hideka03 .detail-desc{
    font-size: calc(16 / 750 * 100vw);
    text-shadow: 0px 1px 12px rgba(81, 73, 67, 0.4);
  }
}


/* ==================================
 splide の矢印とページネーションのスタイル
================================== */
.collab_v2 .detail {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}
.collab_v2 .splide__slide img {
  height: auto;
  width: 100%;
	transition: transform 0.5s ease-in-out;
}

.collab_v2 .splide__slide img:hover {
	transform: scale(1.01);
}

.collab_v2 .splide__slide a:hover {
  opacity: 1;
}

.collab_v2 .splide__pagination {
	justify-content: center;
	bottom: 2em;
	right: 2em;
	padding: 0;
}

.collab_v2 .splide__pagination__page {
	background-color: #fff;
	opacity: 1;
	transition: width 0.4s ease, border-radius 0.4s ease;
	width: 8px;
	height: 8px;
	margin: 0 10px;
}

.collab_v2 .splide__pagination__page.is-active {
	width: 30px;
	border-radius: 50px;
	transform: none;
}

.collab_v2 .splide__pagination {
  position: static;
  margin-top: 40px;
}

.collab_v2 .splide__pagination__page {
  width: 5px;
  height: 5px;
}

.collab_v2 .splide__pagination__page.is-active {
  border: 1px solid #aaa;
}

.collab_v2 .splide__arrow {
  background: none; /* デフォルトの矢印の背景を消す */
  width: 30px;
  height: 30px;
}

.collab_v2 .splide__arrow svg {
  display: none; /* デフォルトの矢印を消す */
}

.collab_v2 .splide__arrow--prev {
  background-image: url("https://heilis.itembox.design/item//img/common/arrow_simple.svg"); /* 左矢印 */
  transform: rotate(180deg);
  background-size: contain;
  background-repeat: no-repeat;
  left: -45px;
}

.collab_v2 .splide__arrow--next {
  background-image: url("https://heilis.itembox.design/item//img/common/arrow_simple.svg"); /* 右矢印 */
  background-size: contain;
  background-repeat: no-repeat;
  right: -45px;
}
.collab_v2 .splide__slide img {
  height: auto;
  width: 100%;
	transition: transform 0.5s ease-in-out;
}

.collab_v2 .splide__slide img:hover {
	transform: scale(1.01);
}

.collab_v2 .splide__slide a:hover {
  opacity: 1;
}

@media screen and (max-width:768px){
	.collab_v2 .splide__pagination {
		bottom: 1.2em;
		right: 1.2em;
	}
	.collab_v2 .splide__pagination__page {
		width: 6px;
		height: 6px;
		margin: 0 5px;
	}
	.collab_v2 .splide__pagination__page.is-active {
		width: 20px;
	}
  .collab_v2 .splide__pagination {
    margin-top: 20px;
  }
  .collab_v2 .splide__arrow {
    width: 20px;
    height: 20px;
}
  .collab_v2 .splide__arrow--prev {
    left: 5px;
  }

  .collab_v2 .splide__arrow--next {
  right: 5px;
}
.detail-desc {
  font-size: calc(18 / 750 * 100vw);
  left: calc(20 / 750 * 100vw);
  bottom: calc(10 / 750 * 100vw);
}
}

/* プロフィール
-------------------------------------*/
.profile-img {
  width: calc(750/1920*100vw);
  margin: calc(40/1920*100vw) auto;
}
.profile-text {
  text-align: center;
}
.profile-text a {
  color: #231816;
  font-size: calc(22/1920*100vw);
  letter-spacing: 0.08em;
  transition: opacity 0.2s ease;
}
.profile-text p {
  font-size: calc(22/1920*100vw);
  letter-spacing: 0.08em;
}
.ig-icon {
  width: calc(35/1920*100vw);
  height: calc(35/1920*100vw);
  transition: opacity 0.2s ease;
  display: block;
  margin: calc(5 / 1920 * 100vw) auto;
}
.collab_v2 .original__container {
    padding-bottom: calc(120 / 1280 * 100vw);
    background-color: #F6F6F4;
    background-image: none;
}

@media screen and (max-width:768px) {
.profile-img {
  width: 100%;
  margin: calc(40/750*100vw) auto;
}
.profile-text a {
  font-size: calc(22/750*100vw);
}
.profile-text p {
  font-size: calc(22/750*100vw);
}
.ig-icon {
  width: calc(35/750*100vw);
  height: calc(35/750*100vw);
  margin: calc(5 / 750 * 100vw) auto;
}
}