@charset "UTF-8";
/* CSS Document */
/* ============================================
  Font
============================================  */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..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)) {
  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-base: #333;
  --color-primary: #20A1C6;
  --color-secondary: #00479D;
  --color-accent: #FFF615;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

/* Kaisotai-Next-UP-B */
@font-face {
  font-family: "Kaisotai-Next-UP-B";
  src: url("../font/Kaisotai-Next-UP-B.eot"); /* IE9以下 */
  src: url("../font/Kaisotai-Next-UP-B.eot?#iefix") format("embedded-opentype"), url("../font/Kaisotai-Next-UP-B.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.kaisotai {
  font-family: "Kaisotai-Next-UP-B";
}

/* ============================================
  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: 100px;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 50px;
  }
}

body {
  width: 100%;
  color: var(--color-base);
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Arial, Verdana, sans-serif;
  line-height: 1;
  letter-spacing: 0;
  background-color: #fff;
  overscroll-behavior-y: none;
}

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 {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #fff;
}
.l-header ._inner {
  height: 100px;
  max-width: 1100px;
  width: 88%;
  margin: 0 auto;
  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: 100px;
}
@media only screen and (max-width: 1000px) {
  .l-header ._inner {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .l-header ._inner {
    height: 50px;
  }
}
.l-header ._logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 368px;
}
@media only screen and (max-width: 1000px) {
  .l-header ._logo {
    width: 280px;
  }
}
@media screen and (max-width: 767px) {
  .l-header ._logo {
    width: 240px;
  }
}
.l-header ._nav {
  font-size: 1.5rem;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5em 4em;
}
@media only screen and (max-width: 1000px) {
  .l-header ._nav {
    gap: 0.5em 2em;
  }
}
@media screen and (max-width: 767px) {
  .l-header ._nav {
    display: none;
  }
}
.l-header ._nav ._item {
  width: calc(33.33% - 2.67em);
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: bold;
  text-decoration: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.l-header ._nav ._item.--info {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-header ._nav ._item::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border: solid 1px var(--color-primary);
  border-radius: 50%;
  vertical-align: middle;
}
.l-header ._nav ._item:hover {
  color: var(--color-primary);
}

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

hamburger

============================================  */
.l-hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-hamburger {
    display: block;
  }
}
.l-hamburger ._nav {
  position: fixed;
  right: 0; /* これで隠れる */
  top: 0;
  z-index: 99;
  width: 100%; /* スマホに収まるくらい */
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-color: rgb(255, 255, 255);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  visibility: hidden;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2em;
  font-size: 1.6rem;
  padding-top: 80px;
  padding: 100px 6%;
}
.l-hamburger ._nav ._item {
  display: block;
  line-height: 1.6;
  font-weight: bold;
  text-decoration: none;
  width: 100%;
  position: relative;
}
.l-hamburger ._nav ._item::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border: solid 1px var(--color-primary);
  border-radius: 50%;
  vertical-align: middle;
}
.l-hamburger ._line {
  position: fixed;
  right: 14px;
  top: 14px;
  width: 32px; /* クリックしやすいようにちゃんと幅を指定する */
  height: 22px; /* クリックしやすいようにちゃんと高さを指定する */
  cursor: pointer;
  z-index: 100;
}
.l-hamburger ._line ._item {
  position: absolute;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: #333;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.l-hamburger ._line ._item--1 {
  top: 0;
}
.l-hamburger ._line ._item--2 {
  top: 10px;
}
.l-hamburger ._line ._item--3 {
  top: 20px;
}
.l-hamburger ._line:hover ._item--1 {
  top: 2px;
}
.l-hamburger ._line:hover ._item--3 {
  top: 18px;
}

/* 表示された時用のCSS */
.is-open ._nav {
  opacity: 1;
  visibility: visible;
}
.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;
}

/* ============================================
  サブビジュアル
============================================  */
.l-subvisual {
  color: #fff;
  background-color: var(--color-secondary);
  position: relative;
}
.l-subvisual::after {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  background-image: url(../img/subvisual.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .l-subvisual::after {
    position: static;
    width: 100%;
    height: 15rem;
  }
}
.l-subvisual ._title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  height: 20rem;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .l-subvisual ._title {
    gap: 1.5rem;
    height: 15rem;
    width: 100%;
  }
}
.l-subvisual ._title ._main {
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .l-subvisual ._title ._main {
    font-size: 2.4rem;
  }
}
.l-subvisual ._title ._sub {
  font-family: "Roboto";
  font-size: 2.4rem;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .l-subvisual ._title ._sub {
    font-size: 1.6rem;
  }
}

