@charset "UTF-8";
/* ## reset, base
---------------------------------------------------------------------- */
@layer base {
  * {
    outline: none;
  }
  html {
    background-color: #fff;
    /* ============================================
    font-size: 62.5%;
    計算式：　10(px) / 375(px) * 100 = 2.666
    画面幅375pxの時に "font-size: 10px" 相当になる 
    ===============================================*/
    font-size: 2.6666666667vw;
    /* line-height: global.$line-height; */
  }
  @media (min-width: 768px) {
    html {
      font-size: 62.5%;
    }
  }
  @media (min-width: 1920px) {
    html {
      font-size: 0.5208333333vw;
    }
  }
  html.is-locked,
  html.is-locked body {
    position: relative;
    overflow: hidden;
  }
  @media print, screen and (min-width: 1920px) {
    html {
      position: initial;
      overflow: initial;
    }
  }
  @layer {}
  body {
    font-weight: normal;
    font-size: 1.4em;
    font-kerning: normal;
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: auto;
    line-break: strict;
    color: #333;
  }
  @media (min-width: 768px) {
    body {
      font-size: 1.6em;
    }
  }
  .b-body {
    position: relative;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    padding: 0;
    overflow: hidden;
  }
  html.is-loaded .b-body {
    visibility: visible;
    opacity: 1;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: inherit;
    font-weight: bold;
    line-height: 1.4;
    font-family: inherit;
  }
  ul,
  ol {
    padding-left: 0;
    list-style-type: none;
  }
  li > ul,
  li > ol {
    margin-bottom: 0;
  }
  dd {
    margin-left: 0;
  }
  table {
    width: 100%;
  }
  a {
    transition: 0.3s;
    text-decoration: none;
  }
  a:hover {
    opacity: 0.7;
  }
  img {
    vertical-align: bottom;
    max-width: 100%;
    height: auto;
  }
  i,
  cite,
  em,
  address,
  dfn {
    font-style: normal;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  ul,
  ol,
  dl,
  blockquote,
  p,
  address,
  hr,
  table,
  fieldset,
  figure,
  pre {
    margin-top: 0;
    margin-bottom: 0;
  }
  /* ==============
    フォーム
  =============== */
  input,
  button,
  textarea,
  select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    outline: none;
    border: none;
    border-radius: 0;
    background: none;
    padding: 0;
  }
  textarea {
    resize: none;
  }
  textarea::placeholder {
    color: #ccc;
  }
  textarea::-webkit-input-placeholder {
    padding-top: 0.2rem;
  }
  textarea::-ms-input-placeholder {
    color: #ccc;
  }
  textarea:-ms-input-placeholder {
    color: #ccc;
  }
  input {
    font-size: 16px;
  }
  input::placeholder {
    color: #ccc;
  }
  input::-webkit-input-placeholder {
    padding-top: 0.2rem;
  }
  input::-ms-input-placeholder {
    color: #ccc;
  }
  input:-ms-input-placeholder {
    color: #ccc;
  }
  input[type=search]::-webkit-search-cancel-button,
  input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  select {
    color: #ccc;
    vertical-align: middle;
    transition: 0.3s;
    cursor: pointer;
    background: none transparent;
    text-indent: 0.01px;
    text-overflow: "";
  }
  select:hover {
    opacity: 0.7;
  }
  select option {
    color: #ccc;
    background-color: #fff;
  }
  select::-ms-expand {
    display: none;
  }
  select:-moz-focusring {
    color: #ccc;
    text-shadow: none;
  }
  /* =================================================
    Details
  ================================================= */
  details > summary {
    cursor: pointer;
    list-style: none;
  }
  details > summary::-webkit-details-marker {
    display: none;
  }
}
@layer base {
  .b-font-serif {
    font-style: normal;
    font-family: "Zen Old Mincho", serif;
    font-weight: 500;
  }
  .b-font-sans-serif {
    font-style: normal;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
  }
  .b-font-eng {
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-style: normal;
  }
  html {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
  }
}
.c-layout_divided-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2.5rem;
}

