@charset "UTF-8";


/* -----------------------------
  変数定義
----------------------------- */
:root {
  /* カラー */
  --color-primary: #620000;
  --color-secondary: #01452c;
  --color-accent: #A57E1F;
  --color-text: #000;
  --color-link: #006ad6;
  --color-white: #fff;
  --color-gray: #e1e4d1;
  --color-footer: #01452c;

  /* レイアウト */
  --width-content: 1920px;
  --width-narrow: 1200px;
  --space-unit: 20px;
  --space-section: 50px;

  /* その他 */
  --duration: 0.7s;
}

/* -----------------------------
  ベース
----------------------------- */
body {
  font-family: "EB Garamond","Inria Serif","serif","Hiragino Mincho ProN","游明朝",
    "Yu Mincho",
    "serif","Noto Sans JP","YuGothic", "游ゴシック Medium", "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

html,
body {
  background-color: var(--color-primary);
}

/* -----------------------------
  レイアウト
----------------------------- */
.wrapper {
  max-width: var(--width-narrow);
  margin: 0 auto;
  position: relative;
  padding: 0 var(--space-unit);
  box-sizing: border-box;
}

.container {
  max-width: var(--width-content);
  margin: 0 auto;
  position: relative;
  /* padding: 0 var(--space-unit); */
  box-sizing: border-box;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}

.news-box {
  max-width: 1110px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}

.newspage-ttl {
  font-size: 18px;
  color: #000;
}

/* -----------------------------
  共通コンポーネント
----------------------------- */
.sec-ttl {
  font-family: "EB Garamond", serif;
  font-size: 46px;
  color: var(--color-white);
  font-weight: 700;
  text-align: center;
}


/* ページトップボタン */
.pagetop {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  opacity: 1;
}

.pagetop:before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-top: 3px solid var(--color-white);
  border-right: 3px solid var(--color-white);
  translate: 0 20%;
  rotate: -45deg;
  top: calc(50% - 5px);
  left: calc(50% - 5px);
}

.pagetop:hover {
  transition: all var(--duration);
}

/* ホバー制御 */
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover,
  .btn-secondary:hover,
  .pagetop a:hover {
    opacity: 0.7;
  }
}

@media (hover: none) or (pointer: coarse) {

  /* タッチデバイスでの即時反応 */
  .btn-primary:active,
  .btn-secondary:active,
  .pagetop a:hover {
    opacity: 1;
  }
}

/* -----------------------------
  ヘッダー
----------------------------- */

