@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=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* ============================================
  reset
============================================  */
*,
*::before,
*::after {
  margin: 0; /* マージンは0に */
  padding: 0; /* パディングも常に0に */
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* もちろん、より直感的なbox-sizingに設定 */
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important; /* hiddenは非表示を意味します */
}

:where(html) {
  -webkit-text-size-adjust: none; /* iOSのランドスケープでテキストが調整されないようにする */
  color-scheme: dark light; /* ユーザーがダークテーマを好む場合、自動的にダークテーマになる */
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth; /* 何かにフォーカスがある場合のみスムーズスクロール */
  }
}
:where(body) {
  block-size: 100%; /* サファリ以外のブラウザのフォールバック */
  block-size: 100dvb; /* 1dvbは動的ビューポートの長さの1%、100dvbで高さいっぱいに */
  line-height: 1.5; /* アクセシブルな行の高さ */
  font-family: system-ui, sans-serif; /* timeの代わりにシステムフォントを使用 */
  -webkit-font-smoothing: antialiased; /* テキストのレンダリングを改善 */
}

:where(input, button, textarea, select) {
  font: inherit; /* フォーム コントロールは親フォントを継承 */
  color: inherit; /* カラーも継承 */
}

:where(textarea) {
  resize: vertical; /* テキストエリアの水平リサイズを無効に */
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer; /* インタラクティブなものにカーソルを合わせる */
}

:where(:disabled) {
  cursor: not-allowed; /* フォームコントロール無効時のカーソルを許可しない */
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed; /* ラベルにもカーソルを許可しない */
}

:where(button) {
  border-style: solid; /* ボタンのボーダーのスタイルを設定しやすくする */
}

:where(a) {
  text-underline-offset: 0.2ex; /* 下線の上にスペースを追加する */
}

:where(ul, ol) {
  list-style: none; /* ビュレットを削除、必要に応じて手動で追加する */
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block; /* 置換された要素をより予測可能にする */
}

:where(img, picture, svg) {
  max-inline-size: 100%; /* images should never overflow past the available space */
  block-size: auto; /* アスペクト比を保持 */
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word; /* 長い単語は改行 */
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem); /* 見出しの行の高さを減らす */
}

:where(hr) { /* より一貫性のある、スタイリッシュなhr */
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) { /* より一貫性のある、カスタマイズ可能なフォーカスのアウトライン */
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

/* .visually-hiddenは後のカスケードレイヤーを上書きするために!importantを使用 */
:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:root {
  --font-weight-medium: 500;
  --font-weight-bold: 600;
  --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;
}

body {
  width: 100%;
  color: #000;
  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;
}
@media screen and (max-width: 767px) {
  body {
    overflow-x: none;
  }
}
body.no-scroll {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body.is-open {
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
}

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 (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ============================================
  header
============================================  */
.l-header {
  height: 80px;
  width: 100%;
  position: fixed;
  z-index: 100;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 60px;
  }
}
.l-header .l-inner {
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .l-header .l-inner {
    height: 60px;
  }
}
.l-header ._logo {
  width: 250px;
}
@media screen and (max-width: 767px) {
  .l-header ._logo {
    width: 180px;
  }
}
.l-header ._nav {
  height: 80px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1099px) {
  .l-header ._nav {
    display: none;
  }
}
.l-header ._nav ._item {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.l-header ._nav ._item::after {
  opacity: 0;
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #0E60B2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-header ._nav ._item:hover::after {
  opacity: 1;
}
.l-header ._nav ._item.--btn {
  background-color: #0E60B2;
  color: #fff;
  font-weight: bold;
  height: 100%;
  padding: 0 30px;
  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;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-header ._nav ._item.--btn:hover {
  background-color: #007CCF;
}
.l-header ._nav ._item.--btn::after {
  display: none;
}

.header-active .l-header {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-transition-delay: 0s !important;
          transition-delay: 0s !important;
}

.header-deactive .l-header {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

/* ============================================

hamburger

============================================  */
.l-hamburger {
  display: none;
}
@media screen and (max-width: 1099px) {
  .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: 130px;
  background-color: rgba(255, 255, 255, 0.9);
  -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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -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;
  gap: 30px;
}
.l-hamburger ._nav ._item {
  display: block;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: bold;
  text-decoration: none;
  border-bottom: solid 1px #333;
  width: 50%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-hamburger ._nav ._item {
    width: 80%;
  }
}
.l-hamburger ._nav ._item::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  -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;
  background: #0E60B2;
}
.l-hamburger ._nav ._item:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.l-hamburger ._nav ._item.--btn {
  background-color: #0E60B2;
  color: #fff;
  font-weight: bold;
  height: auto;
  padding: 15px 30px;
  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: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-top: 20px;
}
.l-hamburger ._nav ._item.--btn:hover {
  background-color: #007CCF;
}
.l-hamburger ._nav ._item.--btn::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-hamburger ._nav ._item.--btn img {
    width: 26px;
  }
}
.l-hamburger ._line {
  position: fixed;
  right: 30px;
  top: 29px;
  width: 32px; /* クリックしやすいようにちゃんと幅を指定する */
  height: 22px; /* クリックしやすいようにちゃんと高さを指定する */
  cursor: pointer;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .l-hamburger ._line {
    top: 19px;
  }
}
.l-hamburger ._line ._item {
  position: absolute;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: #333;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.l-hamburger ._line ._item--1 {
  top: 0;
}
.l-hamburger ._line ._item--2 {
  top: 10px;
}
.l-hamburger ._line ._item--3 {
  top: 20px;
}
.l-hamburger ._line:hover ._item--1 {
  top: 2px;
}
.l-hamburger ._line:hover ._item--3 {
  top: 18px;
}

/* 表示された時用のCSS */
.is-open ._nav {
  opacity: 1;
  visibility: visible;
}
.is-open ._item--1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 10px !important;
}
.is-open ._item--2 {
  opacity: 0;
  transform: translateX(30px);
  -webkit-transform: translateX(30px);
}
.is-open ._item--3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 10px !important;
}

body.is-load .l-header,
body.is-load .l-hamburger ._line {
  opacity: 0;
  -webkit-transition-delay: 3.7s;
          transition-delay: 3.7s;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}

body.is-load.active .l-header,
body.is-load.active .l-hamburger ._line {
  opacity: 1;
}

/* ============================================
  opening
============================================  */
.opening {
  position: fixed;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  background-color: #003871;
  z-index: 1000;
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}
.opening ._copy {
  width: 100%;
  max-width: 80%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  margin: 0 auto;
  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;
  opacity: 0;
}

body.is-load .opening ._copy {
  -webkit-animation-name: fade-in;
          animation-name: fade-in;
  -webkit-animation-duration: 1.3s;
          animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body.is-load.active .opening {
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
}

.bg-light {
  position: relative;
  overflow: hidden;
}
.bg-light::before {
  content: "";
  position: absolute;
  bottom: -100%;
  right: -100%;
  width: 100%;
  height: 100%;
  background-image: url(../../top/img/bg_light.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.bg-light.animation.is-active::before {
  bottom: 0;
  right: 0;
}
.bg-light.animation.is-active .a-curtain::after {
  -webkit-transition: left 0.6s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.6s, width 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: left 0.6s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.6s, width 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.bg-light.animation.is-active .a-curtain > div,
.bg-light.animation.is-active .a-curtain > img {
  -webkit-transition: opacity 0s 0.6s;
          transition: opacity 0s 0.6s;
}
.bg-light.animation.is-active .a-fadeUp.is-active {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

/* ============================================
  mainvisual
============================================  */
.l-mainvisual {
  height: calc(100vh - 50px);
  background-image: url(../../top/img/mainvisual.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1100px) {
  .l-mainvisual {
    height: calc(100vh + 280px);
    background-size: auto 100vh;
  }
}
@media screen and (max-width: 767px) {
  .l-mainvisual {
    height: calc(100vh + 1320px);
    background-image: unset;
  }
}
.l-mainvisual::before {
  content: "";
  position: absolute;
  bottom: -100%;
  right: -100%;
  width: calc(100vw + 60vh);
  height: calc(100vw + 60vh);
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
          clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background-color: rgba(14, 96, 178, 0.05);
  -webkit-transition-delay: 3s;
          transition-delay: 3s;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-mainvisual::before {
    display: none;
  }
}
.l-mainvisual::after {
  content: "";
  position: absolute;
  bottom: -100%;
  right: -100%;
  width: calc(100vw + 60vh);
  height: calc(100vw + 60vh);
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
          clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background-color: rgba(14, 96, 178, 0.05);
  -webkit-transition-delay: 3.2s;
          transition-delay: 3.2s;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-mainvisual::after {
    display: none;
  }
}
.l-mainvisual ._inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
  height: calc(100vh - 380px);
}
@media screen and (max-width: 767px) {
  .l-mainvisual ._inner {
    height: calc(var(--vh, 1vh) * 100);
    background-image: url(../../top/img/mainvisual-sp.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
}
@media screen and (max-width: 767px) {
  .l-mainvisual ._inner::before {
    content: "";
    position: absolute;
    bottom: -100%;
    right: -100%;
    width: calc(100vh + 50vw);
    height: calc(100vh + 50vw);
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
            clip-path: polygon(100% 0, 100% 100%, 0 100%);
    background-color: rgba(14, 96, 178, 0.05);
    -webkit-transition-delay: 3s;
            transition-delay: 3s;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
}
@media screen and (max-width: 767px) {
  .l-mainvisual ._inner::after {
    content: "";
    position: absolute;
    bottom: -100%;
    right: -100%;
    width: calc(100vh + 50vw);
    height: calc(100vh + 50vw);
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
            clip-path: polygon(100% 0, 100% 100%, 0 100%);
    background-color: rgba(14, 96, 178, 0.05);
    -webkit-transition-delay: 3.2s;
            transition-delay: 3.2s;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
}
.l-mainvisual ._inner ._copy {
  max-width: 80%;
  margin: 0 auto;
  opacity: 0;
  -webkit-transition-delay: 3.7s;
          transition-delay: 3.7s;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}
.l-mainvisual .l-menu {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  opacity: 0;
  -webkit-transition-delay: 3.7s;
          transition-delay: 3.7s;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}

body.is-load.active .l-mainvisual::before, body.is-load.active .l-mainvisual ._inner::before {
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 1100px) {
  body.is-load.active .l-mainvisual::before, body.is-load.active .l-mainvisual ._inner::before {
    bottom: 280px;
  }
}
@media screen and (max-width: 767px) {
  body.is-load.active .l-mainvisual::before, body.is-load.active .l-mainvisual ._inner::before {
    bottom: 0;
  }
}
body.is-load.active .l-mainvisual::after, body.is-load.active .l-mainvisual ._inner::after {
  bottom: -75px;
  right: -75px;
}
@media screen and (max-width: 1100px) {
  body.is-load.active .l-mainvisual::after, body.is-load.active .l-mainvisual ._inner::after {
    bottom: 240px;
  }
}
@media screen and (max-width: 767px) {
  body.is-load.active .l-mainvisual::after, body.is-load.active .l-mainvisual ._inner::after {
    bottom: -40px;
    right: -40px;
  }
}
body.is-load.active .l-mainvisual ._copy {
  opacity: 1;
}
body.is-load.active .l-mainvisual .l-menu {
  opacity: 1;
}

/* ============================================
  menu
============================================  */
.l-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1100px) {
  .l-menu {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .l-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-menu ._item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 330px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
@media screen and (max-width: 1100px) {
  .l-menu ._item {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .l-menu ._item {
    width: 100%;
  }
}
.l-menu ._item ._textarea {
  position: relative;
  z-index: 10;
  margin-top: 10px;
  margin-left: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-menu ._item ._textarea ._title {
  height: 62px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-menu ._item ._textarea ._title .a {
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-menu ._item ._textarea ._text {
  opacity: 0;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-top: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-menu ._item img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
.l-menu ._item::before {
  content: "";
  position: absolute;
  left: -100%;
  top: -100%;
  z-index: 1;
  width: 330px;
  height: 330px;
  display: block;
  background-color: #0E60B2;
  mix-blend-mode: multiply;
  -webkit-clip-path: polygon(0 100%, 0 0, 100% 0);
          clip-path: polygon(0 100%, 0 0, 100% 0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-menu ._item::after {
  content: "";
  position: absolute;
  right: -100%;
  bottom: -100%;
  z-index: 1;
  width: 100px;
  height: 100px;
  background-color: #25A8DC;
  mix-blend-mode: multiply;
  -webkit-clip-path: polygon(0 100%, 100% 0, 100% 100%);
          clip-path: polygon(0 100%, 100% 0, 100% 100%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-menu ._item:nth-child(3):after {
  display: none;
}
.l-menu ._item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

body.is-load.active .l-menu ._item::before {
  left: 0;
  top: 0;
  -webkit-transition-delay: 5s;
          transition-delay: 5s;
}
body.is-load.active .l-menu ._item::after {
  right: 0;
  bottom: 0;
  -webkit-transition-delay: 5s;
          transition-delay: 5s;
}
body.is-load.active .l-menu ._item ._title .a {
  opacity: 1;
  -webkit-transition-delay: 5s;
          transition-delay: 5s;
}
body.is-load.active .l-menu ._item ._text {
  opacity: 1;
  -webkit-transition-delay: 5s;
          transition-delay: 5s;
}
body.is-load.active .l-menu ._item.active::before {
  left: -100%;
  top: -100%;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
body.is-load.active .l-menu ._item.active::after {
  right: -100%;
  bottom: -100%;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
body.is-load.active .l-menu ._item.active:nth-child(1) ._title .a {
  fill: #0E60B2;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
body.is-load.active .l-menu ._item.active:nth-child(1) ._text {
  color: #0E60B2;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
body.is-load.active .l-menu ._item.deactive::before {
  left: 0;
  top: 0;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
body.is-load.active .l-menu ._item.deactive::after {
  right: 0;
  bottom: 0;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
body.is-load.active .l-menu ._item.deactive:nth-child(1) ._title .a {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
body.is-load.active .l-menu ._item.deactive:nth-child(1) ._text {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

/* ============================================
  news
============================================  */
.l-news {
  padding: 45px 0;
  overflow: hidden;
}
.l-news .l-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 999px) {
  .l-news .l-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.l-news ._title-area {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.l-news ._title-area ._title {
  font-family: "Montserrat", sans-serif;
  color: #004C98;
  font-size: 4rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 999px) {
  .l-news ._title-area .c-btn {
    display: none;
  }
}
.l-news ._contents {
  width: 100%;
}
.l-news ._contents ._newslist ._item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  padding: 25px 0;
  border-bottom: 1px solid #F0F0F0;
}
@media screen and (max-width: 767px) {
  .l-news ._contents ._newslist ._item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.l-news ._contents ._newslist ._item:first-child {
  border-top: 1px solid #F0F0F0;
}
.l-news ._contents ._newslist ._item ._date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 200px;
  font-size: 1.3rem;
  font-weight: 600;
  color: #004C98;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.l-news ._contents ._newslist ._item ._date ._category {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  background-color: #004C98;
  padding: 5px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 90px;
  text-align: center;
}
.l-news ._contents ._newslist ._item ._title {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
}
.l-news ._contents ._newslist ._item ._title a {
  text-decoration: none;
}
.l-news ._contents ._newslist ._item ._title a:hover {
  text-decoration: underline;
}
@media screen and (min-width: 1000px) {
  .l-news ._contents .c-btn {
    display: none;
  }
}

/* ============================================
  products
============================================  */
.l-products {
  padding: 45px 0;
  mix-blend-mode: multiply;
}
.l-products ._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .l-products ._list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-products ._list ._item {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
  width: calc(33.33% - 2px);
}
@media screen and (max-width: 767px) {
  .l-products ._list ._item {
    width: 100%;
    max-width: 382px;
    margin: 0 auto;
  }
}
.l-products ._list ._item:hover {
  opacity: 0.6;
}

/* ============================================
  recruit
============================================  */
.animation-recruit .a-fadeUp.is-active {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.l-recruit {
  min-height: 500px;
  background-image: url(../../top/img/recruit_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-recruit {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.l-recruit::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}
@media screen and (max-width: 767px) {
  .l-recruit::after {
    background-color: rgba(0, 0, 0, 0.3);
  }
}
.l-recruit .l-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  margin-right: 10%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .l-recruit .l-inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: auto;
  }
}
.l-recruit ._contents {
  color: #fff;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  z-index: 10;
}
.l-recruit ._contents ._title {
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}

/* ============================================
  banner
============================================  */
.l-banner {
  padding: 10% 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-banner {
    padding: 80px 0;
  }
}
.l-banner ._list {
  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;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-banner ._list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.l-banner ._list ._item {
  width: 31.25%;
  max-width: 450px;
}
@media screen and (max-width: 767px) {
  .l-banner ._list ._item {
    width: 100%;
    margin: 0 auto;
    max-width: 400px;
  }
}
.l-banner ._list ._item:last-child {
  width: 27.77%;
  max-width: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .l-banner ._list ._item:last-child {
    width: 100%;
    margin: 0 auto;
  }
}
.l-banner ._list ._item:last-child a:first-child {
  padding-bottom: 5%;
}
.l-banner ._list ._item a {
  width: 100%;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-banner ._list ._item a:hover {
  opacity: 0.6;
}
.l-banner ._list ._item img {
  width: 100%;
}

/* ============================================
  section
============================================  */
.l-section {
  padding: 60px 0 100px;
  overflow: hidden;
}

/* ============================================
  inner
============================================  */
.l-inner {
  max-width: 1300px;
  width: 80%;
  margin: 0 auto;
}

/* ============================================
  h
============================================  */
/* ============================================
  footer
============================================  */
.l-footer .l-inner {
  position: relative;
}
.l-footer ._contents {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: #fff;
  padding: 100px 0 14px;
  background-color: #004C98;
  position: relative;
  z-index: 1;
}
.l-footer ._contents::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../top/img/bg_light.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
  mix-blend-mode: multiply;
}
.l-footer ._contents ._logo {
  display: block;
  max-width: 340px;
  width: 80%;
}
.l-footer ._contents ._logo img {
  width: 100%;
}
.l-footer ._contents ._nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 85px 0 100px;
}
@media (max-width: 999px) {
  .l-footer ._contents ._nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 6em 4%;
  }
}
.l-footer ._contents ._nav ._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5em;
}
@media (max-width: 999px) {
  .l-footer ._contents ._nav ._list {
    width: 48%;
  }
}
.l-footer ._contents ._nav ._list ._item {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  line-height: 1.5;
  text-decoration: none;
  position: relative;
}
.l-footer ._contents ._nav ._list ._item:first-child {
  font-weight: bold;
  margin-bottom: 1em;
}
.l-footer ._contents ._nav ._list ._item::after {
  opacity: 0;
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-footer ._contents ._nav ._list ._item:hover::after {
  opacity: 1;
}
.l-footer ._contents ._note {
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .l-footer ._contents ._note {
    text-align: left;
  }
}
.l-footer ._copyright {
  font-family: "Montserrat", sans-serif;
  color: #000;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 600;
  text-align: right;
  padding: 20px 0;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .l-footer ._copyright {
    text-align: center;
  }
}

/* ============================================
  pagetop
============================================  */
.l-pagetop {
  position: fixed;
  bottom: 33px;
  right: 33px;
  z-index: 10;
  color: #fff;
  text-decoration: none;
  z-index: 10;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  /* 非表示にする */
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-pagetop {
    bottom: 10px;
    right: 10px;
  }
}
.l-pagetop ._icon {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #25A8DC;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-pagetop ._icon {
    width: 50px;
    height: 50px;
  }
}
.l-pagetop ._icon svg {
  margin-left: -15%;
}
.l-pagetop:hover ._icon {
  background-color: #3db1df;
}
.l-pagetop ._text {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-top: 15px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
  .l-pagetop ._text {
    font-size: 1.4rem;
    margin-top: 10px;
  }
}

.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
============================================  */
/* gradientBtn
------------------------- */
.c-btn {
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(rgb(14, 96, 178)), color-stop(50%, rgb(14, 96, 178)), to(rgb(6, 152, 217)));
  background: linear-gradient(90deg, rgb(14, 96, 178) 0%, rgb(14, 96, 178) 50%, rgb(6, 152, 217) 100%);
  background-size: 200% 100%;
  background-color: #0E60B2;
  border-radius: 9999px;
  padding: 25px;
  color: #fff;
  margin-top: 30px;
  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: 20px;
  width: 100%;
  max-width: 300px;
  margin: 30px auto 0;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 600;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-btn svg {
  position: relative;
  top: 1px;
  right: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-btn:hover {
  background-position: 100% 0;
}
.c-btn:hover svg {
  right: -5px;
}

/* ============================================
  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%;
}

/* ============================================
  name
============================================  */
/* ============================================
  PC／SPのみ表示
============================================  */
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }
}

/* ============================================
  font
============================================  */
.u-bold {
  font-weight: bold !important;
}

.u-normal {
  font-weight: normal !important;
}

.u-lighter {
  font-weight: 200 !important;
}

.u-left {
  text-align: left !important;
}

.u-right {
  text-align: right !important;
}

.u-center {
  text-align: center !important;
}

.u-cap {
  font-size: 1.5rem;
}

.u-highlight {
  text-decoration: underline; /* 下線 */
  text-decoration-thickness: 0.5em; /* 線の太さ */
  text-decoration-color: rgb(255, 255, 65); /* 線の色 */
  text-underline-offset: -0.2em; /* 線の位置。テキストに重なるようにやや上部にする */
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}

/* ============================================
  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
============================================  */
.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;
}

/* ============================================
  name
============================================  */
/* ============================================
  Hover Animation
============================================  */
/* underline
------------------------- */
.a-underline {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.a-underline::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #333;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.a-underline:hover::after {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}

/* underlineLeft
------------------------- */
.a-underlineLeft {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.a-underlineLeft::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #333;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}
.a-underlineLeft:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

/* borderBox
------------------------- */
.borderBox__in {
  overflow: hidden;
  /* 上のボーダー */
  /* 左のボーダー */
}
.borderBox__in::before, .borderBox__in::after {
  content: "";
  position: absolute;
  background: #006; /*線の色*/
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}
.borderBox__in::before {
  top: 0;
  right: -100%;
  width: 100%;
  height: 1px;
}
.borderBox__in:hover::before {
  right: 0;
}
.borderBox__in::after {
  top: -100%;
  left: 0;
  width: 1px;
  height: 100%;
}
.borderBox__in:hover::after {
  top: 0;
}
.borderBox__in__in {
  /* 下のボーダー */
  /* 右のボーダー */
}
.borderBox__in__in::before, .borderBox__in__in::after {
  content: "";
  position: absolute;
  background: #006; /*線の色*/
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}
.borderBox__in__in::before {
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 1px;
}
.borderBox__in__in:hover::before {
  left: 0;
}
.borderBox__in__in::after {
  content: "";
  bottom: -100%;
  right: 0;
  width: 1px;
  height: 100%;
}
.borderBox__in__in:hover::after {
  bottom: 0;
}

/* ============================================
  Scroll Animation
============================================  */
/* fadeUp
------------------------- */
.a-fadeUp {
  opacity: 0;
}
.a-fadeUp.is-active {
  -webkit-animation-name: fade-up;
          animation-name: fade-up;
  -webkit-animation-duration: 1.3s;
          animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fade-up {
  0% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-up {
  0% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
/* fadeRight
------------------------- */
.a-fadeRight {
  opacity: 0;
}
.a-fadeRight.is-active {
  -webkit-animation-name: fade-right;
          animation-name: fade-right;
  -webkit-animation-duration: 1.3s;
          animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  /* animation-delay: .0s; */
}

@-webkit-keyframes fade-right {
  0% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-right {
  0% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
/* curtain
------------------------- */
.a-curtain {
  overflow: hidden;
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.a-curtain::after {
  background-color: #003871;
  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;
  }
}
/* ============================================
  swiper
============================================  */
.swiper {
  position: relative;
}

.swiper-button {
  width: calc(100% - 80px);
  height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .swiper-button {
    width: calc(100% - 20px);
  }
}

.swiper-button-next,
.swiper-button-prev {
  top: 16.5vw !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.9);
  cursor: pointer !important;
  background-image: none;
  background-image: none !important;
  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;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-top: 0 !important;
  z-index: 10 !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #D33B86;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  fill: #666;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.swiper-button-prev svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.swiper-button-next:hover svg,
.swiper-button-prev:hover svg {
  fill: #0cf;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: #ccc !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background: #0cf !important;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px !important;
}/*# sourceMappingURL=style.css.map */