@charset "UTF-8";
/* CSS Document */

/* adobe garamond　は htmlで対応 */

/* --------------------------------------------------------------------------------------------- */
/*
/* コラボ_LP
/*
/* --------------------------------------------------------------------------------------------- */

html {
  width: 100%;
  height: auto;
  font-family: aktiv-grotesk, fot-udkakugo-large-pr6n, sans-serif;
  font-size: 10px;
  /* font-feature-settings: "palt"; */
}

#collab .inner {
  width: 100%;
  margin: 0 auto;
}

/* ボタン */
.btn a {
  display: flex;
  justify-content: center;
  width: 100%;/* fit-content */
  /* max-width: 210px; */
  font-size: clamp(1.6rem, 1.551rem + 0.21vw, 1.8rem);/* 13px */
  line-height: 1.8;
  color: #202020;
  border-radius: 100vw;
  padding-top: 1em;
  padding-left: 3em;
  padding-right: 3em;
  padding-bottom: 1em;
  background: #FFF;
  /* border: #B1B1B1 solid 1px; */
}

/* 1600px以上 */
@media screen and (min-width: 1600px) {
  .btn a {
    /* font-size: 2rem; */
    padding: 0.5em 5em;
  }
}

/* ============================================================ */
/* HEADER / ヘッダー */
/* ============================================================ */
#collab header {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: background 0.3s ease;
}
#collab header::before {
  content: '';
  background: none;
}

#collab header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 24px;
  position: relative;
  background: transparent;
  z-index: 2;
}
#collab header .inner .logo {
  width: 68px;
  filter: unset;
  transition: filter .3s ease;
}
#collab header .inner .logo img {
  width: 100%;
}

#collab header .inner .hanbarger {
  width: 42px;
  height: 42px;
  position: relative;
  cursor: pointer;
}
#collab header .inner .hanbarger span {
  width: 30px;
  height: 1px;
  position: absolute;
  left: 50%;
  background: #fff;
  transform: translateX(-50%);
  transition: color 0.3s ease;
  transition: transform 0.3s ease;
}

#collab header .inner .hanbarger span:nth-of-type(1) {
  top: 33%;
}
#collab header .inner .hanbarger span:nth-of-type(2) {
  top: 66%;
}

#collab header.no-scrolled .inner {
  background: none;
}
#collab header.no-scrolled::before {
  content: none;
}
#collab header.no-scrolled .inner .logo {
  filter: none;
}
#collab header.no-scrolled .inner .hanbarger span {
  background: #FFF;
}

#collab header.open .inner .hanbarger span {
  background: #070707;
}
#collab header.open .inner .hanbarger span:nth-of-type(1) {
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
#collab header.open .inner .hanbarger span:nth-of-type(2) {
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

#collab header nav {
  width: 375px;
  height: 100vh;
  padding: 120px 0 0;
  position: absolute;
  top: 0;
  right: -375px;
  background: #FFF;
  z-index: 1;
  opacity: 0;
  transition: right .3s ease, opacity .3s ease;
}
#collab header.open nav {
  right: 0;
  opacity: 1;
}
#collab header nav .navInner {
  height: 100%;
  padding: 0 36px 64px;
  overflow: scroll;
}
#collab header nav .items.large {
  padding-top: 36px;
  border-top: #707070 solid 1px;
}
#collab header nav .items.large .item:not(:first-of-type) {
  margin-top: 6px;
}
#collab header nav .items.large .item a {
  display: block;
  padding: 6px 0; 
  font-size: 2.0rem;
}
#collab header nav .instaLink {
  margin-top: 36px;
  padding-top: 36px;
  font-size: 1.8rem;
  border-top: #707070 solid 1px;
}
#collab header nav .instaLink a {
  display: flex;
  align-items: center;
  gap: 0 0.7em;
}
#collab header nav .instaLink a img {
  width: 36px;
}
#collab header nav .items.small {
  display: flex;
  margin-top: 36px;
  padding-top: 36px;
  border-top: #707070 solid 1px;
}
#collab header nav .items.small .item {
  width: 50%;
}
#collab header nav .items.small .item a {
  display: flex;
  align-items: baseline;
}
#collab header nav .items.small .item a::before {
  content: '';
  width: 0.7em;
  height: 0.7em;
  margin-right: 1em;
  border-top: #202020 solid 1px;
  border-right: #202020 solid 1px;
  transform: rotate(45deg);
}
#collab header nav .forSalon {
  margin-top: 36px;
}
#collab header nav .forSalon a {
  display: block;
  padding: 1em;
  font-size: 1.6rem;
  border: #707070 solid 1px;
  text-align: center;
}


