/* ----------------------------------------------
共通設定
----------------------------------------------- */

html {
  scroll-behavior: smooth;
}

html.is-no-smooth {
  scroll-behavior: auto;
}

img {
  width: 100%;
}

a {
  transition: 0.4s ease;
}
/* ----------------------------------------------
フォント
----------------------------------------------- */
body {
  color: #333;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;

  background-color: rgb(248, 244, 220);
}

:root {
  --font-en: "Inter", sans-serif;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

/* ----------------------------------------------
PC・SPの切り替え
----------------------------------------------- */
@media screen and (min-width: 768px) {
  .-pc {
    display: block;
  }

  .-sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .-pc {
    display: none !important;
  }

  .-sp {
    display: block;
  }
}

/* ----------------------------------------------
レイアウト
----------------------------------------------- */

.l-container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding-inline: 20px;

  position: relative;
  z-index: 1;
}

.l-section {
  background-blend-mode: multiply;
  padding-block: 140px;

  position: relative;
  overflow-x: hidden;
  isolation: isolate;
}

@media screen and (max-width: 767px) {
  .l-section {
    padding-block: 80px;
  }
}

/* ----------------------------------------------
セクション 分割ライン
----------------------------------------------- */

.l-section-line {
  position: relative;
}

.l-section-line::after {
  content: "";
  position: absolute;
  aspect-ratio: 1140 / 267;
  width: 100%;
  height: auto;

  z-index: 10;
}

.l-section-line.-about::after {
  background: url(../img/section-line-about.svg) no-repeat top / contain;
  top: 100%;
}

.l-section-line.-hall::after {
  background: url(../img/section-line-holl.svg) no-repeat bottom/ contain;
  bottom: 100%;
}

/* ----------------------------------------------
見出し
----------------------------------------------- */

.c-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  line-height: 1;
  margin-bottom: 80px;
}
.c-heading__en {
  font-size: clamp(3.75rem, 0.893rem + 5.95vw, 6.25rem);
  font-family: var(--font-en);
  letter-spacing: 0.05em;
  color: #fff;
  font-weight: 600;
}

.c-heading__jp {
  font-size: clamp(1rem, 0.714rem + 0.6vw, 1.25rem);
  letter-spacing: 0.05em;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .c-heading {
    margin-bottom: 60px;
  }
}

/* ----------------------------------------------
フェード
----------------------------------------------- */

.c-fade {
  opacity: 0; /* ← 最初透明 */
}

/* フェードイン + 下からふわっ
----------------------------------------------- */
.c-fade.is-active {
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 0.5s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ----------------------------------------------
模様
----------------------------------------------- */

.c-moyou {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.c-moyou-fade {
  opacity: 0; /* ← 最初透明 */
}

/* フェードイン
----------------------------------------------- */
.c-moyou-fade.is-active {
  animation: moyouFadeIn 1.5s ease forwards;
  animation-delay: 1s;
}

@keyframes moyouFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ----------------------------------------------
ヘッダー
----------------------------------------------- */
.c-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}

.c-header__logo > a {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-header__topBtn {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;

  font-size: 0.7em;
  text-align: center;
  font-weight: 600;

  width: max-content;
  padding: 2px 6px;
  border-radius: 50px;
  background-color: rgb(255, 255, 255, 0.7);
}

.c-header__topBtn.is-show {
  opacity: 1;
  visibility: visible;
}

.c-globalNav__SNS > a.kyotoconcerthall >img{
  width: 40px;
}

.c-globalNav__SNS > a.kyotoconcerthall{
  display: flex;
  gap: 4px;
  align-items: center;
}

.c-globalNav__SNS > a.kyotoconcerthall > p{
    font-size: 0.6em;
    text-align: justify;
    line-height: 1.2;
}

@media screen and (min-width: 768px) {
  .c-header__logo {
    position: absolute;
    width: 100px;
    top: 20px;
    left: 20px;
  }

  .c-drawer {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);

    padding: 16px 60px;
    border-radius: 50px;

    background-color: rgb(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(10px);

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }

  .c-drawer.is-show {
    opacity: 1;
    visibility: visible;
  }

  .c-globalNav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    white-space: nowrap;
  }

  .c-globalNav__item > a {
    font-weight: 600;
    line-height: 1;
    text-align: center;
  }

  .c-globalNav__item > a > span {
    display: block;
    font-size: 0.75em;
    color: #a81a4c;
  }

  .c-globalNav__item img {
    width: 32px;
    aspect-ratio: 1/1;
  }

  .c-globalNav__item > a:hover {
    opacity: 0.6;
  }
}

@media screen and (max-width: 767px) {
  body.is-locked {
    overflow: hidden;
  }

  /* .c-header {
    display: flex;
    justify-content: space-between;
    padding: 16px;
  } */

  .c-header__logo {
    position: absolute;
    width: 60px;
    top: 16px;
    left: 16px;

    opacity: 1;
    visibility: visible;
  }

  body.is-locked .c-header__logo,
  body.is-locked .c-header__logo .c-header__topBtn {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  

  .c-drawer {
    position: fixed;
    width: fit-content;

    top: 100px;
    right: 0;

    padding: 80px 40px;
    padding-bottom: 60px;
    border-radius: 50px 0 0 50px;

    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;

    background-color: rgb(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(10px);
  }

  .c-drawer.is-open {
    opacity: 1;
    visibility: visible;
  }

  .c-globalNav {
    width: fit-content;
  }

  .c-globalNav__list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }

  .c-globalNav__item > a {
    display: inline;
    font-size: 1em;
    font-weight: 600;
    line-height: 1;
    text-align: center;
  }

  .c-globalNav__item > a > span {
    display: block;
    font-size: 0.75em;
    color: #a81a4c;
  }

  .c-globalNav__item img {
    width: 48px;
  }

  .c-globalNav__SNS {
    display: flex;
    gap: 16px;
    margin-top: 20px;
  }


.c-globalNav__SNS > a.kyotoconcerthall{
  flex-direction: column;
}

.c-globalNav__SNS > a.kyotoconcerthall > p{
    text-align: center;
}

}

/* ----------------------------------------------
ハンバーガーボタン
----------------------------------------------- */

@media screen and (min-width: 768px) {
  .c-toggle {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .c-toggle {
    position: absolute;
    display: block;
    width: 48px;
    height: 48px;

    border-radius: 50px;

    background-color: rgb(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(10px);

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;

    top: 16px;
    right: 16px;
  }

  .c-toggle.is-show {
    opacity: 1;
    visibility: visible;
  }

  .c-toggle__icon {
    position: absolute;
    display: block;
    height: 2px;
    width: 20px;

    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;

    background: #333;
    transition: ease 0.4s;
  }

  .c-toggle__icon:nth-child(1) {
    top: calc(50% + 8px);
  }

  .c-toggle__icon:nth-child(3) {
    top: calc(50% - 8px);
  }

  .c-toggle.is-active .c-toggle__icon:nth-child(1) {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
  }

  .c-toggle.is-active .c-toggle__icon:nth-child(2) {
    opacity: 0;
  }

  .c-toggle.is-active .c-toggle__icon:nth-child(3) {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
  }
}

/* ----------------------------------------------
オーバーレイ
----------------------------------------------- */

.c-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;

  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;

  z-index: 20;
}

/* 表示 */
.c-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* ----------------------------------------------
hero
----------------------------------------------- */

.p-topHero {
  position: relative;
  aspect-ratio: 1440 / 1030;
  width: 100%;
  /* max-height: 100svh; */
  overflow: hidden;
}

@media screen and (min-width:1440px) {
.p-topHero {
  aspect-ratio:unset;
  max-height: 1300px;
}

}

.p-topHero__bg,
.p-topHero__moyou {
  width: 100%;
  height: 100%;
  display: block;
}

.p-topHero__moyou {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;

  animation-name: hero_fadeIn;
  animation-fill-mode: forwards;
  animation-duration: 2s;
  opacity: 0;

  /* 1番 */
  animation-delay: 0.5s;
}
.p-topHero__bg img,
.p-topHero__moyou img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.p-topHero__item {
  position: absolute;
  z-index: 5;

  animation-name: hero_fadeIn;
  animation-fill-mode: forwards;
  animation-duration: 2s;
  opacity: 0;
}

/* 京都の秋 音楽祭 ロゴ */
.p-topHero__item.-item01 {
  width: 43.5vw;
  max-width: 870px;
  /* width: clamp(20.875rem, -0.268rem + 44.05vw, 39.375rem); */
  top: clamp(5.938rem, 0.009rem + 12.35vw, 11.125rem);
  left: 14vw;

  /* 2番 */
  animation-delay: 1.5s;
}

/* コピー */
.p-topHero__item.-item02 {
  width: 12.6vw;
  max-width: 250px;
  /* width: clamp(6.25rem, 0.393rem + 12.2vw, 11.375rem); */
  top: clamp(3.938rem, 0.08rem + 8.04vw, 7.313rem);
  left: calc(50% + clamp(12.5rem, 5.357rem + 14.88vw, 18.75rem));
  transform: translateX(-50%);

  /* 3番 */
  animation-delay: 2.5s;
}

/* バイオリン */
.p-topHero__item.-item03 {
  height: 100%;
  top: -40px;
  right: -40px;

  /* 1番 */
  animation-delay: 0.5s;
}

.p-topHero__item.-item03 img {
  height: 110%;
  width: auto;
  display: block;
}

/* テキストロゴ */
.p-topHero__item.-item04 {
  width: clamp(7.5rem, 1.802rem + 11.89vw, 12.5rem);
  bottom: 40px;
  right: 40px;

  /* 3番 */
  animation-delay: 2.5s;
}

/* 丸 */
.p-topHero__item.-item05 {
  width: clamp(8.125rem, -3.984rem + 25.26vw, 18.75rem);
  top: 0px;
  left: 0px;
  z-index: 0;

  /* 1番 */
  animation-delay: 0.5s;
}

/* 日付 */
.p-topHero__item.-item06 {
  width: clamp(17.188rem, -0.027rem + 35.86vw, 32.25rem);
  bottom: clamp(2.5rem, -0.071rem + 5.36vw, 4.75rem);
  left: 14vw;
  /* transform: translateX(-50%); */

  /* 3番 */
  animation-delay: 2.5s;
}

/* フェイドインアニメーション */
@keyframes hero_fadeIn {
  0% {
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .p-topHero {
    aspect-ratio: 1030 / 1440;
  }

  /* 京都の秋 音楽祭 ロゴ */
  .p-topHero__item.-item01 {
    width: 56vw;
    /* width: clamp(7.5rem, -5.749rem + 70.66vw, 28.125rem); */
    top: calc(50% + clamp(2.188rem, 1.74rem + 2.24vw, 2.813rem));
    left: 20px;
    transform: translateY(-50%);
    z-index: 6;
  }

  /* コピー */
  .p-topHero__item.-item02 {
    width: clamp(3.938rem, -0.045rem + 19.91vw, 9.5rem);
    left: clamp(6.25rem, 1.031rem + 27.84vw, 14.375rem);

    top: clamp(1.25rem, -0.092rem + 6.71vw, 3.125rem);
    transform: none;
  }

  /* テキストロゴ */
  .p-topHero__item.-item04 {
    width: clamp(3.75rem, -1.871rem + 29.98vw, 12.5rem);
    bottom: 20px;
    right: 20px;
  }

  /* 日付 */
  .p-topHero__item.-item06 {
    width: clamp(10.625rem, 0.021rem + 53.02vw, 25.438rem);
    bottom: clamp(2.313rem, 0.031rem + 11.41vw, 5.5rem);
    left: 30px;
  }
}

/* ----------------------------------------------
ABOUT 概要
----------------------------------------------- */

.p-topAbout {
  background-color: #f6dad2;
}

.p-topAbout__intro {
  width: 80%;
  margin: 0 auto;
  line-height: 2;
}

.p-topAbout__infoWrap {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;

  margin-top: 60px;
}

.p-topAbout__logo {
  max-width: 100%;
  width: 470px;
  aspect-ratio: 1 / 1;
}

.p-topAbout__title {
  font-size: 1.5em;
  font-weight: 600;
}

.p-topAbout__list {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-top: 20px;
}

.p-topAbout__item {
  display: flex;
  align-items: center;
  gap: 1em;
}

.p-topAbout__item > dt {
  min-width: calc(4.5em + 2em);
  padding: 0.5em 1em;
  font-size: 0.875em;
  color: #fff;
  text-align: center;
  border-radius: 5px;
}

.p-topAbout__item:nth-child(1) > dt {
  background-color: #45a194;
}

.p-topAbout__item:nth-child(2) > dt {
  background-color: #cf4f5c;
}

.p-topAbout__item:nth-child(3) > dt {
  background-color: #e0913e;
}

.p-topAbout__item:nth-child(4) > dt {
  background-color: #4f83c8;
}

.p-topAbout__item > dd {
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .p-topAbout__intro {
    width: 100%;
    margin: 0 auto;
    line-height: 1.8;
  }

  .p-topAbout__infoWrap {
    flex-direction: column;
  }

  .p-topAbout__title {
    text-align: center;
  }

  .p-topAbout__item {
    gap: 8px;
  }
}

/* ABOUT 背景 模様
----------------------------------------------- */

.p-topAbout__moyou.-item01 {
  width: clamp(6.25rem, 2.689rem + 7.43vw, 9.375rem);
  top: 140px;
  left: 0;
}

.p-topAbout__moyou.-item02 {
  width: clamp(12.5rem, 5.377rem + 14.86vw, 18.75rem);
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .p-topAbout__moyou.-item02 {
    width: clamp(12.5rem, 5.377rem + 14.86vw, 18.75rem);
    bottom: 80px;
    top: unset;
    transform: none;
  }
}

/* ----------------------------------------------
CONCERT コンサート一覧
----------------------------------------------- */

.p-topConcert {
  background-color: #f8f4dc;
  padding-block: calc(267 / 1140 * 100% + 140px);
}

.p-topConcert__list {
  display: flex;
  flex-direction: column;
  gap: 1.25em;
}

.p-topConcert__item {
  background-color: rgb(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 1.5em 2em;
}

.p-topConcert__infoBox {
  display: flex;
  gap: 1.25em;
  margin-bottom: 0.5em;
}

.p-topConcert__hall.-daihall {
  color: #a81a4c;
}

.p-topConcert__hall.-murata {
  color: #1a34a8;
}

.p-topConcert__contentBox {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.p-topConcert__title {
  font-size: 1.25em;
  font-weight: 600;
  line-height: 1.5;
}

.p-topConcert__title-en {
  font-size: 0.75em;
  color: #555;
}

.p-topConcert__organizer {
  font-size: 0.875rem;
  margin-top: 12px;
}

.p-topConcert__link {
  position: relative;
  min-width: calc(4.5em + 2em);
  padding: 0.5em 2em 0.5em 1em;
  margin-left: 20px;

  font-size: 0.875em;
  color: #fff;
  text-align: center;
  border-radius: 5px;

  background-color: #a81a4c;
  flex-shrink: 0;
}

.p-topConcert__link::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/arrow.svg) no-repeat center center / contain;
}

@media screen and (min-width: 768px) {
  .p-topConcert__link:hover {
    opacity: 0.5;
  }
}

@media screen and (max-width: 767px) {
  .p-topConcert {
    background-color: #f8f4dc;
    padding-block: calc(267 / 1140 * 100% + 80px);
  }
  .p-topConcert__infoBox {
    flex-direction: column;
    gap: 0;
  }

  .p-topConcert__contentBox {
    flex-direction: column;
    gap: 16px;
    align-items: baseline;
  }

  .p-topConcert__title {
    font-size: 1.25em;
    font-weight: 600;
    line-height: 1.5;
  }

  .p-topConcert__title-en {
    margin-top: 0.5em;
  }

  .p-topConcert__link {
    margin-left: auto;
  }
}

/* CONCERT 背景 模様
----------------------------------------------- */

.p-topConcert__moyou.-item01 {
  width: clamp(2.5rem, 1.075rem + 2.97vw, 3.75rem);
  top: 90px;
  left: 120px;
}

.p-topConcert__moyou.-item02 {
  width: clamp(7.5rem, -1.048rem + 17.83vw, 15rem);
  top: 0;
  right: 0;
}

.p-topConcert__moyou.-item03 {
  width: clamp(37.5rem, 13.994rem + 49.03vw, 58.125rem);
  top: clamp(5rem, -3.548rem + 17.83vw, 12.5rem);
  right: 0;
}

.p-topConcert__moyou.-item04 {
  width: clamp(9.375rem, -1.309rem + 22.29vw, 18.75rem);
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .p-topConcert__moyou.-item01 {
    width: clamp(1.25rem, 0.768rem + 2.57vw, 2rem);
    top: 20px;
    left: 20px;
  }

  .p-topConcert__moyou.-item02 {
    width: clamp(2.5rem, 0.894rem + 8.57vw, 5rem);
    top: 0;
    right: 0;
  }

  .p-topConcert__moyou.-item03 {
    width: clamp(25rem, 16.97rem + 42.83vw, 37.5rem);
    top: clamp(2.5rem, 1.697rem + 4.28vw, 3.75rem);
  }

  .p-topConcert__moyou.-item04 {
    width: 120px;
    left: -20px;
  }
}

/* ----------------------------------------------
TICKET チケット購入
----------------------------------------------- */

.p-topTicket {
  background-color: #e3ecf2;
}

.p-topTicket__btnWrap {
  display: flex;
  gap: clamp(1.25rem, -0.179rem + 2.98vw, 2.5rem);
  justify-content: center;
}

.p-topTicket__btn {
  position: relative;
  display: block;
  background-color: #a61c4b;
  border-radius: 20px;
  color: #fff;
  padding: 1.5em 4em 1.5em 2.5em;
  transition: all 0.4s ease;
}

.p-topTicket__btn::after {
  position: absolute;
  content: "";
  width: 1.5em;
  height: 1.5em;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/arrow.svg) no-repeat center center / contain;
}

.p-topTicket__btn.-en {
  background-color: #722d45;
}

@media screen and (min-width: 768px) {
  .p-topTicket__btn:hover {
    opacity: 0.5;
  }
}

@media screen and (max-width: 767px) {
  .p-topTicket {
    padding-bottom: 120px;
  }

  .p-topTicket__btnWrap {
    flex-direction: column;
    gap: 20px;
  }

  .p-topTicket__btn {
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
  }
}

/* ----------------------------------------------
HALL 開催会場
----------------------------------------------- */

/* 京都コンサートホール
----------------------------------------------- */

.p-topHall {
  overflow: unset;
  background-color: #e3ecf2;
  padding-top: 0;
  padding-bottom: 280px;
}

.p-topHall__KCH {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* grid-template-rows: repeat(3, 1fr); */
  grid-column-gap: 80px;
  grid-row-gap: 40px;
  padding-inline: 20px;
}

.p-topHall__KCHimg {
  /* width: 60.23%; */
  grid-area: 1 / 1 / 2 / 3;
}

.p-topHall__KCHimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.p-topHall__KCHinfoBox {
  display: flex;
  flex-direction: column;
  gap: 1.25em;
}

.p-topHall__KCHinfoBox.-jp {
  grid-area: 3 / 1 / 4 / 2;
}

.p-topHall__KCHweb {
  grid-area: 2 / 1 / 3 / 3;
  display: flex;
  gap: 40px;
  align-items: center;
}

.p-topHall__KCHweb img {
  width: 50%;
  height: auto;
  max-width: 150px;
}

.p-topHall__KCHweb > a {
  position: relative;
  display: block;
  font-size: 0.875em;
  color: #fff;
  background-color: #a61c4b;
  padding: 0.5em 2.5em 0.5em 1em;
  border-radius: 50px;
}

.p-topHall__KCHweb > a::after {
  position: absolute;
  content: "";
  width: 1em;
  height: 1em;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  background-image: url(../img/btn-arrow.svg);
}
.p-topHall__KCHname {
  line-height: 1;
}

.p-topHall__KCHname > span {
  display: block;
  font-size: 0.75em;

  margin-bottom: 0.75em;
}

.p-topHall__KCHname > h3 {
  font-size: 1.25em;
  font-weight: 600;
}

.p-topHall__KCHmap {
  width: fit-content;
  display: inline-block;
  position: relative;
  padding-left: 1.25em;
  padding-bottom: 0.25em;
  line-height: 1;
}

.p-topHall__KCHmap::before {
  position: absolute;
  content: "";
  display: block;

  width: 1em;
  height: 1em;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  background: url(../img/icon-mappin.svg) center / cover no-repeat;

  transition: all 0.4s ease;
}

.p-topHall__KCHmap::after {
  position: absolute;
  content: "";
  display: block;

  width: calc(100% - 1.25em);
  height: 1.5px;
  background-color: #333;
  right: 0;
  bottom: 0;

  transition: all 0.4s ease;
}

.p-topHall__KCHtel {
  line-height: 1.2;
}

/* 英語 */
.p-topHall__KCHinfoBox.-en {
  grid-area: 3 / 2 / 4 / 3;
}

.p-topHall__KCHinfoBox.-en .p-topHall__KCHname {
  font-size: 2.5rem;
}

.p-topHall__KCHinfoBox.-en .p-topHall__KCHname > span {
  font-size: 0.35em;
  margin-top: 1em;
}

.p-topHall__KCHinfoBox .p-topHall__KCHlink {
  display: block;
  text-decoration: underline;
  transition: all 0.4s ease;
}

@media screen and (min-width: 768px) {
  .p-topHall__KCHweb > a:hover,
  .p-topHall__KCHmap:hover,
  .p-topHall__KCHinfoBox .p-topHall__KCHlink:hover {
    opacity: 0.5;
  }
}

@media screen and (max-width: 767px) {
.p-topHall {
  padding-bottom: 120px;
}


  .p-topHall__KCH {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .p-topHall__KCHimg {
    width: 100%;
  }
  
  .p-topHall__KCHweb {
  gap: 20px;
  flex-wrap: wrap;
}

  .p-topHall__KCHinfoBox {
    width: 100%;
    /* flex-direction: row;
    align-items: flex-start;
    justify-content: center; */
    gap: 20px;
  }

  .p-topHall__KCHweb > a {
    flex-shrink: 0;
  }

  .p-topHall__KCHinfoBox.-jp .p-topHall__KCHname {
    max-width: 320px;
  }

  .p-topHall__KCHinfoBox.-en .p-topHall__KCHname {
    font-size: 2rem;
  }

  .p-topHall__KCHweb img {
    width: 100%;
    max-width: 150px;
  }
}

/* ホールリスト
----------------------------------------------- */

.p-topHall__list {
  display: flex;
  gap: clamp(1.25rem, -0.179rem + 2.98vw, 2.5rem);
  margin-top: 60px;
}

.p-topHall__item {
  width: calc(100% - clamp(1.25rem, -0.179rem + 2.98vw, 2.5rem)) / 2;
}

.p-topHall__link {
  display: block;
  background-color: rgb(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 1.5em 2.5em;
  transition: all 0.4s ease;
}

.p-topHall__link.-en {
  padding: 1.5em 2.5em;
  color: #555;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.p-topHall__hallName {
  display: flex;
  align-items: center;
  gap: 0.5em;
  justify-content: space-between;
  margin-bottom: 1.25em;
}

.p-topHall__hallName > h4 {
  font-size: clamp(1rem, 0.429rem + 1.19vw, 1.5rem);
}

.p-topHall__btn {
  display: inline-flex;
  align-items: center;
  font-size: 1.25em;
  color: #fff;
  background-color: #a61c4b;
  padding: 0.5em 1em 0.5em 1em;
  border-radius: 50px;
  flex-shrink: 0;
}

.p-topHall__btn::after {
  display: inline-block;
  content: "";
  width: 1em;
  height: 1em;
  background-image: url(../img/btn-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.p-topHall__link.-en .p-topHall__btn {
  margin-left: auto;
  background-color: #722d45;
}

.p-topHall__img {
  aspect-ratio: 400 / 270;
  overflow: hidden;
}

.p-topHall__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.4s ease;
}

@media screen and (min-width: 768px) {
  .p-topHall__item > a:hover {
    background-color: rgb(241, 225, 230);
  }

  .p-topHall__link:hover .p-topHall__img img {
    transform: scale(1.05);
  }
}

@media screen and (max-width: 767px) {
  .p-topHall__list {
    flex-direction: column;
    padding-inline: 20px;
  }

  .p-topHall__hallName {
    margin-bottom: 0.75em;
  }

  .p-topHall__link {
    padding: 1em 2em 2em;
  }

  .p-topHall__link.-en {
    margin-top: 12px;
    padding: 1em 2em;
  }

  .p-topHall__btn {
    padding: 0.25em 0.5em 0.25em 0.5em;
  }
}

/* HALL 背景 模様
----------------------------------------------- */

.p-topHall__moyou.-item01 {
  width: clamp(2.5rem, 0.363rem + 4.46vw, 4.375rem);
  top: clamp(11.25rem, 6.264rem + 10.4vw, 15.625rem);
  right: clamp(2.5rem, -3.198rem + 11.89vw, 7.5rem);
}

.p-topHall__moyou.-item02 {
  width: clamp(12.5rem, 1.816rem + 22.29vw, 21.875rem);
  bottom: 0;
  left: 40px;
}

.p-topHall__moyou.-item03 {
  width: 100%;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .p-topHall__moyou.-item01 {
    top: 60px;
    right: 20px;
  }

  .p-topHall__moyou.-item02 {
    left: -40px;
  }
}

/* ----------------------------------------------
footer フッター
----------------------------------------------- */

.c-footer {
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background-color: #da7916;
}

.c-footer__hostBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  color: #fff;
}

.c-footer__hostImgBox{
  display: flex;
  align-items: center;
  gap: 1em;
}

.c-footer__hostImgBox img {
  width: 100%;
  max-width: 150px;
}

.c-footer__copyright {
  font-size: 0.75em;
  color: #fff;
}
