/* ================================================= */
/* 変数定義 (サイト全体の色や設定)                     */
/* ================================================= */
:root {
    --color-primary: #41b0e5;
    --color-accent1: #d94f97;
    --color-accent2: #845aa2;
    --color-accent3: #f7b300;
    --color-text-light: #eeeeee;
    --color-text-dark: #222;
    --color-bg-light: #ffffff;
    --color-bg-semitransparent: rgba(255, 255, 255, 0.7);
    --border-radius-main: 8px;
}

/* ================================================= */
/* 基本スタイル                                      */
/* ================================================= */
body, html {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

body {
    background-color: var(--color-primary);
    background-image: url('bottom-image.png');
    background-position: bottom center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% auto;
}

/* ================================================= */
/* レイアウト & 主要コンポーネント                     */
/* ================================================= */
#site-logo {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.content {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.content-section {
    margin-bottom: 60px;
}

/* スポンサーセクション以外のpタグ */
.content-section > p {
    margin-top: 0;
    padding: 20px;
    border-radius: var(--border-radius-main);
    background-color: var(--color-bg-semitransparent);
    color: var(--color-text-dark);
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: left;
}

.content h2 {
    margin-top: 0;
    margin-bottom: 15px;
    padding: 14px 15px;
    border-radius: var(--border-radius-main);
    background-color: var(--color-primary);
    border: 2px solid var(--color-text-light);
    color: var(--color-text-light);
    font-size: 2.2rem;
    text-align: center;
}

.content h2 small {
    display: block;
    font-size: 1.0rem;
    font-weight: normal;
    margin-top: 8px;
    color: var(--color-text-light);
}

.content-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.text-center {
    display: block;
    text-align: center;
}

/* ================================================= */
/* 詳細リンクのスタイル                              */
/* ================================================= */
.link-container {
    /* 上下の文章との間に余白を設ける */
    margin: 20px 0;
    text-align: center; /* リンクを中央に配置 */
}

.info-link {
    font-size: 1.2rem;
    font-weight: bold;
    color: #d94f97; /* アクセントカラーで見やすく */
    text-decoration: none; /* 下線を消す */
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.2s, color 0.2s;
}

.info-link:hover {
    background-color: #d94f97; /* マウスを乗せると背景がピンクに */
    color: white; /* マウスを乗せると文字が白に */
    text-decoration: none;
}

.pairing-image a {
    /* リンクの下線を消す */
    text-decoration: none;
    /* 変化を滑らかにする */
    transition: opacity 0.2s;
}

.pairing-image a:hover {
    /* マウスを乗せると少し透明になる */
    opacity: 0.8;
}

/* ================================================= */
/* ポップアップ (ダイアログ)                            */
/* ================================================= */
.popup-button {
    display: inline-block;
    padding: 12px 24px;
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-bg-light);
    background-color: var(--color-accent2);
    border: none;
    border-radius: var(--border-radius-main);
    cursor: pointer;
    transition: background-color 0.2s;
}

.popup-button:hover {
    background-color: var(--color-accent1);
}

dialog {
    padding: 1.5em;
    width: 90%;
    max-width: 700px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background-color: #eeeeee;
}

dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}

dialog h3 {
    margin-top: 0;
    font-size: 1.8rem;
    color: #0d4a68;
}

.close-button {
    display: block;
    margin: 20px 0 0 auto;
    padding: 8px 16px;
    font-size: 1rem;
    border: 2px solid #ccc;
    border-radius: 5px;
    background-color: #f0f0f0;
    cursor: pointer;
}

/* ================================================= */
/* 画像ポップアップ用の追加スタイル                    */
/* ================================================= */

/* クリックできる画像にカーソルを合わせるとポインターに */
#open-map-dialog {
    cursor: pointer;
    transition: opacity 0.2s;
}

#open-map-dialog:hover {
    opacity: 0.8; /* マウスを乗せると少し透明になる演出 */
}