/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #collab header .inner {
    padding: 6px 18px;
  }
  #collab header .inner .logo {
    width: 46px;
  }
  #collab header.open .inner .logo {
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(62%) hue-rotate(142deg) brightness(105%) contrast(75%);
  }

  #collab header nav {
    width: 100vw;
    padding: 80px 0 0;
    right: -100vw;
  }
  #collab header nav .navInner {
    padding-bottom: 32px;
  }
  #collab header nav .items.large {
    padding-top: 36px;
  }
  #collab header nav .items.large .item:not(:first-of-type) {
    margin-top: 6px;
  }
  #collab header nav .items.large .item a {
    padding: 3px 0; 
    font-size: 1.8rem;
  }
  #collab header nav .instaLink {
    margin-top: 24px;
    padding-top: 24px;
    font-size: 1.6rem;
  }
  #collab header nav .items.small {
    margin-top: 24px;
    padding-top: 24px;
  }
  #collab header nav .forSalon a {
  font-size: 1.4rem;
}
}

/* ============================================================ */
/* メインビジュアル
/* ============================================================ */

/* レイアウト */
/* ------------------------------------------------------------ */
#collab #mainVisual .inner {
  display: grid;
  grid-template-columns: minmax(1rem, 1fr) minmax(750px, auto) minmax(1rem, 1fr);
  width: 100%;
  height: auto;
  background: linear-gradient(#640002, #880000);
  text-align: center;
}
/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #collab #mainVisual .inner {
    grid-template-columns: 100%;
    /* grid-template-rows: auto auto auto; */
  }  
}

/* 抜き画像 */
/* ------------------------------------------------------------ */
#collab #mainVisual .img_box {
  grid-column: 1 / 4;
  grid-row: 1 / 4;
  order: 3;
}
#collab #mainVisual .img_box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top center;
}
/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #collab #mainVisual .img_box {
    grid-column: 1 / 2;
    grid-row: 1 / 4;
  }
  #collab #mainVisual .img_box img {
  }
}

/* 背景画像 */
/* ------------------------------------------------------------ */
#collab #mainVisual .img_back_box {
  grid-column: 1 / 4;
  grid-row: 1 / 4;
  order: 1;
}
#collab #mainVisual .img_back_box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top center;
}
/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #collab #mainVisual .img_back_box {
    grid-column: 1 / 2;
    grid-row: 1 / 4;
  }
}

/* コラボロゴ */
/* ------------------------------------------------------------ */
#collab #mainVisual .collab_logo {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  order: 2;
  justify-self: center;
  align-self: center;
}
#collab #mainVisual .collab_logo .logo_box img {
  width: clamp(375px, 80vw, 750px);
}
/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #collab #mainVisual .collab_logo {
    grid-column: 1 / 2;
    /* align-self: flex-end; */
    padding-top: 2rem;
  }
  #collab #mainVisual .collab_logo .logo_box .ttl {
    line-height: 1.5;
  }
}

