@charset "UTF-8";
/*------------------------------------------------------------------------
  global
------------------------------------------------------------------------*/
/*----------------------------------------
	variable
----------------------------------------*/
:root {
  --contents-1200: 1200px;
  --contents-1100: 1100px;
  --contents-1000: 1000px;
  --contents-900: 900px;
  --gutter-pc: 40px;
  --gutter-sp: 20px;
  --color-base01: #D9F8FF;
  --color-base02: #44B0F3;
  --color-base03: #C7F1FF;
  --color-base04: #FFF2DA;
  --color-sakana-blue: #0098E4;
  --color-accent01: #FF9925;
  --color-text-black: #303132;
  --color-line-gray: #BBBDBE;
}

/*------------------------------------------------------------------------
  global
------------------------------------------------------------------------*/
/*------------------------------------------------------------------------
foundation
├ base
└ form
------------------------------------------------------------------------*/
/*----------------------------------------
	base
----------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  color: var(--color-text-black);
  font-family: "Montserrat", "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}

* {
  box-sizing: border-box;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline-width: medium;
}

a:active, a:hover {
  outline-width: medium;
}

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

/*----------------------------------------
	Form Parts
----------------------------------------*/
input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
textarea,
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  padding: 16px 1em;
  background: #fff;
  border: 1px solid var(--color-line-gray);
  border-radius: 10px;
  font-family: inherit;
  line-height: 1.5;
  color: inherit;
}
@media (max-width: 768px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=url],
  input[type=search],
  textarea,
  select {
    padding: 10px 1em;
  }
}

input[type=number],
input[type=password] {
  width: 100%;
  padding: 16px 1em;
  background: #fff;
  border: 1px solid var(--color-line-gray);
  border-radius: 10px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  input[type=number],
  input[type=password] {
    padding: 10px 1em;
  }
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=search]:focus,
textarea:focus,
select:focus,
input[type=number],
input[type=password] {
  outline-color: var(--color-sakana-blue);
}

/*select
--------------------------*/
.select-wrap {
  position: relative;
}

.select-wrap::after {
  position: absolute;
  right: 20px;
  top: 50%;
  translate: 0 -75%;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  transform: rotate(45deg);
}

/*radio, checkbox
------------------------------------*/
input[type=radio],
input[type=checkbox] {
  opacity: 0;
  position: absolute;
}

/*クリック範囲*/
input[type=radio] + span,
input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  margin: 0 2em 0 0;
  padding: 0.5em 0.5em 0.5em 2em;
  line-height: 1;
  vertical-align: middle;
  cursor: pointer;
  line-height: 1.5;
}

/*フォーカス時*/
input[type=radio]:focus + span::before,
input[type=checkbox]:focus + span::before {
  outline: 2px solid var(--color-sakana-blue);
  outline-offset: -1px;
}

/*ラジオボタンスタイル*/
input[type=radio] + span:before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  width: 1.5em;
  height: 1.5em;
  border: 1px solid var(--color-line-gray);
  border-radius: 50%;
  line-height: 1;
  background: #fff;
}

/*ラジオボタン（未選択）*/
input[type=radio] + span:after {
  content: "";
  display: none;
}

/*ラジオボタン（選択）*/
input[type=radio]:checked + span:after {
  display: block;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0.2em;
  width: 1.125em;
  height: 1.125em;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  background: var(--color-sakana-blue);
  line-height: 1;
}

/*チェックボックススタイル*/
input[type=checkbox] + span:before {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  content: "";
  width: 1.5em;
  height: 1.5em;
  border: 1px solid var(--color-line-gray);
  border-radius: 5px;
  background: #fff;
  line-height: 1;
  vertical-align: middle;
}

/*チェックボックス（未選択）*/
input[type=checkbox] + span:after {
  content: "";
  display: none;
}

/*チェックボックス（選択）*/
input[type=checkbox]:checked + span:before {
  background: var(--color-sakana-blue);
}

input[type=checkbox]:checked + span:after {
  display: block;
  position: absolute;
  top: 50%;
  translate: 0 -60%;
  left: 0.5em;
  width: 0.5em;
  height: 1em;
  content: "";
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}

/*------------------------------------------------------------------------
  layout
------------------------------------------------------------------------*/
/* body直下のページ全体を囲む要素
------------------------------------------------------ */
.l-wrapper {
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ヘッダー
------------------------------------------------------ */
.l-header {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  pointer-events: none;
  transition-property: opacity, transform;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.l-header[data-load-anime=false] {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-100%);
}
.l-header[data-load-anime=true] {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  padding: 20px 50px;
}

.l-header__logo {
  pointer-events: all;
}
.l-header__logo img {
  width: auto;
  height: 93px;
}

.l-header__controls {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  pointer-events: all;
}

.l-header__sns {
  display: flex;
  gap: 10px;
  list-style: none;
}
.l-header__sns a {
  display: block;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  transition: transform 0.3s ease-out;
}
@media (any-hover: hover) {
  .l-header__sns a:hover {
    transform: scale(1.1);
  }
}

.l-header__button {
  display: block;
  width: 83px;
  height: 83px;
  border-radius: 50%;
  transition: transform 0.3s ease-out;
}
@media (any-hover: hover) {
  .l-header__button:hover {
    transform: scale(1.1);
  }
}

@media (max-width: 1024px) {
  .l-header__logo img {
    height: 75px;
  }
  .l-header__button {
    width: 70px;
    height: 70px;
  }
  .l-header__sns a {
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 768px) {
  .l-header__inner {
    padding: 10px var(--gutter-sp);
  }
  .l-header__logo img {
    height: 56px;
  }
  .l-header__sns a {
    width: 40px;
    height: 40px;
  }
  .l-header__button {
    width: 56px;
    height: 56px;
  }
}
@media (max-width: 640px) {
  .l-header__sns {
    display: none;
  }
}
/* グローバルナビゲーション
------------------------------------------------------ */
.l-global-nav {
  position: fixed;
  z-index: 9999;
  top: 0;
  width: 100%;
  color: #fff;
  background: var(--color-sakana-blue);
  visibility: hidden;
  transform: translateY(calc(-100% - 92px));
  transition-property: visibility, transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.l-global-nav::after {
  position: absolute;
  z-index: -1;
  bottom: -92px;
  content: "";
  width: 100%;
  height: 135px;
  background: var(--color-sakana-blue);
  -webkit-mask: url(../images/path_wave_repeat.svg) center top/112px 135px repeat-x;
          mask: url(../images/path_wave_repeat.svg) center top/112px 135px repeat-x;
}
.l-global-nav.is-active {
  visibility: visible;
  transform: translateY(0);
}

.l-global-nav__button {
  position: relative;
}
.l-global-nav__button::before, .l-global-nav__button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  width: 38px;
  height: 3px;
  background: #fff;
  transform-origin: center;
}
.l-global-nav__button::before {
  rotate: -45deg;
}
.l-global-nav__button::after {
  rotate: -135deg;
}

.l-global-nav__body {
  overflow-x: hidden;
  overflow-y: scroll;
  display: flex;
  gap: 60px;
  max-width: 1075px;
  max-height: calc(100vh - 208px);
  margin-inline: auto;
  padding: 45px var(--gutter-pc) 30px;
  box-sizing: content-box;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.l-global-nav__body::-webkit-scrollbar {
  display: none;
}

.l-global-nav__main {
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 40px;
}

.l-global-nav__link {
  position: relative;
  padding: 1em 0;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
  font-size: min(2.0779220779vw, 24px);
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.05em;
}
.l-global-nav__link i {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
}
.l-global-nav__link i img {
  vertical-align: baseline;
}
.l-global-nav__link::before, .l-global-nav__link::after {
  position: absolute;
  bottom: 0;
  content: "";
  width: 100%;
  height: 1px;
}
.l-global-nav__link::before {
  background: #87C7E8;
}
.l-global-nav__link::after {
  background: #fff;
  transition: transform 0.3s linear;
  transform: scaleX(0);
  transform-origin: left;
}

@media (any-hover: hover) {
  .l-global-nav__link:hover i {
    animation: iconAnime 0.6s ease-out;
  }
  .l-global-nav__link:hover::after {
    transform: scaleX(1);
  }
}
@keyframes iconAnime {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.l-global-nav__side {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.l-global-nav__sns {
  padding: 25px;
  border-radius: 30px;
  border: 2px solid;
}
.l-global-nav__sns p {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2142857143;
  letter-spacing: 0.05em;
  text-align: center;
}
.l-global-nav__sns ul {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-top: 10px;
}
.l-global-nav__sns ul a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.l-global-nav__sns ul a img {
  width: 55px;
  height: 55px;
  transition: transform 0.3s ease-out;
}
.l-global-nav__sns ul a span {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2142857143;
}
@media (any-hover: hover) {
  .l-global-nav__sns ul a:hover img {
    transform: scale(1.1);
  }
}

.l-global-nav__banner {
  flex-grow: 1;
  display: grid;
  place-content: center;
  width: 275px;
  padding: 27px 8px;
  border-radius: 30px;
  background: #21ACF2;
  transition: transform 0.3s ease-out;
}
@media (any-hover: hover) {
  .l-global-nav__banner:hover {
    transform: scale(1.05);
  }
}
.l-global-nav__banner img {
  width: 230px;
}

@media (max-width: 1024px) {
  .l-global-nav__body {
    flex-direction: column;
  }
  .l-global-nav__link {
    font-size: 24px;
  }
  .l-global-nav__side {
    flex-direction: row;
    width: 100%;
  }
  .l-global-nav__sns {
    flex-grow: 1;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .l-global-nav__sns p {
    font-size: 24px;
  }
  .l-global-nav__sns ul {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .l-global-nav::after {
    bottom: -46px;
    height: 76px;
    -webkit-mask-size: 63px 76px;
            mask-size: 63px 76px;
  }
  .l-global-nav__body {
    gap: 30px;
    max-height: calc(100vh - 106px);
    padding: 0 var(--gutter-sp) 30px;
  }
  .l-global-nav__link {
    font-size: 16px;
    gap: 8px;
  }
  .l-global-nav__link i {
    width: 24px;
    height: 24px;
  }
  .l-global-nav__sns {
    flex-direction: column;
    border-radius: 20px;
    padding: 20px;
  }
  .l-global-nav__sns p {
    font-size: 20px;
  }
  .l-global-nav__banner {
    border-radius: 20px;
  }
}
@media (max-width: 640px) {
  .l-global-nav__main {
    grid-template-columns: none;
  }
  .l-global-nav__side {
    flex-direction: column;
  }
  .l-global-nav__sns {
    flex-direction: row;
  }
  .l-global-nav__sns ul {
    margin-top: 0;
  }
  .l-global-nav__banner {
    width: 100%;
  }
}
/* メインコンテンツ
------------------------------------------------------ */
.l-main {
  flex-grow: 1;
  background: var(--color-base01);
}

/* ページ全体のコンテンツ幅
------------------------------------------------------ */
.l-container {
  position: relative;
  max-width: var(--contents-1000);
  margin-inline: auto;
  padding-left: var(--gutter-pc);
  padding-right: var(--gutter-pc);
  box-sizing: content-box;
}
@media (max-width: 768px) {
  .l-container {
    padding-left: var(--gutter-sp);
    padding-right: var(--gutter-sp);
  }
}
.l-container._1200 {
  max-width: var(--contents-1200);
}
.l-container._1100 {
  max-width: var(--contents-1100);
}
.l-container._900 {
  max-width: var(--contents-900);
}

/* フッター
------------------------------------------------------ */
.l-footer {
  position: relative;
  z-index: 0;
}
.l-footer::before {
  position: absolute;
  z-index: -1;
  top: -16px;
  content: "";
  width: 100%;
  height: 135px;
  background: #fff;
  -webkit-mask: url(../images/path_wave_repeat.svg) center top/112px 135px repeat-x;
          mask: url(../images/path_wave_repeat.svg) center top/112px 135px repeat-x;
}

.l-footer__body {
  max-width: 1280px;
  margin-inline: auto;
  padding: 70px var(--gutter-pc);
  box-sizing: content-box;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "logo links" "info banner";
  gap: 55px;
}

.l-footer__logo {
  grid-area: logo;
}
.l-footer__logo img {
  height: min(9.296875vw, 119px);
  min-height: 93px;
  width: auto;
}

.l-footer-links {
  grid-area: links;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 20px;
}

.l-footer__menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1em 26px;
  line-height: 1;
}
.l-footer__menu a {
  font-size: 16px;
  line-height: 1.4375;
  transition: color 0.3s ease-out;
}
@media (any-hover: hover) {
  .l-footer__menu a:hover {
    color: var(--color-sakana-blue);
  }
}

.l-footer__sub {
  display: flex;
  align-items: center;
  gap: 26px;
}

.l-footer__sns {
  display: flex;
  gap: 26px;
}
.l-footer__sns a {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.3s ease-out;
}
@media (any-hover: hover) {
  .l-footer__sns a:hover {
    opacity: 0.7;
  }
}
.l-footer__sns a i {
  width: 22px;
  height: 22px;
}
.l-footer__sns a i img {
  vertical-align: baseline;
}
.l-footer__sns a span {
  font-size: 16px;
  line-height: 1.4375;
}

.l-footer__info {
  grid-area: info;
}
.l-footer__info p {
  font-size: 14px;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
}
.l-footer__info dl {
  font-size: 14px;
}
.l-footer__info dl dt {
  width: 4em;
  float: left;
  font-weight: bold;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
.l-footer__info dl dt::after {
  content: "：";
}
.l-footer__info dl dd {
  overflow: hidden;
}

.l-footer__tel {
  width: -moz-fit-content;
  width: fit-content;
  margin: 4px 0 15px;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Quicksand", sans-serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2666666667;
  color: var(--color-sakana-blue);
}
.l-footer__tel i {
  width: 20px;
  width: 20px;
  font-size: 0;
  line-height: 1;
}
.l-footer__tel i img {
  vertical-align: baseline;
}

.l-footer__banners {
  grid-area: banner;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 13px;
  max-width: 716px;
  margin-left: auto;
}
.l-footer__banners li {
  width: 230px;
}

.l-footer__bottom {
  padding: 14px var(--gutter-pc);
  color: #fff;
  background: var(--color-base02);
}

.l-footer__copyright {
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
}

@media (max-width: 1024px) {
  .l-footer__body {
    grid-template-columns: auto;
    grid-template-areas: "logo" "links" "info" "banner";
    justify-content: center;
    justify-items: center;
    gap: 0;
  }
  .l-footer__tel {
    margin-inline: auto;
  }
  .l-footer-links {
    margin-top: 30px;
    align-items: center;
    gap: 40px;
  }
  .l-footer__menu ul {
    justify-content: center;
  }
  .l-footer__info {
    margin-top: 40px;
  }
  .l-footer__banners {
    margin-top: 40px;
    margin-left: 0;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .l-footer::before {
    top: -10px;
    height: 76px;
    -webkit-mask-size: 63px 76px;
            mask-size: 63px 76px;
  }
  .l-footer__body {
    padding: 50px var(--gutter-sp);
  }
  .l-footer__logo img {
    height: 72px;
    min-height: auto;
  }
  .l-footer__menu a {
    font-size: 14px;
  }
  .l-footer__sub {
    gap: 40px;
  }
  .l-footer__info p {
    font-size: 12px;
  }
  .l-footer__info dl {
    font-size: 12px;
  }
  .l-footer__tel {
    pointer-events: all;
  }
}
@media (max-width: 640px) {
  .l-footer-links {
    margin-top: 20px;
  }
  .l-footer__menu ul {
    flex-direction: column;
  }
  .l-footer__menu ul li {
    text-align: center;
  }
  .l-footer__sub {
    flex-direction: column-reverse;
  }
  .l-footer__banners li {
    width: min((100% - 13px) / 2, 230px);
  }
}
/* ページタイトル
------------------------------------------------------ */
.l-page-header {
  position: relative;
  z-index: 0;
  height: 400px;
}
.l-page-header + * {
  margin-top: 40px;
}

.l-page-header__inner {
  display: grid;
  place-content: center;
  height: 100%;
}

.l-page-header__title {
  margin-top: 2em;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.4583333333;
  letter-spacing: 0.05em;
  text-align: center;
}
.l-page-header__title--404 {
  font-weight: 500;
}

.l-page-header__bg-1 {
  position: absolute;
  top: -306px;
  right: calc(50% + 256px);
  z-index: -1;
  width: 597px;
}

.l-page-header__bg-2 {
  position: absolute;
  top: -230px;
  left: calc(50% + 200px);
  z-index: -1;
  width: 707px;
}

.l-page-header__deco-1 {
  position: absolute;
  top: 108px;
  left: 72px;
  z-index: -1;
  width: min(30.703125vw, 393px);
}

.l-page-header__deco-2 {
  position: absolute;
  top: 197px;
  right: -120px;
  z-index: -1;
  width: min(37.03125vw, 474px);
}

.l-page-header__deco-3 {
  position: absolute;
  top: 95px;
  left: calc(50% + 136px);
  z-index: -1;
  width: min(7.578125vw, 97px);
  rotate: -153deg;
}

@media (max-width: 1280px) {
  .l-page-header__title {
    font-size: 40px;
  }
}
@media (max-width: 1024px) {
  .l-page-header__title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .l-page-header {
    height: 300px;
  }
  .l-page-header + * {
    margin-top: 20px;
  }
  .l-page-header__title {
    font-size: 28px;
  }
  .l-page-header__deco-1 {
    width: 236px;
    left: initial;
    right: calc(50% + 100px);
  }
  .l-page-header__deco-2 {
    top: 120px;
    right: initial;
    left: calc(50% + 150px);
    width: 284px;
  }
  .l-page-header__deco-3 {
    width: 58px;
  }
}
/*------------------------------------------------------------------------
// component
------------------------------------------------------------------------*/
/* ボタン
------------------------------------------------------ */
.c-button-block {
  display: flex;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .c-button-block {
    margin-top: 60px;
  }
}
.c-button-block._center {
  justify-content: center;
  align-items: center;
}

.c-button {
  position: relative;
  display: inline-block;
  padding: 10px 50px;
  border-radius: 100vmax;
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  text-align: center;
  border: 1px solid;
  transition: 0.3s background-color ease-out;
}
@media (max-width: 768px) {
  .c-button {
    font-size: 14px;
  }
}
.c-button::after {
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
  content: "";
  width: 12px;
  height: 12px;
  background: #fff;
  clip-path: polygon(91.67% 50%, 29.17% 93.3%, 29.17% 6.7%);
  transition: transform 0.3s ease-out;
}

.c-button--back::before {
  position: absolute;
  top: 50%;
  left: 20px;
  translate: 0 -50%;
  content: "";
  width: 12px;
  height: 12px;
  background: #fff;
  clip-path: polygon(8.33% 50%, 70.83% 93.3%, 70.83% 6.7%);
  transition: transform 0.3s ease-out;
}
.c-button--back::after {
  display: none;
}

.c-button--out {
  min-width: 252px;
}
.c-button--out::after {
  width: 19px;
  height: 19px;
  background: url(../images/icon_link-out.svg) center/contain no-repeat;
  clip-path: none;
}

@media (any-hover: hover) {
  .c-button:hover::before {
    transform: translateX(-50%);
  }
  .c-button:hover::after {
    transform: translateX(50%);
  }
  .c-button--out:hover::after {
    transform: translateX(0);
  }
}
.c-button--primary {
  color: #fff;
  background: var(--color-sakana-blue);
  border-color: var(--color-sakana-blue);
}
@media (any-hover: hover) {
  .c-button--primary:hover {
    background: color-mix(in srgb, var(--color-sakana-blue) 80%, #000);
  }
}

.c-button--secondary {
  color: #fff;
  background: var(--color-accent01);
  border-color: var(--color-accent01);
}
@media (any-hover: hover) {
  .c-button--secondary:hover {
    background: color-mix(in srgb, var(--color-accent01) 90%, #000);
  }
}

.c-button--white {
  color: var(--color-base02);
  background: #fff;
  border-color: #fff;
}
.c-button--white::after {
  background: var(--color-base02);
}
@media (any-hover: hover) {
  .c-button--white:hover {
    background: color-mix(in srgb, #fff 90%, var(--color-base02));
  }
}

.c-button--ghost {
  color: currentColor;
}
.c-button--ghost::before, .c-button--ghost::after {
  background: currentColor;
}
@media (any-hover: hover) {
  .c-button--ghost:hover {
    background: color-mix(in srgb, var(--color-base01) 95%, #000);
  }
}

.c-button:has(:disabled) {
  background: #ccc;
  border-color: #ccc;
}

@media (any-hover: hover) {
  .c-button:has(:disabled):hover::before,
  .c-button:has(:disabled):hover::after {
    transform: none;
  }
}
.c-button:has(i) {
  display: flex;
  align-items: center;
  padding: 10px 30px;
  min-width: 282px;
  gap: 10px;
}
.c-button:has(i) i {
  width: 26px;
  height: 26px;
}
.c-button:has(i) i img {
  vertical-align: baseline;
}

/* トップページ見出し
------------------------------------------------------ */
.c-top-heading {
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
.c-top-heading span {
  font-size: 28px;
}
.c-top-heading h2 {
  margin-top: 5px;
  font-size: 40px;
}

@media (max-width: 1024px) {
  .c-top-heading span {
    font-size: 24px;
  }
  .c-top-heading h2 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .c-top-heading span {
    font-size: 20px;
  }
  .c-top-heading h2 {
    font-size: 24px;
  }
}
/* パンくずリスト
------------------------------------------------------ */
.c-breadcrumb {
  position: absolute;
  bottom: 20px;
  width: 100%;
  padding: 0 var(--gutter-pc);
}
.c-breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 9px;
}
.c-breadcrumb li {
  padding-bottom: 8px;
  font-size: 14px;
  line-height: 1.4285714286;
  white-space: nowrap;
}
.c-breadcrumb li:not(:last-child)::after {
  content: "＞";
  margin-left: 9px;
}

.c-breadcrumb__inner {
  overflow-x: auto;
  width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.c-breadcrumb__inner::-webkit-scrollbar {
  display: none;
}

@media (max-width: 768px) {
  .c-breadcrumb {
    bottom: 0;
    padding: 0 var(--gutter-sp);
  }
}
/* ページネーション（WP-PageNavi）
------------------------------------------------------ */
.c-pagination {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .c-pagination {
    margin-top: 60px;
  }
}
.c-pagination .wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.c-pagination .wp-pagenavi .page,
.c-pagination .wp-pagenavi .current,
.c-pagination .wp-pagenavi .previouspostslink,
.c-pagination .wp-pagenavi .nextpostslink {
  display: grid;
  place-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  line-height: 1;
  text-align: center;
  transition: color 0.3s ease-out;
}
@media (any-hover: hover) {
  .c-pagination .wp-pagenavi .page:hover,
  .c-pagination .wp-pagenavi .previouspostslink:hover,
  .c-pagination .wp-pagenavi .nextpostslink:hover {
    color: var(--color-sakana-blue);
  }
}
.c-pagination .wp-pagenavi .page,
.c-pagination .wp-pagenavi .current {
  font-size: 18px;
}
.c-pagination .wp-pagenavi .previouspostslink,
.c-pagination .wp-pagenavi .nextpostslink {
  font-size: 14px;
}
.c-pagination .wp-pagenavi .current {
  color: #fff;
  background: var(--color-sakana-blue);
}

/* タグ (カテゴリー、カスタムタクソノミー)
------------------------------------------------------ */
.c-tag {
  padding: 5px 18px;
  border-radius: 100vmax;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
  background: var(--color-text-black);
}
@media (max-width: 768px) {
  .c-tag {
    font-size: 12px;
  }
}
.c-tag--regular {
  background: #FF9925;
}
.c-tag--workshop {
  background: #00BABE;
}
.c-tag--food {
  background: #F67A7A;
}
.c-tag--salt {
  background: #0098E4;
}
.c-tag--others {
  background: #B487F3;
}
.c-tag--ghost {
  padding: 4px 17px;
  color: var(--color-text-black);
  background: transparent;
  border: 1px solid;
}

/*------------------------------------------------------------------------
// project
------------------------------------------------------------------------*/
/* 利用案内・アクセス
------------------------------------------------------ */
.p-info__inner {
  margin-right: calc(50% - 50vw);
  padding: 50px calc(50vw - 50%) 80px 88px;
  border-top-left-radius: min(6.25vw, 80px);
  border-bottom-left-radius: min(6.25vw, 80px);
  color: #fff;
  background: var(--color-base02);
}

.p-info__contents {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  max-width: 1080px;
  margin-top: 60px;
  margin-left: auto;
}

.p-info__access {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
}
.p-info__access p {
  font-size: 18px;
  line-height: 1.4444444444;
}
.p-info__access dl {
  font-size: 18px;
  line-height: 1.4444444444;
}
.p-info__access dl dt {
  width: 5em;
  float: left;
  font-weight: bold;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
.p-info__access dl dt::after {
  content: "：";
}
.p-info__access dl dd {
  overflow: hidden;
}
.p-info__access dl dd a[href^="tel:"] {
  pointer-events: none;
}
.p-info__access dl dt:not(:first-of-type),
.p-info__access dl dd:not(:first-of-type) {
  margin-top: 10px;
}

.p-info__map {
  flex-shrink: 0;
  width: 46.9444444444%;
  aspect-ratio: 13/8;
  border: 2px solid;
  border-radius: 10px;
  overflow: hidden;
}
.p-info__map iframe {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}

@media (max-width: 768px) {
  .p-info__inner {
    padding: 50px 30px;
    color: #fff;
    background: var(--color-base02);
  }
  .p-info__contents {
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
  }
  .p-info__access p {
    font-size: 14px;
  }
  .p-info__access dl {
    font-size: 14px;
  }
  .p-info__access dl dd a[href^="tel:"] {
    pointer-events: all;
  }
  .p-info__button {
    margin: 0 auto;
  }
  .p-info__map {
    width: 100%;
    max-width: 504px;
    aspect-ratio: 1/1;
  }
}
/* 神戸市立栽培漁業センターバナー
------------------------------------------------------ */
.p-site-banner {
  position: relative;
  z-index: 99;
  max-width: 1035px;
  padding: 0 var(--gutter-pc);
  margin: 120px auto 100px;
  box-sizing: content-box;
}
@media (max-width: 768px) {
  .p-site-banner {
    max-width: 280px;
    padding: 0 var(--gutter-sp);
    margin: 60px auto;
  }
}
.p-site-banner a {
  display: block;
  transition: transform 0.3s ease-out;
}

@media (any-hover: hover) {
  .p-site-banner a:hover {
    transform: translateY(-10px);
  }
}
/* ブロックエディターから出力されるエリア
------------------------------------------------------ */
.p-post {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .p-post {
    margin-top: 40px;
    font-size: 0.875em;
  }
}
.p-post > *:not(h2) {
  margin-top: 0.75em;
}
.p-post p {
  line-height: 1.8;
}
.p-post h2 {
  margin-top: 40px !important;
  font-size: 1.25em;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .p-post h2 {
    margin-top: 30px !important;
  }
}
.p-post a {
  color: var(--color-sakana-blue);
  text-decoration: underline;
}
.p-post a:hover {
  text-decoration: none;
}
.p-post ul > li {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.8;
}
.p-post ul > li::before {
  position: absolute;
  left: 0.75em;
  top: 50%;
  translate: -50%;
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}
.p-post ol > li {
  margin-left: 1.5em;
  line-height: 1.8;
  list-style-type: decimal;
}

/* 館内マップ（施設ガイドページ）
------------------------------------------------------ */
.p-facility-map__title {
  display: flex;
  align-items: center;
  gap: 0.4444444444em;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.4444444444;
}
.p-facility-map__title::before {
  content: "";
  width: 60px;
  height: 40px;
  background: url(../images/icon_sakana.svg) center/contain no-repeat;
}

.p-facility-map__img {
  margin-top: 24px;
  padding: 36px;
  border-radius: min(7.8125vw, 100px);
  background: #fff;
}
.p-facility-map__img img {
  display: block;
  max-width: var(--contents-1100);
  margin: 0 auto;
}

@media (max-width: 1280px) {
  .p-facility-map__title {
    font-size: 32px;
  }
  .p-facility-map__title::before {
    width: 54px;
    height: 36px;
  }
}
@media (max-width: 1024px) {
  .p-facility-map__title {
    font-size: 24px;
  }
  .p-facility-map__title::before {
    width: 42px;
    height: 28px;
  }
}
@media (max-width: 768px) {
  .p-facility-map__img {
    margin-top: 10px;
    padding: 18px 18px 36px;
  }
  .p-facility-map__img img {
    min-width: 640px;
  }
}
/* 見て学ぼう、体験して学ぼう（施設ガイドページ）
------------------------------------------------------ */
.p-facility {
  margin-inline: calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
}
.p-facility--01 {
  margin-top: min(20.3125vw, 260px);
  padding-bottom: min(20.3125vw, 260px);
  background: linear-gradient(transparent 20px, var(--color-base03) 20px);
}

.p-facility__headline {
  position: relative;
  z-index: 0;
  height: 95px;
  display: grid;
  place-content: center;
  margin-inline: calc(50% - 50vw);
}
.p-facility__headline::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 0;
  right: 0;
  translate: 0 -50%;
  content: "";
  width: 100%;
  height: 135px;
  background: #fff;
  -webkit-mask: url(../images/path_wave_repeat.svg) center top/112px 135px repeat-x;
          mask: url(../images/path_wave_repeat.svg) center top/112px 135px repeat-x;
}
.p-facility__headline h2 {
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
}

.p-facility__contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  max-width: var(--contents-1100);
  margin: 100px auto 0;
}
.p-facility__contents._reverse {
  flex-direction: row-reverse;
}
.p-facility__contents + .p-facility__contents {
  margin-top: 160px;
}

.p-facility__img {
  flex-shrink: 0;
  width: 46.3636363636%;
  border-radius: min(9.375vw, 120px);
}
.p-facility__img._wide {
  width: 54.5454545455%;
}
.p-facility__img img {
  border-radius: inherit;
}

.p-facility__title {
  color: var(--color-sakana-blue);
}
.p-facility__title h3 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.6;
}
.p-facility__title h3:has(br) {
  line-height: 1.2;
}
.p-facility__title h3::after {
  content: "";
  width: 189px;
  height: 12px;
  background: #fff;
  -webkit-mask: url(../images/path_wave_line.svg) no-repeat center/contain;
          mask: url(../images/path_wave_line.svg) no-repeat center/contain;
}
.p-facility__title p {
  margin-top: 10px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
}

.p-facility__text {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.8;
}
.p-facility__text p + p {
  margin-top: 10px;
}

.p-facility__button {
  margin-top: 20px;
}

.p-facility__deco-1 {
  position: absolute;
  z-index: 1;
  bottom: 22px;
  right: calc(50% + 123px);
  width: min(12.8125vw, 164px);
  rotate: 29deg;
}

.p-facility__deco-2 {
  position: absolute;
  z-index: 1;
  bottom: 18px;
  left: calc(50% + 160px);
  width: min(12.96875vw, 166px);
}

.p-facility__deco-3 {
  position: absolute;
  z-index: 1;
  bottom: 5px;
  right: calc(50% + 133px);
  width: min(23.046875vw, 295px);
  rotate: -4deg;
}

.p-facility__deco-4 {
  position: absolute;
  z-index: 1;
  bottom: -47px;
  left: calc(50% + 220px);
  width: min(11.953125vw, 153px);
}

@media (max-width: 1280px) {
  .p-facility__img._wide {
    width: 46.3636363636%;
  }
}
@media (max-width: 1024px) {
  .p-facility__headline h2 {
    font-size: 32px;
  }
  .p-facility__title h3 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .p-facility--01 {
    margin-top: 100px;
    padding-bottom: 100px;
  }
  .p-facility__headline {
    height: 56px;
  }
  .p-facility__headline::before {
    height: 76px;
    background: #fff;
    -webkit-mask: url(../images/path_wave_repeat.svg) center top/63px 76px repeat-x;
            mask: url(../images/path_wave_repeat.svg) center top/63px 76px repeat-x;
  }
  .p-facility__headline h2 {
    font-size: 24px;
  }
  .p-facility__contents {
    flex-direction: column-reverse !important;
    gap: 30px;
    max-width: 400px;
    margin: 60px auto 0;
  }
  .p-facility__contents + .p-facility__contents {
    margin-top: 80px;
  }
  .p-facility__img {
    width: 100% !important;
    border-radius: 80px;
  }
  .p-facility__title {
    text-align: center;
  }
  .p-facility__title h3 {
    align-items: center;
    font-size: 20px;
  }
  .p-facility__title h3::after {
    width: 80px;
    height: 5px;
  }
  .p-facility__title p {
    font-size: 16px;
  }
  .p-facility__text {
    margin-top: 20px;
    font-size: 14px;
  }
  .p-facility__button {
    text-align: center;
  }
  .p-facility__deco-1 {
    bottom: 0;
    right: calc(50% + 100px);
    width: 74px;
  }
  .p-facility__deco-2 {
    bottom: 0;
    left: calc(50% + 100px);
    width: 75px;
  }
  .p-facility__deco-3 {
    bottom: 0;
    right: calc(50% + 80px);
    width: 133px;
  }
  .p-facility__deco-4 {
    bottom: -30px;
    left: calc(50% + 120px);
    width: 69px;
  }
}
/* ショップ（施設ガイドページ）
------------------------------------------------------ */
.p-facility-shop {
  position: relative;
  z-index: 0;
  padding: 100px 0;
  margin-top: 133px;
}
.p-facility-shop::before {
  position: absolute;
  z-index: -1;
  content: "";
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  min-width: 972px;
  width: 100%;
  height: 100%;
  background: url(../images/shape_facility-1.svg) center/contain no-repeat;
}

.p-facility-shop__inner {
  max-width: 520px;
  margin: 0 auto;
}

.p-facility-shop__title {
  font-size: 60px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-sakana-blue);
}

.p-facility-shop__img {
  margin-top: 24px;
  border-radius: 60px;
}
.p-facility-shop__img img {
  border-radius: inherit;
}

.p-facility-shop__copy {
  margin-top: 40px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
}

.p-facility-shop__text {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.8;
}

.p-facility-shop__bg-1 {
  position: absolute;
  z-index: -1;
  top: -300px;
  left: calc(50% + 470px);
  width: 586px;
}

.p-facility-shop__bg-2 {
  position: absolute;
  z-index: -1;
  bottom: 278px;
  right: calc(50% + 563px);
  width: 250px;
}

.p-facility-shop__bg-3 {
  position: absolute;
  z-index: -1;
  bottom: -230px;
  left: calc(50% + 447px);
  width: 490px;
}

.p-facility-shop__deco-1 {
  position: absolute;
  z-index: -1;
  top: -98px;
  right: 0;
  width: min(20.703125vw, 265px);
}

.p-facility-shop__deco-2 {
  position: absolute;
  z-index: -1;
  bottom: -86px;
  left: -54px;
  width: min(25.78125vw, 330px);
}

@media (max-width: 768px) {
  .p-facility-shop {
    padding: 60px 0;
    margin-top: 80px;
  }
  .p-facility-shop::before {
    min-width: 747px;
  }
  .p-facility-shop__inner {
    max-width: 400px;
  }
  .p-facility-shop__title {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-sakana-blue);
  }
  .p-facility-shop__img {
    margin-top: 24px;
    border-radius: 60px;
  }
  .p-facility-shop__copy {
    margin-top: 30px;
    font-size: 20px;
  }
  .p-facility-shop__text {
    font-size: 14px;
  }
  .p-facility-shop__deco-1 {
    top: 0;
    left: calc(50% + 100px);
    width: 158px;
  }
  .p-facility-shop__deco-2 {
    bottom: -120px;
    left: initial;
    right: calc(50% + 100px);
    width: 198px;
  }
}
/* 体験イベント　ページ
------------------------------------------------------ */
.p-event {
  position: relative;
  z-index: 0;
  margin: 0 calc(50% - 50vw);
  padding: 100px calc(50vw - 50%);
  background: #fff;
}
.p-event::before, .p-event::after {
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 135px;
  background: #fff;
  -webkit-mask: url(../images/path_wave_repeat.svg) center top/112px 135px repeat-x;
          mask: url(../images/path_wave_repeat.svg) center top/112px 135px repeat-x;
}
.p-event::before {
  top: -14px;
}
.p-event::after {
  bottom: -14px;
}

.p-event__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(calc((100% - 80px) / 2), 1fr));
  gap: 80px;
}

@media (max-width: 1024px) {
  .p-event__list {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .p-event {
    padding: 50px var(--gutter-sp);
  }
  .p-event::before, .p-event::after {
    height: 76px;
    -webkit-mask-size: 63px 76px;
            mask-size: 63px 76px;
  }
  .p-event::before {
    top: -10px;
  }
  .p-event::after {
    bottom: -10px;
  }
  .p-event__list {
    gap: 50px;
  }
}
@media (max-width: 640px) {
  .p-event__list {
    grid-template-columns: minmax(100%, 1fr);
    max-width: 400px;
    margin: 0 auto;
  }
}
/* 体験イベント　一覧
------------------------------------------------------ */
.p-event-card {
  display: block;
}

.p-event-card__thumb {
  overflow: hidden;
  aspect-ratio: 500/326;
  border-radius: 40px;
  border: 1px solid var(--color-line-gray);
}
.p-event-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
  transition: transform 0.3s ease-out, filter 0.3s ease-out;
}

@media (any-hover: hover) {
  .p-event-card:hover .p-event-card__thumb img {
    transform: scale(1.1);
    filter: brightness(1.1);
  }
}
.p-event-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.p-event-card__body {
  margin-top: 16px;
}

.p-event-card__date {
  font-weight: bold;
  line-height: 1.5;
}

.p-event-card__title {
  width: 100%;
  margin-top: 8px;
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.5;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.p-event-card__text {
  margin-top: 8px;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media (max-width: 768px) {
  .p-event-card {
    font-size: 0.875em;
  }
  .p-event-card__title {
    font-size: 1.25em;
  }
  .p-event-card__thumb {
    border-radius: 30px;
  }
  .p-event-card__meta {
    margin-top: 20px;
  }
  .p-event-card__body {
    margin-top: 14px;
  }
}
/* 体験イベント　詳細
------------------------------------------------------ */
/* おしらせ　詳細
------------------------------------------------------ */
/* お知らせ　一覧
------------------------------------------------------ */
.p-news-list dt {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 30px;
}
.p-news-list dt time {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4444444444;
  color: var(--color-sakana-blue);
}
.p-news-list dd {
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.p-news-list__row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 40px 0;
  border-bottom: 1px solid var(--color-line-gray);
  transition: color 0.3s ease-out;
}

.p-news-list__pickup, .p-news-post__pickup {
  padding: 5px 13px;
  border-radius: 100vmax;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-sakana-blue);
}

@media (any-hover: hover) {
  .p-news-list__row:hover {
    color: var(--color-sakana-blue);
  }
}
@media (max-width: 768px) {
  .p-news-list dt {
    gap: 20px;
  }
  .p-news-list dt time {
    font-size: 13px;
  }
  .p-news-list dd {
    font-size: 0.875em;
  }
  .p-news-list__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px;
  }
  .p-news-list__pickup, .p-news-post__pickup {
    font-size: 12px;
  }
}
.p-news-post {
  padding: 80px 0;
  border-radius: min(7.8125vw, 100px);
  background: #fff;
}
@media (max-width: 768px) {
  .p-news-post {
    padding: 40px 0;
  }
}

.p-news-post__header, .p-event-post__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .p-news-post__header, .p-event-post__header {
    gap: 20px;
  }
}

.p-news-post__meta, .p-event-post__meta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.p-news-post__meta time, .p-event-post__meta time {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4444444444;
  color: var(--color-sakana-blue);
}
@media (max-width: 768px) {
  .p-news-post__meta time, .p-event-post__meta time {
    font-size: 16px;
  }
}

.p-news-post__title, .p-event-post__title {
  font-size: 2em;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .p-news-post__title, .p-event-post__title {
    font-size: 1.5em;
  }
}

.p-news-post__intro, .p-event-post__intro {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.p-news-post__thumb, .p-event-post__thumb {
  margin-top: 40px;
  border-radius: 20px;
}
.p-news-post__thumb img, .p-event-post__thumb img {
  border-radius: inherit;
}
@media (max-width: 768px) {
  .p-news-post__thumb, .p-event-post__thumb {
    margin-top: 20px;
  }
}

.p-news-post__excerpt, .p-event-post__excerpt {
  line-height: 2;
}
@media (max-width: 768px) {
  .p-news-post__excerpt, .p-event-post__excerpt {
    font-size: 0.875em;
  }
}

@media (max-width: 768px) {
  .p-news-post__body, .p-event-post__body {
    font-size: 0.875em;
  }
}
.p-news-post__body > *:not(h2, h3), .p-event-post__body > *:not(h2, h3) {
  margin-top: 1.875em;
}
.p-news-post__body p, .p-event-post__body p {
  line-height: 2;
}
.p-news-post__body h2, .p-event-post__body h2 {
  margin-top: 80px !important;
  padding: 12px 36px;
  border-radius: 10px;
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.5;
  background: var(--color-base03);
}
.p-news-post__body h2 + *, .p-event-post__body h2 + * {
  margin-top: 36px;
}
@media (max-width: 768px) {
  .p-news-post__body h2, .p-event-post__body h2 {
    margin-top: 40px !important;
    padding: 12px 20px;
  }
  .p-news-post__body h2 + *, .p-event-post__body h2 + * {
    margin-top: 30px;
  }
}
.p-news-post__body h3, .p-event-post__body h3 {
  margin-top: 30px !important;
  padding: 3px 0 3px 20px;
  border-left: 6px solid var(--color-sakana-blue);
  font-size: 1.25em;
  font-weight: bold;
  line-height: 1.5;
}
.p-news-post__body h3 + *, .p-event-post__body h3 + * {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .p-news-post__body h3, .p-event-post__body h3 {
    margin-top: 20px !important;
    padding: 3px 0 3px 14px;
  }
  .p-news-post__body h3 + *, .p-event-post__body h3 + * {
    margin-top: 14px;
  }
}
.p-news-post__body a, .p-event-post__body a {
  color: var(--color-sakana-blue);
  text-decoration: underline;
}
.p-news-post__body a:hover, .p-event-post__body a:hover {
  text-decoration: none;
}
.p-news-post__body .wp-block-image img, .p-event-post__body .wp-block-image img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
}
.p-news-post__body .wp-block-image figcaption, .p-event-post__body .wp-block-image figcaption {
  margin-top: 20px;
  text-align: center;
}
.p-news-post__body ul > li, .p-event-post__body ul > li {
  position: relative;
  padding-left: 1.25em;
  line-height: 2;
}
.p-news-post__body ul > li::before, .p-event-post__body ul > li::before {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-sakana-blue);
}
.p-news-post__body ol > li, .p-event-post__body ol > li {
  line-height: 2;
  margin-left: 1.25em;
  list-style-type: decimal;
}

.p-event-post {
  position: relative;
  z-index: 0;
  margin-inline: calc(50% - 50vw);
  padding: 60px calc(50vw - 50%) 100px;
  background: #fff;
}
.p-event-post::before, .p-event-post::after {
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 135px;
  background: #fff;
  -webkit-mask: url(../images/path_wave_repeat.svg) center top/112px 135px repeat-x;
          mask: url(../images/path_wave_repeat.svg) center top/112px 135px repeat-x;
}
.p-event-post::before {
  top: -14px;
}
.p-event-post::after {
  bottom: -14px;
}

.p-event-post__header {
  position: relative;
  display: block;
}
@media (max-width: 768px) {
  .p-event-post__header {
    padding-top: 20px;
  }
}

.p-event-post__meta {
  gap: 10px;
}

.p-event-post__date {
  margin-top: 20px;
  font-size: 1.25em;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .p-event-post__date {
    font-size: 1em;
  }
}

.p-event-post__update {
  position: absolute;
  top: 0;
  right: 0;
  translate: 0 -100%;
  font-size: 14px;
  line-height: 1.5;
  text-align: right;
}

.p-event-post__title {
  margin-top: 20px;
}

.p-event-post__date + .p-event-post__update + .p-event-post__title {
  margin-top: 4px;
}

.p-event-post__body h2 {
  background: var(--color-base04);
}
.p-event-post__body h3 {
  border-color: var(--color-accent01);
}
.p-event-post__body a {
  color: var(--color-accent01);
}
.p-event-post__body ul > li::before {
  background: var(--color-accent01);
}

.p-event-post__reserve {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 80px auto 0;
  padding: 50px 80px;
  border-radius: 60px;
  background: var(--color-base04);
}
@media (max-width: 768px) {
  .p-event-post__reserve {
    margin: 60px auto 0;
    padding: 40px;
    border-radius: 40px;
  }
}
.p-event-post__reserve p {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 768px) {
  .p-event-post__reserve p {
    font-size: 20px;
  }
}
.p-event-post__reserve p::before {
  content: "＼　";
}
.p-event-post__reserve p::after {
  content: "　／";
}

/* お知らせ　ページ
------------------------------------------------------ */
.p-news {
  position: relative;
  z-index: 0;
  margin: 0 calc(50% - 50vw);
  padding: 100px calc(50vw - 50%);
  background: #fff;
}
.p-news::before, .p-news::after {
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 135px;
  background: #fff;
  -webkit-mask: url(../images/path_wave_repeat.svg) center top/112px 135px repeat-x;
          mask: url(../images/path_wave_repeat.svg) center top/112px 135px repeat-x;
}
.p-news::before {
  top: -14px;
}
.p-news::after {
  bottom: -14px;
}

@media (max-width: 768px) {
  .p-news {
    padding: 50px var(--gutter-sp);
  }
  .p-news::before, .p-news::after {
    height: 76px;
    -webkit-mask-size: 63px 76px;
            mask-size: 63px 76px;
  }
  .p-news::before {
    top: -10px;
  }
  .p-news::after {
    bottom: -10px;
  }
}
/* おしらせ　詳細
------------------------------------------------------ */
/* 体験イベント　詳細
------------------------------------------------------ */
/* お問い合わせページ
------------------------------------------------------ */
.p-contact__text {
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}
.p-contact__text + * {
  margin-top: 74px;
}

@media (max-width: 768px) {
  .p-contact__text {
    margin-top: 40px;
    font-size: 14px;
  }
  .p-contact__text + * {
    margin-top: 60px;
  }
}
/* フォーム
------------------------------------------------------ */
.p-form {
  position: relative;
  z-index: 0;
  margin-inline: calc(50% - 50vw);
  padding: 100px calc(50vw - 50%);
  background: var(--color-base03);
}
.p-form::before, .p-form::after {
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 135px;
  background: inherit;
  -webkit-mask: url(../images/path_wave_repeat.svg) center top/112px 135px repeat-x;
          mask: url(../images/path_wave_repeat.svg) center top/112px 135px repeat-x;
}
.p-form::before {
  top: -14px;
}
.p-form::after {
  bottom: -14px;
}

.p-form__item {
  display: flex;
  gap: 20px;
}
.p-form__item:not(:first-of-type) {
  margin-top: 40px;
}

.p-form--confirm .p-form__item {
  align-items: center;
}

.p-form__label {
  flex-shrink: 0;
  width: 250px;
  padding: 16px 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4444444444;
}

.p-form__required {
  margin-left: 12px;
  padding: 2px 14px;
  border-radius: 100vmax;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2857142857;
  vertical-align: middle;
  color: #fff;
  background-color: var(--color-accent01);
}

.p-form__field {
  flex-grow: 1;
}

.p-form__agree {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 60px;
  font-weight: bold;
  text-align: center;
}
.p-form__agree input[type=checkbox] + span {
  margin-right: 0;
}

.p-form__link a {
  font-size: 16px;
  color: var(--color-sakana-blue);
  text-decoration: underline;
}
.p-form__link a:hover {
  text-decoration: none;
}

.p-form__button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
}
.p-form__button .c-button {
  padding: 0;
}
.p-form__button .c-button input {
  padding: 10px 50px;
  border-radius: 100vmax;
}

@media (max-width: 768px) {
  .p-form {
    padding: 50px var(--gutter-sp);
  }
  .p-form::before, .p-form::after {
    height: 76px;
    -webkit-mask-size: 63px 76px;
            mask-size: 63px 76px;
  }
  .p-form::before {
    top: -10px;
  }
  .p-form::after {
    bottom: -10px;
  }
  .p-form__item {
    flex-direction: column;
    gap: 10px;
  }
  .p-form__item:not(:first-of-type) {
    margin-top: 30px;
  }
  .p-form__label {
    width: 100%;
    padding: 0;
    font-size: 16px;
  }
  .p-form__link a {
    font-size: 14px;
  }
  .p-form__agree,
  .p-form__button {
    margin-top: 40px;
  }
}
/* キービジュアル（トップページ）
------------------------------------------------------ */
.p-top-kv {
  position: relative;
  z-index: 0;
  padding-top: 126px;
  padding-bottom: 180px;
}

.p-top-kv__inner {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: flex-start;
  gap: 67px;
  max-width: 1260px;
  height: 100%;
}

.p-top-kv__nav {
  flex-shrink: 0;
  margin-top: 20px;
  margin-left: -30px;
  transition-property: opacity, transform;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.p-top-kv__nav[data-load-anime=false] {
  visibility: hidden;
  opacity: 0;
  transform: translateX(-50%);
}
.p-top-kv__nav[data-load-anime=true] {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.p-top-kv__main {
  position: relative;
  width: min(68.203125vw, 873px);
  transition-property: opacity, transform;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.p-top-kv__main[data-load-anime=false] {
  visibility: hidden;
  opacity: 0;
  transform: scale(0.9);
}
.p-top-kv__main[data-load-anime=true] {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.p-top-kv__main .swiper {
  -webkit-mask: url(../images/path_sakana.svg) center/contain no-repeat;
          mask: url(../images/path_sakana.svg) center/contain no-repeat;
}
.p-top-kv__main .swiper-slide-active img,
.p-top-kv__main .swiper-slide-duplicate-active img,
.p-top-kv__main .swiper-slide-prev img {
  animation: zoomUp 8s linear 0s normal both;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

.p-top-kv__copy {
  position: absolute;
  z-index: 99;
  top: min(3.90625vw, 50px);
  left: min(8.90625vw, 114px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.53125;
  letter-spacing: 0.15em;
  color: var(--color-sakana-blue);
  overflow: hidden;
}
.p-top-kv__copy span {
  display: block;
  padding: 0 0.3em;
  transition: transform 0.4s ease-out;
}
.p-top-kv__copy span[data-load-anime=false] {
  visibility: hidden;
  transform: translateY(110%);
}
.p-top-kv__copy span[data-load-anime=true] {
  visibility: visible;
  transform: translateY(0);
}
.p-top-kv__copy span:nth-of-type(1) {
  background: linear-gradient(to left, transparent 0.5em, #fff 0.5em);
}
.p-top-kv__copy span:nth-of-type(2) {
  background: #fff;
}

.p-top-kv__pickup {
  position: absolute;
  z-index: 0;
  bottom: -20px;
  right: 0;
  transition-property: opacity, transform;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.p-top-kv__pickup[data-load-anime=false] {
  visibility: hidden;
  opacity: 0;
  transform: translateY(100%);
}
.p-top-kv__pickup[data-load-anime=true] {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.p-top-kv__deco-1 {
  position: absolute;
  z-index: 99;
  top: -25px;
  left: calc(50% - min(4.296875vw, 55px));
  content: "";
  width: min(31.25vw, 400px);
  transition-property: opacity, transform;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.p-top-kv__deco-1[data-load-anime=false] {
  visibility: hidden;
  opacity: 0;
  transform: scale(0.9);
}
.p-top-kv__deco-1[data-load-anime=true] {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.p-top-kv__bg-1 {
  position: absolute;
  z-index: -1;
  top: -409px;
  right: calc(50% + 230px);
  width: 852px;
}

.p-top-kv__bg-2 {
  position: absolute;
  z-index: -1;
  bottom: -588px;
  left: calc(50% - 4px);
  width: 1392px;
}

@media (max-width: 1280px) {
  .p-top-kv__inner {
    justify-content: center;
  }
  .p-top-kv__nav {
    display: none !important;
  }
  .p-top-kv__copy {
    top: min(1.953125vw, 25px);
    left: min(4.453125vw, 57px);
  }
}
@media (max-width: 768px) {
  .p-top-kv__main {
    width: 524px;
  }
  .p-top-kv__copy {
    top: max(-5.078125vw, -65px);
    left: min(1.25vw, 16px);
    font-size: 24px;
  }
}
@media (max-width: 640px) {
  .p-top-kv {
    padding-top: 250px;
    padding-bottom: 160px;
  }
  .p-top-kv:has(.p-top-kv__pickup) {
    padding-bottom: 380px;
  }
  .p-top-kv__inner {
    padding: 0;
  }
  .p-top-kv__main {
    width: 400px;
    translate: 20px 0;
  }
  .p-top-kv__copy {
    top: -65px;
    left: 16px;
    font-size: 24px;
  }
  .p-top-kv__deco-1 {
    top: 77px;
    left: calc(50% - 124px);
    width: 236px;
  }
  .p-top-kv__deco-2 {
    position: absolute;
    z-index: 99;
    top: 400px;
    left: calc(50% - 147px);
    width: 360px;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-out;
  }
  .p-top-kv__deco-2[data-load-anime=false] {
    visibility: hidden;
    opacity: 0;
    transform: scale(0.9);
  }
  .p-top-kv__deco-2[data-load-anime=true] {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
  }
  .p-top-kv__bg-1 {
    right: calc(50% - 90px);
    width: 570px;
  }
  .p-top-kv__bg-2 {
    bottom: 30px;
    left: calc(50% - 110px);
    width: 547px;
  }
}
/* キービジュアル　ナビゲーション（トップページ）
------------------------------------------------------ */
.p-top-kv-nav {
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  gap: 30px;
  padding: 40px 30px;
  border-radius: 30px;
  background: #fff;
}

.p-top-kv-nav__menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-top-kv-nav__link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.05em;
  transition: color 0.3s ease-out;
}
.p-top-kv-nav__link i {
  width: 30px;
  height: 30px;
  filter: invert(45%) sepia(76%) saturate(3233%) hue-rotate(174deg) brightness(97%) contrast(101%);
}
.p-top-kv-nav__link i img {
  vertical-align: baseline;
}

@media (any-hover: hover) {
  .p-top-kv-nav__link:hover {
    color: var(--color-sakana-blue);
  }
}
/* ピックアップ記事（トップページ）
------------------------------------------------------ */
.p-top-pickup {
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  padding: 22px 33px 70px;
  border-top-left-radius: 30px;
  color: #fff;
  background: var(--color-sakana-blue);
}
.p-top-pickup::after {
  position: absolute;
  top: 33px;
  right: -8px;
  content: "";
  width: 226px;
  height: 35px;
  background: url(../images/deco_pickup.svg) center/contain no-repeat;
}

.p-top-pickup__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.05em;
}
.p-top-pickup__title::before {
  content: "";
  width: 19px;
  height: 28px;
  background: url(../images/icon_flag.svg) center/contain no-repeat;
  rotate: -15deg;
}

.p-top-pickup__list {
  margin-top: 20px;
}
.p-top-pickup__list a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-right: 24px;
  transition: opacity 0.3s ease-out;
}
.p-top-pickup__list a:not(:first-child) {
  margin-top: 10px;
}
.p-top-pickup__list a::after {
  position: absolute;
  top: 50%;
  right: 11px;
  translate: 0 -50%;
  content: "";
  width: 13px;
  height: 17px;
  background: #fff;
  clip-path: polygon(91.67% 50%, 29.17% 93.3%, 29.17% 6.7%);
  transition: transform 0.3s ease-out;
}
@media (any-hover: hover) {
  .p-top-pickup__list a:hover {
    opacity: 0.7;
  }
  .p-top-pickup__list a:hover::after {
    transform: translateX(50%);
  }
}
.p-top-pickup__list dt {
  width: 100px;
  font-size: 15px;
  line-height: 1.2666666667;
  letter-spacing: 0.1em;
}
.p-top-pickup__list dd {
  width: 14.5em;
  font-size: 16px;
  line-height: 1.4375;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .p-top-pickup {
    max-width: 345px;
    padding: 20px 20px 60px;
    transform: translateY(0);
  }
  .p-top-pickup::after {
    top: 33px;
    right: 0;
    width: 183px;
    height: 29px;
  }
  .p-top-pickup__title {
    gap: 8px;
    font-size: 24px;
  }
  .p-top-pickup__title::before {
    width: 15px;
    height: 28px;
  }
  .p-top-pickup__list {
    margin-top: 6px;
  }
  .p-top-pickup__list a {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .p-top-pickup__list a:not(:first-child) {
    margin-top: 16px;
  }
  .p-top-pickup__list dt {
    width: 100%;
    font-size: 13px;
  }
  .p-top-pickup__list dd {
    width: 100%;
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .p-top-pickup {
    right: var(--gutter-sp);
    width: calc(100% - var(--gutter-sp) * 2);
    max-width: none;
    border-top-right-radius: 30px;
  }
}
/* 体験イベント情報（トップページ）
------------------------------------------------------ */
.p-top-event {
  position: relative;
  z-index: 0;
  padding-top: 100px;
  padding-bottom: 120px;
  background: #fff;
}
.p-top-event::before {
  position: absolute;
  z-index: -1;
  top: -20px;
  content: "";
  width: 100%;
  height: 135px;
  background: #fff;
  -webkit-mask: url(../images/path_wave_repeat.svg) center top/112px 135px repeat-x;
          mask: url(../images/path_wave_repeat.svg) center top/112px 135px repeat-x;
}

.p-top-event__contents {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.p-top-event__left,
.p-top-event__right {
  padding: 0 15px;
}

.p-top-event__left {
  width: 50%;
  max-width: 543px;
}

.p-top-event__right {
  display: flex;
  flex-direction: column;
  width: 50%;
  max-width: 598px;
}

.p-top-event__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4545454545;
  text-align: center;
}
.p-top-event__title::after {
  content: "";
  width: 110px;
  height: 7px;
  background: var(--color-accent01);
  -webkit-mask: url(../images/path_wave_line.svg) no-repeat center/contain;
          mask: url(../images/path_wave_line.svg) no-repeat center/contain;
}
.p-top-event__title + * {
  margin-top: 30px;
}

.p-top-event__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

.p-top-event__link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.375;
  text-align: center;
  transition: color 0.3s ease-out;
}
.p-top-event__link::before {
  content: "";
  width: 42px;
  height: 33px;
  background: url(../images/icon_solt.svg) no-repeat center/contain;
}
.p-top-event__link::after {
  content: "";
  width: 12px;
  height: 12px;
  background: currentColor;
  clip-path: polygon(91.67% 50%, 29.17% 93.3%, 29.17% 6.7%);
  transition: transform 0.3s ease-out;
}

@media (any-hover: hover) {
  .p-top-event__link:hover {
    color: var(--color-sakana-blue);
  }
  .p-top-event__link:hover::after {
    transform: translateX(50%);
  }
}
.p-top-event__deco {
  position: absolute;
  top: max(-24.0625vw, -308px);
  right: calc(50% + 9px);
  width: min(54.609375vw, 699px);
  transition-property: opacity, transform;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.p-top-event__deco[data-load-anime=false] {
  visibility: hidden;
  opacity: 0;
  transform: scale(0.9);
}
.p-top-event__deco[data-load-anime=true] {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 1024px) {
  .p-top-event__contents {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
  .p-top-event__left,
  .p-top-event__right {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .p-top-event {
    padding-top: 70px;
    padding-bottom: 90px;
  }
  .p-top-event::before {
    top: -10px;
    height: 76px;
    -webkit-mask-size: 63px 76px;
            mask-size: 63px 76px;
  }
  .p-top-event__title {
    gap: 8px;
    font-size: 18px;
  }
  .p-top-event__title::after {
    width: 80px;
    height: 5px;
  }
  .p-top-event__title + * {
    margin-top: 20px;
  }
  .p-top-event__link {
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .p-top-event__contents {
    max-width: 400px;
    margin-inline: auto;
  }
  .p-top-event__left,
  .p-top-event__right {
    padding: 0;
  }
}
/* イベントカレンダー
------------------------------------------------------ */
.p-event-calender .swiper-button-prev,
.p-event-calender .swiper-button-next {
  top: 0 !important;
  align-items: center;
  gap: 5px;
  width: auto;
  height: 28px;
  padding: 0 12px;
  border-radius: 8px;
  margin-top: 0 !important;
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  color: currentColor;
  background: #fff;
  border: 1px solid #848484;
}
.p-event-calender .swiper-button-prev svg,
.p-event-calender .swiper-button-next svg {
  display: none;
}
.p-event-calender .swiper-button-prev {
  left: 0 !important;
}
.p-event-calender .swiper-button-prev::before {
  content: "";
  width: 12px;
  height: 12px;
  background: currentColor;
  clip-path: polygon(8.33% 50%, 70.83% 93.3%, 70.83% 6.7%);
}
.p-event-calender .swiper-button-next {
  right: 0 !important;
}
.p-event-calender .swiper-button-next::after {
  content: "";
  width: 12px;
  height: 12px;
  background: currentColor;
  clip-path: polygon(91.67% 50%, 29.17% 93.3%, 29.17% 6.7%);
}

.p-event-calender__title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: calc(100% - 160px);
  margin: 0 auto;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: center;
}

.p-event-calender__img {
  margin-top: 12px;
}

/* 体験イベント情報　一覧（トップページ）
------------------------------------------------------ */
.p-top-event-card-list {
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

.p-top-event-card {
  display: block;
  padding: 20px;
  border-radius: 20px;
  background: var(--color-base04);
}

.p-top-event-card__thumb {
  overflow: hidden;
  aspect-ratio: 13/8;
  border-radius: 10px;
}
.p-top-event-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
  transition: transform 0.3s ease-out, filter 0.3s ease-out;
}

@media (any-hover: hover) {
  .p-top-event-card:hover .p-top-event-card__thumb img {
    transform: scale(1.1);
    filter: brightness(1.1);
  }
}
.p-top-event-card__date {
  display: block;
  margin-top: 1.5384615385em;
  font-size: 0.8125em;
  font-weight: bold;
  line-height: 1.4615384615;
  color: #FF883D;
}

.p-top-event-card__title {
  margin-top: 0.7142857143em;
  font-size: 0.875em;
  line-height: 1.4285714286;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media (max-width: 640px) {
  .p-top-event-card-list {
    grid-template-columns: none;
    grid-template-rows: none;
    gap: 20px;
  }
  .p-top-event-card {
    padding: 30px 24px;
  }
}
/* 「さかなの学校」とは（トップページ）
------------------------------------------------------ */
.p-top-about {
  position: relative;
  z-index: 0;
  padding-top: 90px;
  padding-bottom: 150px;
}
.p-top-about::before {
  position: absolute;
  z-index: -1;
  top: -20px;
  content: "";
  width: 100%;
  height: 135px;
  background: var(--color-base01);
  -webkit-mask: url(../images/path_wave_repeat.svg) center top/112px 135px repeat-x;
          mask: url(../images/path_wave_repeat.svg) center top/112px 135px repeat-x;
}

.p-top-about__inner {
  position: relative;
}

.p-top-about__main {
  display: flex;
  align-items: center;
}

.p-top-about__textbox {
  width: min(46.09375vw, 590px);
  margin-left: min(4.0625vw, 52px);
}

.p-top-about__copy {
  font-size: min(3.125vw, 40px);
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: var(--color-sakana-blue);
}

.p-top-about__text {
  margin-top: 34px;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.p-top-about__img {
  position: relative;
  z-index: -1;
  width: min(77.1875vw, 988px);
  margin-top: -68px;
  margin-left: max(-11.09375vw, -142px);
  margin-right: max(-22.5vw, -288px);
}

.p-top-about__list {
  margin-top: 65px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-template-columns: repeat(3, 1fr);
  gap: min(2.65625vw, 34px);
}

.p-top-about__card {
  width: calc((100% - min(5.3125vw, 68px)) / 3);
  padding: min(1.875vw, 24px) min(1.875vw, 24px) min(3.125vw, 40px);
  border-radius: min(3.90625vw, 50px);
  background: #fff;
}
.p-top-about__card h3 {
  display: flex;
  align-items: center;
  gap: min(1.5625vw, 20px);
  font-size: min(1.875vw, 24px);
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-sakana-blue);
}
.p-top-about__card h3 i {
  width: min(5.078125vw, 65px);
  height: min(5.078125vw, 65px);
}
.p-top-about__card h3 i img {
  vertical-align: baseline;
}
.p-top-about__card .p-top-about__thumb {
  width: min(22.890625vw, 293px);
  margin: min(0.78125vw, 10px) auto 0;
}
.p-top-about__card p {
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.p-top-about__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 80px;
}
.p-top-about__bottom p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}

.p-top-about__links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.p-top-about__bg-1 {
  position: absolute;
  z-index: -1;
  bottom: -119px;
  right: calc(50% + 100px);
  width: 1166px;
}

.p-top-about__deco-1 {
  position: absolute;
  z-index: -1;
  top: 129px;
  left: -86px;
  width: min(11.5625vw, 148px);
}

.p-top-about__deco-2 {
  position: absolute;
  z-index: -1;
  top: 55px;
  right: -82px;
  width: min(20.15625vw, 258px);
  rotate: -21deg;
}

.p-top-about__deco-3 {
  position: absolute;
  z-index: -1;
  bottom: -130px;
  left: -112px;
  width: min(28.90625vw, 370px);
}

.p-top-about__deco-4 {
  position: absolute;
  z-index: -1;
  bottom: -8px;
  right: -22px;
  width: min(12.03125vw, 154px);
}

.p-top-about__kani {
  position: absolute;
  z-index: -1;
  top: -9px;
  left: 10px;
  width: min(11.5625vw, 148px);
  rotate: 29deg;
}

.p-top-about__kurage {
  position: absolute;
  z-index: -1;
  top: -55px;
  left: calc(50% + 290px);
  width: min(14.765625vw, 189px);
}

@media (max-width: 1024px) {
  .p-top-about__list {
    gap: 28px;
  }
  .p-top-about__card {
    max-width: 377px;
    width: 100%;
    padding: 24px 24px 40px;
  }
  .p-top-about__card h3 {
    gap: 16px;
    font-size: 20px;
  }
  .p-top-about__card h3 i {
    width: 52px;
    height: 52px;
  }
  .p-top-about__card .p-top-about__thumb {
    max-width: 293px;
    width: 100%;
    margin: 10px auto 0;
  }
  .p-top-about__deco-3 {
    bottom: 186px;
    left: -30px;
  }
  .p-top-about__deco-4 {
    bottom: 186px;
    right: -22px;
  }
}
@media (max-width: 768px) {
  .p-top-about {
    padding-top: 140px;
    padding-bottom: 100px;
  }
  .p-top-about::before {
    top: -10px;
    height: 76px;
    -webkit-mask-size: 63px 76px;
            mask-size: 63px 76px;
  }
  .p-top-about__main {
    flex-direction: column-reverse;
    align-items: center;
    gap: 30px;
  }
  .p-top-about__textbox {
    width: 100%;
    margin-left: 0;
  }
  .p-top-about__copy {
    font-size: 24px;
    text-align: center;
  }
  .p-top-about__text {
    margin-top: 24px;
    text-align: center;
  }
  .p-top-about__img {
    width: 593px;
    margin-top: -90px;
    margin-left: 0;
    margin-right: 0;
    translate: 40px 0;
  }
  .p-top-about__card {
    border-radius: 30px;
  }
  .p-top-about__card h3 {
    font-size: 20px;
  }
  .p-top-about__card p {
    font-size: 14px;
  }
  .p-top-about__bottom p {
    font-size: 14px;
  }
  .p-top-about__links {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  .p-top-about__button {
    width: 282px;
  }
  .p-top-about__deco-3 {
    width: 222px;
  }
  .p-top-about__deco-4 {
    width: 93px;
  }
  .p-top-about__kani {
    top: -120px;
    left: 20px;
    width: 89px;
  }
  .p-top-about__kurage {
    top: -160px;
    left: initial;
    right: 20px;
    width: 114px;
  }
}
@media (max-width: 640px) {
  .p-top-about__list {
    max-width: 400px;
    margin-inline: auto;
  }
  .p-top-about__card {
    max-width: none;
  }
  .p-top-about__links {
    flex-direction: column;
  }
  .p-top-about__deco-3 {
    bottom: 220px;
  }
  .p-top-about__deco-4 {
    bottom: 220px;
  }
}
/* お知らせ（トップページ）
------------------------------------------------------ */
.p-top-news {
  position: relative;
  z-index: 0;
  margin-top: 145px;
  margin-bottom: 100px;
}

.p-top-news__inner {
  display: flex;
  align-items: flex-start;
  gap: 46px;
  max-width: var(--contents-900);
  margin-inline: auto;
}

.p-top-news__title {
  font-size: 34px;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}

.p-top-news__contents {
  width: 100%;
}

.p-top-news__list {
  max-width: 504px;
}
.p-top-news__list .p-news-list__row {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 0;
  border-color: #AED6DF;
}
.p-top-news__list .p-news-list__row dt time {
  font-size: 1em;
  line-height: 1.4375;
}
.p-top-news__list .p-news-list__row dd {
  line-height: 1.8;
}

.p-top-news__button {
  margin-top: 24px;
  text-align: center;
}

.p-top-news__sns {
  flex-shrink: 0;
  width: min(35.7142857143vw, 350px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-top-news__sns a {
  transition: transform 0.3s ease-out;
}

@media (any-hover: hover) {
  .p-top-news__sns a:hover {
    transform: translateY(-10px);
  }
}
.p-top-news__bg-1 {
  position: absolute;
  z-index: -1;
  top: -90px;
  left: calc(50% + 391px);
  width: 236px;
}

.p-top-news__bg-2 {
  position: absolute;
  z-index: -1;
  top: 104px;
  left: calc(50% + 505px);
  width: 693px;
}

.p-top-news__deco-1 {
  position: absolute;
  z-index: -1;
  top: -86px;
  left: -100px;
  width: min(25.9375vw, 332px);
}

.p-top-news__deco-2 {
  position: absolute;
  z-index: -1;
  top: -83px;
  left: calc(50% - 47px);
  width: min(16.640625vw, 213px);
}

@media (max-width: 768px) {
  .p-top-news {
    margin-bottom: 60px;
  }
  .p-top-news__inner {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
  .p-top-news__title {
    font-size: 28px;
  }
  .p-top-news__list {
    max-width: none;
    margin-top: 20px;
  }
  .p-top-news__list .p-news-list__row {
    padding: 20px;
  }
  .p-top-news__list .p-news-list__row dt time {
    font-size: 0.8125em;
    line-height: 1.4375;
  }
  .p-top-news__list .p-news-list__row dd {
    font-size: 0.875em;
  }
  .p-top-news__sns {
    width: 280px;
  }
  .p-top-news__deco-1 {
    top: -126px;
    left: -20px;
    width: 200px;
  }
  .p-top-news__deco-2 {
    top: -83px;
    left: initial;
    right: 0;
    width: 128px;
  }
}
/* 塩づくり体験お申し込みページ
------------------------------------------------------ */
.p-entry__heading {
  display: flex;
  align-items: center;
  gap: 0.4444444444em;
  margin-top: 80px;
  font-size: 36px;
}
@media (max-width: 1280px) {
  .p-entry__heading {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .p-entry__heading {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .p-entry__heading {
    margin-top: 40px;
    font-size: 24px;
  }
}
.p-entry__heading::before {
  content: "";
  width: 1.6666666667em;
  height: 1.1111111111em;
  background: url(../images/icon_sakana.svg) center/contain no-repeat;
}
.p-entry__heading + * {
  margin-top: 30px;
}

.p-entry__table table {
  width: 100%;
  border-collapse: separate;
  background: var(--color-base02);
  border-radius: 10px;
}
.p-entry__table table tr:first-child > *:first-child {
  border-top-left-radius: 8px;
}
.p-entry__table table tr:first-child > *:last-child {
  border-top-right-radius: 8px;
}
.p-entry__table table tr:last-child > *:first-child {
  border-bottom-left-radius: 8px;
}
.p-entry__table table tr:last-child > *:last-child {
  border-bottom-right-radius: 8px;
}
.p-entry__table table th,
.p-entry__table table td {
  padding: 0.6666666667em 0;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
}
@media (max-width: 768px) {
  .p-entry__table table th,
  .p-entry__table table td {
    font-size: 16px;
  }
}
.p-entry__table table th {
  letter-spacing: 0.05em;
  background: #C0EAFF;
}
.p-entry__table table td {
  background: #fff;
}
.p-entry__table table td span {
  margin: 0.2666666667em;
  font-size: 1.6666666667em;
  font-weight: bold;
  vertical-align: -0.1em;
  color: var(--color-sakana-blue);
}

.p-entry__text {
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}
@media (max-width: 768px) {
  .p-entry__text {
    font-size: 14px;
  }
}

.p-entry__info {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
}
@media (max-width: 768px) {
  .p-entry__info {
    font-size: 16px;
  }
}
.p-entry__info p + p {
  margin-top: 10px;
}
.p-entry__info span {
  font-weight: bold;
  color: var(--color-sakana-blue);
}
.p-entry__info a {
  text-decoration: underline;
}
.p-entry__info a:hover {
  text-decoration: none;
}

.p-entry__button {
  margin: 30px auto 0;
  max-width: 390px;
  text-align: center;
}
.p-entry__button .c-button {
  min-width: auto;
  width: 100%;
}
@media (max-width: 768px) {
  .p-entry__button .c-button {
    width: auto;
  }
}

.p-entry__list {
  font-size: 16px;
}
@media (max-width: 768px) {
  .p-entry__list {
    font-size: 14px;
  }
}
.p-entry__list > li {
  position: relative;
  margin-top: 12px;
  padding-left: 1.25em;
  line-height: 1.8;
}
.p-entry__list > li::before {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-sakana-blue);
}

/* 404ページ
------------------------------------------------------ */
.p-404 {
  margin-top: -100px;
}

.p-404__text {
  text-align: center;
}

/*------------------------------------------------------------------------
// component
------------------------------------------------------------------------*/
/* ブレイクポイント表示切り替え
------------------------------------------------------ */
@media (max-width: 1024px) {
  .u-display-lg-none {
    display: none;
  }
}

.u-display-lg-block {
  display: none;
}
@media (max-width: 1024px) {
  .u-display-lg-block {
    display: block;
  }
}

@media (max-width: 768px) {
  .u-display-md-none {
    display: none;
  }
}

.u-display-md-block {
  display: none;
}
@media (max-width: 768px) {
  .u-display-md-block {
    display: block;
  }
}

@media (max-width: 640px) {
  .u-display-sm-none {
    display: none;
  }
}

.u-display-sm-block {
  display: none;
}
@media (max-width: 640px) {
  .u-display-sm-block {
    display: block;
  }
}

/* カラー
------------------------------------------------------ */
.u-color-base01 {
  color: var(--color-base01);
}

.u-color-base02 {
  color: var(--color-base02);
}

.u-color-base03 {
  color: var(--color-base03);
}

.u-color-base04 {
  color: var(--color-base04);
}

.u-color-sakana-blue {
  color: var(--color-sakana-blue);
}

.u-color-accent01 {
  color: var(--color-accent01);
}

.u-color-yellow {
  color: #FFD5A6;
}

/* WAI-ARIA対応
------------------------------------------------------ */
.u-select-none {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* CSSアニメーション
------------------------------------------------------ */
.u-animation-fadeUp {
  transition-property: opacity, transform;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.u-animation-fadeUp[data-scroll-anime=false] {
  visibility: hidden;
  opacity: 0;
  transform: translateY(50px);
}
.u-animation-fadeUp[data-scroll-anime=true] {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=common.css.map */