/* ダイアログ内の画像がはみ出ないようにする */
.dialog-image {
    max-width: 100%;
    height: auto;
    display: block;
}


/* ================================================= */
/* タブUI                                          */
/* ================================================= */
.tab-list {
    display: flex;
    gap: 5px;
}

.tab-button {
    flex: 1;
    padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    border: 2px solid var(--color-text-light);
    border-bottom: none;
    border-radius: var(--border-radius-main) var(--border-radius-main) 0 0;
    cursor: pointer;
    color: var(--color-text-light);
    background-color: var(--color-accent2);
}

.tab-button.is-active {
    color: var(--color-accent2);
    background-color: var(--color-accent3);
    border: none;
}

.tab-panels {
    padding: 30px;
    border-radius: 0 0 8px 8px;
    /* ▼ 他のタブはこちらの半透明の背景が適用されます */
    background-color: rgba(255, 255, 255, 0.8);
}


.tab-panels .column-right h4 {
    color: #000000;
}

.tab-panels .column-right p {
    background-color: transparent; /* 個別の背景色は不要なため透明に */
    color: #000000;
    padding: 0;
}

.tab-panel {
    display: none;
}

.tab-panel.is-active {
    display: block;
}

.tab-panel h3 {
    margin-top: 20px;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: var(--border-radius-main);
    background-color: var(--color-accent1);
    color: var(--color-bg-light);
}

.tab-panel p {
    padding: 20px;
    border-radius: var(--border-radius-main);
    background-color: var(--color-bg-light);
    text-align: left;
}

/* ================================================= */
/* 企画タブパネルの特別スタイル                      */
/* ================================================= */

/* 企画タブのパネルだけに背景画像を指定 */
.event-section .tab-panels {
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), 
        url('event-tab-bg.jpeg');
    
    background-size: cover;
    background-position: center;
    color: #000000; 
}

/* 企画タブパネル内の文字色を調整 */
.event-section .tab-panels h3 {
    color: white; 
}

.event-section .tab-panels .column-right h4 {
    color: black;
}

.event-section .tab-panels .column-right p {
    background-color: transparent; /* 個別の背景色は透明に */
    color: #000000;
    padding: 0;
}

/* ================================================= */
/* 各種コンポーネント & セクション内部スタイル             */
/* ================================================= */
.two-column-layout {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    text-align: left;
}
.column-left {
    flex: 0 0 40%;
}
.column-left img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}
.column-right {
    flex: 1;
}
.column-right h4 {
    margin-top: 0;
    font-size: 1.3rem;
}

/* スポンサーセクション */
.sponsor-section {
    padding: 20px;
    border-radius: var(--border-radius-main);
    background-color: var(--color-bg-semitransparent);
}
.sponsor-category {
    margin-bottom: 25px;
}
.sponsor-section .sponsor-category:last-of-type {
    margin-bottom: 0;
}
.sponsor-category h3 {
    margin: 0;
    padding: 10px 15px;
    border-radius: var(--border-radius-main) var(--border-radius-main) 0 0;
    background-color: var(--color-accent1);
    color: var(--color-text-light);
    font-size: 1.3rem;
}
p.sponsor-list {
    margin: 0;
    padding: 20px;
    border-radius: 0 0 var(--border-radius-main) var(--border-radius-main);
    background-color: var(--color-bg-light);
    font-size: 1rem;
    line-height: 1.8;
    text-align: left;
    color: var(--color-text-dark);
}
.sponsor-list small {
    display: block;
    margin-top: 10px;
    font-size: 0.9em;
    text-align: right;
}

/* ポップアップ内のリスト */
.separator-before {
    border-top: 1px solid #ccc;
    margin-top: 1em;
    padding-top: 1em;
}
.drink-description {
    display: block;
    margin-left: 1em;
    font-size: 0.9em;
    color: #555;
}
.booth-list dt {
    padding-top: 1em;
    border-top: 1px solid #ddd;
    font-size: 1.2rem;
    font-weight: bold;
    color: #0d4a68;
}
.booth-list dt:first-of-type {
    padding-top: 0;
    border-top: none;
}
.booth-list dd {
    margin: 0.5em 0 0 1em;
    padding-bottom: 1em;
    font-size: 1rem;
    color: #333;
}
.pairing-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: var(--border-radius-main);
    background-color: var(--color-bg-light);
}
.pairing-image {
    flex: 1;
    margin-right: 15px; /* 画像とテキストの間のスペース */
}
.pairing-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

/* テキスト部分を囲むコンテナ */
.pairing-details {
    /* ▼ flex: 1; を追加します */
    flex: 1;

    /* 以下の設定は変更ありません */
    text-align: left;
}

.pairing-details h4 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    color: var(--color-text-dark);
}
.pairing-details p {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    color: #555;
    background-color: transparent;
}

/* お問い合わせタブ */
.contact-info {
    text-align: left;
}
.contact-info h4 {
    margin-top: 30px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid #ddd;
    font-size: 1.3rem;
    color: #0d4a68;
}
.map-container iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 1px solid #ccc;
    border-radius: var(--border-radius-main);
}

/* ================================================= */
/* コンテンツ内の汎用情報ボックス                      */
/* ================================================= */
/* 以前の .content-section p のルールを、より汎用的な .info-box に変更 */
.info-box {
    margin-top: 0;
    padding: 20px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.7);
    color: #222;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: left;
}

/* ▼▼▼ このブロックを丸ごと追加 ▼▼▼ */
/* 注意事項などを入れる、内側の白いボックス */
.white-box {
    background-color: #ffffff; /* 不透明な白 */
    padding: 1px 20px; /* 上下は少し、左右は多めの余白 */
    margin-top: 20px; /* 上の文章とのスペース */
    border-radius: 8px; /* 角を丸くする */
}
/* ▲▲▲ ここまで追加 ▲▲▲ */

/* ================================================= */
/* レスポンシブ対応 (画面幅768px以下)                  */
/* ================================================= */
@media (max-width: 768px) {
    .two-column-layout {
        flex-direction: column;
    }
}


/*-------------------------------------------------*/
/*　　　　　　　　　ヘッダーメニュー用　　　　　　　　　*/
/*-------------------------------------------------*/
a {
  text-decoration: none
}

@media(hover: hover)and (pointer: fine) {
  a[href^="tel:"] {
    pointer-events: none
  }
}

ol,
ul {
  margin: 0;
  padding: 0
}

li {
  list-style: none
}

img,
svg,
video {
  width: 100%;
  height: auto;
  vertical-align: bottom
}

@media screen and (max-width: 959px) {
  .for-pc {
    display: none !important
  }
}
@media screen and (min-width: 960px),
print {
  .for-sp {
    display: none !important
  }
}
button,
input,
optgroup,
select,
textarea {
  /*-webkit-appearance:none;appearance:none;*/
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: rgba(0, 0, 0, 0);
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default
}

@media screen and (min-width: 960px),
print {
  .header {
    position: sticky;
    /*position: fixed;
    top: 0;
    left: 0;
    z-index: 999;*/
    padding: 30px calc(1.5em + 20px + 2.6vw) 30px 2.6vw;
    /*width: 100%;*/
    transition: .3s
  }

  .header__inner {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    position: relative
  }

  .header__logo {
    width: 150px;
    position: absolute;
    top: -30px;
    left: 0;
    transition: .3s
  }

  .header__logo img {
    display: inline-block;
    max-width: 100%
  }

  .header__logo-link {
    transition: opacity 500ms ease
  }
}
@media screen and (min-width: 960px)and (hover: hover)and (pointer: fine),
print and (hover: hover)and (pointer: fine) {
  .header__logo-link:hover {
    opacity: .6
  }
}
@media screen and (min-width: 960px),
print {
  .header {
    background: #eee
  }

  /*.header .header__logo {
    width: 78px;
    top: 50%;
    transform: translateY(-50%)
  }*/

  /*.header.float .gnav__link {
    color: #231815
  }

  .header.float .gnav__link::before {
    background-color: #231815
  }

  .header.float .gnav__btn {
    border-color: #231815;
    color: #231815
  }

  .header.float .gnav__btn:hover {
    color: #fff;
    background: #231815
  }

  .header.float .gt_container--hich1m .gt_switcher .gt_selected a {
    color: #231815 !important
  }

  .header.float .gt_container--hich1m .gt_switcher .gt_selected a::after {
    border-color: #231815 !important
  }

  .header.float .gt_container--hich1m .gt_switcher .gt_option a {
    color: #231815 !important
  }

  .header.float .gt_container--hich1m .gt_switcher .gt_option a::after {
    border-color: #231815 !important
  }*/

  .gnav__list {
    display: flex;
    align-items: center
  }

  .gnav__item {
    margin-left: 1vw
  }

  .gnav__link {
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
    font-size: min(.83vw, 16px);
    font-weight: bold;
    line-height: 1.5;
    color: #231815;
    transition: .3s;
    transition: opacity 500ms ease
  }
}


@media screen and (min-width: 960px)and (hover: hover)and (pointer: fine),
print and (hover: hover)and (pointer: fine) {
  .gnav__link:hover {
    opacity: .6
  }
}

@media screen and (min-width: 960px),
print {
  .gnav__link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #231815
  }

  .gnav__link:hover::before {
    width: 100%;
    animation: underline ease 500ms
  }

  .gnav__btn {
    display: inline-block;
    padding: 1em;
    font-size: min(.83vw, 16px);
    font-weight: bold;
    line-height: 1;
    color: #231815;
    border: 4px solid #231815;
    transition: ease .3s
  }

  .gnav__btn:hover {
    background: #231815;
    color: #fff
  }

  .gnav__logo {
    display: none
  }

  .gnav__50thlogo {
    position: relative;
    width: 38px;
    margin:0;
  }

  .gnav__50thlogo img {
    transition: .3s
  }

  .gnav__50thlogo img[data-item="2"] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0
  }

  .lang-list-trigger {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: min(.83vw, 16px);
    font-weight: bold;
    line-height: 1.5;
    color: #fff;
    cursor: pointer;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: opacity 500ms ease
  }
}

@media screen and (min-width: 960px)and (hover: hover)and (pointer: fine),
print and (hover: hover)and (pointer: fine) {
  .lang-list-trigger:hover {
    opacity: .6
  }
}

@media screen and (min-width: 960px),
print {
  .lang-list-trigger::before {
    content: "";
    order: 1;
    margin-left: 9px;
    width: 15px;
    height: 9px;
    background: url(/assets/images/gnav-arrow.svg) center center/contain;
    background-repeat: no-repeat;
    transition: transform ease .3s
  }

  .lang-list-trigger.is-rotate::before {
    transform: rotate(180deg)
  }

  .lang-list {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20%);
    transition: ease .3s;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none
  }

  .lang-list.is-active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    -webkit-user-select: auto;
    -ms-user-select: auto;
    user-select: auto
  }

  .lang-list__link {
    font-size: min(.83vw, 16px);
    font-weight: bold;
    line-height: 1;
    color: #fff;
    transition: opacity 500ms ease
  }
}

@media screen and (min-width: 960px)and (hover: hover)and (pointer: fine),
print and (hover: hover)and (pointer: fine) {
  .lang-list__link:hover {
    opacity: .6
  }
}