/* ハンバーガーメニュー*/
.hamburger-morph {
  position: fixed;
  top: 5%;
  right: 5%;
  z-index: 1000;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger-morph__icon {
  width: 100%;
  height: 100%;
}

.hamburger-morph__line {
  fill: none;
  stroke: #fff;
  stroke-width: 4;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-morph__line:nth-child(1) {
  stroke-dasharray: 60 207;
}

.hamburger-morph__line:nth-child(2) {
  stroke-dasharray: 60 60;
}

.hamburger-morph__line:nth-child(3) {
  stroke-dasharray: 60 207;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(1) {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(2) {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(3) {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}

.nav-morph {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-primary);
  clip-path: circle(0% at calc(100% - 44px) 44px);
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 900;
}

.nav-morph.active {
  clip-path: circle(150% at calc(100% - 44px) 44px);
  overflow: hidden;
}

.nav-morph__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.nav-morph__list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.nav-morph__item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.nav-morph.active .nav-morph__item {
  opacity: 1;
  transform: translateY(0);
}

.nav-morph.active .nav-morph__item:nth-child(1) {
  transition-delay: 0.3s;
}

.nav-morph.active .nav-morph__item:nth-child(2) {
  transition-delay: 0.4s;
}

.nav-morph.active .nav-morph__item:nth-child(3) {
  transition-delay: 0.5s;
}

.nav-morph.active .nav-morph__item:nth-child(4) {
  transition-delay: 0.6s;
}

.nav-morph__link {
  position: relative;
  display: inline-block;
  padding: 20px;
  font-size: 26px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}

.nav-morph__link:hover {
  color: var(--color-secondary);
  transition: color .3s;
}

.hamburger-morph.white-bg .hamburger-morph__line {
  stroke: var(--color-secondary) !important;
}

/* メニューが開いているときは常に白 */
.hamburger-morph.active .hamburger-morph__line {
  stroke: #fff !important;
}
/* -----------------------------
  雪
----------------------------- */
.snow {
  /*雪の色*/
  color: snow;
  /*雪の大きさ*/
  font-size: 10px;
  /*初期位置*/
  position: fixed;
  top: -5%;
  /*雪を適当な幅で降らせる*/
  text-shadow:
    5vw -100px 2px,
    10vw -400px 3px,
    20vw -500px 4px,
    30vw -580px 1px,
    39vw -250px 2px,
    42vw -340px 5px,
    56vw -150px 2px,
    63vw -180px 0,
    78vw -220px 4px,
    86vw -320px 9px,
    94vw -170px 7px;
  /*雪アニメーション1*/
  animation: roll 5s linear infinite;
}

/*2つめの雪アニメーション*/
.snow2nd {
  animation: anim 8s linear infinite;
}

@keyframes roll {
  0% {
    transform: rotate(0deg);
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: rotate(20deg);
    top: 100%;
    opacity: 0;
  }
}

@keyframes anim {
  100% {
    color: transparent;
    top: 150%;
  }
}


/* -----------------------------
  メインビジュアル
----------------------------- */
.mv {
  position: relative;
  /* ロゴの基準にする */
  overflow: hidden;
}

.mv .container {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.slider {
  position: relative;
  overflow: hidden;
}

.slider img {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  display: block;
}

/* ロゴを中央に重ねる */
.mv .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  margin: 0;
}

.mv .logo img {
  width: 300px;
  height: auto;
  display: block;
}
/* -----------------------------
  クリスマスマーケットとは
----------------------------- */
.opening {
  width: 100%;
  margin: 0;
  padding: 5%;
  background-image: url(../img/opening.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.opening-container {
  max-width: 530px;
  width: 100%;
  margin: 0 0 0 auto;
}
/* -----------------------------
  Artists
----------------------------- */
 .artist {
  position: relative;
  z-index: 1;
 }
 
.artist .wrapper {
  background-color: #e1e4d1;
  max-width: 1000px;
  padding-bottom: 50px;
}

.artist .sec-ttl {
  color: var(--color-secondary);
  padding: 50px 0 30px 0;
}
.mc-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  margin: 0 calc(-1 * var(--space-unit));
  align-items: stretch;
  gap: 20px;
}
.artist-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  margin: 0 calc(-1 * var(--space-unit));
  align-items: stretch;
}
.m-card {
  width: 32%;
  box-sizing: border-box;
  padding: var(--space-unit);
  display: flex;
  /* 追加 */
  flex-direction: column;
  /* 追加 */
}
.a-card {
  width: 32%;
  box-sizing: border-box;
  padding: 20px 10px;
  display: flex;
  /* 追加 */
  flex-direction: column;
  /* 追加 */
}

.img-wrap {
  margin-bottom: 10px;
}

.artist .img-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.artist .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  transform-origin: center center;
  display: block;
}

.artist .img-wrap:hover img {
  transform: scale(1.1);
}

.artist-ttl {
  color: #333;
  font-family: 'Noto Sans JP';
  font-size: 20px;
  padding-bottom: 10px;
  font-weight: bold;
}
.artist-ttl span {
  font-size: 14px;
  padding-bottom: 3px;
  font-weight: normal;
}
.artist-txt {
  color: #333;
  font-family: 'Noto Sans JP';
  font-size: 14px;
}
/* 疑似要素での固定 */
.fixed-block2 {
  width: 100%;
  min-height: auto;
  overflow: hidden;
  position: relative; 
}

.fixed-block2 .photo1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-clip-path: inset(0);
  clip-path: inset(0); 
  z-index: 0; 
}

.fixed-block2 .photo1::before {
  content: "";
  position: fixed; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: -1;
}

.fixed-block2 .photo1::before {
  background-image: url(../img/bg.jpg);
}


/* タブレット */
@media screen and (min-width: 768px) and (max-width: 1199px){
  .fixed-block2 .photo1::before {
      background-image: url(../img/sp_bg.jpg);
    }
  .artist .wrapper {
    background-color: rgba(255, 255, 255, .7);
    width: 90%;
  }
  
}

/* スマホ */
@media screen and (max-width: 767px) {
.fixed-block2 .photo1::before {
    background-image: url(../img/sp_bg.jpg);
  }
  .artist .wrapper {
    background-color: rgba(255, 255, 255, .7);
    width: 90%;
  }
  .m-card {
    width: 50%;
    padding: 5px;
  }
  .artist-box {
    justify-content: space-between;
    margin: 10px 0 0 0;
    gap: 5px;
  }
  .artist-ttl {
    font-size: 16px;
  }
  .a-card {
    padding: 0;
    width: 49%;
  }
  .mc-box {
    gap: 10px;
  }
  .img-wrap {
    margin-bottom: 5px;
  }
}

/* -----------------------------
  セクション01
----------------------------- */
.sec-01 {
  padding: var(--space-section) 0;
}
.sec-01 .sec-ttl {
  padding-bottom: 20px;
}

.news-list {
  padding-bottom: 30px;
}

.news-list dt {
  position: absolute;
  padding: var(--space-unit) 0;
  font-size: 14px;
  color: var(--color-white);
}


.news-list dd {
  padding: var(--space-unit) 0 var(--space-unit) 10em;
  border-bottom: 1px dotted var(--color-white);
  font-size: 14px;
}

.news-list dd a {
  text-decoration: none;
  color: var(--color-white);
}

.news-list dd a:hover {
  text-decoration: underline;
  color: var(--color-accent);
}

.new {
  display: inline-block;
  width: 37px;
  height: 19px;
  line-height: 19px;
  border-radius: 3px;
  background: var(--color-accent);
  text-align: center;
  font-size: 12px;
  color: var(--color-white);
  margin-left: 10px;
}

.article {
  margin-top: 20px;
}

.single_post .wrapper {
  max-width: 800px;
}

.post_date {
  display: block;
  padding-bottom: 10px;
  color: #fff;
}
.post_title {
  font-size: 20px;
  color: #fff;
  padding-bottom: 30px;
}
.post_content {
  color: #fff;
  padding-bottom: 50px;
}
.single-ttl {
  padding: 30px 0;
}

.btn-primary a {
  width: 290px;
  height: 55px;
  line-height: 55px;
  background: var(--color-gray);
  color: var(--color-secondary);
  border-radius: 5px;
  display: block;
  text-align: center;
  padding-bottom: 30px;
}
.btn-primary {
  padding-bottom: 30px;
}

.btn {
  display: flex;
  justify-content: center;
}
.img-wrap {
  max-width: 100%;
  overflow: hidden;
}
.img-wrap img {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
  transform: scale(1.05);
  transform-origin: center;
}



/* -----------------------------
  セクション02
----------------------------- */
.sec-02 {
  padding-bottom: var(--space-section);
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 calc(-1 * var(--space-unit));
  align-items: stretch;
}

.card {
  width: 50%;
  box-sizing: border-box;
  padding: 0 var(--space-unit);
  display: flex; /* 追加 */
  flex-direction: column; /* 追加 */
}
.card img {
  padding-bottom: var(--space-unit);
}

.card-ttl {
  font-size: 24px;
  color: #fff;
  font-family: "EB Garamond", serif;
  font-weight: 400;
}

.card-ttl {
  position: relative;
  display: inline-block;
  padding: 0 55px 10px 55px;
}

.card-ttl:before,
.card-ttl:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: #fff;
}

.card-ttl:before {
  left: 0;
}

.card-ttl:after {
  right: 0;
}

.card-txt {
  color: #fff;
  line-height: 1.5;
}

.card-inner {
  display: inline-block;
  text-align: left;
  padding: 10%;
}

.card-inner img {
  width: 100%;
  height: auto;
  display: block;
}
/* -----------------------------
  タイムスケジュール
----------------------------- */
.timetable .sec-ttl {
  padding-bottom: 10px;
}
.timetable .lead {
  margin-bottom: 30px;
  text-align: center;
  font-size: 14px;
}
.time-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  place-items: center;
  position: relative;
  padding: 50px;
}

