@charset "UTF-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nothing+You+Could+Do&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nothing+You+Could+Do&family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/* ============================================
  reset
============================================  */
*,
*::before,
*::after {
  margin: 0; /* マージンは0に */
  padding: 0; /* パディングも常に0に */
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* もちろん、より直感的なbox-sizingに設定 */
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important; /* hiddenは非表示を意味します */
}

:where(html) {
  -webkit-text-size-adjust: none; /* iOSのランドスケープでテキストが調整されないようにする */
  color-scheme: dark light; /* ユーザーがダークテーマを好む場合、自動的にダークテーマになる */
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth; /* 何かにフォーカスがある場合のみスムーズスクロール */
  }
}
:where(body) {
  block-size: 100%; /* サファリ以外のブラウザのフォールバック */
  block-size: 100dvb; /* 1dvbは動的ビューポートの長さの1%、100dvbで高さいっぱいに */
  line-height: 1.5; /* アクセシブルな行の高さ */
  font-family: system-ui, sans-serif; /* timeの代わりにシステムフォントを使用 */
  -webkit-font-smoothing: antialiased; /* テキストのレンダリングを改善 */
}

:where(input, button, textarea, select) {
  font: inherit; /* フォーム コントロールは親フォントを継承 */
  color: inherit; /* カラーも継承 */
}

:where(textarea) {
  resize: vertical; /* テキストエリアの水平リサイズを無効に */
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer; /* インタラクティブなものにカーソルを合わせる */
}

:where(:disabled) {
  cursor: not-allowed; /* フォームコントロール無効時のカーソルを許可しない */
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed; /* ラベルにもカーソルを許可しない */
}

:where(button) {
  border-style: solid; /* ボタンのボーダーのスタイルを設定しやすくする */
}

:where(a) {
  text-underline-offset: 0.2ex; /* 下線の上にスペースを追加する */
}

:where(ul, ol) {
  list-style: none; /* ビュレットを削除、必要に応じて手動で追加する */
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block; /* 置換された要素をより予測可能にする */
}

:where(img, picture, svg) {
  max-inline-size: 100%; /* images should never overflow past the available space */
  block-size: auto; /* アスペクト比を保持 */
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word; /* 長い単語は改行 */
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem); /* 見出しの行の高さを減らす */
}

:where(hr) { /* より一貫性のある、スタイリッシュなhr */
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) { /* より一貫性のある、カスタマイズ可能なフォーカスのアウトライン */
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

/* .visually-hiddenは後のカスケードレイヤーを上書きするために!importantを使用 */
:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:root {
  --color-primary: #91588D;
  --color-secondary: #FDDB2E;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 600;
}

.nothing-you-could-do-regular {
  font-family: "Nothing You Could Do", cursive;
  font-weight: 400;
  font-style: normal;
}

.noto-serif-jp {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* ============================================
  base
============================================  */
html {
  font-size: 62.5% !important; /* 62.5%を指定すると「1.0 rem = 10px」 */
  -webkit-text-size-adjust: 100%;
  overflow: auto;
  scroll-behavior: smooth;
  scroll-padding-top: 160px;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 100px;
  }
}

body {
  width: 100%;
  color: #333;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Arial, Verdana, sans-serif;
  line-height: 1;
  letter-spacing: 0;
  background-color: #F7F7F7;
  overscroll-behavior-y: none;
}
@media screen and (max-width: 767px) {
  body {
    overflow-x: none;
  }
}
body.is-load {
  opacity: 0;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
body.is-load.active {
  opacity: 1;
}

p:not([class]) {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  p:not([class]) {
    font-size: 1.4rem;
  }
}

sup {
  vertical-align: super;
}

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

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

img[src$=".svg"] {
  max-width: 100%;
}

/*  pc表示時に電話発信させない
------------------------- */
a[href^="tel:"] {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

a[href^="mailto:"] {
  text-decoration: none;
}

/* ============================================
  header
============================================  */
.l-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 101;
  padding: 0 0 0 50px;
  height: 100px;
  background-color: #fff;
  width: 100%;
  border-bottom: solid 1px #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 1100px) {
  .l-header {
    padding: 0 0 0 25px;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 60px;
  }
}
.l-header ._logo {
  width: 411px;
}
@media only screen and (max-width: 1100px) {
  .l-header ._logo {
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .l-header ._logo {
    width: 200px;
  }
}
.l-header ._nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media only screen and (max-width: 1100px) {
  .l-header ._nav {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-header ._nav {
    display: none;
  }
}
.l-header ._nav ._list {
  font-size: 1.7rem;
  font-weight: var(--font-weight-medium);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3em;
}
@media only screen and (max-width: 1100px) {
  .l-header ._nav ._list {
    font-size: 1.5rem;
    gap: 1.5em;
  }
}
.l-header ._nav ._list ._item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  height: 99px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header ._nav ._list ._item::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-color: #91588D;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-header ._nav ._list ._item:hover::before {
  opacity: 1;
}
.l-header ._nav ._contactbtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 99px;
  height: 99px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
  text-decoration: none;
  color: #91588D;
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
  background-color: #FDDB2E;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-header ._nav ._contactbtn svg {
  fill: #91588D;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-header ._nav ._contactbtn:hover {
  color: #FDDB2E;
  background-color: #91588D;
}
.l-header ._nav ._contactbtn:hover svg {
  fill: #FDDB2E;
}

@media screen and (max-width: 767px) {
  .is-open .l-header {
    height: 100px;
  }
}

.overview .l-header ._item.overview::before,
.member .l-header ._item.member::before,
.activity .l-header ._item.activity::before,
.information .l-header ._item.information::before {
  opacity: 1;
}

/* ============================================

hamburger

============================================  */
.l-hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-hamburger {
    display: block;
  }
}
.l-hamburger ._menu {
  position: fixed;
  right: 0; /* これで隠れる */
  top: 0;
  z-index: 99;
  width: 100%; /* スマホに収まるくらい */
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  padding-top: calc(100px + 3em);
  visibility: hidden;
  opacity: 0;
}
.l-hamburger ._menu ._inner {
  max-width: 1300px;
  width: calc(100% - 266px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-hamburger ._menu ._inner {
    width: 88%;
  }
}
.l-hamburger ._menu ._inner ._nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3em;
}
.l-hamburger ._menu ._inner ._nav ._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5em;
}
.l-hamburger ._menu ._inner ._nav ._list ._item {
  display: block;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  width: 100%;
  position: relative;
  padding-left: 4.8rem;
}
.l-hamburger ._menu ._inner ._nav ._list ._item::before {
  position: absolute;
  top: calc(50% - 0.5em);
  left: 2rem;
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  font-size: 0.8rem;
  background-color: #91588D;
  border-radius: 50%;
  display: none;
}
.l-hamburger ._menu ._inner ._nav ._contactbtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #FDDB2E;
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  padding: 20px;
  border-radius: 10px;
  height: 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 240px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #91588D;
}
.l-hamburger ._menu ._inner ._nav ._contactbtn svg {
  fill: #FDDB2E;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 30px;
}
.l-hamburger ._menu ._inner ._nav ._contactbtn:hover {
  color: #FDDB2E;
  background-color: #91588D;
}
.l-hamburger ._menu ._inner ._nav ._contactbtn:hover svg {
  fill: #91588D;
}
.l-hamburger ._line {
  position: fixed;
  right: 6%;
  top: 22px;
  width: 40px; /* クリックしやすいようにちゃんと幅を指定する */
  height: 17px; /* クリックしやすいようにちゃんと高さを指定する */
  cursor: pointer;
  z-index: 102;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-hamburger ._line ._item {
  position: absolute;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: #777;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.l-hamburger ._line ._item--1 {
  top: 0;
}
.l-hamburger ._line ._item--2 {
  top: 8px;
}
.l-hamburger ._line ._item--3 {
  top: 16px;
}

/* 表示された時用のCSS */
.is-open ._menu {
  opacity: 1;
  visibility: visible;
}
.is-open ._line {
  top: 42px !important;
}
.is-open ._item--1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 10px !important;
}
.is-open ._item--2 {
  opacity: 0;
  transform: translateX(30px);
  -webkit-transform: translateX(30px);
}
.is-open ._item--3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 10px !important;
}

