@charset "UTF-8";
/* CSS Document */
/* ============================================
  Font
============================================  */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/* ============================================
  reset
============================================  */
*,
*::before,
*::after {
  margin: 0; /* マージンは0に */
  padding: 0; /* パディングも常に0に */
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* もちろん、より直感的なbox-sizingに設定 */
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important; /* hiddenは非表示を意味します */
}

:where(html) {
  -webkit-text-size-adjust: none; /* iOSのランドスケープでテキストが調整されないようにする */
  color-scheme: dark light; /* ユーザーがダークテーマを好む場合、自動的にダークテーマになる */
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth; /* 何かにフォーカスがある場合のみスムーズスクロール */
  }
}
:where(body) {
  block-size: 100%; /* サファリ以外のブラウザのフォールバック */
  block-size: 100dvb; /* 1dvbは動的ビューポートの長さの1%、100dvbで高さいっぱいに */
  line-height: 1.5; /* アクセシブルな行の高さ */
  font-family: system-ui, sans-serif; /* timeの代わりにシステムフォントを使用 */
  -webkit-font-smoothing: antialiased; /* テキストのレンダリングを改善 */
}

:where(input, button, textarea, select) {
  font: inherit; /* フォーム コントロールは親フォントを継承 */
  color: inherit; /* カラーも継承 */
}

:where(textarea) {
  resize: vertical; /* テキストエリアの水平リサイズを無効に */
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer; /* インタラクティブなものにカーソルを合わせる */
}

:where(:disabled) {
  cursor: not-allowed; /* フォームコントロール無効時のカーソルを許可しない */
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed; /* ラベルにもカーソルを許可しない */
}

:where(button) {
  border-style: solid; /* ボタンのボーダーのスタイルを設定しやすくする */
}

:where(a) {
  text-underline-offset: 0.2ex; /* 下線の上にスペースを追加する */
}

:where(ul, ol) {
  list-style: none; /* ビュレットを削除、必要に応じて手動で追加する */
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block; /* 置換された要素をより予測可能にする */
}

:where(img, picture, svg) {
  max-inline-size: 100%; /* images should never overflow past the available space */
  block-size: auto; /* アスペクト比を保持 */
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word; /* 長い単語は改行 */
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem); /* 見出しの行の高さを減らす */
}