@media (min-width: 768px) {
  .c-layout_divided-wrapper {
    grid-template-columns: 2fr 1fr;
    column-gap: 5%;
  }
}
/* ## component
---------------------------------------------------------------------- */
.c-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .c-header {
    position: absolute;
    border-bottom: 1px silid #e2d6a3;
  }
}
@media (min-width: 768px) {
  body.is-son .c-header_nav {
    background-color: white;
    border-bottom: 1px solid #e2d6a3;
  }
}
.c-hamburger {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  z-index: 200;
  cursor: pointer;
  background-color: #333;
  padding: 0;
  width: 5rem;
  height: 5rem;
  border-bottom-left-radius: 10px;
}

@media print, screen and (min-width: 768px) {
  .c-hamburger {
    display: none;
  }
}
.c-hamburger__container {
  display: block;
  position: relative;
  margin: auto;
  width: 2.7rem;
  height: 2.3rem;
}

.c-hamburger__item {
  display: block;
  position: absolute;
  left: 0;
  transition: all 0.5s ease-out;
  margin: auto;
  background-color: white;
  width: 100%;
  height: 1px;
}

.c-hamburger__container > :nth-child(1) {
  top: 25%;
}

.c-hamburger__container > :nth-child(2) {
  bottom: 25%;
}

.c-hamburger.is-active .c-hamburger__container > :nth-child(1) {
  top: 48%;
  transform: rotate(45deg);
}

.c-hamburger.is-active .c-hamburger__container > :nth-child(2) {
  bottom: 47%;
  transform: rotate(-45deg);
}

.c-hamburger-nav-wrapper {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(110%);
  z-index: 190;
  transition: transform 0.1s;
  width: 100%;
  height: 100dvh;
  overflow-y: auto;
}

@media print, screen and (min-width: 768px) {
  .c-hamburger {
    display: none;
  }
}
.c-hamburger-nav-wrapper.is-active {
  transform: translateX(0);
  transition: transform 500ms cubic-bezier(0.165, 0.84, 0.44, 1) 300ms;
}

.c-hero_yuge-1 {
  transition: all 0.8s 1s ease;
  display: block;
  width: auto;
  height: 130%;
  max-height: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-80%, -45%) scale(0);
  z-index: 1;
}

@media print, screen and (min-width: 768px) {
  .c-hero_yuge-1 {
    height: 138%;
  }
}
html.is-loaded .c-hero_yuge-1 {
  transform: translate(-80%, -45%) scale(1);
}

.c-hero_yuge-2 {
  transition: all 0.8s 1.2s ease;
  display: block;
  width: auto;
  height: 115%;
  max-height: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(0%, -70%) scale(0);
  z-index: 1;
}

@media print, screen and (min-width: 768px) {
  .c-hero_yuge-2 {
    height: 118%;
  }
}
html.is-loaded .c-hero_yuge-2 {
  transform: translate(0%, -70%) scale(1);
}

/* ボタンエリア */
.c-menuTab_btnWrapper {
  display: flex;
  column-gap: 1.5rem;
  justify-content: center;
}

@media print, screen and (min-width: 768px) {
  .c-menuTab_btnWrapper {
    column-gap: 2.3rem;
    justify-content: flex-start;
  }
}
.c-menuTab_btn {
  transition: all 0.3s ease;
  border: 1px solid #333;
  border-radius: 50rem;
  background-color: white;
  padding: 1.2rem 0.6rem;
  font-weight: 500;
  writing-mode: vertical-rl;
  text-align: center;
  cursor: pointer;
}

.c-menuTab_btn:hover {
  background-color: #f8ccb5;
}

