@charset "UTF-8";

.responsive {
  position: relative;
  z-index: 1;
  max-width: 460px;
  margin: 0 auto;
  min-height: 100vh;
  overflow: hidden;
}

@media screen and (min-width: 461px) and (max-width: 767px) {
  .responsive {
    width: 100%;
    margin: 0 auto;

    box-shadow: 0 0 35px rgba(56, 56, 58, 0.18);
  }
}


@media screen and (min-width: 768px) and (max-width: 960px) {
  .responsive {
    width: 100%;
    margin-left: 0;
    margin-right: auto;

    zoom: 0.9;

    box-shadow: 0 0 35px rgba(56, 56, 58, 0.18);
  }
}


.talkappibot {
  display: none;
}

/*----- PC背景 -----*/
/* sp(非表示) */
.pc-bg-logo {
  display: none;
}

.pc-side-nav {
  display: none;
}

/* pc表示 */
@media screen and (min-width: 1440px) {
  html {
    scroll-behavior: smooth;
  }

    .responsive-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: visible;
  }

  .responsive {
    position: relative;
    z-index: 1;
    margin: 0 auto;

    zoom: 1.06;

    box-shadow: 0 0 35px rgba(56, 56, 58, 0.18);
  }

  body {
    background-color: #fff;
    background-image:
      linear-gradient(rgba(158, 158, 159, 0.2) 1.5px, transparent 1px),
      linear-gradient(90deg, rgba(158, 158, 159, 0.2) 1.5px, transparent 1px);

    background-position:
      left top,
      left top;

    background-size:
      61px 63px,
      61px 63px;

    background-repeat:
      repeat,
      repeat;

    background-attachment:
      fixed;
  }

  .pc-bg-logo {
    display: block;
    position: fixed;
    left: 9%;
    top: 50%;
    width: 20%;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
  }

  .pc-bg-main {
    display: block;
    width: 80%;
    height: auto;
  }

  .pc-bg-sub {
    position: absolute;
    width: 27%;
    height: auto;
  }

  .pc-bg-sub01 {
    left: 54%;
    top: 45%;
    animation: floatright07 3s ease-in-out infinite;
  }

  .pc-bg-sub02 {
    left: -4%;
    top: 20%;
    animation: floatright08 3.5s ease-in-out infinite;
  }


  .pc-side-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;

    position: fixed;
    top: 50%;
    left: calc(50% + 250px + ((100vw - 460px) / 4));
    transform: translate(-50%, -50%);
    z-index: 10;
  }

  .pc-side-nav h2{
    color: #052b36;
    font-size: clamp(28px, 1.8vw, 33px);
    font-weight: 900;
    transform: scaleX(1.2);
    letter-spacing: 0.1em;
    margin: 3% 11% 0;
    width: fit-content;
    margin: 0 auto;
  }

  .pc-side-nav a {
    display: block;
    min-width: 50%;
    padding: 14px 20px;

    background-color: #fff;
    border: 2px solid #e29700;
    box-shadow: 4px 4px 0 rgba(236, 178, 49, 0.6);

    color: #052b36;
    text-decoration: none;
    font-size: clamp(14px, 1.4vw, 20px);
    font-weight: 700;
    text-align: center;
    white-space: nowrap;

    transition:
      transform .25s ease,
      box-shadow .25s ease,
      background-color .25s ease;
  }

  .pc-side-nav a:hover {
    transform: translateY(-3px);
    box-shadow: 7px 10px 18px rgba(0, 0, 0, .18);
    background: #fffaf1;
  }

  .pc-side-nav img {
    position: absolute;
    z-index: 3;
    pointer-events: none;
    height: auto;
  }

  .pc-bg-right07 {
    width: 55%;
    top: -1px;
    left: -110px;
    animation: floatright07 3.5s ease-in-out infinite;
  }

  .pc-bg-right08 {
    width: 55%;
    bottom: 20px;
    right: -150px;
    animation: floatright08 4.2s ease-in-out infinite;
  }

  .pc-bg-right09 {
    width: 35%;
    top: 130px;
    right: -110px;
    animation: floatright09 3.8s ease-in-out infinite;
  }


  @keyframes floatright07 {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-8px);
    }
  }

  @keyframes floatright08 {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(6px);
    }
  }

  @keyframes floatright09 {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-5px);
    }
  }
}


