@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");
/* ============================================
  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: #153169;
  --color-secondary: #e86b02;
  --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: 120px;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 80px;
  }
}

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;
}
@media screen and (max-width: 767px) {
  body {
    overflow-x: none;
  }
}
body.is-load {
  opacity: 0;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
body.is-load.active {
  opacity: 1;
}

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

sup {
  vertical-align: super;
}

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

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

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

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

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

/* ============================================
  header
============================================  */
.l-header {
  position: fixed;
  top: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 80;
  height: 80px;
  max-width: 1100px;
  width: 88%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-header {
    width: 88%;
  }
}
.l-header {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(30px) brightness(115%);
  border-radius: 10px;
  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;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding-left: 300px;
}
@media only screen and (max-width: 1100px) {
  .l-header {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 50px;
    top: 10px;
    border-radius: 6px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
.l-header ._logo {
  position: absolute;
  top: 8px;
  left: 20px;
  width: 232px;
  height: 66px;
}
@media screen and (max-width: 767px) {
  .l-header ._logo {
    width: 120px;
    height: 50px;
    left: 10px;
  }
}
.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: 2em;
  font-size: 1.7rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 1100px) {
  .l-header ._nav {
    opacity: 0;
    height: 0;
    visibility: hidden;
    height: auto;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 100px 20px 20px 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-header ._nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    padding: 80px 20px 20px 20px;
  }
}
.l-header ._nav ._item {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  text-align: center;
}
.l-header ._nav ._item::before {
  content: "";
  position: absolute;
  bottom: -0.5em;
  left: -5%;
  display: block;
  width: 110%;
  height: 0.2em;
  background-color: var(--color-primary);
  opacity: 0.8;
  -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-header ._nav ._item span {
  position: relative;
  z-index: 1;
}
.l-header ._nav ._item:hover::before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.l-header ._nav ._lang {
  padding-top: 3px;
}
.l-header ._nav ._lang a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-header ._nav ._lang {
  /* Googleが生成する枠（テーブル構造）の改行を禁止する */
}
.l-header ._nav ._lang .goog-te-gadget-simple {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important; /* 要素を横並びに固定 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header ._nav ._contact {
  display: block;
  text-decoration: none;
  height: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(#4A6BA8), to(#112843));
  background-image: linear-gradient(90deg, #4A6BA8, #112843);
  border: solid 1px #fff;
  border-radius: 0 10px 10px 0;
  color: #fff;
  font-size: 1.7rem;
  font-weight: bold;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 1100px) {
  .l-header ._nav ._contact {
    border-radius: 10px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-header ._nav ._contact {
    width: 100%;
  }
}
.l-header ._nav ._contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-secondary);
  mix-blend-mode: hard-light;
  -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-header ._nav ._contact 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: 0.5rem;
  height: 100%;
  width: 190px;
}
@media only screen and (max-width: 1100px) {
  .l-header ._nav ._contact span {
    width: 100%;
  }
}
.l-header ._nav ._contact span::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../img/icon_mail.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.l-header ._nav ._contact:hover::before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.header-active .l-header {
  top: 10px;
  -webkit-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.16);
          box-shadow: 0 10px 50px rgba(0, 0, 0, 0.16);
}

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

hamburger

============================================  */
.l-hamburger {
  display: none;
}
@media only screen and (max-width: 1100px) {
  .l-hamburger {
    display: block;
  }
}
.l-hamburger ._line {
  position: fixed;
  right: calc(var(--container-margin) + 10px);
  top: 26px;
  width: 40px;
  height: 17px;
  cursor: pointer;
  z-index: 100;
}
@media only screen and (min-width: 768px) {
  .l-hamburger ._line {
    top: 52px;
    right: calc(var(--container-margin) + 20px);
  }
}
.l-hamburger ._line ._item {
  position: absolute;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: #777;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.l-hamburger ._line ._item--1 {
  top: 0;
}
.l-hamburger ._line ._item--2 {
  top: 8px;
}
.l-hamburger ._line ._item--3 {
  bottom: 0;
}
.l-hamburger ._line:hover ._item--1 {
  top: 2px;
}
.l-hamburger ._line:hover ._item--3 {
  bottom: 2px;
}

/* 表示された時用のCSS */
.is-open .l-header {
  max-height: calc(var(--vh) * 100 - 20px);
  height: 376px;
}
@media only screen and (min-width: 768px) {
  .is-open .l-header {
    height: 160px;
  }
}
.is-open .l-header ._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;
}

/* ============================================
  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;
  background-image: url(../img/bg_footer-contact.png), -webkit-gradient(linear, left top, right top, from(#0F1D52), to(#2958B5));
  background-image: url(../img/bg_footer-contact.png), linear-gradient(90deg, #0F1D52, #2958B5);
  background-size: contain, auto;
  background-position: left center, center;
  background-repeat: no-repeat;
  padding: 60px 0;
}
@media only screen and (max-width: 1000px) {
  .l-contact {
    background-image: -webkit-gradient(linear, left top, right top, from(#0F1D52), to(#2958B5));
    background-image: linear-gradient(90deg, #0F1D52, #2958B5);
    background-size: auto;
    background-position: center;
  }
}
.l-contact > .l-inner > ._title {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-contact > .l-inner > ._title {
    font-size: 2.4rem;
  }
}
.l-contact ._text {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .l-contact ._text {
    font-size: 1.6rem;
    margin-top: 15px;
  }
}
.l-contact ._two-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-top: 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: 26px;
  height: 42px;
  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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
@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);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.l-contact ._two-column ._contactform:hover {
  color: #fff;
}
.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);
}
.l-contact ._two-column ._contactform:hover span::before {
  background-color: #fff;
}

/* ============================================
  footer
============================================  */
.l-footer {
  background-color: #F7F7F7;
  padding: 60px 0;
}
@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: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
}
@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;
}
@media screen and (max-width: 767px) {
  .l-footer ._nav ._item {
    width: calc(50% - 1em);
  }
}
.l-footer ._nav ._item::after {
  content: "｜";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -1.5em;
}
@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: 232px;
}
.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-pagetop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 10;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(21, 49, 105, 0.7);
  cursor: pointer;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  /* 非表示にする */
  opacity: 0;
  visibility: hidden;
}
.l-pagetop svg {
  fill: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-pagetop:hover {
  background-color: rgb(21, 49, 105);
}

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

/* ============================================
  btn
============================================  */
/* gradientBtn
------------------------- */
.c-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  text-decoration: none;
  border-radius: 6px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-image: -webkit-gradient(linear, left top, right top, from(#4A6BA8), to(#112843));
  background-image: linear-gradient(to right, #4A6BA8 0%, #112843 100%);
  position: relative;
  overflow: hidden;
}
.c-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-secondary);
  mix-blend-mode: hard-light;
  -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;
}
.c-btn span {
  position: relative;
  z-index: 1;
  display: block;
  padding: 20px 60px 20px 20px;
  min-width: 280px;
}
.c-btn span::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 3px;
  background-color: #fff;
}
.c-btn span::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 28px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 0.8rem;
  height: 0.8rem;
  border-top: solid 2px var(--color-primary);
  border-right: solid 2px var(--color-primary);
}
.c-btn:hover::before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.c-btn:hover span::after {
  -webkit-animation-name: fade-arrow;
          animation-name: fade-arrow;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fade-arrow {
  0% {
    -webkit-transform: translateX(0) translateY(-50%) rotate(45deg);
            transform: translateX(0) translateY(-50%) rotate(45deg);
    opacity: 1;
    border-top: solid 2px var(--color-primary);
    border-right: solid 2px var(--color-primary);
  }
  50% {
    -webkit-transform: translateX(100%) translateY(-50%) rotate(45deg);
            transform: translateX(100%) translateY(-50%) rotate(45deg);
    opacity: 0;
    border-top: solid 2px var(--color-primary);
    border-right: solid 2px var(--color-primary);
  }
  51% {
    -webkit-transform: translateX(-100%) translateY(-50%) rotate(45deg);
            transform: translateX(-100%) translateY(-50%) rotate(45deg);
    opacity: 0;
    border-top: solid 2px var(--color-secondary);
    border-right: solid 2px var(--color-secondary);
  }
  100% {
    -webkit-transform: translateX(0) translateY(-50%) rotate(45deg);
            transform: translateX(0) translateY(-50%) rotate(45deg);
    opacity: 1;
    border-top: solid 2px var(--color-secondary);
    border-right: solid 2px var(--color-secondary);
  }
}

@keyframes fade-arrow {
  0% {
    -webkit-transform: translateX(0) translateY(-50%) rotate(45deg);
            transform: translateX(0) translateY(-50%) rotate(45deg);
    opacity: 1;
    border-top: solid 2px var(--color-primary);
    border-right: solid 2px var(--color-primary);
  }
  50% {
    -webkit-transform: translateX(100%) translateY(-50%) rotate(45deg);
            transform: translateX(100%) translateY(-50%) rotate(45deg);
    opacity: 0;
    border-top: solid 2px var(--color-primary);
    border-right: solid 2px var(--color-primary);
  }
  51% {
    -webkit-transform: translateX(-100%) translateY(-50%) rotate(45deg);
            transform: translateX(-100%) translateY(-50%) rotate(45deg);
    opacity: 0;
    border-top: solid 2px var(--color-secondary);
    border-right: solid 2px var(--color-secondary);
  }
  100% {
    -webkit-transform: translateX(0) translateY(-50%) rotate(45deg);
            transform: translateX(0) translateY(-50%) rotate(45deg);
    opacity: 1;
    border-top: solid 2px var(--color-secondary);
    border-right: solid 2px var(--color-secondary);
  }
}
/* ============================================
  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;
}

/* ============================================
  共通
============================================  */
.f-section {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .f-section {
    padding: 50px 0;
  }
}

.f-h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 1rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .f-h2 {
    margin-bottom: 2rem;
  }
}
.f-h2 ._en {
  font-size: 7rem;
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .f-h2 ._en {
    font-size: 3.5rem;
  }
}
.f-h2 ._jp {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .f-h2 ._jp {
    font-size: 1.5rem;
  }
}

.f-copy {
  font-family: "Noto Serif JP", serif;
  color: var(--color-primary);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.6;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .f-copy {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}

.f-text {
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .f-text {
    font-size: 1.6rem;
  }
}

.f-btn {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .f-btn {
    margin-top: 2rem;
  }
}

/* ============================================
  メインビジュアル
============================================  */
.f-mainvisual {
  position: relative;
  height: 100vh;
  height: calc(var(--vh) * 100);
  width: calc(var(--vw) * 100);
  overflow: hidden;
}
.f-mainvisual ._movie {
  position: absolute;
  width: 100%;
  height: 100%;
  /*
  background-image: url(../../img/mv.jpg);
  background-size: cover;
  */
}
.f-mainvisual ._movie .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.f-mainvisual ._movie .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 49, 105, 0.4); 
  z-index: 2;
}
.f-mainvisual ._copyarea {
  width: 100%;
  height: calc(100% - 100px);
  position: relative;
  margin-top: 100px;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._copyarea {
    height: calc(100% - 70px);
    margin-top: 70px;
  }
}
.f-mainvisual ._copy01,
.f-mainvisual ._copy02 {
  font-family: "Noto Serif JP", serif;
  font-size: min(13vh, 14rem);
  font-weight: bold;
  background: rgba(255, 255, 255, 0.7);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._copy01,
  .f-mainvisual ._copy02 {
    font-size: 7rem;
  }
}
.f-mainvisual ._copy01 {
  right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; /* 横方向を右に寄せる */
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
.f-mainvisual ._copy01 span {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.f-mainvisual ._copy02 {
  left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; /* 横方向を右に寄せる */
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.f-mainvisual ._copy02 span {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.f-mainvisual ._copy03 {
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.25em;
  line-height: 2;
  color: #fff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1.1);
          transform: translateX(-50%) translateY(-50%) scale(1.1);
  opacity: 0;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  height: 90%;
  max-height: 500px;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._copy03 {
    font-size: 1.5rem;
    max-height: 320px;
  }
}
.f-mainvisual ._copy03 span {
  display: inline-block;
  color: #333;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(30px) brightness(115%);
  border-radius: 3px;
  line-height: 1;
  padding: 5px;
  margin-top: 5px;
}
.f-mainvisual.is-loaded.active ._copy01 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.f-mainvisual.is-loaded.active ._copy02 {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.f-mainvisual.is-loaded.active ._copy03 {
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
          transform: translateX(-50%) translateY(-50%) scale(1);
  -webkit-transition-delay: 1.9s;
          transition-delay: 1.9s;
}

/* ============================================
  酒井塗装店とは
============================================  */
#about {
  background-image: url(../../img/old_wall.png);
  background-repeat: repeat;
  background-position: center;
  background-size: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  #about {
    padding-bottom: 120px;
  }
}
#about::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../img/about_bg.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  opacity: 0;
  -webkit-transition: 3s;
  transition: 3s;
}
@media only screen and (max-width: 1000px) {
  #about::before {
    background-image: unset;
  }
}
#about.is-active::before {
  content: "";
  opacity: 1;
}
#about ._inner {
  position: relative;
  margin-left: calc(var(--container-margin) + 280px);
  margin-right: var(--container-margin);
}
@media only screen and (max-width: 1000px) {
  #about ._inner {
    margin-left: var(--container-margin);
  }
}
#about ._images {
  position: absolute;
  right: 115px;
  bottom: -70px;
}
@media screen and (max-width: 767px) {
  #about ._images {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 40px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
#about ._images ._img {
  overflow: hidden;
}
#about ._images ._img.--01 {
  width: 175px;
  height: 145px;
}
#about ._images ._img.--02 {
  position: absolute;
  top: 15px;
  left: calc(100% - 15px);
  width: 172px;
  height: 212px;
}
#about ._images ._img img {
  -o-object-fit: cover;
     object-fit: cover;
}

/* ============================================
  サービス
============================================  */
#service ._inner {
  margin-left: var(--container-margin);
  margin-right: 0;
}
@media only screen and (max-width: 1000px) {
  #service ._inner {
    margin-left: var(--container-margin);
  }
}
#service ._two-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px 60px;
}
@media only screen and (max-width: 1000px) {
  #service ._two-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#service ._two-column ._contents {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 420px;
}
@media only screen and (max-width: 1000px) {
  #service ._two-column ._contents {
    width: 100%;
    padding-right: var(--container-margin);
  }
}
#service ._two-column ._slide {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}
#service ._two-column .swiper {
  position: relative;
}
#service ._two-column .swiper-slide {
  width: 520px;
}
@media screen and (max-width: 767px) {
  #service ._two-column .swiper-slide {
    width: 260px;
  }
}
#service ._two-column .swiper-slide ._img {
  width: 100%;
  padding-top: 70%;
  position: relative;
  overflow: hidden;
}
#service ._two-column .swiper-slide ._img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
#service ._two-column .swiper-slide figcaption {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  #service ._two-column .swiper-slide figcaption {
    font-size: 1.4rem;
  }
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: -25px !important;
}

.swiper-pagination-bullet {
  background: #ddd !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background: var(--color-primary) !important;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 12px !important;
}