:where(hr) { /* より一貫性のある、スタイリッシュなhr */
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) { /* より一貫性のある、カスタマイズ可能なフォーカスのアウトライン */
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

/* .visually-hiddenは後のカスケードレイヤーを上書きするために!importantを使用 */
:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  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: #91588D;
  --color-secondary: #FDDB2E;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

/* ============================================
  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: 94px;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 0;
  }
}

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 {
  height: 600px;
  background-image: url(../../img/mv.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 433px;
    padding: 40px 0;
    background-position: right center;
  }
}
.l-header .l-inner {
  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;
  height: 100%;
}
.l-header ._contents {
  color: #fff;
  /* 青グラデ */
  background: -webkit-gradient(linear, left top, right top, color-stop(10.32%, rgba(30, 125, 196, 0.9)), color-stop(91.53%, rgba(9, 102, 171, 0.9)));
  background: linear-gradient(90deg, rgba(30, 125, 196, 0.9) 10.32%, rgba(9, 102, 171, 0.9) 91.53%);
  clip-path: polygon(70px 0, 100% 0, calc(100% - 70px) 100%, 0 100%);
  padding: 35px 105px 35px 70px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .l-header ._contents {
    clip-path: polygon(35px 0, 100% 0, calc(100% - 35px) 100%, 0 100%);
    padding: 25px 35px 25px 35px;
    gap: 15px;
  }
}
.l-header ._contents ._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .l-header ._contents ._list {
    gap: 10px;
  }
}
.l-header ._contents ._list li {
  font-size: 4rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .l-header ._contents ._list li {
    font-size: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.l-header ._contents ._list li div span {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .l-header ._contents ._list li div span {
    font-size: 1.6rem;
  }
}
.l-header ._contents ._list li i {
  color: #0966AB;
  font-style: normal;
  font-family: "Roboto Condensed";
  font-size: 2.6rem;
  font-weight: 700;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: #fff;
  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;
  border: solid 2px #0966AB;
}
@media screen and (max-width: 767px) {
  .l-header ._contents ._list li i {
    font-size: 2rem;
    width: 30px;
    height: 30px;
  }
}
.l-header ._contents ._text {
  font-size: 5.5rem;
  font-weight: 700;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .l-header ._contents ._text {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
}
.l-header ._contents ._btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 680px;
  height: 90px;
  background: #FF6663;
  border: solid 2px #FF6663;
  border-radius: 9999px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2.4rem;
  font-weight: 500;
  text-decoration: none;
  gap: 0.7em 2em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-header ._contents ._btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    font-size: 1.8rem;
    height: 80px;
  }
}
.l-header ._contents ._btn span {
  display: block;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}
.l-header ._contents ._btn span::after {
  content: "";
  width: 1px;
  height: 53px;
  background-color: #fff;
  position: absolute;
  right: -0.75em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-header ._contents ._btn span::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .l-header ._contents ._btn span:first-child {
    font-size: 1.4rem;
  }
}
.l-header ._contents ._btn span:last-child::after {
  display: none;
}
.l-header ._contents ._btn span svg {
  fill: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-header ._contents ._btn span svg {
    width: 30px;
    height: 20px;
  }
}
.l-header ._contents ._btn:hover {
  color: #FF6663;
  background-color: #fff;
}
.l-header ._contents ._btn:hover span::after {
  background-color: #FF6663;
}
.l-header ._contents ._btn:hover span svg {
  fill: #FF6663;
}
.l-header::before {
  background-color: #0966AB;
  content: "";
  display: block;
  width: 100%;
  top: 0;
  position: absolute;
  right: 0;
  height: 100%;
  z-index: 20;
  -webkit-transition: right 1s cubic-bezier(0.55, 0.055, 0.675, 0.19) 1s, width 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: right 1s cubic-bezier(0.55, 0.055, 0.675, 0.19) 1s, width 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.l-header.active::before {
  right: 100%;
  width: 0;
}

.thanks .l-header {
  height: 300px;
}
@media screen and (max-width: 767px) {
  .thanks .l-header {
    height: 180px;
  }
}
.thanks .l-header::before {
  display: none;
}
.thanks .l-header ._contents {
  min-height: 150px;
}
@media screen and (max-width: 767px) {
  .thanks .l-header ._contents {
    min-height: 100px;
  }
}
.thanks .l-header ._contents ._text {
  margin-bottom: 0;
}

/* ============================================
  nav
============================================  */
.l-nav {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0 20px;
  height: 94px;
  width: 100%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .l-nav {
    display: none;
  }
}
.l-nav ._list {
  height: 94px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  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: 3em;
  font-size: 2rem;
  font-weight: 500;
}
.l-nav ._list ._item {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.l-nav ._list ._item::after {
  content: "";
  width: 12px;
  height: 5px;
  background-image: url(../../img/icon_nav-arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: -1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.l-nav ._list ._item:hover {
  text-decoration: underline;
}
.l-nav ._list ._item:hover::after {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ============================================

hamburger

============================================  */
.l-hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-hamburger {
    display: block;
  }
}
.l-hamburger ._nav {
  position: fixed;
  right: 0; /* これで隠れる */
  top: 0;
  z-index: 99;
  width: 100%; /* スマホに収まるくらい */
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-color: rgb(255, 255, 255);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  visibility: hidden;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.l-hamburger ._nav ._item {
  display: block;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: bold;
  text-decoration: none;
  border-bottom: solid 1px #333;
  width: 80%;
  position: relative;
}
.l-hamburger ._nav ._item::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  background: #4FB1E9;
}
.l-hamburger ._nav ._item:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.l-hamburger ._line {
  position: fixed;
  right: 20px;
  top: 20px;
  width: 32px; /* クリックしやすいようにちゃんと幅を指定する */
  height: 22px; /* クリックしやすいようにちゃんと高さを指定する */
  cursor: pointer;
  z-index: 100;
}
.l-hamburger ._line ._item {
  position: absolute;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: #333;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.l-hamburger ._line ._item--1 {
  top: 0;
}
.l-hamburger ._line ._item--2 {
  top: 10px;
}
.l-hamburger ._line ._item--3 {
  top: 20px;
}
.l-hamburger ._line:hover ._item--1 {
  top: 2px;
}
.l-hamburger ._line:hover ._item--3 {
  top: 18px;
}

/* 表示された時用のCSS */
.is-open ._nav {
  opacity: 1;
  visibility: visible;
}
.is-open ._item--1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 10px !important;
}
.is-open ._item--2 {
  opacity: 0;
  transform: translateX(30px);
  -webkit-transform: translateX(30px);
}
.is-open ._item--3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 10px !important;
}

main {
  overflow: hidden;
}

/* ============================================
  section
============================================  */
.l-section {
  padding: 90px 0 100px;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding: 60px 0 80px;
  }
}

/* ============================================
  inner
============================================  */
.l-inner {
  width: 88%;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 88%;
  }
}

/* ============================================
  h
============================================  */
.h2 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  padding-bottom: 44px;
  margin-bottom: 40px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .h2 {
    font-size: 2.4rem;
    padding-bottom: 22px;
    margin: 0 auto 30px;
  }
}
.h2 span {
  color: #4FB1E9;
}
.h2::after {
  content: "";
  width: 100px;
  height: 4px;
  background-color: #4FB1E9;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .h2::after {
    width: 50px;
    height: 2px;
  }
}