.front ._item.front::before,
.front ._item.front > a::before,
.overview ._item.overview::before,
.overview ._item.overview > a::before,
.member ._item.member::before,
.member ._item.member > a::before,
.activity ._item.activity::before,
.activity ._item.activity > a::before,
.information ._item.information::before,
.information ._item.information > a::before {
  display: block !important;
}

/* ============================================
  panNav
============================================  */
.l-panNav {
  padding: 15px 0;
}
.l-panNav ._list {
  max-width: 1300px;
  width: calc(100% - 266px);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .l-panNav ._list {
    width: 88%;
  }
}
.l-panNav ._list ._item {
  font-size: 1.4rem;
  line-height: 1.4;
}
.l-panNav ._list ._item::after {
  content: "／";
  padding: 0 5px;
}
.l-panNav ._list ._item:last-child::after {
  display: none;
}
.l-panNav ._list ._item a {
  color: #aaa;
  text-decoration: none;
}
.l-panNav ._list ._item a:hover {
  text-decoration: underline;
}

/* ============================================
  section
============================================  */
.l-section {
  padding: 60px 0 100px;
  overflow: hidden;
}

/* ============================================
  inner
============================================  */
.l-inner {
  max-width: 1300px;
  width: calc(100% - 266px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 88%;
  }
}

.l-inner02 {
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .l-inner02 {
    padding: 0 8%;
  }
}

/* ============================================
  h
============================================  */
/* ============================================
  p
============================================  */
.l-text {
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.875;
}

