@charset "utf-8";

:root {
    --text-color: #000000;
    --black: #000000;
    --white: #fff;
    --trans-white: rgba(255, 255, 255, 0.76);
    --red: #F43E3E;
    --yellow1: #DEC97E;
    --yellow2: #E3BC3B;
    --yellow3: #F5E19D;

}

html,
body {
    font-family: "heisei-mincho-std", serif;
    font-weight: 500;
    font-style: normal;
    font-optical-sizing: auto;
    line-height: 1.5;
    letter-spacing: 0.2em;
    overflow-x: clip;
    color: var(--text-color);
    background-image: url("../images/bg-image.jpg");
    background-position: top left;    /* 開始位置 */
    background-size: auto;            /* 元のサイズで表示 */
    background-repeat: repeat;
    word-break: auto-phrase;
}

.bg-fix {
    background-image: url("../images/bg-image.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "heisei-mincho-std", serif;
    font-weight: 700;
    font-style: normal;
}

a {
    color: var(--black);
    text-decoration: none !important;
}

a:hover {
    color: var(--red);
    cursor: pointer;
}


/* フォント */

.hei-5 {
font-family: "heisei-mincho-std", serif;
font-weight: 500;
font-style: normal;
}

.hei-7 {
font-family: "heisei-mincho-std", serif;
font-weight: 700;
font-style: normal;
}

.toppan {
font-family: "toppan-bunkyu-gothic-pr6n", serif;
}

.fuga {
font-family: "ta-fuga-fude", sans-serif;
font-weight: 400;
}

.yuji {
    font-family: "Yuji Syuku", serif;
}

.zen {
    font-family: "Zen Kaku Gothic New", sans-serif;
}

.yu {
    font-family: "yu-mincho-pr6n", sans-serif;
}

.hira {
    font-family: "hiragino-mincho-pron", sans-serif;
}

.fc-white {
    color: #FFF !important;
}

.fc-yellow1 {
    color: var(--yellow1);
}

.fc-yellow2 {
    color: var(--yellow2);
}

.fc-yellow3 {
    color: var(--yellow3);
}

.fc-red {
    color: #E43905 !important;
}


.v-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: nowrap;
    letter-spacing: 0.25em;

}

.text-shadow {
    text-shadow: 2px 2px 5px black;
}

.text-shadow2 {
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.50);
}

.text-shadow-white {
    text-shadow: 2px 2px 5px white;
}

.has-shadow {
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.15);
}

/* 背景 */
.bg-white {
    background-color: #FFF;
}

.bg-black {
    background-color: var(--black);
}

.bg-yellow {
    background-color: #E3B017;
}

.bg-red {
    background-color: var(--red);
    display: inline-block;
}

.bg-beige {
    background-color: #FFF9E6;
}



/*罫線*/
.b-black {
    border: 1px solid var(--black);
}

.b-white {
    border: 1px solid var(--white);
}

.bl-black {
    border-left: 1px solid var(--black);
}

.br-black {
    border-right: 1px solid var(--black);
}

.bb-black {
    border-bottom: 1px solid var(--black);
}

.bt-black {
    border-top: 1px solid var(--black);
}

/* ボタン */
.button {
    position: relative;
    display: inline-flex !important;
    background-image: url("../images/button-bg.jpg");
    background-size: cover;
    background-position: center;
    align-items: center;
    transition: all 0.3s;
}

.button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0px;
    width: 30%;
    height: 1px;
    background: #fff;
    transform: translateX(50%);
    transition: all 0.3s;
}

.button:hover {
    filter: grayscale(60%) brightness(80%);
}

.button:hover::after {
    right: 10px;
}

.button p {
    color: #FFF;
    font-family: "heisei-mincho-std", serif;
    font-weight: 700;
    font-style: normal;
    margin: 0 !important;
    padding: 0 !important;
    letter-spacing: 0.2rem;
}

.reserv-button {
    max-width: 220px;
    transition: all 0.3s ease;
}

.reserv-button:hover {
    transform: scale(1.05);
}

.web-button {
    max-width: 220px;
    transition: all 0.3s ease;
}

.web-button:hover {
    transform: scale(1.05);
}

.baseball-button {
    max-width: 200px;
    transition: all 0.3s ease;
}

.baseball-button:hover {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .reserv-button {
        max-width: 290px;
        transition: all 0.3s ease;
    }
    
    .web-button {
        max-width: 290px;
        transition: all 0.3s ease;
    }
    
    .baseball-button {
        max-width: 210px;
        transition: all 0.3s ease;
    }
}

.instagram-button {
    max-width: 55px;
    transition: all 0.3s ease;
}

.instagram-button:hover {
    transform: scale(1.05);
}

.c-button {
    transition: all 0.3s ease;
}

.c-button:hover {
    transform: scale(1.05);
}

.w-button {
    position: relative;
    border: 1px solid var(--black);
    background-color: #FFF;
}

.w-button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0px;
    width: 20%;
    height: 1px;
    background: #000000;
    transform: translateX(50%);
    transition: all 0.3s;
}

.w-button:hover {
    background-color: #969696;
}

.w-button:hover::after {
    right: 10px;
}

.w-button p {
    color: var(--black);
    font-family: "heisei-mincho-std", serif;
    font-weight: 700;
    font-style: normal;
    margin: 0 !important;
    padding: 0 !important;
    letter-spacing: 0.2rem;
}

/* ナビ */

.a-nav-menu {
    display: none;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 900;
    align-items: center;
    transition: all 0.3s;
    background-color: var(--black);
}

.a-nav-menu.edit {
    display: flex;
    opacity: 1;
}

.a-nav-menu a p {
    color: var(--white);
    font-family: "ta-fuga-fude", sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
}

.a-nav-menu a:hover p {
    color: var(--red);
}

.a-nav-menu-m>a:not(:last-child) {
    margin-right: 1.5rem;
}

.nav-logo {
    max-width: 160px;
}

@media (min-width: 768px) {
    .nav-logo {
        max-width: 240px;
    }
}

.header {
    position: fixed;       /* 常に画面上に固定 */
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;            /* 初期は非表示 */
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-100%); /* 上に隠す */
    z-index: 800;
  }

.header.edit {
    opacity: 1 !important;
    transform: translateY(0) !important; /* スクロールで表示 */
}

.header.show {
    opacity: 1;
    transform: translateY(0); /* スクロールで表示 */
}

.header-bg {
    background-color: #550000;
    display: flex;
    align-items: center;
    justify-content: right;
}

@media (min-width: 1200px) {
    .header-bg {
        justify-content: space-between;
    }
}

