﻿@charset "utf-8";
@import "tags.css";
@import "futility.css";
@import "cnav.css";

body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-y: scroll;
  font-size: 100%;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  line-height: 2;
  text-align: left;
  -webkit-text-size-adjust: 100%;
}

html[lang="zh-CN"] * {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Serif SC", "Songti SC", sans-serif !important;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

/* =======================================
スクロールバー
======================================= */
#ascrail2000 {
  z-index: 999999999 !important;
}

/* =======================================
外部リンクボタン
information etc
======================================= */
.linkEx a {
  display: inline-block;
  margin: 0.3em 0 0 0;
  padding: 3px 10px;
  color: #9e2124;
  font-size: 0.7em;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  background: #fff;
  border: 1px solid #9e2124;
  border-radius: 3px;
}

.linkEx a:hover {
  text-decoration: none;
  color: #fff;
  background: #9e2124;
}

/* =======================================
内部リンクボタン
reservation etc
======================================= */
.linkIn a {
  display: inline-block;
  margin: 0.3em 0 0 0;
  padding: 3px 10px;
  color: #9e2124;
  font-size: 0.7em;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  background: #fff;
  border: 1px solid #9e2124;
  border-radius: 3px;
}

.linkIn a:hover {
  text-decoration: none;
  color: #fff;
  background: #9e2124;
}

/* =======================================
ボタン
======================================= */
.btn-area {
  max-width: 300px;
  width: 100%;
  margin: 20px auto;
  text-align: center;
  clear: both;
}

.btn-primary {
  display: block;
  height: 50px;
  width: 100%;
  position: relative;
  top: 20px;
  z-index: 10;
  background-color: #000000;
  color: #FFFFFF;
  text-decoration: none;
  line-height: 50px;
  font-size: 18px;
  transition: all 0.3s ease;
  border-radius: none;
}

.btn-primary:hover {
  background-color: #FFFFFF;
  color: #000000;
  border: 1px solid #000000;
  cursor: pointer;
}

/* =======================================
layout
======================================= */
#container {
  color: #000;
}

#contents {
  position: relative;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

#contents>h1 {
  margin: 0;
  padding: 0;
}

/* =======================================
slidenav
======================================= */
#slidenav {
  position: fixed;
  top: 90px;
  right: 15px;
  width: 15px;
  margin: 0;
  padding: 0;
  z-index: 999999;
}

#slidenav div {
  margin: 0;
  padding: 0;
  list-style: none;
}

#slidenav {
  margin: 0 auto;
  padding: 0;
}

#slidenav li {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}

#slidenav li a {
  display: block;
  width: 10px;
  height: 10px;
  text-indent: -9999px;
  /* overflow:hidden;*/
  border-radius: 5px;
  transition: all 0.5s ease 0s;
}

#slidenav li a {
  background: #ccc;
  background: rgba(200, 200, 200, 0.75);
}

#slidenav li:nth-child(2n) a {
  background: #eee;
}

#slidenav li a:hover {
  background: #bf3f42;
}

@media screen and (min-width:1025px) {
  #slidenav {
    top: 180px;
    right: 25px;
  }
}

/* =======================================
pagetitleArea
======================================= */

/* 1. コンテナの基本設定 */
#pagetitleArea {
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: center; /* 中央揃え */
    background-position: center center;
}

#pagetitleArea .pagetitle {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 170px 0;
    z-index: 2; /* 文字やボタンをスライドより上に出す */
}

.bodySlide #pagetitleArea .pagetitle {
    min-height: 400px;
}

/* 2. SEO対策：h1のテキストを隠す設定 */
#pagetitleArea h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

/* 3. 矢印ボタンの設定（省略せずに記述） */
#pagetitleArea h1.btn_arrowDown {
    position: absolute;
    left: 50%;
    top: auto;
    bottom: -50px;
    display: block;
    margin: 0 0 0 -25px;
    /* h1を隠す設定から除外する */
    clip-path: none;
    width: auto;
    height: auto;
    overflow: visible;
}

#pagetitleArea h1.btn_arrowDown:hover {
    top: auto;
    bottom: -60px;
}

/* 4. スライド画像の共通設定 */
.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    z-index: 1;
    /* 共通アニメーション：3枚 × 7秒 = 21秒 */
    animation-name: index_photo_slide;
    animation-duration: 21s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}

/* 5. 画像パスと開始タイミング（全デバイス共通） */
.slide-img.img-1 { 
    background-image: url('https://kouragumi.co.jp/tsukiji/img/bgtsukiji.jpg'); 
    animation-delay: 0s !important;
    opacity: 1;
}
.slide-img.img-2 { 
    background-image: url('https://kouragumi.co.jp/tsukiji/img/bgtsukiji5.jpg'); 
    animation-delay: 7s; 
}
.slide-img.img-3 { 
    background-image: url('https://kouragumi.co.jp/tsukiji/img/bgtsukiji6.jpg'); 
    animation-delay: 14s; 
}