/* ============================================
  footer
============================================  */
.l-footer {
  color: #fff;
  background-color: #0966AB;
  padding: 50px 0 160px;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 40px 0 90px;
  }
}
.l-footer ._outline {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .l-footer ._outline {
    margin-bottom: 40px;
  }
}
.l-footer ._outline ._title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .l-footer ._outline ._title {
    font-size: 1.8;
  }
}
.l-footer ._outline ._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .l-footer ._outline ._list {
    font-size: 1.6rem;
  }
}
.l-footer ._outline ._list dt {
  width: 200px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-bottom: dashed 1px #fff;
  padding: 1em 1em 1em 0;
}
@media screen and (max-width: 767px) {
  .l-footer ._outline ._list dt {
    width: 100%;
    border-bottom: 0;
    padding-bottom: 0;
  }
}
.l-footer ._outline ._list dd {
  width: calc(100% - 200px - 2em);
  border-bottom: dashed 1px #fff;
  padding: 1em 0;
}
@media screen and (max-width: 767px) {
  .l-footer ._outline ._list dd {
    width: 100%;
    padding-top: 0;
  }
}
.l-footer ._copyright {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.thanks .l-footer {
  padding-bottom: 30px;
}

/* ============================================
  pagetop
============================================  */
.l-pagetop {
  position: fixed;
  bottom: 130px;
  right: 33px;
  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(0, 0, 0, 0.8);
  cursor: pointer;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  /* 非表示にする */
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .l-pagetop {
    bottom: 10px;
    right: 10px;
  }
}
.l-pagetop svg {
  fill: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-pagetop:hover {
  background-color: #4FB1E9;
}

.l-pagetop.is-active {
  /* 表示する */
  opacity: 1;
  visibility: visible;
}

.thanks .l-pagetop {
  bottom: 33px;
  right: 33px;
}
@media screen and (max-width: 767px) {
  .thanks .l-pagetop {
    bottom: 10px;
    right: 10px;
  }
}

/* ============================================
  contactbnr
============================================  */
.l-contactbnr {
  position: fixed;
  bottom: 15px;
  right: 25px;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 635px;
  height: 100px;
  color: #fff;
  background: #FF6663;
  border: solid 2px #FF6663;
  border-radius: 9999px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  text-decoration: none;
  gap: 0.8em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  /* 非表示にする */
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 767px) {
  .l-contactbnr {
    height: 50px;
    width: 280px;
    font-size: 1.6rem;
    gap: 10px;
    right: auto;
    left: 10px;
  }
}
.l-contactbnr svg {
  fill: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-contactbnr svg {
    height: 15px;
    width: 25px;
  }
}
.l-contactbnr:hover {
  color: #FF6663;
  background-color: #fff;
}
.l-contactbnr:hover svg {
  fill: #FF6663;
}
.l-contactbnr ._fikidashi {
  position: fixed;
  bottom: 105px;
  right: 205px;
  z-index: 11;
  width: 350px;
  height: 50px;
  color: #0966AB;
  background: #FFEE11;
  border-radius: 9999px;
  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;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-contactbnr ._fikidashi {
    display: none;
  }
}
.l-contactbnr ._fikidashi::after {
  content: "";
  position: fixed;
  bottom: 90px;
  right: 423px;
  width: 20px;
  height: 15px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #FFEE11;
}
@media screen and (max-width: 767px) {
  .l-contactbnr {
    bottom: 10px;
    right: 10px;
  }
}

.l-contactbnr.is-active {
  /* 表示する */
  opacity: 1;
  visibility: visible;
}

.thanks .l-contactbnr {
  display: none;
}

.--line-left {
  position: relative;
}
.--line-left::after {
  content: "";
  width: 574px;
  height: 574px;
  background-image: url(../../img/line-left.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -100px;
  left: -323px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .--line-left::after {
    width: 287px;
    height: 287px;
    bottom: -80px;
    left: -200px;
  }
}

.--line-right {
  position: relative;
}
.--line-right::after {
  content: "";
  width: 574px;
  height: 574px;
  background-image: url(../../img/line-right.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -250px;
  right: -323px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .--line-right::after {
    width: 287px;
    height: 287px;
    bottom: -120px;
    right: -200px;
  }
}

.l-header.--line-left::after {
  z-index: 11;
}

.p-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 40px;
}
@media screen and (max-width: 767px) {
  .p-columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-columns > ._column {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.p-columns.--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-columns.--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.fc01 {
  color: #4FB1E9;
}

.fc02 {
  color: #0966AB;
}

/* ============================================
  おすすめ
============================================  */
#recommend {
  background: #F2F2F2;
}
#recommend ._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 35px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  #recommend ._list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
}
#recommend ._list li {
  width: 340px;
  height: 340px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
}
@media screen and (max-width: 767px) {
  #recommend ._list li {
    width: 280px;
    height: 280px;
    gap: 20px;
  }
}
#recommend ._list li::after {
  content: "";
  position: absolute;
  left: 15%;
  top: 15%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(10.32%, rgba(255, 255, 255, 0)), color-stop(51.71%, rgba(153, 153, 153, 0.1)), color-stop(91.53%, rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 10.32%, rgba(153, 153, 153, 0.1) 51.71%, rgba(255, 255, 255, 0) 91.53%);
  -webkit-transform: rotate(-136.65deg);
          transform: rotate(-136.65deg);
}
#recommend ._list li p {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #recommend ._list li p {
    font-size: 1.8rem;
  }
}
#recommend ._list li p span {
  color: #4FB1E9;
  font-weight: 700;
}
#recommend ._text {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #recommend ._text {
    font-size: 1.6rem;
  }
}
#recommend ._text span {
  display: inline-block;
  color: #fff;
  background-color: #4FB1E9;
  padding: 0.25em;
}

