@charset "UTF-8";
html,body{ height:100%; }
body{
  margin:0;
  background:#fff;
  color:var(--text);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  line-height:1.7;
}
html, body, div, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video
{
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
html {
  overflow-y: scroll;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}
ol, ul {
  list-style: none;
}
p {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
}
img {
  max-width: 100%;
  height: auto;
}
/*-------------------------------
HEADER&FOOTER
-------------------------------*/
.header {
  width:100%;
  margin:0 auto;
  font-size:12px;
  background: #fff;
  display: block;
  z-index: 52;
}
.header .inner{
  width:1100px;
  margin:0 auto;
  line-height: 44px;
}
.header .inner .gnavipr-logo{
  float:left;
  display:block;
  padding-right:12px;
  width:96px;
}
.header .inner .pankuzu{float:left}
.header .inner .pankuzu li{display:inline-block}
.header .inner .pankuzu li+li:before{content:" > "}
.header .inner .post-period{float:right}
.header:after {
  content: "";
  display: block;
  clear: both;
}
.header .inner .pankuzu a {
  color: #2f2725;
  text-decoration: underline;
}
.header .inner .pankuzu a:hover {
  text-decoration: none;
}
/*-------------------------------
ロゴ
-------------------------------*/
.gnavi {
  position: relative;
  width:100%;
  margin:0 auto;
  z-index: 40;
  border-top: 4px solid #BC4029;
}
.gnavi .inner{
  width:1050px;
  position: relative;
  margin:0 auto;
  text-align: center;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  /*-------------------------------
  HEADER&FOOTER
  -------------------------------*/
  .header {
    position: fixed;
    width:100%;
    top:0;
    left: 0;
    margin:0 auto;
    height: 40px;
    font-size:12px;
    background: #fff;
    display: block;
    z-index: 150;
  }
  .header .inner{
    width:100%;
    padding: 5px 10px;
    margin:0 auto;
    line-height: 25px;
  }
  .header .inner .gnavipr-logo {
    float:left;
    display:block;
    width:30%;
    height: auto;
    margin-top:4px;
    padding-top: 0;
  }
  .header .inner .post-period {
    display: none;
  }
  .header .inner .pankuzu {
    display: none;
  }
  .header:after {
	  content: "";
	  display: block;
	  clear: both;
  }
}

/* ================= MV ================= */
.mv {
  width: 100%;
  margin: 0 auto;
  background: url("../image/mv_bg.jpg") no-repeat center center;
  background-size: cover;
}
.mv-title {
  margin: 0 auto;
  height: 640px;
  display: flex;
  justify-content: center; /* 横中央 */
  align-items: center;     /* 縦中央 */
}
.mv-img{
  max-width: 588px;
}
.mv-img img{
  display: block;
  max-width: 100%;
  height: auto;
}
.mv-datebar{
  background: #E9588E;
  text-align:center;
}
.mv-date{
  margin:0;
  color:#fff;
  font-weight:500;
  font-size: 32px;
  line-height: 60px;
}
@media screen and (max-width: 767px) {
  .mv-title {
    height: 400px;
    display: flex;
  }
  .mv-img{
    padding-top: 10px;
    max-width: 90%;
  }
  .mv-date{
    margin:0;
    color:#fff;
    font-weight:500;
    font-size: 18px;
    line-height: 40px;
  }
}

/* =========================
  アンカーメニュー（PC：横並び / SP：ハンバーガー）
========================= */
.anchor-nav{
  width: 100%;
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;

  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 120;
}

.anchor-nav__inner{
  max-width: 1100px;
  margin: 0 auto;
}
/* JS固定時の見た目 */
.anchor-nav.is-fixed{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
}

/* 固定でガクッとしないように高さ確保（JSが自動でheightを入れます） */
.anchor-nav-holder{
  height: 0;
}


/* PC：横並びメニュー */
.anchor-nav__list{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
}

.anchor-nav__list li{
  position: relative;
  padding: 0 18px;
}

/* 「｜」区切り（2個目以降のliの前に表示） */
.anchor-nav__list li + li::before{
  position: absolute;
  content: "｜";
  color: #CCC;
  line-height: 86px;
  left: -7px;
}

/* リンク */
.anchor-nav__list a{
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 20px;
  white-space: nowrap;
  line-height: 86px;
  display: block;
}

.anchor-nav__list a:hover{
  color: #1CADBF;
}

/* SP用：ハンバーガーボタン（PCでは非表示） */
.anchor-nav__btn{
  display: none;
  border: none;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

/* ハンバーガー見た目 */
.hamburger{
  width: 28px;
  height: 20px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span{
  display: block;
  height: 2px;
  background: #000;
  border-radius: 2px;
}

/* スクリーンリーダー用 */
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =========================
  ドロワーメニュー（SP用）
========================= */
.drawer{
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.drawer.is-open{
  opacity: 1;
  pointer-events: auto;
}

/* 背景の暗い部分 */
.drawer__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}

/* 右から出るパネル */
.drawer__panel{
  position: absolute;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100%;
  background: #fff;
  box-shadow: -10px 0 30px rgba(0,0,0,.12);
  transform: translateX(100%);
  transition: transform .25s ease;
  padding: 20px 18px;
}

.drawer.is-open .drawer__panel{
  transform: translateX(0);
}

/* ×閉じるボタン（右上） */
.drawer__close{
  position: absolute;
  top: 1px;
  right: 6px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: none;
  background: #fff;
  cursor: pointer;
  font-size: 40px;
  line-height: 1;
  color: #000;
}

/* ドロワー内メニュー */
.drawer__list{
  list-style: none;
  margin: 0;
  padding: 60px 0 0; /* ×ボタン分の余白 */
  display: grid;
  gap: 10px;
}

.drawer__list a{
  display: block;
  padding: 0 0 15px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  border-bottom: 1px solid #ccc;
  margin-bottom: 5px;
  font-size: 18px;
}
.drawer__list a:hover{
  color: #1CADBF;
}
/* =========================
  アンカークリック時のズレ防止（必要なら）
========================= */
html{
  scroll-behavior: smooth;
}

#about, #seafood, #menu, #shop{
  scroll-margin-top: 100px;
}
@media (max-width: 768px){
  #about, #seafood, #menu, #shop{
    scroll-margin-top: 60px;
  } 
}
/* =========================
  SP切り替え
========================= */
@media (max-width: 768px){

  /* PC用横メニューを消す */
  .anchor-nav__list{
    display: none;
  }
  .anchor-nav{
    display: none;
  }

  /* SPは右上ハンバーガー */
  .anchor-nav__inner{
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .anchor-nav__btn{
    position: fixed;
    right: 5px;
    top:2px;
    display: inline-flex;
    z-index: 100;
  }
}

/* ================= Layout ================= */
.main {
  width:100%;
  margin: 0 auto;
}
/* ================= 見出し ================= */
.section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  position: relative;
  padding: 0.5rem 0 1.6rem;
  margin-bottom: 4rem;
  font-weight: 600;
  font-size: 32px;
  text-align: center;
  color: #002076;
}
.section-title::before {
  position: absolute;
  border-bottom: 6px solid #1CADBF;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 475px;
  content: '';
}
@media screen and (max-width: 767px) {
  .section-title {
    padding: 0 0 0.8rem;
    margin-bottom: 2rem;
    font-size: 22px;
  }
  .section-title::before {
    border-bottom: 4px solid #1CADBF;
    width: 200px;
  }
}
/* ================= コンテンツ内側 ================= */
.contents-inner {
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contents-inner {
    max-width: 100%;
    padding: 0 25px;
  }
}
/* ================= 海産物フェアとは ================= */
.sec01 {
  width: 100%;
  background: url("../image/wave_top.png") no-repeat center bottom #fff;
  background-size: 100%;
  padding: 80px 0 270px;
}
.sec01 .media-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items:flex-start;
  margin: 0 auto;
}
.sec01 .media-box div:first-child {
  width: 30.612%;
}
.sec01 .media-box div:last-child {
  width: 65.306%;
}
.sec01 .media-box div:last-child > *:first-child {
  margin-top: 0;
}
.sec01 .media-box div:last-child p {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  color: #000;
}
@media screen and (max-width: 767px) {
  .sec01 {
    width: 100%;
    background: url("../image/wave_top.png") no-repeat center bottom #fff;
    background-size: 100%;
    padding: 40px 0 80px;
  }
  .sec01 .media-box {
    width: 100%;
    display: block;
    align-items:flex-start;
    margin: 0 auto;
  }
  .sec01 .media-box div:first-child {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .sec01 .media-box div:first-child img {
    max-width: 80%;
  }
  .sec01 .media-box div:last-child {
    width: 100%;
  }
  .sec01 .media-box div:last-child > *:first-child {
    margin-top: 0;
  }
  .sec01 .media-box div:last-child p {
    font-size: 15px;
    line-height: 2;
  }
}

/* ================= フェアで使用されている海産物タイトルのみ ================= */
.sec02{
  width: 100%;
  padding: 0;
  margin-top: -60px;
  position: relative;
  z-index: 10;
  background: transparent; /* ここは透明のままでOK */
}
.sec02::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 34px;
  background: #CAF3F8;
  z-index: -1; /* sec02の中身より後ろに敷く */
}
.sec02 .section-title {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .sec02{
    width: 100%;
    padding: 20px 0 0;
    margin-top: 0;
    background: #CAF3F8;
  }
  .sec02::after{
    bottom: -6px;
    width: 100%;
    height: 34px;
    background: #CAF3F8;
    z-index: -1; /* sec02の中身より後ろに敷く */
  }
  .sec02 .section-title {
    margin-bottom: 0;
  } 
}
/* ================= フェアで使用されている海産物 ================= */
.sec03 {
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 18rem;
  background: url("../image/wave_under.png") no-repeat center bottom #CAF3F8;
  background-size: 100%;
}
.sec03 .list-box{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sec03 .list-box li{
  width: 46.938%;
  margin-bottom: 50px;
}
.sec03 .list-box li h3 {
  font-size: 24px;
  margin: 10px auto 12px;
  text-align: center;
  color: #002076;
  font-weight: 500;
}
.sec03 .list-box p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  color: #000;
}
.sec03 .list-box li:nth-of-type(3),.sec03 .list-box li:nth-of-type(4) {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .sec03 {
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 5rem;
  }
  .sec03 .list-box{
    display: block;
  }
  .sec03 .list-box li{
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }
  .sec03 .list-box li img {
    max-width: 80%;
    text-align: center;
    margin: 0 auto;
  }
  .sec03 .list-box li h3 {
    font-size: 18px;
    margin: 8px auto 10px;
  }
  .sec03 .list-box p {
    text-align: left;
    font-size: 15px;
    line-height: 1.8;
  }
  .sec03 .list-box li:nth-of-type(3) {
    margin-bottom: 40px;
  }
  .sec03 .list-box li:nth-of-type(4) {
    margin-bottom: 0;
  }
}
/* ================= フェアで食べられるメニュー ================= */
.sec04 {
  width: 100%;
  padding: 0 0 100px;
  margin-top: -60px;   /* ←被せたい分だけ調整 */
  position: relative;
  z-index: 10;         /* ←sec04を前面に */
}
.sec04 .wrapper {
  overflow: hidden;
  width: 100%;
}
.food-scroll{
  width: 100%;
  overflow: hidden;
}
.food-scroll__track{
  display: flex;
  width: max-content;
  animation: foodScroll 25s linear infinite;
}
.food-scroll__list{
  display: flex;
  gap: 40px;
  padding: 0;
  margin: 0 40px 0 0; /* ←ここで境目に余白ができる */
  list-style: none;
}
.food-scroll__list li:last-child{
  margin-right: 0px;
}
.food-scroll__list li{
  flex: 0 0 auto;
}
.food-scroll__list img{
  width: 300px;        /* 画像サイズ（お好みで） */
  height: 300px;       /* 画像サイズ（お好みで） */
  object-fit: cover;
  border-radius: 30px; /* 角丸 */
  display: block;
}
@keyframes foodScroll{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 767px) {
  .sec04 {
    padding: 0 0 50px;
    margin-top: 20px;   /* ←被せたい分だけ調整 */
  }
  .food-scroll__list{
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0 20px 0 0; /* ←ここで境目に余白ができる */
  }
  .food-scroll__list li:last-child{
    margin-right: 0px;
  }
  .food-scroll__list li{
    flex: 0 0 auto;
  }
  .food-scroll__list img{
    width: 180px;        /* 画像サイズ（お好みで） */
    height: 180px;       /* 画像サイズ（お好みで） */
    border-radius: 20px; /* 角丸 */
  }
}

