@charset "UTF-8";
/*! --------------------------------------------------------------
　　このCSSファイルは .scssファイルからコンパイルされたものです。
　　直接編集しないように注意してください。
--------------------------------------------------------------- */
/* 基本設定
============================================================================ */
/* base > color
============================================================================================================ */
/* 基本色一覧*/
/*白*/
/*黒*/
/*灰色*/
/*黄*/
/*赤*/
/*青*/
/*緑*/
:root {
  --color-primary: #ABCD00;
  --color-secondary: #57B2A1;
  --color-3rd: #7BBB28;
  --color-lightgray: #EBEEF5;
  --color-gray: #5A5C62;
  --gradient-green: linear-gradient(to right, #B7CA39, #21C139);
  --line-clamp: 2;
  --spacing-section: 100px;
  --width-inner: 1000;
  --width-inner-sm: 770;
  --zIndex-header: 40;
  --zIndex-spmenu: 41;
  --zIndex-toggle: 42;
  --zIndex-splash: 50;
  --leading-trim: calc((1em - 1lh) / 2);
  --gutter: 20px;
  --gutter-inner: 20px;
  --fontFamily-serif: "Noto Serif JP", serif;
  --fontFamily-noto: "Noto Sans JP", sans-serif;
  --fontFamily-en: "acumin-pro", sans-serif;
  --ease-in-sine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --ease-out-sine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --ease-in-out-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out-quint: cubic-bezier(0.86, 0, 0.07, 1);
  --ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out-expo: cubic-bezier(1, 0, 0, 1);
  --ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --ease-out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
  --ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --ease-in-back: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --ease-out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-in-out-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* mixin
============================================================================ */
/* フォントサイズをremに変換するmixin ($base-font-sizeはbase/_base.scssに)*/
/* フレックスボックス */
/* SCSS メディアクエリ */
/*最後の要素の余白リセット*/
/*
 * Mixin for placeholder
 * @include placeholderColor(#00ff00);
 */
/*-------------------------------------------------------------
display指定class

【only】
.pc-only / .tab-only / .pad-only / .sp-only /.se-only 
.pctab-only / .tabsp-only / .sp-none

-------------------------------------------------------------*/
.pc-only {
  display: block !important;
}
@media (max-width: 1024px) {
  .pc-only {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .pc-only {
    display: none !important;
  }
}
.pc-only--flex {
  display: flex !important;
}
@media (max-width: 1024px) {
  .pc-only--flex {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .pc-only--flex {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc-only--flex {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .pc-only--flex {
    display: none !important;
  }
}

.tab-only {
  display: none !important;
}
@media (max-width: 1024px) {
  .tab-only {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .tab-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .tab-only {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .tab-only {
    display: none !important;
  }
}
.tab-only--flex {
  display: none !important;
}
@media (max-width: 1024px) {
  .tab-only--flex {
    display: flex !important;
  }
}
@media (max-width: 768px) {
  .tab-only--flex {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .tab-only--flex {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .tab-only--flex {
    display: none !important;
  }
}

.pad-only {
  display: none !important;
}
@media (max-width: 1024px) {
  .pad-only {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .pad-only {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .pad-only {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .pad-only {
    display: none !important;
  }
}
.pad-only--flex {
  display: none !important;
}
@media (max-width: 1024px) {
  .pad-only--flex {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .pad-only--flex {
    display: flex !important;
  }
}
@media (max-width: 767px) {
  .pad-only--flex {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .pad-only--flex {
    display: none !important;
  }
}

.sp-only {
  display: none !important;
}
@media (max-width: 1024px) {
  .sp-only {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .sp-only {
    display: block !important;
  }
}
@media (max-width: 320px) {
  .sp-only {
    display: block !important;
  }
}
.sp-only--flex {
  display: none !important;
}
@media (max-width: 1024px) {
  .sp-only--flex {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .sp-only--flex {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .sp-only--flex {
    display: flex !important;
  }
}
@media (max-width: 320px) {
  .sp-only--flex {
    display: flex !important;
  }
}

.se-only {
  display: none !important;
}
@media (max-width: 1024px) {
  .se-only {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .se-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .se-only {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .se-only {
    display: block !important;
  }
}
.se-only--flex {
  display: none !important;
}
@media (max-width: 1024px) {
  .se-only--flex {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .se-only--flex {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .se-only--flex {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .se-only--flex {
    display: flex !important;
  }
}

.pctab-only {
  display: block !important;
}
@media (max-width: 1024px) {
  .pctab-only {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .pctab-only {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .pctab-only {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .pctab-only {
    display: none !important;
  }
}
.pctab-only--flex {
  display: flex !important;
}
@media (max-width: 1024px) {
  .pctab-only--flex {
    display: flex !important;
  }
}
@media (max-width: 768px) {
  .pctab-only--flex {
    display: flex !important;
  }
}
@media (max-width: 767px) {
  .pctab-only--flex {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .pctab-only--flex {
    display: none !important;
  }
}

.tabsp-only {
  display: none !important;
}
@media (max-width: 1024px) {
  .tabsp-only {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .tabsp-only {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .tabsp-only {
    display: block !important;
  }
}
@media (max-width: 320px) {
  .tabsp-only {
    display: block !important;
  }
}
.tabsp-only--flex {
  display: flex !important;
}
@media (max-width: 1024px) {
  .tabsp-only--flex {
    display: flex !important;
  }
}
@media (max-width: 768px) {
  .tabsp-only--flex {
    display: flex !important;
  }
}
@media (max-width: 767px) {
  .tabsp-only--flex {
    display: flex !important;
  }
}
@media (max-width: 320px) {
  .tabsp-only--flex {
    display: flex !important;
  }
}

@media (max-width: 767px) {
  .sp-none {
    display: none;
  }
}
@media (max-width: 320px) {
  .sp-none {
    display: none;
  }
}

figure {
  display: block;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}

img {
  vertical-align: bottom;
  line-height: 0;
  font-size: 0;
  backface-visibility: hidden;
}

/* 共通部分
============================================================================ */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

li {
  list-style: none;
}

ul,
ol,
dl,
p {
  padding: 0;
  margin: 0;
}

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

a {
  color: inherit;
  /* ress.cssだとunderlineがつくのを阻止 */
  text-decoration: none;
}

select {
  color: black;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 1 !important;
  position: relative;
}

table {
  table-layout: fixed;
  /* ress.css用 */
  border-collapse: collapse;
  border-spacing: 0;
}

td input {
  max-width: 100%;
}

i,
em {
  font-style: normal;
}

* {
  box-sizing: border-box;
}

small {
  font-size: 100%;
}
@media (max-width: 767px) {
  :root {
    --spacing-section: 80px;
  }
}
html,
body {
  line-height: 2.0625;
  color: black;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0em;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  -webkit-print-color-adjust: exact;
  overflow-x: hidden;
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
}
@media (max-width: 767px) {
  html,
  body {
    font-size: 16px;
    font-size: 4.2666666667vw;
    line-height: 2.0625;
  }
}
html::-webkit-scrollbar,
body::-webkit-scrollbar { /* Chrome, Safari 対応 */
  display: none;
}

/* body.Android{
  font-family: $android-font-family;
} */
/* _:-ms-lang(x)::-ms-backdrop, body {
  font-family: $android-font-family;
} */
/* _:-ms-lang(x)::backdrop, body {
  font-family: $android-font-family;
} */
.l__wrapper {
  display: flex;
  flex-direction: column;
  background: white;
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 767px) {
  .l__wrapper {
    border: none;
  }
}
.l__footer {
  margin-top: auto;
  height: 100%;
}

/* base > heading
============================================================================================================ */
/* 基本設定 */
/* base > paragraph
============================================================================================================ */
/* layout
============================================================================ */
/* layout > common
============================================================================================================ */
main {
  position: relative;
}

/* layout > header
============================================================================== */
/*  layout > footer
============================================================================================================ */
/*  layout > page-top
============================================================================================================ */
.common__page_top {
  display: inline-block;
  cursor: pointer;
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 10;
}
@media (max-width: 767px) {
  .common__page_top {
    bottom: 10.6666666667vw;
    right: auto;
    left: 20px;
  }
}
.common__page_top--wrap {
  position: relative;
  width: 74px;
  height: 70px;
}
@media (max-width: 767px) {
  .common__page_top--wrap {
    width: 12.6666666667vw;
    height: 12.1333333333vw;
  }
}

.fixed__btn {
  transform: translateX(180%);
  transition: 1s;
}
.fixed__btn.view {
  transform: translateX(0);
  transition: 1s;
}
@media (max-width: 767px) {
  .fixed__btn {
    transform: translateX(-180%);
  }
}

/*  layout > container
============================================================================================================ */
.l-container--1000 {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .l-container--1000 {
    max-width: 95%;
  }
}
@media (max-width: 767px) {
  .l-container--1000 {
    max-width: 92vw;
  }
}

/*  layout > top
============================================================================================================ */
/*  layout > top
============================================================================================================ */
/* module
============================================================================ */
/* module > btn & cta
============================================================================ */
.mod-btnArrow {
  position: relative;
  padding: 1.2rem 1.8rem;
  background-color: #000;
  color: #fff;
  font-weight: 500;
  line-height: 1.625;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition-property: border-color, color;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  width: min(100%, 400px);
  border: 1px solid #000;
  display: block;
  font-size: 18px;
}
@media (max-width: 767px) {
  .mod-btnArrow {
    padding: 0.8rem 1.8rem;
    width: min(100%, 300px);
  }
}

.mod-btnArrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 102%;
  width: 100%;
  z-index: 0;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: 0 0;
  transition-property: transform;
  transition-duration: 0.3s;
}

.mod-btnArrow__txt {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.mod-btnArrow__arrow {
  flex-shrink: 0;
  position: absolute;
  right: 20px;
  top: 50%;
  translate: 0 -50%;
}

.mod-btnArrow:hover {
  color: #000;
}

.mod-btnArrow:hover::before {
  transform: scaleX(1);
}

.mod-btnArrow__arrow path {
  stroke: currentColor;
}

.mod-btnMore {
  color: white;
  display: grid;
  grid-template-columns: 1fr 100px;
  align-items: center;
  --color-mod-btnMore: var(--color-primary);
  width: 347px;
  border-radius: 50px;
  background-color: var(--color-mod-btnMore);
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 15px;
  padding-left: 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-mod-btnMore);
  transition: color 0.2s cubic-bezier(0.4, 0, 1, 1);
}
@media (max-width: 767px) {
  .mod-btnMore {
    grid-template-columns: 1fr 80px;
    width: 240px;
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 14px;
    padding-right: 10px;
  }
}
.mod-btnMore--secondary {
  --color-mod-btnMore: var(--color-secondary);
}
.mod-btnMore--3rd {
  --color-mod-btnMore: var(--color-3rd);
}

.mod-btnMore::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 102%;
  width: 100%;
  z-index: 0;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: 0 0;
  transition: transform 0.3s;
}

.mod-btnMore__txt {
  font-size: 18px;
  z-index: 2;
  font-weight: 700;
}
@media (max-width: 767px) {
  .mod-btnMore__txt {
    font-size: 14px;
  }
}

.mod-btnMore__more {
  z-index: 2;
  position: relative;
  font-size: 16px;
  font-family: var(--fontFamily-en);
  letter-spacing: 0.1em;
  font-weight: 700;
  height: 40px;
  border-radius: 50px;
  background-color: white;
  color: var(--color-mod-btnMore);
  display: grid;
  place-items: center;
  text-transform: uppercase;
  transition: background-color 0.3s, color 0.3s;
}
@media (max-width: 767px) {
  .mod-btnMore__more {
    height: 32px;
    font-size: 14px;
  }
}

.mod-btnMore:hover .mod-btnMore__txt {
  color: var(--color-mod-btnMore);
}

.mod-btnMore:hover .mod-btnMore__more {
  background-color: var(--color-mod-btnMore);
  color: white;
}

.mod-btnMore:hover::before {
  transform: scaleX(1);
}

.mod-btnCta {
  position: relative;
  padding: 0.5rem 32px;
  background-color: var(--color-primary);
  color: #fff;
  font-weight: 500;
  line-height: 1.625;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition-property: border-color, color;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  width: 260px;
  border: 1px solid var(--color-primary);
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .mod-btnCta {
    padding: 0.3rem 24px 0.3rem 16px;
    width: 160px;
    font-size: 12px;
  }
}

.mod-btnCta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 102%;
  width: 100%;
  z-index: 0;
  background-color: white;
  transform: scaleX(0);
  transform-origin: 0 0;
  transition-property: transform;
  transition-duration: 0.3s;
}

.mod-btnCta__txt {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 1;
  justify-content: space-between;
}

.mod-btnCta__arrow {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .mod-btnCta__arrow {
    width: 13px;
  }
}

.mod-btnCta:hover {
  color: var(--color-primary);
}

.mod-btnCta:hover::before {
  transform: scaleX(1);
}

.mod-btnCta__arrow path {
  stroke: currentColor;
}

input[type=text], input[type=email], select, textarea {
  width: 100%;
  border: 0;
  padding: 5px 10px;
  background-color: white;
  border: solid 1px #ccc;
  border-radius: 3px;
  box-shadow: inner 0 0 4px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  -webkit-appearance: none; /* ベンダープレフィックス(Google Chrome、Safari用) */
  -moz-appearance: none; /* ベンダープレフィックス(Firefox用) */
}
input[type=text]:-moz-placeholder, input[type=email]:-moz-placeholder, select:-moz-placeholder, textarea:-moz-placeholder {
  color: #aaa;
}
input[type=text]:placeholder-shown, input[type=email]:placeholder-shown, select:placeholder-shown, textarea:placeholder-shown {
  color: #aaa;
}
input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #aaa;
}
input[type=text]:-moz-placeholder, input[type=email]:-moz-placeholder, select:-moz-placeholder, textarea:-moz-placeholder {
  color: #aaa;
  opacity: 1;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #aaa;
  opacity: 1;
}
input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #aaa;
}

select {
  height: 39px;
  -webkit-appearance: none; /* ベンダープレフィックス(Google Chrome、Safari用) */
  -moz-appearance: none; /* ベンダープレフィックス(Firefox用) */
  appearance: none; /* 標準のスタイルを無効にする */
  position: relative;
  background-image: url("img/common/arw_select.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center right 10px;
  box-sizing: border-box;
}

::-ms-expand { /* select要素のデザインを無効にする（IE用） */
  display: none;
}

input[type=radio] {
  vertical-align: 0.15em;
  margin-right: 5px;
}

[data-scroll] {
  transition: 1s;
}

[data-scroll=in] {
  opacity: 1;
}

/*  module > breadcrumbs
============================================================================================================ */
.heading-lp__en {
  color: var(--color-primary);
  font-size: 16px;
  line-height: 1.625;
  font-weight: 900;
  text-transform: uppercase;
  font-family: var(--fontFamily-en);
}
@media (max-width: 767px) {
  .heading-lp__en {
    font-size: 12px;
  }
}

.heading-lp__ja {
  margin-top: 8px;
  color: black;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  margin-block-end: var(--leading-trim);
  text-align: justify;
}
@media (max-width: 767px) {
  .heading-lp__ja {
    font-size: 22px;
    margin-top: unset;
  }
}

.heading-lp__parts {
  display: inline-block;
}

.heading-bar {
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
  --color-heading-bar: var(--color-primary);
  align-items: center;
}
@media (max-width: 767px) {
  .heading-bar {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
.heading-bar--secondary {
  --color-heading-bar: var(--color-secondary);
}
.heading-bar--gray {
  --color-heading-bar: #A5AAB4;
}

.heading-bar__txt {
  font-size: 28px;
  font-weight: 700;
  color: black;
}
@media (max-width: 767px) {
  .heading-bar__txt {
    font-size: 18px;
    line-height: 1.5555555556;
  }
}

.heading-bar__bar {
  flex: 1;
  height: 2px;
  width: 100%;
  background-color: var(--color-heading-bar);
  position: relative;
}
.heading-bar__bar::before, .heading-bar__bar::after {
  content: "";
  position: absolute;
  background-color: var(--color-heading-bar);
  width: 8px;
  height: 8px;
  border-radius: 999em;
}
@media (max-width: 767px) {
  .heading-bar__bar::before, .heading-bar__bar::after {
    width: 6px;
    height: 6px;
  }
}
.heading-bar__bar::before {
  translate: 0 -50%;
  top: 50%;
  left: 0;
}
.heading-bar__bar::after {
  translate: 0 -50%;
  top: 50%;
  right: 0;
}

.lp-mv {
  position: relative;
  padding-top: max(80px, 6.25%);
  padding-bottom: max(114px, 8.90625%);
}
@media (max-width: 767px) {
  .lp-mv {
    padding-top: max(80px, 21.3333333333%);
    padding-bottom: max(154px, 41.0666666667%);
  }
}

.lp-mv__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.lp-mv__bgImg {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}

.lp-mv__contents {
  position: relative;
  z-index: 2;
}

.lp-mv__heading {
  font-weight: 900;
  line-height: 70/64;
  font-size: 5vw;
  color: black;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media (max-width: 767px) {
  .lp-mv__heading {
    font-size: 7.2vw;
    letter-spacing: 0;
    row-gap: 15px;
  }
}

.lp-mv__headingParts {
  display: block;
  background-color: white;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 0.5em;
  padding-right: 0.2em;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .lp-mv__headingParts {
    padding-top: 0.05em;
    padding-bottom: 0.05em;
  }
}

.lp-mv__headingPartsColor {
  color: var(--color-3rd);
}

.lp-mv__catch {
  font-size: 1.875vw;
  font-weight: 500;
  color: white;
  padding-left: 80px;
  position: relative;
  margin-top: min(45px, 3.515625vw);
}
@media (max-width: 767px) {
  .lp-mv__catch {
    font-size: 3.7333333333vw;
    letter-spacing: 0;
    padding-left: 10px;
  }
}
.lp-mv__catch::before {
  width: 48px;
  height: 1px;
  position: absolute;
  content: "";
  display: block;
  background-color: white;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
@media (max-width: 767px) {
  .lp-mv__catch::before {
    display: none;
  }
}
.lp-mv__catch::after {
  content: "";
  position: absolute;
  top: 50%;
  background-color: white;
  left: 46px;
  width: 4px;
  height: 4px;
  border-radius: 999em;
  translate: 0 -50%;
}
@media (max-width: 767px) {
  .lp-mv__catch::after {
    display: none;
  }
}

.lp-problem {
  background-color: var(--color-gray);
  padding-top: var(--spacing-section);
  padding-bottom: var(--spacing-section);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  color: white;
  font-family: var(--fontFamily-serif);
}

.lp-problem__inner {
  max-width: 628px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .lp-problem__inner {
    max-width: 77.9104477612%;
  }
}

.lp-problem__heading {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.55;
  letter-spacing: 0.2em;
  background-color: black;
  padding: 0.1em 0;
  font-feature-settings: "palt";
  padding-left: 0.3em;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .lp-problem__heading {
    font-size: 25px;
    line-height: 1.68;
    letter-spacing: 0.07em;
  }
}

.lp-problem__txt {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .lp-problem__txt {
    font-size: 14px;
    line-height: 1.8571428571;
  }
}
.lp-problem__txt:first-of-type {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .lp-problem__txt:first-of-type {
    margin-top: 30px;
  }
}
.lp-problem__txt:not(:first-of-type) {
  margin-top: 20px;
}

.lp-problem__parts {
  display: inline-block;
  font-feature-settings: "palt";
}
.lp-problem__parts--emphasis {
  text-decoration: underline;
  font-weight: 900;
  text-underline-offset: 9px;
}
@media (max-width: 767px) {
  .lp-problem__parts--emphasis {
    text-underline-offset: 4px;
  }
}

.lp-pickup {
  padding-top: 40px;
  padding-bottom: 60px;
  padding-left: calc(70px + var(--gutter));
  padding-right: calc(70px + var(--gutter));
  background-color: #F5F6FA;
}
@media (max-width: 767px) {
  .lp-pickup {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
    padding-bottom: 40px;
  }
}

.lp-pickup__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.lp-pickup__slider {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
  margin-top: 55px;
  position: relative;
}
@media (max-width: 767px) {
  .lp-pickup__slider {
    margin-top: 35px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.lp-pickup__slider iframe {
  aspect-ratio: 312/234;
  max-width: 100%;
  height: auto;
  width: 100%;
}
@media (max-width: 767px) {
  .lp-pickup__slider iframe {
    aspect-ratio: 143/107;
  }
}
.lp-pickup__slider .swiper-slide {
  aspect-ratio: 312/234;
}
@media (max-width: 767px) {
  .lp-pickup__slider .swiper-slide {
    aspect-ratio: 143/107;
  }
}

.lp-pickup__slider .swiper-button-prev {
  background-image: url("./assets/images/lp/slider_arrow_left.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 50px;
  height: 50px;
  left: -70px;
  transition-property: opacity, filter, transform;
  transition-duration: 0.25s;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
@media (max-width: 767px) {
  .lp-pickup__slider .swiper-button-prev {
    width: 24px;
    height: 24px;
    left: -12px;
  }
}
.lp-pickup__slider .swiper-button-prev svg {
  display: none;
}
.lp-pickup__slider .swiper-button-prev:hover {
  filter: drop-shadow(0 0 0.75rem rgba(0, 0, 0, 0.1)) !important;
  transform: scale(1.0494285714) !important;
}

/* 右矢印 */
.lp-pickup__slider .swiper-button-next {
  background-image: url("./assets/images/lp/slider_arrow_right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 50px;
  height: 50px;
  right: -70px;
  transition-property: opacity, filter, transform;
  transition-duration: 0.25s;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
@media (max-width: 767px) {
  .lp-pickup__slider .swiper-button-next {
    width: 24px;
    height: 24px;
    right: -12px;
  }
}
.lp-pickup__slider .swiper-button-next svg {
  display: none;
}
.lp-pickup__slider .swiper-button-next:hover {
  filter: drop-shadow(0 0 0.75rem rgba(0, 0, 0, 0.1)) !important;
  transform: scale(1.0494285714) !important;
}

.lp-philosophy {
  padding-top: var(--spacing-section);
  padding-bottom: var(--spacing-section);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  font-family: var(--fontFamily-serif);
  background-color: white;
  color: black;
}
@media (max-width: 767px) {
  .lp-philosophy {
    padding-left: calc(var(--gutter) * 2);
    padding-right: calc(var(--gutter) * 2);
  }
}

.lp-philosophy__inner {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.lp-philosophy__heading {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.75;
  letter-spacing: 0.2em;
}
@media (max-width: 767px) {
  .lp-philosophy__heading {
    font-size: 25px;
    line-height: 1.76;
    letter-spacing: 0.07em;
  }
}

.lp-philosophy__bar {
  background-color: var(--color-primary);
  height: 105px;
  display: block;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .lp-philosophy__bar {
    height: 53px;
    margin-top: 22px;
  }
}

.lp-philosophy__subheading {
  margin-top: 60px;
  font-size: 24px;
  line-height: 1.0833333333;
  font-weight: 600;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .lp-philosophy__subheading {
    font-size: 18px;
    line-height: 1.5555555556;
  }
}

.lp-philosophy__txt {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: justify;
}
@media (max-width: 767px) {
  .lp-philosophy__txt {
    font-size: 14px;
    line-height: 1.8571428571;
    text-align: unset;
  }
}
.lp-philosophy__txt:first-of-type {
  margin-top: 32px;
}
.lp-philosophy__txt:not(:first-of-type) {
  margin-top: 28px;
}
@media (max-width: 767px) {
  .lp-philosophy__txt:not(:first-of-type) {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .lp-philosophy__txt--first[class] {
    margin-top: 30px;
  }
}

.lp-philosophy__parts {
  display: inline-block;
}
.lp-philosophy__parts--emphasis {
  text-decoration: underline;
  font-weight: 900;
  text-underline-offset: 9px;
}
@media (max-width: 767px) {
  .lp-philosophy__parts--emphasis {
    text-underline-offset: 4px;
  }
}

.lp-philosophy__catch {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.75;
  letter-spacing: 0.2em;
  margin-top: 100px;
}
@media (max-width: 767px) {
  .lp-philosophy__catch {
    font-size: 25px;
    line-height: 1.76;
    letter-spacing: 0.07em;
    margin-top: 60px;
  }
}

.lp-philosophy__logo {
  margin-top: 100px;
}
@media (max-width: 767px) {
  .lp-philosophy__logo {
    margin-top: 60px;
  }
}

.lp-solve {
  background-color: #F5F6FA;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: var(--spacing-section);
  padding-bottom: var(--spacing-section);
  color: black;
}

.lp-solve__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.lp-solve__txt {
  margin-top: 65px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
@media (max-width: 767px) {
  .lp-solve__txt {
    margin-top: 35px;
    text-align: justify;
    font-size: 14px;
    line-height: 1.8571428571;
  }
}

.lp-solve__parts {
  display: inline-block;
}

.lp-solve__img {
  width: 100%;
}

.lp-solve__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
}
.lp-solve__card--before {
  padding-top: 19px;
  background-color: #ebebeb;
  border: 1px solid #828791;
  padding-bottom: 25px;
}
@media (max-width: 767px) {
  .lp-solve__card--before {
    padding-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .lp-solve__card--before .lp-solve__cardHeading {
    width: 260px;
    margin-top: 20px;
  }
}
.lp-solve__card--before .lp-solve__cardTxt {
  color: #5A5C62;
}
.lp-solve__card--after {
  background-color: white;
  padding-top: 15px;
  border: 8px solid var(--color-primary);
  padding-bottom: 18px;
}
@media (max-width: 767px) {
  .lp-solve__card--after {
    border: 6px solid var(--color-primary);
  }
}
.lp-solve__card--after .lp-solve__cardHeading {
  margin-top: 25px;
}
@media (max-width: 767px) {
  .lp-solve__card--after .lp-solve__cardHeading {
    width: 165px;
  }
}

.lp-solve__cardItem {
  display: grid;
  grid-template-columns: 16px auto;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.lp-solve__cardHeading {
  display: grid;
  place-items: center;
}

.lp-solve__cardHeading {
  margin-top: 25px;
}

.lp-solve__cardList {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  row-gap: 2px;
}
@media (max-width: 767px) {
  .lp-solve__cardList {
    margin-top: 15px;
  }
}

.lp-solve__cardTxt {
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .lp-solve__cardTxt {
    font-size: 14px;
  }
}

.lp-solve__arrow {
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 35px;
}
@media (max-width: 767px) {
  .lp-solve__arrow {
    margin-top: unset;
    width: 32px;
  }
}

.lp-solve__flow {
  margin-top: 50px;
  display: grid;
  -moz-column-gap: 35px;
       column-gap: 35px;
  grid-template-columns: 1fr 50px 1fr;
  align-items: center;
}
@media (max-width: 767px) {
  .lp-solve__flow {
    grid-template-columns: 1fr;
    row-gap: 20px;
    margin-top: 40px;
  }
  .lp-solve__flow > *:nth-child(2) {
    rotate: 90deg;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .lp-solve__flow > *:nth-child(2) {
    width: 32px;
  }
}

.lp-solve__btn {
  margin-top: 60px;
  display: grid;
  place-items: center;
}
@media (max-width: 767px) {
  .lp-solve__btn {
    margin-top: 45px;
  }
}

@media (max-width: 767px) {
  .lp-solve__cardFigure {
    height: 75px;
  }
}

@media (max-width: 767px) {
  .lp-solve__cardIcon {
    width: 14px;
  }
}

@media (max-width: 767px) {
  .lp-solve__figure {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

.lp-consultant {
  background-color: #EBEEF5;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: var(--spacing-section);
  color: black;
}

.lp-consultant__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.lp-consultant__intro {
  margin-top: 55px;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
}
@media (max-width: 767px) {
  .lp-consultant__intro {
    font-size: 14px;
    line-height: 1.8571428571;
    margin-top: 30px;
  }
}

.lp-consultant__introParts {
  display: inline-block;
}

.lp-consultant__list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media (max-width: 767px) {
  .lp-consultant__list {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
}

.lp-consultant__item {
  display: grid;
  grid-template-columns: 60px 1fr;
  min-height: 104px;
}
@media (max-width: 767px) {
  .lp-consultant__item {
    min-height: 77px;
  }
}

.lp-consultant__itemNum {
  background-color: var(--color-primary);
  font-size: 32px;
  font-weight: 600;
  color: white;
  display: grid;
  place-items: center;
  font-family: var(--fontFamily-en);
  line-height: 1;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .lp-consultant__itemNum {
    font-size: 22px;
  }
}

.lp-consultant__itemTxt {
  border: 1px solid #A5AAB4;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.6;
  display: grid;
  place-items: center;
  background-color: white;
  padding: 10px;
}
@media (max-width: 767px) {
  .lp-consultant__itemTxt {
    font-size: 16px;
    line-height: 1.625;
    place-items: unset;
    align-items: center;
    padding-left: 20px;
  }
}

.lp-consultant__subheading {
  margin-top: 45px;
}
@media (max-width: 767px) {
  .lp-consultant__subheading {
    margin-top: 40px;
  }
}

.lp-consultant__works {
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  padding-left: 1em;
  text-indent: -1em;
}
@media (max-width: 767px) {
  .lp-consultant__works {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 20px;
  }
}

.lp-partner {
  background-color: #EBEEF5;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: var(--spacing-section);
  padding-bottom: var(--spacing-section);
  color: black;
}
@media (max-width: 767px) {
  .lp-partner {
    padding-top: 100px;
  }
}

.lp-partner__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.lp-partner__flow {
  margin-top: 70px;
  max-width: 914px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  -moz-column-gap: 32px;
       column-gap: 32px;
  grid-template-columns: 1fr 50px 1fr;
  align-items: center;
}
@media (max-width: 767px) {
  .lp-partner__flow {
    margin-top: 40px;
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .lp-partner__flow > *:nth-child(2) {
    rotate: 90deg;
  }
}

.lp-why {
  background-color: #F5F6FA;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: var(--spacing-section);
  padding-bottom: var(--spacing-section);
  color: black;
}

.lp-why__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.lp-why__layout {
  margin-top: 65px;
  display: grid;
  -moz-column-gap: 40px;
       column-gap: 40px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  .lp-why__layout {
    -moz-column-gap: 10px;
         column-gap: 10px;
    margin-top: 40px;
  }
}

.lp-why__card--before {
  border: 1px solid #A5AAB4;
  background-color: #F5F6FA;
}
.lp-why__card--before .lp-why__cardTxt::after {
  content: "";
  width: 80px;
}
.lp-why__card--before .lp-why__cardHeading {
  background-color: #EBEEF5;
}
@media (max-width: 767px) {
  .lp-why__card--before .lp-why__cardHeading {
    height: 80px;
  }
}
@media (max-width: 767px) {
  .lp-why__card--before .lp-why__cardHeading {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.lp-why__card--after {
  background-image: var(--gradient-green);
  padding: 10px;
}
@media (max-width: 767px) {
  .lp-why__card--after {
    padding: 10px 6px 6px;
  }
}
.lp-why__card--after .lp-why__cardHeading {
  color: white;
  padding-top: 11px;
  padding-bottom: 19px;
}
@media (max-width: 767px) {
  .lp-why__card--after .lp-why__cardHeading {
    height: 70px;
  }
}
@media (max-width: 767px) {
  .lp-why__card--after .lp-why__cardHeading {
    padding-top: 6px;
    padding-bottom: 13px;
  }
}
.lp-why__card--after .lp-why__cardList {
  background-color: white;
}

.lp-why__cardHeading {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lp-why__cardHeadingEn {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .lp-why__cardHeadingEn {
    font-size: 10px;
  }
}

.lp-why__cardHeadingJa {
  margin-top: 2px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .lp-why__cardHeadingJa {
    font-size: 14px;
    line-height: 1.2;
    margin-top: 5px;
  }
}

.lp-why__cardSubheading {
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}
@media (max-width: 767px) {
  .lp-why__cardSubheading {
    font-size: 13px;
    line-height: 1.5;
  }
}

.lp-why__cardTxt {
  margin-top: 13px;
  font-size: 16px;
  line-height: 1.4;
  text-align: justify;
  font-weight: 500;
}
@media (max-width: 767px) {
  .lp-why__cardTxt {
    font-size: 13px;
  }
}

.lp-why__cardItem {
  border-top: 1px solid #A5AAB4;
  padding: 25px 20px;
}
@media (max-width: 767px) {
  .lp-why__cardItem {
    padding: 12px 5px;
  }
}

.lp-difference {
  background-color: #EBEEF5;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: var(--spacing-section);
  padding-bottom: var(--spacing-section);
  color: black;
  font-weight: 500;
}

.lp-difference__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.lp-difference__intro {
  margin-top: 55px;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
}
@media (max-width: 767px) {
  .lp-difference__intro {
    font-size: 14px;
    line-height: 1.8571428571;
    margin-top: 35px;
  }
}

.lp-difference__introParts {
  display: inline-block;
}

.lp-difference__layout {
  margin-top: 50px;
  display: grid;
  -moz-column-gap: 40px;
       column-gap: 40px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  .lp-difference__layout {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .lp-difference__layout {
    grid-template-columns: 1fr;
    row-gap: 20px;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}

.lp-difference__cardBody {
  background-color: white;
  padding: 25px 20px;
}
@media (max-width: 767px) {
  .lp-difference__cardBody {
    padding: 10px 10px 15px;
  }
}

.lp-difference__cardHeading {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .lp-difference__cardHeading {
    font-size: 16px;
    line-height: 1.3125;
  }
}

.lp-difference__cardTxt {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.875;
  font-weight: 500;
}
@media (max-width: 767px) {
  .lp-difference__cardTxt {
    font-size: 14px;
    margin-top: 10px;
    line-height: 1.8571428571;
  }
}

.lp-difference__subheading--first {
  margin-top: 35px;
}
@media (max-width: 767px) {
  .lp-difference__subheading--first {
    margin-top: 50px;
  }
}
.lp-difference__subheading--second {
  margin-top: 25px;
}

.lp-difference__txt {
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
  margin-top: 5px;
  text-align: justify;
}
@media (max-width: 767px) {
  .lp-difference__txt {
    font-size: 14px;
    line-height: 1.8571428571;
    margin-top: 15px;
  }
}

.lp-difference__figure {
  overflow: hidden;
}

.lp-difference__img {
  width: 100%;
  transition-duration: 0.25s;
}

.lp-difference__card:hover .lp-difference__img {
  scale: 1.08;
}

.lp-career {
  padding-top: var(--spacing-section);
  padding-bottom: var(--spacing-section);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  font-family: var(--fontFamily-serif);
  background-color: white;
  color: black;
}

.lp-career__inner {
  max-width: min(89%, 580px);
  margin-left: auto;
  margin-right: auto;
}

.lp-career__heading {
  color: #828791;
  font-size: 28px;
  line-height: 1.7142857143;
  letter-spacing: 0.2em;
  border: 1px solid currentColor;
  padding: 32px 50px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .lp-career__heading {
    font-size: 18px;
    line-height: 1.6666666667;
    padding: 17px 40px;
    letter-spacing: 0.07em;
    margin-left: auto;
    margin-right: auto;
  }
}

.lp-career__bar {
  background-color: var(--color-primary);
  height: 105px;
  display: block;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .lp-career__bar {
    height: 53px;
    margin-top: 22px;
  }
}

.lp-career__subheading {
  margin-top: 60px;
  font-size: 24px;
  line-height: 1.0833333333;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.lp-career__txt {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .lp-career__txt {
    font-size: 14px;
    line-height: 1.8571428571;
  }
}
.lp-career__txt--first {
  margin-top: 55px;
}
@media (max-width: 767px) {
  .lp-career__txt--first {
    margin-top: 35px;
  }
}
.lp-career__txt--mt {
  margin-top: 28px;
}

.lp-career__parts {
  display: inline-block;
}
.lp-career__parts--emphasis {
  text-decoration: underline;
  font-weight: 900;
  text-underline-offset: 9px;
}
@media (max-width: 767px) {
  .lp-career__parts--emphasis {
    text-underline-offset: 4px;
  }
}

.lp-career__catch {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.75;
  letter-spacing: 0.2em;
  margin-top: 55px;
}
@media (max-width: 767px) {
  .lp-career__catch {
    font-size: 25px;
    line-height: 1.76;
    letter-spacing: 0.07em;
    margin-top: 40px;
  }
}

.lp-career__logo {
  margin-top: 100px;
}

.lp-introduction {
  background-color: #EBF0E1;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: var(--spacing-section);
  padding-bottom: var(--spacing-section);
  color: black;
}
@media (max-width: 767px) {
  .lp-introduction {
    padding-bottom: 100px;
  }
}

.lp-introduction__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.lp-introduction__layout {
  margin-top: 50px;
  display: grid;
  -moz-column-gap: 40px;
       column-gap: 40px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  .lp-introduction__layout {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
}

.lp-introduction__subheading {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  margin-top: 55px;
}
@media (max-width: 767px) {
  .lp-introduction__subheading {
    margin-top: 35px;
  }
}
@media (max-width: 767px) {
  .lp-introduction__subheading {
    font-size: 18px;
    line-height: 1.5555555556;
  }
}

.lp-introduction__intro {
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .lp-introduction__intro {
    font-size: 14px;
    line-height: 2;
    margin-top: 10px;
  }
}

.lp-introduction__subsubheading {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .lp-introduction__subsubheading {
    font-size: 16px;
    line-height: 1.75;
    margin-top: 25px;
  }
}

.lp-introduction__txt {
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
  text-align: justify;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .lp-introduction__txt {
    font-size: 14px;
    line-height: 1.8571428571;
  }
}
.lp-introduction__txt--first {
  margin-top: 24px;
}
@media (max-width: 767px) {
  .lp-introduction__txt--first {
    margin-top: 20px;
  }
}

.lp-introduction__figure {
  display: grid;
  place-items: center;
  height: 100%;
  width: 100%;
}

.lp-introduction__img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 767px) {
  .lp-introduction__parts {
    display: inline-block;
  }
}

.lp-member {
  background-color: #EBF0E1;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-bottom: var(--spacing-section);
  color: black;
}

.lp-member__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.lp-member__intro {
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .lp-member__intro {
    margin-top: 20px;
    font-size: 14px;
    line-height: 2;
  }
}

.lp-member__slider {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .lp-member__slider {
    margin-top: 35px;
    padding-left: 35px;
  }
}
.lp-member__slider .swiper {
  overflow: visible;
}
.lp-member__slider .swiper-slide {
  width: 200px !important;
}
.lp-member__slider .swiper-slide:hover img {
  scale: 1.08;
}
@media (max-width: 767px) {
  .lp-member__slider .swiper-slide {
    width: 120px !important;
    height: 212px !important;
  }
}
.lp-member__slider .swiper-slide img {
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1);
  transition-duration: 0.25s;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
@media (max-width: 767px) {
  .lp-member__slider .swiper-slide img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
.lp-member__slider .swiper-button-prev {
  background-image: url("./assets/images/lp/slider_arrow_left.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 50px;
  height: 50px;
  left: -70px;
  transition-property: opacity, filter, transform;
  transition-duration: 0.25s;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
@media (max-width: 767px) {
  .lp-member__slider .swiper-button-prev {
    width: 24px;
    height: 24px;
    left: -8px !important;
  }
}
.lp-member__slider .swiper-button-prev svg {
  display: none;
}
.lp-member__slider .swiper-button-prev:hover {
  filter: drop-shadow(0 0 0.75rem rgba(0, 0, 0, 0.1)) !important;
  transform: scale(1.0494285714) !important;
}
.lp-member__slider .swiper-button-next {
  background-image: url("./assets/images/lp/slider_arrow_right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 50px;
  height: 50px;
  right: -70px;
  transition-property: opacity, filter, transform;
  transition-duration: 0.25s;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
@media (max-width: 767px) {
  .lp-member__slider .swiper-button-next {
    width: 24px;
    height: 24px;
    right: -8px !important;
  }
}
.lp-member__slider .swiper-button-next svg {
  display: none;
}
.lp-member__slider .swiper-button-next:hover {
  filter: drop-shadow(0 0 0.75rem rgba(0, 0, 0, 0.1)) !important;
  transform: scale(1.0494285714) !important;
}

.lp-change {
  padding-top: var(--spacing-section);
  padding-bottom: var(--spacing-section);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  background-color: #F5F6FA;
  color: black;
}
@media (max-width: 767px) {
  .lp-change {
    padding-bottom: 160px;
  }
}

.lp-change__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.lp-change__txt {
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .lp-change__txt {
    font-size: 14px;
    line-height: 1.8571428571;
  }
}

.lp-change__subheading {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .lp-change__subheading {
    margin-top: 45px;
  }
}

.lp-change__btn {
  margin-top: 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 20px;
}
@media (max-width: 767px) {
  .lp-change__btn {
    justify-content: center;
    margin-top: 35px;
  }
}

.lp-cta {
  position: fixed;
  padding-bottom: 110px;
  bottom: 0;
  right: 0;
  z-index: 2;
  overflow: hidden;
}
@media (max-width: 767px) {
  .lp-cta {
    padding-bottom: 5.5rem;
  }
}
.lp-cta.is-stop {
  position: absolute;
  bottom: 0;
}/*# sourceMappingURL=style.css.map */