/* ============================================
  強み
============================================  */
#strengths .strengths02 {
  background-color: #E8F4F5;
}
#strengths h2 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  padding-top: 32px;
}
@media screen and (max-width: 767px) {
  #strengths h2 {
    font-size: 2rem;
    gap: 20px;
    padding-top: 13px;
  }
}
#strengths h2 i {
  color: #4FB1E9;
  font-style: normal;
  font-family: "Roboto Condensed";
  font-size: 10rem;
  line-height: 1;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 767px) {
  #strengths h2 i {
    font-size: 5rem;
  }
}
#strengths h2 i::before {
  content: "";
  width: 100px;
  height: 50px;
  background-image: url(../../img/text_strengths.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: calc(100% - 0.18em);
  left: 50%;
  -webkit-transform: translateX(-55%);
          transform: translateX(-55%);
}
@media screen and (max-width: 767px) {
  #strengths h2 i::before {
    width: 50px;
    height: 26px;
  }
}
#strengths .p-columns {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  #strengths .p-columns {
    margin-top: 40px;
  }
}
#strengths ._column.--img {
  min-height: 240px;
}
@media screen and (max-width: 767px) {
  #strengths ._column.--img {
    min-height: auto;
    height: 150px;
  }
}
#strengths ._img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  height: 240px;
  width: calc(var(--vw) * 50 - 20px);
}
@media screen and (max-width: 767px) {
  #strengths ._img {
    position: static;
    height: 150px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    width: 100%;
  }
}
#strengths ._img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
#strengths .--reverse ._img {
  right: auto;
  left: 0;
}
#strengths ._title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  #strengths ._title {
    font-size: 2rem;
  }
}
#strengths ._text {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  #strengths ._text {
    font-size: 1.6rem;
  }
}
#strengths ._system {
  padding: 60px 100px;
  background-color: #fff;
  -webkit-box-shadow: 0px 10px 100px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 100px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  margin-top: 80px;
}
@media only screen and (max-width: 1000px) {
  #strengths ._system {
    padding: 60px 60px;
  }
}
@media screen and (max-width: 767px) {
  #strengths ._system {
    margin-top: 40px;
    padding: 30px 20px;
    gap: 20px;
  }
}
#strengths ._system h3 {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  #strengths ._system h3 {
    font-size: 2.4rem;
  }
}
#strengths ._system h3 svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: calc(100% + 0.3em);
}
@media screen and (max-width: 767px) {
  #strengths ._system h3 svg {
    width: 24px;
    height: 24px;
  }
}
#strengths ._system ._read {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  #strengths ._system ._read {
    font-size: 1.8rem;
  }
}
#strengths ._system ._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #strengths ._system ._list {
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#strengths ._system ._list li {
  color: #fff;
  font-weight: 500;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 50px 20px;
}
@media screen and (max-width: 767px) {
  #strengths ._system ._list li {
    padding: 30px 10px;
  }
}
#strengths ._system ._list li:nth-child(1) {
  background-color: #4FB1E9;
}
#strengths ._system ._list li:nth-child(2) {
  background-color: #0966AB;
}
#strengths ._system ._list li h4 {
  font-size: 5rem;
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  #strengths ._system ._list li h4 {
    font-size: 3rem;
    padding-bottom: 35px;
  }
}
#strengths ._system ._list li h4::after {
  content: "";
  width: 1px;
  height: 25px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  #strengths ._system ._list li h4::after {
    height: 20px;
  }
}
#strengths ._system ._list li p {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  #strengths ._system ._list li p {
    font-size: 1.8rem;
  }
}
#strengths ._support {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  #strengths ._support {
    margin-top: 60px;
  }
}
#strengths ._support h3 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  padding-bottom: 25px;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #strengths ._support h3 {
    font-size: 2rem;
    padding-bottom: 20px;
  }
}
#strengths ._support h3::after {
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: -webkit-gradient(linear, left top, right top, from(#FFFFFF), color-stop(10.1%, #4FB1E9), color-stop(49.52%, #4FB1E9), color-stop(93.27%, #4FB1E9), to(#FFFFFF));
  background: linear-gradient(90deg, #FFFFFF 0%, #4FB1E9 10.1%, #4FB1E9 49.52%, #4FB1E9 93.27%, #FFFFFF 100%);
}
#strengths ._support p {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  #strengths ._support p {
    font-size: 1.8rem;
    margin-top: 15px;
  }
}
#strengths ._support h4 {
  font-size: 3rem;
  font-weight: 700;
  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.5em;
  margin: 60px 0;
}
@media screen and (max-width: 767px) {
  #strengths ._support h4 {
    font-size: 2rem;
  }
}
#strengths ._support h4::before, #strengths ._support h4::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background-color: #333;
}
#strengths ._explain {
  margin-top: 85px;
  background-color: #fff;
  border: solid 1px #999;
  padding: 80px 50px 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #strengths ._explain {
    margin-top: 65px;
    padding: 40px 20px 20px;
  }
}
#strengths ._explain h3 {
  font-size: 3rem;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: -27px;
  left: 50%;
  translate: -50% 0;
  background-color: #fff;
  border: solid 1px #999;
  padding: 0.25em 1em;
}
@media screen and (max-width: 767px) {
  #strengths ._explain h3 {
    font-size: 2rem;
    width: 80%;
    text-align: center;
    top: -20px;
  }
}
#strengths ._explain h4 {
  color: #fff;
  font-size: 2.6rem;
  line-height: 1.5;
  font-weight: 500;
  padding: 0.75em 1em;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#FFFFFF), color-stop(10.1%, #4FB1E9), color-stop(49.52%, #4FB1E9), color-stop(93.27%, #4FB1E9), to(#FFFFFF));
  background: linear-gradient(90deg, #FFFFFF 0%, #4FB1E9 10.1%, #4FB1E9 49.52%, #4FB1E9 93.27%, #FFFFFF 100%);
  margin-bottom: 1.7em;
}
@media screen and (max-width: 767px) {
  #strengths ._explain h4 {
    font-size: 1.8rem;
  }
}
#strengths ._explain h5 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  #strengths ._explain h5 {
    font-size: 1.8rem;
  }
}
#strengths ._explain ._columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 40px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #strengths ._explain ._columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#strengths ._explain ._columns ._column.--text {
  width: 35%;
}
@media screen and (max-width: 767px) {
  #strengths ._explain ._columns ._column.--text {
    width: 100%;
  }
}
#strengths ._explain ._columns ._column.--figure {
  width: 65%;
}
@media screen and (max-width: 767px) {
  #strengths ._explain ._columns ._column.--figure {
    width: 100%;
  }
}
#strengths ._explain ._columns figcaption {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 1em;
}
#strengths ._purchase {
  background-color: #fff;
  padding: 60px;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  #strengths ._purchase {
    padding: 40px 20px;
  }
}
#strengths ._purchase h3 {
  font-size: 3rem;
  font-weight: 700;
  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.5em;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #strengths ._purchase h3 {
    font-size: 1.8rem;
  }
}
#strengths ._purchase h3::before, #strengths ._purchase h3::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background-color: #333;
}
#strengths ._purchase ._read {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  #strengths ._purchase ._read {
    font-size: 1.6rem;
  }
}
#strengths ._purchase figure {
  max-width: 646px;
  margin: 0 auto 40px;
}
#strengths ._purchase ._text {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #strengths ._purchase ._text {
    font-size: 1.8rem;
  }
}

