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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

:root {
  --color-base: #333;
  --color-primary: #273885;
  --color-secondary: #F5F262;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --vw: 1vw;
  --vh: 1vh;
}

/* ============================================
  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: 80px;
}
@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-color: #fff;
  overscroll-behavior-y: none;
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  body {
    overflow-x: none;
    padding-top: 80px;
  }
}
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;
  }
}

/*  メールリンクの装飾を削除
------------------------- */
a[href^="mailto:"] {
  text-decoration: none;
}

/* ============================================
  header
============================================  */
.l-header {
  height: 120px;
  width: 100%;
  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;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 97;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 80px;
  }
}
.l-header__logo {
  color: var(--color-primary);
  width: 162px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 110px;
  }
}

.front .l-header__logo {
  color: #fff;
}

.l-hamburger {
  position: fixed;
  top: 30px;
  right: 70px;
  z-index: 98;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-hamburger {
    top: 15px;
    right: 60px;
  }
}
.l-hamburger__nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(30px);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2em;
  padding: 0 0 0 40px;
  font-size: 1.6rem;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1000px) {
  .l-hamburger__nav {
    background-color: var(--color-primary);
    width: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media screen and (max-width: 767px) {
  .l-hamburger__nav {
    width: 50px;
    height: 50px;
  }
}
.l-hamburger__nav__item {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media (max-width: 1000px) {
  .l-hamburger__nav__item {
    visibility: hidden;
    color: #fff;
    padding-bottom: 10px;
    opacity: 0;
  }
}
.l-hamburger__nav__item::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-color: var(--color-primary);
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 5px 5px 0 0;
  opacity: 0;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media (max-width: 1000px) {
  .l-hamburger__nav__item::after {
    background-color: #fff;
    height: 4px;
    border-radius: 2px;
  }
}
@media (max-width: 767px) {
  .l-hamburger__nav__item::after {
    display: none;
  }
}
.l-hamburger__nav__item:hover::after {
  opacity: 1;
}

/* ドロップダウンの親要素の基準位置を設定 */
.l-hamburger__nav__item-wrap.has-child {
  position: relative;
  display: inline-block; 
}

.l-hamburger__nav__item-wrap > a {
  pointer-events: none;
}

/* ドロップダウンメニューの初期状態（非表示） */
.l-hamburger__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: max-content;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px); /* 少し下にずらしておく */
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 100;
}

/* 親要素にホバーした時の表示状態 */
.l-hamburger__nav__item-wrap.has-child:hover .l-hamburger__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0); /* 元の位置にスライドしながら表示 */
}

/* ドロップダウン内の各リンクデザイン */
.l-hamburger__dropdown__item {
  display: block;
  padding: 15px 55px 15px 20px;
  color: #333;
  font-size: 1.6rem;
  font-weight: normal;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease, color 0.2s ease;

  position: relative;
}

.l-hamburger__dropdown__item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  display: block;
  width: 1px;
  height: 1.6rem;

  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);

  background-color: #333;
}