/* ============================================
  footer
============================================  */
.l-footer {
  background-color: #fff;
  padding: 75px 0 45px;
  border-top: solid 1px #ccc;
}
.l-footer ._column-wrap {
  margin-bottom: 125px;
}
@media screen and (max-width: 767px) {
  .l-footer ._column-wrap {
    margin-bottom: 80px;
  }
}
.l-footer ._column-wrap ._column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px 40px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .l-footer ._column-wrap ._column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.l-footer ._column-wrap ._column ._nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 0;
}
@media screen and (max-width: 767px) {
  .l-footer ._column-wrap ._column ._nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
.l-footer ._column-wrap ._column ._nav ._item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: var(--font-weight-medium);
  padding: 0 1.5em;
}
@media screen and (max-width: 767px) {
  .l-footer ._column-wrap ._column ._nav ._item {
    width: 50%;
    font-size: 1.6rem;
  }
}
.l-footer ._column-wrap ._column ._nav ._item:not(:last-child) {
  border-right: solid 1px #333;
}
@media screen and (max-width: 767px) {
  .l-footer ._column-wrap ._column ._nav ._item:not(:last-child) {
    border-right: 0;
  }
}
.l-footer ._column-wrap ._column ._nav ._item a {
  text-decoration: none;
}
.l-footer ._column-wrap ._column ._nav ._item a:hover {
  text-decoration: underline;
}
.l-footer ._column-wrap ._column ._address {
  font-size: 1.5rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
}
.l-footer ._column-wrap ._column ._bnr-zen {
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.l-footer ._column-wrap ._column ._bnr-zen:hover {
  opacity: 0.8;
}
.l-footer ._copyright {
  font-size: 1.2rem;
  font-weight: var(--font-weight-medium);
  text-align: center;
  line-height: 1.4;
}

/* ============================================
  pagetop
============================================  */
.l-pagetop {
  position: fixed;
  bottom: 28px;
  right: 10px;
  z-index: 10;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  /* 非表示にする */
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .l-pagetop {
    bottom: 28px;
    right: 10px;
  }
}
.l-pagetop svg {
  fill: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-pagetop:hover {
  background-color: rgba(145, 88, 141, 0.7) !important;
}
.l-pagetop:hover svg {
  fill: #fff !important;
}

.l-pagetop.is-active {
  /* 表示する */
  opacity: 1;
  visibility: visible;
}

/* ============================================
  col
============================================  */
.col_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.col_box > .col2 {
  width: 48%;
}

.col_box > .col3 {
  width: 32%;
}

.col_box > .col4 {
  width: 23.5%;
}

@media only screen and (max-width: 767px) {
  .col_box > .col2 {
    width: 100%;
    margin-bottom: 40px;
  }
  .col_box > .col2:last-child {
    margin-bottom: 0;
  }
  .col_box > .col3,
  .col_box > .col4 {
    width: 48%;
    margin-top: 20px;
  }
  .col_box > .col3:nth-child(1),
  .col_box > .col3:nth-child(2),
  .col_box > .col4:nth-child(1),
  .col_box > .col4:nth-child(2) {
    margin-top: 0;
  }
}
/* ============================================
  ul
============================================  */
ul.c-list li {
  font-size: 1.6rem;
  line-height: 1.8;
  text-indent: -1em;
  padding-left: 1em;
}
ul.c-list li::before {
  content: "●";
}
ul.c-list--other li {
  font-size: 1.6rem;
  line-height: 1.8;
  padding-left: 1em;
  position: relative;
}
ul.c-list--other li span {
  position: absolute;
  top: 0;
  left: 0;
}

/* ============================================
  dl
============================================  */
dl.list {
  width: 100%;
  border-bottom: solid 1px #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

dl.list dt,
dl.list dd {
  padding: 20px;
  line-height: 1.6;
}

dl.list dt {
  width: 180px;
  font-size: 1.8rem;
  font-weight: bold;
}

dl.list dd {
  width: calc(100% - 180px);
  font-size: 1.6rem;
}

@media only screen and (max-width: 767px) {
  dl.list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  dl.list dt {
    width: 100%;
    font-size: 1.6rem;
    padding: 20px 20px 10px 20px;
  }
  dl.list dd {
    width: 100%;
    font-size: 1.5rem;
    padding: 0 20px 20px 20px;
  }
}
.c-note {
  font-size: 1.4rem;
  line-height: 1.8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-note__ttl {
  width: 1.5em;
}
.c-note__txt {
  width: calc(100% - 1.5em);
}

/* ============================================
  btn
============================================  */
.c-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  padding: 20px;
  border-radius: 10px;
  min-height: 60px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 240px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #91588D;
  border: solid 1px #91588D;
}
.c-button::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../../assets/img/icon_btnarrow.svg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-button:hover {
  color: #91588D;
  background-color: #fff;
}
.c-button:hover::before {
  background-image: url(../../assets/img/icon_btnarrow-ov.svg);
}

/* gradientBtn
------------------------- */
.c-gradientBtn {
  cursor: pointer;
  display: block;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  padding: 20px 40px;
  border-radius: 99999999px;
  -webkit-box-shadow: 0px 15px 29px rgba(9, 1, 2, 0.08);
          box-shadow: 0px 15px 29px rgba(9, 1, 2, 0.08);
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  background-size: 200% auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-image: -webkit-gradient(linear, left top, right top, from(#71c9ce), color-stop(51%, #95e2e6), to(#71c9ce));
  background-image: linear-gradient(to right, #71c9ce 0%, #95e2e6 51%, #71c9ce 100%);
}
.c-gradientBtn:hover {
  background-color: #95e2e6;
  background-position: right center;
}

/* ============================================
  balloon
============================================  */
.c-balloon {
  position: relative;
}
.c-balloon::before {
  content: "";
  border: 25px solid transparent;
  border-top: 43px solid #006;
  width: 0px;
  height: 0px;
  position: absolute;
  left: calc(50% - 25px);
  bottom: 100%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* ============================================
  youtube
============================================  */
.c-youtube {
  position: relative;
  width: 100%;
  height: auto !important;
  padding-top: 56.25%;
}
.c-youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* ============================================
  gmap
============================================  */
.c-gmap {
  height: 400px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-gmap {
    height: 200px;
  }
}
.c-gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

/* ============================================
  共通
============================================  */
.f-h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  margin-bottom: 40px;
  padding: 30px 0 15px;
}
@media screen and (max-width: 767px) {
  .f-h2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
    padding: 15px 0 10px;
  }
}
.f-h2 ._en {
  font-family: "Nothing You Could Do", cursive;
  color: #91588D;
  font-size: 7rem;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .f-h2 ._en {
    font-size: 3.6rem;
  }
}
.f-h2 ._jp {
  font-size: 2rem;
  font-weight: var(--font-weight-medium);
}
@media screen and (max-width: 767px) {
  .f-h2 ._jp {
    font-size: 1.8rem;
  }
}

.f-copy {
  font-size: 4rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .f-copy {
    font-size: 3rem;
  }
}

/* ============================================
  メインビジュアル
============================================  */
.f-mainvisual {
  background-color: #F7F7F7;
  background-image: url(../../img/mainvisual_bg.png);
  background-repeat: no-repeat;
  background-position: right top;
  overflow: hidden;
  padding-bottom: 100px;
}
.f-mainvisual ._copyarea {
  padding-top: 85px;
  padding-bottom: 70px;
}
.f-mainvisual ._roopslidearea {
  position: relative;
  padding-bottom: 80px;
}
.f-mainvisual ._roopslidearea::before {
  content: "";
  width: 100%;
  height: 75%;
  background-color: #91588D;
  position: absolute;
  left: 0;
  bottom: 0;
}
.f-mainvisual ._roopslidearea .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.f-mainvisual ._roopslidearea .swiper-wrapper .swiper-slide {
  width: 400px;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._roopslidearea .swiper-wrapper .swiper-slide {
    width: 300px;
    height: 200px;
  }
}
.f-mainvisual ._roopslidearea .swiper-wrapper .swiper-slide img,
.f-mainvisual ._roopslidearea .swiper-wrapper .swiper-slide video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 初期状態（spanに適用） */
.fade-up {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

/* 表示アニメーション状態 */
.fade-up.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* pタグ自体のスタイル（このままでもOK） */
.is-load-text {
  opacity: 0;
}

.is-load-text.is-active {
  opacity: 1;
}

/* ============================================
  石川県映像事業協同組合とは
============================================  */
.f-about {
  margin-bottom: 100px;
}
.f-about ._box {
  padding: 70px 37px 0 75px;
  border: solid 1px #ccc;
  background-image: url(../../img/about_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left bottom;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 120px;
}
@media screen and (max-width: 767px) {
  .f-about ._box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 50px 20px 0 20px;
    gap: 20px;
    background-size: 150%;
  }
}
.f-about ._box > ._title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  padding-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .f-about ._box > ._title {
    -ms-writing-mode: horizontal-tb;
    -webkit-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    padding-bottom: 0;
  }
}
.f-about ._box > ._title ._en {
  font-family: "Nothing You Could Do", cursive;
  color: #91588D;
  font-size: 3rem;
  font-weight: 400;
  font-style: normal;
}
.f-about ._box > ._title ._jp {
  font-size: 4rem;
  font-weight: var(--font-weight-medium);
  line-height: 1;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
  .f-about ._box > ._title ._jp {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
.f-about ._box ._contents {
  padding-bottom: 290px;
}
@media screen and (max-width: 767px) {
  .f-about ._box ._contents {
    padding-bottom: 54%;
  }
}
.f-about ._box ._contents .l-text {
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .f-about ._box ._contents .c-button {
    margin: 0 auto;
  }
}

/* ============================================
  活動報告・実績紹介
============================================  */
.f-event .l-inner {
  border-left: solid 1px #ccc;
  border-right: solid 1px #ccc;
  padding-top: 85px;
  padding-bottom: 100px;
}
.f-event .activityslide {
  margin-bottom: 40px;
  border-top: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
}
.f-event .activityslide ._card {
  display: block;
  border-left: solid 1px #ccc;
  border-right: solid 1px #ccc;
  background-color: #fff;
  text-decoration: none;
  height: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
.f-event .activityslide ._card ._thumb {
  position: relative;
  width: 100%;
  padding-top: 72%;
  overflow: hidden;
}
.f-event .activityslide ._card ._thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.f-event .activityslide ._card ._inner {
  padding: 10px 20px 60px 20px;
}
.f-event .activityslide ._card ._inner ._title {
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
}
.f-event .activityslide ._card ._inner ._date {
  font-size: 1.6rem;
  color: #666;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  right: 20px;
  bottom: 30px;
}
.f-event .activityslide a._card:hover {
  background-color: #91588D;
  color: #fff;
}
.f-event .activityslide a._card:hover ._title,
.f-event .activityslide a._card:hover ._date {
  color: #fff;
}
.f-event ._btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .f-event ._btn-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 65px;
    margin-top: 50px;
  }
}
.f-event ._btn-area .swiper-button {
  position: relative;
  width: 131px;
}
.f-event ._btn-area .swiper-button .swiper-button-next,
.f-event ._btn-area .swiper-button .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  z-index: 10;
  cursor: pointer;
  background-image: url(../../assets/img/swiper-btn.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.f-event ._btn-area .swiper-button .swiper-button-next:hover,
.f-event ._btn-area .swiper-button .swiper-button-prev:hover {
  background-image: url(../../assets/img/swiper-btn_ov.svg);
}
.f-event ._btn-area .swiper-button .swiper-button-prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* ============================================
  活動報告・実績紹介
============================================  */
.f-member {
  background-color: #FDDB2E;
  padding-top: 85px;
  padding-bottom: 80px;
  background-image: url(../../img/member_bg.svg);
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .f-member {
    padding-bottom: 25%;
  }
}
.f-member .l-text {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .f-member .l-text {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .f-member .c-button {
    margin: 0 auto;
  }
}

/* ============================================
  組合からのお知らせ
============================================  */
.f-news {
  border-top: solid 1px #ccc;
}
.f-news .l-inner {
  border-left: solid 1px #ccc;
  border-right: solid 1px #ccc;
  padding-top: 85px;
  padding-bottom: 100px;
}
.f-news .c-button {
  margin: 40px auto 0;
}

/* ============================================
  サブビジュアル
============================================  */
.l-subvisual {
  position: relative;
}
.l-subvisual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  min-height: 319px;
  padding-top: 25%;
  background-image: url("../img/subvisual_bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
}
@media only screen and (max-width: 1366px) {
  .l-subvisual::before {
    background-size: 1366px 319px;
  }
}
.l-subvisual ._inner {
  max-width: 1300px;
  width: calc(100% - 266px);
  margin: 0 auto;
  height: 240px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .l-subvisual ._inner {
    width: 88%;
  }
}
@media screen and (max-width: 767px) {
  .l-subvisual ._inner {
    height: 200px;
  }
}
.l-subvisual ._inner ._title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.l-subvisual ._inner ._title ._jp {
  font-size: 3rem;
  font-weight: var(--font-weight-regular);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .l-subvisual ._inner ._title ._jp {
    font-size: 2rem;
  }
}
.l-subvisual ._inner ._title ._en {
  font-family: "Roboto", sans-serif;
  color: #91588D;
  font-size: 3rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .l-subvisual ._inner ._title ._en {
    font-size: 2rem;
  }
}

/* ============================================
  パンくずリスト
============================================  */
.l-panNav {
  max-width: 1300px;
  width: calc(100% - 266px);
  margin: 0 auto;
  padding: 60px 0 20px;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: var(--font-weight-regular);
  color: #333;
}
@media screen and (max-width: 767px) {
  .l-panNav {
    width: 88%;
  }
}
.l-panNav ._item {
  display: inline-block;
}
.l-panNav ._item:not(:last-child)::after {
  content: "/";
  color: #aaa;
  padding: 0 5px;
}
.l-panNav ._item a {
  color: #aaa;
  text-decoration: none;
}
.l-panNav ._item a:hover {
  text-decoration: underline;
}

/* ============================================
  活動報告一覧
============================================  */
.activity-list {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
.activity-list ._card {
  width: calc(50% - 20px);
  display: block;
  background-color: #fff;
  text-decoration: none;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.16);
          box-shadow: 0 10px 50px rgba(0, 0, 0, 0.16);
}
@media only screen and (max-width: 1000px) {
  .activity-list ._card {
    width: 100%;
  }
}
.activity-list ._card ._thumb {
  position: relative;
  width: 100%;
  padding-top: 70%;
  overflow: hidden;
}
.activity-list ._card ._thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.activity-list ._card ._inner {
  padding: 15px 20px 35px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.activity-list ._card ._inner ._date-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.activity-list ._card ._inner ._date-area ._category {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: var(--font-weight-medium);
  text-align: center;
  min-width: 100px;
  padding: 5px 10px;
  min-height: 25px;
  border-radius: 5px;
  background-color: #eee;
}
.activity-list ._card ._inner ._date-area ._category.--event {
  color: #fff;
  background-color: var(--color-primary);
}
.activity-list ._card ._inner ._date-area ._category.--business {
  background-color: var(--color-secondary);
}
.activity-list ._card ._inner ._date-area ._category.--seminar {
  color: #fff;
  background-color: #3d4791;
}
.activity-list ._card ._inner ._date-area ._category.--workshop {
  color: #fff;
  background-color: #589190;
}
.activity-list ._card ._inner ._date-area ._date {
  font-size: 1.6rem;
  color: #666;
}
.activity-list ._card ._inner ._title {
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
}
.activity-list a._card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

/* ============================================
  お知らせ一覧
============================================  */
.p-informationList ._card {
  display: block;
  width: 100%;
  padding: 20px 40px;
  background-color: #fff;
  border-bottom: solid 1px #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-informationList ._card {
    padding: 20px 8%;
  }
}
.p-informationList ._card:first-child {
  border-top: solid 1px #ccc;
}
.p-informationList ._card ._date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  font-weight: var(--font-weight-medium);
}
.p-informationList ._card ._date span {
  display: block;
  font-size: 42px;
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-top: 5px;
}
.p-informationList ._card ._title-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 40px;
}
@media only screen and (max-width: 1000px) {
  .p-informationList ._card ._title-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-informationList ._card ._title-area ._category {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: var(--font-weight-medium);
  text-align: center;
  width: 120px;
  padding: 5px;
  min-height: 25px;
  border-radius: 5px;
}
.p-informationList ._card ._title-area ._category.--news {
  color: #333;
  background-color: #FDDB2E;
}
.p-informationList ._card ._title-area ._category.--update {
  color: #333;
  background-color: #eee;
}
.p-informationList ._card ._title-area ._category.--important {
  color: #fff;
  background-color: #CC0000;
}
.p-informationList ._card ._title-area ._title {
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.875;
}
.p-informationList a._card:hover {
  color: #fff;
  background-color: #91588D;
  padding: 20px 30px 20px 50px;
}
@media screen and (max-width: 767px) {
  .p-informationList a._card:hover {
    padding: 20px 4% 20px 12%;
  }
}

/* ============================================
  PC／SPのみ表示
============================================  */
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }
}

/* ============================================
  inline-block
============================================  */
.u-inlineblock {
  display: inline-block;
}

/* ============================================
  font
============================================  */
.u-bold {
  font-weight: bold !important;
}

.u-normal {
  font-weight: normal !important;
}

.u-lighter {
  font-weight: 200 !important;
}

.u-left {
  text-align: left !important;
}

.u-right {
  text-align: right !important;
}

.u-center {
  text-align: center !important;
}

.u-cap {
  font-size: 1.5rem;
}

.u-highlight {
  text-decoration: underline; /* 下線 */
  text-decoration-thickness: 0.5em; /* 線の太さ */
  text-decoration-color: rgb(255, 255, 65); /* 線の色 */
  text-underline-offset: -0.2em; /* 線の位置。テキストに重なるようにやや上部にする */
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}

/* ============================================
  icon
============================================  */
.u-blank::after {
  content: "";
  width: 16px;
  height: 15px;
  background-image: url(../img/icon-blank_w.svg);
  background-repeat: no-repeat;
  margin-left: 5px;
  display: inline-block;
  position: relative;
  top: 3px;
}

/* ============================================
  margin/padding
============================================  */
.u-mt0 {
  margin-top: 0 !important;
}

.u-pt0 {
  padding-top: 0 !important;
}

.u-mr0 {
  margin-right: 0 !important;
}

.u-pr0 {
  padding-right: 0 !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-pb0 {
  padding-bottom: 0 !important;
}

.u-ml0 {
  margin-left: 0 !important;
}

.u-pl0 {
  padding-left: 0 !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-pt5 {
  padding-top: 5px !important;
}

.u-mr5 {
  margin-right: 5px !important;
}

.u-pr5 {
  padding-right: 5px !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-pb5 {
  padding-bottom: 5px !important;
}

.u-ml5 {
  margin-left: 5px !important;
}

.u-pl5 {
  padding-left: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-pr10 {
  padding-right: 10px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-pl10 {
  padding-left: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-pt15 {
  padding-top: 15px !important;
}

.u-mr15 {
  margin-right: 15px !important;
}

.u-pr15 {
  padding-right: 15px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-pl15 {
  padding-left: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-pr20 {
  padding-right: 20px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-pl20 {
  padding-left: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-pt25 {
  padding-top: 25px !important;
}

.u-mr25 {
  margin-right: 25px !important;
}

.u-pr25 {
  padding-right: 25px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-pb25 {
  padding-bottom: 25px !important;
}

.u-ml25 {
  margin-left: 25px !important;
}

.u-pl25 {
  padding-left: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-pr30 {
  padding-right: 30px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-pl30 {
  padding-left: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-pt35 {
  padding-top: 35px !important;
}

.u-mr35 {
  margin-right: 35px !important;
}

.u-pr35 {
  padding-right: 35px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-pb35 {
  padding-bottom: 35px !important;
}

.u-ml35 {
  margin-left: 35px !important;
}

.u-pl35 {
  padding-left: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-pr40 {
  padding-right: 40px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-pl40 {
  padding-left: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-pt45 {
  padding-top: 45px !important;
}

.u-mr45 {
  margin-right: 45px !important;
}

.u-pr45 {
  padding-right: 45px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-pb45 {
  padding-bottom: 45px !important;
}

.u-ml45 {
  margin-left: 45px !important;
}

.u-pl45 {
  padding-left: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-pr50 {
  padding-right: 50px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

.u-pl50 {
  padding-left: 50px !important;
}

.u-mt55 {
  margin-top: 55px !important;
}

.u-pt55 {
  padding-top: 55px !important;
}

.u-mr55 {
  margin-right: 55px !important;
}

.u-pr55 {
  padding-right: 55px !important;
}

.u-mb55 {
  margin-bottom: 55px !important;
}

.u-pb55 {
  padding-bottom: 55px !important;
}

.u-ml55 {
  margin-left: 55px !important;
}

.u-pl55 {
  padding-left: 55px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-pt60 {
  padding-top: 60px !important;
}

.u-mr60 {
  margin-right: 60px !important;
}

.u-pr60 {
  padding-right: 60px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-pb60 {
  padding-bottom: 60px !important;
}

.u-ml60 {
  margin-left: 60px !important;
}

.u-pl60 {
  padding-left: 60px !important;
}

.u-mt65 {
  margin-top: 65px !important;
}

.u-pt65 {
  padding-top: 65px !important;
}

.u-mr65 {
  margin-right: 65px !important;
}

.u-pr65 {
  padding-right: 65px !important;
}

.u-mb65 {
  margin-bottom: 65px !important;
}

.u-pb65 {
  padding-bottom: 65px !important;
}

.u-ml65 {
  margin-left: 65px !important;
}

.u-pl65 {
  padding-left: 65px !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-pt70 {
  padding-top: 70px !important;
}

.u-mr70 {
  margin-right: 70px !important;
}

.u-pr70 {
  padding-right: 70px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-pb70 {
  padding-bottom: 70px !important;
}

.u-ml70 {
  margin-left: 70px !important;
}

.u-pl70 {
  padding-left: 70px !important;
}

.u-mt75 {
  margin-top: 75px !important;
}

.u-pt75 {
  padding-top: 75px !important;
}

.u-mr75 {
  margin-right: 75px !important;
}

.u-pr75 {
  padding-right: 75px !important;
}

.u-mb75 {
  margin-bottom: 75px !important;
}

.u-pb75 {
  padding-bottom: 75px !important;
}

.u-ml75 {
  margin-left: 75px !important;
}

.u-pl75 {
  padding-left: 75px !important;
}

.u-mt80 {
  margin-top: 80px !important;
}

.u-pt80 {
  padding-top: 80px !important;
}

.u-mr80 {
  margin-right: 80px !important;
}

.u-pr80 {
  padding-right: 80px !important;
}

.u-mb80 {
  margin-bottom: 80px !important;
}

.u-pb80 {
  padding-bottom: 80px !important;
}

.u-ml80 {
  margin-left: 80px !important;
}

.u-pl80 {
  padding-left: 80px !important;
}

.u-mt85 {
  margin-top: 85px !important;
}

.u-pt85 {
  padding-top: 85px !important;
}

.u-mr85 {
  margin-right: 85px !important;
}

.u-pr85 {
  padding-right: 85px !important;
}

.u-mb85 {
  margin-bottom: 85px !important;
}

.u-pb85 {
  padding-bottom: 85px !important;
}

.u-ml85 {
  margin-left: 85px !important;
}

.u-pl85 {
  padding-left: 85px !important;
}

.u-mt90 {
  margin-top: 90px !important;
}

.u-pt90 {
  padding-top: 90px !important;
}

.u-mr90 {
  margin-right: 90px !important;
}

.u-pr90 {
  padding-right: 90px !important;
}

.u-mb90 {
  margin-bottom: 90px !important;
}

.u-pb90 {
  padding-bottom: 90px !important;
}

.u-ml90 {
  margin-left: 90px !important;
}

.u-pl90 {
  padding-left: 90px !important;
}

.u-mt95 {
  margin-top: 95px !important;
}

.u-pt95 {
  padding-top: 95px !important;
}

.u-mr95 {
  margin-right: 95px !important;
}

.u-pr95 {
  padding-right: 95px !important;
}

.u-mb95 {
  margin-bottom: 95px !important;
}

.u-pb95 {
  padding-bottom: 95px !important;
}

.u-ml95 {
  margin-left: 95px !important;
}

.u-pl95 {
  padding-left: 95px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

.u-pt100 {
  padding-top: 100px !important;
}

.u-mr100 {
  margin-right: 100px !important;
}

.u-pr100 {
  padding-right: 100px !important;
}

.u-mb100 {
  margin-bottom: 100px !important;
}

.u-pb100 {
  padding-bottom: 100px !important;
}

.u-ml100 {
  margin-left: 100px !important;
}

.u-pl100 {
  padding-left: 100px !important;
}

/* ============================================
  name
============================================  */
/* ============================================
  Hover Animation
============================================  */
/* underline
------------------------- */
.a-underline {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.a-underline::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #333;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.a-underline:hover::after {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}

/* underlineLeft
------------------------- */
.a-underlineLeft {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.a-underlineLeft::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #333;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}
.a-underlineLeft:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

/* borderBox
------------------------- */
.borderBox__in {
  overflow: hidden;
  /* 上のボーダー */
  /* 左のボーダー */
}
.borderBox__in::before, .borderBox__in::after {
  content: "";
  position: absolute;
  background: #006; /*線の色*/
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}
.borderBox__in::before {
  top: 0;
  right: -100%;
  width: 100%;
  height: 1px;
}
.borderBox__in:hover::before {
  right: 0;
}
.borderBox__in::after {
  top: -100%;
  left: 0;
  width: 1px;
  height: 100%;
}
.borderBox__in:hover::after {
  top: 0;
}
.borderBox__in__in {
  /* 下のボーダー */
  /* 右のボーダー */
}
.borderBox__in__in::before, .borderBox__in__in::after {
  content: "";
  position: absolute;
  background: #006; /*線の色*/
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}
.borderBox__in__in::before {
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 1px;
}
.borderBox__in__in:hover::before {
  left: 0;
}
.borderBox__in__in::after {
  content: "";
  bottom: -100%;
  right: 0;
  width: 1px;
  height: 100%;
}
.borderBox__in__in:hover::after {
  bottom: 0;
}

/* ============================================
  Scroll Animation
============================================  */
/* fadeUp
------------------------- */
.a-fadeUp {
  opacity: 0;
}
.a-fadeUp.is-active {
  -webkit-animation-name: fade-up;
          animation-name: fade-up;
  -webkit-animation-duration: 1.3s;
          animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fade-up {
  0% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-up {
  0% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
/* fadeRight
------------------------- */
.a-fadeRight {
  opacity: 0;
}
.a-fadeRight.is-active {
  -webkit-animation-name: fade-right;
          animation-name: fade-right;
  -webkit-animation-duration: 1.3s;
          animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  /* animation-delay: .0s; */
}

@-webkit-keyframes fade-right {
  0% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-right {
  0% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
/* curtain
------------------------- */
.a-curtain {
  overflow: hidden;
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.a-curtain::after {
  background-color: #404040;
  content: "";
  display: block;
  width: 0;
  top: 0;
  position: absolute;
  left: 0;
  height: 100%;
  z-index: 2;
  -webkit-transition: left 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.4s, width 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: left 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.4s, width 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.a-curtain.is-active::after {
  left: 100%;
  width: 100%;
}
.a-curtain > div, .a-curtain > img {
  opacity: 0;
  -webkit-transition: opacity 0s 0.4s;
  transition: opacity 0s 0.4s;
}
.a-curtain.is-active > div, .a-curtain.is-active > img {
  opacity: 1;
}

/* scale
------------------------- */
.a-scale img {
  opacity: 0;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.a-scale.is-active img {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* hideTxt
------------------------- */
.a-hideTxt {
  overflow: hidden;
}
.a-hideTxt__item {
  -webkit-transform: translateY(105%);
          transform: translateY(105%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.a-hideTxt.is-active__item {
  -webkit-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
}

/* ============================================
  scrolldown
============================================  */
/*スクロールダウン全体の場所*/
.c-scrolldown {
  height: 100px;
  /*Scrollテキストの描写*/
  /* 線の描写 */
}
.c-scrolldown p {
  /*描画位置*/
  position: absolute;
  left: 0;
  top: -60px;
  /*テキストの形状*/
  color: #333;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 1.4rem;
}
.c-scrolldown::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12px;
  width: 1px;
  height: 100px;
  background: rgba(255, 255, 255, 0.25);
}
.c-scrolldown::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  left: 12px;
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: #333;
  /*線の動き*/
  -webkit-animation: pathmove 2.2s forwards infinite;
          animation: pathmove 2.2s forwards infinite;
  -webkit-animation-delay: 3.3s;
          animation-delay: 3.3s;
  opacity: 0;
}

@-webkit-keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 1;
  }
  75% {
    height: 100px;
    top: 0;
    opacity: 1;
  }
  100% {
    height: 100px;
    top: 0;
    opacity: 1;
  }
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 1;
  }
  75% {
    height: 100px;
    top: 0;
    opacity: 1;
  }
  100% {
    height: 100px;
    top: 0;
    opacity: 1;
  }
}
/* ============================================
  共通
============================================  */
.w-editorarea {
  max-width: 1300px;
  width: calc(100% - 266px);
  margin: 0 auto;
  padding: 60px 100px;
  background-color: #fff;
  border: solid 1px #ccc;
}
@media screen and (max-width: 767px) {
  .w-editorarea {
    width: 88%;
  }
}
@media screen and (max-width: 767px) {
  .w-editorarea {
    padding: 60px 8%;
  }
}
.w-editorarea hr {
  margin: 80px 0;
  border: none;
  border-top: solid 1px #ccc;
}
.w-editorarea p:not([class]) {
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.875;
  margin-top: 1em;
}
.w-editorarea p:not([class]):first-child {
  margin-top: 0;
}
.w-editorarea dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: dashed 1px #ccc;
}
.w-editorarea dl dt {
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.875;
  width: 185px;
  padding: 20px 0;
  border-top: dashed 1px #ccc;
}
@media screen and (max-width: 767px) {
  .w-editorarea dl dt {
    width: 100%;
    padding-bottom: 10px;
  }
}
.w-editorarea dl dd {
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.875;
  width: calc(100% - 185px);
  padding: 20px 0;
  border-top: dotted 1px #ccc;
}
@media screen and (max-width: 767px) {
  .w-editorarea dl dd {
    width: 100%;
    border-top: 0;
    padding-top: 0;
  }
}

/* ============================================
  固定ページ
============================================  */
.page .w-editorarea h2 {
  color: var(--color-primary);
  font-size: 3rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .page .w-editorarea h2 {
    font-size: 2.4rem;
  }
}

/* ============================================
  記事
============================================  */
.single .w-editorarea h1 {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  padding-bottom: 10px;
  border-bottom: solid 1px var(--color-primary);
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .single .w-editorarea h1 {
    font-size: 2.4rem;
  }
}
.single .w-editorarea ._date-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.single .w-editorarea ._date-area ._category {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
  padding: 5px 1em;
  min-height: 25px;
  border-radius: 5px;
  background-color: #eee;
}
.single .w-editorarea ._date-area ._category.--event {
  color: #fff;
  background-color: var(--color-primary);
}
.single .w-editorarea ._date-area ._category.--business {
  background-color: var(--color-secondary);
}
.single .w-editorarea ._date-area ._category.--seminar {
  color: #fff;
  background-color: #3d4791;
}
.single .w-editorarea ._date-area ._category.--workshop {
  color: #fff;
  background-color: #589190;
}
.single .w-editorarea ._date-area ._category.--news {
  background-color: #FDDB2E;
}
.single .w-editorarea ._date-area ._category.--update {
  background-color: #eee;
}
.single .w-editorarea ._date-area ._category.--important {
  color: #fff;
  background-color: #CC0000;
}
.single .w-editorarea ._date-area ._date {
  font-size: 1.6rem;
  color: #666;
}
.single .w-editorarea h2 {
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  margin-top: 100px;
  padding: 10px 20px;
  background-color: #F2F2F2;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .single .w-editorarea h2 {
    font-size: 2rem;
  }
}
.single .w-editorarea ._date-area + h2 {
  margin-top: 0 !important;
}
.single .w-editorarea h3 {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  margin-top: 50px;
  padding-left: 15px;
  border-left: solid 4px var(--color-primary);
}
@media screen and (max-width: 767px) {
  .single .w-editorarea h3 {
    font-size: 1.8rem;
  }
}
.single .w-editorarea .wp-block-image {
  margin: 50px 0;
}
.single .w-editorarea .wp-block-columns {
  margin: 50px 0;
}
.single .w-editorarea .wp-block-columns .wp-block-image {
  margin: 0;
}
.single .w-editorarea ul, .single .w-editorarea ol {
  padding-left: 1.5em;
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
  line-height: 2;
  margin-top: 35px;
}
.single .w-editorarea ul > li {
  list-style: disc;
}
.single .w-editorarea ol > li {
  list-style: decimal;
}
.single .prev-button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 60px auto 0;
}
.single .prev-button .c-button {
  min-width: 270px;
}

/* ============================================
  WP-PageNavi
============================================  */
.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
}
.wp-pagenavi .pages,
.wp-pagenavi .extend,
.wp-pagenavi .first,
.wp-pagenavi .last,
.wp-pagenavi .larger {
  display: none;
}
.wp-pagenavi .page,
.wp-pagenavi .current {
  font-size: 1.6rem;
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 5px;
  border-radius: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.wp-pagenavi .page {
  background-color: #fff;
  border: 2px solid #ccc;
}
.wp-pagenavi .page:hover {
  color: #fff;
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.wp-pagenavi .current {
  color: #fff;
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary) !important;
  font-weight: var(--font-weight-regular) !important;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  font-size: 1.6rem;
  border: none;
  color: var(--color-primary);
  text-decoration: underline;
  margin: 0 15px;
}
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */