@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=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&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: #222;
  --color-primary: #0075C1;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-SemiBold: 600;
  --font-weight-bold: 700;
  --header-height-pc: 80px;
  --header-height-sp: 60px;
}

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

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: #fff;
  overscroll-behavior-y: none;
  padding-top: 70px;
}
@media screen and (max-width: 767px) {
  body {
    overflow-x: none;
    padding-top: 42px;
  }
}
body.front {
  padding-top: 0 !important;
}

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;
  }
}

/* ============================================
  header
============================================  */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 0 0 20px;
  height: 70px;
  width: 100%;
  background-color: #fff;
  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;
  z-index: 101;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 42px;
  }
}
.l-header ._logo {
  width: 331px;
}
@media only screen and (max-width: 1230px) {
  .l-header ._logo {
    width: 250px;
  }
}
@media screen and (max-width: 767px) {
  .l-header ._logo {
    width: 200px;
  }
}
.l-header ._navarea {
  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;
  font-size: 1.6rem;
  gap: 2em;
}
@media only screen and (max-width: 1230px) {
  .l-header ._navarea {
    gap: 1em;
  }
}
@media only screen and (max-width: 1050px) {
  .l-header ._navarea {
    display: none;
  }
}
.l-header ._navarea ._nav {
  font-size: 1.6rem;
  height: 68px;
  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: 2em;
}
@media only screen and (max-width: 1230px) {
  .l-header ._navarea ._nav {
    gap: 1em;
  }
}
.l-header ._navarea ._nav ._item {
  color: #333;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: fit-content;
  position: relative;
}
@media only screen and (max-width: 1230px) {
  .l-header ._navarea ._nav ._item {
    font-size: 1.5rem;
  }
}
.l-header ._navarea ._nav ._item::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  -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;
}
.l-header ._navarea ._nav ._item:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.l-header ._navarea ._btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-header ._navarea ._btn ._tel {
  display: block;
  color: var(--color-primary);
  font-size: 1.3rem;
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  letter-spacing: 0.1em;
  height: 70px;
  border: solid 1px #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 10px;
  padding-right: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
}
.l-header ._navarea ._btn ._tel span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-family: "Crimson Text", serif;
  font-size: 3rem;
  line-height: 1;
  height: 26px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.05em;
}
.l-header ._navarea ._btn ._tel span::before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  -webkit-mask-image: url(../img/icon_tel.svg);
          mask-image: url(../img/icon_tel.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: var(--color-primary);
}
.l-header ._navarea ._btn ._language {
  position: relative;
}
.l-header ._navarea ._btn ._language::before {
  position: absolute;
  top: calc(50% - 9px);
  left: 10px;
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  -webkit-mask-image: url(../img/icon_language.svg);
          mask-image: url(../img/icon_language.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
}
.l-header ._navarea ._btn ._language::after {
  position: absolute;
  top: calc(50% - 3px);
  right: 10px;
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  -webkit-mask-image: url(../img/icon_arrow-bottom.svg);
          mask-image: url(../img/icon_arrow-bottom.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-header ._navarea ._btn ._language:hover::after {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.l-header ._navarea ._btn ._language select {
  color: #fff;
  font-size: 1.2rem;
  font-weight: var(--font-weight-bold);
  height: 100%;
  text-decoration: none;
  background-color: #202980;
  padding: 10px 10px 10px 33px;
  height: 70px;
  width: 120px;
  line-height: 2;
  border-top: solid 1px #202980;
  border-right: solid 1px #202980;
  border-bottom: solid 1px #202980;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.l-header ._navarea ._btn ._language select:focus {
  outline: none;
}

.front .l-header {
  background-color: unset;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
.front .l-header ._navarea ._nav ._item {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-shadow: 0px 0px 10px rgba(15, 15, 35, 0.6), 0px 0px 10px rgba(15, 15, 35, 0.6), 0px 0px 10px rgba(15, 15, 35, 0.6);
}
.front .l-header ._navarea ._nav ._item::after {
  background: #fff;
}
.front .l-header ._navarea ._btn ._tel {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: rgba(0, 91, 124, 0.3);
}
.front .l-header ._navarea ._btn ._tel span::before {
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.front .l-header ._navarea ._btn ._language select {
  background-color: rgba(0, 91, 124, 0.3);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-color: #fff;
}

.front .l-header.--active {
  background-color: #fff;
}
.front .l-header.--active ._navarea ._nav ._item {
  color: #222;
  text-shadow: unset;
}
.front .l-header.--active ._navarea ._nav ._item::after {
  background: var(--color-primary);
}
.front .l-header.--active ._navarea ._btn ._tel {
  color: var(--color-primary);
  background-color: #fff;
}
.front .l-header.--active ._navarea ._btn ._tel span::before {
  background-color: var(--color-primary);
}
.front .l-header.--active ._navarea ._btn ._language select {
  background-color: #202980;
  border-color: #202980;
}

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

hamburger

============================================  */
.l-hamburger {
  display: none;
}
@media only screen and (max-width: 1050px) {
  .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);
  padding-top: 80px;
  background-color: #1A1C3E;
  padding: 80px 6%;
  -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: 30px;
}
@media screen and (min-width: 768px) {
  .l-hamburger ._nav {
    gap: 60px;
  }
}
.l-hamburger ._nav ._list ._item {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: bold;
  text-decoration: none;
  padding: 15px 0;
  border-bottom: solid 1px #b3b3b3;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-hamburger ._nav ._list ._item {
    font-size: 1.8rem;
    padding: 25px 0;
  }
}
.l-hamburger ._nav ._btn {
  -ms-flex-negative: 0;
      flex-shrink: 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: 10px;
  width: 80%;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .l-hamburger ._nav ._btn {
    width: 60%;
    gap: 20px;
  }
}
.l-hamburger ._nav ._btn ._tel {
  display: block;
  color: #fff;
  font-size: 1.2rem;
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  letter-spacing: 0.1em;
  height: 70px;
  border: solid 1px #fff;
  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;
  padding-left: 10px;
  padding-right: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
}
.l-hamburger ._nav ._btn ._tel span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-family: "Crimson Text", serif;
  font-size: 2.7rem;
  line-height: 1;
  height: 26px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.05em;
}
.l-hamburger ._nav ._btn ._tel span::before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  -webkit-mask-image: url(../img/icon_tel.svg);
          mask-image: url(../img/icon_tel.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
}
.l-hamburger ._nav ._btn ._language {
  position: relative;
}
.l-hamburger ._nav ._btn ._language::before {
  position: absolute;
  top: calc(50% - 9px);
  left: 10px;
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  -webkit-mask-image: url(../img/icon_language.svg);
          mask-image: url(../img/icon_language.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
}
.l-hamburger ._nav ._btn ._language::after {
  position: absolute;
  top: calc(50% - 3px);
  right: 10px;
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  -webkit-mask-image: url(../img/icon_arrow-bottom.svg);
          mask-image: url(../img/icon_arrow-bottom.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-hamburger ._nav ._btn ._language:hover::after {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.l-hamburger ._nav ._btn ._language select {
  color: #fff;
  font-size: 1.2rem;
  font-weight: var(--font-weight-bold);
  height: 100%;
  text-decoration: none;
  background-color: var(--color-primary);
  padding: 10px 10px 10px 33px;
  height: 50px;
  width: 100%;
  line-height: 2;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.l-hamburger ._nav ._btn ._language select:focus {
  outline: none;
}
.l-hamburger ._line {
  background-color: var(--color-primary);
  position: fixed;
  right: 0;
  top: 0;
  width: 42px;
  height: 42px;
  cursor: pointer;
  z-index: 101;
}
@media only screen and (min-width: 768px) {
  .l-hamburger ._line {
    width: 70px;
    height: 70px;
  }
}
.l-hamburger ._line ._item {
  position: absolute;
  left: 0;
  width: 27px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media only screen and (min-width: 768px) {
  .l-hamburger ._line ._item {
    width: 27px;
  }
}
.l-hamburger ._line ._item--1 {
  top: 13px;
  left: 8px;
}
@media only screen and (min-width: 768px) {
  .l-hamburger ._line ._item--1 {
    top: 25px;
    width: 32px;
    left: 19px;
  }
}
.l-hamburger ._line ._item--2 {
  width: 14px;
  top: 20px;
  left: 21px;
}
@media only screen and (min-width: 768px) {
  .l-hamburger ._line ._item--2 {
    top: 35px;
    left: 35px;
    width: 16px;
  }
}
.l-hamburger ._line ._text {
  position: absolute;
  left: 10px;
  bottom: 6px;
  color: #fff;
  font-size: 0.9rem;
}
@media only screen and (min-width: 768px) {
  .l-hamburger ._line ._text {
    font-size: 1.4rem;
    top: 40px;
    bottom: auto;
    left: 15px;
  }
}

/* 表示された時用のCSS */
.is-open .l-header {
  background-color: #1A1C3E !important;
}
.is-open ._nav {
  opacity: 1;
  visibility: visible;
}
.is-open ._item--1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 15px !important;
  width: 20px !important;
  left: 10px !important;
}
@media only screen and (min-width: 768px) {
  .is-open ._item--1 {
    top: 25px !important;
    width: 32px !important;
    left: 19px !important;
  }
}
.is-open ._item--2 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 15px !important;
  width: 20px !important;
  left: 10px !important;
}
@media only screen and (min-width: 768px) {
  .is-open ._item--2 {
    top: 25px !important;
    width: 32px !important;
    left: 19px !important;
  }
}

/* ============================================
  English
============================================  */
@media only screen and (max-width: 1400px) {
  .translated-ltr .l-header ._navarea ._nav ._item {
    max-width: 8em;
    line-height: 1.4;
    text-align: center;
  }
}

/* ============================================
  l-subvisual
============================================  */
.l-subvisual {
  height: 300px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-subvisual {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-height: 200px;
  }
}
.l-subvisual ._inner {
  max-width: 1500px;
  width: 75%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .l-subvisual ._inner {
    width: 100%;
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .l-subvisual ._inner {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-height: 200px;
  }
}
.l-subvisual ._title {
  font-family: "Noto Serif JP", serif;
  color: #fff;
  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;
}
@media screen and (max-width: 767px) {
  .l-subvisual ._title {
    gap: 8px;
  }
}
.l-subvisual ._title ._main {
  display: block;
  font-size: 4rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .l-subvisual ._title ._main {
    font-size: 2.5rem;
  }
}
.l-subvisual ._title ._sub {
  display: block;
  font-size: 2rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  min-height: 3rem;
}
@media screen and (max-width: 767px) {
  .l-subvisual ._title ._sub {
    font-size: 1.4rem;
    min-height: 2.1rem;
  }
}
.l-subvisual ._rectangle01,
.l-subvisual ._rectangle02,
.l-subvisual ._rectangle03 {
  position: absolute;
  z-index: 5;
}
.l-subvisual ._rectangle01 {
  top: -50px;
  left: calc(50% - 805px);
}
.l-subvisual ._rectangle02 {
  bottom: -190px;
  left: calc(50% - 445px);
}
.l-subvisual ._rectangle03 {
  top: -30px;
  right: calc(50% - 755px);
}
.l-subvisual ._gradation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: -webkit-gradient(linear, left top, right top, from(#0075C1), to(#202980));
  background: linear-gradient(90deg, #0075C1 0%, #202980 100%);
  opacity: 50%;
}
.l-subvisual ._thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.l-subvisual ._thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ============================================
  panNav
============================================  */
.l-panNav {
  padding: 15px 0;
}
.l-panNav ._list {
  max-width: 1500px;
  width: 75%;
  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;
}
@media screen and (max-width: 767px) {
  .l-panNav ._list {
    width: 100%;
    padding: 0 15px;
  }
}
.l-panNav ._list ._item {
  font-size: 1.4rem;
  line-height: 1.4;
}
.l-panNav ._list ._item::after {
  color: var(--color-primary);
  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;
}

/* ============================================
  アンカーリスト
============================================  */
.l-anchorlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px 40px;
  margin-top: 40px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .l-anchorlist {
    gap: 10px 20px;
    margin-top: 20px;
    margin-bottom: 50px;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
.l-anchorlist li {
  width: calc(25% - 30px);
}
@media only screen and (max-width: 1000px) {
  .l-anchorlist li {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 767px) {
  .l-anchorlist li {
    width: calc(50% - 10px);
  }
}
.l-anchorlist li a {
  font-family: "Noto Serif JP", serif;
  color: var(--color-primary);
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
  line-height: 1.6;
  text-decoration: none;
  padding: 5px 30px;
  width: 100%;
  height: 100%;
  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;
  position: relative;
  border-bottom: solid 1px var(--color-primary);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-anchorlist li a {
    font-size: 1.3rem;
  }
}
.l-anchorlist li a::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: solid 1px var(--color-primary);
  border-bottom: solid 1px var(--color-primary);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: 15px;
  top: calc(50% - 3px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-anchorlist li a:hover::after {
  top: calc(50% - 0px);
}

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

/* ============================================
  inner
============================================  */
.l-inner {
  max-width: 1500px;
  width: 75%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    padding: 0 15px;
  }
}

/* ============================================
  h
============================================  */
/* ============================================
  footer
============================================  */
.l-footer {
  background: -webkit-gradient(linear, left top, right top, from(var(--color-primary)), color-stop(50%, var(--color-primary)), color-stop(50%, #fff), to(#fff));
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary) 50%, #fff 50%, #fff 100%);
}
@media screen and (max-width: 767px) {
  .l-footer {
    background: #fff;
  }
}
.l-footer .l-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 1200px) {
  .l-footer .l-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding: 0;
  }
}
.l-footer ._company {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #fff;
  width: 540px;
  max-width: 540px;
  background-color: var(--color-primary);
  padding: 40px 0;
  padding-right: 85px;
}
@media only screen and (max-width: 1500px) {
  .l-footer ._company {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 450px;
  }
}
@media only screen and (max-width: 1200px) {
  .l-footer ._company {
    width: 100%;
    max-width: 100%;
    padding: 40px 6%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .l-footer ._company {
    padding: 30px 15px 35px;
    display: block;
  }
}
.l-footer ._company ._logo {
  margin-bottom: 25px;
  max-width: 374px;
}
@media screen and (max-width: 767px) {
  .l-footer ._company ._logo {
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
  }
}
.l-footer ._company ._text {
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .l-footer ._company ._text {
    font-size: 1.2rem;
  }
}
.l-footer ._company ._text.--small {
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .l-footer ._company ._text.--small {
    font-size: 1.2rem;
    text-align: center;
    margin-top: 10px;
  }
}
.l-footer ._company ._contact {
  margin-top: 35px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
  text-decoration: none;
  border: solid 1px #fff;
  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;
  width: 100%;
  max-width: 335px;
  padding: 20px;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .l-footer ._company ._contact {
    margin-top: 20px;
    font-size: 1.4rem;
    gap: 5px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: none;
  }
}
.l-footer ._company ._contact::before {
  content: "";
  width: 19px;
  height: 13px;
  -webkit-mask-image: url(../img/icon_contact.svg);
          mask-image: url(../img/icon_contact.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.l-footer ._company ._contact::after {
  position: absolute;
  right: 20px;
  top: calc(50% - 2px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  -webkit-mask-image: url("../img/icon-arrow.svg");
          mask-image: url("../img/icon-arrow.svg");
  width: 18px;
  height: 4px;
  background-color: #fff;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-footer ._company ._contact::after {
    right: 35px;
  }
}
.l-footer ._company ._contact:hover {
  color: var(--color-primary);
  background-color: #fff;
  letter-spacing: 0.2em;
}
.l-footer ._company ._contact:hover::before {
  background-color: var(--color-primary);
}
.l-footer ._company ._contact:hover::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  background-color: var(--color-primary);
}
.l-footer ._company ._cv {
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  .l-footer ._company ._cv {
    margin-top: 10px;
  }
}
.l-footer ._company ._cv ._number {
  font-family: "Crimson Text", serif;
  font-size: 3.4rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding: 10px 0 5px;
}
@media screen and (max-width: 767px) {
  .l-footer ._company ._cv ._number {
    font-size: 2.7rem;
    padding: 5px 0 0;
  }
}
.l-footer ._company ._cv ._number::before {
  content: "";
  width: 20px;
  height: 20px;
  -webkit-mask-image: url(../img/icon_tel.svg);
          mask-image: url(../img/icon_tel.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
}
.l-footer ._company ._cv .telbutton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: solid 1px #fff;
  padding: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  width: 100%;
}
.l-footer ._company ._cv .telbutton::after {
  position: absolute;
  right: 20px;
  top: calc(50% - 2px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  -webkit-mask-image: url("../img/icon-arrow.svg");
          mask-image: url("../img/icon-arrow.svg");
  width: 18px;
  height: 4px;
  background-color: #fff;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-footer ._company ._cv .telbutton::after {
    right: 35px;
  }
}
.l-footer ._navArea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #fff;
  border-top: solid 1px #BCCCD7;
  padding: 40px 0 30px;
  padding-left: 90px;
  position: relative;
}
@media only screen and (max-width: 1200px) {
  .l-footer ._navArea {
    padding: 40px 6% 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer ._navArea {
    padding: 30px 15px 110px;
    border-top: 0;
  }
}
.l-footer ._navArea::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #BCCCD7;
  top: -1px;
  left: 100%;
}
@media only screen and (max-width: 1200px) {
  .l-footer ._navArea::after {
    display: none;
  }
}
.l-footer ._navArea ._navlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 55px;
}
@media screen and (max-width: 767px) {
  .l-footer ._navArea ._navlist {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 25px;
  }
}
.l-footer ._navArea ._navlist ._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: 20px;
}
@media screen and (min-width: 768px) {
  .l-footer ._navArea ._navlist ._nav {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (max-width: 767px) {
  .l-footer ._navArea ._navlist ._nav {
    width: calc(50% - 13px);
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer ._navArea ._navlist ._nav.--1 {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 25px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer ._navArea ._navlist ._nav.--1 ._block {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.l-footer ._navArea ._navlist ._nav a {
  text-decoration: none;
}
.l-footer ._navArea ._navlist ._nav ._block ._parent {
  display: block;
  width: 100%;
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.8;
  letter-spacing: 0.1em;
  padding-right: 20px;
  padding-bottom: 5px;
  border-bottom: 1px dashed #73869A;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-footer ._navArea ._navlist ._nav ._block ._parent {
    font-size: 1.3rem;
  }
}
.l-footer ._navArea ._navlist ._nav ._block ._parent::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  right: 5px;
  top: calc(50% - 3px);
  border-top: 2px solid #0075C1;
  border-right: 2px solid #0075C1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.l-footer ._navArea ._navlist ._nav ._block ._parent:hover {
  color: var(--color-primary);
  border-bottom: 1px dashed var(--color-primary);
}
.l-footer ._navArea ._navlist ._nav ._block ._parent:hover::after {
  translate: 3px;
}
.l-footer ._navArea ._navlist ._nav ._block ._child {
  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;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .l-footer ._navArea ._navlist ._nav ._block ._child {
    margin-bottom: 0;
  }
}
.l-footer ._navArea ._navlist ._nav ._block ._child ._item {
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  padding-left: 1em;
  position: relative;
}
@media screen {
  .l-footer ._navArea ._navlist ._nav ._block ._child ._item {
    font-size: 1.2rem;
  }
}
.l-footer ._navArea ._navlist ._nav ._block ._child ._item::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--color-primary);
  position: absolute;
  left: 0;
  top: calc(1em - 3px);
}
.l-footer ._navArea ._navlist ._nav ._block ._child ._item a:hover {
  text-decoration: underline;
}
.l-footer ._navArea ._navlist ._nav ._sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 35px;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .l-footer ._navArea ._navlist ._nav ._sns {
    margin-top: 15px;
  }
}
.l-footer ._navArea ._navlist ._nav ._sns ._title {
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.8;
  letter-spacing: 0.1em;
  padding-right: 15px;
  border-right: solid 1px #AFB8C1;
}
@media screen and (max-width: 767px) {
  .l-footer ._navArea ._navlist ._nav ._sns ._title {
    font-size: 1.3rem;
  }
}
.l-footer ._navArea ._navlist ._nav ._sns ._list {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.l-footer ._navArea ._copyright {
  color: #909FAE;
  font-size: 1.2rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: right;
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .l-footer ._navArea ._copyright {
    text-align: center;
    margin-top: 35px;
  }
}

.l-fixedbtn {
  position: fixed;
  right: 0;
  bottom: calc(50vh - 92px);
  z-index: 50;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
@media screen and (max-width: 767px) {
  .l-fixedbtn {
    bottom: 0;
    width: 100%;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    right: 0;
  }
}
.l-fixedbtn ._contact {
  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: 10px;
  width: 50px;
  height: 185px;
  background-color: var(--color-primary);
  border-top: solid 1px #fff;
  border-left: solid 1px #fff;
  border-bottom: solid 1px #fff;
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .l-fixedbtn ._contact {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: upright;
  }
}
@media screen and (max-width: 767px) {
  .l-fixedbtn ._contact {
    width: 100%;
    height: 50px;
    border-left: 0;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .l-fixedbtn ._contact:hover {
    padding-right: 5px;
    width: 55px;
  }
}
@media screen and (max-width: 767px) {
  .l-fixedbtn ._contact::after {
    position: absolute;
    right: 20px;
    top: calc(50% - 2px);
    -ms-flex-negative: 0;
        flex-shrink: 0;
    content: "";
    -webkit-mask-image: url("../img/icon-arrow.svg");
            mask-image: url("../img/icon-arrow.svg");
    width: 18px;
    height: 4px;
    background-color: #fff;
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}

.front .l-fixedbtn {
  right: -50px;
}
@media screen and (max-width: 767px) {
  .front .l-fixedbtn {
    opacity: 0;
    visibility: hidden;
  }
}
@media screen and (max-width: 767px) {
  .front .l-fixedbtn.is-active {
    opacity: 1 !important;
    visibility: visible !important;
  }
}

.is-loaded.active .l-fixedbtn {
  right: 0;
  -webkit-transition-delay: 2.6s;
          transition-delay: 2.6s;
}

/* ============================================
  pagetop
============================================  */
.l-pagetop {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 10;
  width: 50px;
  height: 50px;
  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: 5px;
  background-color: rgb(32, 41, 128);
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  /* 非表示にする */
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .l-pagetop {
    width: 40px;
    height: 40px;
    bottom: 60px;
    right: 10px;
  }
}
.l-pagetop svg {
  fill: #fff;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.l-pagetop span {
  font-size: 1rem;
  color: #fff;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .l-pagetop span {
    font-size: 0.8rem;
  }
}
.l-pagetop:hover {
  background-color: rgba(32, 41, 128, 0.8);
}

.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 {
  color: #124B9C;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: solid 1px #124B9C;
  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;
  width: 100%;
  max-width: 335px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-button {
    font-size: 1.3rem;
    padding: 12px;
  }
}
.c-button::after {
  position: absolute;
  right: 20px;
  top: calc(50% - 2px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  -webkit-mask-image: url("../img/icon-arrow.svg");
          mask-image: url("../img/icon-arrow.svg");
  width: 18px;
  height: 4px;
  background-color: #124B9C;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-button::after {
    right: 27px;
  }
}
.c-button:hover {
  color: #fff;
  background-color: #124B9C;
  letter-spacing: 0.2em;
}
.c-button:hover::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  background-color: #fff;
}

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

/* ============================================
  共通
============================================  */
.l-wrapper {
  overflow: hidden;
}

main {
  position: relative;
}

/* ============================================
  メインビジュアル
============================================  */
.f-mainvisual {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.f-mainvisual::before {
  position: absolute;
  left: 400px;
  bottom: 0;
  z-index: 2;
  content: "";
  width: 1075px;
  height: 610px;
  background-color: rgba(48, 114, 189, 0.45);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translate(100%, 100%);
          transform: translate(100%, 100%);
  opacity: 0;
}
@media only screen and (min-width: 1490px) {
  .f-mainvisual::before {
    left: auto;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .f-mainvisual::before {
    left: -20px;
  }
}
.f-mainvisual ._contents {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 60px;
  opacity: 0;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
@media only screen and (max-width: 767px) {
  .f-mainvisual ._contents {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    padding: 0;
  }
}
.f-mainvisual ._contents ._inner {
  position: relative;
}
.f-mainvisual ._contents ._inner::before {
  content: "";
  display: block;
  width: 803px;
  height: 460px;
  background-image: url(../../page/front/img/mv_rectangle.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -100px;
  left: -220px;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._contents ._inner::before {
    width: 693px;
    height: 320px;
    top: -90px;
    left: -220px;
  }
}
.f-mainvisual ._contents ._catchcopy {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._contents ._catchcopy {
    padding: 30px 15px;
    background: linear-gradient(103.2deg, #0075C1 20.16%, #20297F 93.05%);
    width: 100%;
  }
}
.f-mainvisual ._contents ._catchcopy ._main {
  font-family: "Shippori Mincho", serif;
  font-size: 4rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._contents ._catchcopy ._main {
    font-size: 2.4rem;
  }
}
.f-mainvisual ._contents ._catchcopy ._sub {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 2.4;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._contents ._catchcopy ._sub {
    font-size: 1.2rem;
    margin-top: 10px;
    line-height: 2;
  }
}
.f-mainvisual .swiper {
  height: 100%;
}
.f-mainvisual .swiper .swiper-wrapper {
  height: 100%;
}
.f-mainvisual .swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  background-color: #000;
}
.f-mainvisual .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.8;
  scale: 1.1;
  -webkit-transition: 1.6s;
  transition: 1.6s;
}
.f-mainvisual ._rectangle {
  position: absolute;
  bottom: 40px;
  right: 30px;
  z-index: 3;
  width: 626px;
  height: 562px;
  background-image: url(../../page/front/img/mv_rectangle02.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
@media only screen and (max-width: 1490px) {
  .f-mainvisual ._rectangle {
    right: auto;
    left: 846px;
  }
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._rectangle {
    display: none;
  }
}
.f-mainvisual ._parts01 {
  position: absolute;
  bottom: 655px;
  right: 200px;
  z-index: 4;
  width: 94px;
  height: 68px;
  background-image: url(../../page/front/img/mv_parts01.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
@media only screen and (max-width: 1490px) {
  .f-mainvisual ._parts01 {
    right: auto;
    left: 1196px;
  }
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._parts01 {
    left: auto;
    right: 0px;
    scale: 50%;
    z-index: 25;
    bottom: 500px;
  }
}
.f-mainvisual ._parts02 {
  position: absolute;
  bottom: 505px;
  right: -90px;
  z-index: 4;
  width: 210px;
  height: 201px;
  background-image: url(../../page/front/img/mv_parts02.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
@media only screen and (max-width: 1490px) {
  .f-mainvisual ._parts02 {
    right: auto;
    left: 1370px;
  }
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._parts02 {
    left: auto;
    right: -120px;
    scale: 50%;
    z-index: 25;
    bottom: 360px;
  }
}
.f-mainvisual ._parts03 {
  position: absolute;
  bottom: 420px;
  right: 190px;
  z-index: 4;
  width: 134px;
  height: 126px;
  background-image: url(../../page/front/img/mv_parts03.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
@media only screen and (max-width: 1490px) {
  .f-mainvisual ._parts03 {
    right: auto;
    left: 1166px;
  }
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._parts03 {
    left: auto;
    right: 0;
    scale: 50%;
    z-index: 25;
    bottom: 330px;
  }
}
.f-mainvisual ._parts04 {
  position: absolute;
  bottom: 260px;
  right: -60px;
  z-index: 4;
  width: 174px;
  height: 110px;
  background-image: url(../../page/front/img/mv_parts04.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
@media only screen and (max-width: 1490px) {
  .f-mainvisual ._parts04 {
    right: auto;
    left: 1376px;
  }
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._parts04 {
    left: auto;
    right: -80px;
    scale: 50%;
    bottom: 220px;
    z-index: 25;
  }
}
.f-mainvisual ._parts05 {
  position: absolute;
  bottom: 130px;
  right: 200px;
  z-index: 4;
  width: 193px;
  height: 208px;
  background-image: url(../../page/front/img/mv_parts05.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
@media only screen and (max-width: 1490px) {
  .f-mainvisual ._parts05 {
    right: auto;
    left: 1097px;
  }
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._parts05 {
    left: auto;
    right: 0;
    scale: 50%;
    z-index: 25;
  }
}
.f-mainvisual ._parts06 {
  position: absolute;
  bottom: -10px;
  right: -90px;
  z-index: 4;
  width: 234px;
  height: 208px;
  background-image: url(../../page/front/img/mv_parts06.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
@media only screen and (max-width: 1490px) {
  .f-mainvisual ._parts06 {
    right: auto;
    left: 1346px;
  }
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._parts06 {
    left: auto;
    right: -90px;
    scale: 50%;
    z-index: 25;
  }
}

.swiper-pagination {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  bottom: 35px !important;
  left: 55px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 1250px) {
  .swiper-pagination {
    bottom: 105px !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-pagination {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    left: 7px !important;
    bottom: 225px !important;
  }
}
.swiper-pagination span {
  width: 11px;
  height: 11px;
  background-color: #E3E8F1 !important;
  border-radius: 0px;
  margin: 0 !important;
  opacity: 1 !important;
}
@media screen and (max-width: 767px) {
  .swiper-pagination span {
    width: 8px;
    height: 8px;
  }
}
.swiper-pagination span.swiper-pagination-bullet-active {
  background-color: var(--color-primary) !important;
}

.is-loaded.active .f-mainvisual {
  opacity: 1;
}
.is-loaded.active .f-mainvisual::before {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
  opacity: 1;
}
.is-loaded.active .f-mainvisual ._contents {
  opacity: 1;
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.is-loaded.active .f-mainvisual .swiper img {
  scale: 1;
}
.is-loaded.active .f-mainvisual ._rectangle,
.is-loaded.active .f-mainvisual ._parts01,
.is-loaded.active .f-mainvisual ._parts02,
.is-loaded.active .f-mainvisual ._parts03,
.is-loaded.active .f-mainvisual ._parts04,
.is-loaded.active .f-mainvisual ._parts05,
.is-loaded.active .f-mainvisual ._parts06 {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 2.6s;
          transition-delay: 2.6s;
}

/* ============================================
  お知らせ
============================================  */
.f-info {
  position: absolute;
  top: -69px;
  right: 0;
  z-index: 20;
  width: calc(100% - 320px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 1250px) {
  .f-info {
    width: 88%;
  }
}
@media screen and (max-width: 767px) {
  .f-info {
    position: static;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
.f-info ._titlearea {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #fff;
  background-color: var(--color-primary);
  padding: 25px;
  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;
}
@media screen and (max-width: 767px) {
  .f-info ._titlearea {
    width: 100%;
    background-color: #fff;
    color: var(--color-primary);
    padding: 30px 0 25px;
  }
}
.f-info ._titlearea ._title {
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
  font-weight: var(--font-weight-regular);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .f-info ._titlearea ._title {
    font-size: 2.2rem;
    text-align: center;
  }
}
.f-info ._titlearea ._link {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-bottom: solid 1px #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  margin-top: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding-right: 5px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.f-info ._titlearea ._link::after {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  -webkit-mask-image: url("../img/icon-arrow.svg");
          mask-image: url("../img/icon-arrow.svg");
  width: 12px;
  height: 2px;
  background-color: #fff;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.f-info ._titlearea ._link:hover::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.f-info ._contents {
  background-color: #fff;
  width: 100%;
  padding: 25px 60px 25px 25px;
}
@media screen and (max-width: 767px) {
  .f-info ._contents {
    padding: 0 6% 30px;
  }
}
.f-info ._contents ._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px 20px;
}
@media only screen and (max-width: 1000px) {
  .f-info ._contents ._list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.f-info ._contents ._list dt {
  width: 220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}
.f-info ._contents ._list dt::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--color-primary);
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.f-info ._contents ._list dt ._date {
  color: #676767;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .f-info ._contents ._list dt ._date {
    font-size: 1.3rem;
  }
}
.f-info ._contents ._list dt ._category {
  color: #676767;
  border: solid 1px #676767;
  width: 117px;
  height: 25px;
  font-size: 1.3rem;
  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-info ._contents ._list dt ._category {
    font-size: 1.1rem;
    width: 100px;
    height: 18px;
  }
}
.f-info ._contents ._list dd {
  width: calc(100% - 240px);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
@media only screen and (max-width: 1000px) {
  .f-info ._contents ._list dd {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .f-info ._contents ._list dd {
    font-size: 1.3rem;
    padding-bottom: 10px;
    margin-bottom: 5px;
    border-bottom: 1px solid #E0E3EF;
  }
}
.f-info ._contents ._list dd a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.f-info ._contents ._list dd a:hover {
  text-decoration: underline;
}
.f-info ._contents ._list dd a::after {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #0075C1;
  border-right: solid 2px #0075C1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.f-info ._contents > ._link {
  color: var(--color-primary);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  width: 110px;
  border-bottom: solid 1px var(--color-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  margin-top: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
  padding-right: 5px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.f-info ._contents > ._link::after {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  -webkit-mask-image: url("../img/icon-arrow.svg");
          mask-image: url("../img/icon-arrow.svg");
  width: 12px;
  height: 2px;
  background-color: var(--color-primary);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.f-info ._contents > ._link:hover::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

/* ============================================
  製品情報
============================================  */
.f-product {
  background-color: #E3E8F1;
  padding: 130px 0 100px;
  background-image: url(../../page/front/img/product_bg.jpg);
  background-position: right -50px top 20px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .f-product {
    padding: 45px 0 45px;
    background-position: right -120px top -10px;
    background-size: 320px 230px;
  }
}
.f-product .l-inner > ._title {
  color: #000;
  font-family: "Shippori Mincho", serif;
  font-size: 3.4rem;
  font-weight: var(--font-weight-regular);
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .f-product .l-inner > ._title {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }
}
.f-product .l-inner > ._text {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .f-product .l-inner > ._text {
    font-size: 1.3rem;
    text-align: left;
  }
}
.f-product .l-inner ._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .f-product .l-inner ._list {
    gap: 20px;
    margin-bottom: 25px;
  }
}
.f-product .l-inner ._list ._item {
  width: calc((100% - 40px) / 2);
  text-decoration: none;
  background-color: #fff;
  padding: 10px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .f-product .l-inner ._list ._item {
    width: 100%;
  }
}
.f-product .l-inner ._list ._item ._thumbnailArea {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}
@media screen and (max-width: 767px) {
  .f-product .l-inner ._list ._item ._thumbnailArea {
    height: 200px;
  }
}
.f-product .l-inner ._list ._item ._thumbnailArea ._title {
  position: absolute;
  left: -20px;
  bottom: 17px;
  z-index: 1;
  color: var(--color-primary);
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
  padding: 12px 25px 12px 10px;
  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;
  background-color: #fff;
  border-bottom: solid 2px var(--color-primary);
}
@media screen and (max-width: 767px) {
  .f-product .l-inner ._list ._item ._thumbnailArea ._title {
    font-size: 1.8rem;
    bottom: 12px;
    padding: 8px 12px 8px 5px;
  }
}
.f-product .l-inner ._list ._item ._thumbnailArea ._title::before {
  content: "・";
}
.f-product .l-inner ._list ._item ._thumbnailArea ._thumbnail {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
}
.f-product .l-inner ._list ._item ._thumbnailArea ._thumbnail img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.f-product .l-inner ._list ._item ._contents {
  padding: 30px 15px 30px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .f-product .l-inner ._list ._item ._contents {
    padding: 15px 15px 30px;
  }
}
.f-product .l-inner ._list ._item ._contents ._title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: var(--color-primary);
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .f-product .l-inner ._list ._item ._contents ._title {
    font-size: 1.8rem;
  }
}
.f-product .l-inner ._list ._item ._contents ._title::before {
  content: "・";
}
.f-product .l-inner ._list ._item ._contents ._text {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
.f-product .l-inner ._list ._item ._contents ._arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 25px;
  height: 5px;
  -webkit-mask-image: url("../img/icon-arrow.svg");
          mask-image: url("../img/icon-arrow.svg");
  background-color: var(--color-primary);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .f-product .l-inner ._list ._item ._contents ._arrow {
    right: 15px;
    bottom: 15px;
  }
}
.f-product .l-inner ._list ._item:hover {
  color: #fff;
  background-color: var(--color-primary);
}
.f-product .l-inner ._list ._item:hover ._thumbnailArea img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.f-product .l-inner ._list ._item:hover ._arrow {
  background-color: #fff;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.f-product .l-inner ._list ._item.--other {
  border-bottom: solid 2px var(--color-primary);
}
.f-product .l-inner ._list ._item.--other ._contents {
  height: 100%;
  position: relative;
}
.f-product .l-inner ._list ._item.--other ._contents ._title {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.f-product .l-inner ._list ._item.--other ._contents ._arrow {
  width: 25px;
  height: 5px;
  -webkit-mask-image: url("../img/icon-arrow.svg");
          mask-image: url("../img/icon-arrow.svg");
  background-color: var(--color-primary);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  position: absolute;
  right: 20px;
  bottom: 25px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .f-product .l-inner ._list ._item.--other ._contents ._arrow {
    right: 15px;
    bottom: 15px;
  }
}
.f-product .l-inner ._list ._item.--other:hover ._title {
  color: #fff;
}
.f-product .l-inner ._list ._item.--other:hover ._arrow {
  background-color: #fff;
  right: 15px;
}
.f-product .l-inner .c-button {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .f-product .l-inner .c-button {
    margin-top: 30px;
  }
}

/* ============================================
  当社について
============================================  */
.f-about {
  background-image: url(../../page/front/img/about_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 105px 0 120px;
}
@media screen and (max-width: 767px) {
  .f-about {
    background-image: url(../../page/front/img/about_bg-sp.jpg);
    padding: 65px 0;
  }
}
.f-about .l-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.f-about ._contents {
  width: 100%;
  max-width: 830px;
  background-color: #fff;
  padding: 50px 60px 55px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .f-about ._contents {
    max-width: 100%;
    padding: 35px 20px;
  }
}
.f-about ._contents::before {
  content: "";
  display: block;
  width: 643px;
  height: 652px;
  background-image: url(../../page/front/img/about-rectangle1.png);
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  top: -14px;
  left: -400px;
}
@media screen and (max-width: 767px) {
  .f-about ._contents::before {
    display: none;
  }
}
.f-about ._contents::after {
  content: "";
  display: block;
  width: 292px;
  height: 210px;
  background-image: url(../../page/front/img/about-rectangle2.png);
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  top: -150px;
  left: calc(100% + 20px);
}
@media screen and (max-width: 767px) {
  .f-about ._contents::after {
    display: none;
  }
}
.f-about ._contents ._title {
  color: #124B9C;
  font-family: "Shippori Mincho", serif;
  font-size: 3.4rem;
  font-weight: var(--font-weight-regular);
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 45px;
}
@media only screen and (max-width: 767px) {
  .f-about ._contents ._title {
    font-size: 2rem;
    margin-bottom: 25px;
  }
}
.f-about ._contents ._text {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .f-about ._contents ._text {
    font-size: 1.3rem;
    text-align: left;
  }
}
.f-about ._contents ._link {
  color: #124B9C;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-bottom: solid 1px #124B9C;
  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;
  padding-bottom: 10px;
  margin-top: 20px;
  width: 228px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 5px;
  position: relative;
  padding-top: 10px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  margin-top: 45px;
}
@media screen and (max-width: 767px) {
  .f-about ._contents ._link {
    font-size: 1.3rem;
    margin-top: 20px;
    width: 200px;
  }
}
.f-about ._contents ._link::after {
  position: absolute;
  right: 0;
  top: calc(50% - 2px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  -webkit-mask-image: url("../img/icon-arrow.svg");
          mask-image: url("../img/icon-arrow.svg");
  width: 18px;
  height: 4px;
  background-color: #124B9C;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.f-about ._contents ._link:hover {
  letter-spacing: 0.2em;
}
.f-about ._contents ._link:hover::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

/* ============================================
  ページリスト
============================================  */
.f-pagelist {
  padding: 60px 0 70px;
}
@media screen and (max-width: 767px) {
  .f-pagelist {
    padding: 30px 0;
  }
}
.f-pagelist ._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
}
@media only screen and (max-width: 1000px) {
  .f-pagelist ._list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .f-pagelist ._list {
    gap: 25px;
  }
}
.f-pagelist ._list ._item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #EEF1F7;
}
.f-pagelist ._list ._item ._thumbnail {
  width: 100%;
  height: 340px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .f-pagelist ._list ._item ._thumbnail {
    height: 175px;
  }
}
.f-pagelist ._list ._item ._thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.f-pagelist ._list ._item ._contents {
  padding: 60px 45px 45px 30px;
  position: relative;
  height: calc(100% - 340px);
}
@media only screen and (max-width: 767px) {
  .f-pagelist ._list ._item ._contents {
    padding: 35px 15px 20px;
    height: auto;
  }
}
.f-pagelist ._list ._item ._contents ._title {
  position: absolute;
  top: -32px;
  left: 30px;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: var(--font-weight-bold);
  padding: 13px 25px;
  background: linear-gradient(103.2deg, #0075C1 20.16%, #0766B4 93.05%);
}
@media screen and (max-width: 767px) {
  .f-pagelist ._list ._item ._contents ._title {
    font-size: 1.8rem;
    padding: 5px 13px;
    left: 14px;
    top: -20px;
  }
}
.f-pagelist ._list ._item ._contents ._inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .f-pagelist ._list ._item ._contents ._inner {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
.f-pagelist ._list ._item ._contents ._inner ._text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .f-pagelist ._list ._item ._contents ._inner ._text {
    font-size: 1.3rem;
  }
}
.f-pagelist ._list ._item ._contents ._inner ._link {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #124B9C;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-left: solid 1px #124B9C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding-left: 20px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  height: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  width: 170px;
}
@media screen and (max-width: 767px) {
  .f-pagelist ._list ._item ._contents ._inner ._link {
    font-size: 1.3rem;
    border-left: 0;
    padding-left: 0;
    margin-right: 0;
    width: 105px;
  }
}
.f-pagelist ._list ._item ._contents ._inner ._link::after {
  position: absolute;
  right: 0;
  top: calc(50% - 2px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  -webkit-mask-image: url("../img/icon-arrow.svg");
          mask-image: url("../img/icon-arrow.svg");
  width: 18px;
  height: 4px;
  background-color: #124B9C;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.f-pagelist ._list ._item ._contents ._inner ._link:hover {
  letter-spacing: 0.2em;
}
.f-pagelist ._list ._item ._contents ._inner ._link:hover::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

/* ============================================
  English
============================================  */
@media screen and (max-width: 767px) {
  .translated-ltr .swiper-pagination {
    bottom: 315px !important;
  }
}

/* ============================================
  製品情報
============================================  */
.p-productcategory {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .p-productcategory {
    margin-bottom: 50px;
  }
}
.p-productcategory > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-productcategory > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.p-productcategory ._thumb {
  width: calc(50% - 40px);
}
@media screen and (max-width: 767px) {
  .p-productcategory ._thumb {
    width: 100%;
  }
}
.p-productcategory ._partslist {
  gap: 20px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-productcategory ._partslist {
    gap: 10px;
    margin-top: 15px;
  }
}
.p-productcategory ._partslist > div {
  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;
  background-image: url(../../assets/img/icon_circle.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 140px;
}
@media screen and (max-width: 767px) {
  .p-productcategory ._partslist > div {
    height: 100px;
  }
}
.p-productcategory ._partslist figure {
  margin-bottom: 0;
}
.p-productcategory ._partslist figure img {
  margin: 0 auto;
  padding: 10px;
}
.p-productcategory ._contents {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-productcategory ._contents {
    width: 100%;
  }
}
.p-productcategory ._contents h3 {
  font-family: "Noto Serif JP", serif;
  color: var(--color-primary);
  font-size: 3rem;
  font-weight: var(--font-weight-medium);
  padding: 15px 30px 15px 15px;
  border-bottom: dotted 2px var(--color-primary);
  background-color: #eff4fc;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-productcategory ._contents h3 {
    font-size: 1.8rem;
    padding: 8px 12px 8px 5px;
  }
}
.p-productcategory ._contents h3::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  height: 2px;
  width: 100px;
  background-color: var(--color-primary);
}
.p-productcategory:nth-child(odd) > div {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-productcategory:nth-child(odd) > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-topicslist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-topicslist {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-topicslist ._item {
  width: calc(33.3333% - 15px);
  background-color: #EEF1F7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-topicslist ._item {
    width: 100%;
  }
}
.p-topicslist ._item ._contents {
  width: 100%;
  padding: 0 20px 55px;
}
@media screen and (max-width: 767px) {
  .p-topicslist ._item ._contents {
    padding: 0 15px 42px;
  }
}
.p-topicslist ._item ._contents h3 {
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
  margin-bottom: 10px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-topicslist ._item ._contents h3 {
    font-size: 1.6rem;
  }
}
.p-topicslist ._item ._contents ._tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  gap: 10px;
}
.p-topicslist ._item ._contents ._tag li {
  font-size: 1.6rem;
  line-height: 1.4;
  border-radius: 5px;
  background-color: #fff;
  padding: 5px 10px;
}
@media screen and (max-width: 767px) {
  .p-topicslist ._item ._contents ._tag li {
    font-size: 1.3rem;
  }
}
.p-topicslist ._item ._contents ._link {
  position: absolute;
  right: 30px;
  bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 106px;
  font-size: 1.6rem;
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-topicslist ._item ._contents ._link {
    font-size: 1.3rem;
    right: 15px;
    bottom: 15px;
  }
}
.p-topicslist ._item ._contents ._link::after {
  content: "";
  width: 18px;
  height: 5px;
  -webkit-mask-image: url("../img/icon-arrow.svg");
          mask-image: url("../img/icon-arrow.svg");
  background-color: var(--color-primary);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-topicslist ._item ._contents ._link::after {
    right: 15px;
    bottom: 15px;
  }
}
.p-topicslist ._item ._contents ._link:hover {
  letter-spacing: 0.1em;
}
.p-topicslist ._item ._contents ._link:hover::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.p-topicslist ._item ._slider {
  width: 100%;
}
.p-topicslist ._item ._slider .vk_slider_item-background-area {
  background-color: unset !important;
}
.p-topicslist ._item ._slider figcaption {
  display: none;
}
.p-topicslist ._item ._slider .swiper-pagination {
  bottom: 15px !important;
  left: 10px !important;
  gap: 10px !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-topicslist ._item ._slider .swiper-pagination .swiper-pagination-bullet {
  border-radius: 50% !important;
  width: 6px !important;
  height: 6px !important;
  background-color: #86898A !important;
}
.p-topicslist ._item ._slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-primary) !important;
  width: 8px !important;
  height: 8px !important;
}
.p-topicslist ._item ._slider .swiper-button-next,
.p-topicslist ._item ._slider .swiper-button-prev {
  background-color: rgba(0, 117, 193, 0.8) !important;
  border-radius: 5px !important;
}
.p-topicslist ._item ._slider .swiper-button-next:after,
.p-topicslist ._item ._slider .swiper-button-prev:after {
  color: #fff;
}
.p-topicslist ._item ._slider .cap1line .swiper-pagination {
  bottom: 50px !important;
  left: 10px !important;
}
.p-topicslist ._item ._slider .cap2line .swiper-pagination {
  bottom: 75px !important;
  left: 10px !important;
}

/* ============================================
  製品情報詳細
============================================  */
.p-productlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.p-productlist ._item {
  padding: 40px;
  background-color: #EEF1F7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-productlist ._item {
    padding: 20px;
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.p-productlist ._item ._contents {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-productlist ._item ._contents {
    width: 100%;
  }
}
.p-productlist ._item ._contents h3 {
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
  padding-bottom: 5px;
  border-bottom: solid 1px var(--color-primary);
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .p-productlist ._item ._contents h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
}
.p-productlist ._item ._contents h4 {
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.875;
  margin-bottom: 5px;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .p-productlist ._item ._contents h4 {
    font-size: 1.3rem;
    margin-top: 12px;
  }
}
.p-productlist ._item ._contents ._tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  gap: 10px;
}
.p-productlist ._item ._contents ._tag li {
  font-size: 1.6rem;
  line-height: 1.4;
  border-radius: 5px;
  background-color: #fff;
  padding: 5px 10px;
}
@media screen and (max-width: 767px) {
  .p-productlist ._item ._contents ._tag li {
    font-size: 1.3rem;
  }
}
.p-productlist ._item ._slider {
  width: calc(50% - 30px);
}
@media screen and (max-width: 767px) {
  .p-productlist ._item ._slider {
    width: 100%;
  }
}
.p-productlist ._item ._slider .vk_slider_item-background-area {
  background-color: unset !important;
}
.p-productlist ._item ._slider figcaption {
  font-size: 1.4rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-productlist ._item ._slider figcaption {
    font-size: 1.1rem;
  }
}
.p-productlist ._item ._slider .swiper-pagination {
  bottom: 15px !important;
  left: 10px !important;
  gap: 10px !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-productlist ._item ._slider .swiper-pagination {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.p-productlist ._item ._slider .swiper-pagination .swiper-pagination-bullet {
  border-radius: 50% !important;
  width: 6px !important;
  height: 6px !important;
  background-color: #86898A !important;
}
.p-productlist ._item ._slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-primary) !important;
  width: 8px !important;
  height: 8px !important;
}
.p-productlist ._item ._slider .swiper-button-next,
.p-productlist ._item ._slider .swiper-button-prev {
  background-color: rgba(0, 117, 193, 0.8) !important;
  border-radius: 5px !important;
  top: var(--swiper-navigation-top-offset, 50%) !important;
}
.p-productlist ._item ._slider .swiper-button-next:after,
.p-productlist ._item ._slider .swiper-button-prev:after {
  color: #fff;
}
.p-productlist ._item ._slider .cap1line .swiper-pagination {
  bottom: 50px !important;
  left: 10px !important;
}
.p-productlist ._item ._slider .cap2line .swiper-pagination {
  bottom: 75px !important;
  left: 10px !important;
}

.p-productpagelink {
  margin-top: 110px;
  width: calc(var(--vw) * 100) !important;
  -webkit-transform: translateX(-12.5%);
          transform: translateX(-12.5%);
  background: -webkit-gradient(linear, left top, right top, from(#0075C1), to(#202980));
  background: linear-gradient(90deg, #0075C1 0%, #202980 100%);
  padding: 50px 0;
}
@media screen and (max-width: 767px) {
  .p-productpagelink {
    margin-top: 55px;
    -webkit-transform: translateX(-15px);
            transform: translateX(-15px);
  }
}
.p-productpagelink .l-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 1100px) {
  .p-productpagelink .l-inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
  }
}
.p-productpagelink a {
  width: calc(25% - 5px);
  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;
  font-family: "Noto Serif JP", serif;
  color: var(--color-primary);
  font-size: 1.8rem;
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  height: 56px;
  background-color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media only screen and (max-width: 1100px) {
  .p-productpagelink a {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 767px) {
  .p-productpagelink a {
    font-size: 1.3rem;
    height: 50px;
    width: calc(50% - 5px);
  }
}
.p-productpagelink a span {
  position: relative;
}
.p-productpagelink a span::before {
  position: absolute;
  right: 100%;
  top: 0;
  content: "・";
}
.p-productpagelink a:hover {
  opacity: 0.7;
}

/* ============================================
  エントリーフォーム
============================================  */
.p-tel {
  width: 100%;
  max-width: 500px;
  background-color: var(--color-primary);
  border-radius: 10px;
  padding: 20px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-tel {
    padding: 10px 20px;
  }
}
.p-tel > div {
  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;
}
.p-tel ._number {
  color: #fff;
  font-family: "Crimson Text", serif;
  font-size: 4rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-tel ._number {
    font-size: 2.7rem;
    padding: 5px 0 0;
  }
}
.p-tel ._number::before {
  content: "";
  width: 26px;
  height: 26px;
  -webkit-mask-image: url(../img/icon_tel.svg);
          mask-image: url(../img/icon_tel.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-tel ._number::before {
    width: 20px;
    height: 20px;
  }
}
.p-tel ._note {
  color: #fff;
  margin-top: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-contact {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-contact {
    margin-top: 30px;
  }
}
.p-contact > ._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 920px;
  margin: 0 auto;
  border-bottom: 0;
}
.p-contact > ._list > ._title {
  width: 32rem;
  padding-bottom: 2rem;
  padding-top: 2.7rem;
  padding-right: 3rem;
}
@media only screen and (max-width: 1000px) {
  .p-contact > ._list > ._title {
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact > ._list > ._title {
    padding-bottom: 0.5rem;
    padding-top: 1rem;
    padding-right: 0;
  }
}
.p-contact > ._list > ._title > p {
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.8;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-contact > ._list > ._title > p {
    font-size: 1.3rem;
  }
}
.p-contact > ._list > ._title .hissu {
  color: #f00;
}
.p-contact > ._list ._input {
  width: calc(100% - 35rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media only screen and (max-width: 1000px) {
  .p-contact > ._list ._input {
    width: 100%;
    border-top: 0;
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-contact > ._list ._input {
    padding-bottom: 1em;
  }
}
.p-contact > ._list ._input.select-wrap {
  position: relative;
}
.p-contact > ._list ._input.select-wrap::after {
  content: "";
  position: absolute;
  left: 31rem;
  top: 2.3rem;
  width: 0.9rem;
  height: 0.6rem;
  background-image: url(../img/icon_select.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-contact > ._list ._input.select-wrap::after {
    right: 2rem;
  }
}
.p-contact > ._list ._input input[type=text],
.p-contact > ._list ._input input[type=tel],
.p-contact > ._list ._input input[type=email],
.p-contact > ._list ._input input[type=number],
.p-contact > ._list ._input textarea,
.p-contact > ._list ._input select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  line-height: 1.8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 5rem;
  padding: 1rem 2rem;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-contact > ._list ._input input[type=text],
  .p-contact > ._list ._input input[type=tel],
  .p-contact > ._list ._input input[type=email],
  .p-contact > ._list ._input input[type=number],
  .p-contact > ._list ._input textarea,
  .p-contact > ._list ._input select {
    font-size: 1.3rem;
    height: 4rem;
  }
}
.p-contact > ._list ._input input[type=text].hissuColor,
.p-contact > ._list ._input input[type=tel].hissuColor,
.p-contact > ._list ._input input[type=email].hissuColor,
.p-contact > ._list ._input input[type=number].hissuColor,
.p-contact > ._list ._input textarea.hissuColor,
.p-contact > ._list ._input select.hissuColor {
  background-color: #dbeaf6;
}
.p-contact > ._list ._input textarea {
  height: 16rem;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.p-contact > ._list ._input select {
  color: #333;
  max-width: 34rem;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none; /* デフォルトの矢印を非表示 */
}
@media screen and (max-width: 767px) {
  .p-contact > ._list ._input select {
    max-width: auto;
  }
}
.p-contact > ._list ._input select::-ms-expand {
  display: none; /* デフォルトの矢印を非表示(IE用) */
}
.p-contact > ._list ._input ._postal-code {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media only screen and (max-width: 900px) {
  .p-contact > ._list ._input ._postal-code {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-contact > ._list ._input ._postal-code ._inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.p-contact > ._list ._input ._postal-code ._inner span:nth-child(1) {
  width: 7rem;
}
.p-contact > ._list ._input ._postal-code ._inner span:nth-child(2) {
  margin-top: 1.2rem;
}
.p-contact > ._list ._input ._postal-code ._inner span:nth-child(3) {
  width: 8rem;
}
.p-contact > ._list ._input ._postal-code ._inner input[type=text].postal-code1 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 7rem;
}
.p-contact > ._list ._input ._postal-code ._inner input[type=text].postal-code2 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 8rem;
}
.p-contact ._radiotitle {
  padding-top: 2rem !important;
}
@media screen and (max-width: 767px) {
  .p-contact ._radiotitle {
    padding-top: 1rem !important;
  }
}
.p-contact ._radio input[type=radio] {
  display: none;
}
.p-contact ._radio .wpcf7-form-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 20px;
}
.p-contact ._radio .wpcf7-list-item-label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.p-contact ._radio .wpcf7-list-item-label::before {
  content: "";
  display: block;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid var(--color-primary);
  width: 20px;
  height: 20px;
  margin-right: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-contact ._radio input[type=radio]:checked + .wpcf7-list-item-label::before {
  background-color: #fff;
  border: 10px solid var(--color-primary);
  width: 20px;
  height: 20px;
}
.p-contact ._recaptcha {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 3.4rem auto 0;
}
.p-contact ._submit {
  margin-top: 3.4rem;
}
.p-contact ._submit ._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;
  color: #fff;
  font-size: 2.4rem;
  font-weight: var(--font-weight-medium);
  width: 100%;
  max-width: 26rem;
  height: 6rem;
  background-color: var(--color-primary);
  border-radius: 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0 auto;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-contact ._submit ._button {
    font-size: 1.6rem;
    height: 4rem;
    max-width: 20rem;
  }
}
@media (any-hover: hover) {
  .p-contact ._submit ._button:hover {
    opacity: 0.6;
  }
}
.p-contact ._submit ._button input[type=submit] {
  display: none;
}
.p-contact .wpcf7-list-item {
  margin: 0;
}
.p-contact .wpcf7-spinner {
  display: none !important;
}

.wpcf7 form .wpcf7-response-output {
  line-height: 1.6;
  margin: 2em 0.5em 1em;
  padding: 1em 1em !important;
  border: 2px solid #00a0d2;
  font-size: 1.6rem !important;
  text-align: center !important;
}
@media only screen and (max-width: 767px) {
  .wpcf7 form .wpcf7-response-output {
    font-size: 1.4rem !important;
    text-align: left !important;
  }
}

.grecaptcha-badge {
  bottom: 85px !important;
}
@media screen and (max-width: 767px) {
  .grecaptcha-badge {
    bottom: 115px !important;
  }
}

/* ============================================
  お知らせ一覧
============================================  */
.p-infolist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-infolist {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-infolist dt {
  width: 240px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  font-weight: normal !important;
  padding-right: 20px !important;
}
@media screen and (max-width: 767px) {
  .p-infolist dt {
    width: 100% !important;
    padding-right: 0 !important;
  }
}
.p-infolist dt::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--color-primary);
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-infolist dt ._date {
  color: #676767;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-infolist dt ._date {
    font-size: 1.3rem;
  }
}
.p-infolist dt ._category {
  color: #676767;
  border: solid 1px #676767;
  width: 117px;
  height: 30px;
  font-size: 1.3rem;
  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) {
  .p-infolist dt ._category {
    font-size: 1.1rem;
    width: 100px;
    height: 18px;
  }
}
.p-infolist dd {
  width: calc(100% - 240px) !important;
  font-size: 1.6rem;
  font-weight: normal !important;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-infolist dd {
    width: 100% !important;
  }
}
@media screen and (max-width: 767px) {
  .p-infolist dd {
    font-size: 1.3rem !important;
    padding-bottom: 10px;
  }
}
.p-infolist dd a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-infolist dd a:hover {
  text-decoration: underline;
}
.p-infolist dd a::after {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #0075C1;
  border-right: solid 2px #0075C1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

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

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

/* ============================================
  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: 0.8s;
          animation-duration: 0.8s;
  -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: 1500px;
  width: 75%;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .w-editorarea {
    width: 100%;
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .w-editorarea {
    padding-top: 30px;
    padding-bottom: 50px;
  }
}
.w-editorarea hr {
  margin: 80px 0;
  border: none;
  border-top: solid 1px #ccc;
}
.w-editorarea p {
  font-size: 1.6rem;
  font-weight: var(--font-weight-regular);
  line-height: 1.875;
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  .w-editorarea p {
    font-size: 1.3rem;
  }
}
.w-editorarea p:first-child {
  margin-top: 0;
}
.w-editorarea .wp-block-button {
  display: block !important;
  width: 100% !important;
}
.w-editorarea .wp-block-button .wp-block-button__link {
  color: #124B9C;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: solid 1px #124B9C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border-radius: 0;
  background-color: unset;
  padding: 20px 40px 20px 20px;
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  .w-editorarea .wp-block-button .wp-block-button__link {
    font-size: 1.3rem;
    padding: 12px;
  }
}
.w-editorarea .wp-block-button .wp-block-button__link::after {
  position: absolute;
  right: 20px;
  top: calc(50% - 2px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  -webkit-mask-image: url("../img/icon-arrow.svg");
          mask-image: url("../img/icon-arrow.svg");
  width: 18px;
  height: 4px;
  background-color: #124B9C;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .w-editorarea .wp-block-button .wp-block-button__link::after {
    right: 12px;
  }
}
.w-editorarea .wp-block-button .wp-block-button__link:hover {
  color: #fff;
  background-color: #124B9C;
  letter-spacing: 0.2em;
}
.w-editorarea .wp-block-button .wp-block-button__link:hover::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  background-color: #fff;
}
.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: 10px 0 0;
  }
}
.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: dashed 1px #ccc;
}
@media screen and (max-width: 767px) {
  .w-editorarea dl dd {
    width: 100%;
    border-top: 0;
    padding: 0 0 10px;
  }
}

/* ============================================
  固定ページ
============================================  */
.page .w-editorarea h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  margin-bottom: 40px;
  margin-top: 80px;
  border-top: solid 1px #E6E6E6;
  padding-top: 15px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .page .w-editorarea h2 {
    font-size: 2rem;
    gap: 10px;
    margin-bottom: 20px;
    margin-top: 40px;
  }
}
.page .w-editorarea h2:first-child {
  margin-top: 0;
}
.page .w-editorarea h2::after {
  position: absolute;
  top: -1px;
  left: 0;
  content: "";
  width: 40px;
  height: 5px;
  background-color: var(--color-primary);
}

/* ============================================
  記事
============================================  */
.single .w-editorarea h1 {
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  font-weight: var(--font-weight-medium);
  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: 2rem;
    margin-bottom: 10px;
  }
}
.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;
}
@media screen and (max-width: 767px) {
  .single .w-editorarea ._date-area {
    gap: 10px;
    margin-bottom: 20px;
  }
}
.single .w-editorarea ._date-area ._category {
  color: #676767;
  border: solid 1px #676767;
  width: 117px;
  height: 30px;
  font-size: 1.3rem;
  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) {
  .single .w-editorarea ._date-area ._category {
    font-size: 1.1rem;
    width: 100px;
    height: 18px;
  }
}
.single .w-editorarea ._date-area ._date {
  font-size: 1.6rem;
  color: #666;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .single .w-editorarea ._date-area ._date {
    font-size: 1.3rem;
  }
}
.single .w-editorarea h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  margin-top: 80px;
  padding: 10px 20px;
  background-color: #F2F2F2;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .single .w-editorarea h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    margin-top: 40px;
  }
}
.single .w-editorarea ._date-area + h2 {
  margin-top: 0 !important;
}
.single .w-editorarea h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  margin-top: 40px;
  padding-left: 15px;
  border-left: solid 4px var(--color-primary);
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .single .w-editorarea h3 {
    font-size: 1.6rem;
    margin-top: 20px;
    margin-bottom: 10px;
  }
}
.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;
}/*# sourceMappingURL=style.css.map */