.l-hamburger__dropdown__item::after {
  content: "";
  display: block;
  width: 11px;
  height: 10px;
  background: url("../img/icon_btn-link_black.svg") no-repeat;
  background-size: cover;

  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.l-hamburger__dropdown__item:hover::after {
  -webkit-animation: fade-arrow 0.6s forwards;
          animation: fade-arrow 0.6s forwards;
}

.l-hamburger__dropdown__item:last-child {
  border-bottom: none;
}


.l-hamburger__nav__item--contact {
  background-color: var(--color-primary);
  color: #fff;
  padding: 10px 1em;
  height: 100%;
  border-radius: 0 10px 10px 0;
  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: 160px;
}
@media (max-width: 1000px) {
  .l-hamburger__nav__item--contact {
    visibility: hidden;
    opacity: 0;
    background-color: #fff;
    color: var(--color-primary);
    border-radius: 10px;
  }
  .l-hamburger__nav__item--contact::before {
    background-color: var(--color-primary) !important;
  }

  /* ドロップダウンメニュー */
  .l-hamburger__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    transform: translateY(0);
  }
  .l-hamburger__dropdown__item {
    color: #fff;
    padding: 8px 55px 8px 15px;
    border: 0;
  }
  .l-hamburger__dropdown__item::before, .l-hamburger__dropdown__item::after {
    display: none;
  }

}
.l-hamburger__nav__item--contact::before {
  content: "";
  display: block;
  width: 16px;
  height: 12px;
  -webkit-mask-image: url("../img/icon-mail.svg");
          mask-image: url("../img/icon-mail.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__item--contact::after {
  content: "";
  display: block;
  width: 120px;
  height: 5px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 5px 5px 0 0;
  opacity: 0;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media (max-width: 1000px) {
  .l-hamburger__nav__item--contact::after {
    background-color: var(--color-primary);
    height: 4px;
    border-radius: 4px 4px 0 0;
  }
}
@media (max-width: 767px) {
  .l-hamburger__nav__item--contact::after {
    display: none;
  }
}
@media (min-width: 1000px) {
  .l-hamburger__line {
    display: none;
  }
}
.l-hamburger__line {
  position: absolute;
  right: 14px;
  top: 19px;
  width: 32px; /* クリックしやすいようにちゃんと幅を指定する */
  height: 22px; /* クリックしやすいようにちゃんと高さを指定する */
  cursor: pointer;
  z-index: 101;
}
@media screen and (max-width: 767px) {
  .l-hamburger__line {
    width: 24px;
    height: 18px;
    top: 17px;
    right: 13px;
  }
}
.l-hamburger__line__item {
  position: absolute;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media screen and (max-width: 767px) {
  .l-hamburger__line__item {
    width: 24px;
    height: 2px;
  }
}
.l-hamburger__line__item--1 {
  top: 0;
}
.l-hamburger__line__item--2 {
  top: 10px;
}
@media screen and (max-width: 767px) {
  .l-hamburger__line__item--2 {
    top: 8px;
  }
}
.l-hamburger__line__item--3 {
  top: 20px;
}
@media screen and (max-width: 767px) {
  .l-hamburger__line__item--3 {
    top: 16px;
  }
}
.l-hamburger__line:hover .l-hamburger__line__item--1 {
  top: 2px;
}
.l-hamburger__line:hover .l-hamburger__line__item--3 {
  top: 18px;
}

.l-search {
  position: fixed;
  top: 30px;
  right: 0;
  z-index: 99;
  width: 60px;
  height: 60px;
  border-radius: 10px 0 0 10px;
  background-color: var(--color-secondary);
  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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .l-search {
    width: 50px;
    height: 50px;
    top: 15px;
  }
}
.l-search::after {
  content: "";
  display: block;
  width: 40px;
  height: 5px;
  background-color: var(--color-primary);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 5px 5px 0 0;
  opacity: 0;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.l-search:hover::after {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .l-search::after {
    display: none;
  }
}
.l-search__icon {
  width: 18px;
  height: 18px;
  -webkit-mask-image: url("../img/icon-search.png");
          mask-image: url("../img/icon-search.png");
  -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-search-area {
  position: fixed;
  top: 30px;
  right: -100%;
  width: 500px;
  max-width: 94%;
  height: auto;
  z-index: 200;
  background-color: var(--color-secondary);
  border-radius: 10px 0 0 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 30px 50px;
}
@media screen and (max-width: 767px) {
  .l-search-area {
    top: 15px;
    padding: 20px 25px;
  }
}
.l-search-area__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  -webkit-mask-image: url("../img/icon-close.svg");
          mask-image: url("../img/icon-close.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);
}
@media screen and (max-width: 767px) {
  .l-search-area__close {
    top: 13px;
    right: 13px;
  }
}
.l-search-area__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.l-search-area__form__title {
  color: var(--color-primary);
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 767px) {
  .l-search-area__form__title {
    font-size: 1.6rem;
  }
}
.l-search-area__form__input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
.l-search-area__form__input .search_bar {
  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;
  height: 50px;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px 20px;
}
@media screen and (max-width: 767px) {
  .l-search-area__form__input .search_bar {
    height: 40px;
    padding: 5px 10px;
  }
}
.l-search-area__form__input .search_bar input {
  color: #333;
  font-size: 1.6rem;
  width: 100%;
  background-color: #fff;
  border: none;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 23px;
}
@media screen and (max-width: 767px) {
  .l-search-area__form__input .search_bar input {
    font-size: 1.4rem;
  }
}

.icon-submit_wrap {
  display: flex;
  width: 18px;
  height: 18px;

  border: 0;
  background: transparent;
  cursor: pointer;
  
  transition: 0.3s;
}
.icon-submit_wrap:hover {
  opacity: 0.6;
}

.l-search-area__form__input .search_bar .search_icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 18px;
  width: 18px;
  -webkit-mask-image: url(../img/icon-search.png);
          mask-image: url(../img/icon-search.png);
  -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);
}

.is-search-area-open .l-search-area {
  right: 0;
}

body.is-header-active .l-header {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(30px);
  height: 80px !important;
}
@media screen and (max-width: 767px) {
  body.is-header-active .l-header {
    height: 60px !important;
  }
}
body.is-header-active .l-header__logo {
  color: var(--color-primary);
  width: 100px;
}
@media screen and (max-width: 767px) {
  body.is-header-active .l-header__logo {
    width: 85px;
  }
}
body.is-header-active .l-hamburger,
body.is-header-active .l-search,
body.is-header-active .l-search-area {
  top: 10px;
}
@media only screen and (max-width: 767px) {
  body.is-header-active .l-hamburger,
  body.is-header-active .l-search,
  body.is-header-active .l-search-area {
    top: 5px;
  }
}
body.is-header-active .l-hamburger__nav {
  background-color: transparent;
  backdrop-filter: none;
}
@media screen and (max-width: 1000px) {
  body.is-header-active .l-hamburger__nav {
    background-color: var(--color-primary);
    gap: 1em;
  }
}

/* 表示された時用のCSS */
.is-hamburger-open .l-hamburger__nav {
  width: 320px !important;
  height: auto !important;
  padding: 60px 40px 40px;
}
@media screen and (max-width: 767px) {
  .is-hamburger-open .l-hamburger__nav {
    padding: 60px 30px 30px;
    width: 280px !important;
  }
}
.is-hamburger-open .l-hamburger__nav__item {
  visibility: visible !important;
  opacity: 1 !important;
  -webkit-transition: 0.3s ease-out !important;
  transition: 0.3s ease-out !important;
  -webkit-transition-delay: 0.3s !important;
          transition-delay: 0.3s !important;
}
.is-hamburger-open .l-hamburger__nav__item--contact {
  visibility: visible !important;
  opacity: 1 !important;
  -webkit-transition: 0.3s ease-out !important;
  transition: 0.3s ease-out !important;
  -webkit-transition-delay: 0.3s !important;
          transition-delay: 0.3s !important;
}
.is-hamburger-open .l-hamburger__line__item--1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 10px !important;
}
.is-hamburger-open .l-hamburger__line__item--2 {
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}
.is-hamburger-open .l-hamburger__line__item--3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 10px !important;
}

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

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

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

/* ============================================
  サービス・採用に関するお問い合わせ
============================================  */
.l-contact {
  color: #fff;
  padding: 60px 0;
  background-color: var(--color-primary);
  position: relative;
  z-index: 2;
}
.l-contact__two-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media only screen and (max-width: 1000px) {
  .l-contact__two-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-contact__two-column__col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.l-contact__two-column__title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .l-contact__two-column__title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}
.l-contact__two-column__note {
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: center;
  font-weight: medium;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .l-contact__two-column__note {
    font-size: 1.4rem;
    margin-top: 15px;
  }
}
.l-contact__two-column__tel {
  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: 15px;
  font-family: "Roboto";
  font-size: 5rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .l-contact__two-column__tel {
    font-size: 3rem;
    gap: 10px;
  }
}
.l-contact__two-column__tel a {
  color: #fff;
  text-decoration: none;
}
.l-contact__two-column__tel::before {
  content: "";
  display: block;
  width: 40px;
  height: 44px;
  background-image: url(../img/icon-smartphone.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.l-contact__two-column__contactform {
  display: block;
  text-decoration: none;
  background-color: #fff;
  width: 100%;
  border-radius: 10px;
  color: var(--color-primary);
  font-size: 2.4rem;
  font-weight: bold;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-contact__two-column__contactform {
    font-size: 2.2rem;
  }
}
.l-contact__two-column__contactform::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-secondary);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}
.l-contact__two-column__contactform span {
  position: relative;
  z-index: 1;
  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: 1rem;
  padding: 25px;
}
@media screen and (max-width: 767px) {
  .l-contact__two-column__contactform span {
    padding: 20px;
  }
}
.l-contact__two-column__contactform span::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  -webkit-mask-image: url(../img/icon-mail.svg);
          mask-image: url(../img/icon-mail.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--color-primary);
}
.l-contact__two-column__contactform:hover::before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

/* ============================================
  footer
============================================  */
.l-footer {
  background-color: #F7F7F7;
  padding: 60px 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding-bottom: 80px;
  }
}
.l-footer__nav {
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em 2em;
  width: 100%;
  margin: 0 auto 60px;

  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.no-link:hover {
  text-decoration: none !important;
}

.l-footer__nav__service {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (max-width: 767px) {
  .l-footer__nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1.4rem;
  }
}
.l-footer__nav__item {
  text-decoration: none;
  position: relative;
  font-weight: bold;
  margin-bottom: 8px;

  display: flex;
  justify-content: flex-start;
  gap: 5px;
  align-items: center;
}
.l-footer__nav__item::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}
.l-footer__nav__item_child {
  text-decoration: none;
  line-height: 2.6rem;
  padding-left: 11px;
}
.l-footer__nav__item_child:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1100px) {
  .l-footer__nav {
    gap: 3em 2em;
  }
  .l-footer__nav__wrap {
    width: 30%;
  }
}

@media screen and (max-width: 767px) {
  .l-footer__nav__wrap {
    width: 45%;
  }
}
@media screen and (max-width: 640px) {
  .l-footer__nav {
    gap: 1.5em 2em;
  }
  .l-footer__nav__wrap {
    width: 100%;
  }
}