@media screen and (min-width: 961px)  and (max-width: 1439px){
  html {
    scroll-behavior: smooth;
  }

    .responsive-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: visible;
  }

  .responsive {
    position: relative;
    z-index: 1;
    margin: 0 auto;

    box-shadow: 0 0 35px rgba(56, 56, 58, 0.18);
  }

  body {
    background-color: #fff;
    background-image:
      linear-gradient(rgba(158, 158, 159, 0.2) 1.5px, transparent 1px),
      linear-gradient(90deg, rgba(158, 158, 159, 0.2) 1.5px, transparent 1px);

    background-position:
      left top,
      left top;

    background-size:
      61px 63px,
      61px 63px;

    background-repeat:
      repeat,
      repeat;

    background-attachment:
      fixed;
  }

  .pc-bg-logo {
    display: block;
    position: fixed;
    left: calc((100vw - 420px) / 4);

    top: 50%;
    width: 20%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
  }

  .pc-bg-main {
    display: block;
    width: 95%;
    height: auto;
  }

  .pc-bg-sub {
    position: absolute;
    width: 27%;
    height: auto;
  }

  .pc-bg-sub01 {
    left: 65%;
    top: 47%;
    animation: floatright07 3s ease-in-out infinite;
  }

  .pc-bg-sub02 {
    left: -2%;
    top: 22%;
    animation: floatright08 3.5s ease-in-out infinite;
  }


  .pc-side-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;

    position: fixed;
    top: 50%;
    left: calc(50% + 250px + ((100vw - 510px) / 4));
    transform: translate(-50%, -50%);
    z-index: 10;
  }

  .pc-side-nav h2{
    color: #052b36;
    font-size: clamp(25px, 2.5vw, 35px);
    font-weight: 900;
    transform: scaleX(1.2); /* 1.2倍横長 */
    letter-spacing: 0.1em;
    margin: 3% 11% 0;

    position: relative;
    top: 8px;
  }

  .pc-side-nav a {
    display: block;
    min-width: 50%;
    padding: 13px 14px;

    background-color: #fff;
    border: 2px solid #e29700;
    box-shadow: 4px 4px 0 rgba(236, 178, 49, 0.6);

    color: #052b36;
    text-decoration: none;
    font-size: clamp(13.5px, 1.4vw, 20px);
    font-weight: 700;
    letter-spacing: -0.1rem;
    text-align: center;
    white-space: nowrap;

    transition:
      transform .25s ease,
      box-shadow .25s ease,
      background-color .25s ease;
  }

  .pc-side-nav a:hover {
    transform: translateY(-3px);
    box-shadow: 7px 10px 18px rgba(0, 0, 0, .18);
    background: #fffaf1;
  }

  .pc-side-nav img {
    position: absolute;
    z-index: 3;
    pointer-events: none;
    height: auto;
  }

  .pc-bg-right07 {
    display: none;
  }

  .pc-bg-right08 {
    display: none;
  }

  .pc-bg-right09 {
    display: none;
  }


  @keyframes floatright07 {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-8px);
    }
  }

  @keyframes floatright08 {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(6px);
    }
  }

  @keyframes floatright09 {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-5px);
    }
  }
}

@media screen and (min-width: 768px) and (max-width: 960px) {

  html {
    scroll-behavior: smooth;
  }

  body {
    background-color: #fff;
    background-image:
      linear-gradient(rgba(158, 158, 159, 0.2) 1.5px, transparent 1px),
      linear-gradient(90deg, rgba(158, 158, 159, 0.2) 1.5px, transparent 1px);

    background-size:
      61px 63px,
      61px 63px;

    background-repeat: repeat;
    background-attachment: fixed;
  }

  .pc-bg-logo {
    display: none;
  }

  .pc-side-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;

    position: fixed;
    top: 32%;
    left: calc(460px + ((100vw - 505px) / 2) - 110px);
    right: auto;

    transform: translateY(-50%, -50%);
    z-index: 10;
  }

  .pc-side-nav h2{
    color: #052b36;
    font-size: 25px;
    font-weight: 900;
    transform: scaleX(1.2); /* 1.2倍横長 */
    letter-spacing: 0.1em;
    margin: 3% 34% 0;

    width: fit-content;
    margin: 0 auto;
  }

  .pc-side-nav a {
    display: block;
    min-width: 150px;
    padding: 11px 14px;

    background-color: #fff;
    border: 2px solid #e29700;
    box-shadow: 4px 4px 0 rgba(236, 178, 49, 0.6);

    color: #052b36;
    text-decoration: none;
    font-size: clamp(13px, 1.8vw, 17px);
    font-weight: 700;
    text-align: center;
    white-space: nowrap;

    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease,
      background-color 0.25s ease;
  }

  .pc-side-nav a:hover {
    transform: translateY(-3px);
    box-shadow: 7px 10px 18px rgba(0, 0, 0, 0.18);
    background-color: #fffaf1;
  }

  .pc-side-nav img {
    position: absolute;
    z-index: 3;
    pointer-events: none;
    height: auto;
  }

  .pc-bg-right07 {
    width: 42%;
    top: 10px;
    left: -37px;
  }

  .pc-bg-right08 {
    width: 42%;
    bottom: -25px;
    right: -47px;
  }

  .pc-bg-right09 {
    display: none;
  }
}

