@charset "UTF-8";

/* ==========================================================================
ベース設定
=========================================================================== */
@font-face {
  font-family: "ZenOldMincho";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/ZenOldMincho-Regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "ZenOldMincho";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/ZenOldMincho-Bold.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "NotoSansJP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "NotoSansJP";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/NotoSansJP-Medium.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "NotoSansJP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/NotoSansJP-Bold.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "LibreBodoni";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/LibreBodoni-Regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "LibreBodoni";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/LibreBodoni-Bold.woff2") format("woff2");
  font-display: swap;
}

:root {
  /* カラー */
  --Text: #222;
  --Main: #35729B;
  --Sub: #0099D9;
  --Back: #EAEFF9;
  --BackGrey: #F5F5F5;
  --Line: #bbb;

  /* フォント */
  --font_serif: "ZenOldMincho", serif;
  --font_sans: "NotoSansJP", sans-serif;
  --font_LibreBodoni: "LibreBodoni", serif;
}

.html {
  font-size: min(calc(100vw / 1440 * 16), 16px);
  overflow-x: hidden;
}

#wpadminbar {
  z-index: 10000000!important;
}

.body {
  font-family: var(--font_sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: var(--Text);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  font-optical-sizing: auto;
  font-feature-settings: "palt";
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
  width: 100%;
  counter-reset: number 0;
  position: relative;
  overflow-x: hidden;
}

.body small {
  font-size: max(70%, 10px);
}

.body a {
  color: var(--Text);
  transition: opacity 0.3s;
}

.body a:hover {
  opacity: 0.6;
}

.forSP {
  display: none;
}

.forSP-inline {
  display: none;
}


/* ==========================================================================
ヘッダー
=========================================================================== */
.header {
  width: 100%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  backdrop-filter: blur(0.125rem);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  transition: transform ease 0.4s, opacity ease 0.2s;
}

.header.is-invisible {
  opacity: 0;
  transform: translateY(-100%);
}

.header__inner.inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 13.75rem - 12.125rem);
  margin-left: 13.75rem;
}

.header__logo {
  width: 20.875rem;
  aspect-ratio: 334 / 47;
}

.header__pcMenu {
  display: flex;
  align-items: center;
}

.header__pcMenu-nav .menu {
  display: flex;
  align-items: center;
}

.header__pcMenu-nav .menu li {
  height: 6.25rem;
  
}

.header__pcMenu-nav a {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--Main);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.375rem;
  height: 100%;
  padding: 0 1.5rem;
  position: relative;
}

.header__pcMenu-nav a::after {
  content: "";
  display: none;
  background: var(--Main);
  width: calc(100% + 0.125rem);
  height: max(1px, 0.0625rem);
  
}

.header__pcMenu-nav .current-menu-item a::after {
  display: inline-block;
}


/* ==========================================================================
共通パーツ
=========================================================================== */
.inner {
  width: 62.5rem;
  margin: 0 auto;
}

.ttl {
  font-family: var(--font_serif);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: var(--Main);
}

.ttl--center {
  text-align: center;
}

a.btn {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--Main);
  border-radius: 0.125rem;
  width: 20.9375rem;
  max-width: 100%;
  height: 4.5rem;
  padding: 0 1.5rem;
}

