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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ============================================
  base
============================================  */
html {
  font-size: 62.5% !important; /* 62.5%を指定すると「1.0 rem = 10px」 */
  -webkit-text-size-adjust: 100%;
  overflow: auto;
}

body {
  width: 100%;
  font-family: "Noto Sans CJK JP", "Noto Sans JP";
  color: #222;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  background: #fff;
  overscroll-behavior-y: none;
  overflow-x: hidden;
}

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

sup {
  vertical-align: super;
}

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

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

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

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

/* ============================================
  header
============================================  */
.l-header ._logo {
  width: 150px;
  position: absolute;
  top: 50px;
  left: 100px;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .l-header ._logo {
    width: 100px;
    top: 20px;
    left: 20px;
  }
}
.l-header ._logo img {
  width: 100%;
}

/* ============================================
  wrapper
============================================  */
.l-wrapper {
  position: relative;
}

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

/* ============================================
  inner
============================================  */
.l-inner {
  max-width: 1430px;
  width: 88%;
  margin: 0 auto;
}

/* ============================================
  h
============================================  */
h2 {
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 55px;
  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: 20px;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

/* ============================================
  footer
============================================  */
.l-footer {
  padding: 155px 0 30px;
  background-image: url(../../images/footer-bg.png);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding-top: calc(42px + 24vw);
    padding-bottom: 20px;
  }
}
.l-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 202px);
  width: 404px;
  height: 104px;
  background-image: url(../../images/footer-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
}
@media screen and (max-width: 768px) {
  .l-footer::before {
    background-image: url(../../images/footer-arrow-sp.png);
    width: 94%;
    height: 24vw;
    left: 3%;
  }
}
.l-footer ._title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .l-footer ._title {
    margin-bottom: 30px;
  }
}
.l-footer ._text {
  font-size: 24px;
  font-weight: normal;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 140px;
}
@media screen and (max-width: 768px) {
  .l-footer ._text {
    font-size: 15px;
    margin-bottom: 60px;
  }
}
.l-footer ._company {
  color: #fff;
  padding: 90px 150px 70px;
  border: solid 10px #fff;
  border-radius: 35px;
  background: -webkit-gradient(linear, right top, left top, from(#FFEB00), to(#FF3453));
  background: linear-gradient(270deg, #FFEB00 0%, #FF3453 100%);
  margin-bottom: 80px;
  position: relative;
  -webkit-box-shadow: 0 0 60px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 60px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 1430px) {
  .l-footer ._company {
    padding: 90px 150px 70px 70px;
  }
}
@media only screen and (max-width: 1000px) {
  .l-footer ._company {
    margin-bottom: 150px;
    padding: 90px 70px 570px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer ._company {
    background: -webkit-gradient(linear, left bottom, left top, from(#FFEB00), to(#FF3453));
    background: linear-gradient(0, #FFEB00 0%, #FF3453 100%);
    padding: 90px 20px 0;
    margin-bottom: calc(110px + 22.93vw);
    padding-bottom: calc(50px + 94vw);
  }
}
.l-footer ._company::after {
  content: "";
  background-image: url(../../images/company-img.png);
  background-size: contain;
  background-position: right top;
  background-repeat: no-repeat;
  width: 499px;
  height: 600px;
  position: absolute;
  top: -70px;
  right: 20px;
}
@media only screen and (max-width: 1000px) {
  .l-footer ._company::after {
    top: auto;
    bottom: -70px;
    right: calc(50% - 250px);
  }
}
@media screen and (max-width: 768px) {
  .l-footer ._company::after {
    width: 100vw;
    height: 120.53vw;
    left: -10px;
    bottom: -26.66vw;
    -webkit-transform: translateX(-6%);
            transform: translateX(-6%);
  }
}
.l-footer ._company ._contents {
  width: calc(100% - 370px);
}
@media only screen and (max-width: 1000px) {
  .l-footer ._company ._contents {
    width: 100%;
  }
}
.l-footer ._company ._contents ._logo {
  width: 200px;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .l-footer ._company ._contents ._logo {
    width: 150px;
    margin: 0 auto 25px;
  }
}
.l-footer ._company ._contents ._logo img {
  width: 100%;
}
.l-footer ._company ._contents ._name {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  .l-footer ._company ._contents ._name {
    text-align: center;
  }
}
.l-footer ._company ._contents ._name span {
  display: inline-block;
  font-size: 15px;
}
.l-footer ._company ._contents ._address {
  letter-spacing: 0.05em;
  line-height: 1.25;
  margin-left: -0.5em;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .l-footer ._company ._contents ._address {
    text-align: center;
  }
}
.l-footer ._company ._contents ._address span {
  display: inline-block;
}
.l-footer ._company ._contents ._btnarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 60px;
}
@media only screen and (max-width: 1250px) {
  .l-footer ._company ._contents ._btnarea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
    gap: 20px;
  }
}
@media only screen and (max-width: 1000px) {
  .l-footer ._company ._contents ._btnarea {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer ._company ._contents ._btnarea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 18px;
    gap: 20px;
  }
}
.l-footer ._company ._contents ._btnarea ._btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 20px;
  font-weight: 700px;
  letter-spacing: 0.1em;
  text-decoration: none;
  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-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 350px;
  padding: 20px 30px;
  min-height: 80px;
  border: solid 2px #fff;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 1250px) {
  .l-footer ._company ._contents ._btnarea ._btn {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}
@media only screen and (max-width: 1000px) {
  .l-footer ._company ._contents ._btnarea ._btn {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (max-width: 768px) {
  .l-footer ._company ._contents ._btnarea ._btn {
    font-size: 18px;
    min-height: 60px;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}
.l-footer ._company ._contents ._btnarea ._btn:hover {
  color: #FF4343;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
}
.l-footer ._copyright {
  font-size: 12px;
  text-align: center;
}

/* ============================================
  pagetop
============================================  */
.l-pagetop {
  position: fixed;
  bottom: 50px;
  right: 20px;
  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;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  /* 非表示にする */
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 769px) {
  .l-pagetop {
    display: none;
  }
}
.l-pagetop::after {
  content: "";
  width: 16px;
  height: 16px;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOC4zODUiIGhlaWdodD0iMTguMzg1IiB2aWV3Qm94PSIwIDAgMTguMzg1IDE4LjM4NSI+PGRlZnM+PHN0eWxlPi5he2ZpbGw6Izk2OTY5Njt9PC9zdHlsZT48L2RlZnM+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS41IDE2Ljg4NSkgcm90YXRlKC05MCkiPjxwYXRoIGNsYXNzPSJhIiBkPSJNMTUuMzg0LDEuNUgwQTEuNSwxLjUsMCwwLDEtMS41LDAsMS41LDEuNSwwLDAsMSwwLTEuNUgxNS4zODRhMS41LDEuNSwwLDAsMSwxLjUsMS41QTEuNSwxLjUsMCwwLDEsMTUuMzg0LDEuNVoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgNy42OTIpIi8+PHBhdGggY2xhc3M9ImEiIGQ9Ik0wLDE2Ljg4NWExLjUsMS41LDAsMCwxLTEuMDYxLS40MzksMS41LDEuNSwwLDAsMSwwLTIuMTIxTDUuNTcxLDcuNjkzLTEuMDYxLDEuMDYxYTEuNSwxLjUsMCwwLDEsMC0yLjEyMSwxLjUsMS41LDAsMCwxLDIuMTIxLDBMOC43NTMsNi42MzJhMS41LDEuNSwwLDAsMSwwLDIuMTIxTDEuMDYxLDE2LjQ0NkExLjUsMS41LDAsMCwxLDAsMTYuODg1WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNy42OTIpIi8+PC9nPjwvc3ZnPg==");
}

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

/* ============================================
  メインビジュアル
============================================  */
.p-mainvisual {
  height: 1490px;
  background-image: url(../../images/mainvisual-bg.png);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-mainvisual {
    height: auto;
    background-image: url(../../images/mainvisual-bg-sp.png);
    padding-top: 262.66vw;
    padding-bottom: 160px;
  }
}
.p-mainvisual::before {
  content: "";
  width: 100%;
  height: 232px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url(../../images/product-top.png);
  background-size: 100% 232px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .p-mainvisual::before {
    height: 15.2vw;
    background-image: url(../../images/product-top-sp.png);
    background-size: 100% 15.2vw;
  }
}
@media screen and (max-width: 768px) {
  .p-mainvisual::after {
    content: "";
    width: 100%;
    height: 254.66vw;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../../images/mainvisual-sp.png);
    background-size: contain;
    background-repeat: no-repeat;
  }
}
.p-mainvisual .l-inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-mainvisual .l-inner {
    position: static;
  }
}
@media screen and (min-width: 769px) {
  .p-mainvisual .l-inner::after {
    content: "";
    width: 1810px;
    height: 1555px;
    background-image: url(../../images/mainvisual.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: -50px;
    z-index: 1;
  }
}
.p-mainvisual ._contents {
  position: absolute;
  top: 625px;
  left: 0;
  z-index: 2;
  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: 90px;
}
@media screen and (max-width: 768px) {
  .p-mainvisual ._contents {
    position: static;
    width: 100%;
  }
}
.p-mainvisual ._contents ._maincopy {
  width: 734px;
}
@media only screen and (max-width: 880px) {
  .p-mainvisual ._contents ._maincopy {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-mainvisual ._contents ._maincopy {
    width: 42.66vw;
    position: absolute;
    top: 89.33vw;
    left: 5.33vw;
  }
}
.p-mainvisual ._contents ._maincopy img {
  width: 100%;
}
.p-mainvisual ._contents ._text {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-mainvisual ._contents ._text {
    font-size: 15px;
  }
}

.en .p-mainvisual ._contents {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.en .p-mainvisual ._contents ._maincopy {
  width: 748px;
}
@media only screen and (max-width: 880px) {
  .en .p-mainvisual ._contents ._maincopy {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .en .p-mainvisual ._contents ._maincopy {
    width: 70vw;
    top: 68.33vw;
    z-index: 5;
  }
}
.en .p-mainvisual ._contents ._text {
  max-width: 748px;
}

/* ============================================
  ラインナップ
============================================  */
#lineup {
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
}
@media screen and (max-width: 768px) {
  #lineup {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    padding-top: 52px;
    padding-bottom: 82px;
  }
}

.p-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 70px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-category {
    width: 545px;
    margin: 0 auto 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 45px;
    gap: 10px 45px;
  }
}
@media only screen and (max-width: 636px) {
  .p-category {
    width: 250px;
    gap: 10px 5%;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
.p-category li {
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 636px) {
  .p-category li {
    width: 47.5%;
  }
}
.p-category li::before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
}
.p-category li._face::before {
  background-color: #FF5800;
}
.p-category li._body::before {
  background-color: #16409D;
}
.p-category li._care::before {
  background-color: #1EAD1E;
}
.p-category li._other::before {
  background-color: #FFB100;
}

.p-lineup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 113px 45px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1641px) {
  .p-lineup {
    width: 1135px;
  }
}
@media only screen and (max-width: 1306px) {
  .p-lineup {
    width: 840px;
  }
}
@media only screen and (max-width: 971px) {
  .p-lineup {
    width: 545px;
  }
}
@media only screen and (max-width: 636px) {
  .p-lineup {
    width: 250px;
  }
}
@media screen and (max-width: 768px) {
  .p-lineup {
    gap: 60px 45px;
  }
}
.p-lineup ._item {
  width: 250px;
}
.p-lineup ._item ._img {
  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: 250px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-lineup ._item ._text {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-top: 17px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .p-lineup ._item ._text {
    padding-top: 15px;
  }
}
.p-lineup ._item.modal-open {
  cursor: pointer;
}
.p-lineup ._item.modal-open ._img {
  position: relative;
}
.p-lineup ._item.modal-open ._img img {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-lineup ._item.modal-open ._img img.on {
  opacity: 0;
}
.p-lineup ._item.modal-open:hover ._text {
  color: #FF8900;
}
.p-lineup ._item.modal-open:hover img.off {
  opacity: 0;
}
.p-lineup ._item.modal-open:hover img.on {
  opacity: 1;
}
.p-lineup ._item.andmore {
  margin-top: 75px;
}
.p-lineup ._item.andmore ._img {
  height: auto;
}

/* ============================================
  モーダルウィンドウ
============================================  */
.p-modal {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: 10;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.p-modal.is-active {
  opacity: 1;
  visibility: visible;
}
.p-modal .swiper,
.p-modal .swiper-wrapper,
.p-modal .swiper-slide {
  height: calc(100vh - 180px);
}
@media screen and (max-width: 768px) {
  .p-modal .swiper,
  .p-modal .swiper-wrapper,
  .p-modal .swiper-slide {
    height: calc(100vh - 40px);
  }
}
.p-modal .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-modal .swiper-button-prev,
.p-modal .swiper-button-next {
  background-image: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-modal .swiper-button-prev,
  .p-modal .swiper-button-next {
    top: auto;
    bottom: 30px;
    width: 15px;
    background-size: contain;
  }
}
.p-modal .swiper-button-prev {
  left: 57px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOC4yMjQiIGhlaWdodD0iMzUuNDkxIiB2aWV3Qm94PSIwIDAgMTguMjI0IDM1LjQ5MSI+PGRlZnM+PHN0eWxlPi5he2ZpbGw6I2ZmZjt9PC9zdHlsZT48L2RlZnM+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMi4wMTkgMi4xMTgpIj48cGF0aCBjbGFzcz0iYSIgZD0iTTM1LjY0Myw0NS4wNGwtMTYtMTcuNzQ2LDE2LTE3Ljc0NiwyLjIyOCwyLjAwOUwyMy42ODYsMjcuMjk0LDM3Ljg3MSw0My4wMzFaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMjEuNjY3IC0xMS42NjcpIi8+PC9nPjwvc3ZnPg==");
}
@media screen and (max-width: 768px) {
  .p-modal .swiper-button-prev {
    left: 30px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSIxNy45MzUiIHZpZXdCb3g9IjAgMCAxNSAxNy45MzUiPjxkZWZzPjxzdHlsZT4uYSwuYntmaWxsOiM5Njk2OTY7fS5he29wYWNpdHk6MDt9PC9zdHlsZT48L2RlZnM+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTAuMTA2IDAuMzUzKSI+PHBhdGggY2xhc3M9ImEiIGQ9Ik0zLDNWMTQuMTQzaDlWM0gzTTAsMEgxNVYxNy4xNDNIMFoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAuMTA2IDApIi8+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNC41MTkgMS43NjUpIj48cGF0aCBjbGFzcz0iYiIgZD0iTTI3LjczMSwyNy40ODRsLTguMDgzLTguOTY4LDguMDgzLTguOTY4LDIuMjI4LDIuMDA5LTYuMjczLDYuOTU5LDYuMjczLDYuOTU5WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIxLjY2NyAtMTEuNjY3KSIvPjwvZz48L2c+PC9zdmc+");
  }
}
.p-modal .swiper-button-prev:hover {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOC4yMjQiIGhlaWdodD0iMzUuNDkxIiB2aWV3Qm94PSIwIDAgMTguMjI0IDM1LjQ5MSI+PGRlZnM+PHN0eWxlPi5he2ZpbGw6IzAwNGVmZjt9PC9zdHlsZT48L2RlZnM+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMi4wMTkgMi4xMTgpIj48cGF0aCBjbGFzcz0iYSIgZD0iTTM1LjY0Myw0NS4wNGwtMTYtMTcuNzQ2LDE2LTE3Ljc0NiwyLjIyOCwyLjAwOUwyMy42ODYsMjcuMjk0LDM3Ljg3MSw0My4wMzFaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMjEuNjY3IC0xMS42NjcpIi8+PC9nPjwvc3ZnPg==");
}
@media screen and (max-width: 768px) {
  .p-modal .swiper-button-prev:hover {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSIxNy45MzUiIHZpZXdCb3g9IjAgMCAxNSAxNy45MzUiPjxkZWZzPjxzdHlsZT4uYSwuYntmaWxsOiM5Njk2OTY7fS5he29wYWNpdHk6MDt9PC9zdHlsZT48L2RlZnM+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTAuMTA2IDAuMzUzKSI+PHBhdGggY2xhc3M9ImEiIGQ9Ik0zLDNWMTQuMTQzaDlWM0gzTTAsMEgxNVYxNy4xNDNIMFoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAuMTA2IDApIi8+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNC41MTkgMS43NjUpIj48cGF0aCBjbGFzcz0iYiIgZD0iTTI3LjczMSwyNy40ODRsLTguMDgzLTguOTY4LDguMDgzLTguOTY4LDIuMjI4LDIuMDA5LTYuMjczLDYuOTU5LDYuMjczLDYuOTU5WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIxLjY2NyAtMTEuNjY3KSIvPjwvZz48L2c+PC9zdmc+");
  }
}
.p-modal .swiper-button-next {
  right: 57px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOC4yMjQiIGhlaWdodD0iMzUuNDkxIiB2aWV3Qm94PSIwIDAgMTguMjI0IDM1LjQ5MSI+PGRlZnM+PHN0eWxlPi5he2ZpbGw6I2ZmZjt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImEiIGQ9Ik0yMS43NzcsNDUuMDRsLTIuMjI4LTIuMDA5TDMzLjczMywyNy4yOTQsMTkuNTQ5LDExLjU1N2wyLjIyOC0yLjAwOSwxNiwxNy43NDZaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTkuNTQ5IC05LjU0OSkiLz48L3N2Zz4=");
}
@media screen and (max-width: 768px) {
  .p-modal .swiper-button-next {
    right: 30px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSIxNy45MzUiIHZpZXdCb3g9IjAgMCAxNSAxNy45MzUiPjxkZWZzPjxzdHlsZT4uYSwuYntmaWxsOiM5Njk2OTY7fS5he29wYWNpdHk6MDt9PC9zdHlsZT48L2RlZnM+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCAwLjM1MykiPjxwYXRoIGNsYXNzPSJhIiBkPSJNMywzVjE0LjE0M2g5VjNIM00wLDBIMTVWMTcuMTQzSDBaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDApIi8+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNC40MTMgMS43NjUpIj48cGF0aCBjbGFzcz0iYiIgZD0iTTIxLjc3NywyNy40ODRsLTIuMjI4LTIuMDA5LDYuMjczLTYuOTU5LTYuMjczLTYuOTU5LDIuMjI4LTIuMDA5LDguMDgzLDguOTY4WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIxLjY2NyAtMTEuNjY3KSIvPjwvZz48L2c+PC9zdmc+");
  }
}
.p-modal .swiper-button-next:hover {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOC4yMjQiIGhlaWdodD0iMzUuNDkxIiB2aWV3Qm94PSIwIDAgMTguMjI0IDM1LjQ5MSI+PGRlZnM+PHN0eWxlPi5he2ZpbGw6IzAwNGVmZjt9PC9zdHlsZT48L2RlZnM+PHBhdGggY2xhc3M9ImEiIGQ9Ik0yMS43NzcsNDUuMDRsLTIuMjI4LTIuMDA5TDMzLjczMywyNy4yOTQsMTkuNTQ5LDExLjU1N2wyLjIyOC0yLjAwOSwxNiwxNy43NDZaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTkuNTQ5IC05LjU0OSkiLz48L3N2Zz4=");
}
@media screen and (max-width: 768px) {
  .p-modal .swiper-button-next:hover {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSIxNy45MzUiIHZpZXdCb3g9IjAgMCAxNSAxNy45MzUiPjxkZWZzPjxzdHlsZT4uYSwuYntmaWxsOiM5Njk2OTY7fS5he29wYWNpdHk6MDt9PC9zdHlsZT48L2RlZnM+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCAwLjM1MykiPjxwYXRoIGNsYXNzPSJhIiBkPSJNMywzVjE0LjE0M2g5VjNIM00wLDBIMTVWMTcuMTQzSDBaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDApIi8+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNC40MTMgMS43NjUpIj48cGF0aCBjbGFzcz0iYiIgZD0iTTIxLjc3NywyNy40ODRsLTIuMjI4LTIuMDA5LDYuMjczLTYuOTU5LTYuMjczLTYuOTU5LDIuMjI4LTIuMDA5LDguMDgzLDguOTY4WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIxLjY2NyAtMTEuNjY3KSIvPjwvZz48L2c+PC9zdmc+");
  }
}
.p-modal > ._inner {
  padding: 90px 135px;
  max-width: 1410px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-modal > ._inner {
    padding: 20px;
  }
}
.p-modal > ._inner ._contents {
  position: relative;
  width: 100%;
  background-color: #fff;
  padding: 100px;
}
@media only screen and (max-width: 1200px) {
  .p-modal > ._inner ._contents {
    padding: 100px 50px;
  }
}
@media screen and (max-width: 768px) {
  .p-modal > ._inner ._contents {
    padding: 45px 30px 100px;
  }
}
.p-modal > ._inner ._contents > ._inner {
  overflow-y: auto;
  max-height: calc(100vh - 290px);
}
@media screen and (max-width: 768px) {
  .p-modal > ._inner ._contents > ._inner {
    max-height: calc(100vh - 185px);
  }
}
.p-modal > ._inner ._contents > ._inner ._title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .p-modal > ._inner ._contents > ._inner ._title {
    font-size: 25px;
  }
}
.p-modal > ._inner ._contents > ._inner ._title span {
  font-size: 25px;
}
@media screen and (max-width: 768px) {
  .p-modal > ._inner ._contents > ._inner ._title span {
    font-size: 20px;
  }
}
.p-modal > ._inner ._contents > ._inner ._text {
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-modal > ._inner ._contents > ._inner ._text {
    font-size: 15px;
    font-weight: normal;
    margin-bottom: 40px;
  }
}
.p-modal > ._inner ._contents > ._inner ._material {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-modal > ._inner ._contents > ._inner ._material {
    margin-bottom: 25px;
  }
}
.p-modal > ._inner ._contents > ._inner ._material dt {
  -ms-flex-negative: 0;
      flex-shrink: 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;
  color: #fff;
  letter-spacing: 0.05em;
  width: 50px;
  height: 25px;
  background-color: #222;
}
.p-modal > ._inner ._contents > ._inner ._material dd {
  letter-spacing: 0.05em;
}
.p-modal > ._inner ._contents > ._inner ._img-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .p-modal > ._inner ._contents > ._inner ._img-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-modal > ._inner ._contents > ._inner ._img-list ._item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.p-modal > ._inner ._contents ._page {
  font-size: 12px;
  text-align: center;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 47px;
}
.p-modal > ._inner ._contents ._page span {
  margin: 0 5px;
}
.p-modal > ._inner ._contents .modal-close {
  position: absolute;
  width: 90px;
  height: 90px;
  top: 0;
  right: 0;
  background-color: #222;
  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;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-modal > ._inner ._contents .modal-close {
    width: 50px;
    height: 50px;
  }
}
.p-modal > ._inner ._contents .modal-close:hover {
  opacity: 0.6;
}
.p-modal > ._inner ._contents .modal-close::before {
  content: "";
  width: 37px;
  height: 37px;
  background-image: url(../../images/close.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .p-modal > ._inner ._contents .modal-close::before {
    width: 20px;
    height: 20px;
  }
}

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

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

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

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

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

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

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

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

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

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

/* ============================================
  icon
============================================  */
.u-blank::after {
  content: "";
  width: 16px;
  height: 15px;
  background-image: url(../img/icon-blank_w.svg);
  background-repeat: no-repeat;
  margin-left: 5px;
  display: inline-block;
  position: relative;
  top: 3px;
}

/* ============================================
  margin/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;
}/*# sourceMappingURL=style.css.map */