/* ============================================
  panNav
============================================  */
.l-panNav {
  padding: 2rem 0;
  margin-bottom: 3rem;
}
.l-panNav ._list {
  max-width: 1100px;
  width: 88%;
  margin: 0 auto;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.l-panNav ._list ._item {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .l-panNav ._list ._item {
    font-size: 1.2rem;
  }
}
.l-panNav ._list ._item::after {
  content: "/";
  color: #aaa;
  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: 0 0 10rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding: 0 0 6rem;
  }
}

/* ============================================
  inner
============================================  */
.l-inner {
  max-width: 1100px;
  width: 88%;
  margin: 0 auto;
}

/* ============================================
  h
============================================  */
.l-h2 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 4rem;
  position: relative;
  padding-left: 4rem;
}
@media screen and (max-width: 767px) {
  .l-h2 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    padding-left: 3rem;
  }
}
.l-h2::before {
  content: "";
  display: block;
  height: 4.5rem;
  width: 2px;
  background-color: var(--color-primary);
  position: absolute;
  left: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(25deg);
          transform: translateY(-50%) rotate(25deg);
}
@media screen and (max-width: 767px) {
  .l-h2::before {
    height: 3.5rem;
    left: 0.8rem;
  }
}

.l-h3 {
  color: #fff;
  background-color: var(--color-secondary);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.4;
  padding: 0.5em 1em;
  margin-bottom: 1.3em;
}
@media screen and (max-width: 767px) {
  .l-h3 {
    font-size: 2rem;
  }
}

/* ============================================
  column
============================================  */
.l-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .l-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-column ._col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .l-column.--column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

/* ============================================
  dl
============================================  */
.l-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.8rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .l-dl {
    font-size: 1.6rem;
  }
}
.l-dl dt {
  width: 7em;
  padding-top: 1em;
  padding-bottom: 1em;
  border-bottom: solid 1px #ccc;
}
@media screen and (max-width: 767px) {
  .l-dl dt {
    width: 100%;
    border-bottom: 0;
    padding-bottom: 0;
  }
}
.l-dl dd {
  width: calc(100% - 7em);
  padding-top: 1em;
  padding-bottom: 1em;
  border-bottom: solid 1px #ccc;
}
@media screen and (max-width: 767px) {
  .l-dl dd {
    width: 100%;
    padding-top: 0.5em;
  }
}

/* ============================================
  footer
============================================  */
.l-footer {
  color: #fff;
  background-color: var(--color-secondary);
  padding: 80px 0 30px;
}
.l-footer ._nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em 2em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .l-footer ._nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-footer ._nav ._item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  text-decoration: none;
  position: relative;
}
.l-footer ._nav ._item:hover {
  text-decoration: underline;
}
.l-footer ._nav ._item::after {
  position: absolute;
  top: 0;
  right: -1em;
  content: "";
  height: 1em;
  width: 1px;
  background-color: #fff;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .l-footer ._nav ._item::after {
    display: none;
  }
}
.l-footer ._nav ._item:last-child::after {
  display: none;
}
.l-footer ._company ._name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1em;
}
.l-footer ._company ._address {
  font-size: 1.4rem;
  line-height: 1.8;
}
.l-footer ._company ._address ._mail {
  width: 202px;
  height: auto;
  display: inline-block;
  margin-top: 7px;
}
.l-footer ._copy {
  font-size: 1.4rem;
  line-height: 1.4;
  text-align: center;
  margin-top: 40px;
}