a.btn::after {
  content: "";
  display: inline-block;
  background-image: url(../img/arrow_right_m_white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 2.5rem;
  aspect-ratio: 1;
}


/* ==========================================================================
トップページ
=========================================================================== */
/* FV */
.home__fv {
  position: relative;
}

.home__fv-wrap {
  width: 100%;
  height: 100svh;
  min-height: 43.75rem;
  position: relative;
}

.home__fv-wrap-inner {
  width: calc(100% - (13.75rem * 2));
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.home__fv-catch {
  font-family: var(--font_serif);
  font-size: 2.75rem;
  line-height: 1.5;
  color: #fff;
  position: absolute;
  top: 21.8vh;
  left: 0;
}

.home__fv-catch-txt01,
.home__fv-catch-txt02 {
  opacity: 0;
}

.home__fv-video {
  width: 100%;
  height: 100%;
}

.home__fv-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home__fv-news {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(53, 114, 155, 0.5);
  padding: 1.25rem 2rem;
  position: absolute;
  bottom: 0;
  right: 0;
}

.home__fv-news-ttl {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.home__fv-news-list-item {
  color: inherit;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
}

.home__fv-news-list-item-date {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
  width: 4.5rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.home__fv-news-list-item-cat {
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.0625rem;
  color: var(--Main);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 0.125rem;
  min-width: 4rem;
  padding: 0.125rem 0.5rem;
  flex-shrink: 0;
}

.home__fv-news-list-item:nth-of-type(n+2) {
  margin-top: 0.875rem;
}

.home__fv-news-list-item a {
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  color: inherit;
}

.home__fv-news-list-item-ttl {
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.02em;
  width: 13.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

a.home__fv-news-btn {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3125rem;
  outline: max(1px, 0.0625rem) solid #fff;
  width: 5.625rem;
  height: 1.875rem;
}

.home__fv-news-btn::after {
  content: "";
  display: inline-block;
  background-image: url(../img/arrow_right_s_white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1.1875rem;
  aspect-ratio: 1;
}

/* 私たちについて */
.home__inner.inner {
  position: relative;
}

.home__about {
  padding: 7.5rem 0 15rem;
}

.home__about-inner {
  width: calc(100% + 13.75rem);
  margin: 0;
  position: relative;
}

.home__about-wrap {
  opacity: 0;
}

.home__about-txt {
  font-family: var(--font_serif);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-top: 2.5rem;
}

.home__about-img {
  width: 43.33vw;
  max-width: 39rem;
  position: absolute;
  top: -7.5rem;
  right: 0;
  z-index: -1;
  opacity: 0;
}

.home__about a.btn {
  margin-top: 2.5rem;
  opacity: 0;
}

/* 事業内容 */
.home__business-wrap {
  opacity: 0;
}

.home__business-txt {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.02em;
  text-align: justify;
  margin-top: 1.5rem;
}

.home__business-list {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.home__business-list-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: var(--Back);
  width: 14rem;
  aspect-ratio: 1;
  padding-top: 3rem;
}

.home__business-list-item img {
  width: 4rem;
  aspect-ratio: 1;
  object-fit: contain;
}

.home__business-list-item-ttl {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.625rem;
  letter-spacing: 0.1em;
  margin-top: 1.375rem;
}

small.home__business-list-item-small {
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.0625rem;
  margin-top: 0.25rem;
}

.home__business a.btn {
  margin: 2.5rem auto 0;
  opacity: 0;
}

/* アクセス */
.home__access {
  margin-top: 5rem;
}

.home__access-wrap {
  opacity: 0;
}

.home__access-grid {
  display: grid;
  grid-template-columns: 26.25rem 33.75rem;
  gap: 1.125rem 2.5rem;
  margin-top: 2.5rem;
}

.home__access-name {
  grid-row: 1;
  grid-column: 1;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--Main);
}

.home__access-list {
  grid-row: 2;
  grid-column: 1;
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  border-top: max(1px, 0.0625rem) solid var(--Line);
  border-bottom: max(1px, 0.0625rem) solid var(--Line);
}

.home__access-list dt {
  font-weight: 700;
  font-size: 1rem;
  line-height: 2;
  padding: 1rem 0;
  position: relative;
}

.home__access-list dd {
  font-size: 1rem;
  line-height: 2;
  padding: 1rem 0;
  position: relative;
}

.home__access-list dt:nth-of-type(n+2)::before,
.home__access-list dd:nth-of-type(n+2)::before {
  content: "";
  display: inline-block;
  background: var(--Line);
  width: 100%;
  height: 0.0625rem;
  position: absolute;
  top: 0;
  left: 0;
}

.home__access-img {
  grid-row: 1 / 3;
  grid-column: 2;
  opacity: 0;
}

.home__access .btn {
  margin: 2.5rem auto 0;
  opacity: 0;
}

/* お問い合わせ */
.home__contact {
  background: var(--BackGrey);
  padding: 2.5rem 0 4rem;
  margin-top: 6.75rem;
}

.home__contact-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
}

.home__contact-list-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
  border-bottom: max(1px, 0.0625rem) solid var(--Line);
  min-width: 17.5rem;
  height: 4.5rem;
  flex-shrink: 0;
}

.home__contact-list-item-ttl {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 2;
  width: 3rem;
}

.home__contact-list-item-txt {
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 2;
}

.home__contact-list-item-txt--email {
  font-size: 1.5rem;
}

.home__contact a.btn {
  margin: 2.5rem auto 0;
}


/* ==========================================================================
固定ページ
=========================================================================== */
.page__top {
  padding: 6.25rem 0 2.5rem;
}

.page__top-ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.page__top-ttl::before {
  content: "";
  display: inline-block;
  background-image: url(../img/wave.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 3.875rem;
  height: 1.5rem;
}

.fadeUpEl,
.fadeInEl {
  opacity: 0;
}


/* ==========================================================================
私たちについて
=========================================================================== */
.about__policy {
  background-image: image-set(
    url(../img/about_policy_bg_pc.webp) type("image/webp"),
    url(../img/about_policy_bg_pc.png) type("image/png")
  );
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 5rem 0;
}

.about__policy-ttl {
  font-family: var(--font_serif);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
}

.about__policy-list {
  margin-top: 2.5rem;
}

.about__policy-list-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 0.5rem;
  padding: 2rem 3.5rem 2rem 5rem;
  position: relative;
}

.about__policy-list-item::before {
  content: "";
  display: inline-block;
  background: #fff;
  width: 0.125rem;
  height: calc(100% + 2rem);
  aspect-ratio: 1;
  position: absolute;
  top: 0;
  left: 3rem;
  transform: translateX(-50%);
}

.about__policy-list-item:first-of-type::before {
  height: calc(50% + 2rem);
  top: 50%;
}

.about__policy-list-item:last-of-type::before {
  height: calc(50% + 2rem);
  top: auto;
  bottom: 50%;
}

.about__policy-list-item::after {
  content: "";
  display: inline-block;
  background: var(--Main);
  border-radius: 50%;
  width: 1rem;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  left: 2.5rem;
  transform: translateY(-50%);
}

.about__policy-list-item:nth-of-type(n+2) {
  margin-top: 2rem;
}

.about__policy-list-item-ttl {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 2;
  letter-spacing: 0.02em;
  width: 9rem;
  flex-shrink: 0;
}

.about__policy-list-item-txt {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.02em;
  text-align: justify;
}

.about__policy-list-item-txt ul li {
  padding-left: 1.5em;
  position: relative;
  z-index: 0;
}

.about__policy-list-item-txt ul li::before {
  content: "";
  display: inline-block;
  background: var(--Text);
  border-radius: 50%;
  width: 0.25rem;
  aspect-ratio: 1;
  position: absolute;
  top: 1em;
  left: 0.6em;
}

.about__history {
  padding: 5rem 0;
  position: relative;
}

.about__history-catch {
  font-family: var(--font_serif);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.about__history-txt {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.02em;
  text-align: justify;
  width: 25rem;
  margin-top: 2.5rem;
}

.about__history-txt p + p {
  margin-top: calc(1em * 2);
}

.about__history-img {
  width: 39rem;
  position: absolute;
  top: 0;
  right: calc((100% - 62.5rem) / 2);
  z-index: -1;
}

.about__message {
  background-image: image-set(
    url(../img/about_message_bg_pc.webp) type("image/webp"),
    url(../img/about_message_bg_pc.jpg) type("image/png")
  );
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 6.125rem 0 5.375rem;
}

.about__message-txt {
  font-family: var(--font_serif);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.furigana {
  position: relative;
}

.furigana::before {
  content: attr(data-furigana);
  font-family: var(--font_sans);
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 2;
  position: absolute;
  top: -1em;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.about__role {
  padding-top: 2.5rem;
}

.about__role-topTxt {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.02em;
}

.about__role-list {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  padding-bottom: 0.5rem;
  margin-top: 2.5rem;
}

.about__role-list-item {
  background: var(--Back);
  border-radius: 0.25rem;
  width: 100%;
  padding: 2rem 1.5rem;
}

.about__role-list-item::before {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
  font-family: var(--font_LibreBodoni);
  font-size: 3rem;
  line-height: 2.25rem;
  color: var(--Main);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.about__role-list-item-ttl {
  font-family: var(--font_serif);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
  margin-top: 1rem;
}

.about__role-list-item img {
  border-radius: 0.25rem;
  aspect-ratio: 272 / 204;
  object-fit: cover;
  margin-top: 1rem;
}

.about__role-list-item-txt {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  text-align: justify;
  margin-top: 1rem;
}

.about__role-txt {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.02em;
  text-align: center;
  margin-top: 2rem;
}

.about__role .btn {
  margin: 2.5rem auto 0;
}


/* ==========================================================================
事業紹介
=========================================================================== */
.business__content {
  margin-top: 2rem;
}

.business__txt {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.02em;
  text-align: justify;
}

.business__list {
  margin-top: 2.5rem;
}

.business__list-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2.5rem;
  background: var(--Back);
  padding: 1.5rem 3rem 1.5rem 2.5rem;
}

.business__list-item--others {
  align-items: flex-start;
}

.business__list-item:nth-of-type(n+2) {
  margin-top: 2rem;
}

.business__list-item--white {
  background: transparent;
  outline: 0.0625rem solid var(--Back);
  outline-offset: -0.0625rem;
}

.business__list-item:has(.business__list-item-txt-flex) {
  padding-right: 2.5rem;
}

.business__list-item-ttl {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.15;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5rem;
  width: 12.5rem;
  flex-shrink: 0;
}

.business__list-item-ttl img {
  width: 3rem;
  aspect-ratio: 1;
}

.business__list-item--others .business__list-item-ttl img {
  width: 2rem;
}

.business__list-item-ttl small {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  display: inline-block;
  padding-left: 0.5em;
  margin-top: 0.125rem;
  white-space: nowrap;
}

.business__list-item-txt {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.02em;
  text-align: justify;
}

.business__list-item-txt-flex {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2.5rem
}

.business__list-item-txt-flex-wrap {
  width: 100%;
}

.business__list-item-txt-ttl {
  font-weight: 700;
}

.business__list-item-othersList dt {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.625rem;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}

.business__list-item-othersList dt:nth-of-type(n+2) {
  margin-top: 1rem;
}

.business__list-item-othersList dt img {
  width: 1.5rem;
}

.business__list-item-othersList dd {
  margin-top: 0.25rem;
}


/* ==========================================================================
当地区の漁業
=========================================================================== */
.fishing__message {
  background-image: image-set(
    url(../img/fishing_message_bg.webp) type("image/webp"),
    url(../img/fishing_message_bg.jpg) type("image/png")
  );
  background-repeat: no-repeat;
  background-position: 50% 80%;
  background-size: cover;
  padding: 8.25rem 0 7.25rem;
}

.fishing__message-txt {
  font-family: var(--font_serif);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  margin-left: 4rem;
}

/* ホタテ貝養殖漁業 */
.fishing__scallops {
  margin-top: 5rem;
}

.fishing__scallops-content {
  min-height: 38.875rem;
  position: relative;
}

.fishing__scallops-txt {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.02em;
  text-align: justify;
  width: 34rem;
}

.fishing__h2 {
  font-family: var(--font_serif);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.fishing__h3 {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--Main);
}

.fishing__scallops-txt .fishing__h3 {
  margin-top: 2rem;
}

.fishing__scallops-txt .fishing__h3 + p {
  margin-top: 0.5rem;
}

.fishing__scallops-content img {
  width: 25rem;
  aspect-ratio: 400 / 197;
  object-fit: cover;
  position: absolute;
  right: 0;
}

.fishing__scallops-content img:nth-of-type(1) {
  top: 0;
}

.fishing__scallops-content img:nth-of-type(2) {
  top: calc(12.3125rem + 1rem);
}

.fishing__scallops-content img:nth-of-type(3) {
  top: calc(12.3125rem * 2 + 2rem);
}

/* SDGs */
.fishing__sdgs {
  margin-top: 7.5rem;
}

.fishing__sdgs-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fishing__sdgs-head-imgs {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.fishing__sdgs-head-imgs img:nth-of-type(1) {
  width: 10.5rem;
}

.fishing__sdgs-head-imgs img:nth-of-type(2) {
  width: 5.5rem;
}

.fishing__sdgs-content {
  min-height: 39.875rem;
  margin-top: 2.5rem;
  position: relative;
}

.fishing__sdgs-content img {
  width: 26rem;
  aspect-ratio: 416 / 200;
  object-fit: cover;
  position: absolute;
  left: 0;
}

.fishing__sdgs-content img:nth-of-type(1) {
  top: 0;
}

.fishing__sdgs-content img:nth-of-type(2) {
  top: calc(12.625rem + 1rem);
}

.fishing__sdgs-content img:nth-of-type(3) {
  top: calc(12.625rem * 2 + 2rem);
}

.fishing__sdgs-txt {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.02em;
  text-align: justify;
  width: 34rem;
  margin-left: 28.5rem;
}

.fishing__sdgs-txt .fishing__h3 {
  font-size: 1.125rem;
}

.fishing__sdgs-txt .fishing__h3:nth-of-type(n+2) {
  margin-top: 2.5rem;
}

/* その他の取り組み */
.fishing__others {
  margin-top: 7.5rem;
}

.fishing__others-content {
  min-height: 31rem;
  position: relative;
}

.fishing__others-txt {
  width: 34rem;
}

.fishing__others-content img {
  width: 25rem;
  aspect-ratio: 400 / 240;
  position: absolute;
  right: 0;
}

.fishing__others-content img:nth-of-type(1) {
  top: 0;
}

.fishing__others-content img:nth-of-type(2) {
  top: calc(15rem + 1rem);
}

.fishing__others-txt {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.02em;
  text-align: justify;
}

.fishing__others-txt .fishing__h3 {
  font-size: 1.125rem;
  margin-top: 2rem;
}

.fishing__others-txt .fishing__h3 + p {
  margin-top: 0.5rem;
}


/* ==========================================================================
アクセス・施設案内
=========================================================================== */
.access__content {
  padding-top: 4.25rem;
  margin-top: 2.5rem;
  position: relative;
  z-index: 0;
}

.access__content::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 33.75rem;
  background: var(--BackGrey);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.access .home__access-grid {
  grid-template-columns: 22.9375rem 36.875rem;
  gap: 1.375rem 2.625rem;
  margin-top: 0;
}

.access .home__access-name {
  font-size: 1rem;
}

.access .home__access-list dt {
  font-size: 0.875rem;
}

.access .home__access-list dd {
  font-size: 0.875rem;
}

.home__access-img {
  opacity: 1;
}

.access__map {
  margin-top: 2.25rem;
}

.access__map iframe {
  width: 100%;
}

.access__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem 1.5rem;
  margin-top: 2rem;
}

.access__list-item-ttl {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--Main);
  padding: 0.25rem 0.5rem;
}

.access__list-item-txt ul {
  margin-top: 0.625rem;
}

.access__list-item-txt ul li {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  padding-left: 1.125rem;
  position: relative;
}

.access__list-item-txt ul li::before {
  content: "";
  display: inline-block;
  background: var(--Main);
  border-radius: 50%;
  width: 0.75rem;
  aspect-ratio: 1;
  position: absolute;
  top: 0.8em;
  left: 0;
  transform: translateY(-50%);
}

.access__list-item-txt ul li:nth-of-type(n+2) {
  margin-top: 0.375rem;
}

.access__list-item-txt ul li small {
  font-size: 0.75rem;
}


/* ==========================================================================
お問い合わせ
=========================================================================== */
.contact__txt {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.02em;
  text-align: center;
  margin-top: 1rem;
}

.contact__list {
  width: 30rem;
  margin: 0.875rem auto 0;
}

.contact__list-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2.25rem;
  border-bottom: 0.0625rem solid var(--Line);
  padding: 0.75rem 0;
}

.contact__list-item-wrap {
  display: flex;
  align-items: center;
  gap: 2.25rem
}

.contact__list-item img {
  width: 2.25rem;
  aspect-ratio: 1;
  object-fit: contain;
}

.contact__list-item-ttl {
  font-weight: 700;
  font-size: 1rem;
  line-height: 2;
  width: 4.5rem;
}

.contact__list-item-txt {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 2;
}


/* ==========================================================================
サイトポリシー
=========================================================================== */
.policy {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.02em;
  text-align: justify;
}

.policy__content {
  counter-reset: number 0;
}

.policy__content p + p {
  margin-top: calc(1em * 2);
}

.policy__content h2 {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: justify;
  color: var(--Main);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.policy__content h2::before {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
  font-family: var(--font_LibreBodoni);
  font-weight: 400;
  font-size: 2.125rem;
  line-height: 1.625rem;
  letter-spacing: 0;
  color: var(--Main);
  display: inline-block;
  background-image: url(../img);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 1.3125rem;
}

.policy__content h2 + * {
  margin-top: 1rem;
}

.policy__content ol li {
  list-style-type: decimal;
  margin-left: 1.5em;
}

.policy__content ul li {
  padding-left: 1.5em;
  position: relative;
}

.policy__content ul li::before {
  content: "";
  display: inline-block;
  background: var(--Text);
  border-radius: 50%;
  width: 0.25rem;
  aspect-ratio: 1;
  position: absolute;
  top: 1em;
  left: 0.6em;
}

.policy__content .policy__date {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.02em;
  text-align: right;
  margin-top: 1.5rem;
}


/* ==========================================================================
お知らせ アーカイブページ
=========================================================================== */
.news__content {
  margin-top: 2rem;
}

.news__filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

a.news__filter-btn {
  font-family: 500;
  font-size: 1rem;
  line-height: 1.4375rem;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--Main);
  border-radius: 0.125rem;
  padding: 0.5rem 1.5rem;
}

a.news__filter-btn.is-active {
  color: var(--Main);
  background: transparent;
  outline: 0.0625rem solid var(--Main);
  outline-offset: -0.0625rem;
}

.news__items {
  margin-top: 2.5rem;
}

.news__item:nth-of-type(n+2) {
  margin-top: 1.5rem;
}

.news__item a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  background: var(--BackGrey);
  min-height: 5.5rem;
  padding: 1.5rem 6rem 1.5rem 2.5rem;
  position: relative;
}

.news__items a::after {
  content: "";
  display: inline-block;
  background-image: url(../img/arrow_right_m_blue.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 2.5rem;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
}

.news__item-wrap {
  display: flex;
  align-items: center;
}

.news__item-date {
  font-family: var(--font_LibreBodoni);
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1;
  letter-spacing: 0.1em;
  width: 12.5rem;
  flex-shrink: 0;
}

.news__item-cat {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0.1em;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--Main);
  border-radius: 0.125rem;
  width: 6.75rem;
  padding: 0.5rem;
  flex-shrink: 0;
}

.news__item-ttl {
  font-family: var(--font_serif);
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--Main);
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 19.625rem;
}

a.pagination__link--num,
span.pagination__link--num {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--Main);
  display: flex;
  justify-content: center;
  align-items: center;
  outline: 0.0625rem solid var(--Main);
  outline-offset: -0.0625rem;
  width: 2rem;
  aspect-ratio: 1;
}

.pagination__link--num.current {
  color: #fff;
  background: var(--Main);
}

a.pagination__link--cvn {
  font-family: var(--font_LibreBodoni);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--Main);
}