.c-menuTab_btn.is-selected {
  background-image: linear-gradient(to right, #e95504, #f08b54);
  color: white;
}

/* 表示エリア */
.c-menuTab_inner {
  position: relative;
  opacity: 0;
  /* 高さアニメーション（お好みで時間調整） */
  transition: height 280ms ease;
  height: 0; /* JSが初期高さをセットします */
  /* 初期のチラつき防止（JSで .is-ready を付けるまで隠す） */
  overflow: hidden;
}

.c-menuTab_inner.is-ready {
  opacity: 1;
}

.c-menuTab_inner-item {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: opacity 240ms ease, visibility 240ms ease;
  /* スクロール要素がある場合の描画最適化 */
  will-change: opacity;
  inset: 0;
  width: 100%;
  /* 重要: 中身が大きくても親の高さでクリップ */
  overflow: hidden;
  pointer-events: none;
}

.c-menuTab_inner-item.is-selected {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.c-prose > :where(* + *) {
  margin-top: 1.7rem;
}
.c-prose :where(h2) {
  font-weight: medium;
  font-size: 2.2rem;
}
@media screen and (min-width: 768px) {
  .c-prose :where(h2) {
    font-size: 2.6rem;
  }
}
.c-prose :where(h3) {
  font-weight: medoium;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .c-prose :where(h3) {
    font-size: 2.2rem;
  }
}
.c-prose :where(* + :is(h2, h3)) {
  margin-top: 2rem;
}
.c-prose :where(ol, ul) {
  list-style: revert;
}

/* ** ページネーション ** */
.c-swiper_pagination {
  padding: 1rem 0;
  text-align: center;
}

.c-swiper_pagination .swiper-pagination-bullet {
  opacity: 100;
  border: 1px solid #333;
  background-color: white;
  width: 1.4rem;
  height: 1.4rem;
}

.c-swiper_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #333;
}

/* ** 送りボタン ** */
.c-swiper_button-wrapper {
  display: flex;
  column-gap: 0.8rem;
  margin: 0 8% 0 auto;
  padding-bottom: 0.8rem;
  width: fit-content;
}

.c-swiper_button-next,
.c-swiper_button-prev {
  position: relative;
  border: 1px solid #333;
  border-radius: 100%;
  background-color: white;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
}

.c-swiper_button-next::after,
.c-swiper_button-prev::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  border-top: 2px solid #333;
  border-left: 2px solid #333;
  width: 1rem;
  height: 1rem;
  content: "";
}

.c-swiper_button-next::after {
  transform: translate(-50%, -50%) rotate(135deg);
}

.c-swiper_button-prev::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ** 静的なとき ** */
@media (min-width: 768px) {
  .is-static-swiper .swiper-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  .is-static-swiper .swiper-slide {
    flex: 0 0 auto;
    width: calc((100% - 40px) / 5);
  }
}
.c-fixedBtn_btn {
  display: flex;
  column-gap: 0.8rem;
  justify-content: center;
  align-items: center;
  height: 5.5rem;
  font-weight: bold;
  font-size: 1.6rem;
}

@media print, screen and (min-width: 768px) {
  .c-fixedBtn_btn {
    font-size: 1.8rem;
  }
}
.c-infoBlock_dt {
  display: flex;
  column-gap: 0.6rem;
  align-items: center;
  border-top: 1px solid #333;
  background-color: #f1ecd5;
  padding: 1.3rem 1.2rem;
}

.c-infoBlock_dd {
  padding: 1.4rem 1.2rem 1.4rem 3.2rem;
}

.c-infoBlock_dt .icon {
  display: block;
  width: 2.2rem;
}

/* --------------------------
  ニュースカード
-------------------------- */
.c-news_card {
  display: block;
}

.c-news_card_inner {
  display: block;
  text-decoration: none;
  color: inherit;
}

.c-news_card_thumb {
  width: 100%;
  aspect-ratio: 300/169;
  overflow: hidden;
  border-radius: 0.8rem;
  margin-bottom: 1.2rem;
  background-color: #f0f0f0;
}
.c-news_card_thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.c-card_data {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.c-card_title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

/* --------------------------
  ページネーション
-------------------------- */
.c-news_pager {
  border-top: 1px dashed #333;
  margin-top: 3.2rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .c-news_pager {
    margin-top: 6rem;
    padding-top: 3rem;
  }
}

.c-news_pager_prev,
.c-news_pager_next {
  width: 3.8rem;
  height: 3.8rem;
  background-color: #fff;
  border-radius: 100%;
  border: 2px solid #333;
  cursor: pointer;
  position: relative;
}

.c-news_pager_prev.disable,
.c-news_pager_next.disable {
  opacity: 0.2;
  pointer-events: none;
}

.c-news_pager_prev::before,
.c-news_pager_next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1rem;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
}

.c-news_pager_prev::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.c-news_pager_next::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.c-news_pager_numbers {
  display: flex;
  gap: 0.4rem;
  list-style: none;
}
.c-news_pager_numbers li {
  width: 2.4rem;
  height: 2.4rem;
}
@media (min-width: 768px) {
  .c-news_pager_numbers li {
    width: 3rem;
    height: 3rem;
  }
}
.c-news_pager_numbers li span {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #e2d6a3;
  border-radius: 100%;
}
.c-news_pager_numbers li a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

/* ## utility
---------------------------------------------------------------------- */
/* --------------------------------------
  湯気ふわふわ
-------------------------------------- */
.u-animation_mokumoku-1 {
  animation: mokumoku 3s ease 0s infinite alternate;
}

.u-animation_fuwafuwa-1 {
  animation: fuwafuwa-1 4s ease 0s infinite;
}

.u-animation_fuwafuwa-2 {
  animation: fuwafuwa-2 4s ease 0s infinite;
}

@keyframes mokumoku {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
@keyframes fuwafuwa-1 {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(-8%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes fuwafuwa-2 {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(8%);
  }
  100% {
    transform: translateY(0%);
  }
}
/* --------------------------------------
  漁港セクション スタンプが回る
-------------------------------------- */
.u-animation_stanp-rotate {
  position: absolute;
  top: 50%;
  left: 50%;
  animation: rotation 14s linear infinite;
}

@keyframes rotation {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* =======================
- ストライプ
==========================*/
.u-bg-stripe--beige {
  background-image: repeating-linear-gradient(90deg, transparent, transparent 6px, #f5f2e4 6px, #f5f2e4 9px);
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
}

/* =======================
- グラデーション
==========================*/
.u-bg-gradation--orange {
  background-image: linear-gradient(to right, #e95504, #f08b54);
}

.u-bg-gradation--red {
  background-image: linear-gradient(to right, #e02629, #bb0004);
}

/* =======================
- 出しわけの時のwabe背景
==========================*/
.u-bg-white-wave {
  background-image: var(--bg_white-wave);
  background-repeat: repeat;
  background-position: top center;
  background-size: 25% auto;
}
@media screen and (min-width: 768px) {
  .u-bg-white-wave {
    background-size: 16% auto;
  }
}

/* ===============================
- .js-inviewクラスを一緒につける
==================================*/
/* =======================
- Fade up 
==========================*/
.u-inview-fadeUp.js-inview {
  position: relative;
  top: 2.2rem;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s, top 0.7s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.1s;
}

.u-inview-fadeUp.js-inview.in-view {
  top: 0;
  opacity: 1;
}

/* =======================
- 横から出現
==========================*/
.u-inview-clipOut.js-inview {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: all 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.2s;
}

.u-inview-clipOut.js-inview.in-view {
  webkit-clip-path: inset(0);
  clip-path: inset(0);
}

/* =======================
- Blur in
==========================*/
.u-inview-blurIn.js-inview {
  opacity: 0;
}

.u-inview-blurIn.js-inview.in-view {
  animation-duration: 1.5s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  animation-name: blurAnime;
}

@keyframes blurAnime {
  from {
    transform: scale(1.02);
    opacity: 0;
    filter: blur(10px);
  }
  to {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.u-writing-mode_v {
  font-weight: 500;
  font-size: 1.9rem;
  writing-mode: sideways-rl;
}