/* ================= フェア開催店舗はこちら！ ================= */
.sec05 {
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 5rem;
  background: #f6f6f6;
}
.sec05 .contents-inner {
  max-width: 1040px;
  margin: 0 auto;
}
.sec05 .shop-logo {
  margin: 40px auto 30px;
  text-align: center;
}
.sec05 .shop-list {
  width: 100%;
  font-size: 16px;
  font-weight: 500!important;
  color: #000;
  margin-bottom: 90px;
}
.sec05 .shop-list a {
  text-decoration: none;
  color: #000;
}
.sec05 .shop-list a[href^="http"]:after,
.sec05 .shop-list a[href^="//"]:after {
  margin: 0 0 0 5px;
  font-family: "Font Awesome 5 Free";
  content: '\f35d';
  font-weight: 600;
}
.sec05 .shop-list a[href^=""]:after {
  margin: inherit;
  font-family: inherit;
  content: '';
  font-weight: inherit;
}
.sec05 .shop-list a:hover {
  color: #1CADBF;
}
.sec05 .shop-list li {
  width: 100%;
  display: flex;
  justify-content:flex-start;
  margin-bottom: 18px;
  text-align: left;
}
.sec05 .shop-list li span {
  width: 370px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .sec05 {
    width: 100%;
    padding-top: 3rem;
    padding-bottom: 1rem;
  }
  .sec05 .contents-inner {
    max-width: 100%;
    margin: 0 auto;
  }
  .sec05 .shop-logo {
    max-width: 60%;
    margin: 50px auto 25px;
    text-align: center;
  }
  .sec05 .shop-logo img {
    object-fit: cover;
  }
  .sec05 .shop-list {
    width: 100%;
    font-size: 15px;
    margin-bottom: 30px;
  }
  .sec05 .shop-list li {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
  .sec05 .shop-list a {
    font-weight: 600;
  }
  .sec05 .shop-list li span {
    width: 100%;
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 600;
  }
}

/* ================= To Top ================= */
.to-top{
  padding: 0;
  background: none;
  position: fixed;
  right: 30px;
  bottom: 50px;
  width: 80px;
  height: 80px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: .2s ease;
  z-index: 100;
  border: none;
}
.to-top.is-show{
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .to-top{
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
  }
}

/* ================= Footer ================= */
.footer{
  background: #002076;
  padding: 36px 0;
}
.footer__inner{
  width:1100px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.footer__copy{
  color: #fff;
  font-size: 16px;
}
.footer__home{
  color:#fff;
  text-decoration:none;
  font-size: 16px;
  white-space: nowrap;
}
.footer__home:hover{ text-decoration: underline; }

@media screen and (max-width: 767px) {
  .footer{
    padding: 15px 0;
  }
  .footer__inner{
    width:100%;
    margin:0 auto;
    display:block;
    gap: 12px;
  }
  .footer__copy{
    display:block;
    color: #fff;
    font-size: 14px;
    text-align: center;
    margin-bottom: 5px;
  }
  .footer__home{
    display:block;
    font-size: 14px;
    white-space:normal;
    text-align: center;
    margin-bottom: 5px;
  }
}