/* キャッチ・テキスト */
/* ------------------------------------------------------------ */
#collab #mainVisual .txt_group {
  grid-column: 2 / 3;
  grid-row: 2 / 4;
  order: 4;
  align-self: center;
  padding: 0 8rem 8rem;
  color: #fff;
}
#collab #mainVisual .txt_group .ttl_box .copy {
  font-size: clamp(4.5rem, 9vw, 9rem);
  font-style: italic;
}
#collab #mainVisual .txt_group .ttl_box .sub_copy_group {
  display: flex;
  justify-content: center;
}
#collab #mainVisual .txt_group .ttl_box .sub_copy_group .txt_collab {
  /* font-size: 3rem-4.5rem; */
  font-size: clamp(2.5rem, 2.015rem + 2.07vw, 4.2rem);
  align-self: anchor-center;
}
#collab #mainVisual .txt_group .ttl_box .sub_copy {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 2rem;
  font-size: 3rem;
  /* font-size: clamp(2rem, 1.15rem + 3.62vw, 5.5rem); */
}
#collab #mainVisual .txt_group .ttl_box .sub_copy .en_granv {
  font-size: 4.2rem;
}
#collab #mainVisual .txt_group .ttl_box .sub_copy img {
  vertical-align: middle;
}
#collab #mainVisual .txt_group .txt_box {
  padding-top: 4rem;
}
#collab #mainVisual .txt_group .txt_box .ttl {
  font-size: clamp(2.2rem, 2.006rem + 0.83vw, 3rem);
}
#collab #mainVisual .txt_group .txt_box .sub_ttl {
  font-size: clamp(1.8rem, 1.751rem + 0.21vw, 2rem);
}
#collab #mainVisual .txt_group .txt_box .text {
  padding-top: 4rem;
  font-size: 1.6rem;
}

/* 1600px以上 */
@media screen and (min-width: 1600px) {
  #collab #mainVisual .txt_group .txt_box .text {
    font-size: 1.8rem;
    line-height: 2;
  }
}
/* 1100px以下 */
@media screen and (max-width: 1100px) {
  #collab #mainVisual .txt_group .ttl_box .sub_copy_group {
    display: block;
    line-height: 1.2;
  }
}
/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #collab #mainVisual .txt_group {
    grid-column: 1 / 2;
    align-self: flex-end;
    padding: 0 2rem;
  }
  #collab #mainVisual .txt_group .ttl_box .copy {
    letter-spacing: 0.01px;
    line-height: 0.8;
  }
  #collab #mainVisual .txt_group .ttl_box .sub_copy_group {
    margin-top: 1.5rem;
    line-height: 1.2;
  }
  #collab #mainVisual .txt_group .ttl_box .sub_copy {
    flex-wrap: wrap;
    font-size: 1.3rem;
    padding-right: 0;
    letter-spacing: 0.01px;
    font-feature-settings: "palt";
  }
  #collab #mainVisual .txt_group .ttl_box .sub_copy > * {
    /* flex: 1 1 20%; */
    line-height: 1.5;
  }
  #collab #mainVisual .txt_group .ttl_box .sub_copy img {
    width: 100%;
    max-width: 20px;
  }
  #collab #mainVisual .txt_group .ttl_box .sub_copy .en_granv {
    font-size: 2.5rem;
  }
  #collab #mainVisual .txt_group .txt_box {
    padding-top: 1.5rem;    
  }
  #collab #mainVisual .txt_group .txt_box .ttl {
    line-height: 1.5;
  }
  #collab #mainVisual .txt_group .txt_box .sub_ttl {
    width: fit-content;
    margin: 0 auto;
    padding-top: 1rem;
    text-align: left;
    font-feature-settings: "palt";
  }
  #collab #mainVisual .txt_group .txt_box .text {
    padding-top: 2rem;
    font-size: 1.25rem;
    text-align: left;
  }
}
@media (min-width: 500px) and (max-width: 750px) {
  #collab #mainVisual .txt_group {
    grid-column: 1 / 2;
    align-self: center;
    padding: 0 4rem;
  }
}


/* ============================================================ */
/* profile
/* ============================================================ */

/* レイアウト */
/* ------------------------------------------------------------ */
#collab #profile {
  background: #880000;
}
#collab #profile .inner {
  width: 100%;
  max-width: calc(1024px + (24px * 2));
  margin: 0 auto;
  padding: 13rem 24px;
  color: #fff;
  border-top: 1px solid #C38080;
}
#collab #profile .inner .profile_boxes {
  display: grid;
  grid-template-columns: 46% 46%;
  gap: 4rem 8%;
}
#collab #profile .inner .profile_boxes .profile_box {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
}
/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #collab #profile .inner {
    padding-top: 6rem;
    padding-bottom: 0;
    border-top: none;
  }
  #collab #profile .inner .profile_boxes {
    display: block;
    padding-bottom: 3rem;
  }
  #collab #profile .inner .profile_boxes .profile_box {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    border-top: 1px solid #C38080;
  }
}