/* 6. 最新クロスフェード・ロジック（居残り型） */
@keyframes index_photo_slide {
    0% {
        opacity: 0;
        z-index: 1;
    }
    /* 約1秒かけて現れる */
    5% {
        opacity: 1;
        z-index: 2;
    }
    /* 7秒(33.3%)地点で次の画像が動き出すので、下層へ */
    33.3% {
        opacity: 1;
        z-index: 1;
    }
    /* 約8.4秒(40%)まで居残り、白浮きを防止 */
    40% {
        opacity: 1;
        z-index: 1;
    }
    /* ゆっくり消える */
    50% {
        opacity: 0;
        z-index: 1;
    }
    100% {
        opacity: 0;
        z-index: 1;
    }
}

/* 7. レスポンシブ設定（高さの切り替え） */

/* PCサイズ (1025px以上) */
@media screen and (min-width: 1025px) {
    #pagetitleArea {
        height: 1050px;
    }
}

/* タブレットサイズ (600px〜1024px) */
@media screen and (min-width: 600px) and (max-width: 1024px) {
    #pagetitleArea {
        height: 800px;
    }
}

/* スマホサイズ (599px以下) */
@media screen and (max-width: 599px) {
    #pagetitleArea {
        height: 800px;
    }
}

/* =======================================
slideArea
======================================= */
#slideArea {
  background: rgba(255, 255, 255, 0.90);
}

.slide {
  position: relative;
}

.slide br {
  display: none;
}

.bodySlide .slide {
  color: #fff;
  background-color: #000;
  background-repeat: no-repeat;
  background-position: 50% 0;
}

.bodySlide .slide.bgWt {
  color: #000;
  background-color: #fff;
}

.bodySlide .slide.bgWt .btn_arrowDown a {
  background-image: url('https://kouragumi.co.jp/tsukiji/img/btn_arrowdown_bk.png');
}

.slideContent {
  width: 100%;
  max-width: 599px;
  margin: 0 auto;
  padding: 150px 0 40px 0;
}

.slideContent:before,
.slideContent:after {
  content: "";
  display: table;
}

.slideContent:after {
  clear: both;
}

.bodySlide .slideContent {
  padding: 150px 0 100px;
}

.bodySlide #container h2 {
  margin-bottom: 80px;
  text-indent: -99999px;
  overflow: hidden;
  background-position: 50% 0;
  background-repeat: no-repeat;
}

.bodyNormal .slide:nth-child(2n) {
  background: #000;
  background: rgba(0, 0, 0, 0.85);
}

@media screen and (max-width:599px) {
  .slide br {
    display: block;
  }

  .slideContent {
    text-align: left;
  }
}

@media screen and (min-width:600px) and (max-width:1024px) {
  .slideContent {
    max-width: 1024px;
  }

  .slide br {
    display: block;
  }

  .slideContent {
    text-align: left;
  }
}

@media screen and (min-width:1025px) {
  .slideContent {
    max-width: 1400px;
  }
}

/* =======================================
ヘッダ全体
======================================= */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
  color: #000;
  line-height: 1;
  text-align: left;
  z-index: 99999999;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  font-family: 'Meiryo', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'Osaka', 'MS Pゴシック', 'Verdana', 'sans-serif';
  background: #fff;
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.5s ease 0s;
}

#header.isOpen {
  background: none;
  box-shadow: none;
}

@media screen and (min-width:1025px) {
  #header {
    height: 100px;
    /* background: none; */
    background: rgba(255, 255, 255, 0.95) !important;
  }
}

#header>h1 {
  transition: all 0.5s ease 0s;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  z-index: 999999;
}

#header>h1 a {
  background-image: url('https://kouragumi.co.jp/tsukiji/img/logo-8.png');
  display: block;
  width: 94px;
  height: 60px;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 94px 60px;
}

@media screen and (max-width:599px) {
  #header>h1 {
    top: 3px;
    left: 10px;
  }

  #header>h1 a {
    width: 94px;
    height: 60px;
    background-size: 94px 60px;
  }
}

@media screen and (min-width:600px) and (max-width:1024px) {
  #header>h1 {
    top: 6px;
    left: 10px;
  }

  #header>h1 a {
    width: 94px;
    height: 60px;
    background-size: 94px 60px;
  }
}

@media screen and (min-width:1025px) {
  #header>h1 {
    top: 20px;
    left: 20px;
  }

  #header>h1 a {
    width: 94px;
    height: 60px;
    background-size: 94px 60px;
  }
}

/* =======================================
グローバルナビ
======================================= */
#gNav {
  transition: all 0.5s ease 0s;
}