@media screen and (max-width: 767px) {
  .l-footer__nav__item::after {
    display: none;
  }
}
.l-footer__nav__item:last-child:after {
  display: none;
}
.l-footer__nav__item:hover {
  text-decoration: underline;
}
.l-footer__company {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .l-footer__company {
    margin-bottom: 30px;
  }
}
.l-footer__company__logoarea {
  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 20px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .l-footer__company__logoarea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-footer__company__logoarea__logo {
  width: 160px;
}
.l-footer__company__logoarea__name {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .l-footer__company__logoarea__name {
    font-size: 1.6rem;
  }
}
.l-footer__company__address {
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-footer__company__address {
    font-size: 1.4rem;
  }
}
.l-footer__copyright {
  font-size: 1.4rem;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    font-size: 1.2rem;
  }
}

/* ============================================
  pagetop
============================================  */
.l-footer__pagetop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 10;
  border-radius: 5px;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(39, 56, 133, 0.7);
  -webkit-box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.16);
  cursor: pointer;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  /* 非表示にする */
  opacity: 0;
  visibility: hidden;
}
.l-footer__pagetop svg {
  fill: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-footer__pagetop:hover {
  background-color: rgb(39, 56, 133);
}

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


/* ============================================
  トップページ
============================================  */

/* 共通
============================================  */
.p-top-h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25em 1em;
  margin-bottom: 40px;
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-top-h2 {
    font-size: 1.8rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-bottom: 20px;
  }
}
.p-top-h2__title {
  color: #D9DFE6;
  font-family: "Roboto";
  font-size: 7rem;
}
@media screen and (max-width: 767px) {
  .p-top-h2__title {
    font-size: 4rem;
  }
}
.p-top-h2__title span {
  color: var(--color-primary);
}

/* メインビジュアル
============================================  */
.p-top-mainvisual {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  position: relative;
  background-color: var(--color-primary);
}
.p-top-mainvisual .l-inner {
  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: 2;
}
.p-top-mainvisual__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.p-top-mainvisual__video video {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%,-50%);
  width: 177.77777778vh;
  height: 56.25vw;
  min-height: 100%;
  min-width: 100%;
}
.p-top-mainvisual__video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(39, 56, 133, 0.4);
  z-index: 3;
}
.p-top-mainvisual__video img {
width: 100%;
height: 100%;
object-fit: cover;
}
.p-top-mainvisual__copy {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  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: 35px;
}
@media screen and (min-width: 768px) {
  .p-top-mainvisual__copy {
    max-width: calc(100% - 200px);
  }
}
.p-top-mainvisual__copy__main {
  opacity: 0;
  -webkit-transition: 1s ease-out;
  transition: 1s ease-out;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.p-top-mainvisual__copy__sub {
  font-size: 2.4rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  opacity: 0;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media screen and (max-width: 1000px) {
  .p-top-mainvisual__copy__sub {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mainvisual__copy__sub {
    font-size: 1.3rem;
  }
}
.p-top-mainvisual__copy__sub::before {
  content: "";
  display: block;
  width: 100%;
  max-width: 240px;
  height: 1px;
  background-color: #fff;
}
.p-top-mainvisual__copy__sub span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-top-mainvisual__scroll-down {
  position: absolute;
  right: 90px;
  bottom: 40px;
  z-index: 2;
  text-shadow: 1px 1px 2px rgba(15, 15, 35, 0.6);
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .p-top-mainvisual__scroll-down {
    right: 20px;
    bottom: 20px;
  }
}
.p-top-mainvisual__scroll-down a {
  text-decoration: none;
  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;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-top-mainvisual__scroll-down a {
    gap: 10px;
  }
}
.p-top-mainvisual__scroll-down__text {
  color: #fff;
  font-family: "Roboto";
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-top-mainvisual__scroll-down__text {
    font-size: 1.2rem;
  }
}
.p-top-mainvisual__scroll-down__arrow {
  width: 100px;
  height: 100px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: relative;
  margin-inline: auto;
  -webkit-animation: pulse 1.5s ease-in-out infinite;
          animation: pulse 1.5s ease-in-out infinite;
  background-color: rgba(39, 56, 133, 0.8);
  backdrop-filter: blur(30px);
  -webkit-box-shadow: 0 0 20px rgb(255, 255, 255);
          box-shadow: 0 0 20px rgb(255, 255, 255);
}
@media screen and (max-width: 767px) {
  .p-top-mainvisual__scroll-down__arrow {
    width: 50px;
    height: 50px;
  }
}
.p-top-mainvisual__scroll-down__arrow::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  -webkit-mask-image: url(../../img/icon-scrolldown-arrow.svg);
          mask-image: url(../../img/icon-scrolldown-arrow.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
  width: 36px;
  height: 32px;
}
@media screen and (max-width: 767px) {
  .p-top-mainvisual__scroll-down__arrow::after {
    width: 18px;
    height: 16px;
  }
}
.p-top-mainvisual.is-loaded-active .p-top-mainvisual__video {
  opacity: 1;
}
.p-top-mainvisual.is-loaded-active .p-top-mainvisual__copy__main {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.p-top-mainvisual.is-loaded-active .p-top-mainvisual__copy__sub {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.p-top-mainvisual.is-loaded-active .p-top-mainvisual__scroll-down {
  opacity: 1;
  -webkit-transition-delay: 2.5s;
          transition-delay: 2.5s;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* linees
============================================  */
main {
  position: relative;
}
main .p-top-linees__line {
  position: absolute;
  width: 1px;
  height: 1950px;
  background-color: #C0C7E5;
  z-index: 0;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: all 2s ease-in-out;
  transition: all 2s ease-in-out;
}
main .p-top-linees__line--1 {
  top: 50px;
  left: 50%;
  margin-left: -1030px;
  -webkit-transform: rotate(-56deg) scaleY(0);
          transform: rotate(-56deg) scaleY(0);
}
main .p-top-linees__line--1.is-scroll-animation-active {
  -webkit-transform: rotate(-56deg) scaleY(1);
          transform: rotate(-56deg) scaleY(1);
}
main .p-top-linees__line--2 {
  top: 840px;
  left: 50%;
  margin-left: 800px;
  -webkit-transform: rotate(56deg) scaleY(0);
          transform: rotate(56deg) scaleY(0);
}
main .p-top-linees__line--2.is-scroll-animation-active {
  -webkit-transform: rotate(56deg) scaleY(1);
          transform: rotate(56deg) scaleY(1);
}
main .p-top-linees__line--3 {
  top: 1830px;
  left: 50%;
  margin-left: -860px;
  -webkit-transform: rotate(-56deg) scaleY(0);
          transform: rotate(-56deg) scaleY(0);
}
main .p-top-linees__line--3.is-scroll-animation-active {
  -webkit-transform: rotate(-56deg) scaleY(1);
          transform: rotate(-56deg) scaleY(1);
}

/* About
============================================  */
.p-top-about {
  padding: 100px 0 250px;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#F6FBFF), to(#C9E5FE));
  background-image: linear-gradient(to right bottom, #F6FBFF, #C9E5FE);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1400px) {
  .p-top-about {
    min-height: 900px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about {
    min-height: auto;
    padding: 50px 0 180px;
  }
}
.p-top-about__inner {
  margin-right: calc(var(--container-margin) / 2);
  margin-left: calc(var(--container-margin) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px 80px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1400px) {
  .p-top-about__inner {
    margin-right: var(--container-margin);
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__inner {
    margin-left: var(--container-margin);
    -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-top-about__main-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 300px;
  height: 300px;
}
@media screen and (max-width: 767px) {
  .p-top-about__main-image {
    width: 80%;
    height: auto;
  }
}
.p-top-about__main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-about__contents-area {
  display: flex;
  flex-direction: column;
  gap: 20px 80px;
}
@media only screen and (max-width: 1400px) {
  .p-top-about__contents-area {
    flex-direction: column;
  }
}
.p-top-about__contents-area__contents__title {
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 1000px) {
  .p-top-about__contents-area__contents__title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__contents-area__contents__title {
    font-size: 1.8rem;
  }
}
.p-top-about__contents-area__contents__title span {
  font-size: 5rem;
  color: var(--color-primary);
}
@media screen and (max-width: 1000px) {
  .p-top-about__contents-area__contents__title span {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__contents-area__contents__title span {
    font-size: 2.6rem;
  }
}
.p-top-about__contents-area__contents__text {
  font-size: 1.6rem;
  line-height: 1.875;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-top-about__contents-area__contents__text {
    font-size: 1.4rem;
    margin-top: 20px;
  }
}
.p-top-about__contents-area__sub-image {
  flex-shrink: 0;
  width: 217px;
  height: 217px;

  margin-top: 180px;

  position: relative;
  /*
  position: absolute;
  top: 180px;
  right: calc(var(--container-margin) / -2);
    */
}
@media only screen and (max-width: 1400px) {
  .p-top-about__contents-area__sub-image {
    margin-top: 0;
    position: absolute;
    left: 120px;
    top: 330px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__contents-area__sub-image {
    position: relative;
    top: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 420px) {
  .p-top-about__contents-area__sub-image {
    margin-right: 0;
  }
}
.p-top-about__contents-area__sub-image__item--01 {
  width: 217px;
  height: 217px;
}
.p-top-about__contents-area__sub-image__item--02 {
  position: absolute;
  right: calc(100% - 100px);
  top: calc(100% - 65px);
  width: 148px;
  height: 148px;
}
.p-top-about__contents-area__sub-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-about__infiniteslide {
  width: 100%;
  position: absolute;
  bottom: -5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-top-about__infiniteslide {
    bottom: -1.8%;
  }
}
.p-top-about__infiniteslide__text {
  color: #fff;
  font-size: 20rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-top-about__infiniteslide__text {
    font-size: 10rem;
  }
}

.infinite-slider {
  overflow: hidden;
  white-space: nowrap;
}

.infinite-slider-inner {
  display: inline-block;
  -webkit-animation: scroll 60s linear infinite;
          animation: scroll 60s linear infinite; /* 50秒で一周、等速、無限 */
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  } /* 半分まで行ったらループ */
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  } /* 半分まで行ったらループ */
}

/* コンテンツ
============================================  */
.p-top-contents {
  padding: 100px 0 150px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top-contents {
    padding: 50px 0 100px;
  }
}
.p-top-contents__item {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .p-top-contents__item {
    padding-bottom: 50px;
  }
}
.p-top-contents__item:last-child {
  padding-bottom: 0;
}

/* 製品・サービス
============================================  */
.p-top-service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
  .p-top-service-list {
    gap: 20px;
  }
}
.p-top-service-list__item {
  display: block;
  width: calc(33.333% - 26.666px);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px 20px 32% 20px;
  text-decoration: none;
  overflow: hidden;
  border-radius: 10px;
  background-color: var(--color-primary);
  position: relative;
  opacity: 0;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 1000px) {
  .p-top-service-list__item {
    width: calc(50% - 10px);
    padding: 20px 20px 42% 20px;
  }
}
.p-top-service-list__item--monicam {
  background-image: url(../../img/service-monicam.jpg);
}
.p-top-service-list__item--alarm {
  background-image: url(../../img/service-alarm.jpg);
}
.p-top-service-list__item--starlink {
  background-image: url(../../img/service-starlink.jpg);
}
.p-top-service-list__item--drone {
  background-image: url(../../img/service-drone.jpg);
}
.p-top-service-list__item--weather {
  background-image: url(../../img/service-weather.jpg);
}
.p-top-service-list__item--other {
  background-image: url(../../img/service-other.jpg);
}
.p-top-service-list__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(39, 56, 133)), to(rgba(39, 56, 133, 0)));
  background: linear-gradient(to bottom, rgb(39, 56, 133), rgba(39, 56, 133, 0));
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.p-top-service-list__item__title {
  color: #fff;
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  position: relative;
  z-index: 2;
  padding-right: 36px;
}
@media screen and (max-width: 1000px) {
  .p-top-service-list__item__title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-service-list__item__title {
    font-size: 1.4rem;
  }
}
.p-top-service-list__item__title::before {
  content: "";
  position: absolute;
  top: 0;
  right: 25px;
  display: block;
  width: 1px;
  height: 100%;
  background-color: #fff;
}
.p-top-service-list__item__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 12px;
  height: 10px;
  border-left: 1px solid #fff;
  -webkit-mask-image: url(../img/icon-arrow.png);
          mask-image: url(../img/icon-arrow.png);
  -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;
}
.p-top-service-list__item:hover {
  background-size: 110% 110%;
}
.p-top-service-list__item:hover::after {
  height: 50%;
}
.p-top-service-list__item:hover .p-top-service-list__item__title::after {
  -webkit-animation: fade-arrow 0.6s forwards;
          animation: fade-arrow 0.6s forwards;
}
.p-top-service-list.is-scroll-animation-active .p-top-service-list__item {
  -webkit-animation: fadeUp 0.8s ease-out forwards;
          animation: fadeUp 0.8s ease-out forwards;
}
.p-top-service-list.is-scroll-animation-active .p-top-service-list__item:nth-child(1) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.p-top-service-list.is-scroll-animation-active .p-top-service-list__item:nth-child(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.p-top-service-list.is-scroll-animation-active .p-top-service-list__item:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.p-top-service-list.is-scroll-animation-active .p-top-service-list__item:nth-child(4) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.p-top-service-list.is-scroll-animation-active .p-top-service-list__item:nth-child(5) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.p-top-service-list.is-scroll-animation-active .p-top-service-list__item:nth-child(6) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

/* 製品検索
============================================  */
.p-top-search {
  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;
  padding: 50px 70px 60px;
  background-color: var(--color-primary);
  border-radius: 10px;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-search {
    gap: 20px;
    padding: 30px 15px 40px;
  }
}
.p-top-search::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 659px;
  width: 814px;
  height: 237px;
  -webkit-mask-image: url(../../img/search-mountain.svg);
          mask-image: url(../../img/search-mountain.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);
  z-index: -1;
}
@media screen and (max-width: 1000px) {
  .p-top-search::before {
    top: -100px;
    left: 500px;
    width: 500px;
    height: 150px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-search::before {
    top: -60px;
    left: auto;
    right: -120px;
    width: 300px;
    height: 100px;
  }
}
.p-top-search__form {
  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;
}
@media screen and (max-width: 1000px) {
  .p-top-search__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top-search__form__title {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 767px) {
  .p-top-search__form__title {
    font-size: 1.8rem;
  }
}
.p-top-search__form__input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 450px;
}
@media screen and (max-width: 1000px) {
  .p-top-search__form__input {
    width: 100%;
  }
}
.p-top-search__form__input .search_bar {
  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;
  height: 50px;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px 20px;
}
@media screen and (max-width: 767px) {
  .p-top-search__form__input .search_bar {
    height: 40px;
    padding: 5px 10px;
  }
}
.p-top-search__form__input .search_bar input {
  color: #333;
  font-size: 1.6rem;
  width: 100%;
  background-color: #fff;
  border: none;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 23px;
}
@media screen and (max-width: 767px) {
  .p-top-search__form__input .search_bar input {
    font-size: 1.4rem;
  }
}
.p-top-search__form__input .search_bar .search_icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 18px;
  width: 18px;
  -webkit-mask-image: url(../img/icon-search.png);
          mask-image: url(../img/icon-search.png);
  -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);
}
.p-top-search__tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1em 2em;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-top-search__tag-list {
    gap: 0.5em 1em;
    font-size: 1.4rem;
  }
}
.p-top-search__tag-list li::before {
  content: "#";
}
.p-top-search__tag-list li a {
  text-decoration: none;
}
.p-top-search__tag-list li a:hover {
  text-decoration: underline;
}

/* ピックアップ
============================================  */
.p-top-pickup-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
  .p-top-pickup-list {
    gap: 20px;
  }
}
.p-top-pickup-list__item {
  display: block;
  width: calc(33.333% - 26.666px);
  background-color: #D9DFE6;
  border: solid 1px var(--color-primary);
  padding: 20px 20px 23% 20px;
  text-decoration: none;
  overflow: hidden;
  border-radius: 10px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  position: relative;
  opacity: 0;
}
@media screen and (max-width: 1000px) {
  .p-top-pickup-list__item {
    width: calc(50% - 10px);
    padding: 20px 20px 32% 20px;
  }
}
.p-top-pickup-list__item {
  background-blend-mode: multiply;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.p-top-pickup-list__item--example {
  background-image: url(../../img/pickup-example.png);
}
.p-top-pickup-list__item--qa {
  background-image: url(../../img/pickup-qa.png);
}
.p-top-pickup-list__item--information {
  background-image: url(../../img/pickup-information.png);
}
.p-top-pickup-list__item__title {
  color: var(--color-primary);
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  position: relative;
  z-index: 2;
  padding-right: 36px;
}
@media screen and (max-width: 1000px) {
  .p-top-pickup-list__item__title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-pickup-list__item__title {
    font-size: 1.4rem;
  }
}
.p-top-pickup-list__item__title::before {
  content: "";
  position: absolute;
  top: 0;
  right: 25px;
  display: block;
  width: 1px;
  height: 100%;
  background-color: var(--color-primary);
}
.p-top-pickup-list__item__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 12px;
  height: 10px;
  -webkit-mask-image: url(../img/icon-arrow.png);
          mask-image: url(../img/icon-arrow.png);
  -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);
}
.p-top-pickup-list__item:hover {
  background-color: var(--color-primary);
  color: #fff;
}
.p-top-pickup-list__item:hover .p-top-pickup-list__item__title {
  color: #fff;
}
.p-top-pickup-list__item:hover .p-top-pickup-list__item__title::before {
  background-color: #fff;
}
.p-top-pickup-list__item:hover .p-top-pickup-list__item__title::after {
  background-color: #fff;
}
.p-top-pickup-list__item:hover .p-top-pickup-list__item__title::after {
  -webkit-animation: fade-arrow 0.6s forwards;
          animation: fade-arrow 0.6s forwards;
}
.p-top-pickup-list.is-scroll-animation-active .p-top-pickup-list__item {
  -webkit-animation: fadeUp 0.8s ease-out forwards;
          animation: fadeUp 0.8s ease-out forwards;
}
.p-top-pickup-list.is-scroll-animation-active .p-top-pickup-list__item:nth-child(1) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.p-top-pickup-list.is-scroll-animation-active .p-top-pickup-list__item:nth-child(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.p-top-pickup-list.is-scroll-animation-active .p-top-pickup-list__item:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.p-top-pickup-list.is-scroll-animation-active .p-top-pickup-list__item:nth-child(4) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.p-top-pickup-list.is-scroll-animation-active .p-top-pickup-list__item:nth-child(5) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.p-top-pickup-list.is-scroll-animation-active .p-top-pickup-list__item:nth-child(6) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

/* fadeArrow
------------------------- */
@-webkit-keyframes fade-arrow {
  0% {
    -webkit-transform: translateX(0) translateY(-50%);
            transform: translateX(0) translateY(-50%);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(100%) translateY(-50%);
            transform: translateX(100%) translateY(-50%);
    opacity: 0;
  }
  51% {
    -webkit-transform: translateX(-100%) translateY(-50%);
            transform: translateX(-100%) translateY(-50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0) translateY(-50%);
            transform: translateX(0) translateY(-50%);
    opacity: 1;
  }
}
@keyframes fade-arrow {
  0% {
    -webkit-transform: translateX(0) translateY(-50%);
            transform: translateX(0) translateY(-50%);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(100%) translateY(-50%);
            transform: translateX(100%) translateY(-50%);
    opacity: 0;
  }
  51% {
    -webkit-transform: translateX(-100%) translateY(-50%);
            transform: translateX(-100%) translateY(-50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0) translateY(-50%);
            transform: translateX(0) translateY(-50%);
    opacity: 1;
  }
}
/* fadeUp
------------------------- */
@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* ============================================
  PC／SPのみ表示
============================================  */
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

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

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

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

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

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

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

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

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

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

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

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

/* ============================================
  icon
============================================  */
.u-blank::after {
  content: "";
  width: 16px;
  height: 15px;
  background-image: url(../img/icon-blank.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;
}

/* ============================================
  Scroll Animation
============================================  */
/* fadeUp
------------------------- */
.a-fadeUp {
  opacity: 0;
}
.a-fadeUp.is-scroll-animation-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(20px);
            transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

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

/* curtain
------------------------- */
.a-curtain {
  overflow: hidden;
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.a-curtain::after {
  background-color: var(--color-primary);
  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-scroll-animation-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-scroll-animation-active > div, .a-curtain.is-scroll-animation-active > img {
  opacity: 1;
}