/* 写真 + テキスト */
/* ------------------------------------------------------------ */
#collab #profile .inner .profile_boxes .profile_box .imgtxt_box {
  clear: both;
  float: none;
}


/* 写真 */
/* ------------------------------------------------------------ */
#collab #profile .inner .profile_boxes .profile_box .img_box {
  float: left;
  margin: 0 2rem 1.5rem 0;
}
#collab #profile .inner .profile_boxes .profile_box .img_box img {
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: cover;
  object-position: center center;
}
/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #collab #profile .inner .profile_boxes .profile_box .img_box {
    float: none;
    text-align: center;
  }
}

/* テキスト */
/* ------------------------------------------------------------ */
#collab #profile .inner .profile_boxes .profile_box .txt_box {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
#collab #profile .inner .profile_boxes .profile_box .txt_box .name {
  margin-bottom: 2rem;
  font-size: 2.2rem;
  line-height: 1;
  font-feature-settings: "palt";
}
#collab #profile .inner .profile_boxes .profile_box .txt_box .name span {
  font-size: 3rem;
}
#collab #profile .inner .profile_boxes .profile_box .txt_box .text {
  font-size: 1.4rem;
}
/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #collab #profile .inner .profile_boxes .profile_box .txt_box {
    padding-top: 1.5rem;
  }
  #collab #profile .inner .profile_boxes .profile_box .txt_box .name {
    text-align: center;
  }
}

/* ギャラリー */
/* ------------------------------------------------------------ */
#collab #profile .inner .profile_boxes .profile_box .img_gallery_box {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
}
#collab #profile .inner .profile_boxes .profile_box .img_gallery_box img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}
/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #collab #profile .inner .profile_boxes .profile_box .img_gallery_box {
    padding-top: 3rem;
  }
}

/* ============================================================ */
/* イメージ（水平スライドショー） 
/* ============================================================ */
#collab #various_img_box {
}
#collab #various_img_box .img_box img {
  width: 100%;
}
#various_img_box .swiper-wrapper {
  transition-timing-function: linear;
}
#various_img_box .swiper-horizontal {
    overflow: hidden;
}
/*　スマホ表示時 */
@media screen and (max-width: 750px) {
}

/* ============================================================ */
/* ITEMS 
/* ============================================================ */
#collab #item {
  width: 100%;
  padding-top: 10.7rem;
  padding-bottom: 4rem;
  text-align: center;
}

/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #collab #item {
    padding-top: 5rem;
    padding-bottom: 0;
  }
}

/* 導入 */
/* ------------------------------------------------------------ */
#collab #item .introduction_box {
  width: 100%;
  max-width: calc(1056px + (24px * 2));
  margin: 0 auto;
  padding-bottom: 7rem;
}
#collab #item .introduction_box .cmnTtl_box .ttl {
  padding-bottom: 3rem;
  margin-bottom: 6rem;
  border-bottom: 1px solid #000;
}
#collab #item .introduction_box .cmnTtl_box .ttl .en_granv {
  font-style: italic;
}
/*　1600px以上 */
@media screen and (min-width: 1600px) {
  #collab #item .introduction_box .txt_box .txt {
    font-size: 1.8rem;
  }
  #collab #item .introduction_box .txt_box .txt .max_br {
    display: block;
  }
}
/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #collab #item .introduction_box {
    padding: 0 3rem 4rem;
  }
  #collab #item .introduction_box .cmnTtl_box {
    width: auto;
  }  
  #collab #item .introduction_box .cmnTtl_box .ttl {
    padding-bottom: 2rem;
    margin-bottom: 3rem;
  }
  #collab #item .introduction_box .txt_box .txt {
    text-align: left;
  }  
}

/* スライダー（ページネーション付） */
/* ------------------------------------------------------------ */
#collab #item .items_boxes .swiper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}
#collab #item .items_boxes .item_box.sweet_box .swiper .swiper-pagination span {
  color: #2C2323;
}
#collab #item .items_boxes .item_box.cool_box .swiper .swiper-pagination span {
  color: #E7B0D0;
}
/*　スマホ表示時 */
@media screen and (max-width: 750px) {
}

/* ページネーション */
#collab #item .items_boxes .swiper .swiper-pagination {
  width: fit-content;
  margin: 2.2rem auto;
  position: unset;
}
#collab #item .items_boxes .item_box .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 0.5rem;
}
.sweet_box .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}
.cool_box .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}
#collab #item .items_boxes .item_box.sweet_box .swiper-pagination-bullet-active {
  background: #2C2323;
}
#collab #item .items_boxes .item_box.cool_box .swiper-pagination-bullet-active {
  background: #E7AFD0;
}


/* 商品紹介：共通 */
/* ------------------------------------------------------------ */
#collab #item .items_boxes {
  display: grid;
  grid-template-columns: minmax(50%, calc(1024px / 2)) minmax(50%, calc(1024px / 2));
  column-gap: 1%;
}
#collab #item .items_boxes .item_box .txt_box {
  padding: 0 10% 6rem;
}
#collab #item .items_boxes .item_box .txt_box .ttl_box .copy,
#collab #item .items_boxes .item_box .txt_box .ttl_box .sub_copy {
  font-size: 2.2rem;
}
#collab #item .items_boxes .item_box .txt_box .txt {
  padding-top: 1.8rem;
}
/* 1600px以上 */
@media screen and (min-width: 1600px) {
  #collab #item .items_boxes .item_box .txt_box .ttl_box .copy,
  #collab #item .items_boxes .item_box .txt_box .ttl_box .sub_copy {
    font-size: 2.8rem;
  }
  #collab #item .items_boxes .item_box .txt_box .txt {
    font-size: 1.8rem;
  }
}
/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #collab #item .items_boxes {
    display: block;
  }
}

/* セット内容 */
#collab #item .items_boxes .item_box .list_boxes {
  padding-top: 3rem;
}
#collab #item .items_boxes .item_box .list_boxes .ttl {
  padding-bottom: 1.5rem;
}
#collab #item .items_boxes .item_box .list_boxes .list_box {
  padding: 2rem 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  text-align: left;
}
#collab #item .items_boxes .item_box .list_boxes .list_box .list::before {
  content: "●";
  margin-right: 0.7rem;
}
#collab #item .items_boxes .item_box .list_boxes .list_box li {
  display: grid;
  grid-template-columns: auto 1fr;
  list-style-type: none;
}
/* 1600px以上 */
@media screen and (min-width: 1600px) {
  #collab #item .items_boxes .item_box .list_boxes .ttl {
    font-size: 1.8rem;
  }
}
/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #collab #item .items_boxes .item_box .list_boxes {
    padding-top: 1.5rem;
  }
}

/* 価格 */
#collab #item .items_boxes .item_box .txt_box .price_box {
  display: grid;
  /* justify-content: space-between; */
  /* align-items: end; */
  padding-top: 2rem;
}
#collab #item .items_boxes .item_box .txt_box .price_box .price {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  align-self: flex-end;
  display: flex;
  align-items: baseline;
  gap: 0 2px;
  margin-top: 12px;
  line-height: 1;
}
#collab #item .items_boxes .item_box .txt_box .price_box .price .yen {
  font-size: 3.2rem;
}
#collab #item .items_boxes .item_box .txt_box .price_box .price .value {
  font-size: 4rem;
}
#collab #item .items_boxes .item_box .txt_box .price .tax {
  font-size: 2.0rem;
}
/* Sweet */
#collab #item .items_boxes .item_box.sweet_box {
  background: #E7B0D0;
  color: #2C2323;
}
#collab #item .items_boxes .item_box.sweet_box .list_boxes .ttl {
  color: #4B4B4B;
}
#collab #item .items_boxes .item_box.sweet_box .txt_boxes .txt_box .txt {
  color: #4B4B4B;
}
#collab #item .items_boxes .item_box.sweet_box .list_boxes .list_box {
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
/* Cool */
#collab #item .items_boxes .item_box.cool_box {
  background: #2C2323;
  color: #fff;
}

/* ボタン */
/* ----------------------------------------------- */
#collab #item .items_boxes .item_box .txt_box .price_box .btn {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

/* coming_soon */
#collab #item .items_boxes .item_box .txt_box .price_box .btn.coming_soon {
  position: relative;
}
#collab #item .items_boxes .item_box .txt_box .price_box .btn.coming_soon::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 100vh;
}
#collab #item .items_boxes .item_box .txt_box .price_box .btn.coming_soon::after {
  content: "coming soon";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 50;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
}
#collab #item .items_boxes .item_box .txt_box .price_box .attention {
  grid-column: 2 / 3;
  margin-bottom: 1rem;
  font-size: 18px;
  text-align: center;
  font-feature-settings: "palt";
  font-weight: bold;
}
#collab #item .items_boxes .item_box.cool_box .txt_box .price_box .attention {
  color: #fff;
}
/*　1200px以下 */
@media screen and (max-width: 1200px) {
  #collab #item .items_boxes .item_box .txt_box .price_box {
    display: block;
  }
  #collab #item .items_boxes .item_box .txt_box .price_box .price {
    width: fit-content;
    margin: 0 auto;
  }
  #collab #item .items_boxes .item_box .txt_box .price_box .btn {
    width: 100%;/* fit-content */
    margin: 2rem auto 0;
  }
  #collab #item .items_boxes .item_box .txt_box .price_box .btn.coming_soon::after {
    font-size: 1.8rem;
  }
  #collab #item .items_boxes .item_box .txt_box .price_box .attention {
    font-weight: normal;
  }
}

/* ============================================================ */
/* STORE 
/* ============================================================ */
#collab #store .store_wrapper {
  padding-top: 16rem;
  padding-bottom: 9rem;
  background: url("../img/collab/popup_store_back.svg") #E4E4E4;
  font-size: 1.8rem;
  background-size: cover;
}
#collab #store .store_wrapper .inner {
  width: 100%;
  max-width: calc(776px + (24px * 2));
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
/* 1600px以上 */
@media screen and (min-width: 1600px) {
  #collab #store .store_wrapper .inner {
    max-width: calc(1100px + (24px * 2));
  }
}
/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #collab #store .store_wrapper {
    padding-top: 5rem;
  }
  #collab #store .store_wrapper .inner {
    width: 100%;
    padding: 0 4rem;
  }
}

/* 導入 */
/* ------------------------------------------------------------ */
#collab #store .store_wrapper .inner .introduction_box {
  text-align: center;
}
#collab #store .store_wrapper .inner .introduction_box .cmnTtl_box .ttl {
  padding-bottom: 3rem;
  margin-bottom: 6rem;
  border-bottom: 1px solid #000;
}
#collab #store .store_wrapper .inner .introduction_box .cmnTtl_box .ttl .en_granv {
  font-style: italic;
}
#collab #store .store_wrapper .inner .introduction_box .ttl_box {
  font-size: 3rem;
}
#collab #store .store_wrapper .inner .introduction_box .txt_box {
  margin-bottom: 5rem;
}
#collab #store .store_wrapper .inner .introduction_box .txt_box .txt {
  margin-top: 2rem;
}
/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #collab #store .store_wrapper .inner .introduction_box {
    padding: 0 1.5rem;
  }
  #collab #store .store_wrapper .inner .introduction_box .cmnTtl_box .ttl {
    padding-bottom: 2rem;
    margin-bottom: 3rem;
  }
  #collab #store .store_wrapper .inner .introduction_box .ttl_box {
    font-size: 2.2rem;
    line-height: 1.5;
  }
  #collab #store .store_wrapper .inner .introduction_box .ttl_box .copy {
    margin-bottom: 2rem;
  }
  #collab #store .store_wrapper .inner .introduction_box .txt_box .txt {
    font-size: 1.4rem;
    text-align: left;
  }
}