.swiper-button-next {
  right: 0 !important;
  top: 180px !important;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 60px !important;
  height: 80px !important;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 5px 0 0 5px;
  margin-top: 0 !important;
  background-image: url(../../img/icon_swiper-arrow.svg) !important;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .swiper-button-next {
    background-size: 12px 44px !important;
    width: 30px !important;
    height: 40px !important;
    top: 90px !important;
  }
}
.swiper-button-next:hover {
  background-color: var(--color-primary);
  background-image: url(../../img/icon_swiper-arrow--hover.svg) !important;
}

/* ============================================
  採用情報
============================================  */
#recruit {
  background-color: #F7F7F7;
  position: relative;
}
#recruit::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../img/recruit_bg.png);
  background-size: 622px;
  background-position: right bottom;
  background-repeat: no-repeat;
  opacity: 0;
  -webkit-transition: 3s;
  transition: 3s;
}
@media screen and (max-width: 767px) {
  #recruit::before {
    background-size: 150px;
  }
}
#recruit.is-active::before {
  content: "";
  opacity: 1;
}
#recruit ._two-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 60px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1000px) {
  #recruit ._two-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
  }
}
#recruit ._two-column .f-copy {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 360px;
}
@media only screen and (max-width: 1000px) {
  #recruit ._two-column .f-copy {
    width: 100%;
  }
}
#recruit figure {
  max-width: 800px;
  margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
  #recruit figure {
    margin-top: 15px;
  }
}
#recruit figure figcaption {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  #recruit figure figcaption {
    font-size: 1.6rem;
  }
}
#recruit figure .c-youtube {
  -webkit-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.16);
          box-shadow: 0 10px 50px rgba(0, 0, 0, 0.16);
}

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

.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_w.svg);
  background-repeat: no-repeat;
  margin-left: 5px;
  display: inline-block;
  position: relative;
  top: 3px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ============================================
  Scroll Animation
============================================  */
/* fadeUp
------------------------- */
.a-fadeUp {
  opacity: 0;
}
.a-fadeUp.is-active {
  -webkit-animation-name: fade-up;
          animation-name: fade-up;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -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;
  }
}/*# sourceMappingURL=style.css.map */