/* ============================================
  pagetop
============================================  */
.l-pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  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: var(--color-primary);
  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: 10px;
    right: 10px;
  }
}
.l-pagetop svg {
  fill: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-pagetop:hover {
  opacity: 0.8 !important;
}

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

/* ============================================
  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: block;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  padding: 20px 40px;
  width: 100%;
  max-width: 240px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: var(--color-secondary);
  clip-path: polygon(15px 0%, 100% 0%, calc(100% - 15px) 100%, 0% 100%);
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-button {
    font-size: 1.4rem;
    padding: 15px 30px;
  }
}
.c-button::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 5px;
  background-color: #fff;
  width: 13px;
  height: 12px;
  clip-path: polygon(0% 0%, 100% 0%, calc(100% - 3px) 100%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-button:hover {
  background-color: var(--color-primary);
}
.c-button:hover::after {
  content: "";
  width: 26px;
  height: 24px;
  clip-path: polygon(0% 0%, 100% 0%, calc(100% - 6px) 100%);
}
.c-button span {
  position: relative;
  z-index: 1;
}

/* ============================================
  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 {
  font-size: 3.6rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2em;
}
@media screen and (max-width: 767px) {
  .f-h2 {
    font-size: 2.4rem;
  }
}

/* ============================================
  メインビジュアル
============================================  */
.f-mainvisual {
  height: 700px;
  position: relative;
  padding-top: 10rem;
  padding-bottom: 4rem;
  overflow: hidden;
}
.f-mainvisual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../images/front/mv.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 5s ease-in-out;
  transition: -webkit-transform 5s ease-in-out;
  transition: transform 5s ease-in-out;
  transition: transform 5s ease-in-out, -webkit-transform 5s ease-in-out;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.f-mainvisual::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 71, 157, 0.2);
}
@media screen and (max-width: 767px) {
  .f-mainvisual {
    height: 93vh;
    height: calc(var(--vh, 1vh) * 93);
  }
}
.f-mainvisual .l-inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 1;
}
.f-mainvisual ._copyarea {
  overflow: hidden;
}
.f-mainvisual ._copy {
  font-family: "Kaisotai-Next-UP-B";
  color: #fff;
  font-size: 8rem;
  opacity: 0;
}
@media only screen and (max-width: 1000px) {
  .f-mainvisual ._copy {
    font-size: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._copy {
    font-size: 3rem;
  }
}
.f-mainvisual ._copy span {
  color: var(--color-accent);
  font-size: 15rem;
}
@media only screen and (max-width: 1000px) {
  .f-mainvisual ._copy span {
    font-size: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._copy span {
    font-size: 6rem;
  }
}
.f-mainvisual ._numberlist {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 10rem;
}
@media only screen and (max-width: 1000px) {
  .f-mainvisual ._numberlist {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._numberlist {
    gap: 1rem;
  }
}
.f-mainvisual ._numberlist ._item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  opacity: 0;
}
.f-mainvisual ._numberlist ._item ._title {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._numberlist ._item ._title {
    font-size: 1.4rem;
    height: 7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}
.f-mainvisual ._numberlist ._item ._title span {
  font-size: 2.4rem;
  font-family: "Roboto";
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._numberlist ._item ._title span {
    font-size: 1.6rem;
  }
}
.f-mainvisual ._numberlist ._item ._number {
  color: var(--color-accent);
  font-family: "Roboto";
  font-size: 10rem;
  font-weight: 500;
  text-align: center;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._numberlist ._item ._number {
    font-size: 5rem;
  }
}
.f-mainvisual ._numberlist ._item ._text {
  font-size: 2rem;
  font-family: "Roboto";
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._numberlist ._item ._text {
    font-size: 1.6rem;
  }
}
.f-mainvisual.active::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.f-mainvisual.active ._copy {
  opacity: 1;
  -webkit-transition: all 1s ease-in;
  transition: all 1s ease-in;
}
.f-mainvisual.active ._copy.--2 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.f-mainvisual.active ._numberlist ._item {
  opacity: 1;
  -webkit-transition: opacity 1s ease-in;
  transition: opacity 1s ease-in;
}

/* ============================================
  組織とあゆみ
============================================  */
.f-aboutus {
  padding: 60px 0;
  background-image: url("../../images/front/aboutus-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .f-aboutus {
    padding: 50px 0;
    background-position: right calc(50% + 100px) bottom 0;
  }
}
.f-aboutus h2 {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .f-aboutus h2 {
    margin-bottom: 2rem;
  }
}
.f-aboutus ._text {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .f-aboutus ._text {
    font-size: 1.4rem;
  }
}
.f-aboutus ._btnlist {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .f-aboutus ._btnlist {
    -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;
  }
}

/* ============================================
  ピックアップコンテンツ
============================================  */
.f-pickup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .f-pickup {
    padding-top: 38vw;
  }
}
.f-pickup::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .f-pickup::before {
    background-size: contain;
  }
}
.f-pickup::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background-color: #fff;
  -webkit-transition: height 1s ease-in-out;
  transition: height 1s ease-in-out;
}
.f-pickup.is-active::after {
  height: 0;
}
.f-pickup ._contentsWrap {
  clip-path: polygon(100px -1px, 100% -1px, 100% 100%, 0 100%);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .f-pickup ._contentsWrap {
    width: 100% !important;
    clip-path: none;
  }
}
.f-pickup ._contents {
  padding: 10rem 10rem 10rem 12rem;
  background-color: rgba(238, 238, 238, 0.8);
  backdrop-filter: blur(30px);
  clip-path: polygon(100px -1px, 100% -1px, 100% 100%, 0 100%);
}
@media screen and (max-width: 767px) {
  .f-pickup ._contents {
    padding: 5rem 2rem;
    clip-path: none;
  }
}
.f-pickup ._contents h2 {
  text-align: left;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .f-pickup ._contents h2 {
    text-align: center;
  }
}
.f-pickup ._contents .c-button {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .f-pickup ._contents .c-button {
    margin-left: auto;
    margin-right: auto;
  }
}
.f-pickup.--tankterminal::before {
  background-image: url("../../images/front/pickup-tankterminal.jpg");
}
.f-pickup.--tankterminal ._contentsWrap {
  width: 50%;
}
@media only screen and (max-width: 1100px) {
  .f-pickup.--tankterminal ._contentsWrap {
    width: 60%;
  }
}

