@charset "UTF-8";

/* ーーーーーメインーーーーー */

.top__header {
  height: 100svh; /* 画面全体の高さを使用 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.top__header--inner {
  padding-top: var(--header-h); /* ヘッダー回避 */
  transform: translateY(-5%); /* 気持ち上 */
  text-align: center;
}

.top__rogo {
  width: 100px;
  height: auto;
  padding-bottom: 10px;
  margin: 0 auto;
}

.top__rogo img,
.top__main img {
  display: block;
}

.top__main {
  width: 160px;
  height: auto;
  padding-bottom: 10px;
  margin: 0 auto;
}

.top__flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.top__line {
  width: 60px;
  height: 24px;
}

.top__text {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: "Zen Old Mincho";
}

@media screen and (min-width: 768px) {
  .top__header--inner {
    transform: translateY(-32%);
  }

  .top__rogo {
    height: auto;
    padding-bottom: 20px;
    width: 150px;
  }

  .top__main {
    width: 300px;
    height: auto;
    padding-bottom: 10px;
  }

  .top__text {
    font-size: 1.8rem;
    font-weight: 400;
  }

  .top__line {
    width: 90px;
    height: 24px;
  }
}

/* ーーーーコンセプトーーーーー */

.concept {
  background-image: url(../images/backtya.jpg);
  padding: 80px 5.3% 100px;
}

.consept__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.concept__rogo {
  width: 200px;
  height: auto;
  display: block;
  box-shadow: 1px 1px 7px 0 rgba(0, 0, 0, 0.6);
}

.concept__text--inner h3 {
  font-size: 1.6rem;
  font-weight: 700;
  padding-bottom: 8px;
  font-family: "Zen Old Mincho";
}

.concept__text--inner h4 {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 158%;
  font-family: "Zen Old Mincho";
}


.sp {
  font-size: 2.4rem;
  font-weight: 800;
  padding-bottom: 62px;
  font-family: "Zen Old Mincho";
  text-align: center;
}

.pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }

  .pc {
    display: block;
  }
  .concept {
    padding: 100px 10.4%;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .consept__main {
    justify-content: center;
    gap: 10%;
  }

  .concept__rogo {
    width: 220px;
  }

  .concept__text--inner h3 {
    font-size: 3.2rem;
    font-weight: 600;
    padding-bottom: 15px;
  }

  .concept__text--inner h4 {
    font-size: 1.6rem;
    font-weight: 350;
    letter-spacing: 2px;
    line-height: 188%;
  }

}

/* ビジネス */

.business {
  text-align: center;
  padding: 90px 5.3% 120px;
}

.business h5 {
  font-family: "Zen Old Mincho";
  font-size: 2.7rem;
  font-weight: 600;
  padding-bottom: 67px;
}



/* ここアパレルイベント事業の箇所 */

.business__inner {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 50px;
}

.business__btn {
  flex: 1;
  display: block;
  text-decoration: none;
}

.business__image {
  position: relative;
  overflow: hidden;
  box-shadow: 3px 2px 6px 0 rgba(0, 0, 0, 0.5);
}

/* 画像 */
.business__image img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

/* 黒オーバーレイ */
.business__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  transition: background 0.5s ease;
}

/* 中央の文字 */
.business__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  z-index: 2;
  transition: opacity 0.4s ease, transform 0.4s ease;
  font-family: "Zen Old Mincho";
  font-weight: 700;
  white-space: nowrap;
}

/* ===== hover ===== */
.business__btn:hover .business__image::after {
  background: rgba(0, 0, 0, 0.15);
}

.business__btn:hover .business__title {
  opacity: 0;
  transform: translate(-50%, -55%);
}

.business__btn:hover img {
  transform: scale(1.05);
}

.business__link {
  background: rgba(255, 255, 255, 0.73);

  box-shadow: 3px 2px 6px 0 rgba(0, 0, 0, 0.25);
}

.business__link a {
  display: block;
  transition: transform 0.4s ease;
}

.business__rogo img {
  transition: transform 0.6s ease;
}

.business__link:hover a {
  transform: translateY(-6px);
}

.business__link:hover .business__rogo img {
  transform: scale(1.06);
}

.business__link--flex {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  padding-top: 36px;
  padding-bottom: 36px;
}

.business__text {
  font-family: "Zen Old Mincho";
  font-size: 2rem;
  font-weight: 500;
}

.business__rogo {
  width: 120px;
  height: auto;
}

@media screen and (min-width: 768px) {
  .business {
    padding: 150px 10.4% 250px;
  }

  .business__inner {
    gap: 70px;
    margin-bottom: 120px;
  }

  .business__title {
    font-size: 2rem;
  }

  .business h5 {
    font-size: 4rem;
    padding-bottom: 100px;
  }

  .business__link--flex {
    gap: 100px;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .business__text {
    font-size: 3rem;
    font-weight: 400;
  }

  .business__rogo {
    width: 280px;
    height: auto;
  }

  .business__image::after {
    background: rgba(0, 0, 0, 0.6);
  }
}

/* ーーーーーアクセスーーーーー */

.shop {
  padding: 0px 5.3% 100px;
}

.shop__1 {
  font-size: 1.5rem;
  padding-bottom: 10px;
}

.shop h5 {
  font-family: "Zen Old Mincho";
  font-size: 2.7rem;
  font-weight: 600;
  text-align: center;
  padding-bottom: 70px;
}

.shop__text {
  text-align: center;
  font-family: "Zen Old Mincho";
}
.shop__rogo {
  width: 220px;

  margin: 0 auto;
  padding-bottom: 30px;
}

.shop__image {
  display: block;
  padding-top: 60px;
  padding-bottom: 20px;
}

address {
  padding-top: 10px;
  font-size: 1.2rem;
  text-align: center;
}

.shop__title {
  font-size: 1.6rem;
  padding-bottom: 4px;
}

.address-wrap {
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;
}

.map-link {
  color: #555;
  transition: opacity 0.3s, transform 0.3s;
}

.map-link:hover {
  opacity: 0.7;
  transform: translateY(-1px);
}

.address__contents {
  text-align: center;
  width: 100%;
}

/* 縦写真 */

.parallax-images {
  width: 100%;
  padding-top: 90px;
}

.parallax-images__inner {
  display: flex;
  gap: 30px;
}

.parallax-images__item {
  width: 50%;
}

.parallax-images__item img {
  width: 100%;
  display: block;
}

/* 右だけ下にずらす */
.parallax-images__item.is-right {
  margin-top: 150px;
}

@media screen and (min-width: 768px) {
  .shop {
    padding: 0px 10.4% 150px;
  }

  .shop__1 {
    font-size: 1.6rem;
    padding-bottom: 10px;
  }

  .shop h5 {
    font-size: 4rem;
    font-weight: 600;
    padding-bottom: 130px;
  }

  .shop__rogo {
    margin: 0 auto;
    padding-bottom: 30px;
    width: 180px;
  }

  .shop__image {
    display: block;
    padding-top: 60px;
    padding-bottom: 20px;
  }

  address {
    padding-top: 10px;
    font-size: 1.2rem;
    text-align: center;
  }

  .shop__title {
    font-size: 1.6rem;
    padding-bottom: 4px;
  }

  .address-wrap {
    display: inline-flex;
    align-items: flex-end;
    gap: 8px;
  }

  .address-wrap address {
    text-align: left;
  }

  .map-link {
    color: #555;
    transition: opacity 0.3s, transform 0.3s;
    /* display: inline-flex;
    align-items: flex-end; */
  }

  .map-link:hover {
    opacity: 0.7;
    transform: translateY(-1px);
  }

  .address__contents {
    text-align: center;
    width: 100%;
  }

  .shop__flex {
    display: flex;
    flex-direction: row-reverse; /* 子要素のHTML順序を逆に並べる（画像を左、テキストを右） */
    align-items: center; /* 上下中央揃え（お好みで flex-start に変更可） */
    gap: 30px; /* 要素間の隙間 */
    width: 100%; /* 必要に応じてコンテンツの最大幅を設定 */
    margin: 0 auto;
  }

  .shop__image {
    flex: 1; /* 均等配分 */
    width: 50%;
    padding: 0;
  }

  .shop__image img {
    width: 100%;
    height: auto;
    display: block; /* 画像下の謎の隙間を解消 */
  }

  /* テキスト側：50%の幅を持たせる */
  .shop__Pc {
    flex: 1; /* 均等配分 */
    width: 50%;
    display: flex;
    flex-direction: column; /* 中身を縦に並べる */
    align-items: center; /* 中身（ロゴや住所）を中央寄せ */
    text-align: center; /* テキスト自体も中央寄せ */
  }

  /* 縦写真 */

  .parallax-images {
    width: 100%;
    padding-top: 170px;
  }

  .parallax-images__inner {
    display: flex;
    justify-content: center;
    gap: 150px;
  }

  .parallax-images__item {
    width: 34%;
  }

  .parallax-images__item img {
    width: 100%;
    display: block;
  }

  /* 右だけ下にずらす */
  .parallax-images__item.is-right {
    margin-top: 200px;
  }
}

@media screen and (min-width: 1024px) {
  .shop__rogo {
    width: 300px;
  }

  .shop__flex {
    gap: 40px; /* 要素間の隙間 */
  }

  .shop__1 {
    font-size: 2rem;
    padding-bottom: 10px;
  }
}

.shop__rogo img {
  transform: rotate(0deg);
  opacity: 0;
}