.header-menu {
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.header-menu a p {
    font-family: "ta-fuga-fude", sans-serif;
    color: var(--white);
    font-weight: 400;
    font-size: 0.9rem;
}

.header-menu a:hover p {
    color: var(--red);
}

.header-menu>a:not(:last-child) {
    margin-right: 0.8rem;
}

.header-button {
    background-color: var(--red);
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    transition: all 0.3s;
}

.header-button:hover {
    transform: scale(1.05);
}

.reserve-button {
    position: fixed;
    bottom: 42px;
    right: 60px;
    width: 170px;
    opacity: 0;
    transform: translateY(100%); /* 初期は下に隠す */
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 700;
  }

.reserve-button.show {
    opacity: 1;
    transform: translateY(0); /* 下から浮き出す */
}

.reserve-button:hover {
    transform: scale(1.05);
}

.a-burger {
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 1100;
    background-color: #969696;
    cursor: pointer;
    width: 60px;
    height: 60px;
    margin: 0;
    padding: 0;
}

.a-burger div {
    width: 30px;
    height: 2px;
    background-color: #FFF;
    position: absolute;
    left: 15px;
    transform-origin: center;
    transition: all 0.3s;
    padding: 0;
    margin: 0;
    min-height: 2px !important;
}

.a-burger div:nth-child(1) {
    top: 22px;
}

.a-burger div:nth-child(2) {
    bottom: 22px;
}

.a-burger.is-active div:nth-child(1) {
    transform: rotate(-45deg);
    top: 29px;
}

.a-burger.is-active div:nth-child(2) {
    transform: rotate(45deg);
    bottom: 29px;
}

@media (min-width: 768px) {
    .reserve-button {
        display: block;
    }
}

/* フッター */

.foot-logo {
    max-width: 130px;
}

@media (min-width: 768px) {
    .foot-logo {
        max-width: 160px;
    }
}

.foot-insta {
    width: 40px;
    transition: all 0.3s ease;
}

.foot-web-button {
    max-width: 80px;
    transition: all 0.3s ease;
}

.foot-insta:hover,
.foot-web-button:hover {
    transform: scale(1.05);
}

.foot-sec1-bg {
    background-image: url("../images/foot-sec1-bg.png");
    background-repeat: no-repeat;
    background-size: cover;      /* 必要に応じて調整 */
    background-position: bottom center; /* 上中央に揃える */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.foot-menu {
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .foot-menu {
        align-items: end;
    }
}

.foot-menu a p {
    font-family: "ta-fuga-fude", sans-serif;
    color: var(--white);
    font-weight: 400;
    font-size: 1rem;
}

.foot-menu a:hover p {
    color: var(--red);
}

.foot-menu-mr>a:not(:last-child) {
    margin-right: 1rem;
}

/* News表示 */

/* News表示 画像あり版 */
.news-list .webgene-blog {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
 
}
.news-list .webgene-item {
    width: 100%;
}
 
@media (min-width: 768px) {
    .news-list .webgene-item {
        width: 48%;
    }
}
/* ページネーション共通 */
.webgene-pagination {
    width: 100%;
}
 
.webgene-pagination ul,
.pagelink {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 3rem;
}
 
.webgene-pagination ul li a,
.pagelink p a {
    display: inline-flex !important;
    font-family: "heisei-mincho-std", serif;
    font-weight: 700;
    color: #FFF;
    font-style: normal;
    font-size: 0.8rem;
    width: 130px;
    height: 50px;
    padding: 15px 22px !important;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
    background-color: #000000;
    border-radius: 50px;
}

@media (min-width:768px) {
.webgene-pagination ul li a,
.pagelink p a {
    width: 200px;
}
}

.webgene-pagination ul li a:hover,
.pagelink p a:hover {
    cursor: pointer;
    background-color: #969696;
}
    
/* Nextボタン */
.webgene-pagination li.next a::after,
.pagelink p.next a::after {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background-image: url("../images/arrow-r.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s;
}
.webgene-pagination ul li.next a:hover::after,
.pagelink p.next a:hover::after {
    transform: translateX(6px);
}
 
/* Prevボタン */
.webgene-pagination ul li.prev a::before,
.pagelink p.prev a::before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background-image: url("../images/arrow-l.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s;
}
.webgene-pagination ul li.prev a:hover::before,
.pagelink p.prev a:hover::after {
    transform: translateX(-6px);
}
 


/* フォーム */
.formInput,
.formTextArea {
    width: 100%;
    padding: 0.5rem;
    border: none;
    border-radius: 0;
    border: 1px solid #CBC3B0;
    background-color: #FFFCF5;
    margin-bottom: 2rem;
}

.formTextArea {
    height: 8rem;
}

.formInput:focus,
.formInput:focus-visible,
.formTextArea:focus,
.formTextArea:focus-visible,
.form-button:focus,
.form-button:focus-visible {
    border: 1px solid #CBC3B0;
    background-color: #FFFCF5;

}
.zipInput {
    width: 6rem;
}
@media (min-width:768px) {
    .formTh {
        padding-left: 2rem;
    }
}

.requiredText {
    background-color: #A3987C;
    color: #FFF;
    padding: 4px 8px;
    font-size: 0.8rem;
    margin-left: 1rem;
}
.privacyformError {
    padding-top: 25px;
}
@media (min-width:768px){
    .privacyformError {
        padding-top: 0;
    }
}
/* ページ共通設定 */

.fv-height {
   	 	height: 100svh;
    	position: relative;
  		overflow: hidden;
}

.fv-menu {
    display: none;
}

@media (min-width:768px) {
    .fv-menu {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        background-color: var(--black);
        color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 10;
    }
}

.fv-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
}

.fv-menu a p {
    color: var(--white);
    font-family: "ta-fuga-fude", sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.fv-menu-p>a:not(:last-child) {
    margin-bottom: 1.2rem;
}

.fv-menu a:hover p {
    color: var(--red);
}

.top-logo {
    max-width: 140px;
}

@media (min-width:992px) {
    .top-logo {
        max-width: 150px;
    }
}

.fv-title {
    position: absolute;
    left: 22%;
    bottom: 20%;
    color: var(--white);
    font-weight: 400;
    z-index: 10;
    text-shadow: 3px 3px 6px black;
    writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: nowrap;
}

@media (min-width:768px) {
    .fv-title {
        left: 30%;
        bottom: 20%;
        writing-mode: horizontal-tb; /* これがデフォルトの横書き */
        text-orientation: mixed;      /* 横書きでは特に必要ないが明示してもOK */
        white-space: nowrap;
    }
}

@media (min-width:992px) {
    .fv-title {
        left: 25%;
        bottom: 16%;
    }
}

@media (min-width:1200px) {
    .fv-title {
        left: 18%;
    }
}

.no-wrap {
    white-space: nowrap !important;
}

/* 装飾 */

.trans-x-l20 {
    transform: translateX(-20%);
}

.trans-x-r20 {
    transform: translateX(20%);
}

.trans-y-t20 {
    transform: translateY(-20%);
}

.trans-y-b20 {
    transform: translateY(20%);
}

/* 角丸　*/

.r-40 {
    border-radius: 40px;
}

.r-5 {
    border-radius: 5px;
}

/* スライダー用 */

.slider-wrap {
    width: 100%;
    overflow: hidden; /* 外にはみ出した分を隠す */
  }
  
  .slider1,
  .slider2 {
    display: flex;
    gap: 30px;          /* 画像間の余白 */
    width: max-content; /* 横幅を中身に合わせる */
  }
  
  .slide {
    flex-shrink: 0;  /* 縮まないように固定 */
    width: 260px;
  }
  
  @media (min-width:768px) {
    .slide {
      width: 400px;
    }
}

/* プラシバシーポリシー */
.policy-box {
    overflow-y: scroll;
    height: 400px;
    border-radius: 30px;
}

/* TOP */

.swiper, .swiper-wrapper, .swiper-slide {
    height: 100vh;
    width: 100%;
    position: relative;
  }

@media (min-width:768px) {
	.swiper, .swiper-wrapper, .swiper-slide {
    	height: inherit;
    	width: 100%;
    	position: relative;
  	}
}

.swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
    height: inherit; 
    object-fit: cover;
}

.text-bg {
    position: absolute;
    top: 60%;
    left: 10%;
    height: 60%;
    width: 60%;
    background-image: url("../images/top-sec2-bg.png");
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
}

@media (min-width:768px) {
    .text-bg {
        left: 20%;
    }
}

.top-sec5-bg {
    position: relative;
    background-image: url("../images/top-sec5-bg.png");
    background-repeat: no-repeat;
    background-size: cover;      /* 必要に応じて調整 */
    background-position: top center; /* 上中央に揃える */
    display: flex;
    align-items: center;
    overflow: hidden;
    }

.top-sec5-bottom{
    padding-bottom: 500px !important;
}

@media (min-width:768px) {
    .top-sec5-bottom{
        padding-bottom: 7.5rem !important;
    }
}


.top-sec5-img {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 95%;
    object-fit: contain;
    max-height: 100%;
}

@media (min-width: 576px){
    .top-sec5-img {
        width: 75%;
    }
}

@media (min-width:768px) {
    .top-sec5-img {
        width: 65%;
    }
}

@media (min-width:992px) {
    .top-sec5-img {
        width: 55%;
    }
}

.top-sec5-text-w{
    max-width: 400px;
}

@media (min-width:768px) {
    .top-sec5-text-w{
        max-width: 100%;
    }
}


/* 野球チーム　*/

.text-bg-2 {
    position: absolute;
    top: 33%;
    left: 10%;
    height: 65%;
    width: 65%;
    background-image: url("../images/top-sec2-bg.png");
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
}

@media (min-width:768px) {
    .text-bg-2 {
        top: 40%;
        left: 20%;
        height: 75%;
        width: 75%;
    }
}

.base-title {
    position: relative;
  }
  
  .base-title::after {
    content: "";
    position: absolute;
    left: 20%;               /* 左側から少し空ける */
    right: 20%;              /* 右側から少し空ける */
    bottom: 0;
    height: 1px;             /* 線の太さ */
    background-color: var(--black);
  }

/* メニュー　*/

.menu-bb .menu-price {
        position: relative;
        padding: 0 1.2rem;
        letter-spacing: 0.1em;
        font-size: 0.8rem;
      }
      
.menu-bb .menu-price::after {
        content: "";
        position: absolute;
        left: 3%;               /* 左側から少し空ける */
        right: 3%;              /* 右側から少し空ける */
        bottom: 0;
        height: 1px;             /* 線の太さ */
        background-color: var(--black);
}

.menu-bb .drink-price {
    position: relative;
    padding: 0 0.5rem;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
  }

.menu-bb .drink-price::after {
    content: "";
    position: absolute;
    left: 5%;               /* 左側から少し空ける */
    right: 5%;              /* 右側から少し空ける */
    bottom: 0;
    height: 1px;             /* 線の太さ */
    background-color: var(--black);
}