@media screen and (max-width: 959px) {
  .header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999
  }

  .header__inner {
    /*position: absolute;
    top: 0;
    left: 0;*/
    width: 100%;
    background:#eee;
  }

  .header__logo {
    display: none
  }

  .menu-50th-sp {
    width: auto;
    height: 100vh;
    position: absolute;
  }

  .header__btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    width: 56px;
    height: 56px;
    border-radius: 50%
  }

  .he-01 .header__btn {
    position: fixed;
  }

  .menu-50th-sp .header__btn {
    top:24px;
    right:16px;
  }

  .header__bar {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 3px;
    transition: 500ms ease;
    background-color: #231815;
    transition: .3s
  }

  .header__bar:nth-child(1) {
    z-index: 1;
    transform: translate(-50%, -12px)
  }

  .is-active .header__bar:nth-child(1) {
    transform: translate(-50%, -50%) rotate(135deg)
  }

  .header__bar:nth-child(2) {
    transform: translate(-50%, -50%)
  }

  .is-active .header__bar:nth-child(2) {
    opacity: 0
  }

  .header__bar:nth-child(3) {
    transform: translate(-50%, 9px)
  }

  .is-active .header__bar:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-135deg)
  }

  /*.header.float .gnav {
    background: #fff
  }

  .header.float .gnav__btn {
    border-color: #231815;
    color: #231815
  }

  .header.float .gnav__logo__img {
    opacity: 1
  }

  .header.float .header__bar {
    background-color: #231815
  }*/

  .gnav {
    transition: .3s;
    position: relative
  }

  .gnav__list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 76px;
    margin-right: 70px
  }


  .gnav__btn {
    display: flex;
    align-items: center;
    height: 28px;
    padding: 0 4px 1px;
    border: 3px solid #231815;
    transition: .3s
  }

  .gnav__drawer {
    position: absolute;
    top: 0;
    right: 0;
    overflow-y: auto;
    width: 268px;
    background-color: #fff;
    height: calc(var(--vh, 1vh)*100);
    height: 100svh;
    text-align: center;
    transform: translateX(100%);
    transition: ease-in-out .3s
  }

  .he-01 .gnav__drawer {
    position:fixed;
  }
  .gnav__drawer.is-hide {
    display: none;
  }

  header.is-active .gnav__drawer {
    display: block;
  }

  .page-modules .gnav__drawer {
    right:-50px;
  }

  .is-active .gnav__drawer {
    transform: translateX(0);
    right:0;
  }

  .gnav__logo {
    display: block;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%)
  }
  .he-01 .gnav__logo {
    display: none;
  }

  .gnav__logo__img {
    width: 80px;
    transition: .3s;
    /*opacity: 0*/
  }

  .gnav__50thlogo {
    width: 60px;
    margin: 0 auto
  }

  .gnav-drawer {
    font-size: 16px
  }

  .gnav-drawer__list {
    margin-bottom: 52px;
    padding-top: 52px
  }

  .gnav-drawer__item {
    line-height: 2;
    margin-bottom: 16px
  }

  .gnav-drawer__sns {
    display: flex;
    justify-content: space-between;
    width: 220px;
    margin: 0 auto 22px
  }

  .gnav-drawer__sns-icon {
    display: block;
    width: 49px
  }

  .gnav-drawer__translate {
    padding-bottom: 56px
  }
}

.header .gt_container--hich1m .gt_switcher {
  position: absolute;
  top: 8px;
  font-family: "Noto Serif JP", serif;
  line-height: 2;
  width: calc(1.5em + 20px)
}

.page-modules .header .gt_container--hich1m .gt_switcher {
  position: relative;
  top:0;
  font-family: "Noto Serif JP", serif;
  line-height: 2;
  width: calc(1.5em + 20px);
  width: 100%;
}

/*.page-modules .container {
  overflow: visible;
}*/
@media screen and (max-width: 959px) {
  .header .gt_container--hich1m .gt_switcher {
    position: static;
    overflow: visible;
    width: 100%;
    line-height: 2;
    text-align: center
  }
}

.header .gt_container--hich1m .gt_switcher .gt_selected {
  background: none
}

@media screen and (max-width: 959px) {
  .header .gt_container--hich1m .gt_switcher .gt_selected {
    display: inline
  }
}

.header .gt_container--hich1m .gt_switcher .gt_option {
  background: none;
  border: 0
}

@media screen and (max-width: 959px) {
  .header .gt_container--hich1m .gt_switcher .gt_option {
    display: inline !important
  }
}

.header .gt_container--hich1m .gt_switcher .gt_selected a:after {
  top: 50%;
  right: 5px;
  width: 10px;
  height: 10px;
  border-top: solid 2px #231815;
  border-right: solid 2px #231815;
  background: none;
  transform: translateY(-50%) rotate(-45deg) scale(-1)
}

@media screen and (max-width: 959px) {
  .header .gt_container--hich1m .gt_switcher .gt_selected a:after {
    display: none
  }
}

.header .gt_container--hich1m .gt_switcher .gt_selected a.open:after {
  top: 50%;
  right: 5px;
  transform: translateY(0) rotate(-45deg) scale(1);
  transform-origin: center center
}

.header .gt_container--hich1m .gt_switcher a {
  opacity: 0
}

@media screen and (min-width: 960px),
print {
  .header .gt_container--hich1m .gt_switcher a {
    font-size: min(.83vw, 16px)
  }
}

@media screen and (max-width: 959px) {
  .header .gt_container--hich1m .gt_switcher a {
    display: inline;
    font-size: 16px;
    padding: 0
  }
}

.header .gt_container--hich1m .gt_switcher a.is-show {
  opacity: 1
}

@media screen and (max-width: 959px) {
  .header .gt_container--hich1m .gt_switcher a.gt_current {
    display: none
  }
}

.header .gt_container--hich1m .gt_switcher .gt_selected a {
  position: relative;
  width: auto;
  padding: 0 20px 0 0;
  border: 0;
  color: #231815;
  transition: .3s
}

@media screen and (max-width: 959px) {
  .header .gt_container--hich1m .gt_switcher .gt_selected a {
    padding: 0;
    text-decoration: underline
  }
}

.header .gt_container--hich1m .gt_switcher .gt_selected a::after {
  transition: .3s
}

.header .gt_container--hich1m .gt_switcher .gt_option a {
  position: relative;
  width: auto;
  padding: 0 20px 0 0;
  border: 0;
  color: #231815
}

@media screen and (max-width: 959px) {
  .header .gt_container--hich1m .gt_switcher .gt_option a {
    padding: 0
  }
}

.header .gt_container--hich1m .gt_switcher .gt_selected a:hover,
.header .gt_container--hich1m .gt_switcher .gt_option a:hover {
  text-decoration: underline;
  background: none
}

.header .gt_container--hich1m .gt_switcher .gt_option {
  width: auto
}

@media screen and (max-width: 959px) {
  .header .gt_container--hich1m .gt_switcher .gt_option {
    display: inline
  }
}

@media screen and (max-width: 959px) {
  .header .gt_container--hich1m .gt_switcher .nturl::before {
    content: " / "
  }
}

.header .gt_container--hich1m .gt_switcher a img {
  display: none
}


/*.gnav__link,
.gnav__btn,
.header .gt_container--hich1m .gt_switcher .gt_selected a,
.header .gt_container--hich1m .gt_switcher .gt_option a {
  color: #fff
}

.gnav__btn {
  border-color: #fff
}

.gnav__btn:hover {
  color: #231815;
  background-color: #fff
}

.header .gt_container--hich1m .gt_switcher .gt_selected a:after {
  border-color: #fff
}

.gnav__link::before,
.header__bar {
  background-color: #fff
}*/

.header.is-active .header__bar {
  background-color: #231815
}

@media screen and (max-width: 959px) {

  .gnav-drawer .gnav__link,
  .header .gnav-drawer .gt_container--hich1m .gt_switcher .gt_selected a,
  .header .gt_container--hich1m .gt_switcher .gt_option a {
    color: #231815
  }
}

.gnav__50thlogo img[data-item="1"] {
  opacity: 0
}

.gnav__50thlogo img[data-item="2"] {
  opacity: 1
}

/*.header.float .gnav__50thlogo img[data-item="1"] {
  opacity: 1
}

.header.float .gnav__50thlogo img[data-item="2"] {
  opacity: 0
}*/

.footer {
  padding: 0 40px 40px;
  background: #efefef
}

@media screen and (max-width: 959px) {
  .footer {
    padding: 30px 20px 30px
  }
}

.footer__inner {
  position: relative;
  margin: 0 auto;
  padding-top: 40px;
  max-width: 1500px
}

@media screen and (max-width: 959px) {
  .footer__inner {
    padding-top: 0;
    max-width: none
  }
}

.footer__menu {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 20px;
  margin-right: 40px;
  margin-top: 16px
}

@media screen and (max-width: 959px) {
  .footer__menu {
    margin-right: 0;
    padding-bottom: 0;
    margin-top: 30px
  }
}

.footer__menu-item {
  font-size: 16px;
  line-height: 1.5;
  font-family: "Noto Serif JP", serif
}

@media screen and (max-width: 959px) {
  .footer__menu-item {
    width: 100%;
    font-size: 12px;
    line-height: 1;
    text-align: center
  }
}

.footer__menu-link {
  position: relative
}

.footer__menu-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #1a1311
}

.footer__menu-link:hover::before {
  width: 100%;
  animation: underline ease 500ms
}

.footer__menu-item:nth-of-type(n+2) {
  margin-left: 40px
}

@media screen and (max-width: 959px) {
  .footer__menu-item:nth-of-type(n+2) {
    margin-left: 0;
    margin-top: 20px
  }
}

.footer__sns {
  display: flex;
  flex-wrap: wrap
}

@media screen and (max-width: 959px) {
  .footer__sns {
    justify-content: center
  }
}

.footer__sns-item {
  width: 60px
}

@media screen and (max-width: 959px) {
  .footer__sns-item {
    width: 50px
  }
}

.footer__sns-item img {
  max-width: 100%
}

.footer__sns-item:nth-of-type(n+2) {
  margin-left: 40px
}

@media screen and (max-width: 959px) {
  .footer__sns-item:nth-of-type(n+2) {
    margin-left: 33px
  }
}

.footer__sns-icon {
  transition: 500ms ease
}

.footer__sns-icon:hover {
  opacity: .6
}

.footer__logo {
  margin: 50px auto 0;
  width: 100%;
  max-width: 432px
}

@media screen and (max-width: 959px) {
  .footer__logo {
    margin-top: 30px;
    max-width: 295px
  }
}

.footer__logo img {
  display: inline-block;
  max-width: 100%;
  object-fit: cover
}

.footer__copy {
  display: block;
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  line-height: 1;
  font-family: "Noto Serif JP", serif
}

@media screen and (max-width: 959px) {
  .footer__copy {
    margin-top: 20px;
    font-size: 10px;
    line-height: 2.1
  }
}

.footer__note {
  font-size: 14px;
  line-height: 1.5;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin-top: 30px
}

@media screen and (max-width: 959px) {
  .footer__note {
    font-size: 10px;
    margin-top: 20px
  }
}

.footer__info {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  align-items: center
}

@media screen and (max-width: 959px) {
  .footer__info {
    margin-top: 20px
  }
}

.footer__info__address {
  font-size: 14px
}

@media screen and (max-width: 959px) {
  .footer__info__address {
    font-size: 10px
  }
}

.footer__info__list {
  margin-top: 30px
}

@media screen and (max-width: 959px) {
  .footer__info__list {
    margin-top: 20px
  }
}

.footer__info__list__item {
  font-size: 14px
}

@media screen and (max-width: 959px) {
  .footer__info__list__item {
    font-size: 10px;
    line-height: 2
  }
}