/* ============================================
  GPUサーバーとは
============================================  */
#gpu ._read {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  #gpu ._read {
    font-size: 1.8rem;
  }
}
#gpu ._list {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  #gpu ._list {
    gap: 20px;
  }
}
#gpu ._list li {
  width: calc(50% - 20px);
  border: solid 2px #4FB1E9;
  border-radius: 10px;
  padding: 25px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  #gpu ._list li {
    width: 100%;
    padding: 20px;
    gap: 20px;
  }
}
#gpu ._list li img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: auto;
  height: 50px;
}
#gpu ._list li ._contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#gpu ._list li ._contents ._title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  #gpu ._list li ._contents ._title {
    font-size: 1.8rem;
  }
}
#gpu ._list li ._contents ._text {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  #gpu ._list li ._contents ._text {
    font-size: 1.6rem;
  }
}

/* ============================================
  他商品との比較
============================================  */
#compare {
  background-color: #E8F4F5;
}

/* ============================================
  お客様の声
============================================  */
#voice ._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  #voice ._list {
    gap: 40px;
  }
}
#voice ._list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 65px;
}
@media screen and (max-width: 767px) {
  #voice ._list li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
#voice ._list li ._icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 125px;
}
@media screen and (max-width: 767px) {
  #voice ._list li ._icon {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
}
#voice ._list li ._icon i {
  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;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background-color: #0966AB;
}
@media screen and (max-width: 767px) {
  #voice ._list li ._icon i {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  #voice ._list li ._icon i img {
    height: 44px;
    width: auto;
  }
}
#voice ._list li ._icon ._profile {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
  margin-top: 0.5em;
}
@media screen and (max-width: 767px) {
  #voice ._list li ._icon ._profile {
    font-size: 1.6rem;
    margin-top: 0;
  }
}
#voice ._list li ._fukidashi {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: solid 1px #0B3484;
  padding: 30px 35px;
  border-radius: 10px;
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 500;
  min-height: 125px;
}
@media screen and (max-width: 767px) {
  #voice ._list li ._fukidashi {
    min-height: auto;
    font-size: 1.6rem;
    padding: 20px;
  }
}
#voice ._list li ._fukidashi::before, #voice ._list li ._fukidashi::after {
  content: "";
  position: absolute;
  top: 50px;
  right: 100%;
  width: 25px;
  height: 25px;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  background-color: #0B3484;
}
@media screen and (max-width: 767px) {
  #voice ._list li ._fukidashi::before, #voice ._list li ._fukidashi::after {
    clip-path: polygon(0 100%, 100% 100%, 50% 0);
    top: auto;
    bottom: 100%;
    right: auto;
    left: 20px;
  }
}
#voice ._list li ._fukidashi::after {
  right: calc(100% - 2px);
  border: 0;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  #voice ._list li ._fukidashi::after {
    right: auto;
    bottom: calc(100% - 2px);
  }
}