/* ============================================
  ページリスト
============================================  */
.f-pagelist {
  padding: 10rem 0;
}
@media screen and (max-width: 767px) {
  .f-pagelist {
    padding: 5rem 0;
  }
}
.f-pagelist .l-inner {
  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;
}
@media screen and (max-width: 767px) {
  .f-pagelist .l-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
.f-pagelist ._item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 350px;
  height: 250px;
  padding: 20px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: 3rem;
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: var(--color-secondary);
  clip-path: polygon(45px 0%, 100% 0%, calc(100% - 45px) 100%, 0% 100%);
  position: relative;
}
@media only screen and (max-width: 1100px) {
  .f-pagelist ._item {
    width: 250px;
    height: 180px;
    padding: 0px 40px;
    gap: 2rem;
    clip-path: polygon(30px 0%, 100% 0%, calc(100% - 30px) 100%, 0% 100%);
  }
}
.f-pagelist ._item i {
  width: 60px;
  height: 60px;
  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;
}
@media only screen and (max-width: 1100px) {
  .f-pagelist ._item i {
    width: 50px;
    height: 50px;
  }
}
.f-pagelist ._item::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 5px;
  width: 13px;
  height: 12px;
  background-color: #fff;
  clip-path: polygon(0% 0%, 100% 0%, calc(100% - 2px) 100%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.f-pagelist ._item p {
  height: 1.4em;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media only screen and (max-width: 1100px) {
  .f-pagelist ._item p {
    font-size: 1.8rem;
  }
}
.f-pagelist ._item:hover {
  background-color: var(--color-primary);
}
.f-pagelist ._item:hover::after {
  content: "";
  width: 26px;
  height: 24px;
  clip-path: polygon(0% 0%, 100% 0%, calc(100% - 4px) 100%);
}
.f-pagelist ._item:nth-child(1) {
  -webkit-transform: translateX(25px);
          transform: translateX(25px);
}
@media only screen and (max-width: 1100px) {
  .f-pagelist ._item:nth-child(1) {
    -webkit-transform: translateX(15px);
            transform: translateX(15px);
  }
}
@media screen and (max-width: 767px) {
  .f-pagelist ._item:nth-child(1) {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.f-pagelist ._item:nth-child(3) {
  -webkit-transform: translateX(-25px);
          transform: translateX(-25px);
}
@media only screen and (max-width: 1100px) {
  .f-pagelist ._item:nth-child(3) {
    -webkit-transform: translateX(-15px);
            transform: translateX(-15px);
  }
}
@media screen and (max-width: 767px) {
  .f-pagelist ._item:nth-child(3) {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

/* ============================================
  協会からのお知らせ
============================================  */
.f-infomation {
  background-color: #F7F7F7;
  padding: 10rem 0;
}
@media screen and (max-width: 767px) {
  .f-infomation {
    padding: 6rem 0;
  }
}
.f-infomation .c-button {
  margin-top: 5rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .f-infomation .c-button {
    margin-top: 3rem;
  }
}

/* ============================================
  協会について
============================================  */
.p-outline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: solid 1px #ccc;
}
.p-outline > dt {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  border-top: solid 1px #ccc;
  position: relative;
  width: 14rem;
  background-color: #F7F7F7;
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .p-outline > dt {
    width: 100%;
    font-size: 1.4rem;
  }
}
.p-outline > dt::before {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-secondary);
  position: absolute;
  top: 0;
  left: 0;
}
.p-outline > dt ._note {
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 1em;
}
.p-outline > dd {
  font-size: 1.6rem;
  line-height: 1.6;
  width: calc(100% - 14rem);
  border-top: solid 1px #ccc;
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .p-outline > dd {
    width: 100%;
    border-top: 0;
    font-size: 1.4rem;
  }
}
.p-outline ._dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-outline ._dl dt {
  width: 6.5em;
  font-weight: 700;
}
.p-outline ._dl dd {
  width: calc(100% - 6.5em);
}
.p-outline ._column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem 4rem;
}
@media only screen and (max-width: 1000px) {
  .p-outline ._column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-outline ._column .c-button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 300px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.p-timeline ._item {
  position: relative;
  padding: 20px 0;
  /* 縦ライン */
}
@media screen and (max-width: 767px) {
  .p-timeline ._item {
    padding-left: 3.5rem;
  }
}
.p-timeline ._item ._content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem 9rem;
  width: 100%;
  /* 年号 */
  /* 内容 */
}
@media screen and (max-width: 767px) {
  .p-timeline ._item ._content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-timeline ._item ._content ._date {
  width: 70px;
  text-align: left;
  line-height: 1.4;
  -webkit-transform: translateY(1.5rem);
          transform: translateY(1.5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-timeline ._item ._content ._date {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1em;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-timeline ._item ._content ._date ._year {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
}
.p-timeline ._item ._content ._date ._year span {
  color: var(--color-primary);
  font-size: 2rem;
}
.p-timeline ._item ._content ._date ._era {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-timeline ._item ._content ._date ._era {
    -webkit-transform: translateY(0.5em);
            transform: translateY(0.5em);
  }
}
.p-timeline ._item ._content ._text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #F7F7F7;
  padding: 1.5rem;
  border-radius: 10px;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-timeline ._item ._content ._text {
    font-size: 1.4rem;
  }
}
.p-timeline ._item ._line {
  width: 18px;
  height: 100%;
  position: absolute;
  left: 10rem;
  top: 2rem;
  /* ドット */
}
@media screen and (max-width: 767px) {
  .p-timeline ._item ._line {
    left: 0;
    top: 0;
  }
}
.p-timeline ._item ._line::before {
  content: "";
  position: absolute;
  top: -2rem;
  left: 50%;
  width: 1px;
  height: 5rem;
  background: #ccc;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-timeline ._item ._line::after {
  content: "";
  position: absolute;
  top: 3rem;
  left: 50%;
  width: 1px;
  height: calc(100% - 1rem);
  background: #ccc;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-timeline ._item ._line ._dot {
  position: absolute;
  top: 2rem;
  left: 50%;
  width: 1.8rem;
  height: 1.8rem;
  background: var(--color-primary);
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-timeline ._item ._line ._dot {
    top: 2.6rem;
  }
}
.p-timeline ._item:first-child ._line::before, .p-timeline ._item:last-child ._line::after {
  display: none;
}

/* ============================================
  会長挨拶
============================================  */
.p-chairman figcaption {
  text-align: right;
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 1.6rem;
}
.p-chairman figcaption span {
  font-size: 2rem;
  font-weight: 700;
}

/* ============================================
  会員一覧
============================================  */
.p-anchor {
  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;
  gap: 2rem 4rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-anchor {
    gap: 2rem;
    margin-bottom: 3rem;
  }
}
.p-anchor ._item {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  text-decoration: none;
  padding-bottom: 1rem;
  border-bottom: solid 1px #707070;
  width: 16rem;
  position: relative;
  padding-right: 1em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-anchor ._item {
    font-size: 1.6rem;
    margin-right: 1.5rem;
    padding-bottom: 0.5rem;
  }
}
.p-anchor ._item::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
  position: absolute;
  top: calc(50% - 6px);
  right: 15px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-anchor ._item:hover {
  text-decoration: none;
  color: var(--color-secondary);
  border-bottom: solid 1px var(--color-secondary);
}
.p-anchor ._item:hover::after {
  top: calc(50% - 2px);
}

#kanto {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  #kanto {
    margin-bottom: 60px;
  }
}

.p-member {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-member {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.p-member ._item {
  padding: 3rem;
  background-color: #F7F7F7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-member ._item {
    padding: 2rem;
  }
}
.p-member ._item ._content ._title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .p-member ._item ._content ._title {
    font-size: 1.6rem;
  }
}
.p-member ._item ._link {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-secondary);
  text-decoration: none;
  margin-right: 0;
  margin-left: auto;
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  .p-member ._item ._link {
    font-size: 1.4rem;
  }
}
.p-member ._item ._link:hover {
  text-decoration: underline;
}
.p-member ._item ._link::after {
  content: "";
  display: inline-block;
  background-image: url(../img/icon-blank.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 15px;
  height: 15px;
  margin-left: 0.5em;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

/* ============================================
  リンク集
============================================  */
.p-linkList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-linkList {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.p-linkList ._item {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  text-decoration: none;
  padding: 2rem;
  background-color: #F7F7F7;
  border: solid 1px #F7F7F7;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  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;
}
.p-linkList ._item::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  background-image: url(../img/icon-blank.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 15px;
  height: 15px;
  margin-left: 0.5em;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
.p-linkList ._item:hover {
  border-color: var(--color-secondary);
}

/* ============================================
  タンクターミナル・インフォメーション
============================================  */
.p-information {
  border: solid 1px var(--color-secondary);
  padding: 40px;
  margin-bottom: 60px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-information {
    padding: 20px;
    margin-bottom: 40px;
  }
}
.p-information:last-child {
  margin-bottom: 0;
}
.p-information.--special {
  background-color: #F7F7F7;
  border: 0;
}
.p-information ._special {
  color: #fff;
  background-color: #FF5C0A;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 5px 10px;
  margin-bottom: 0.5em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-information ._special {
    font-size: 1.4rem;
  }
}
.p-information ._title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .p-information ._title {
    font-size: 1.8rem;
  }
}
.p-information ._text {
  font-size: 1.6rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-information ._text {
    font-size: 1.4rem;
  }
}
.p-information figcaption {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.4;
  margin-top: 0.5em;
}
.p-information table {
  margin: 2rem 0;
}
.p-information table th, .p-information table td {
  padding: 8px 12px;
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-information table th, .p-information table td {
    font-size: 1.4rem;
  }
}
.p-information ._imgcol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-information ._imgcol {
    -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;
    gap: 1rem;
  }
}
.p-information ._imgcol img {
  max-width: 200px;
  height: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.img_right {
  max-width: 200px;
  float: right;
  margin-bottom: 1em;
  margin-right: 0px;
  margin-left: 1em;
  margin-top: 0px;
}
@media screen and (max-width: 767px) {
  .img_right {
    float: none;
    margin: 1em auto;
  }
}

.img_left {
  max-width: 200px;
  float: left;
  margin-bottom: 1em;
  margin-right: 1em;
  margin-left: 0px;
  margin-top: 0px;
}
@media screen and (max-width: 767px) {
  .img_left {
    float: none;
    margin: 1em auto;
  }
}

/* ============================================
  プライバシーポリシー
============================================  */
.p-privacylist {
  font-size: 1.6rem;
  line-height: 1.8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
}
.p-privacylist li {
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.p-privacylist li ._item {
  margin-top: 1em;
  text-indent: 0;
  padding-left: 0;
}

/* ============================================
  お知らせ一覧
============================================  */
.p-informationList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.p-informationList ._card {
  display: block;
  width: 100%;
  padding: 2rem 4rem;
  background-color: #F7F7F7;
  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: 4rem;
  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 ._date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Roboto";
  font-size: 1.4rem;
  font-weight: 500;
  font-weight: var(--font-weight-medium);
}
.p-informationList ._card ._date span {
  display: block;
  font-size: 4.5rem;
  font-weight: 700;
  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;
  color: #fff;
  background-color: var(--color-primary);
  font-size: 1.4rem;
  font-weight: var(--font-weight-medium);
  text-align: center;
  width: 15rem;
  padding: 5px;
  min-height: 25px;
  border-radius: 5px;
}
.p-informationList ._card ._title-area ._category.--event {
  background-color: #01A34C;
}
.p-informationList ._card ._title-area ._category.--press {
  background-color: var(--color-secondary);
}
.p-informationList ._card ._title-area ._category.--important {
  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: var(--color-primary);
  padding: 20px 30px 20px 50px;
}
@media screen and (max-width: 767px) {
  .p-informationList a._card:hover {
    padding: 20px 4% 20px 12%;
  }
}
.p-informationList a._card:hover ._category {
  color: var(--color-primary);
  background-color: #fff !important;
}
.p-informationList a._card:hover ._category.--event {
  color: #01A34C;
}
.p-informationList a._card:hover ._category.--press {
  color: var(--color-secondary);
}
.p-informationList a._card:hover ._category.--important {
  color: #CC0000;
}
.p-informationList.--front ._card {
  background-color: #fff;
}

.to_info {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 4rem auto;
}
.to_info .c-button {
  max-width: 260px;
}

/* ============================================
  お知らせ詳細
============================================  */
.p-news_detail ._title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  padding-bottom: 10px;
  border-bottom: solid 1px var(--color-secondary);
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-news_detail ._title {
    font-size: 2rem;
  }
}
.p-news_detail ._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;
}
.p-news_detail ._date-area ._category {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #fff;
  background-color: var(--color-primary);
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: var(--font-weight-medium);
  text-align: center;
  width: 15rem;
  padding: 5px;
  min-height: 25px;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .p-news_detail ._date-area ._category {
    font-size: 1.2rem;
    width: 12rem;
  }
}
.p-news_detail ._date-area ._category.--event {
  background-color: #01A34C;
}
.p-news_detail ._date-area ._category.--press {
  background-color: var(--color-secondary);
}
.p-news_detail ._date-area ._category.--important {
  background-color: #CC0000;
}
.p-news_detail ._date-area ._date {
  font-size: 1.6rem;
  color: #666;
}
@media screen and (max-width: 767px) {
  .p-news_detail ._date-area ._date {
    font-size: 1.4rem;
  }
}
.p-news_detail ._content {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-news_detail ._content {
    font-size: 1.4rem;
  }
}
.p-news_detail ._content img {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
}
.p-news_detail ._content a {
  color: var(--color-secondary);
  text-decoration: none;
}
.p-news_detail ._content a:hover {
  text-decoration: underline;
}

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

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

/* ============================================
  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; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}

.u-indent {
  text-indent: -1.5em;
  padding-left: 1.5em;
}

.u-indent1 {
  text-indent: -1em;
  padding-left: 1em;
}

.u-indent5 {
  text-indent: -5em;
  padding-left: 5em;
}

.u-inlineblock {
  display: inline-block;
}

.u-small {
  font-size: 80%;
}

/* ============================================
  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;
}

.u-mt1e {
  margin-top: 1em !important;
}

/* ============================================
  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
============================================  */
/* fadeIn
------------------------- */
.a-fadeIn {
  opacity: 0;
}
.a-fadeIn.is-active {
  -webkit-animation-name: fade-in;
          animation-name: fade-in;
  -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-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* fadeUp
------------------------- */
.a-fadeUp {
  opacity: 0;
}
.a-fadeUp.is-active {
  -webkit-animation-name: fade-up;
          animation-name: fade-up;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@media screen and (min-width: 768px) {
  .a-fadeUp.is-active.--delay1 {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
  }
}
@media screen and (min-width: 768px) {
  .a-fadeUp.is-active.--delay2 {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
}

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

@keyframes fade-up {
  0% {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    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: var(--color-secondary);
  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);
}

/* Fade Up Animation
------------------------- */
/* 初期状態（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;
}

/* ============================================
  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;
  }
}
/* ============================================
  swiper
============================================  */
/* ============================================
  共通
============================================  */
.w-editorarea {
  max-width: 1100px;
  width: 88%;
  margin: 0 auto;
  padding: 60px 100px;
  background-color: #fff;
  border: solid 1px #ccc;
}
@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 */