#gNav {
  display: none;
  position: absolute;
  top: 0 !important;
  left: 0;
  width: 100%;
  padding-top: 40px;
  font-size: 12px;
  opacity: 0;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.85);
  background-image: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.85) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#d9ffffff', GradientType=1);
}

#gNav:before,
#gNav:after {
  content: "";
  display: table;
}

#gNav:after {
  clear: both;
}

#header.isOpen #gNav {
  top: 40px;
  display: block;
  opacity: 1;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

#gNav a {
  text-decoration: none !important;
}

#gNav div {
  position: relative;
}

#gNav div:before,
#gNav div:after {
  content: "";
  display: table;
}

#gNav div:after {
  clear: both;
}

#gNav ul {
  margin: 0;
  padding: 0;
}

#gNav ul:before,
#gNav ul:after {
  content: "";
  display: table;
}

#gNav ul:after {
  clear: both;
}

#gNav ul li {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

#gNav ul li a {
  display: inline-block;
  padding: 2px;
  border-bottom: 1px dotted transparent;
}

#gNav ul li a:hover {
  text-decoration: none;
}

#gNav>div>ul {
  padding: 45px 15px 15px 15px;
}

#gNav>div>ul>li {
  padding: 5px 0;
  border-bottom: 1px solid #ccc;
}

#gNav>div>ul>li>ul {
  font-size: 0.8em;
}

#gNav>div>ul>li>ul>li>a {
  color: #666;
}

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

  #gNav>div>ul>li>ul,
  #gNav>div>ul>li>ul>li {
    display: inline-block !important;
    opacity: 1 !important;
  }
}

@media screen and (min-width:1025px) {
  #gNav {
    display: block !important;
    width: 100%;
    padding: 0 60px 0 0;
    font-size: inherit;
    opacity: 1.0;
    background: #ffffff;
  }

  #gNav div {
    float: right;
  }

  #gNav ul li {
    float: left;
  }

  #gNav ul li a {
    display: block;
    padding: 0;
    text-indent: -99999px;
    overflow: hidden;
    border-radius: 0;
  }

  #gNav ul li a:hover {
    background: none;
  }

  /*lev1*/
  #gNav>div>ul {
    margin: 0;
    padding: 0;
  }

  #gNav>div>ul>li {
    padding: 0 5px;
    border: none;
  }

  #gNav>div>ul>li>a {
    height: 100px;
  }

  /* =======================================
  グローバルナビ (画像切り替え用追加CSS)
  ======================================= */
  /* 1. 日本語 */
  .lang-ja #gNav>div>ul>li a {
    background: url('https://kouragumi.co.jp/tsukiji/img/gnav.png') no-repeat 0 0;
  }

  .lang-ja #gNav>div>ul>li:nth-child(1)>a {
    width: 153px;
    background-position: 0 0;
  }

  .lang-ja #gNav>div>ul>li:nth-child(1)>ul {
    left: 0;
  }

  .lang-ja #gNav>div>ul>li:nth-child(2)>a {
    width: 103px;
    background-position: -176px 0;
  }

  .lang-ja #gNav>div>ul>li:nth-child(3)>a {
    width: 76px;
    background-position: -301px 0;
  }

  .lang-ja #gNav>div>ul>li:nth-child(4)>a {
    width: 106px;
    background-position: -399px 0;
  }

  .lang-ja #gNav>div>ul>li:nth-child(5)>a {
    width: 72px;
    background-position: -527px 0;
  }

  .lang-ja #gNav>div>ul>li:nth-child(6)>a {
    width: 65px;
    background-position: -621px 0;
  }

  .lang-ja #gNav>div>ul>li:nth-child(7)>a {
    width: 45px;
    background-position: -707px 0;
  }

  .lang-ja #gNav>div>ul>li:nth-child(8)>a {
    width: 45px;
    background-position: -774px 0;
  }

  /* 2. 英語 */
  .lang-en #gNav>div>ul>li a {
    background: url('https://kouragumi.co.jp/tsukiji/img/gnav2.png') no-repeat 0 0;
  }

  .lang-en #gNav>div>ul>li:nth-child(1)>a {
    width: 74px;
    background-position: 0 0;
  }

  .lang-en #gNav>div>ul>li:nth-child(1)>ul {
    left: 0;
  }

  .lang-en #gNav>div>ul>li:nth-child(2)>a {
    width: 43px;
    background-position: -95px 0;
  }

  .lang-en #gNav>div>ul>li:nth-child(3)>a {
    width: 80px;
    background-position: -158px 0;
  }

  .lang-en #gNav>div>ul>li:nth-child(4)>a {
    width: 32px;
    background-position: -258px 0;
  }

  .lang-en #gNav>div>ul>li:nth-child(5)>a {
    width: 40px;
    background-position: -312px 0;
  }

  .lang-en #gNav>div>ul>li:nth-child(6)>a {
    width: 83px;
    background-position: -373px 0;
  }

  .lang-en #gNav>div>ul>li:nth-child(7)>a {
    width: 72px;
    background-position: -477px 0;
  }

  .lang-en #gNav>div>ul>li:nth-child(8)>a {
    width: 74px;
    background-position: -570px 0;
  }

  /* 3. 簡体字 */
  .lang-cn #gNav>div>ul>li a {
    background: url('https://kouragumi.co.jp/tsukiji/img/gnav3.png') no-repeat 0 0;
  }

  .lang-cn #gNav>div>ul>li:nth-child(1)>a {
    width: 68px;
    background-position: 0 0;
  }

  .lang-cn #gNav>div>ul>li:nth-child(1)>ul {
    left: 0;
  }

  .lang-cn #gNav>div>ul>li:nth-child(2)>a {
    width: 70px;
    background-position: -88px 0;
  }

  .lang-cn #gNav>div>ul>li:nth-child(3)>a {
    width: 70px;
    background-position: -179px 0;
  }

  .lang-cn #gNav>div>ul>li:nth-child(4)>a {
    width: 70px;
    background-position: -270px 0;
  }

  .lang-cn #gNav>div>ul>li:nth-child(5)>a {
    width: 74px;
    background-position: -361px 0;
  }

  .lang-cn #gNav>div>ul>li:nth-child(6)>a {
    width: 35px;
    background-position: -456px 0;
  }

  .lang-cn #gNav>div>ul>li:nth-child(7)>a {
    width: 36px;
    background-position: -514px 0;
  }

  .lang-cn #gNav>div>ul>li:nth-child(8)>a {
    width: 51px;
    background-position: -571px 0;
  }

  /* 4. 繁体字 */
  .lang-hk #gNav>div>ul>li a {
    background: url('https://kouragumi.co.jp/tsukiji/img/gnav4.png') no-repeat 0 0;
  }

  .lang-hk #gNav>div>ul>li:nth-child(1)>a {
    width: 125px;
    background-position: 0 0;
  }

  .lang-hk #gNav>div>ul>li:nth-child(1)>ul {
    left: 0;
  }

  .lang-hk #gNav>div>ul>li:nth-child(2)>a {
    width: 65px;
    background-position: -146px 0;
  }

  .lang-hk #gNav>div>ul>li:nth-child(3)>a {
    width: 66px;
    background-position: -232px 0;
  }

  .lang-hk #gNav>div>ul>li:nth-child(4)>a {
    width: 65px;
    background-position: -318px 0;
  }

  .lang-hk #gNav>div>ul>li:nth-child(5)>a {
    width: 66px;
    background-position: -404px 0;
  }

  .lang-hk #gNav>div>ul>li:nth-child(6)>a {
    width: 32px;
    background-position: -491px 0;
  }

  .lang-hk #gNav>div>ul>li:nth-child(7)>a {
    width: 33px;
    background-position: -544px 0;
  }

  .lang-hk #gNav>div>ul>li:nth-child(8)>a {
    width: 44px;
    background-position: -600px 0;
  }

  /*lev2*/
  #gNav>div>ul>li>ul {
    position: absolute;
    top: 100px;
    left: -35px;
    display: none;
    width: 150px;
  }

  #gNav>div>ul>li>ul>li {
    float: none;
    display: block;
    background-color: rgba(255, 255, 255, 0.8);
  }

  #gNav>div>ul>li>ul>li>a {
    width: 150px;
    height: 50px;
  }

  #gNav>div>ul>li>ul>li a:hover {
    background-color: #fff !important;
  }

  #gNav #linkPortal,
  #gNav #linkFacebook,
  #gNav #linkInstagram,
  #gNav #linkGlobal {
    display: none;
  }

  .bodyIndex #header #gNav {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    width: auto;
    padding: 0;
    opacity: 1;
    background: none;
    box-shadow: none;
  }

  .tsukiji #gNav>div>ul>li>ul>li a {
    background: url('https://kouragumi.co.jp/tsukiji/img/gnavsub_menus.png') no-repeat 0 0;
  }

  .tsukiji #gNav>div>ul>li>ul>li:nth-child(1)>a {
    background-position: 50% 0;
  }

  .tsukiji #gNav>div>ul>li>ul>li:nth-child(2)>a {
    background-position: 50% -50px;
  }

  .tsukiji #gNav>div>ul>li>ul>li:nth-child(3)>a {
    background-position: 50% -100px;
  }

  .tsukiji #gNav>div>ul>li>ul>li:nth-child(4)>a {
    background-position: 50% -150px;
  }

  .tsukiji #gNav>div>ul>li>ul>li:nth-child(5)>a {
    background-position: 50% -200px;
  }
}

@media screen and (min-width:1025px) {
  #gNav {
    padding: 0 80px 0 0;
  }

  /*lev1*/
  #gNav>div>ul>li {
    padding: 0 15px;
    border: none;
  }
}

/* =======================================
footer
======================================= */
.clearfix::after {
  content: "";
  clear: both;
  display: block;
}

@media screen and (max-width:599px) {
  #footer {
    height: auto;
    background-image: url('https://kouragumi.co.jp/tsukiji/img/japanese-paper_00136.jpg');
    background-position: center top;
    background-size: cover;
    padding-top: 10px;
    padding-bottom: 5px;
  }

  .footer_inner {
    position: relative;
    width: 330px;
    height: 500px;
    margin: 0 auto;
    padding-top: 30px;
  }

  .footer_inner .foot_logo {
    margin: 10px 0;
  }

  .footer_inner .foot_sns {
    width: 180px;
    margin: 0 auto;
    padding: 15px 0;
  }

  .footer_inner .foot_sns img {
    margin: 0 5px;
  }

  .footer_inner .footer_des {
    margin: 5px 0;
  }

  .footer_inner .footer_des2 {
    widows: 320px;
    font-size: 0.8em;
    text-align: left;
    margin: 0 5px;
  }

  .related {
    clear: both;
    width: 100%;
    margin: 0 auto;
    padding: 10px 0 10px 0;
    font-size: 12px;
    background-color: #000;
  }

  .related li {
    display: inline-block;
    padding: 0 20px;
  }

  .related li a {
    border-bottom: 1px solid transparent;
    text-decoration: none;
    color: #FFF;
  }

  .related li a:hover {
    border-bottom: 1px dotted #FFF;
    text-decoration: none;
  }

  .copyright {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    font-size: 0.8em;
    color: #826c32;
    border-top: 1px solid #826c32;
  }
}

@media screen and (min-width:600px) and (max-width:1024px) {
  #footer {
    height: auto;
    background-image: url('https://kouragumi.co.jp/tsukiji/img/japanese-paper_00136.jpg');
    background-position: center top;
    background-size: cover;
    padding-top: 10px;
    padding-bottom: 5px;
  }

  .footer_inner {
    position: relative;
    width: 500px;
    height: 550px;
    margin: 0 auto;
    padding-top: 30px;
  }

  .footer_inner .foot_sns {
    width: 180px;
    margin: 0 auto;
    padding-top: 15px;
  }

  .footer_inner .foot_sns img {
    margin: 0 5px;
  }

  .footer_inner .foot_logo {
    margin: 10px 0;
  }

  .footer_inner .footer_des {
    margin: 15px 0;
  }

  .related {
    clear: both;
    width: 100%;
    margin: 0 auto;
    padding: 10px 0 10px 0;
    background-color: #000;
    font-size: 12px;
  }

  .related li {
    display: inline-block;
    padding: 0 20px;
  }

  .related li a {
    border-bottom: 1px solid transparent;
    text-decoration: none;
    color: #FFF;
  }

  .related li a:hover {
    border-bottom: 1px dotted #FFF;
    text-decoration: none;
  }

  .copyright {
    width: 100%;
    margin: 10px auto;
    font-size: 0.8em;
    text-align: center;
    color: #826c32;
    border-top: 1px solid #826c32;
  }
}

@media screen and (min-width:1025px) {
  #footer {
    height: auto;
    background-image: url('https://kouragumi.co.jp/tsukiji/img/japanese-paper_00136.jpg');
    background-position: center top;
    background-size: cover;
    padding-top: 10px;
    padding-bottom: 5px;
  }

  .footer_inner {
    position: relative;
    width: 750px;
    height: 400px;
    margin: 0 auto;
    padding-top: 30px;
  }

  .footer_inner .foot_logo {
    position: absolute;
    width: 250px;
    top: 120px;
    left: 5px;
  }

  .footer_inner .foot_sns {
    position: absolute;
    width: 180px;
    top: 220px;
    left: 30px;
  }

  .footer_inner .footer_des {
    position: absolute;
    width: 500px;
    top: 65px;
    right: 0px;
    text-align: left;
    font-size: 0.8em;
    color: #ff0000;
  }

  .footer_inner .footer_des2 {
    position: absolute;
    width: 450px;
    top: 130px;
    right: 0px;
    text-align: left;
    font-size: 0.9em;
    margin-top: 20px;
  }

  .related {
    clear: both;
    width: 100%;
    margin: 10px auto;
    padding: 10px 0 10px 0;
    background-color: #000;
    font-size: 12px;
  }

  .related li {
    display: inline-block;
    padding: 0 20px;
  }

  .related li a {
    border-bottom: 1px solid transparent;
    text-decoration: none;
    color: #FFF;
  }

  .related li a:hover {
    border-bottom: 1px dotted #FFF;
    text-decoration: none;
  }

  .copyright {
    width: 100%;
    margin: 10px auto;
    font-size: 0.8em;
    text-align: center;
    color: #444444;
    border-top: 1px solid #444444;
  }
}

/* =======================================
pageTop
======================================= */
#pageTop {
  right: 0;
  margin: 0;
  padding: 0;
  z-index: 99999;
  transition: all 0.5s ease 0s;
}

#pageTop:hover {
  bottom: -5px !important;
}

#pageTop a {
  display: block;
  width: 50px;
  height: 50px;
  text-indent: -99999px;
  overflow: hidden;
  background: url('https://kouragumi.co.jp/tsukiji/img/btn_pagetop.png') no-repeat 0 0;
}

/* =======================================
下部メニュー
======================================= */
.wrap .txt-center {
  text-align: center;
  margin: 0 10%;
  font-size: 14px;
  line-height: 20px;
}

.wrap .sns li {
  width: 35px;
}

.wrap nav {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .wrap {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    position: relative;
  }

  .pc {
    display: block;
  }

  .wrap nav a {
    padding: 0 20px;
    text-decoration: none;
  }

  .wrap nav a:not(:last-child) {
    position: relative;
    border-right: 1px solid #000;
  }

  .wrap .logo {
    margin: 20px auto 20px;
    width: 74px;
  }

  .wrap .txt-center {
    line-height: 30px;
  }

  .wrap .sns {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    margin: 25px 0 73px;
    justify-content: center;
    margin: 20px 0 20px;
    gap: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .wrap .sns {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    margin: 5vw 0 11vw;
    gap: 8vw;
  }

  .wrap .logo {
    margin: 20px auto 20px;
    width: 74px;
  }

  .wrap nav {
    flex-direction: column;
    margin: 0 auto 20px;
  }

  .wrap nav a {
    padding: 5px 0;
  }
}

/* =======================================
店舗案内
======================================= */
#shop {
  padding: 40px 0;
  background-image: url('https://kouragumi.co.jp/tsukiji/img/japanese-paper_00478.jpg');
  background-size: cover;
  background-position: center;
}

#shop h1 {
  color: #000;
  font-size: 28px;
  text-align: center;
  line-height: 1.4;
  margin: 0;
  padding: 0;
}

#shop h2 {
  color: #000;
  font-size: 20px;
  text-align: center;
  line-height: 1.3;
  margin: 0 auto 30px;
  padding: 0;
}

#shop span {
  margin: 0;
  padding: 0;
}

#shop span::before {
  content: '';
  display: inline-block;
  margin-right: 20px;
  height: 1px;
  background: #000;
  width: 5%;
  vertical-align: super;
}

#shop span::after {
  content: '';
  display: inline-block;
  margin-left: 20px;
  height: 1px;
  background: #000;
  width: 5%;
  vertical-align: super;
}

#shop .box {
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
  background: #FFF;
}

#shop .box .name {
  font-size: 1.7rem;
  color: #000000;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 600;
}

#shop .box .map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 40%;
  margin: 20px 0;
}

#shop .box .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#shop .box .shopinfo dl {
  clear: both;
  width: 100%;
  padding: 0;
  line-height: 1.2;
  text-align: left;
  border-bottom: 1px solid #000;
}

#shop .box .shopinfo dt {
  width: 8em;
  font-size: 90%;
  padding: 0.5em 0 0;
}

#shop .box .shopinfo dd {
  margin: 0;
  padding: 0.3em 0 1em;
}

@media only screen and (min-width: 768px) {
  #shop .wrap ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    unicode-bidi: isolate;
    list-style: none;
  }

  #shop .wrap ul li {
    float: left;
    width: 50%;
    padding: 0 10px;
  }
}

/* =======================================
よくある質問
======================================= */
#qanda {
  padding: 40px 0;
  background: #324e6e;
  text-align: left;
}

#qanda h1 {
  color: #FFF;
  font-size: 28px;
  text-align: center;
  line-height: 1.4;
  margin: 0;
  padding: 0;
}

#qanda h2 {
  color: #FFF;
  font-size: 20px;
  text-align: center;
  line-height: 1.3;
  margin: 0 auto 30px;
  padding: 0;
}

#qanda span {
  margin: 0;
  padding: 0;
}

#qanda span::before {
  content: '';
  display: inline-block;
  margin-right: 20px;
  height: 1px;
  background: #FFF;
  width: 5%;
  vertical-align: super;
}

#qanda span::after {
  content: '';
  display: inline-block;
  margin-left: 20px;
  height: 1px;
  background: #FFF;
  width: 5%;
  vertical-align: super;
}

/* 必須 */
.accordion-content {
  display: none;
}

.accordion-header {
  background-color: #FFF;
  padding: 12px 45px 10px 20px;
  margin: 10px 0 0;
  transition: background .3s ease;
  cursor: pointer;
  position: relative;
}

.accordion-header::before,
.accordion-header::after {
  position: absolute;
  content: '';
  top: 1px;
  right: 20px;
  bottom: 0;
  width: 12px;
  height: 2px;
  margin: auto;
  background: #151E2F;
}

.accordion-header::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}

.accordion-header.active::after {
  transform: rotate(0deg);
}

.accordion-content {
  background-color: #FFF;
  padding: 12px 20px 10px;
}

.accordion-header span,
.accordion-content span {
  padding-left: 25px;
  position: relative;
}

.accordion-header span::before {
  position: absolute;
  content: "Q";
  left: 0;
  color: #151E2F;
  font-size: 17px;
}

.accordion-content span::before {
  position: absolute;
  content: "A";
  left: 0;
  color: #151E2F;
  font-size: 17px;
}

/* hover */
.accordion-header:hover {
  background-color: #F2F2F2;
}

/* =======================================
メニュー
====================================== */
#menu {
  padding: 40px 0;
  height: 600px;
  position: relative;
  background-image: url('https://kouragumi.co.jp/tsukiji/img/bg007.jpg');
  background-size: cover;
  background-position: center;
}

#menu .wrap {
  height: 100%;
  position: relative;
}

#menu h1 {
  color: #FFF;
  font-size: 28px;
  text-align: center;
  line-height: 1.4;
  margin: 0;
  padding: 0;
}

#menu h2 {
  color: #FFF;
  font-size: 20px;
  text-align: center;
  line-height: 1.3;
  margin: 0 auto 30px;
  padding: 0;
}

#menu span {
  margin: 0;
  padding: 0;
}

#menu span::before {
  content: '';
  display: inline-block;
  margin-right: 20px;
  height: 1px;
  background: #FFF;
  width: 5%;
  vertical-align: super;
}

#menu span::after {
  content: '';
  display: inline-block;
  margin-left: 20px;
  height: 1px;
  background: #FFF;
  width: 5%;
  vertical-align: super;
}

#menu .content-center {
  height: calc(100% - 140px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu .text-area {
  max-width: 600px;
  margin: 20px auto;
  padding: 30px;
  color: #FFF;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* =======================================
特徴セクション (親要素)
======================================= */
#character {
  position: relative;
  z-index: 1;
  background-image: url('https://kouragumi.co.jp/tsukiji/img/ring.png'), url('https://kouragumi.co.jp/tsukiji/img/bg005.jpg');
  background-repeat: no-repeat, repeat;
  background-position: center;
  background-size: 1000px auto, cover;
  padding: 0;
}

/* =======================================
特徴セクション A
======================================= */
#character .section_a {
  padding: 0;
  background: none;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  #character .section_a {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
  }
}

@media screen and (max-width: 767px) {
  #character .section_a {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    padding: 0px 0 50px;
  }
}

#character .section_a .wrap-content {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 768px) {
  #character .section_a .wrap-content {
    flex-direction: row;
  }
}

@media screen and (max-width: 767px) {
  #character .section_a .wrap-content {
    flex-direction: column;
  }

  #character .section_a .wrap-content .image {
    order: -1;
  }

  #character .section_a .wrap-content .text {
    order: 1;
  }
}

#character .section_a .image {
  flex: 1;
}

#character .section_a .text {
  flex: 1;
  padding: 20px;
}

#character .section_a img {
  width: 100%;
  height: auto;
  display: block;
}

#character .section_a .text h1 {
  font-weight: bold;
}

@media only screen and (min-width: 768px) {
  #character .section_a .text h1 {
    font-size: 40px;
  }
}

@media only screen and (max-width: 767px) {
  #character .section_a .text h1 {
    font-size: 32px;
  }
}

/* =======================================
特徴セクション B
======================================= */
#character .section_b {
  background-image: url('https://kouragumi.co.jp/tsukiji/img/japanese-paper_00478.jpg');
  background-size: cover;
  background-position: center;
  padding: 0;
  position: relative;
  z-index: 2;
  margin-top: -60px;
}

@media screen and (min-width: 768px) {
  #character .section_b {
    clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
  }
}

@media screen and (max-width: 767px) {
  #character .section_b {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    padding: 60px 0 50px;
  }
}

#character .section_b .wrap-content {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 768px) {
  #character .section_b .wrap-content {
    flex-direction: row;
  }
}

@media screen and (max-width: 767px) {
  #character .section_b .wrap-content {
    flex-direction: column;
  }

  #character .section_b .wrap-content .image {
    order: -1;
  }

  #character .section_b .wrap-content .text {
    order: 1;
  }
}

#character .section_b .image {
  flex: 1;
}

#character .section_b .text {
  flex: 1;
  padding: 20px;
}

#character .section_b img {
  width: 100%;
  height: auto;
  display: block;
}

#character .section_b .text h1 {
  font-weight: bold;
}

@media only screen and (min-width: 768px) {
  #character .section_b .text h1 {
    font-size: 40px;
  }
}

@media only screen and (max-width: 767px) {
  #character .section_b .text h1 {
    font-size: 32px;
  }
}

/* =======================================
特徴セクション C
======================================= */
#character .section_c {
  padding: 30px 0 0;
  background: none;
  margin-top: -100px;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  #character .section_c {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

#character .section_c .wrap-content {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 768px) {
  #character .section_c .wrap-content {
    flex-direction: row;
  }
}

@media screen and (max-width: 767px) {
  #character .section_c .wrap-content {
    flex-direction: column;
  }

  #character .section_c .wrap-content .image {
    order: -1;
  }

  #character .section_c .wrap-content .text {
    order: 1;
  }
}

#character .section_c .image {
  flex: 1;
}

#character .section_c .text {
  flex: 1;
  padding: 20px;
}

#character .section_c img {
  width: 100%;
  height: auto;
  display: block;
}

#character .section_c .text h1 {
  font-weight: bold;
}

@media only screen and (min-width: 768px) {
  #character .section_c .text h1 {
    font-size: 40px;
  }
}

@media only screen and (max-width: 767px) {
  #character .section_c .text h1 {
    font-size: 32px;
  }
}

/* =======================================
UberEats
======================================= */
#uber {
  padding: 40px 0 0;
  display: block;
  background-color: #4db56a;
  background-size: cover;
  background-position: center;
}

#uber h1 {
  font-size: 28px;
  text-align: center;
  line-height: 1.4;
  margin: 0;
  padding: 0;
}

#uber h2 {
  font-size: 20px;
  text-align: center;
  line-height: 1.3;
  margin: 0 auto 30px;
  padding: 0;
}

#uber span::before {
  content: '';
  display: inline-block;
  margin-right: 20px;
  height: 1px;
  background: #000;
  width: 5%;
  vertical-align: super;
}

#uber span::after {
  content: '';
  display: inline-block;
  margin-left: 20px;
  height: 1px;
  background: #000;
  width: 5%;
  vertical-align: super;
}

#uber .content {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 80px;
  padding: 20px;
}

#uber .media-box {
  flex-basis: 40%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#uber .media-box img {
  max-width: 100%;
  height: auto;
  display: block;
}

#uber .text-box {
  flex-basis: 60%;
}

@media screen and (max-width:767px) {
  #uber .content {
    width: 90%;
    margin: 0 auto;
    flex-direction: column;
    padding: 20px 0;
  }

  #uber .media-box {
    flex-basis: auto;
    width: 100%;
    margin-bottom: 20px;
  }

  #uber .text-box {
    flex-basis: auto;
    width: 100%;
    margin-bottom: 0;
    text-align: left;
  }
}

/* =======================================
お知らせ (#information)
====================================== */
#information {
  background-color: #FFFFFF;
  padding: 20px 0 0;
  text-align: center;
}

#information .wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

#information h1 {
  font-size: 28px;
  text-align: center;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  color: #333;
}

#information h2 {
  font-size: 20px;
  margin: 0 auto 30px;
  padding: 0;
  color: #555;
}

#information span::before {
  content: '';
  display: inline-block;
  margin-right: 20px;
  height: 1px;
  background: #000;
  width: 5%;
  vertical-align: super;
}

#information span::after {
  content: '';
  display: inline-block;
  margin-left: 20px;
  height: 1px;
  background: #000;
  width: 5%;
  vertical-align: super;
}

#information dl {
  margin: 0 auto;
  text-align: left;
  border-top: 1px solid #CCC;
}

#information dt {
  font-weight: bold;
  color: #333;
  padding: 10px 0;
  margin-top: 10px;
}

#information dd {
  padding-bottom: 10px;
  border-bottom: 1px dotted #DDD;
  margin-left: 0;
  line-height: 1.6;
}

/* =======================================
PC / タブレット (768px以上)
======================================= */
@media only screen and (min-width: 768px) {
  #information dl {
    line-height: 1.5;
    margin: 0 auto 30px;
    overflow: hidden;
    padding-top: 10px;
  }

  #information dl::after {
    display: block;
    clear: both;
    content: '';
  }

  #information dt {
    float: left;
    clear: left;
    margin-right: 20px;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.6;
    width: 180px;
    margin: 0;
    padding: 0;
    letter-spacing: 1px;
    vertical-align: top;
  }

  #information dt::before {
    content: '-';
  }

  #information dd {
    overflow: hidden;
    line-height: 1.6;
    margin: 0 0 20px 200px;
    vertical-align: top;
  }

  #information dd:nth-child(1) {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  #information {
    padding: 40px 0;
  }

  #information .wrap {
    padding: 0 15px;
  }

  #information h1 {
    font-size: 30px;
  }

  #information dl {
    max-width: none;
  }

  #information dt {
    padding: 0;
    margin-top: 10px;
  }

  #information dd {
    padding-bottom: 10px;
  }
}