/* ============================================
  FAQ
============================================  */
#faq {
  background-color: #E8F4F5;
}
#faq ._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  #faq ._list {
    gap: 30px;
  }
}
#faq ._list ._question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  #faq ._list ._question {
    font-size: 1.8rem;
    gap: 10px;
  }
}
#faq ._list ._question i {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 55px;
  height: 55px;
  font-style: normal;
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  font-weight: 500;
  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: #0966AB;
  border-radius: 9999px;
}
@media screen and (max-width: 767px) {
  #faq ._list ._question i {
    font-size: 2rem;
    width: 36px;
    height: 36px;
  }
}
#faq ._list ._answer {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 5px 50px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 30px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  #faq ._list ._answer {
    font-size: 1.6rem;
    gap: 10px;
    padding: 20px;
  }
}
#faq ._list ._answer i {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 55px;
  height: 55px;
  font-style: normal;
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  font-weight: 500;
  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: #4FB1E9;
  border-radius: 9999px;
}
@media screen and (max-width: 767px) {
  #faq ._list ._answer i {
    font-size: 2rem;
    width: 36px;
    height: 36px;
  }
}

/* ============================================
  お問い合わせ
============================================  */
#contact iframe {
  min-height: 1200px;
  height: 100vh;
}

/* ============================================
  お問い合わせ
============================================  */
@media screen and (max-width: 767px) {
  #thanks .h2 {
    font-size: 2rem;
  }
}
#thanks ._text {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #thanks ._text {
    font-size: 1.8rem;
    margin-top: 0;
    text-align: left;
    margin-bottom: 40px;
  }
}
#thanks ._btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 240px;
  margin: 0 auto;
  height: 60px;
  background: #FF6663;
  border: solid 2px #FF6663;
  border-radius: 9999px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  #thanks ._btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 1.8rem;
    height: 50px;
  }
}
#thanks ._btn:hover {
  color: #FF6663;
  background-color: #fff;
}