/* 各アイテムに縦方向のずらしを適用 */
/* .time-list .item1 {
  transform: translateY(-30px);
}

.time-list .item2 {
  transform: translateY(-80px);
}

.time-list .item3 {
  transform: translateY(0px);
}

.time-list .item4 {
  transform: translateY(-30px);
}

.time-list .item5 {
  transform: translateY(-80px);
}

.time-list .item6 {
  transform: translateY(0px);
}

.time-list .item7 {
  transform: translateY(-30px);
}

.time-list .item8 {
  transform: translateY(-80px);
}

.time-list .item9 {
  transform: translateY(0px);
} */

/* 画像のサイズ調整 */
.time-list img {
  width: 100%;
  height: auto;
  display: block;
}
/* Lightboxのコンテナ全体を制限 */
.lightbox .lb-container {
  max-width: 90vw !important;
  max-height: 90vh !important;
}

/* Lightboxの画像を制限 */
.lightbox .lb-image {
  max-width: 90vw !important;
  max-height: 85vh !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

/* タブレット専用：Lightbox画像を小さく表示 */
@media (min-width: 768px) and (max-width: 1024px) {

  .lightbox .lb-image,
  .lb-image {
    max-width: 450px !important;
    max-height: 650px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .lightbox .lb-container {
    max-width: 450px !important;
  }
}

/* iPad Pro など大きめのタブレット */
@media (min-width: 1024px) and (max-width: 1366px) {

  .lightbox .lb-image,
  .lb-image {
    max-width: 500px !important;
    max-height: 700px !important;
  }
}
/* ここから試し */

.schedule-tree {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.tree-container {
  position: relative;
}

.tree-bg {
  width: 100%;
  height: auto;
  display: block;
}

.ornament {
  position: absolute;
  width: 85px;
  /* オーナメントのサイズ調整 */
  cursor: pointer;
  transition: transform 0.2s;
}

.ornament:hover {
  transform: scale(1.1);
}

/* 位置指定（ツリー上に配置） */
.o17 {
  top: 30%;
  left: 45%;
  transform: translateX(-10%);
}

.o18 {
  top: 50%;
  right: 37%;
  transform: translateX(-10%);
}

.o19 {
  top: 45%;
  left: 42%;
  transform: translateX(-10%);
}

.o20 {
  top: 65%;
  right: 30%;
  transform: translateX(-10%);
}

.o21 {
  top: 60%;
  left: 45%;
  transform: translateX(-10%);
}

.o22 {
  bottom: 10%;
  right: 35%;
  transform: translateX(-10%);
}

.o23 {
  top: 72%;
  left: 25%;
  transform: translateX(-10%);
}

.o24 {
  top: 75%;
  right: 20%;
  transform: translateX(-10%);
}

.o25 {
  top: 75%;
  left: 40%;
  transform: translateX(-10%);
}
@media screen and (max-width: 767px) {
  .ornament {
      width: 70px;
    }
  
    .o17 {
      top: 33%;
    }
    .o18 {
      right: 34%;
    }
    .o19 {
      left: 34%;
    }
    .o21 {
      left: 30%;
    }
    .o23 {
      top: 78%;
      left: 10%;
    }
    .o24 {
      right: 13%;
    }
    .o25 {
      top: 73%;
      left: 30%;
    }
}



/* -----------------------------
  フード
----------------------------- */

.wave::before {
  width: 55%;
  height: 100%;
  background-color: #fff;
  right: -1.5%;
  top: 40%;
}

.wave::after {
  width: 55%;
  height: 109%;
  background-color:#fff;
  left: -1.5%;
  top: 60%;
}

.food .sec-ttl {
  font-size: 44px;
  color: var(--color-secondary);
  padding-bottom: 20px;
  text-align: center;
}

.store-name {
  font-family: "Noto Sans JP";
  padding: 5px 0 20px 0;
  color: var(--color-secondary);
  font-size: 16px;
}
.food-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 calc(-1 * var(--space-unit));
  align-items: stretch;
}
.food-card {
  width: 25%;
  box-sizing: border-box;
  padding: 0 var(--space-unit);
  display: flex;
  flex-direction: column;
}
.food-inner {
  display: inline-block;
  text-align: left;
}

.food-inner img {
  width: 100%;
  height: auto;
  display: block;
}
.food.wave-container {
  background-color: #fff;
  /* 波線と同じ色 */
  position: relative;
  z-index: 0;
}

.wave-wrapper {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
img[src*="wave1.svg"],
img[src*="wave2.svg"],
img[src*="sp_wave2.svg"] {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
  transform: scale(1.05);
  /* ← 少し拡大して余白を隠す */
  transform-origin: center;
}

/* 上の波線と .food の間の隙間をなくす */
.food.wave-container {
  background-color: #fff;
  position: relative;
  z-index: 0;
  margin-top: -1px;
  /* ← 上の波との微妙な隙間を潰す */
}

/* 下の波線との間も完全に密着させたい場合 */
img[src*="wave1.svg"] {
  margin-top: -1px;
  /* 下波とのつなぎ目調整（必要なら） */
}

/* -----------------------------
  セクション03
----------------------------- */
.sec-03 {
  padding: var(--space-section) 0;
  background-color: var(--color-primary);
 
}

.sub-ttl {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding-bottom: var(--space-unit);
  padding-top: 20px;
  color: var(--color-white);
}

.box {
  display: flex;
}

.box-item {
  width: 50%;
  padding: 3%;
}

.basic1 {
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .5);
}

.overview-list {
  display: grid;
  grid-template-columns: 30% 1fr;
  padding: 30px 0 30px;
}

.overview-list dt {
  font-weight: normal;
  padding-left: 0;
  color: var(--color-white);
}
.overview-list dd {
  padding-left: 30%;
  color: var(--color-white);
}

.location-map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  /* もしくは 16 / 9 */
  border: 0;
  padding-top: 35px;
}

.area-ttl {
  color: var(--color-white);
  font-size: 28px;
  padding-bottom: 30px;
}

p.lead {
  color: #fff;
  line-height: 1.7;
}

.treat {
  display: inline-block;
  width: 120px;
  height: 24px;
  line-height: 24px;
  border-radius: 15px;
  background: var(--color-accent);
  text-align: center;
  font-size: 16px;
  color: var(--color-white);
  margin-left: 10px;
}

/* -----------------------------
  セクション04
----------------------------- */
.sec-04 {
  padding: 50px 0;
  background-color: #e1e4d1;
}
.sec-04 .sec-ttl {
  color: var(--color-secondary);
}
.sec-04 .wrapper {
  max-width: 1000px;
}

/* -----------------------------
  セクション05
----------------------------- */
.sec-05 {
  padding-bottom: var(--space-section);
}

.sec-05 .sec-ttl{
  font-size: 32px;
}
/* ----------------------------------
	協賛
---------------------------------- */

.footer_content::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
}

.footer_content {
  color: #fff;
  text-align: center;
  padding: 60px 15px 30px;
}

.footer_campany {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  
}

.campany_title {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 24px;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
  width: 100%;
}

.campany_title::before,
.campany_title::after {
  background: #fff;
  content: '';
  display: block;
  height: 1px;
  width: 3rem;
}

.campany_list {
  max-width: 1200px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.campany_list>li img {
  height: auto;
  width: 500px;
}

.support_list {
  max-width: 1000px;
  height: auto;
  display: block;
  padding: 0 15px;
  margin: 0 auto 30px;
}

.support_list>li img {
  width: 400px;
  height: auto;
}

.sponsor_list {
  max-width: 1000px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
}


.sponsor_list_c {
  max-width: 1000px;
  height: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.sponsor_list_d {
  max-width: 1000px;
  height: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}


.sponsor_list_d::after {
  content: "";
  display: block;
  width: 400px;
}

.sponsor_list_d li {
  margin-bottom: 30px;

}

.sponsor_list_d .sponsor_d:nth-child(n+9) {
  transform: scale(0.8);
  /* 80%に縮小 */
  transform-origin: center;
  /* 中央基準で縮小 */
}

.sponsor_a img {
  width: 600px;
  height: auto;
  margin-bottom: 30px;
}

.sponsor_b img {
  width: 500px;
  height: auto;
  margin-bottom: 25px;
}

.sponsor_c img {
  width: 300px;
  height: auto;
}


.footer_secretariat {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
  margin-bottom: 15px;
}

.footer_secretariat>span {
  font-size: 1.125rem;
}

.footer_attention {
  margin: 20px 0;
  text-align: center;
}

@media (max-width:780px) {
  .footer_campany {
    width: 100%;
    margin-inline: auto;
  }
  .campany_title {
    font-size: 24px;
  }

  .campany_list,
  .support_list,
  .sponsor_list {
    width: 100%;
    display: block;
    margin: 0 auto 30px;
  }

  .sponsor_list_c {
    margin: 50px 0px;
  }

  .sponsor_list_d {
    width: 100%;
    /* display: block; */
    margin: 0px auto;
  }

}

@media (max-width:620px) {
  .campany_list>li img {
    height: auto;
    width: 98%;
  }

  .sponsor_a img {
    width: 98%;
    height: auto;
  }

  .sponsor_b img {
    width: 80%;
    height: auto;
    margin: 30px 0px;
  }

  .sponsor_c img {
    width: 70%;
    height: auto;
    margin: 20px auto 0px;
  }


  .campany_title {
    font-size: 20px;
  }

}

@media (max-width:480px) {
  .campany_list>li img {
    width: 100%;
    height: auto;
  }

  .support_list>li img {
    width: 90%;
    height: auto;
  }

  .sponsor_list_c {
    margin: 10px 0px;
    flex-direction: column;
  }

  
  .sponsor_list_d::after {
    display: none;
  }

  .campany_list,
  .support_list,
  .sponsor_list {
    width: 90%;
  }

  .sponsor_a img {
    width: 90%;
    height: auto;
  }

  .sponsor_b img {
    width: 85%;
    height: auto;
    margin: 15px 0px;
  }

  .sponsor_c img {
    width: 80%;
    height: auto;
    margin: 20px auto 0px;
  }

  

  .footer_secretariat {
    font-size: 1.125rem;
  }
  .footer_content {
    padding: 50px 15px 30px;
  }

}
/* -----------------------------
  Contact
----------------------------- */
.contact {
  padding-top: 50px;
}

/* -----------------------------
  フッター
----------------------------- */
.footer-ttl {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding-bottom: var(--space-unit);
  padding-top: 30px;
  color: var(--color-white);
}

.f-company {
  font-size: 16px;
  color: #fff;
  text-align: center;
}

.footer .lead {
  text-align: center;
  font-size: 14px;
  color: var(--color-white);
  line-height: 1.7;
  padding-bottom: var(--space-section);
}
.fa-phone:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f095";
  color: var(--color-white);
  padding-right: 10px;
}

.copyright {
  background: var(--color-secondary);
  text-align: center;
  color: var(--color-white);
}


/* アニメーション関連のCSS */
.f-up {
  opacity: 0;
}

.f-up.fadeup {
  animation: fadeupanime 1s forwards;
}

@keyframes fadeupanime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* -----------------------------
  レスポンシブ - タブレット
----------------------------- */

@media screen and (min-width: 768px) and (max-width: 1199px) {
    .opening-container {
      max-width: 420px;
    }
    .wrapper {
        width: 768px;
    }
    
    .mv .logo img {
      width: 250px;
      padding: var(--space-unit);
    }
    
    .header .wrapper {
      padding: 0 var(--space-unit);
      display: block;
      height: auto;
    }

    .header {
      padding-bottom: 0;
    }

    /* ナビゲーション（TAB） */
    .nav {
      height: 100%;
      display: none;
    }

    .nav-list {
      width: 100%;
      flex-direction: column;
    }

    .nav-list>li {
      width: 100%;
    }

    /* .pagetop {
      display: none;
    } */

    .sec-ttl {
      font-size: 40px;
    }
    .sec-05 .sec-ttl {
      font-size: 30px;
    }
    .food .sec-ttl {
      font-size: 40px;
    }


    /* メインビジュアル（TB） */

  

    /* セクション2（TB） */
    .card {
        width: 50%;
    }

    .card-txt {
      padding-bottom: 0;
    }

    .box-list {
        justify-content: center;
    }

    .box {
        width: 100%;
    }

    .sec-03 .wrapper {
        width: 100%;
    }

    .footer-container {
      padding: 0 15%;
    }

    .address .lead {
      padding-bottom: 0;
    }

    .footer-box {
      padding-top: 0;
    }

    /* セクション03 */
    .area-ttl {
      font-size: 24px;
    }

    /* フード */
    .food-card {
      width: 33.333%;
    }
   
}

/* -----------------------------
  レスポンシブ - スマートフォン
----------------------------- */
@media screen and (max-width: 767px) {
  .wrapper {
    width: 100%;
  }

  .header {
    padding: 0;
  }

  .header .wrapper {
    height: auto;
    width: 100%;
  }

  .mv .container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }


  .mv .container h2 {
    position: absolute;
    top: 55%;
    left: 3%;
    z-index: 20;
    line-height: 1.6;
  }

  .sec-ttl {
    font-size: 38px;
  }
  .sec-05 .sec-ttl {
    font-size: 26px;
  }
  .food .sec-ttl {
    font-size: 38px;
  }
  .sub-ttl {
    font-size: 16px;
    padding-bottom: 10px;
    padding-top: 10px;
  }

  p .lead {
    text-align: left;
    line-height: 1.7;
    font-size: 13px;
  }

  .card-txt {
    line-height: calc(26 / 14);
    font-size: 13px;
  }


  .logo {
    /* margin: 10px 0; */
    padding: 15px;
  }

  .logo img {
    margin: 0;
    width: 200px;
  }

  /* .pagetop {
    display: none;
  } */

  
    /* ナビゲーション（SP） */
    .nav {
      height: 100%;
      display: none;
      width: 100%;
    }

    .nav-list {
      flex-direction: column;
    }

    .nav-list>li {
      width: 100%;
    }
    
    /* メインビジュアル(sp) */
    .slider_txt {
      font-size: 8vw;
      padding: 0;
      height: fit-content;
    }

    .mv .container h2 {
      bottom: -50%;
    }

    /* クリスマスマーケットとは */
    .opening {
      background-image: url(../img/sp_opening.png);
      padding: 50px 20px;
    }

    /* セクション01 (sp) */
    

    /* セクション02（SP） */
    .sec-02 {
      padding-bottom: 30px;
      padding-top: 50px;
    }

    .card-list {
      flex-direction: column;
    }

    .card {
      width: 100%;
    }

    .card+.card {
      padding-top: 30px;
    }

    .sec-02 h2 {
      margin: 0;
    }
    /* timetable */
    .timetable .lead {
      font-size: 12px;
    }

    
    /* フード */
    .food-card {
      width: 50%;
    }
    .store-name {
      font-size: 16px;
    }

    /* セクション03 (sp) */
    
    .box {
      display: block;
    }

    .box-item {
      width: 100%;
    }

    .sec-03 {
      padding-bottom: 50px;
    }

    .sec-03 .top-line {
      margin-top: 50px;
    }
    
    .overview-list {
      grid-template-columns: 80px 1fr;
    }

    .overview-list dd {
      padding-left: 20%;
    }
    .overview-list dt {
      padding-left: 0;
    }

    .area-ttl {
      font-size: 24px;
      padding-bottom: 20px;
    }

    .treat {
      margin-left: 0;
      width: 110px;
    }

    .box-item img {
      padding-bottom: 30px;
    }

    .location-map iframe {
      padding-top: 0;
      margin-bottom: 30px;
    }



    /* フッター (sp) */

    .footer-container {
      padding: 0 15%;
    }
    .footer-box {
      flex-direction: column;
      align-items: center;
      padding-top: var(--space-unit);
    }

    .footer-box img {
      width: 190px;
      padding-bottom: var(--space-unit);
    }
    
    .footer-container .lead{
      text-align: center;
      font-size: 13px;
      padding-bottom: 10px;
    }

    .address {
      text-align: center;
    }

}
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}


/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}