/* 画像 */
/* ------------------------------------------------------------ */
#collab #store .store_wrapper .inner .img_box img {
  width: 100%;
}

/* 詳細 */
/* ------------------------------------------------------------ */
#collab #store .store_wrapper .inner .detail_wrapper {
  display: grid;
  justify-content: space-between;
  grid-template-columns: 60% auto;
  padding-top: 4.2rem;
}

#collab #store .store_wrapper .inner .detail_wrapper .detail_box .table_group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 2%;
  padding-bottom: 1.4rem;
}
#collab #store .store_wrapper .inner .detail_wrapper .detail_box .table_group:last-child {
  align-items: start;
}
#collab #store .store_wrapper .inner .detail_wrapper .detail_box .title {
  width: 30%;
  background: #000;
  color: #fff;
  font-size: 2.2rem;
  text-align: center;
}
#collab #store .store_wrapper .inner .detail_wrapper .detail_box .txt {
  width: 68%;
}
/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #collab #store .store_wrapper .inner .detail_wrapper {
    display: block;
    padding-top: 3rem;
  }

  #collab #store .store_wrapper .inner .detail_wrapper .detail_box .title,
  #collab #store .store_wrapper .inner .detail_wrapper .detail_box .txt {
    font-size: 1.6rem;
  }
  #collab #store .store_wrapper .inner .detail_wrapper .detail_box .txt {
    width: 100%;
  }  
}
@media screen and (max-width: 375px) {
  #collab #store .store_wrapper .inner .detail_wrapper .detail_box .table_group {
    display: block;
  }
}


/* ボタン */
/* ------------------------------------------------------------ */
#collab #store .store_wrapper .inner .detail_wrapper .btn_box .btn a {
  width: 100%;
  padding: 1em 3em;
  border: #B1B1B1 solid 1px;
  font-size: 1.8rem;
}
#collab #store .store_wrapper .inner .detail_wrapper .btn_box .txt {
  display: grid;
  grid-template-columns: auto 1fr;
  font-size: 1.2rem;
}
#collab #store .store_wrapper .inner .detail_wrapper .btn_box .txt::before {
  content: "※";
}
/* 1600px以上 */
@media screen and (min-width: 1600px) {
  #collab #store .store_wrapper .inner .detail_wrapper .btn_box .btn a {
    max-width: unset;
    padding: 1em 5em;
  }
  #collab #store .store_wrapper .inner .detail_wrapper .btn_box .txt {
    font-size: 1.4rem;
  }
}
/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #collab #store .store_wrapper .inner .detail_wrapper .btn_box {
    width: 100%;/* fit-content */
    margin: 0 auto;
  }
  #collab #store .store_wrapper .inner .detail_wrapper .btn_box .txt {
    padding-top: 1.8rem;
  }
}


/* ============================================================ */
/* GoogleMap 
/* ============================================================ */
#collab #gmap_box {
  padding-bottom: 5rem;
}
#collab #gmap_box .inner {
  width: 70%;
  margin: 0 auto;
  position: relative;
}
#collab #gmap_box .gmap_box {
  filter: grayscale(100%);
  border-top: 5px solid #000;
  border-bottom: 5px solid #000;
}
#collab #gmap_box .gmap_box iframe {
  display: block;
}
/*　1000px以下 */
@media screen and (max-width: 1000px) {
  #collab #gmap_box .inner {
    width: 100%;
  }
}

/* ボタン */
/* ------------------------------------------------------------ */
#collab #gmap_box .btn {
  position: absolute;
  top: -60px;
  right: 0;
  z-index: 10;
}
#collab #gmap_box .btn a {
  height: 60px;
  padding-top: 0;
  padding-bottom: 0;
  align-items: center;
  line-height: 60px;
}
#collab #gmap_box .btn a {
  background: #000;
  color: #fff;
  border-radius: 0vw;
}
/*　スマホ表示時 */
@media screen and (max-width: 750px) {
  #collab #gmap_box .btn {
    top: -50px;
  }
  #collab #gmap_box .btn a {
    height: 50px;
    padding-left: 1.5em;
    padding-right: 1.5em;
    line-height: 50px;
  }

}