/* ============================================
  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;
}

/* borderBox
------------------------- */
.borderBox__in {
  overflow: hidden;
  /* 上のボーダー */
  /* 左のボーダー */
}
.borderBox__in::before, .borderBox__in::after {
  content: "";
  position: absolute;
  background: #006; /*線の色*/
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}
.borderBox__in::before {
  top: 0;
  right: -100%;
  width: 100%;
  height: 1px;
}
.borderBox__in:hover::before {
  right: 0;
}
.borderBox__in::after {
  top: -100%;
  left: 0;
  width: 1px;
  height: 100%;
}
.borderBox__in:hover::after {
  top: 0;
}
.borderBox__in__in {
  /* 下のボーダー */
  /* 右のボーダー */
}
.borderBox__in__in::before, .borderBox__in__in::after {
  content: "";
  position: absolute;
  background: #006; /*線の色*/
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}
.borderBox__in__in::before {
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 1px;
}
.borderBox__in__in:hover::before {
  left: 0;
}
.borderBox__in__in::after {
  content: "";
  bottom: -100%;
  right: 0;
  width: 1px;
  height: 100%;
}
.borderBox__in__in:hover::after {
  bottom: 0;
}

/* ============================================
  Scroll Animation
============================================  */
/* fadeUp
------------------------- */
.a-fadeUp {
  opacity: 0;
}
.a-fadeUp.is-active {
  -webkit-animation-name: fade-up;
          animation-name: fade-up;
  -webkit-animation-duration: 1.3s;
          animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fade-up {
  0% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-up {
  0% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
/* fadeRight
------------------------- */
.a-fadeRight {
  opacity: 0;
}
.a-fadeRight.is-active {
  -webkit-animation-name: fade-right;
          animation-name: fade-right;
  -webkit-animation-duration: 1.3s;
          animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  /* animation-delay: .0s; */
}

@-webkit-keyframes fade-right {
  0% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-right {
  0% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
/* curtain
------------------------- */
.a-curtain {
  overflow: hidden;
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.a-curtain::after {
  background-color: #0966AB;
  content: "";
  display: block;
  width: 0;
  top: 0;
  position: absolute;
  left: 0;
  height: 100%;
  z-index: 2;
  -webkit-transition: left 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.4s, width 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: left 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.4s, width 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.a-curtain.is-active::after {
  left: 100%;
  width: 100%;
}
.a-curtain > div, .a-curtain > img {
  opacity: 0;
  -webkit-transition: opacity 0s 0.4s;
  transition: opacity 0s 0.4s;
}
.a-curtain.is-active > div, .a-curtain.is-active > img {
  opacity: 1;
}

/* scale
------------------------- */
.a-scale img {
  opacity: 0;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.a-scale.is-active img {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* hideTxt
------------------------- */
.a-hideTxt {
  overflow: hidden;
}
.a-hideTxt__item {
  -webkit-transform: translateY(105%);
          transform: translateY(105%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.a-hideTxt.is-active__item {
  -webkit-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
}

/* Fade Up Animation
------------------------- */
/* 初期状態（spanに適用） */
.fade-up {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

/* 表示アニメーション状態 */
.fade-up.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* pタグ自体のスタイル（このままでもOK） */
.is-load-text {
  opacity: 0;
}

.is-load-text.is-active {
  opacity: 1;
}

/* ============================================
  scrolldown
============================================  */
/*スクロールダウン全体の場所*/
.c-scrolldown {
  height: 100px;
  /*Scrollテキストの描写*/
  /* 線の描写 */
}
.c-scrolldown p {
  /*描画位置*/
  position: absolute;
  left: 0;
  top: -60px;
  /*テキストの形状*/
  color: #333;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 1.4rem;
}
.c-scrolldown::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12px;
  width: 1px;
  height: 100px;
  background: rgba(255, 255, 255, 0.25);
}
.c-scrolldown::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  left: 12px;
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: #333;
  /*線の動き*/
  -webkit-animation: pathmove 2.2s forwards infinite;
          animation: pathmove 2.2s forwards infinite;
  -webkit-animation-delay: 3.3s;
          animation-delay: 3.3s;
  opacity: 0;
}

@-webkit-keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 1;
  }
  75% {
    height: 100px;
    top: 0;
    opacity: 1;
  }
  100% {
    height: 100px;
    top: 0;
    opacity: 1;
  }
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 1;
  }
  75% {
    height: 100px;
    top: 0;
    opacity: 1;
  }
  100% {
    height: 100px;
    top: 0;
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */