@charset "utf-8";
:root{
    --color-black: #262626;
    --color-white: #fffefc;
    --color-orange-derk: #E74322;
    --color-orange-light: #E57411;
    --color-green-light: #3aaa8a;
    --color-green-dark: #2f6223;
    --color-red-dark: #CA1717;
    --color-red-light: #E60013;
    --color-beige-light: #FCF9e7;
    --color-beige-dark: #F4f1e2;
}

.nav__item{
    color: var(--color-black);
}

.section__mainTitle{
    margin-top: 64px;
}

.reserve__txt{
    font-size: 1.4rem;
    line-height: 1.5;
    margin: 30px 0 38px;
    text-align: center;
}

.reserve__sousyoku{
    display: flex;
    margin: 0 auto 32px;
    gap: 9px;
    justify-content: center;
}

.syouron{
    width: 30px;
}

.gyoza{
    width: 35px;
}

.syuumai{
    width: 24px;
}

.reserve__container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  justify-content: center;
}

/* ボタンの基本スタイル */
.btn__reserve {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  background-color: var(--color-beige-light); /* ボタンの内側の色 */
  border: 1px solid var(--color-orange-derk); /* オレンジがかった茶色の枠線 */
  border-radius: 8px;
  padding: 10px;
  position: relative;
  height: 84px;
  width: 240px;
  margin: 0 auto;
}

/* 下のボタンについている影 */
.shadow {
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.1);
}

/* メインのテキスト */
.main-text {
  font-size: 1.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 営業時間などの補足テキスト */
.sub-text {
  font-size: 0.9rem;
  margin-top: 6px;
  text-align: center;
}

/* 右上の矢印アイコン */
.icon-arrow {
    font-size: 2.3rem;
    font-weight: 500;
    padding-left: 23px;
}

/* 流れる文字 */
.wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
    padding-top: 112px;
}

.loop_text {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 14vw;
    overflow: hidden;
    padding-left: 20px;
    font-family: 'dnp-shuei-gothic-gin-std', 'sans-serif';
    font-weight: 600;
    line-height: 0.9;
}

.yellowten {
    font-weight: 400;
    color: #FFC812;
    text-shadow: 1px 1px 0 var(--color-black),
        -1px 1px 0 var(--color-black),
        -1px -1px 0 var(--color-black),
        1px -1px 0 var(--color-black);
}

.loop_text:nth-child(odd) {
    animation: loop 50s -25s linear infinite;
}

.loop_text:nth-child(even) {
    animation: loop2 50s linear infinite;
}

@keyframes loop {
    0% {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes loop2 {
    0% {
        transform: translateX(0);
    }

    to {
        transform: translateX(-200%);
    }
}

/* 流れる文字　600px */
@media screen and (min-width: 600px) {
    .loop_text {
        font-size: 10vw;
    }
}

@media screen and (min-width: 1025px) {
    .loop_text {
        font-size: 8vw;
    }

    .wrapper {
        padding-top: 300px;
    }
}

/* タブレット　769px */
@media screen and (min-width: 769px){
    .section__mainTitle{
        font-size: 5.5rem;
    }

    .reserve__txt{
        font-size: 1.8rem;
        margin: 80px 0 72px;
    }

    .syouron{
        width: 60px;
    }

    .gyoza{
        width: 80px;
    }

    .syuumai{
        width: 50px;
    }

    .btn__reserve {
        display: flex;
        align-items: center;
        height: 133px;
        width: 430px;
    }

    .main-text {
        font-size: 3rem;
    }

    .sub-text {
        font-size: 1.4rem;
        margin: 18px 0 0 42px ;
    }

    .reserve__sousyoku{
        margin: 0 auto 72px;
        gap: 21px;
    }
}

/* pc 1025px */
@media screen and (min-width: 1025px){
    .reserve__container {
        flex-direction: row;
        gap: 30px; /* ボタン同士の間隔 */
        max-width: 71.4vw;
        justify-content: center;
        margin: 0 auto;
    }
}