.pagination__dots {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--Main);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  aspect-ratio: 1;
}


/* ==========================================================================
お知らせ 個別ページ
=========================================================================== */
.single-news__box {
  background: var(--BackGrey);
  padding: 4rem 11.25rem;
}

.single-news__box-top {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.single-news__box-top-date {
  font-family: var(--font_LibreBodoni);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.1em;
}

.single-news__box-cat {
  font-family: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0.1em;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--Main);
  border-radius: 0.125rem;
  padding: 0.5rem 1.5rem;
}

.single-news__box-top-ttl {
  font-family: var(--font_serif);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--Main);
}

.single-news__box-txt {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.02em;
  text-align: justify;
  margin-top: 2.5rem;
}

.single-news__box-txt p + p {
  margin-top: calc(1em * 2);
}

.single-news__box-txt img {
  width: 100%;
  height: auto;
  margin-top: 1.5rem;
}

a.single-news__btn {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--Main);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3125rem;
  outline: 0.075rem solid var(--Main);
  outline-offset: -0.075rem;
  width: 9.25rem;
  height: 1.875rem;
  margin: 2.5rem auto 0;
}

a.single-news__btn::before {
  content: "";
  display: inline-block;
  background-image: url(../img/arrow_left_s_blue.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1.1875rem;
  aspect-ratio: 1;
}


/* ==========================================================================
404
=========================================================================== */
.error404__content {
  text-align: center;
  padding: 6.25rem 0;
}

.error404__ttl {
  font-family: var(--font_serif);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--Main);
}

.error404__message-ttl {
  font-size: 1rem;
  margin-top: 1rem;
}

.error404__message-txt {
  font-size: 0.75rem;
}

.error404__content .btn {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}


/* ==========================================================================
フッター
=========================================================================== */
.footer {
  color: #fff;
  background: var(--Main);
}

.footer__inner.inner {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 13.75rem - 12.125rem);
  padding: 3.4375rem 0 1rem;
  margin: 0 auto;
}

.page:not(.home) .footer {
  margin-top: 7.5rem;
}

.page.fishing .footer {
  margin-top: 10rem;
}

.page.access .footer {
  margin-top: 2.5rem;
}

.page.contact .footer {
  margin-top: 8.375rem;
}

.page.policy .footer {
  margin-top: 4.5rem;
}

.archive .footer {
  margin-top: 5rem;
}

.single .footer {
  margin-top: 3.5rem;
}

.footer__info-logo {
  width: 13.75rem;
  aspect-ratio: 221 / 37;
}

.footer__info-address {
  font-size: 0.75rem;
  line-height: 1.5;
  margin-top: 1.5rem;
}

.footer__nav {
  width: 32.75rem;
  margin-top: 1rem;
}

.footer__nav .menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer__nav .menu a {
  font-size: 0.875rem;
  line-height: 0.625rem;
  letter-spacing: 0.02em;
  color: #fff;
  display: block;
}

.footer__copyright {
  display: flex;
  justify-content: flex-end;
  padding-right: 0.25rem;
  margin-top: 2.8125rem;
}

.footer__copyright img {
  width: 14.1875rem;
}