@media screen and (min-width: 461px) and (max-width: 767px) {

  html {
    scroll-behavior: smooth;
  }

    body {
    background-color: #fff;
    background-image:
      linear-gradient(rgba(158, 158, 159, 0.2) 1.5px, transparent 1px),
      linear-gradient(90deg, rgba(158, 158, 159, 0.2) 1.5px, transparent 1px);

    background-size:
      61px 63px,
      61px 63px;

    background-repeat: repeat;
    background-attachment: fixed;
  }

  .pc-bg-logo {
    display: none;
  }

  .pc-side-nav {
    display: none;
  }

}


/*----- フォント -----*/
html {
  font-size: 8px;
}

body {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #38383a;
}

h1,
h2,
h4,
button {
  font-family: "Noto Sans JP", sans-serif;
}

h1,
h2 {
  font-size: 21px;
  font-weight: 700;
}

button {
  font-weight: 600;
  color: #38383a;
}

/*zen-kaku-gothic*/
.zen-kaku-gothic-new-light {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-kaku-gothic-new-medium {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.zen-kaku-gothic-new-bold {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}


/*----- セクション -----*/
section {
  margin-top: 15px;
}

/*----- アニメーション -----*/
.animation-in {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(4px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    filter 0.8s ease;
}

.animation-in.show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.koma-ashirai.animation-in {
  transform: translate(-30%, calc(-6% + 10px));
}

.koma-ashirai.animation-in.show {
  transform: translate(-30%, -6%);
}

.animation-in.delay-1 {
  transition-delay: 0.3s;
}

.animation-in.delay-2 {
  transition-delay: 0.4s;
}

.animation-in.delay-3 {
  transition-delay: 0.5s;
}

.animation-in.delay-4 {
  transition-delay: 0.6s;
}

.animation-in.delay-5 {
  transition-delay: 0.7s;
}

/*----- 背景 -----*/
/* 白の背景 */
.back-white {
  position: relative;
  background-color: #fff;
  height: auto;
  margin-top: -90px;
  padding-bottom: 0;
  margin-bottom: 0;
  overflow: visible;
  z-index: 1;
}

.back-white::before {
  content: "";
  position: absolute;
  top: -2%;
  left: 50%;
  width: 100%;
  height: 50px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 0;
}

/* カーブ上を流れる料理 */
.food-curve-flow {
  position: absolute;
  top: -65px;
  left: 0;
  width: 100%;
  height: 110px;
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
}

.food-curve-track {
  display: flex;
  width: max-content;
  visibility: hidden;
  animation: foodFlow 87s linear infinite;
  animation-play-state: paused;
}

.food-curve-flow.is-ready .food-curve-track {
  visibility: visible;
  animation-play-state: running;
}

.food-curve-set {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.food-curve-set img {
  width: 105px;
  height: 75px;
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes foodFlow {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/*格子状（グレー）*/
.grid-bg {
  position: relative;
  z-index: 1;
  background-color: #fff;
  background-image:
    linear-gradient(rgba(158, 158, 159, 0.3) 1.1px, transparent 1px),
    linear-gradient(90deg, rgba(158, 158, 159, 0.3) 1.1px, transparent 1px);

  background-size: 41px 43px;
}

/*格子状（ブルー）*/
.grid-bl {
  position: relative;
  overflow: visible;
  padding: 80px 0 0;
}

/* 青背景 */
.grid-bl::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #7bb5ca;
  z-index: 1;
}

/* 格子線 */
.grid-bl::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 139, 139, 0.5) 1px, transparent 1.5px),
    linear-gradient(90deg, rgba(139, 139, 139, 0.5) 1px, transparent 1.5px);

  background-size: 41px 43px;
  z-index: 1;
  pointer-events: none;
}

.grid-bl.bg-show::before {
  opacity: 1;
  filter: blur(0);
}

/* ロゴ以外の中身だけ前に出す */
.grid-bl> :not(.shobu-line) {
  position: relative;
  z-index: 2;
}

/* map.travelの背景 */
.map-travel-bg {
  position: relative;
  z-index: 0;
}

.map-travel-bg::before {
  content: "";
  position: absolute;
  top: 270px;
  left: 0;
  right: 0;
  bottom: -95px;

  background-color: rgba(255, 242, 176, 0.45);
  mix-blend-mode: multiply;

  clip-path: polygon(0 45px,
      10% 30px,
      25% 15px,
      50% 0,
      75% 15px,
      90% 30px,
      100% 45px,
      100% 100%,
      0 100%);

  z-index: -1;
  pointer-events: none;
}


/* SHOBU流れるロゴ */
.shobu-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(150px, 18vw, 160px);
  overflow: hidden;
  transform: translateY(-32%);
  /* grid-blの境目に半分重ねる */
  z-index: 4;
  pointer-events: none;
}

.shobu-track {
  display: flex;
  width: max-content;
  animation: shobu-flow 20s linear infinite;
}

.shobu-set {
  display: flex;
  flex-shrink: 0;
}

/* SHOBU流れるロゴ 画像 */
.shobu-track img {
  width: clamp(360px, 45vw, 400px);
  height: auto;
  mix-blend-mode: multiply;
  opacity: 0.8;
  flex-shrink: 0;
}

/* SHOBU流れるロゴ 画像（sp非表示　PCでは表示） */
.pc-logo-only {
  display: none;
}

@keyframes shobu-flow {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/*----- ベースのフォントサイズ -----*/
p {
  font-size: 15.5px;
  line-height: 1.7;
  font-weight: 400;
}

.text-nowrap{
  white-space: nowrap;
}

/*----- トップビジュアル -----*/
.top-visual {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: -2;
}

.img-top {
  display: block;
  width: 100%;
  height: auto;
}

.img-mark {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 100%;
  height: auto;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.95);
  animation: markFadeIn 1s ease forwards;
}

@keyframes markFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.95);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/*----- リード文 -----*/
.lead {
  padding: 9% 7% 5px;
  margin: 0 5%;
}

@media screen and (max-width: 460px) {
  .lead {
    padding: 9% 5% 5px;
  }
}

h1 {
  position: relative;
  text-align: left;
  white-space: nowrap;
  font-size: clamp(16px, 6vw, 21px);
  color: #052b36;
  z-index: 2;
}

.font-orange {
  color: #e29700;
}

.koma-ashirai {
  position: absolute;
  width: 13%;
  z-index: 1;
  transform: translate(-30%, -6%);
}

.lead p {
  text-align: left;
  font-weight: 500;
  line-height: 1.8;
  text-align: justify;
}

.lead-a {
  font-weight: bold;
  background: linear-gradient(transparent 73%,
      rgba(236, 178, 48, 0.7) 65%);
  display: inline;
}

/*----- タブ -----*/
.shobu-tab {
  position: relative;
  padding: 7% 7% 2%;
  margin: 0 5%;
}

.shobu-tab h2 {
  text-align: left;
  white-space: nowrap;
  font-size: clamp(16px, 6vw, 21px);
  color: #052b36;
  margin: 10px 0;
}

.chumoku-mark {
  position: absolute;
  width: 10%;
  left: 4%;
  top: 22px;
}

.tab-fukidashi {
  position: absolute;
  width: 19%;
  opacity: 0;
  transform: translateY(12px) scale(0.85);
}

.tab-fukidashi.show {
  animation: fukidashiPop 0.7s cubic-bezier(.2, 1.5, .4, 1) forwards;
}

.tab-fukidashi.f01 {
  top: 5%;
  right: 32%;
  width: 18%;
  animation-delay: 0.9s;
}

.tab-fukidashi.f02 {
  top: 1.5%;
  right: 11%;
  animation-delay: 1.15s;
}

.tab-fukidashi.f03 {
  width: 17.5%;
  top: 17%;
  right: -2%;
  animation-delay: 1.3s;
}

@keyframes fukidashiPop {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.85);
  }

  60% {
    opacity: 1;
    transform: translateY(-6px) scale(1.08);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.shobu-tab p {
  margin: 3px 0 5%;
    letter-spacing: 0.05em;
}


/* タブ */
.tab-area {
  display: flex;
  gap: 4px;
}

.tab-btn {
  flex: 1;
  padding: 10px 0;
  border: none;
  background: #eee;
  cursor: pointer;
  font-size: 16px;
  border-radius: 10px 10px 0 0;

  transition:
    background-color 0.25s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}


/* 選択中のタブ */
.tab-btn.active {
  position: relative;
  background: #ecb230;
  z-index: 1;
  border: 0.24rem solid #38383a;
  border-bottom: none;
}


/* 背景色だけ下に伸ばす */
.tab-btn.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.5rem;
  height: 0.7rem;
  background: #ecb230;

  transition:
    background-color 0.3s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

/* 勝負スイーツ */
.tab-btn.tab-sweets.active,
.tab-btn.tab-sweets.active::after {
  background: #e698a2;
}

/* 勝負ドリンク */
.tab-btn.tab-drink.active,
.tab-btn.tab-drink.active::after {
  background: #78bcb7;
}

/* タブアニメーション */
.tab-label {
  display: inline-block;
  animation: tabLabelJump 3.6s ease-in-out infinite;
}

.tab-sweets .tab-label {
  animation-delay: 0.3s;
}

.tab-drink .tab-label {
  animation-delay: 0.6s;
}

@keyframes tabLabelJump {
  0%,
  12%,
  100% {
    transform: translateY(0);
  }

  4% {
    transform: translateY(-7px);
  }

  8% {
    transform: translateY(1px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tab-label {
    animation: none;
  }
}

.tab-content {
  display: none;
  position: relative;
  border: 0.24rem solid #38383a;
  background-color: #ecb230;
  height: 680px;
  padding: 80px 4% 6%;
  box-sizing: border-box;
}

#tab2 {
  background-color: #e698a2;
}

#tab3 {
  background-color: #78bcb7;
}

.tab-comment {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 16%);
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-size: 1.8rem;
  font-weight: 500;
  z-index: 2;
}

.tab-content.active {
  display: block;
}

.tab-content .box-1 {
  position: relative;
  background-color: #fff;
  width: 100%;
  height: 100%;
  padding: 0 3% 10%;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
}

/* 下に続きがあるように見せる */
.tab-content .box-1::after {
  content: "";
  position: absolute;
  left: 3%;
  right: 3%;
  bottom: 11.1%;
  display: block;
  height: 25px;
  background: linear-gradient(rgba(255, 255, 255, 0),
      #fff);
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .tab-content .box-1::after {
    bottom: 12.2%;
    height: 27px;
  }
}

/* スクロールバー全体 */
.scroll {
  height: calc(100% - 30px);
  overflow-y: auto;
  margin: 0 0.5% 8%;
  box-sizing: border-box;
  z-index: 2;

    /* Firefox */
  scrollbar-width: none;

  /* IE・旧Edge */
  -ms-overflow-style: none;
}

/* Chrome・Edge・Safari */
.scroll::-webkit-scrollbar {
  display: none;
}

.scroll-text {
  position: absolute;
  font-family: "Noto Sans JP", sans-serif;
  top: 8px;
  right: 1.7%;
  font-size: 1rem;
  font-weight: 600;
  z-index: 3;
}

.arrow {
  position: absolute;
  top: 1.5em;
  left: 50%;
  transform: translateX(-50%);
  width: 1em;
  height: 2.2em;
}

.arrow span {
  position: absolute;
  left: 0;
  width: 0.8em;
  height: 0.8em;
  border-right: 2px solid rgba(56, 56, 58, 0.25);
  border-bottom: 2px solid rgba(56, 56, 58, 0.25);
  transform: rotate(45deg);
  border-radius: 2px;
  animation: arrowBlink 3s infinite;
}

.arrow span:nth-child(1) {
  top: 0;
  animation-delay: 0.8s;
}

.arrow span:nth-child(2) {
  top: 0.6em;
  animation-delay: 1.5s;
}

.arrow span:nth-child(3) {
  top: 1.3em;
  animation-delay: 2.3s;
}

@keyframes arrowBlink {

  0%,
  100% {
    border-color: rgba(56, 56, 58, 0.25);
  }

  40% {
    border-color: #38383a;
  }
}


/* 画像 */
.img-food {
  display: block;
  max-width: 100%;
  height: auto;
  padding: 3% 0 0;
  margin: 0 auto;
  filter: drop-shadow(5px 5px 5px #aaa);
}

.menu-allergy {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  margin: 5% 0;
  width: 100%;
}

.menu-allergy img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* 料理名 */
h3 {
  font-size: 2.2rem;
  letter-spacing: -0.09rem;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

/* 料理説明 */
.description {
  line-height: 1.8;
  margin: 7% 0 8%;
  text-align: justify;
}

/* 点線 */
.boder-dot {
  width: 90%;
  margin: 7% auto;
  height: 3.5px;
  background-image: radial-gradient(circle, #666669 1.5px, transparent 1.8px);
  background-size: 10px 3px;
  background-repeat: repeat-x;
}

/* 店名 */
.lest-name {
  font-weight: bold;
  font-size: 1.8em;
  line-height: 1.4;
  margin: 3% 0 0;
}

.lest {
  line-height: 1.5;
  font-size: 1.7em;
  margin: 2% 0 10%;
}

/* マップアイコン */
.map-icon {
  width: 0.85em;
  height: auto;
  vertical-align: -0.1em;
  margin-right: 0.2em;
}

/* 電話アイコン */
.phone-icon {
  width: 0.95em;
  height: auto;
  vertical-align: -0.1em;
  margin-right: 0.2em;
}

/* 営・休アイコン */
.eigyo-icon{
  width: 1.09em;
  height: auto;
  vertical-align: -0.2em;
  margin-right: 0.2em;
}

/* 並び */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0 5%;
}

/* 吹き出し */
.fukidashi {
  position: relative;
  width: 80%;
  padding: 6% 2%;
  border: 2px solid #38383a;
  border-radius: 6px;
  background-color: #fff;
  margin: 1.3rem auto 1.5rem;

  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;

  &::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 15px;
    height: 15px;
    box-sizing: border-box;
    background-color: #fff;
    rotate: 135deg;
    translate: -50% 0;
  }

  &::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 15px;
    height: 15px;
    box-sizing: border-box;
    border: 2px solid;
    border-color: #333333 #333333 transparent transparent;
    rotate: 135deg;
    translate: -50% 0;
  }
}

.fukidashi.fukidashi-tabtop {
  margin-top: 8%;
}

.fukidashi.show {
  opacity: 1;
  transform: translateY(0);
}

/* サイドメニュー */
.sidemenu {
  position: relative;
  text-align: center;
  margin: 1rem auto;
}

.sidemenu .sidemenu-border {
  position: absolute;
  left: -6%;
  right: -5.5%;
  top: 28%;
  transform: translateY(-50%);
  background: repeating-linear-gradient(-45deg, #f6d998 0 5px, #ecb231 5px 10px);
  width: auto;
  margin: 1.8rem auto;
  padding: 0 2.5%;
  height: 15px;
  z-index: 0;
}

.sidemenu h4 {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 2.1rem;
  font-weight: 600;
  background-color: #fff;
  padding: 6% 2rem;
  margin: 0;
}

.sidemenu .fukidashi {
  z-index: 1;
  border: 2px solid #ecb231;

  &::after {
    border-color: #ecb231 #ecb231 transparent transparent;
  }
}

.sidemenu-border1 {
  background: repeating-linear-gradient(-45deg, #f6d998 0 5px, #ecb231 5px 10px);
  margin: 1.5rem -5.5% 1.5rem;
  height: 15px;
}

/* ----アレルギー---- */
.allergy {
  margin: 0 8% 10%;
  padding: 13% 0 0;
  color: #fff;
  text-align: left;
}

.allergy-box {
  position: relative;
  z-index: 1;
  padding: 5% 3.5%;
  background-color: #4087a0;
  box-sizing: border-box;
  clip-path: polygon(20px 0,
      100% 0,
      100% 100%,
      0 100%,
      0 20px);
}

.allergy-box-wrap {
  position: relative;
  margin: 0 auto;
}

.allergy-box-wrap::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 100%;
  height: 100%;
  border: 2px solid #4087a0;
  clip-path: polygon(20px 0,
      100% 0,
      100% 100%,
      0 100%,
      0 20px);

  box-sizing: border-box;
  z-index: 0;
}

.allergy h2 {
  margin: 0 3% 3%;
}

.allergy p {
  line-height: 1.4;
  margin: 0 3%;
}

.allergy-icon {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 5% auto 6%;
  gap: 4% 0;
  width: 100%;
}

.allergy-item {
  text-align: center;
  min-width: 0;
}

.allergy-item img {
  display: block;
  width: 80%;
  height: auto;
  margin: 0 auto;
}

.allergy-item p {
  margin: 4px 0 0;
  font-size: 1.6rem;
  line-height: 1.3;
  text-align: center;
}

.allergy-font {
  display: block;
  font-size: 1.4rem;
  letter-spacing: -0.12em;
  white-space: nowrap;
}


/*----- マップ -----*/
.map {
  position: relative;
  margin: 3% 7% 13%;
  box-sizing: border-box;
}

.map-text {
  position: relative;
  height: 33px;
  margin: 0 auto;
  text-align: center;
  z-index: 3;
}

.map-text span {
  position: absolute;
  transform-origin: center bottom;
  font-size: 14.5px;
  font-weight: 700;
  white-space: pre;
}

.map h2 {
  text-align: center;
  margin: 2% 0 5%;
}

.font-box {
  color: #fff;
  background-color: #ea8603;
  padding: 3px 5.5px;
  margin: 0 3px;
}

.map iframe {
  width: 100%;
  height: 400px;
  display: block;
  border-radius: 25px;
  border: 1.5px solid #38383a;
  box-shadow: 5px 5px 0 rgba(56, 56, 58, 0.8);
  overflow: hidden;
  z-index: 1;
}


/*----- 路面電車とバス -----*/
.travel {
  width: 100%;
  margin: 0 auto 20%;
  padding: 0 6%;
  text-align: center;
  box-sizing: border-box;
}

.travel h2 {
  margin: 0 auto 8%;
  color: #284b7f;
  line-height: 1.5;
}

.travel-box-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.travel-box {
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding: 3% 1%;
  background-color: #fff;
  border-radius: 20px;
  box-sizing: border-box;
}

.travel-title {
  position: absolute;
  top: 0;
  left: 35%;
  transform: translateY(-50%);

  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 3%;
  font-weight: 700;
}

.travel img {
  width: 1.4em;
  height: auto;
  margin-right: 3px;
  vertical-align: middle;
}

.travel a {
  display: block;
  color: #4087a0;
  font-size: 1.8rem;
  margin: 3% 0;
  padding: 0 2%;
}


/*----- 協賛社 -----*/
.kyosan {
  width: 100%;
  text-align: left;
}

.kyosan-box {
  position: relative;
  width: 92%;
  margin: 5% auto;
  padding: 18% 4% 5%;
  background: #fff;
  border: 1.5px solid #38383a;
  box-sizing: border-box;
}

/* Special Thanks */
.thanks-label {
  position: absolute;
  top: -4.7%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  padding: 1.2% 4% 1.6%;
  background: #fff;
  border: 1.5px solid #38383a;
  font-size: 1.7rem;
  font-weight: 700;
  z-index: 1;
}

.thanks-label::before {
  content: "";
  position: absolute;
  width: 5%;
  height: 1.5px;
  top: 91.5%;
  left: 45%;
  border: 1.7px solid #fff;
  z-index: 2;
}

.thanks-label::after {
  content: "";
  position: absolute;
  width: 8%;
  height: 1px;
  top: 113%;
  left: 42.7%;
  transform: rotate(60deg);
  background-color: #38383a;
  z-index: 3;
}

.thanks-label .lead-a {
  background: linear-gradient(transparent 70%,
      rgba(236, 178, 48, 0.8) 70%);
}

/* オレンジタイトル全体の位置 */
.kyosan-title {
  position: absolute;
  top: 4%;
  left: -2.5%;
  width: 100%;
  z-index: 3;
}

/* オレンジ本体 */
.kyosan-title h2 {
  position: relative;
  text-align: center;
  margin: 0;
  padding: 2% 0;
  background: #f0b72f;
  border: 1.5px solid #38383a;
  box-sizing: border-box;
  font-size: 1.55rem;
  letter-spacing: -0.04rem;
  line-height: 1.6;
  text-align: center;
  overflow: hidden;
  z-index: 2;
}

/* 左上の折り込み三角 */
.kyosan-title::before {
  content: "";
  position: absolute;
  top: -15%;
  left: 0;
  width: 2.3%;
  height: 15%;
  background: #fff;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

/* 斜め線 */
.kyosan-title::after {
  content: "";
  position: absolute;
  top: -14.5%;
  left: 2.3%;
  width: 3.3%;
  height: 1px;
  background: #38383a;
  transform: rotate(138deg);
  transform-origin: left center;
  z-index: 4;
}

.kyosan-b {
  margin: 5% 0 0;
  line-height: 2;
  font-size: clamp(1.4rem, 3.8vw, 1.55rem);
  letter-spacing: -0.03rem;
}

.kyosan-c {
  font-size: clamp(1.37rem, 3.65vw, 1.61rem);
  letter-spacing: -0.05rem;
}

@media screen and (max-width: 376px) {
  .kyosan-box {
    padding: 20% 4% 6%;
  }

  .kyosan-b {
    margin-top: 2%;
    font-size: clamp(1.3rem, 3vw, 1.5rem);
  }

  .kyosan-c {
    font-size: clamp(1.27rem, 2.8vw, 1.4rem);
    letter-spacing: -0.07rem;
  }
}

@media screen and (min-width: 377px) and (max-width: 450px) {
  .kyosan-box {
    padding: 18% 4% 5%;
  }

  .kyosan-b {
    margin-top: 7%;
    font-size: clamp(1.55rem,
        calc(0.681rem + 1.632vw),
        1.6rem);
    letter-spacing: clamp(-0.03rem,
        calc(-0.166rem + 0.288vw),
        0rem);
    white-space: nowrap;
  }

  .kyosan-c {
    font-size: 1.47rem;
    white-space: nowrap;
  }
}

/*----- 開催概要 -----*/
.information {
  text-align: center;
  padding: 5% 5% 2%;
  margin: 13% 0 0;
  border-bottom: none;
  border-radius: 50px 50px 0 0;
  background-color: #fff;
  box-sizing: border-box;
}

.information-title {
  margin: 2% 0;
  font-size: clamp(1.8rem, 3.65vw, 2rem);
  letter-spacing: -0.05rem;
  white-space: nowrap;
}

table {
  margin: 0 auto;
  font-size: 1.8rem;
  text-align: left;
}

th{
  padding: 5px 3px 0px 5px;
}

td {
  padding: 5px 20px;
}

.information .boder-dot {
  margin: 2% auto;
  width: 70%;
}

.information table .boder-dot {
  margin: 4px auto;
  width: 130%;
  transform: translateX(-11%);
}

.information h4 {
  font-size: 1.8rem;
  margin: 4% auto;
}

.information-button-wrap {
  display: flex;
  gap: 12px;
  margin-top: 6%;
}

.information-button-wrap {
  display: flex;
  gap: 3%;
  justify-content: center;
  margin: 0 auto;
}

.information-button1 {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  margin: 0 0 3%;
  padding: 3%;
  border-radius: 30px;
  background-color: #284b7f;
  box-shadow: 3.5px 3.5px 0 rgba(40, 75, 127, 0.4);

  color: #fff;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 0.6;
  text-decoration: none;

  transition:
    background-color 0.45s ease,
    transform 0.12s ease,
    box-shadow 0.12s ease;
}

.information-button1::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 13px;
  width: 0.55em;
  height: 0.55em;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(-45deg);
  transition: transform 0.22s ease;
}

.information-button1:hover {
  background-color: #386cb6;
}

.button-text {
  font-size: 1rem;
}


/*----- ページトップ -----*/
.pagetop {
  position: fixed;
  bottom: 1%;
  right: 1%;
  z-index: 6;
  width: 70px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.pagetop.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.pagetop-mark {
  width: 100%;
  height: auto;
  display: block;
}

.pagetop-text {
  position: absolute;
  height: 100%;
  left: 47%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  color: #38383a;
  font-size: 1.4rem;
  font-weight: bold;
  writing-mode: vertical-rl;
}

.pagetop:hover {
  transform: translateY(-4px);
}

.pagetop:active {
  transform: translateY(0) scale(0.96);
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .pagetop {
    width: 100px;
  }

  .pagetop-mark {
    width: 90%;
  }

  .pagetop-text {
    left: 44%;
    top: 52%;
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 961px) and (max-width: 1439px) {
  .pagetop {
    width: 100px;
  }

  .pagetop-mark {
    width: 90%;
  }

  .pagetop-text {
    left: 44%;
    top: 52%;
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 1440px) {
  .pagetop {
    width: 130px;
  }

  .pagetop-mark {
    width: 70%;
  }

  .pagetop-text {
    left: 35%;
    top: 52%;
    font-size: clamp(1rem, 2.8vw, 1.6rem);
  }
}

/* ---- フッター ---- */
footer {
  max-width: 460px;
  margin: 0 auto;
  padding: 15px 0;
  background-color: #38383a;
  box-sizing: border-box;
}

footer p {
  margin: 0 auto;
  color: #fff;
  text-align: center;
  font-size: 1.3rem;
  line-height: 2;
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  footer {
    margin: 0 0 auto 0;

    zoom: 0.9;
  }
}

@media screen and (min-width: 961px) and (max-width: 1439px) {
  footer {
    margin: 0 auto;
  }
}

@media screen and (min-width: 1440px) {
  footer {
    margin: 0 auto;
    zoom: 1.06;
  }
}

.tyusyaku {
  letter-spacing: -0.03rem;
  line-height: 1.4;
  font-size: 1.45rem;
  margin: 4% 1% 2%;
  white-space: normal;
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: break-word;
}
