@charset "UTF-8";
/* #########################################################

基本設定

######################################################### */
/* ========================================================
 * 画像パス
 * ======================================================== */
/* ========================================================
 * コンテンツ幅
 * ======================================================== */
/* ========================================================
 * 単位用設定
 * ======================================================== */
/* ========================================================
 * 色用設定
 * ======================================================== */
/* ========================================================
 * フォント用設定
 * ======================================================== */
/* #########################################################

レイアウト用設定

######################################################### */
/* ========================================================
 * mixin mq用の変数設定
 * ======================================================== */
/*
 * ▼ iOSデバイス
 * iPhone5: 320 × 568
 * iPhone 6-8: 375 × 667（1334x750）
 * iPhone 6-8 plus: 414 × 736（1920x1080）
 * iPhone X,XS,11Pro: 375 × 812（1125x2436）
 * iPhone XR,11: 414 × 896（828x1792）
 *
 * iPad/iPad Mini: 768 × 1024
 * iPad Pro: 1024 × 1366
 * https://www.paintcodeapp.com/news/ultimate-guide-to-iphone-resolutions
 */
/* ========================================================
 * メディアクエリ用 Mixin
 * ======================================================== */
/**
 * ステップ1.モバイルファーストかデスクトップファーストかを選ぶ
 * ステップ2.該当する設定を有効化、その他をコメントアウトする。
 * ステップ3.選択したタイプにより、「▼モバイルファーストの例」、「▼デスクトップファーストの例」のどちらかを参考にブレイクポイントを設定する。
 * →実際の設定は_base.scssではなく、インポート元で行う。
 */
/*
// ステップ3：▼モバイルファーストの例
// メディアクエリのブロック外にベースになるCSSを書く。
// モバイルファーストでは小さい画面サイズから順々に指定。
main{
  // デフォルト
  background: yellow;
  // タブレット
  @include mq(md) {
    background: orange;
  }
  // デスクトップ
  @include mq(lg) {
    background: red;
  }
}
//------------------------------
*/
/*
// ステップ3：▼デスクトップファーストの例
// メディアクエリのブロック外にベースになるCSSを書く。
// デスクトップファーストでは大きい画面サイズから順々に指定。
main{
  // デフォルト
  background: red;
  // タブレット
  @include mq(md){
    background: orange;
  }
  // スマートフォン
  @include mq(sm){
    background: yellow;
  }
}
//------------------------------
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/*!
 * ress.css • v4.0.0
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

*, :after, :before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

hr {
  overflow: visible;
  height: 0;
  color: inherit;
}

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

input {
  border-radius: 0;
}

[disabled] {
  cursor: default;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
  color: inherit;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  white-space: normal;
  max-width: 100%;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

/* #########################################################

要素関連（リセットCSSの種類によっては不要）

######################################################### */
html {
  background: #fff;
  font-size: 10px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

@media screen and (min-width: 768px) {
  html {
    font-size: 62.5%;
    height: 100%;
  }
}
body {
  color: #323232;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  position: relative;
}

a {
  color: #323232;
  text-decoration: none;
}

a:visited {
  color: #323232;
}

a:focus {
  color: #323232;
}

a:hover {
  opacity: none;
}

table {
  border-collapse: collapse;
}

ul, ol {
  list-style: none;
}

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

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #b3b3b3;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #b3b3b3;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #b3b3b3;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #b3b3b3;
}

input::placeholder,
textarea::placeholder {
  color: #b3b3b3;
}

.sp-hide {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp-hide {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .pc-hide {
    display: none;
  }
}
main {
  padding-top: 80px;
}

@media screen and (min-width: 768px) {
  main {
    overflow-x: hidden;
  }
}
main .lower-page {
  padding: 0 16px 56px;
}

@media screen and (min-width: 768px) {
  main .lower-page {
    margin: 40px auto;
    max-width: 1360px;
    padding: 0 40px 40px;
  }
}
main .lower-page-cat {
  margin-top: 0;
}

@font-face {
  font-family: DIN2014;
  src: url("assets/font/DIN_2014.otf");
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
}

a,
button {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media screen and (min-width: 1024px) {
  a:hover,
  button:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

img {
  -o-object-fit: cover;
     object-fit: cover;
}

.o-header-lp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 7px 0;
  background: #fff;
  z-index: 888;
  -webkit-transition: top 0.3s ease;
  transition: top 0.3s ease;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 1024px) {
  .o-header-lp {
    padding: 8px 0;
  }
}
.o-header-lp .container-lp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.o-header-lp--logo {
  width: 108px;
  height: auto;
  margin-left: -8px;
}
@media screen and (min-width: 1024px) {
  .o-header-lp--logo {
    width: 192px;
    margin-left: 0;
  }
}
.o-header-lp-menu {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .o-header-lp-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 1024px) {
  .o-header-lp-menu {
    gap: 32px;
  }
}
.o-header-lp-menu > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .o-header-lp-menu > ul {
    gap: 24px;
  }
}
.o-header-lp-menu > ul > li {
  position: relative;
}
.o-header-lp-menu > ul > li > a, .o-header-lp-menu > ul > li > p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 1024px) {
  .o-header-lp-menu > ul > li > a, .o-header-lp-menu > ul > li > p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1360px) {
  .o-header-lp-menu > ul > li > a, .o-header-lp-menu > ul > li > p {
    font-size: 18px;
  }
}
.o-header-lp-menu > ul > li > ul {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 184px;
  padding: 24px;
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.o-header-lp-menu > ul > li > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 1360px) {
  .o-header-lp-menu > ul > li > ul > li > a {
    font-size: 18px;
  }
}
.o-header-lp-menu > ul > li > ul::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 12px;
  background: transparent;
}
.o-header-lp-menu > ul > li:hover ul {
  opacity: 1;
  pointer-events: auto;
}
.o-header-lp-menu > a {
  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: 4px;
  padding: 13.5px 20px;
  background: #2C3033;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 1024px) {
  .o-header-lp-menu > a {
    padding: 10px 12px;
  }
}
@media screen and (min-width: 1360px) {
  .o-header-lp-menu > a {
    font-size: 18px;
    padding: 11.5px 43px 11.5px 35px;
  }
}
.o-header-lp-menu > a p {
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  color: #fff !important;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .o-header-lp-menu > a p {
    font-size: 16px;
    line-height: 25px;
  }
}
.o-header-lp-menu > a span {
  font-size: 10px;
  font-weight: 700;
  line-height: 12px;
  color: #fff !important;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .o-header-lp-mobile {
    display: none;
  }
}
.o-header-lp-mobile > button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
.o-header-lp-mobile > button span {
  width: 25px;
  height: 2px;
  border-radius: 5px;
  background: #000;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.o-header-lp-mobile--content {
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  height: calc(100vh - 50px);
  background: #fff;
  padding: 32px 16px;
  overflow: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 999;
}
.o-header-lp-mobile--content > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-bottom: 0;
  padding: 0 16px;
}
.o-header-lp-mobile--content > ul > li > a, .o-header-lp-mobile--content > ul > li > p {
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.02em;
}
.o-header-lp-mobile--content > ul > li > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  padding-top: 26px;
  padding-left: 0;
}
.o-header-lp-mobile--content > ul > li > ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
}
.o-header-lp-mobile--content > ul > li > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.02em;
}
.o-header-lp-mobile--content > button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 16px;
  border-radius: 10px;
  background-color: #2C3033;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.o-header-lp-mobile--content > button > a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 21px;
  line-height: 32px;
  font-weight: 700;
  color: #fff;
}
.o-header-lp-mobile--content > button > a svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -70px;
}
.o-header-lp-mobile.open > button span:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
          transform: translateY(8px) rotate(45deg);
}
.o-header-lp-mobile.open > button span:nth-child(2) {
  opacity: 0;
}
.o-header-lp-mobile.open > button span:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
          transform: translateY(-8px) rotate(-45deg);
}
.o-header-lp-mobile.open .o-header-lp-mobile--content {
  opacity: 1;
  pointer-events: auto;
}

/* #########################################################

基本設定

######################################################### */
/* ========================================================
 * 画像パス
 * ======================================================== */
/* ========================================================
 * コンテンツ幅
 * ======================================================== */
/* ========================================================
 * 単位用設定
 * ======================================================== */
/* ========================================================
 * 色用設定
 * ======================================================== */
/* ========================================================
 * フォント用設定
 * ======================================================== */
/* #########################################################

レイアウト用設定

######################################################### */
/* ========================================================
 * mixin mq用の変数設定
 * ======================================================== */
/*
 * ▼ iOSデバイス
 * iPhone5: 320 × 568
 * iPhone 6-8: 375 × 667（1334x750）
 * iPhone 6-8 plus: 414 × 736（1920x1080）
 * iPhone X,XS,11Pro: 375 × 812（1125x2436）
 * iPhone XR,11: 414 × 896（828x1792）
 *
 * iPad/iPad Mini: 768 × 1024
 * iPad Pro: 1024 × 1366
 * https://www.paintcodeapp.com/news/ultimate-guide-to-iphone-resolutions
 */
/* ========================================================
 * メディアクエリ用 Mixin
 * ======================================================== */
/**
 * ステップ1.モバイルファーストかデスクトップファーストかを選ぶ
 * ステップ2.該当する設定を有効化、その他をコメントアウトする。
 * ステップ3.選択したタイプにより、「▼モバイルファーストの例」、「▼デスクトップファーストの例」のどちらかを参考にブレイクポイントを設定する。
 * →実際の設定は_base.scssではなく、インポート元で行う。
 */
/*
// ステップ3：▼モバイルファーストの例
// メディアクエリのブロック外にベースになるCSSを書く。
// モバイルファーストでは小さい画面サイズから順々に指定。
main{
  // デフォルト
  background: yellow;
  // タブレット
  @include mq(md) {
    background: orange;
  }
  // デスクトップ
  @include mq(lg) {
    background: red;
  }
}
//------------------------------
*/
/*
// ステップ3：▼デスクトップファーストの例
// メディアクエリのブロック外にベースになるCSSを書く。
// デスクトップファーストでは大きい画面サイズから順々に指定。
main{
  // デフォルト
  background: red;
  // タブレット
  @include mq(md){
    background: orange;
  }
  // スマートフォン
  @include mq(sm){
    background: yellow;
  }
}
//------------------------------
*/
/*!
 * ress.css • v4.0.0
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

*, :after, :before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

hr {
  overflow: visible;
  height: 0;
  color: inherit;
}

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

input {
  border-radius: 0;
}

[disabled] {
  cursor: default;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
  color: inherit;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  white-space: normal;
  max-width: 100%;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

/* #########################################################

要素関連（リセットCSSの種類によっては不要）

######################################################### */
html {
  background: #fff;
  font-size: 10px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

@media screen and (min-width: 768px) {
  html {
    font-size: 62.5%;
    height: 100%;
  }
}
body {
  color: #323232;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  position: relative;
}

a {
  color: #323232;
  text-decoration: none;
}

a:visited {
  color: #323232;
}

a:focus {
  color: #323232;
}

a:hover {
  opacity: none;
}

table {
  border-collapse: collapse;
}

ul, ol {
  list-style: none;
}

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

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #b3b3b3;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #b3b3b3;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #b3b3b3;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #b3b3b3;
}

input::placeholder,
textarea::placeholder {
  color: #b3b3b3;
}

.sp-hide {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp-hide {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .pc-hide {
    display: none;
  }
}
main {
  padding-top: 80px;
}

@media screen and (min-width: 768px) {
  main {
    overflow-x: hidden;
  }
}
main .lower-page {
  padding: 0 16px 56px;
}

@media screen and (min-width: 768px) {
  main .lower-page {
    margin: 40px auto;
    max-width: 1360px;
    padding: 0 40px 40px;
  }
}
main .lower-page-cat {
  margin-top: 0;
}

.o-footer, .o-footer-client {
  position: relative;
}
.o-footer .o-footer-text, .o-footer-client .o-footer-text {
  position: absolute;
  width: 100%;
}
.o-footer .o-footer-text .a-heading-notion, .o-footer-client .o-footer-text .a-heading-notion {
  display: block;
  margin: 0 auto;
  max-width: 1440px;
  padding: 12px 16px;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .o-footer .o-footer-text .a-heading-notion, .o-footer-client .o-footer-text .a-heading-notion {
    padding: 10px 80px;
  }
}
.o-footer small, .o-footer-client small {
  background: #fff;
  border-top: 1px solid #e8e9ec;
  color: #757575;
  display: block;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 16px 0 16px 46px;
  text-align: left;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .o-footer small, .o-footer-client small {
    font-size: 1.4rem;
    padding: 16px 0;
    text-align: center;
  }
}
.o-footer {
  border-top: 3px solid #005d4f;
  padding: 100px 0 0;
}
.o-footer .footer-logo {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .o-footer .footer-logo {
    width: 50%;
  }
}
.o-footer-menu {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 auto;
  max-width: 1000px;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .o-footer-menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.o-footer-menu ul {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  -ms-grid-rows: (auto)[7];
  grid-template-rows: repeat(7, auto);
  margin-bottom: 100px;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .o-footer-menu ul {
    -ms-grid-rows: (auto)[5];
    grid-template-rows: repeat(5, auto);
    padding-left: 80px;
  }
}
.o-footer-menu ul li {
  margin-right: 20px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .o-footer-menu ul li {
    width: 280px;
  }
}
.o-footer-menu ul li a {
  font-size: 1.4rem;
  font-weight: bold;
  padding: 12px 20px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  width: 100%;
}
.o-footer-menu ul li a:hover {
  background-color: #f2f7f6;
  border-bottom: 1px solid #005d4f;
}
.o-footer.is-merit-wrap {
  border-top: none;
  padding: 0;
}
.o-footer.is-merit-wrap .o-footer-menu {
  display: none;
}

/* #########################################################

基本設定

######################################################### */
/* ========================================================
 * 画像パス
 * ======================================================== */
/* ========================================================
 * コンテンツ幅
 * ======================================================== */
/* ========================================================
 * 単位用設定
 * ======================================================== */
/* ========================================================
 * 色用設定
 * ======================================================== */
/* ========================================================
 * フォント用設定
 * ======================================================== */
/* #########################################################

レイアウト用設定

######################################################### */
/* ========================================================
 * mixin mq用の変数設定
 * ======================================================== */
/*
 * ▼ iOSデバイス
 * iPhone5: 320 × 568
 * iPhone 6-8: 375 × 667（1334x750）
 * iPhone 6-8 plus: 414 × 736（1920x1080）
 * iPhone X,XS,11Pro: 375 × 812（1125x2436）
 * iPhone XR,11: 414 × 896（828x1792）
 *
 * iPad/iPad Mini: 768 × 1024
 * iPad Pro: 1024 × 1366
 * https://www.paintcodeapp.com/news/ultimate-guide-to-iphone-resolutions
 */
/* ========================================================
 * メディアクエリ用 Mixin
 * ======================================================== */
/**
 * ステップ1.モバイルファーストかデスクトップファーストかを選ぶ
 * ステップ2.該当する設定を有効化、その他をコメントアウトする。
 * ステップ3.選択したタイプにより、「▼モバイルファーストの例」、「▼デスクトップファーストの例」のどちらかを参考にブレイクポイントを設定する。
 * →実際の設定は_base.scssではなく、インポート元で行う。
 */
/*
// ステップ3：▼モバイルファーストの例
// メディアクエリのブロック外にベースになるCSSを書く。
// モバイルファーストでは小さい画面サイズから順々に指定。
main{
  // デフォルト
  background: yellow;
  // タブレット
  @include mq(md) {
    background: orange;
  }
  // デスクトップ
  @include mq(lg) {
    background: red;
  }
}
//------------------------------
*/
/*
// ステップ3：▼デスクトップファーストの例
// メディアクエリのブロック外にベースになるCSSを書く。
// デスクトップファーストでは大きい画面サイズから順々に指定。
main{
  // デフォルト
  background: red;
  // タブレット
  @include mq(md){
    background: orange;
  }
  // スマートフォン
  @include mq(sm){
    background: yellow;
  }
}
//------------------------------
*/
/*!
 * ress.css • v4.0.0
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

*, :after, :before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

hr {
  overflow: visible;
  height: 0;
  color: inherit;
}

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

input {
  border-radius: 0;
}

[disabled] {
  cursor: default;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
  color: inherit;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  white-space: normal;
  max-width: 100%;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

/* #########################################################

要素関連（リセットCSSの種類によっては不要）

######################################################### */
html {
  background: #fff;
  font-size: 10px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

@media screen and (min-width: 768px) {
  html {
    font-size: 62.5%;
    height: 100%;
  }
}
body {
  color: #323232;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  position: relative;
}

a {
  color: #323232;
  text-decoration: none;
}

a:visited {
  color: #323232;
}

a:focus {
  color: #323232;
}

a:hover {
  opacity: none;
}

table {
  border-collapse: collapse;
}

ul, ol {
  list-style: none;
}

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

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #b3b3b3;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #b3b3b3;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #b3b3b3;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #b3b3b3;
}

input::placeholder,
textarea::placeholder {
  color: #b3b3b3;
}

.sp-hide {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp-hide {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .pc-hide {
    display: none;
  }
}
main {
  padding-top: 80px;
}

@media screen and (min-width: 768px) {
  main {
    overflow-x: hidden;
  }
}
main .lower-page {
  padding: 0 16px 56px;
}

@media screen and (min-width: 768px) {
  main .lower-page {
    margin: 40px auto;
    max-width: 1360px;
    padding: 0 40px 40px;
  }
}
main .lower-page-cat {
  margin-top: 0;
}

.m-maker-search {
  background: #f2f5f6;
  padding: 40px 16px;
}
.m-maker-search--title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .m-maker-search--title {
    margin: 0 auto 16px;
    max-width: 696px;
  }
}
.m-maker-search--title h2 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .m-maker-search--title h2 {
    font-size: 2.2rem;
  }
}
.m-maker-search--title a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #003d4f;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1.3rem;
  font-weight: 700;
  gap: 4px;
  letter-spacing: 0.04em;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.m-maker-search--title a:hover {
  color: #005d4f;
}
@media screen and (min-width: 768px) {
  .m-maker-search--title a {
    font-size: 1.4rem;
  }
}
.m-maker-search--title a img {
  margin-top: 2px;
}
@media screen and (min-width: 768px) {
  .m-maker-search--title a img {
    margin-top: 0;
  }
}

/* #########################################################

基本設定

######################################################### */
/* ========================================================
 * 画像パス
 * ======================================================== */
/* ========================================================
 * コンテンツ幅
 * ======================================================== */
/* ========================================================
 * 単位用設定
 * ======================================================== */
/* ========================================================
 * 色用設定
 * ======================================================== */
/* ========================================================
 * フォント用設定
 * ======================================================== */
/* #########################################################

レイアウト用設定

######################################################### */
/* ========================================================
 * mixin mq用の変数設定
 * ======================================================== */
/*
 * ▼ iOSデバイス
 * iPhone5: 320 × 568
 * iPhone 6-8: 375 × 667（1334x750）
 * iPhone 6-8 plus: 414 × 736（1920x1080）
 * iPhone X,XS,11Pro: 375 × 812（1125x2436）
 * iPhone XR,11: 414 × 896（828x1792）
 *
 * iPad/iPad Mini: 768 × 1024
 * iPad Pro: 1024 × 1366
 * https://www.paintcodeapp.com/news/ultimate-guide-to-iphone-resolutions
 */
/* ========================================================
 * メディアクエリ用 Mixin
 * ======================================================== */
/**
 * ステップ1.モバイルファーストかデスクトップファーストかを選ぶ
 * ステップ2.該当する設定を有効化、その他をコメントアウトする。
 * ステップ3.選択したタイプにより、「▼モバイルファーストの例」、「▼デスクトップファーストの例」のどちらかを参考にブレイクポイントを設定する。
 * →実際の設定は_base.scssではなく、インポート元で行う。
 */
/*
// ステップ3：▼モバイルファーストの例
// メディアクエリのブロック外にベースになるCSSを書く。
// モバイルファーストでは小さい画面サイズから順々に指定。
main{
  // デフォルト
  background: yellow;
  // タブレット
  @include mq(md) {
    background: orange;
  }
  // デスクトップ
  @include mq(lg) {
    background: red;
  }
}
//------------------------------
*/
/*
// ステップ3：▼デスクトップファーストの例
// メディアクエリのブロック外にベースになるCSSを書く。
// デスクトップファーストでは大きい画面サイズから順々に指定。
main{
  // デフォルト
  background: red;
  // タブレット
  @include mq(md){
    background: orange;
  }
  // スマートフォン
  @include mq(sm){
    background: yellow;
  }
}
//------------------------------
*/
/*!
 * ress.css • v4.0.0
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

*, :after, :before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

hr {
  overflow: visible;
  height: 0;
  color: inherit;
}

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

input {
  border-radius: 0;
}

[disabled] {
  cursor: default;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
  color: inherit;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  white-space: normal;
  max-width: 100%;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

/* #########################################################

要素関連（リセットCSSの種類によっては不要）

######################################################### */
html {
  background: #fff;
  font-size: 10px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

@media screen and (min-width: 768px) {
  html {
    font-size: 62.5%;
    height: 100%;
  }
}
body {
  color: #323232;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  position: relative;
}

a {
  color: #323232;
  text-decoration: none;
}

a:visited {
  color: #323232;
}

a:focus {
  color: #323232;
}

a:hover {
  opacity: none;
}

table {
  border-collapse: collapse;
}

ul, ol {
  list-style: none;
}

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

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #b3b3b3;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #b3b3b3;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #b3b3b3;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #b3b3b3;
}

input::placeholder,
textarea::placeholder {
  color: #b3b3b3;
}

.sp-hide {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp-hide {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .pc-hide {
    display: none;
  }
}
main {
  padding-top: 80px;
}

@media screen and (min-width: 768px) {
  main {
    overflow-x: hidden;
  }
}
main .lower-page {
  padding: 0 16px 56px;
}

@media screen and (min-width: 768px) {
  main .lower-page {
    margin: 40px auto;
    max-width: 1360px;
    padding: 0 40px 40px;
  }
}
main .lower-page-cat {
  margin-top: 0;
}

.m-search form {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .m-search form {
    gap: 8px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
    max-width: 696px;
  }
}
.m-search input {
  background: #fff;
  border: 1px solid #e8e9ec;
  font-size: 1.4rem;
  height: 39px;
  letter-spacing: 0.04em;
  padding: 0 8px;
  width: calc(100% - 65px);
}
@media screen and (min-width: 768px) {
  .m-search input {
    font-size: 1.6rem;
    height: 56px;
    padding: 0 16px;
    width: 523px;
  }
}
.m-search button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #31373b;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.3rem;
  font-weight: 700;
  gap: 2px;
  height: 38px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.04em;
  width: 65px;
}
@media screen and (min-width: 768px) {
  .m-search button {
    font-size: 2rem;
    gap: 4px;
    height: 56px;
    width: 165px;
  }
}
@media screen and (min-width: 768px) {
  .m-search button span {
    margin-left: -8px;
  }
}
@media screen and (min-width: 768px) {
  .m-search button span img {
    height: 19px;
    width: 19px;
  }
}

/* #########################################################

基本設定

######################################################### */
/* ========================================================
 * 画像パス
 * ======================================================== */
/* ========================================================
 * コンテンツ幅
 * ======================================================== */
/* ========================================================
 * 単位用設定
 * ======================================================== */
/* ========================================================
 * 色用設定
 * ======================================================== */
/* ========================================================
 * フォント用設定
 * ======================================================== */
/* #########################################################

レイアウト用設定

######################################################### */
/* ========================================================
 * mixin mq用の変数設定
 * ======================================================== */
/*
 * ▼ iOSデバイス
 * iPhone5: 320 × 568
 * iPhone 6-8: 375 × 667（1334x750）
 * iPhone 6-8 plus: 414 × 736（1920x1080）
 * iPhone X,XS,11Pro: 375 × 812（1125x2436）
 * iPhone XR,11: 414 × 896（828x1792）
 *
 * iPad/iPad Mini: 768 × 1024
 * iPad Pro: 1024 × 1366
 * https://www.paintcodeapp.com/news/ultimate-guide-to-iphone-resolutions
 */
/* ========================================================
 * メディアクエリ用 Mixin
 * ======================================================== */
/**
 * ステップ1.モバイルファーストかデスクトップファーストかを選ぶ
 * ステップ2.該当する設定を有効化、その他をコメントアウトする。
 * ステップ3.選択したタイプにより、「▼モバイルファーストの例」、「▼デスクトップファーストの例」のどちらかを参考にブレイクポイントを設定する。
 * →実際の設定は_base.scssではなく、インポート元で行う。
 */
/*
// ステップ3：▼モバイルファーストの例
// メディアクエリのブロック外にベースになるCSSを書く。
// モバイルファーストでは小さい画面サイズから順々に指定。
main{
  // デフォルト
  background: yellow;
  // タブレット
  @include mq(md) {
    background: orange;
  }
  // デスクトップ
  @include mq(lg) {
    background: red;
  }
}
//------------------------------
*/
/*
// ステップ3：▼デスクトップファーストの例
// メディアクエリのブロック外にベースになるCSSを書く。
// デスクトップファーストでは大きい画面サイズから順々に指定。
main{
  // デフォルト
  background: red;
  // タブレット
  @include mq(md){
    background: orange;
  }
  // スマートフォン
  @include mq(sm){
    background: yellow;
  }
}
//------------------------------
*/
/*!
 * ress.css • v4.0.0
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

*, :after, :before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

hr {
  overflow: visible;
  height: 0;
  color: inherit;
}

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

input {
  border-radius: 0;
}

[disabled] {
  cursor: default;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
  color: inherit;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  white-space: normal;
  max-width: 100%;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

/* #########################################################

要素関連（リセットCSSの種類によっては不要）

######################################################### */
html {
  background: #fff;
  font-size: 10px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

@media screen and (min-width: 768px) {
  html {
    font-size: 62.5%;
    height: 100%;
  }
}
body {
  color: #323232;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  position: relative;
}

a {
  color: #323232;
  text-decoration: none;
}

a:visited {
  color: #323232;
}

a:focus {
  color: #323232;
}

a:hover {
  opacity: none;
}

table {
  border-collapse: collapse;
}

ul, ol {
  list-style: none;
}

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

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #b3b3b3;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #b3b3b3;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #b3b3b3;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #b3b3b3;
}

input::placeholder,
textarea::placeholder {
  color: #b3b3b3;
}

.sp-hide {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp-hide {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .pc-hide {
    display: none;
  }
}
main {
  padding-top: 80px;
}

@media screen and (min-width: 768px) {
  main {
    overflow-x: hidden;
  }
}
main .lower-page {
  padding: 0 16px 56px;
}

@media screen and (min-width: 768px) {
  main .lower-page {
    margin: 40px auto;
    max-width: 1360px;
    padding: 0 40px 40px;
  }
}
main .lower-page-cat {
  margin-top: 0;
}

.m-block-form-lp {
  padding: 20px 16px;
  background: #F2F5F6;
}
@media screen and (min-width: 1024px) {
  .m-block-form-lp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 30px;
    padding: 40px 37px 0 40px;
  }
}
@media screen and (min-width: 1024px) {
  .m-block-form-lp-box {
    margin-bottom: 40px;
  }
}
.m-block-form-lp--sub {
  font-size: 14px;
  line-height: 100%;
  font-weight: 700;
  color: #000;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .m-block-form-lp--sub {
    font-size: 18px;
  }
}
.m-block-form-lp-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  padding-right: 18px;
  margin-top: 12px;
}
@media screen and (min-width: 1024px) {
  .m-block-form-lp-wrap {
    padding-right: 0;
    margin-bottom: 26px;
  }
}
.m-block-form-lp-wrap h6 {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  color: #000;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .m-block-form-lp-wrap h6 {
    font-size: 32px;
  }
}
.m-block-form-lp-wrap h6 span {
  font-weight: 900;
  color: #F67506;
}
@media screen and (min-width: 1024px) {
  .m-block-form-lp-wrap h6 br {
    display: none;
  }
}
.m-block-form-lp-wrap img {
  width: 139px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 1024px) {
  .m-block-form-lp-wrap img {
    display: none;
  }
}
.m-block-form-lp > img {
  display: none;
  width: 393px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 1024px) {
  .m-block-form-lp > img {
    display: block;
  }
}

/* #########################################################

基本設定

######################################################### */
/* ========================================================
 * 画像パス
 * ======================================================== */
/* ========================================================
 * コンテンツ幅
 * ======================================================== */
/* ========================================================
 * 単位用設定
 * ======================================================== */
/* ========================================================
 * 色用設定
 * ======================================================== */
/* ========================================================
 * フォント用設定
 * ======================================================== */
/* #########################################################

レイアウト用設定

######################################################### */
/* ========================================================
 * mixin mq用の変数設定
 * ======================================================== */
/*
 * ▼ iOSデバイス
 * iPhone5: 320 × 568
 * iPhone 6-8: 375 × 667（1334x750）
 * iPhone 6-8 plus: 414 × 736（1920x1080）
 * iPhone X,XS,11Pro: 375 × 812（1125x2436）
 * iPhone XR,11: 414 × 896（828x1792）
 *
 * iPad/iPad Mini: 768 × 1024
 * iPad Pro: 1024 × 1366
 * https://www.paintcodeapp.com/news/ultimate-guide-to-iphone-resolutions
 */
/* ========================================================
 * メディアクエリ用 Mixin
 * ======================================================== */
/**
 * ステップ1.モバイルファーストかデスクトップファーストかを選ぶ
 * ステップ2.該当する設定を有効化、その他をコメントアウトする。
 * ステップ3.選択したタイプにより、「▼モバイルファーストの例」、「▼デスクトップファーストの例」のどちらかを参考にブレイクポイントを設定する。
 * →実際の設定は_base.scssではなく、インポート元で行う。
 */
/*
// ステップ3：▼モバイルファーストの例
// メディアクエリのブロック外にベースになるCSSを書く。
// モバイルファーストでは小さい画面サイズから順々に指定。
main{
  // デフォルト
  background: yellow;
  // タブレット
  @include mq(md) {
    background: orange;
  }
  // デスクトップ
  @include mq(lg) {
    background: red;
  }
}
//------------------------------
*/
/*
// ステップ3：▼デスクトップファーストの例
// メディアクエリのブロック外にベースになるCSSを書く。
// デスクトップファーストでは大きい画面サイズから順々に指定。
main{
  // デフォルト
  background: red;
  // タブレット
  @include mq(md){
    background: orange;
  }
  // スマートフォン
  @include mq(sm){
    background: yellow;
  }
}
//------------------------------
*/
/*!
 * ress.css • v4.0.0
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

*, :after, :before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

hr {
  overflow: visible;
  height: 0;
  color: inherit;
}

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

input {
  border-radius: 0;
}

[disabled] {
  cursor: default;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
  color: inherit;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  white-space: normal;
  max-width: 100%;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

/* #########################################################

要素関連（リセットCSSの種類によっては不要）

######################################################### */
html {
  background: #fff;
  font-size: 10px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

@media screen and (min-width: 768px) {
  html {
    font-size: 62.5%;
    height: 100%;
  }
}
body {
  color: #323232;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  position: relative;
}

a {
  color: #323232;
  text-decoration: none;
}

a:visited {
  color: #323232;
}

a:focus {
  color: #323232;
}

a:hover {
  opacity: none;
}

table {
  border-collapse: collapse;
}

ul, ol {
  list-style: none;
}

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

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #b3b3b3;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #b3b3b3;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #b3b3b3;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #b3b3b3;
}

input::placeholder,
textarea::placeholder {
  color: #b3b3b3;
}

.sp-hide {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp-hide {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .pc-hide {
    display: none;
  }
}
main {
  padding-top: 80px;
}

@media screen and (min-width: 768px) {
  main {
    overflow-x: hidden;
  }
}
main .lower-page {
  padding: 0 16px 56px;
}

@media screen and (min-width: 768px) {
  main .lower-page {
    margin: 40px auto;
    max-width: 1360px;
    padding: 0 40px 40px;
  }
}
main .lower-page-cat {
  margin-top: 0;
}

.a-button-form-lp {
  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;
  position: relative;
  font-size: 18px;
  line-height: 32px;
  font-weight: 700;
  color: #fff !important;
  width: 100%;
  background: #2C3033;
  border-radius: 10px;
  padding: 12px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 1024px) {
  .a-button-form-lp {
    font-size: 20px;
    max-width: 680px;
    padding: 12px;
  }
}
.a-button-form-lp svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 16px;
}
@media screen and (min-width: 1024px) {
  .a-button-form-lp svg {
    left: 24px;
    width: 28px;
    height: auto;
  }
}
.a-button-form-lp.big {
  font-size: 21px;
  padding: 16px;
  line-height: 150%;
}
@media screen and (min-width: 1024px) {
  .a-button-form-lp.big {
    font-size: 24px;
    line-height: 36px;
  }
}
@media screen and (min-width: 1024px) {
  .a-button-form-lp.big svg {
    left: 24px;
    width: 40px;
    height: auto;
  }
}

/* #########################################################

基本設定

######################################################### */
/* ========================================================
 * 画像パス
 * ======================================================== */
/* ========================================================
 * コンテンツ幅
 * ======================================================== */
/* ========================================================
 * 単位用設定
 * ======================================================== */
/* ========================================================
 * 色用設定
 * ======================================================== */
/* ========================================================
 * フォント用設定
 * ======================================================== */
/* #########################################################

レイアウト用設定

######################################################### */
/* ========================================================
 * mixin mq用の変数設定
 * ======================================================== */
/*
 * ▼ iOSデバイス
 * iPhone5: 320 × 568
 * iPhone 6-8: 375 × 667（1334x750）
 * iPhone 6-8 plus: 414 × 736（1920x1080）
 * iPhone X,XS,11Pro: 375 × 812（1125x2436）
 * iPhone XR,11: 414 × 896（828x1792）
 *
 * iPad/iPad Mini: 768 × 1024
 * iPad Pro: 1024 × 1366
 * https://www.paintcodeapp.com/news/ultimate-guide-to-iphone-resolutions
 */
/* ========================================================
 * メディアクエリ用 Mixin
 * ======================================================== */
/**
 * ステップ1.モバイルファーストかデスクトップファーストかを選ぶ
 * ステップ2.該当する設定を有効化、その他をコメントアウトする。
 * ステップ3.選択したタイプにより、「▼モバイルファーストの例」、「▼デスクトップファーストの例」のどちらかを参考にブレイクポイントを設定する。
 * →実際の設定は_base.scssではなく、インポート元で行う。
 */
/*
// ステップ3：▼モバイルファーストの例
// メディアクエリのブロック外にベースになるCSSを書く。
// モバイルファーストでは小さい画面サイズから順々に指定。
main{
  // デフォルト
  background: yellow;
  // タブレット
  @include mq(md) {
    background: orange;
  }
  // デスクトップ
  @include mq(lg) {
    background: red;
  }
}
//------------------------------
*/
/*
// ステップ3：▼デスクトップファーストの例
// メディアクエリのブロック外にベースになるCSSを書く。
// デスクトップファーストでは大きい画面サイズから順々に指定。
main{
  // デフォルト
  background: red;
  // タブレット
  @include mq(md){
    background: orange;
  }
  // スマートフォン
  @include mq(sm){
    background: yellow;
  }
}
//------------------------------
*/
/*!
 * ress.css • v4.0.0
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

*, :after, :before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

hr {
  overflow: visible;
  height: 0;
  color: inherit;
}

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

input {
  border-radius: 0;
}

[disabled] {
  cursor: default;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
  color: inherit;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  white-space: normal;
  max-width: 100%;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

/* #########################################################

要素関連（リセットCSSの種類によっては不要）

######################################################### */
html {
  background: #fff;
  font-size: 10px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

@media screen and (min-width: 768px) {
  html {
    font-size: 62.5%;
    height: 100%;
  }
}
body {
  color: #323232;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  position: relative;
}

a {
  color: #323232;
  text-decoration: none;
}

a:visited {
  color: #323232;
}

a:focus {
  color: #323232;
}

a:hover {
  opacity: none;
}

table {
  border-collapse: collapse;
}

ul, ol {
  list-style: none;
}

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

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #b3b3b3;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #b3b3b3;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #b3b3b3;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #b3b3b3;
}

input::placeholder,
textarea::placeholder {
  color: #b3b3b3;
}

.sp-hide {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp-hide {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .pc-hide {
    display: none;
  }
}
main {
  padding-top: 80px;
}

@media screen and (min-width: 768px) {
  main {
    overflow-x: hidden;
  }
}
main .lower-page {
  padding: 0 16px 56px;
}

@media screen and (min-width: 768px) {
  main .lower-page {
    margin: 40px auto;
    max-width: 1360px;
    padding: 0 40px 40px;
  }
}
main .lower-page-cat {
  margin-top: 0;
}

.a-button, .a-button-white {
  display: inline-block;
  padding: 4px 20px;
}
.a-button {
  background: #31373b;
  color: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 0;
}
.a-button:visited, .a-button:focus {
  color: #fff;
}
.a-button:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: -webkit-gradient(linear, left top, right top, from(#005D4F), to(#003D4F));
  background: linear-gradient(to right, #005D4F, #003D4F);
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.a-button:hover {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  color: #fff;
}
.a-button:hover:after {
  opacity: 1;
}
.a-button input {
  border: none !important;
}
.a-button-white {
  background: #fff;
  border: 1px solid #e8e9ec;
  color: #323232;
}
.a-button-white:visited, .a-button-white:focus {
  color: #323232;
}
.a-button-login {
  color: #fff !important;
}
.a-button-border {
  border: 1px solid #e8e9ec;
  border-radius: 1px;
  color: #323232;
  display: inline-block;
}
.a-button-border.choice-lang {
  position: relative;
}
.a-button-border.choice-lang::after {
  background: url("./assets/img/icon/icon-arrow-down.svg") top left no-repeat;
  background-size: contain;
  content: "";
  height: 15px;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15px;
  z-index: -1;
}
.a-button-bg {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
}
.a-button-bg::after {
  background: url("./assets/img/icon/icon-arrow-right-gr.svg") top left no-repeat;
  background-size: contain;
  color: #005d4f;
  content: "";
  font-size: 20px;
  height: 10px;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
}
.a-button-bg:hover {
  background: #f2f7f6;
  color: #005d4f;
  opacity: 1;
}
.a-button-bg-underline {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #e8e9ec;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
}
.a-button-bg-underline:after {
  background: url("./assets/img/icon/icon-arrow-right-gr.svg") top left no-repeat;
  background-size: contain;
  color: #005d4f;
  content: "";
  font-size: 20px;
  height: 10px;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
}
.a-button-bg-underline:hover {
  background: #f2f7f6;
  border-bottom: 1px solid #005d4f;
  color: #005d4f;
  opacity: 1;
}
.a-button-wh {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #e8e9ec;
  color: #323232;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.3rem;
  font-weight: 700;
  height: 38px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.04em;
  width: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media screen and (min-width: 768px) {
  .a-button-wh {
    display: inline-block;
    font-size: 1.4rem;
    height: auto;
    line-height: 1;
    padding: 8px 20px;
    width: auto;
  }
}
.a-button-wh:hover {
  border: 1px solid #005d4f;
  color: #005d4f;
}
@media screen and (min-width: 768px) {
  .a-button-wh-wrap {
    text-align: right;
  }
}
.a-button.mypage-child-button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.7rem;
  font-weight: 700;
  height: 56px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.04em;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .a-button.mypage-child-button {
    font-size: 2rem;
  }
}

.p-home-search-list--item:hover .a-button,
.p-home-search-list--item:has(:hover) .a-button {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.p-home-search-list--item:hover .a-button:after,
.p-home-search-list--item:has(:hover) .a-button:after {
  opacity: 1;
}

/* #########################################################

基本設定

######################################################### */
/* ========================================================
 * 画像パス
 * ======================================================== */
/* ========================================================
 * コンテンツ幅
 * ======================================================== */
/* ========================================================
 * 単位用設定
 * ======================================================== */
/* ========================================================
 * 色用設定
 * ======================================================== */
/* ========================================================
 * フォント用設定
 * ======================================================== */
/* #########################################################

レイアウト用設定

######################################################### */
/* ========================================================
 * mixin mq用の変数設定
 * ======================================================== */
/*
 * ▼ iOSデバイス
 * iPhone5: 320 × 568
 * iPhone 6-8: 375 × 667（1334x750）
 * iPhone 6-8 plus: 414 × 736（1920x1080）
 * iPhone X,XS,11Pro: 375 × 812（1125x2436）
 * iPhone XR,11: 414 × 896（828x1792）
 *
 * iPad/iPad Mini: 768 × 1024
 * iPad Pro: 1024 × 1366
 * https://www.paintcodeapp.com/news/ultimate-guide-to-iphone-resolutions
 */
/* ========================================================
 * メディアクエリ用 Mixin
 * ======================================================== */
/**
 * ステップ1.モバイルファーストかデスクトップファーストかを選ぶ
 * ステップ2.該当する設定を有効化、その他をコメントアウトする。
 * ステップ3.選択したタイプにより、「▼モバイルファーストの例」、「▼デスクトップファーストの例」のどちらかを参考にブレイクポイントを設定する。
 * →実際の設定は_base.scssではなく、インポート元で行う。
 */
/*
// ステップ3：▼モバイルファーストの例
// メディアクエリのブロック外にベースになるCSSを書く。
// モバイルファーストでは小さい画面サイズから順々に指定。
main{
  // デフォルト
  background: yellow;
  // タブレット
  @include mq(md) {
    background: orange;
  }
  // デスクトップ
  @include mq(lg) {
    background: red;
  }
}
//------------------------------
*/
/*
// ステップ3：▼デスクトップファーストの例
// メディアクエリのブロック外にベースになるCSSを書く。
// デスクトップファーストでは大きい画面サイズから順々に指定。
main{
  // デフォルト
  background: red;
  // タブレット
  @include mq(md){
    background: orange;
  }
  // スマートフォン
  @include mq(sm){
    background: yellow;
  }
}
//------------------------------
*/
/*!
 * ress.css • v4.0.0
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

*, :after, :before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

hr {
  overflow: visible;
  height: 0;
  color: inherit;
}

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

input {
  border-radius: 0;
}

[disabled] {
  cursor: default;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
  color: inherit;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  white-space: normal;
  max-width: 100%;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

/* #########################################################

要素関連（リセットCSSの種類によっては不要）

######################################################### */
html {
  background: #fff;
  font-size: 10px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

@media screen and (min-width: 768px) {
  html {
    font-size: 62.5%;
    height: 100%;
  }
}
body {
  color: #323232;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  position: relative;
}

a {
  color: #323232;
  text-decoration: none;
}

a:visited {
  color: #323232;
}

a:focus {
  color: #323232;
}

a:hover {
  opacity: none;
}

table {
  border-collapse: collapse;
}

ul, ol {
  list-style: none;
}

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

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #b3b3b3;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #b3b3b3;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #b3b3b3;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #b3b3b3;
}

input::placeholder,
textarea::placeholder {
  color: #b3b3b3;
}

.sp-hide {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp-hide {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .pc-hide {
    display: none;
  }
}
main {
  padding-top: 80px;
}

@media screen and (min-width: 768px) {
  main {
    overflow-x: hidden;
  }
}
main .lower-page {
  padding: 0 16px 56px;
}

@media screen and (min-width: 768px) {
  main .lower-page {
    margin: 40px auto;
    max-width: 1360px;
    padding: 0 40px 40px;
  }
}
main .lower-page-cat {
  margin-top: 0;
}

main {
  padding-top: 50px;
}
@media screen and (min-width: 768px) {
  main {
    padding-top: 80px;
  }
}

#wpadminbar ~ main {
  padding-top: 96px;
}
@media screen and (min-width: 768px) {
  #wpadminbar ~ main {
    padding-top: 112px;
  }
}

.container-lp {
  max-width: 1280px;
  padding: 0 16px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .container-lp {
    padding: 0 40px;
  }
}

.input-hidden {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
}

.p-lp-banner {
  position: relative;
  padding-top: 24px;
}
@media screen and (min-width: 1024px) {
  .p-lp-banner {
    padding-top: 46px;
  }
}
.p-lp-banner--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-lp-banner--pc {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .p-lp-banner--sp {
    display: none;
  }
}
.p-lp-banner img {
  width: 100%;
}
.p-lp-banner-text {
  margin-top: 25.6px;
}
@media screen and (min-width: 768px) {
  .p-lp-banner-text {
    margin-top: -8.7016666667vw;
  }
}
@media screen and (min-width: 1360px) {
  .p-lp-banner-text {
    margin-top: -104.42px;
  }
}
.p-lp-banner-text p {
  color: #000;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-banner-text p {
    font-size: 2vw;
    line-height: 2.4166666667vw;
  }
}
@media screen and (min-width: 1360px) {
  .p-lp-banner-text p {
    font-size: 24px;
    line-height: 29px;
  }
}
.p-lp-banner-text h2 {
  color: #000;
  font-size: 31px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.01em;
  text-align: center;
  margin-top: 10.62px;
}
@media screen and (min-width: 768px) {
  .p-lp-banner-text h2 {
    font-size: 4.1666666667vw;
    margin-top: 1.2016666667vw;
  }
}
@media screen and (min-width: 1360px) {
  .p-lp-banner-text h2 {
    font-size: 50px;
    margin-top: 14.42px;
  }
}
.p-lp-banner-text h2 span {
  display: inline-block;
  color: #f67506;
  font-size: 42px;
  font-weight: 900;
  line-height: 120%;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .p-lp-banner-text h2 span {
    font-size: 5.6666666667vw;
  }
}
@media screen and (min-width: 1360px) {
  .p-lp-banner-text h2 span {
    font-size: 68px;
  }
}
.p-lp-company-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 28px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-lp-company-contact {
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
    margin-top: 49px;
  }
}
.p-lp-company-contact .a-button-form-lp {
  max-width: 680px;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 64px;
}
@media screen and (min-width: 768px) {
  .p-lp-company-contact .a-button-form-lp {
    width: calc((100% - 40px) / 2);
    height: 84px;
  }
}
.p-lp-company-tel {
  max-width: 680px;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-lp-company-tel a {
  position: relative;
  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: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 64px;
  padding: 5px 20px 2px;
  border: 2px solid #aaa;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) {
  .p-lp-company-tel a {
    height: 84px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
    padding: 0 10px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-company-tel a {
    padding: 0 20px;
    gap: 20px;
  }
}
@media screen and (min-width: 1360px) {
  .p-lp-company-tel a {
    gap: 39px;
  }
}
.p-lp-company-tel a:hover {
  opacity: 1;
  cursor: default;
}
.p-lp-company-tel a svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 16px;
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 768px) {
  .p-lp-company-tel a svg {
    width: 30px;
    height: 30px;
    left: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-company-tel a svg {
    width: 40px;
    height: 40px;
    left: 32px;
  }
}
.p-lp-company-tel a p {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 0;
  line-height: 36px;
}
@media screen and (min-width: 768px) {
  .p-lp-company-tel a p {
    font-size: 22px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-company-tel a p {
    font-size: 26px;
    line-height: 40px;
  }
}
@media screen and (min-width: 1360px) {
  .p-lp-company-tel a p {
    font-size: 30px;
    line-height: 45px;
  }
}
.p-lp-company-tel a span {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: -4px;
}
@media screen and (min-width: 768px) {
  .p-lp-company-tel a span {
    font-size: 12px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-company-tel a span {
    font-size: 16px;
  }
}
.p-lp-company-tel > p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
  font-size: 12px;
  font-weight: 400;
  margin-top: 16px;
  margin-bottom: 0;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .p-lp-company-tel > p {
    margin-top: 12px;
  }
}
.p-lp-company-tel > p:last-child {
  margin-top: 0;
}
.p-lp-system {
  padding-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-lp-system {
    padding-top: 55px;
  }
}
.p-lp-system--title {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  color: #000;
  margin-bottom: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-lp-system--title {
    font-size: 28px;
  }
}
.p-lp-system-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 16px minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-lp-system-list {
    -ms-grid-columns: minmax(0, 1fr) 21px minmax(0, 1fr) 21px minmax(0, 1fr) 21px minmax(0, 1fr);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 21px;
    margin-top: 24px;
  }
}
.p-lp-system-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: 8px;
  padding: 10px 10px 0;
  background: #f2f5f6;
  height: 145.85px;
}
@media screen and (min-width: 768px) {
  .p-lp-system-item {
    height: auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-system-item {
    padding: 20px 10px 0;
    height: 232px;
    gap: 15px;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
}
.p-lp-system-item p {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  color: #000;
  text-align: center;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-system-item p {
    font-size: 18px;
    line-height: 140%;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-system-item p {
    font-size: 22px;
  }
}
.p-lp-system-item p span {
  color: #f67506;
}
@media screen and (min-width: 768px) {
  .p-lp-system-item p br {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-system-item p br {
    display: block;
  }
}
.p-lp-system-item:nth-child(1) img {
  width: 89.59px;
}
@media screen and (min-width: 768px) {
  .p-lp-system-item:nth-child(1) img {
    width: auto;
  }
}
.p-lp-system-item:nth-child(2) img {
  width: 57.78px;
  margin-top: -15px;
}
@media screen and (min-width: 768px) {
  .p-lp-system-item:nth-child(2) img {
    margin-top: 0;
    width: auto;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-system-item:nth-child(2) img {
    margin-top: -25px;
  }
}
.p-lp-system-item:nth-child(3) img {
  width: 100.77px;
}
@media screen and (min-width: 768px) {
  .p-lp-system-item:nth-child(3) img {
    width: auto;
  }
}
.p-lp-system-item:nth-child(4) img {
  width: 115.79px;
  margin-top: 3px;
}
@media screen and (min-width: 768px) {
  .p-lp-system-item:nth-child(4) img {
    width: auto;
  }
}
.p-lp-function {
  padding: 28.15px 0 32px;
}
@media screen and (min-width: 768px) {
  .p-lp-function {
    padding: 60px 0 64px;
  }
}
.p-lp-function--title {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  max-width: 220px;
  text-align: center;
  margin: auto;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-function--title {
    font-size: 28px;
    max-width: 100%;
  }
}
.p-lp-function-list {
  margin-top: 16px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 17px minmax(0, 1fr) 17px minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 17px;
}
@media screen and (min-width: 768px) {
  .p-lp-function-list {
    -ms-grid-columns: minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr) 15px minmax(0, 1fr);
    grid-template-columns: repeat(9, minmax(0, 1fr));
    margin-top: 24px;
    gap: 15px;
  }
}
.p-lp-function-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-lp-function-item {
    gap: 8px;
  }
}
.p-lp-function-item img {
  width: 100%;
  aspect-ratio: 1;
}
.p-lp-function-item p {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-lp-function-item p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-function-item p {
    font-size: 18px;
  }
}
.p-lp-advan {
  padding: 16px 0;
  background: #f2f5f6;
}
@media screen and (min-width: 768px) {
  .p-lp-advan {
    padding: 48px 0;
  }
}
.p-lp-advan-box {
  position: relative;
  background: #fff;
  padding: 16px 0;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-lp-advan-box {
    padding: 48px 40px 32px;
  }
}
.p-lp-advan--sub {
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
  max-width: calc(100% - 150px);
  padding-left: 16px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-advan--sub {
    font-size: 16px;
    line-height: 20px;
    max-width: calc(100% - 350px);
    padding-left: 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-advan--sub {
    font-size: 18px;
    line-height: 100%;
  }
}
.p-lp-advan--title {
  font-size: 22px;
  font-weight: 700;
  line-height: 100%;
  padding-left: 14px;
  margin-bottom: 0;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .p-lp-advan--title {
    font-size: 28px;
    padding-left: 0;
    margin-top: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-advan--title {
    font-size: 32px;
  }
}
.p-lp-advan--title span {
  font-weight: 900;
  color: #f67506;
}
.p-lp-advan-decor {
  display: none;
  position: absolute;
  top: -42px;
  right: 95px;
  width: 250px;
  height: 160px;
}
@media screen and (min-width: 768px) {
  .p-lp-advan-decor {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-advan-decor {
    width: 301px;
    height: 185px;
  }
}
.p-lp-advan-decor-sp {
  position: absolute;
  top: -9px;
  right: 12px;
  width: 114px;
  height: 67px;
}
@media screen and (min-width: 768px) {
  .p-lp-advan-decor-sp {
    display: none;
  }
}
.p-lp-advan-list {
  margin-top: 18px;
}
@media screen and (min-width: 768px) {
  .p-lp-advan-list {
    margin-top: 24px;
  }
}
.p-lp-advan-item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 6px 12px;
  border-bottom: 2px solid #e2e8ee;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-lp-advan-item-title {
    padding: 10px 16px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-advan-item-title {
    padding: 15px 20px;
  }
}
.p-lp-advan-item-title--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-lp-advan-item-title--wrap {
    gap: 12px;
  }
}
.p-lp-advan-item-title--wrap span {
  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-family: DIN2014;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: -0.06em;
  color: #fff;
  background: #f67506;
  width: 28px;
  height: 28px;
  border-radius: 100%;
}
@media screen and (min-width: 1024px) {
  .p-lp-advan-item-title--wrap span {
    font-size: 22px;
    width: 32px;
    height: 32px;
  }
}
.p-lp-advan-item-title--wrap p {
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-advan-item-title--wrap p {
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-advan-item-title--wrap p {
    font-size: 20px;
    line-height: 22px;
  }
}
@media screen and (min-width: 768px) {
  .p-lp-advan-item-title--wrap p br {
    display: none;
  }
}
.p-lp-advan-item-title button {
  position: relative;
  width: 30px;
  height: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-lp-advan-item-title button span:nth-child(1) {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 17.5px;
  height: 2px;
  background: #f67506;
  border-radius: 4px;
}
.p-lp-advan-item-title button span:nth-child(2) {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 17.5px;
  width: 2px;
  background: #f67506;
  border-radius: 4px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.p-lp-advan-item-title.is-show button span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.p-lp-advan-item-content {
  padding: 16px;
}
@media screen and (min-width: 768px) {
  .p-lp-advan-item-content {
    padding: 24px 20px 33px;
  }
}
.p-lp-advan-item-content--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: 20px;
}
@media screen and (min-width: 768px) {
  .p-lp-advan-item-content--1 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-advan-item-content--1 {
    gap: 42px;
    padding-right: 64px;
  }
}
.p-lp-advan-item-content--1 p {
  font-size: 15px;
  line-height: 160%;
  font-weight: 400;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-advan-item-content--1 p {
    font-size: 16px;
  }
}
.p-lp-advan-item-content--1 p span {
  font-weight: 700;
}
.p-lp-advan-item-content--1 img {
  width: 274px;
  height: 133px;
}
@media screen and (min-width: 768px) {
  .p-lp-advan-item-content--1 img {
    width: 205px;
    height: 100px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-advan-item-content--1 img {
    width: 274px;
    height: 133px;
  }
}
.p-lp-advan-item-content--2 p {
  font-size: 15px;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-advan-item-content--2 p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-advan-item-content--2 p {
    font-size: 18px;
    line-height: 100%;
  }
}
.p-lp-advan-item-content--2 p span {
  font-weight: 700;
}
.p-lp-advan-item-content--2 ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 29px minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 29px;
  margin-bottom: 0;
  padding: 0 8px;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .p-lp-advan-item-content--2 ul {
    -ms-grid-columns: minmax(0, 1fr) 30px minmax(0, 1fr) 30px minmax(0, 1fr) 30px minmax(0, 1fr);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px 30px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-advan-item-content--2 ul {
    gap: 35px 60px;
  }
}
.p-lp-advan-item-content--2 ul li img {
  width: 100%;
  aspect-ratio: 1;
}
.p-lp-advan-item-content--2 ul li p {
  font-size: 15px;
  line-height: 100%;
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-lp-advan-item-content--2 ul li p {
    font-size: 16px;
    line-height: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-advan-item-content--2 ul li p {
    font-size: 20px;
    margin-top: -11px;
    line-height: 100%;
  }
}
.p-lp-advan-item-content--3 h6 {
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-advan-item-content--3 h6 {
    text-align: left;
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-advan-item-content--3 h6 {
    font-size: 20px;
  }
}
.p-lp-advan-item-content--3-box-1 ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 34px minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  padding: 0 11px;
  margin-bottom: 0;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-lp-advan-item-content--3-box-1 ul {
    -ms-grid-columns: minmax(0, 1fr) 16px minmax(0, 1fr) 16px minmax(0, 1fr) 16px minmax(0, 1fr);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding: 0;
  }
}
@media screen and (min-width: 1360px) {
  .p-lp-advan-item-content--3-box-1 ul {
    gap: 78px;
    padding: 0 39px;
    margin-top: 24px;
  }
}
.p-lp-advan-item-content--3-box-1 ul li {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 243px;
  gap: 8px;
}
@media screen and (min-width: 1360px) {
  .p-lp-advan-item-content--3-box-1 ul li {
    min-height: 344px;
  }
}
.p-lp-advan-item-content--3-box-1 ul li:nth-child(1) .p-lp-advan-item-content--3-box-1--img {
  width: 88px;
}
@media screen and (min-width: 1360px) {
  .p-lp-advan-item-content--3-box-1 ul li:nth-child(1) .p-lp-advan-item-content--3-box-1--img {
    width: 125px;
  }
}
.p-lp-advan-item-content--3-box-1 ul li:nth-child(2) .p-lp-advan-item-content--3-box-1--img {
  width: 120px;
}
@media screen and (min-width: 1360px) {
  .p-lp-advan-item-content--3-box-1 ul li:nth-child(2) .p-lp-advan-item-content--3-box-1--img {
    width: 170px;
  }
}
.p-lp-advan-item-content--3-box-1 ul li:nth-child(3) .p-lp-advan-item-content--3-box-1--img {
  width: 65px;
}
@media screen and (min-width: 1360px) {
  .p-lp-advan-item-content--3-box-1 ul li:nth-child(3) .p-lp-advan-item-content--3-box-1--img {
    width: 106px;
  }
}
.p-lp-advan-item-content--3-box-1 ul li:nth-child(4) .p-lp-advan-item-content--3-box-1--img {
  width: 73px;
}
@media screen and (min-width: 1360px) {
  .p-lp-advan-item-content--3-box-1 ul li:nth-child(4) .p-lp-advan-item-content--3-box-1--img {
    width: 104px;
  }
}
.p-lp-advan-item-content--3-box-1--title {
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  color: #fff;
  padding: 5px 15px;
  background: #f67506;
  border-radius: 12px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-lp-advan-item-content--3-box-1--title {
    padding: 6px 21px;
    border-radius: 15px;
  }
}
@media screen and (min-width: 1360px) {
  .p-lp-advan-item-content--3-box-1--title {
    font-size: 18px;
    line-height: 18px;
  }
}
.p-lp-advan-item-content--3-box-1-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-lp-advan-item-content--3-box-1-wrap {
    border-radius: 10px;
  }
}
.p-lp-advan-item-content--3-box-1-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[2];
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.p-lp-advan-item-content--3-box-1-text p {
  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;
  font-size: 10px;
  font-weight: 700;
  line-height: 10px;
  padding: 4px;
  color: #fff;
  margin-bottom: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-lp-advan-item-content--3-box-1-text p {
    font-size: 10px;
    padding: 4px 2px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-advan-item-content--3-box-1-text p {
    font-size: 12px;
    line-height: 12px;
    min-height: 26px;
    padding: 4px;
  }
}
.p-lp-advan-item-content--3-box-1-text p:nth-child(1) {
  background: #62707c;
}
.p-lp-advan-item-content--3-box-1-text p:nth-child(2) {
  background: #f67506;
}
.p-lp-advan-item-content--3-box-1--param {
  width: 100%;
}
.p-lp-advan-item-content--3-box-2 {
  margin-top: 32px;
}
.p-lp-advan-item-content--3-box-2 ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 34px minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  padding: 0 11px;
  margin-bottom: 0;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-lp-advan-item-content--3-box-2 ul {
    -ms-grid-columns: (minmax(0, 1fr))[3];
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-advan-item-content--3-box-2 ul {
    gap: 93px;
    padding: 0 39px;
    margin-top: 24px;
  }
}
.p-lp-advan-item-content--3-box-2 ul li {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 243px;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .p-lp-advan-item-content--3-box-2 ul li {
    min-height: 336px;
  }
}
.p-lp-advan-item-content--3-box-2 ul li:nth-child(1) .p-lp-advan-item-content--3-box-2--img {
  width: 124px;
}
@media screen and (min-width: 1024px) {
  .p-lp-advan-item-content--3-box-2 ul li:nth-child(1) .p-lp-advan-item-content--3-box-2--img {
    width: 219px;
  }
}
.p-lp-advan-item-content--3-box-2 ul li:nth-child(2) .p-lp-advan-item-content--3-box-2--img {
  width: 100px;
}
@media screen and (min-width: 1024px) {
  .p-lp-advan-item-content--3-box-2 ul li:nth-child(2) .p-lp-advan-item-content--3-box-2--img {
    width: 142px;
  }
}
.p-lp-advan-item-content--3-box-2 ul li:nth-child(3) .p-lp-advan-item-content--3-box-2--img {
  width: 79px;
}
@media screen and (min-width: 1024px) {
  .p-lp-advan-item-content--3-box-2 ul li:nth-child(3) .p-lp-advan-item-content--3-box-2--img {
    width: 105px;
  }
}
.p-lp-advan-item-content--3-box-2--title {
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  color: #fff;
  padding: 5px 10px;
  background: #f67506;
  border-radius: 12px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-lp-advan-item-content--3-box-2--title {
    padding: 6px 20px;
    border-radius: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-advan-item-content--3-box-2--title {
    font-size: 18px;
    line-height: 18px;
  }
}
.p-lp-advan-item-content--3-box-2--img.pc {
  display: none;
}
@media screen and (min-width: 1024px) {
  .p-lp-advan-item-content--3-box-2--img.pc {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-advan-item-content--3-box-2--img.sp {
    display: none;
  }
}
.p-lp-advan-item-content--3-box-2-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .p-lp-advan-item-content--3-box-2-wrap {
    border-radius: 10px;
  }
}
.p-lp-advan-item-content--3-box-2-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[2];
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.p-lp-advan-item-content--3-box-2-text p {
  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;
  font-size: 10px;
  font-weight: 700;
  line-height: 10px;
  padding: 4px;
  color: #fff;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .p-lp-advan-item-content--3-box-2-text p {
    font-size: 12px;
    line-height: 12px;
    min-height: 26px;
  }
}
.p-lp-advan-item-content--3-box-2-text p:nth-child(1) {
  background: #62707c;
}
.p-lp-advan-item-content--3-box-2-text p:nth-child(2) {
  background: #f67506;
}
.p-lp-advan-item-content--3-box-2--param {
  width: 100%;
}
.p-lp-advan-item-content--3-box-2--param.pc {
  display: none;
}
@media screen and (min-width: 1024px) {
  .p-lp-advan-item-content--3-box-2--param.pc {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-advan-item-content--3-box-2--param.sp {
    display: none;
  }
}
.p-lp-advan-item-content--3-box-2--note {
  font-size: 15px;
  line-height: 160%;
  font-weight: 400;
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .p-lp-advan-item-content--3-box-2--note {
    font-size: 16px;
    margin-top: 24px;
    text-align: center;
  }
}
.p-lp-advan-item-content--3-box-3 {
  margin-bottom: 0;
  padding: 0;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-lp-advan-item-content--3-box-3 {
    margin-top: 32px;
  }
}
.p-lp-advan-item-content--3-box-3 h6 {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-lp-advan-item-content--3-box-3 h6 {
    font-size: 28px;
  }
}
.p-lp-advan-item-content--3-box-3-table-pc {
  position: relative;
  max-width: 952px;
  margin: auto;
  margin-top: 32px;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-lp-advan-item-content--3-box-3-table-pc {
    display: block;
  }
}
.p-lp-advan-item-content--3-box-3-table-pc table {
  width: 100%;
}
.p-lp-advan-item-content--3-box-3-table-pc table th,
.p-lp-advan-item-content--3-box-3-table-pc table td {
  padding: 10px;
  border: 1px solid #DBDEE3;
  border-left: none;
}
@media screen and (min-width: 1024px) {
  .p-lp-advan-item-content--3-box-3-table-pc table th,
  .p-lp-advan-item-content--3-box-3-table-pc table td {
    padding: 16px 10px;
  }
}
.p-lp-advan-item-content--3-box-3-table-pc table th p,
.p-lp-advan-item-content--3-box-3-table-pc table td p {
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .p-lp-advan-item-content--3-box-3-table-pc table th p,
  .p-lp-advan-item-content--3-box-3-table-pc table td p {
    font-size: 18px;
    line-height: 24px;
  }
}
.p-lp-advan-item-content--3-box-3-table-pc table th p span,
.p-lp-advan-item-content--3-box-3-table-pc table td p span {
  color: #F67506;
}
.p-lp-advan-item-content--3-box-3-table-pc table th {
  background: #F4F7FA;
}
.p-lp-advan-item-content--3-box-3-table-pc table th.gran {
  background: -webkit-gradient(linear, left top, right top, from(#F67506), color-stop(50%, #F99F46), to(#FFBD3A));
  background: linear-gradient(90deg, #F67506 0%, #F99F46 50%, #FFBD3A 100%);
}
.p-lp-advan-item-content--3-box-3-table-pc table th.gran p {
  color: #fff;
}
.p-lp-advan-item-content--3-box-3-table-pc table th.br-top {
  border-radius: 15px 15px 0px 0px;
}
@media screen and (min-width: 1024px) {
  .p-lp-advan-item-content--3-box-3-table-pc table th.br-top.gran {
    border-radius: 25px 25px 0px 0px;
  }
}
.p-lp-advan-item-content--3-box-3-table-pc table th:nth-child(1) {
  width: 20.2%;
}
.p-lp-advan-item-content--3-box-3-table-pc table th:nth-child(2), .p-lp-advan-item-content--3-box-3-table-pc table th:nth-child(3) {
  width: 39.9%;
}
.p-lp-advan-item-content--3-box-3-table-pc table tr:first-child th:first-child {
  background: transparent;
}
.p-lp-advan-item-content--3-box-3-table-pc table tr:first-child th {
  border: none;
}
.p-lp-advan-item-content--3-box-3-table-pc table td.gran {
  background: -webkit-gradient(linear, left bottom, left top, from(#FFF2E6), to(#FFF2E6)), -webkit-gradient(linear, left bottom, left top, from(rgba(22, 91, 172, 0.08)), to(rgba(22, 91, 172, 0.08))), #FFF;
  background: linear-gradient(0deg, #FFF2E6 0%, #FFF2E6 100%), linear-gradient(0deg, rgba(22, 91, 172, 0.08) 0%, rgba(22, 91, 172, 0.08) 100%), #FFF;
}
.p-lp-advan-item-content--3-box-3-table-pc table td:nth-child(1) {
  width: 20.2%;
}
.p-lp-advan-item-content--3-box-3-table-pc table td:nth-child(2), .p-lp-advan-item-content--3-box-3-table-pc table td:nth-child(3) {
  width: 39.9%;
}
.p-lp-advan-item-content--3-box-3-table-pc table tr:not(:first-child) th p {
  text-align: left;
}
.p-lp-advan-item-content--3-box-3-table-pc::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(assets/img/lp-robot/border-table.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 40%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.p-lp-advan-item-content--3-box-3-table-sp {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-lp-advan-item-content--3-box-3-table-sp {
    display: none;
  }
}
.p-lp-advan-item-content--3-box-3-table-sp p {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  padding: 8px 12px;
  height: auto;
  margin-bottom: 0;
  width: 100%;
}
.p-lp-advan-item-content--3-box-3-table-sp p.gray {
  background: #F4F7FA;
}
.p-lp-advan-item-content--3-box-3-table-sp p span {
  display: inline-block;
  color: #F67506;
  margin-bottom: 4px;
}
.p-lp-advan-item-content--3-box-3-table-sp-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
}
.p-lp-advan-item-content--3-box-3-table-sp-title {
  border-bottom: 1px solid #DBDEE3;
}
.p-lp-advan-item-content--3-box-3-table-sp-title-left {
  padding: 16px 12px !important;
  border-radius: 10px 10px 0px 0px;
  background: #F4F7FA;
  width: 50%;
}
.p-lp-advan-item-content--3-box-3-table-sp-title-right {
  padding: 16px 12px !important;
  border-radius: 10px 10px 0px 0px;
  background: -webkit-gradient(linear, left top, right top, from(#F67506), color-stop(50%, #F99F46), to(#FFBD3A));
  background: linear-gradient(90deg, #F67506 0%, #F99F46 50%, #FFBD3A 100%);
  color: #fff;
  width: 50%;
}
.p-lp-advan-item-content--3-box-3-table-sp-box {
  border-bottom: 1px solid #DBDEE3;
}
.p-lp-advan-item-content--3-box-3-table-sp-box:nth-child(4) .p-lp-advan-item-content--3-box-3-table-sp-right {
  padding-right: 0 !important;
  letter-spacing: -0.09em;
}
.p-lp-advan-item-content--3-box-3-table-sp-box:nth-child(4) .p-lp-advan-item-content--3-box-3-table-sp-right span {
  letter-spacing: 0;
}
.p-lp-advan-item-content--3-box-3-table-sp-left {
  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: 50%;
}
.p-lp-advan-item-content--3-box-3-table-sp-right {
  font-size: 13px !important;
  text-align: left !important;
  width: 50%;
  background: -webkit-gradient(linear, left bottom, left top, from(#FFF2E6), to(#FFF2E6)), -webkit-gradient(linear, left bottom, left top, from(rgba(22, 91, 172, 0.08)), to(rgba(22, 91, 172, 0.08))), #FFF;
  background: linear-gradient(0deg, #FFF2E6 0%, #FFF2E6 100%), linear-gradient(0deg, rgba(22, 91, 172, 0.08) 0%, rgba(22, 91, 172, 0.08) 100%), #FFF;
}
.p-lp-advan-item-content--3-box-3-table-sp-right span {
  font-size: 16px !important;
}
.p-lp-advan-item-content--4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-lp-advan-item-content--4 {
    gap: 24px;
  }
}
.p-lp-advan-item-content--4 h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  color: #000;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-advan-item-content--4 h6 {
    font-size: 18px;
  }
}
.p-lp-advan-item-content--4 p {
  font-size: 15px;
  font-weight: 400;
  line-height: 160%;
  color: #000;
  margin-bottom: 0;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .p-lp-advan-item-content--4 p {
    font-size: 16px;
  }
}
.p-lp-advan-item-content--4 p span {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-lp-advan-item:nth-child(1) .p-lp-advan-item-content {
    padding: 24px 20px 17px;
  }
}
.p-lp-introduce {
  padding: 32px 0;
}
@media screen and (min-width: 768px) {
  .p-lp-introduce {
    padding: 64px 0;
  }
}
.p-lp-introduce--title {
  position: relative;
  font-size: 22px;
  font-weight: 700;
  line-height: 140%;
  color: #000;
  text-align: center;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-introduce--title {
    font-size: 28px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-introduce--title {
    font-size: 40px;
  }
}
.p-lp-introduce--title span {
  color: #f67506;
}
.p-lp-introduce--title br.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-lp-introduce--title br.pc {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .p-lp-introduce--title br.sp {
    display: none;
  }
}
.p-lp-introduce--sub-title {
  position: relative;
  font-size: 18px;
  line-height: 150%;
  font-weight: 700;
  text-align: center;
  max-width: 324px;
  margin: 20px auto 0;
}
@media screen and (min-width: 768px) {
  .p-lp-introduce--sub-title {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-introduce--sub-title {
    font-size: 24px;
    margin-top: 32px;
    left: 12px;
  }
}
.p-lp-introduce-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 16px minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .p-lp-introduce-list {
    -ms-grid-columns: minmax(0, 1fr) 21px minmax(0, 1fr) 21px minmax(0, 1fr) 21px minmax(0, 1fr);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 21px;
    margin-top: 32px;
  }
}
.p-lp-introduce-item {
  position: relative;
  background: #f2f5f6;
  padding: 13px 6px;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  min-height: 172px;
}
@media screen and (min-width: 1024px) {
  .p-lp-introduce-item {
    min-height: 284px;
    padding: 24px 42px;
  }
}
.p-lp-introduce-item--num {
  position: absolute;
  top: 10px;
  left: 10px;
}
@media screen and (min-width: 1024px) {
  .p-lp-introduce-item--num {
    top: 20px;
    left: 20px;
  }
}
.p-lp-introduce-item--num span {
  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-family: DIN2014;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: #fff;
  background: #005d4f;
  width: 28px;
  height: 28px;
  border-radius: 100%;
}
@media screen and (min-width: 1024px) {
  .p-lp-introduce-item--num span {
    font-size: 22px;
    width: 32px;
    height: 32px;
  }
}
.p-lp-introduce-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;
  max-width: 110px;
  max-height: 75px;
  width: 100%;
  height: 100%;
  margin: 0 auto 10px;
}
@media screen and (min-width: 1024px) {
  .p-lp-introduce-item--img {
    max-width: 200px;
    max-height: 150px;
  }
}
.p-lp-introduce-item--img img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 1024px) {
  .p-lp-introduce-item--img img {
    height: auto;
  }
}
.p-lp-introduce-item:nth-child(3) .p-lp-introduce-item--img, .p-lp-introduce-item:nth-child(4) .p-lp-introduce-item--img {
  max-height: 85px;
}
@media screen and (min-width: 1024px) {
  .p-lp-introduce-item:nth-child(3) .p-lp-introduce-item--img, .p-lp-introduce-item:nth-child(4) .p-lp-introduce-item--img {
    max-height: 150px;
  }
}
.p-lp-introduce-item p {
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 0;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-lp-introduce-item p {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-lp-introduce-item p br {
    display: none;
  }
}
@media screen and (min-width: 1360px) {
  .p-lp-introduce-item p br {
    display: block;
  }
}
.p-lp-introduce-note {
  font-size: 15px;
  font-weight: 400;
  line-height: 160%;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-lp-introduce-note {
    font-size: 16px;
    margin-top: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-introduce-note {
    text-align: center;
  }
}
.p-lp-introduce-note span {
  font-weight: 700;
}
.p-lp-introduce-form {
  margin-top: 32px;
}
@media screen and (min-width: 1024px) {
  .p-lp-introduce-form {
    margin-top: 48px;
  }
}
.p-lp-choose {
  padding: 32px 0;
  background: #f2f5f6;
}
@media screen and (min-width: 768px) {
  .p-lp-choose {
    padding: 64px 0;
  }
}
.p-lp-choose--sub {
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-choose--sub {
    font-size: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-choose--sub {
    font-size: 24px;
  }
}
.p-lp-choose--title {
  position: relative;
  font-size: 22px;
  line-height: 140%;
  font-weight: 700;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-choose--title {
    font-size: 28px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-choose--title {
    font-size: 40px;
    line-height: 100%;
    margin-top: 20px;
  }
}
.p-lp-choose--title span {
  color: #f67506;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .p-lp-choose--title br {
    display: none;
  }
}
.p-lp-choose-content {
  background: #fff;
  border-radius: 10px;
  padding: 20px 16px 16px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .p-lp-choose-content {
    margin-top: 34px;
    padding: 32px 40px 37px;
  }
}
.p-lp-choose-content--title {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-choose-content--title {
    position: relative;
    font-size: 22px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-choose-content--title {
    font-size: 28px;
  }
}
.p-lp-choose-content-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .p-lp-choose-content-info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-choose-content-info {
    gap: 51px;
    margin-top: 32px;
  }
}
.p-lp-choose-content-info img {
  width: 100%;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-lp-choose-content-info img {
    width: 270px;
    aspect-ratio: 373/260;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-choose-content-info img {
    width: 373px;
    height: 260px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-lp-choose-content--sub {
  font-size: 15px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 0;
  color: #62707c;
}
@media screen and (min-width: 768px) {
  .p-lp-choose-content--sub {
    font-size: 16px;
  }
}
.p-lp-choose-content--name {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-lp-choose-content--name {
    font-size: 22px;
    line-height: 140%;
    margin-top: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-choose-content--name {
    font-size: 20px;
    line-height: 100%;
  }
}
.p-lp-choose-content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 18px;
}
@media screen and (min-width: 768px) {
  .p-lp-choose-content-wrap {
    margin-top: 23px;
  }
}
.p-lp-choose-content-cate {
  font-size: 14px;
  line-height: 100%;
  font-weight: 700;
  color: #fff;
  padding: 4px 16px;
  border-radius: 2px;
  background: #f76a0c;
  margin-right: 14px;
}
@media screen and (min-width: 768px) {
  .p-lp-choose-content-cate {
    padding: 6px 19px;
  }
}
.p-lp-choose-content-people {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
  margin-right: 25px;
}
.p-lp-choose-content-people p {
  font-size: 14px;
  line-height: 100%;
  font-weight: 700;
  margin-bottom: 0;
  color: #62707c;
}
.p-lp-choose-content-people span {
  font-family: DIN2014;
  font-size: 16px;
}
.p-lp-choose-content-people::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -13px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: #e2e8ee;
}
.p-lp-choose-content-since {
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  color: #62707c;
  margin-bottom: 0;
}
.p-lp-choose-content-since span {
  font-family: DIN2014;
  font-size: 16px;
}
.p-lp-choose-content-des {
  font-size: 15px;
  line-height: 25px;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 13px;
}
@media screen and (min-width: 768px) {
  .p-lp-choose-content-des {
    font-size: 16px;
    line-height: 28px;
    margin-top: 19px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-choose-content-des {
    margin-right: 30px;
  }
}
.p-lp-choose-content-show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  margin-top: 35px;
}
@media screen and (min-width: 1024px) {
  .p-lp-choose-content-show {
    margin-top: 48px;
    gap: 49px;
  }
}
.p-lp-choose-content-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-lp-choose-content-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 40px;
  }
}
.p-lp-choose-content-box-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-lp-choose-content-box-wrap {
    gap: 16px;
  }
}
.p-lp-choose-content-box-wrap h6 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-choose-content-box-wrap h6 {
    font-size: 20px;
    line-height: 100%;
  }
}
.p-lp-choose-content-box-wrap p {
  font-size: 15px;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-choose-content-box-wrap p {
    font-size: 16px;
  }
}
.p-lp-choose-content-box-wrap p span {
  font-weight: 700;
}
.p-lp-choose-content-box img {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-lp-choose-content-box img {
    width: 250px;
    aspect-ratio: 320/180;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-choose-content-box img {
    width: 320px;
    height: 180px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-lp-choose-content-button {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px;
  background: #f67506;
  margin-top: 20px;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) {
  .p-lp-choose-content-button {
    max-width: 500px;
    margin: 32px auto 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-choose-content-button {
    font-size: 20px;
    max-width: 680px;
  }
}
.p-lp-choose-content-button span {
  display: inline-block;
  font-size: 18px;
  line-height: 32px;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-lp-choose-content-button span {
    font-size: 20px;
  }
}
.p-lp-choose-content-button--icon {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 30px;
}
@media screen and (min-width: 768px) {
  .p-lp-choose-content-button--icon {
    right: 20px;
  }
}
.p-lp-choose-content-button--icon span {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.p-lp-choose-content-button--icon span:nth-child(1) {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 17px;
  height: 2px;
  background: #fff;
  border-radius: 4px;
}
.p-lp-choose-content-button--icon span:nth-child(2) {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 17px;
  width: 2px;
  background: #fff;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border-radius: 4px;
}
.p-lp-choose-content-button.is-show .p-lp-choose-content-button--icon span:nth-child(2) {
  opacity: 0;
}
.p-lp-choose-video {
  padding-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-lp-choose-video {
    padding-top: 64px;
  }
}
.p-lp-choose-video h3 {
  position: relative;
  font-size: 20px;
  line-height: 100%;
  font-weight: 700;
  text-align: center;
  color: #000;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-choose-video h3 {
    font-size: 22px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-choose-video h3 {
    font-size: 32px;
  }
}
.p-lp-choose-video-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: 16px 17px;
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .p-lp-choose-video-list {
    gap: 28px 22px;
    margin-top: 48px;
  }
}
.p-lp-choose-video-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc((100% - 17px) / 2);
          flex: 0 1 calc((100% - 17px) / 2);
}
@media screen and (min-width: 768px) {
  .p-lp-choose-video-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc((100% - 66px) / 4);
            flex: 0 1 calc((100% - 66px) / 4);
  }
}
.p-lp-choose-video-item a {
  position: relative;
  display: block;
}
.p-lp-choose-video-item a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}
.p-lp-choose-video-item a > img {
  width: 100%;
  aspect-ratio: 284/169;
}
.p-lp-choose-video-item a span {
  position: absolute;
  top: 50%;
  left: 50%;
  inset: 50% auto auto 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 44.82px;
  height: auto;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-lp-choose-video-item a span {
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-lp-choose-video-item a span img {
    width: 50px;
  }
}
@media screen and (min-width: 1360px) {
  .p-lp-choose-video-item a span img {
    width: auto;
  }
}
.p-lp-choose-video-item p {
  font-size: 15px;
  line-height: 140%;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0;
  margin-top: 8.65px;
}
@media screen and (min-width: 768px) {
  .p-lp-choose-video-item p {
    font-size: 16px;
    line-height: 100%;
    margin-top: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-choose-video-item p {
    font-size: 18px;
  }
}
.p-lp-fear {
  padding: 32px 0;
}
@media screen and (min-width: 768px) {
  .p-lp-fear {
    padding: 64px 0;
  }
}
.p-lp-fear--sub {
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-lp-fear--sub {
    font-size: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-fear--sub {
    font-size: 24px;
  }
}
.p-lp-fear--title {
  font-size: 22px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 0;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-lp-fear--title {
    font-size: 28px;
    margin-top: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-fear--title {
    font-size: 40px;
  }
}
.p-lp-fear-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr);
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .p-lp-fear-list {
    -ms-grid-columns: minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1fr);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-fear-list {
    gap: 30px;
  }
}
.p-lp-fear-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  min-height: 120px;
  background: #f2f5f6;
}
@media screen and (min-width: 768px) {
  .p-lp-fear-item {
    min-height: 230px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-fear-item {
    min-height: 320px;
    gap: 0;
  }
}
.p-lp-fear-item p {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-fear-item p {
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-fear-item p {
    font-size: 24px;
  }
}
.p-lp-fear-item p span {
  color: #f67506;
  font-weight: 900;
}
.p-lp-fear-item:nth-child(1) {
  padding: 0 37.76px 0 16px;
}
@media screen and (min-width: 768px) {
  .p-lp-fear-item:nth-child(1) {
    padding: 12px 0 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-fear-item:nth-child(1) {
    padding: 24px 0 0;
  }
}
.p-lp-fear-item:nth-child(1) img {
  position: relative;
  width: 112.24px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}
@media screen and (min-width: 1024px) {
  .p-lp-fear-item:nth-child(1) img {
    width: auto;
    height: auto;
  }
}
.p-lp-fear-item:nth-child(2) {
  padding: 0 29.44px 0 16px;
}
@media screen and (min-width: 768px) {
  .p-lp-fear-item:nth-child(2) {
    padding: 12px 0 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-fear-item:nth-child(2) {
    padding: 24px 0 0;
  }
}
.p-lp-fear-item:nth-child(2) img {
  position: relative;
  width: 129.56px;
}
@media screen and (min-width: 1024px) {
  .p-lp-fear-item:nth-child(2) img {
    width: auto;
    left: 4px;
    bottom: 19px;
  }
}
.p-lp-fear-item:nth-child(3) {
  padding: 0 15.7px 0 16px;
}
@media screen and (min-width: 768px) {
  .p-lp-fear-item:nth-child(3) {
    padding: 12px 0 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-fear-item:nth-child(3) {
    padding: 24px 0 0;
  }
}
.p-lp-fear-item:nth-child(3) img {
  position: relative;
  width: 156.3px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}
@media screen and (min-width: 1024px) {
  .p-lp-fear-item:nth-child(3) img {
    width: auto;
    height: auto;
  }
}
.p-lp-reason {
  padding: 32px 0 16px;
  background: #f2f5f6;
}
@media screen and (min-width: 768px) {
  .p-lp-reason {
    padding: 64px 0 70px;
  }
}
.p-lp-reason--sub {
  font-size: 14px;
  line-height: 100%;
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-lp-reason--sub {
    font-size: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason--sub {
    font-size: 24px;
    letter-spacing: 0.02em;
  }
}
.p-lp-reason--title {
  font-size: 22px;
  font-weight: 700;
  line-height: 100%;
  margin-top: 16px;
  margin-bottom: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-lp-reason--title {
    font-size: 28px;
    margin-top: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason--title {
    font-size: 40px;
  }
}
.p-lp-reason--title span {
  font-weight: 900;
  color: #f67506;
}
.p-lp-reason--des {
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 0;
  margin-top: 16px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-lp-reason--des {
    font-size: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason--des {
    font-size: 24px;
    margin-top: 32px;
  }
}
.p-lp-reason--des span {
  font-weight: 900;
  color: #f67506;
}
@media screen and (min-width: 768px) {
  .p-lp-reason--des br {
    display: none;
  }
}
.p-lp-reason-link-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr);
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-link-list {
    -ms-grid-columns: minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1fr);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-link-list {
    gap: 30px;
  }
}
.p-lp-reason-link-item {
  padding: 12px 12px 12px 18px;
  background: #fff;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-link-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 20px;
    gap: 10px;
    padding: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-link-item {
    padding: 22px 20px 24px;
    min-height: 282px;
  }
}
.p-lp-reason-link-item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 19px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-link-item-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
.p-lp-reason-link-item--num {
  font-family: DIN2014;
  position: relative;
  font-size: 32px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 0;
  padding-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-link-item--num {
    letter-spacing: 0.02em;
  }
}
.p-lp-reason-link-item--num::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-link-item:nth-child(1) .p-lp-reason-link-item--num {
    letter-spacing: -0.06em;
  }
}
.p-lp-reason-link-item--title {
  font-size: 20px;
  line-height: 140%;
  font-weight: 700;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-link-item--title {
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-link-item--title {
    font-size: 28px;
    line-height: 100%;
  }
}
.p-lp-reason-link-item--title span {
  font-weight: 900;
}
.p-lp-reason-link-item--des {
  font-size: 14px;
  line-height: 140%;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 4px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-link-item--des {
    text-align: center;
    margin-top: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-link-item--des {
    font-size: 16px;
    line-height: 26px;
    margin-top: 20px;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .p-lp-reason-link-item--des br.sp {
    display: none;
  }
}
.p-lp-reason-link-item--des br.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-link-item--des br.pc {
    display: block;
  }
}
.p-lp-reason-link-item--button.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-link-item--button.pc {
    display: block;
    position: relative;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    padding: 12px 0;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
            box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-link-item--button.pc {
    font-size: 20px;
    line-height: 32px;
  }
}
.p-lp-reason-link-item--button.pc svg {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-lp-reason-link-item--button.sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) {
  .p-lp-reason-link-item--button.sp {
    display: none;
  }
}
.p-lp-reason-link-item:nth-child(1) .p-lp-reason-link-item--num {
  color: #f67506;
}
.p-lp-reason-link-item:nth-child(1) .p-lp-reason-link-item--num::after {
  background: #f67506;
}
.p-lp-reason-link-item:nth-child(1) .p-lp-reason-link-item--title span {
  color: #f67506;
}
.p-lp-reason-link-item:nth-child(1) .p-lp-reason-link-item--button {
  background: #f67506;
}
.p-lp-reason-link-item:nth-child(2) .p-lp-reason-link-item--num {
  color: #17b1a2;
}
.p-lp-reason-link-item:nth-child(2) .p-lp-reason-link-item--num::after {
  background: #17b1a2;
}
.p-lp-reason-link-item:nth-child(2) .p-lp-reason-link-item--title span {
  color: #17b1a2;
}
.p-lp-reason-link-item:nth-child(2) .p-lp-reason-link-item--button {
  background: #17b1a2;
}
.p-lp-reason-link-item:nth-child(3) .p-lp-reason-link-item--num {
  color: #2582db;
}
.p-lp-reason-link-item:nth-child(3) .p-lp-reason-link-item--num::after {
  background: #2582db;
}
.p-lp-reason-link-item:nth-child(3) .p-lp-reason-link-item--title {
  font-size: 18px;
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-link-item:nth-child(3) .p-lp-reason-link-item--title {
    font-size: 28px;
  }
}
.p-lp-reason-link-item:nth-child(3) .p-lp-reason-link-item--title span {
  color: #2582db;
  letter-spacing: -0.012em;
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-link-item:nth-child(3) .p-lp-reason-link-item--title span {
    letter-spacing: 0;
  }
}
.p-lp-reason-link-item:nth-child(3) .p-lp-reason-link-item--button {
  background: #2582db;
}
.p-lp-reason-box-1 {
  background: #fff;
  border-radius: 20px;
  padding: 20px 16px 16px;
  margin-top: 32px;
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-1 {
    padding: 40px 60px 48px;
    margin-top: 48px;
  }
}
.p-lp-reason-box-1--num {
  font-family: DIN2014;
  position: relative;
  font-size: 32px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 0;
  padding-bottom: 12px;
  color: #f67506;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1--num {
    font-size: 36px;
    padding-bottom: 20px;
    letter-spacing: -0.06em;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-1--num {
    font-size: 48px;
  }
}
.p-lp-reason-box-1--num::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 34px;
  height: 3px;
  background: #f67506;
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-1--num::after {
    width: 40px;
    height: 5px;
  }
}
.p-lp-reason-box-1--sub {
  font-size: 14px;
  line-height: 100%;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1--sub {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-1--sub {
    font-size: 20px;
  }
}
.p-lp-reason-box-1--title {
  font-size: 22px;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
  margin: 16px -1px 0 0;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1--title {
    font-size: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-1--title {
    font-size: 40px;
  }
}
.p-lp-reason-box-1--title span {
  color: #f67506;
  font-weight: 900;
}
.p-lp-reason-box-1--des {
  font-size: 18px;
  line-height: 100%;
  font-weight: 700;
  color: #f67506;
  text-align: center;
  margin-bottom: 0;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1--des {
    font-size: 22px;
    margin-top: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-1--des {
    font-size: 28px;
  }
}
.p-lp-reason-box-1--note {
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 12px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1--note {
    font-size: 14px;
    line-height: 17px;
  }
}
.p-lp-reason-box-1-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 15px minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 15px;
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-list {
    -ms-grid-columns: minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1fr);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px 20px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-1-list {
    gap: 34px 40px;
    margin-top: 35px;
  }
}
.p-lp-reason-box-1-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;
  width: 100%;
  aspect-ratio: 1;
  background: #f2f5f6;
  border-radius: 100%;
  margin: 0 auto;
}
.p-lp-reason-box-1-item--img img {
  border-radius: 100%;
}
.p-lp-reason-box-1-item h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  color: #f67506;
  margin-bottom: 0;
  margin-top: 8px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-item h6 {
    font-size: 18px;
    margin-top: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-1-item h6 {
    font-size: 24px;
  }
}
.p-lp-reason-box-1-item--button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-lp-reason-box-1-item--button button {
  width: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  line-height: 100%;
  font-weight: 700;
  color: #fff;
  padding: 6px 10px 8px;
  background: #f67506;
  margin-top: 12px;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-item--button button {
    width: 128px;
    font-size: 16px;
    padding: 8px 16px;
    margin-top: 14px;
  }
}
.p-lp-reason-box-1-show {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px;
  background: #f67506;
  margin-top: 32px;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-show {
    margin: 48px auto 0;
    max-width: 500px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-1-show {
    max-width: 680px;
  }
}
.p-lp-reason-box-1-show span {
  display: inline-block;
  font-size: 18px;
  line-height: 32px;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-show span {
    font-size: 20px;
  }
}
.p-lp-reason-box-1-show--icon {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 30px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-show--icon {
    right: 20px;
  }
}
.p-lp-reason-box-1-show--icon span {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.p-lp-reason-box-1-show--icon span:nth-child(1) {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 17px;
  height: 2px;
  background: #fff;
  border-radius: 4px;
}
.p-lp-reason-box-1-show--icon span:nth-child(2) {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 17px;
  width: 2px;
  background: #fff;
  border-radius: 4px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.p-lp-reason-box-1-show.is-show .p-lp-reason-box-1-show--icon span:nth-child(2) {
  opacity: 0;
}
.p-lp-reason-box-1 table {
  width: 100%;
  border: 1px solid #000;
  margin-top: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1 table {
    margin-top: 20px;
  }
}
.p-lp-reason-box-1 table th,
.p-lp-reason-box-1 table td {
  width: 50%;
  padding: 4px 8px;
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
  text-align: left;
  border: 1px solid #000;
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-1 table th,
  .p-lp-reason-box-1 table td {
    padding: 4px 10px;
    line-height: 26px;
  }
}
.p-lp-reason-box-1--line {
  width: 100%;
  height: 2px;
  background: #f67506;
  margin: 32px 0;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1--line {
    margin: 40px 0 32px;
  }
}
.p-lp-reason-box-1-process--title {
  font-size: 18px;
  line-height: 100%;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
  color: #f67506;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-process--title {
    font-size: 22px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-1-process--title {
    font-size: 28px;
  }
}
.p-lp-reason-box-1-process-content {
  position: relative;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-process-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 24px 1.94px 0 20px;
    gap: 20px;
  }
}
.p-lp-reason-box-1-process-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-process-box {
    -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: 24px;
    position: unset;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
}
.p-lp-reason-box-1-process-box img {
  display: inline-block;
  max-width: 120px;
  max-height: 120px;
  width: 120px;
  height: 120px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-process-box img {
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-1-process-box img {
    max-width: 184px;
    max-height: 184px;
    width: 184px;
    height: 184px;
    margin: 0 auto;
  }
}
.p-lp-reason-box-1-process-box:nth-child(1) {
  margin-bottom: 46px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-process-box:nth-child(1) {
    margin-bottom: 0;
  }
}
.p-lp-reason-box-1-process-box:nth-child(1)::after {
  content: "";
  position: absolute;
  left: 39px;
  top: calc(100% + 15px);
  background-image: url(assets/img/lp-robot/arrow-down.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 41px;
  height: 20px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-process-box:nth-child(1)::after {
    top: 42px;
    left: calc(33% - 50px);
    width: 20px;
    height: 48px;
    background-image: url(assets/img/lp-robot/arrow-right.svg);
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-1-process-box:nth-child(1)::after {
    top: 52px;
    width: 37px;
    height: 86px;
  }
}
.p-lp-reason-box-1-process-box:nth-child(2) {
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-process-box:nth-child(2) {
    margin-bottom: 0;
  }
}
.p-lp-reason-box-1-process-box:nth-child(2)::after {
  content: "";
  position: absolute;
  left: 39px;
  top: calc(100% - 6px);
  background-image: url(assets/img/lp-robot/arrow-down.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 41px;
  height: 20px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-process-box:nth-child(2)::after {
    top: 42px;
    left: calc(66% + 30px);
    width: 20px;
    height: 48px;
    background-image: url(assets/img/lp-robot/arrow-right.svg);
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-1-process-box:nth-child(2)::after {
    top: 52px;
    width: 37px;
    height: 86px;
  }
}
.p-lp-reason-box-1-process-box:nth-child(2) img {
  height: 145px;
  max-height: 145px;
  padding-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-process-box:nth-child(2) img {
    max-height: 120px;
    height: 120px;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-1-process-box:nth-child(2) img {
    max-height: 184px;
    height: 184px;
  }
}
.p-lp-reason-box-1-process-box:nth-child(2) h6 {
  position: relative;
  top: -12px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-process-box:nth-child(2) h6 {
    top: 0;
  }
}
.p-lp-reason-box-1-process-wrap h6 {
  color: #000;
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-process-wrap h6 {
    font-size: 18px;
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-1-process-wrap h6 {
    font-size: 24px;
  }
}
.p-lp-reason-box-1-process-wrap p {
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  color: #000;
  margin-top: 10px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-process-wrap p {
    font-size: 16px;
    margin-top: 16px;
  }
}
.p-lp-reason-box-1-process-wrap p br {
  display: none;
}
@media screen and (min-width: 1360px) {
  .p-lp-reason-box-1-process-wrap p br {
    display: block;
  }
}
.p-lp-reason-box-1-expert {
  background: #f4f7fa;
  border-radius: 10px;
  padding: 16px;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-expert {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 24px;
    border-radius: 15px;
    gap: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-1-expert {
    padding: 32px 67px 32px 40px;
    margin-top: 46px;
    border-radius: 15px;
    gap: 49px;
  }
}
.p-lp-reason-box-1-expert-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-expert-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    max-width: 120px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-1-expert-info {
    max-width: 144px;
  }
}
.p-lp-reason-box-1-expert-info img {
  width: 72px;
  height: 72px;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-expert-info img {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-1-expert-info img {
    width: 144px;
    height: 144px;
  }
}
.p-lp-reason-box-1-expert--title {
  font-size: 12px;
  line-height: 140%;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-expert--title {
    font-size: 14px;
    line-height: 100%;
    text-align: center;
  }
}
.p-lp-reason-box-1-expert--company {
  font-size: 12px;
  line-height: 140%;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 4px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-expert--company {
    font-size: 16px;
    margin-top: 8px;
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-1-expert--company {
    font-size: 18px;
    line-height: 26px;
  }
}
.p-lp-reason-box-1-expert--note {
  font-size: 16px;
  line-height: 140%;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 8px;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-expert--note {
    display: none;
  }
}
.p-lp-reason-box-1-expert--note span {
  color: #f67506;
  font-weight: 900;
}
.p-lp-reason-box-1-expert-content {
  font-size: 15px;
  line-height: 160%;
  font-weight: 400;
  color: #000;
  margin-top: 13px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-expert-content {
    font-size: 16px;
    margin-top: 0;
  }
}
.p-lp-reason-box-1-expert-content p {
  font-size: 20px;
  line-height: 100%;
  font-weight: 700;
  margin-bottom: 16px;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-expert-content p {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-1-expert-content p {
    font-size: 28px;
  }
}
.p-lp-reason-box-1-expert-content p span {
  font-weight: 900;
  color: #f67506;
}
.p-lp-reason-box-1-expert--line {
  width: 100%;
  height: 2px;
  background: #d9d9d9;
  margin: 16px 0;
}
.p-lp-reason-box-1-faq {
  background: #fff;
  border-radius: 10px;
  padding: 24px 16px;
  margin-top: 16px;
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-1-faq {
    padding: 40px 40px 32px 40px;
    border-radius: 20px;
    margin-top: 40px;
  }
}
.p-lp-reason-box-1-faq--sub {
  font-size: 14px;
  line-height: 100%;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-faq--sub {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-1-faq--sub {
    font-size: 20px;
  }
}
.p-lp-reason-box-1-faq--name {
  position: relative;
  font-size: 22px;
  line-height: 100%;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-faq--name {
    font-size: 24px;
    margin-top: 20px;
    left: 6px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-1-faq--name {
    font-size: 40px;
  }
}
.p-lp-reason-box-1-faq--name span {
  font-weight: 900;
  color: #f67506;
}
.p-lp-reason-box-1-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;
  margin-top: 16px;
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-1-faq-list {
    margin-top: 34px;
  }
}
.p-lp-reason-box-1-faq-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 2px solid #e2e8ee;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.p-lp-reason-box-1-faq-item:has(.is-show) {
  border-bottom: 2px solid #f67506;
}
.p-lp-reason-box-1-faq-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 18px;
  padding: 15px 5px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-faq-title {
    padding: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-1-faq-title {
    padding: 24px 32px;
  }
}
.p-lp-reason-box-1-faq-title p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 0;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-faq-title p {
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-1-faq-title p {
    font-size: 20px;
    line-height: 100%;
  }
}
.p-lp-reason-box-1-faq-title p span {
  font-family: DIN2014;
  font-size: 24px;
  line-height: 20px;
  font-weight: 700;
  color: #f67506;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-faq-title p span {
    font-size: 26px;
    margin-right: 4px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-1-faq-title p span {
    font-size: 30px;
  }
}
.p-lp-reason-box-1-faq-title button {
  position: relative;
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-lp-reason-box-1-faq-title button span:nth-child(1) {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 14px;
  height: 2px;
  background: #f67506;
}
.p-lp-reason-box-1-faq-title button span:nth-child(2) {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 14px;
  width: 2px;
  background: #f67506;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.p-lp-reason-box-1-faq-title.is-show button span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.p-lp-reason-box-1-faq-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 24px;
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-faq-box {
    padding-bottom: 16px;
  }
}
.p-lp-reason-box-1-faq-box-img {
  display: none;
  width: 96px;
  height: 96px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #d9d9d9;
  border-radius: 100%;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-faq-box-img {
    display: block;
  }
}
.p-lp-reason-box-1-faq-box-img img {
  width: 100%;
  height: 100%;
}
.p-lp-reason-box-1-faq-content {
  position: relative;
  padding: 15px;
  background: #f4f7fa;
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
  border-radius: 8px 8px 0 8px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-faq-content {
    padding: 20px 30px;
    font-size: 16px;
    line-height: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-1-faq-content {
    padding: 32px 40px;
    font-size: 18px;
    line-height: 32px;
  }
}
.p-lp-reason-box-1-faq-content::after {
  content: "";
  position: absolute;
  left: 100%;
  bottom: 0;
  background-image: url(assets/img/lp-robot/decor-faq-expert.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 34.5px;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-1-faq-content::after {
    display: block;
  }
}
.p-lp-reason-form {
  margin: 38px 0;
}
.p-lp-reason-form .m-block-form-lp {
  background-color: #fff;
  border-radius: 20px;
}
.p-lp-reason-box-2 {
  padding: 20px 16px 16px;
  background: #fff;
  border-radius: 20px;
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2 {
    padding: 40px 60px 48px 60px;
  }
}
.p-lp-reason-box-2--num {
  font-family: DIN2014;
  position: relative;
  font-size: 32px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 0;
  padding-bottom: 12px;
  color: #17b1a2;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2--num {
    font-size: 36px;
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2--num {
    font-size: 48px;
  }
}
.p-lp-reason-box-2--num::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 34px;
  height: 3px;
  background: #17b1a2;
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2--num::after {
    width: 40px;
    height: 5px;
  }
}
.p-lp-reason-box-2--sub {
  position: relative;
  font-size: 14px;
  line-height: 100%;
  font-weight: 700;
  text-align: center;
  margin: 16px -8px 0;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2--sub {
    font-size: 16px;
    margin: 19px 0 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2--sub {
    font-size: 20px;
  }
}
.p-lp-reason-box-2--sub span {
  position: relative;
  display: inline-block;
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
  top: -2px;
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2--sub span {
    font-size: 14px;
    line-height: 14px;
    top: -6px;
  }
}
.p-lp-reason-box-2--title {
  font-size: 22px;
  line-height: 150%;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2--title {
    font-size: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2--title {
    font-size: 40px;
  }
}
.p-lp-reason-box-2--title span {
  font-weight: 900;
  color: #17b1a2;
}
.p-lp-reason-box-2--note {
  font-size: 12px;
  line-height: 140%;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2--note {
    font-size: 14px;
    margin-top: 8px;
  }
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2--note br {
    display: none;
  }
}
.p-lp-reason-box-2-subsidy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-subsidy {
    margin-top: 27px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-subsidy {
    padding: 0 102px 0 40px;
  }
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-subsidy-text {
    margin-top: 37px;
  }
}
.p-lp-reason-box-2-subsidy--sub {
  font-size: 14px;
  line-height: 15px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-subsidy--sub {
    font-size: 18px;
    line-height: 100%;
    text-align: left;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-subsidy--sub {
    font-size: 24px;
  }
}
.p-lp-reason-box-2-subsidy--title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 900;
  color: #17b1a2;
  text-align: center;
  margin-bottom: 0;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-subsidy--title {
    font-size: 24px;
    line-height: 100%;
    margin-top: 20px;
    text-align: left;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-subsidy--title {
    font-size: 40px;
  }
}
.p-lp-reason-box-2-subsidy--des {
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 0;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-subsidy--des {
    font-size: 16px;
    margin-top: 24px;
  }
}
.p-lp-reason-box-2-subsidy--des span {
  font-weight: 700;
}
.p-lp-reason-box-2-subsidy--des br {
  display: none;
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-subsidy--des br {
    display: block;
  }
}
.p-lp-reason-box-2-subsidy img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-lp-reason-box-2-subsidy img.pc {
  display: none;
  width: 297px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-subsidy img.pc {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-subsidy img.sp {
    display: none;
  }
}
.p-lp-reason-box-2-table {
  margin-top: 55px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-table {
    margin-top: 32px;
  }
}
.p-lp-reason-box-2-table h6 {
  font-size: 22px;
  line-height: 100%;
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-table h6 {
    font-size: 24px;
  }
}
.p-lp-reason-box-2-table h6 span {
  color: #17b1a2;
}
.p-lp-reason-box-2-table-pc {
  max-width: 1000px;
  margin: auto;
  margin-top: 28px;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-table-pc {
    display: block;
  }
}
.p-lp-reason-box-2-table-pc table {
  width: 100%;
}
.p-lp-reason-box-2-table-pc table th,
.p-lp-reason-box-2-table-pc table td {
  border: 1px solid #DBDEE3;
}
.p-lp-reason-box-2-table-pc table tr:nth-child(1) {
  background: #F4F7FA;
}
.p-lp-reason-box-2-table-pc table tr th {
  padding: 14px 10px;
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-table-pc table tr th {
    padding: 18px 10px;
  }
}
.p-lp-reason-box-2-table-pc table tr th:nth-child(1) {
  width: 20.8%;
}
.p-lp-reason-box-2-table-pc table tr th:nth-child(2) {
  width: 39.9%;
}
.p-lp-reason-box-2-table-pc table tr th:nth-child(3) {
  width: 39.3%;
}
.p-lp-reason-box-2-table-pc table tr th p {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-table-pc table tr th p {
    font-size: 18px;
  }
}
.p-lp-reason-box-2-table-pc table tr th p span {
  font-size: 11px;
  line-height: 11px;
  position: relative;
  top: -6px;
}
.p-lp-reason-box-2-table-pc table tr td:nth-child(1) {
  width: 20.8%;
}
.p-lp-reason-box-2-table-pc table tr td:nth-child(2) {
  width: 19.95%;
}
.p-lp-reason-box-2-table-pc table tr td:nth-child(3) {
  width: 19.95%;
}
.p-lp-reason-box-2-table-pc table tr td:nth-child(4) {
  width: 39.3%;
}
.p-lp-reason-box-2-table-pc table tr td p {
  padding: 14px 10px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-table-pc table tr td p {
    padding: 18px 12px;
    font-size: 16px;
  }
}
.p-lp-reason-box-2-table-pc table tr td .col-1 {
  font-size: 14px;
  font-weight: 700;
  line-height: 26px;
  padding: 15px;
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-table-pc table tr td .col-1 {
    font-size: 16px;
  }
}
.p-lp-reason-box-2-table-pc table tr td .col-1 span {
  color: #17B1A2;
}
.p-lp-reason-box-2-table-pc table tr td .col-1 br {
  display: none;
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-table-pc table tr td .col-1 br {
    display: block;
  }
}
.p-lp-reason-box-2-table-pc table tr td .col-3 {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 13px;
  padding: 16px 14px;
}
.p-lp-reason-box-2-table-pc table tr td .col-3-box {
  border-radius: 4px;
  overflow: hidden;
}
.p-lp-reason-box-2-table-pc table tr td .col-3-title {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 15px;
  margin-bottom: 0;
  padding: 8px 8px 9px;
  background: -webkit-gradient(linear, left bottom, left top, from(#17B1A2), to(#17B1A2)), -webkit-gradient(linear, left bottom, left top, from(#E5F8F6), to(#E5F8F6)), #FFF;
  background: linear-gradient(0deg, #17B1A2 0%, #17B1A2 100%), linear-gradient(0deg, #E5F8F6 0%, #E5F8F6 100%), #FFF;
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-table-pc table tr td .col-3-title {
    font-size: 15px;
  }
}
.p-lp-reason-box-2-table-pc table tr td .col-3-title span {
  font-size: 11px;
  line-height: 11px;
  position: relative;
  top: -4px;
}
.p-lp-reason-box-2-table-pc table tr td .col-3-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: -webkit-gradient(linear, left bottom, left top, from(#F4F7FA), to(#F4F7FA)), -webkit-gradient(linear, left bottom, left top, from(#E5F8F6), to(#E5F8F6)), #FFF;
  background: linear-gradient(0deg, #F4F7FA 0%, #F4F7FA 100%), linear-gradient(0deg, #E5F8F6 0%, #E5F8F6 100%), #FFF;
}
.p-lp-reason-box-2-table-pc table tr td .col-3-wrap span {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-table-pc table tr td .col-3-wrap span {
    font-size: 14px;
  }
}
.p-lp-reason-box-2-table-pc table tr td .col-3-wrap p {
  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-family: DIN2014;
  font-size: 24px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 0;
  padding: 0;
  margin-top: 11px;
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-table-pc table tr td .col-3-wrap p {
    font-size: 32px;
  }
}
.p-lp-reason-box-2-table-pc table tr td .col-3-wrap p span {
  letter-spacing: -0.96px;
  font-size: 24px;
  font-weight: 700;
  line-height: 20px;
  margin-left: 4px;
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-table-pc table tr td .col-3-wrap p span {
    font-size: 32px;
  }
}
.p-lp-reason-box-2-table-pc table tr td .col-3-left {
  padding: 10px 4px 19px;
  width: 53%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-right: 1px solid #DBDEE3;
}
.p-lp-reason-box-2-table-pc table tr td .col-3-right {
  padding: 10px 4px 19px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-lp-reason-box-2-table-sp {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-table-sp {
    display: none;
  }
}
.p-lp-reason-box-2-table-sp--title {
  color: #323232;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  padding: 18px;
  background: #F4F7FA;
  margin-bottom: 0;
  border-bottom: 1px solid #DBDEE3;
}
.p-lp-reason-box-2-table-sp--title span {
  font-size: 11px;
  line-height: 11px;
  position: relative;
  top: -6px;
}
.p-lp-reason-box-2-table-sp-box-1 {
  border: 1px solid #DBDEE3;
}
.p-lp-reason-box-2-table-sp-box-1-content {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  padding: 16px 10px;
}
.p-lp-reason-box-2-table-sp-box-1-content span {
  color: #17B1A2;
}
.p-lp-reason-box-2-table-sp-box-2 {
  border: 1px solid #DBDEE3;
  border-top: none;
}
.p-lp-reason-box-2-table-sp-box-2-content-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  border-bottom: 1px solid #DBDEE3;
}
.p-lp-reason-box-2-table-sp-box-2-content-row:last-child {
  border-bottom: none;
}
.p-lp-reason-box-2-table-sp-box-2-content p {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  padding: 8px 12px 10px;
  margin-bottom: 0;
}
.p-lp-reason-box-2-table-sp-box-2-content-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  width: 54.27%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-right: 1px solid #DBDEE3;
}
.p-lp-reason-box-2-table-sp-box-2-content-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-lp-reason-box-2-table-sp-box-3 {
  border: 1px solid #DBDEE3;
  border-top: none;
}
.p-lp-reason-box-2-table-sp-box-3-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  padding: 12px 15px;
}
.p-lp-reason-box-2-table-sp-box-3-content-box {
  border-radius: 4px;
  overflow: hidden;
}
.p-lp-reason-box-2-table-sp-box-3-content-title {
  color: #FFF;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 15px;
  padding: 8px 4px 9px;
  margin-bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#17B1A2), to(#17B1A2)), -webkit-gradient(linear, left bottom, left top, from(#E5F8F6), to(#E5F8F6)), #FFF;
  background: linear-gradient(0deg, #17B1A2 0%, #17B1A2 100%), linear-gradient(0deg, #E5F8F6 0%, #E5F8F6 100%), #FFF;
  letter-spacing: -0.08em;
}
.p-lp-reason-box-2-table-sp-box-3-content-title span {
  font-size: 11px;
  line-height: 11px;
  position: relative;
  top: -4px;
}
.p-lp-reason-box-2-table-sp-box-3-content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  background: #F4F7FA;
}
.p-lp-reason-box-2-table-sp-box-3-content-wrap span {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}
.p-lp-reason-box-2-table-sp-box-3-content-wrap p {
  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;
  text-align: center;
  font-family: DIN2014;
  font-size: 32px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 0;
  margin-top: 10px;
}
.p-lp-reason-box-2-table-sp-box-3-content-wrap p span {
  font-size: 32px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.96px;
  margin-left: 6px;
}
.p-lp-reason-box-2-table-sp-box-3-content-left {
  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;
  width: 64.646464%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-right: 1px solid #DBDEE3;
  padding: 10px 12px;
}
.p-lp-reason-box-2-table-sp-box-3-content-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px 12px 18px;
}
.p-lp-reason-box-2-table-note {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-table-note {
    margin: 11px auto;
    max-width: 1000px;
  }
}
.p-lp-reason-box-2-table-note p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 8px;
  font-size: 11px;
  line-height: 16px;
  font-weight: 400;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-table-note p {
    font-size: 12px;
    line-height: 18px;
    gap: 14px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-table-note p {
    font-size: 14px;
    line-height: 22px;
  }
}
.p-lp-reason-box-2-table-note p span {
  font-size: 11px;
  line-height: 16px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-table-note p span {
    font-size: 12px;
    line-height: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-table-note p span {
    font-size: 14px;
    line-height: 22px;
  }
}
.p-lp-reason-box-2--line {
  width: 100%;
  height: 2px;
  background: #17b1a2;
  margin: 32px 0;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2--line {
    margin: 48px 0 32px;
  }
}
.p-lp-reason-box-2-process--title {
  font-size: 18px;
  line-height: 100%;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
  color: #17b1a2;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-process--title {
    font-size: 22px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-process--title {
    font-size: 28px;
  }
}
.p-lp-reason-box-2-process-content {
  position: relative;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-process-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-process-content {
    margin: 20px -3px 0 -10px;
    gap: 54px;
  }
}
.p-lp-reason-box-2-process-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-process-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: unset;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
}
.p-lp-reason-box-2-process-box img {
  width: 120px;
  height: 120px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-process-box img {
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-process-box img {
    width: 184px;
    height: 184px;
    margin: 0 auto;
  }
}
.p-lp-reason-box-2-process-box:nth-child(1) {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-process-box:nth-child(1) {
    margin-bottom: 0;
  }
}
.p-lp-reason-box-2-process-box:nth-child(1)::after {
  content: "";
  position: absolute;
  left: 39px;
  top: calc(100% - 6px);
  background-image: url(assets/img/lp-robot/arrow-down.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 41px;
  height: 20px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-process-box:nth-child(1)::after {
    top: 42px;
    left: calc(33% - 50px);
    width: 20px;
    height: 48px;
    background-image: url(assets/img/lp-robot/arrow-right.svg);
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-process-box:nth-child(1)::after {
    top: 52px;
    width: 37px;
    height: 86px;
  }
}
.p-lp-reason-box-2-process-box:nth-child(1) img {
  max-height: 138px;
  height: 138px;
  padding-bottom: 18px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-process-box:nth-child(1) img {
    max-height: 120px;
    height: 120px;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-process-box:nth-child(1) img {
    max-height: 184px;
    height: 184px;
  }
}
.p-lp-reason-box-2-process-box:nth-child(1) h6 {
  position: relative;
  top: -9px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-process-box:nth-child(1) h6 {
    top: 0;
  }
}
.p-lp-reason-box-2-process-box:nth-child(2) {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-process-box:nth-child(2) {
    margin-bottom: 0;
  }
}
.p-lp-reason-box-2-process-box:nth-child(2)::after {
  content: "";
  position: absolute;
  left: 39px;
  top: calc(100% - 6px);
  background-image: url(assets/img/lp-robot/arrow-down.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 41px;
  height: 20px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-process-box:nth-child(2)::after {
    top: 42px;
    left: calc(66% + 30px);
    width: 20px;
    height: 48px;
    background-image: url(assets/img/lp-robot/arrow-right.svg);
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-process-box:nth-child(2)::after {
    top: 50px;
    width: 37px;
    height: 86px;
  }
}
.p-lp-reason-box-2-process-box:nth-child(2) img {
  max-height: 138px;
  height: 138px;
  padding-bottom: 18px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-process-box:nth-child(2) img {
    max-height: 120px;
    height: 120px;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-process-box:nth-child(2) img {
    max-height: 184px;
    height: 184px;
  }
}
.p-lp-reason-box-2-process-box:nth-child(2) h6 {
  position: relative;
  top: -9px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-process-box:nth-child(2) h6 {
    top: 0;
  }
}
.p-lp-reason-box-2-process-box:nth-child(2) .p-lp-reason-box-2-process-wrap p {
  letter-spacing: -0.03em;
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-process-box:nth-child(3) .p-lp-reason-box-2-process-wrap p {
    letter-spacing: -0.02em;
    padding-left: 4px;
  }
}
.p-lp-reason-box-2-process-wrap h6 {
  color: #000;
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-process-wrap h6 {
    font-size: 18px;
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-process-wrap h6 {
    font-size: 20px;
  }
}
.p-lp-reason-box-2-process-wrap p {
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  color: #000;
  margin-top: 10px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-process-wrap p {
    font-size: 16px;
    margin-top: 16px;
  }
}
.p-lp-reason-box-2-process-wrap p br {
  display: none;
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-process-wrap p br {
    display: block;
  }
}
.p-lp-reason-box-2-expert {
  background: #f4f7fa;
  border-radius: 10px;
  padding: 16px;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-expert {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 24px;
    border-radius: 15px;
    gap: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-expert {
    padding: 30px 67px 32px 22px;
    margin-top: 48px;
    gap: 30px;
  }
}
.p-lp-reason-box-2-expert-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-expert-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    max-width: 130px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-expert-info {
    max-width: 180px;
  }
}
.p-lp-reason-box-2-expert-info img {
  width: 72px;
  height: 72px;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-expert-info img {
    margin: 0 auto;
    width: 120px;
    height: 120px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-expert-info img {
    width: 144px;
    height: 144px;
  }
}
.p-lp-reason-box-2-expert--title {
  font-size: 12px;
  line-height: 140%;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-expert--title {
    font-size: 14px;
    line-height: 100%;
    text-align: center;
    letter-spacing: 0;
  }
}
.p-lp-reason-box-2-expert--company {
  font-size: 12px;
  line-height: 140%;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 4px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-expert--company {
    font-size: 16px;
    line-height: 26px;
    margin-top: 8px;
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-expert--company {
    font-size: 18px;
  }
}
.p-lp-reason-box-2-expert--note {
  font-size: 16px;
  line-height: 140%;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 8px;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-expert--note {
    display: none;
  }
}
.p-lp-reason-box-2-expert--note span {
  color: #17b1a2;
  font-weight: 900;
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-expert--note br {
    display: none;
  }
}
.p-lp-reason-box-2-expert-content {
  font-size: 15px;
  line-height: 160%;
  font-weight: 400;
  color: #000;
  margin-top: 13px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-expert-content {
    font-size: 16px;
    margin-top: 0;
  }
}
.p-lp-reason-box-2-expert-content br {
  display: none;
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-expert-content br {
    display: block;
  }
}
.p-lp-reason-box-2-expert-content > span {
  font-weight: 700;
}
.p-lp-reason-box-2-expert-content p {
  line-height: 100%;
  font-weight: 700;
  margin-bottom: 16px;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-expert-content p {
    font-size: 20px;
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-expert-content p {
    font-size: 28px;
  }
}
.p-lp-reason-box-2-expert-content p span {
  font-weight: 900;
  color: #17b1a2;
}
.p-lp-reason-box-2-expert--line {
  width: 100%;
  height: 2px;
  background: #d9d9d9;
  margin: 16px 0;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-expert--line {
    margin: 22px 0 18px;
  }
}
.p-lp-reason-box-2-faq {
  background: #fff;
  border-radius: 10px;
  padding: 24px 16px;
  margin-top: 16px;
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-faq {
    padding: 40px 40px 32px 40px;
    border-radius: 20px;
    margin-top: 40px;
  }
}
.p-lp-reason-box-2-faq--sub {
  font-size: 14px;
  line-height: 100%;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-faq--sub {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-faq--sub {
    font-size: 20px;
  }
}
.p-lp-reason-box-2-faq--name {
  position: relative;
  font-size: 22px;
  line-height: 100%;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
  margin-top: 8px;
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-faq--name {
    font-size: 24px;
    margin-top: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-faq--name {
    font-size: 40px;
  }
}
.p-lp-reason-box-2-faq--name span {
  font-weight: 900;
  color: #17b1a2;
}
.p-lp-reason-box-2-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;
  margin-top: 16px;
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-faq-list {
    margin-top: 36px;
  }
}
.p-lp-reason-box-2-faq-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 2px solid #e2e8ee;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.p-lp-reason-box-2-faq-item:has(.is-show) {
  border-bottom: 2px solid #17b1a2;
}
.p-lp-reason-box-2-faq-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 18px;
  padding: 15px 5px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-faq-title {
    padding: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-faq-title {
    padding: 24px 32px;
  }
}
.p-lp-reason-box-2-faq-title p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 0;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-faq-title p {
    font-size: 18px;
    line-height: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-faq-title p {
    font-size: 20px;
  }
}
.p-lp-reason-box-2-faq-title p span {
  font-family: DIN2014;
  font-size: 24px;
  line-height: 20px;
  font-weight: 700;
  color: #17b1a2;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-faq-title p span {
    font-size: 26px;
    margin-right: 4px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-faq-title p span {
    font-size: 30px;
  }
}
.p-lp-reason-box-2-faq-title button {
  position: relative;
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-lp-reason-box-2-faq-title button span:nth-child(1) {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 14px;
  height: 2px;
  background: #17b1a2;
}
.p-lp-reason-box-2-faq-title button span:nth-child(2) {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 14px;
  width: 2px;
  background: #17b1a2;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.p-lp-reason-box-2-faq-title.is-show button span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.p-lp-reason-box-2-faq-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 24px;
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-faq-box {
    padding-bottom: 16px;
  }
}
.p-lp-reason-box-2-faq-box-img {
  display: none;
  width: 96px;
  height: 96px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #d9d9d9;
  border-radius: 100%;
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-faq-box-img {
    display: block;
  }
}
.p-lp-reason-box-2-faq-box-img img {
  width: 100%;
  height: 100%;
}
.p-lp-reason-box-2-faq-content {
  position: relative;
  padding: 15px;
  background: #f4f7fa;
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
  border-radius: 8px 8px 0 8px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-2-faq-content {
    padding: 20px 30px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-faq-content {
    padding: 32px 40px;
    font-size: 18px;
    line-height: 32px;
  }
}
.p-lp-reason-box-2-faq-content::after {
  content: "";
  position: absolute;
  left: 100%;
  bottom: 0;
  background-image: url(assets/img/lp-robot/decor-faq-expert.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 34.5px;
  display: none;
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-2-faq-content::after {
    display: block;
  }
}
.p-lp-reason-box-3 {
  padding: 20px 16px 16px;
  background: #fff;
  border-radius: 20px;
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-3 {
    padding: 44px 60px 48px;
  }
}
.p-lp-reason-box-3--num {
  font-family: DIN2014;
  position: relative;
  font-size: 32px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 0;
  padding-bottom: 12px;
  color: #2582db;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3--num {
    font-size: 36px;
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-3--num {
    font-size: 48px;
  }
}
.p-lp-reason-box-3--num::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 34px;
  height: 3px;
  background: #2582db;
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-3--num::after {
    width: 40px;
    height: 5px;
  }
}
.p-lp-reason-box-3--sub {
  font-size: 14px;
  line-height: 100%;
  font-weight: 700;
  text-align: center;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3--sub {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-3--sub {
    font-size: 20px;
  }
}
.p-lp-reason-box-3--title {
  font-size: 22px;
  line-height: 150%;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3--title {
    font-size: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-3--title {
    font-size: 40px;
  }
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3--title br {
    display: none;
  }
}
.p-lp-reason-box-3--title span {
  font-weight: 900;
  color: #2582db;
}
.p-lp-reason-box-3--slogan {
  font-size: 18px;
  line-height: 150%;
  font-weight: 700;
  color: #2582db;
  margin: 24px -7px 0;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3--slogan {
    font-size: 22px;
    line-height: 100%;
    margin: 40px 0 0;
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-3--slogan {
    font-size: 28px;
  }
}
.p-lp-reason-box-3--des {
  font-size: 15px;
  line-height: 160%;
  font-weight: 400;
  color: #000;
  margin: 12px 0 0;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3--des {
    font-size: 16px;
    text-align: center;
  }
}
.p-lp-reason-box-3-sup {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3-sup {
    margin-top: 40px;
  }
}
.p-lp-reason-box-3-sup h3 {
  font-size: 18px;
  line-height: 100%;
  font-weight: 700;
  color: #000;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3-sup h3 {
    font-size: 22px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-3-sup h3 {
    font-size: 24px;
  }
}
.p-lp-reason-box-3-sup-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr);
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3-sup-list {
    -ms-grid-columns: minmax(0, 1fr) 30px minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-3-sup-list {
    gap: 40px;
  }
}
.p-lp-reason-box-3-sup-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 17px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3-sup-item {
    gap: 24px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-3-sup-item {
    gap: 32px;
  }
}
.p-lp-reason-box-3-sup-item img {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-3-sup-item img {
    width: 240px;
    height: 240px;
  }
}
.p-lp-reason-box-3-sup-text h6 {
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
  color: #2582db;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3-sup-text h6 {
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-3-sup-text h6 {
    font-size: 24px;
  }
}
.p-lp-reason-box-3-sup-text p {
  font-size: 15px;
  line-height: 150%;
  font-weight: 400;
  color: #000;
  margin: 10px 0 0;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3-sup-text p {
    font-size: 16px;
    line-height: 160%;
    margin-top: 20px;
  }
}
.p-lp-reason-box-3-note {
  padding: 20px;
  background: #f4f7fa;
  border-radius: 15px;
  margin-top: 35px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3-note {
    padding: 32px;
    margin-top: 32px;
  }
}
.p-lp-reason-box-3-note h6 {
  font-size: 16px;
  line-height: 150%;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
  color: #2582db;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3-note h6 {
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-3-note h6 {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3-note h6 br {
    display: none;
  }
}
.p-lp-reason-box-3-note p {
  font-size: 15px;
  line-height: 160%;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3-note p {
    font-size: 16px;
    margin-top: 16px;
  }
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3-note p br {
    display: none;
  }
}
.p-lp-reason-box-3--line {
  width: 100%;
  height: 2px;
  background: #2582db;
  margin: 32px 0;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3--line {
    margin: 32px 0;
  }
}
.p-lp-reason-box-3-detail--sub {
  color: #000;
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3-detail--sub {
    font-size: 22px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-3-detail--sub {
    font-size: 24px;
  }
}
.p-lp-reason-box-3-detail--title {
  font-size: 18px;
  line-height: 150%;
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3-detail--title {
    color: #2582db;
    font-size: 24px;
    line-height: 100%;
    margin-top: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-3-detail--title {
    font-size: 28px;
  }
}
.p-lp-reason-box-3-detail--title span {
  color: #2582db;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3-detail--title br {
    display: none;
  }
}
.p-lp-reason-box-3-detail--des {
  font-size: 15px;
  line-height: 160%;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3-detail--des {
    font-size: 16px;
    margin-top: 16px;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3-detail--des br {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-3-detail--des br {
    display: block;
  }
}
.p-lp-reason-box-3-detail-note {
  padding: 20px 16px;
  margin-top: 24px;
  background: #f4f7fa;
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3-detail-note {
    padding: 32px;
    margin-top: 48px;
  }
}
.p-lp-reason-box-3-detail-note h6 {
  font-size: 16px;
  line-height: 150%;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3-detail-note h6 {
    font-size: 20px;
    line-height: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-3-detail-note h6 {
    font-size: 32px;
  }
}
.p-lp-reason-box-3-detail-note h6 span {
  color: #2582db;
}
.p-lp-reason-box-3-detail-note p {
  color: #000;
  font-size: 15px;
  line-height: 150%;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3-detail-note p {
    font-size: 16px;
    line-height: 160%;
    margin-top: 16px;
    text-align: center;
  }
}
.p-lp-reason-box-3-exam--title {
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
  color: #000;
  margin-bottom: 0;
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3-exam--title {
    font-size: 22px;
    margin-top: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-3-exam--title {
    font-size: 24px;
    margin-top: 32px;
  }
}
.p-lp-reason-box-3-exam--des {
  font-size: 12px;
  line-height: 100%;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 12px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3-exam--des {
    font-size: 14px;
    letter-spacing: -0.02em;
  }
}
.p-lp-reason-box-3-exam-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 46px;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3-exam-wrap {
    margin-top: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-3-exam-wrap {
    margin-top: 31px;
    gap: 50px;
  }
}
.p-lp-reason-box-3-exam-box--title {
  font-size: 18px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
  color: #fff;
  background: #2582db;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3-exam-box--title {
    font-size: 20px;
    padding: 4px 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-3-exam-box--title {
    font-size: 24px;
  }
}
.p-lp-reason-box-3-exam-box--title.opacity {
  opacity: 0.6;
}
.p-lp-reason-box-3-exam-box-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 17px minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3-exam-box-list {
    gap: 120px;
    margin-top: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-3-exam-box-list {
    gap: 240px;
    padding: 0 100px;
  }
}
.p-lp-reason-box-3-exam-box-item {
  position: relative;
}
.p-lp-reason-box-3-exam-box-item img {
  width: 100%;
}
.p-lp-reason-box-3-exam-box-item h6 {
  font-size: 15px;
  line-height: 140%;
  font-weight: 700;
  margin-top: 8.65px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3-exam-box-item h6 {
    font-size: 18px;
    line-height: 150%;
    margin-top: 12.35px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-3-exam-box-item h6 {
    font-size: 20px;
  }
}
.p-lp-reason-box-3-exam-box-item p {
  font-size: 14px;
  line-height: 150%;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3-exam-box-item p {
    font-size: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-3-exam-box-item p {
    font-size: 16px;
  }
}
.p-lp-reason-box-3-exam-box-item:nth-child(1)::after {
  content: "";
  position: absolute;
  top: 70px;
  left: calc(100% + 44px);
  width: 37px;
  height: 86px;
  background-image: url(assets/img/lp-robot/arrow-right.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-lp-reason-box-3-exam-box-item:nth-child(1)::after {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-reason-box-3-exam-box-item:nth-child(1)::after {
    display: block;
    top: 57px;
    left: calc(100% + 108px);
  }
}
.p-lp-flow {
  background: #f2f5f6;
  padding: 32px 0 24px;
}
@media screen and (min-width: 768px) {
  .p-lp-flow {
    padding: 48px 0;
  }
}
.p-lp-flow--title {
  font-size: 22px;
  line-height: 100%;
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-lp-flow--title {
    font-size: 28px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-flow--title {
    font-size: 40px;
  }
}
.p-lp-flow-list {
  margin-top: 28px;
  padding-right: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .p-lp-flow-list {
    margin-top: 36px;
    padding-right: 0;
    gap: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-flow-list {
    margin-top: 48px;
    gap: 71px;
  }
}
.p-lp-flow-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 19px;
}
@media screen and (min-width: 768px) {
  .p-lp-flow-item {
    gap: 40px;
  }
}
.p-lp-flow-item img {
  width: 92px;
  height: 92px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-flow-item img {
    width: 120px;
    height: 120px;
  }
}
.p-lp-flow-item-text {
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 9px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-bottom: 20px;
  border-bottom: 1px solid #d8e1ea;
}
@media screen and (min-width: 768px) {
  .p-lp-flow-item-text {
    gap: 14px;
    padding-bottom: 28px;
  }
}
.p-lp-flow-item-text h6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 0;
  color: #f67506;
}
@media screen and (min-width: 768px) {
  .p-lp-flow-item-text h6 {
    font-size: 22px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-flow-item-text h6 {
    font-size: 28px;
    line-height: 100%;
  }
}
.p-lp-flow-item-text h6 span {
  position: relative;
  top: 4px;
  font-family: DIN2014;
  display: inline-block;
  font-size: 24px;
  line-height: 19px;
  font-weight: 300;
  letter-spacing: -0.06em;
}
@media screen and (min-width: 768px) {
  .p-lp-flow-item-text h6 span {
    font-size: 30px;
    line-height: 22px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-flow-item-text h6 span {
    top: 0;
    font-size: 35px;
    line-height: 33px;
  }
}
.p-lp-flow-item-text p {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-flow-item-text p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-flow-item-text p {
    font-size: 18px;
    line-height: 30px;
  }
}
.p-lp-flow-item-text p br {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-lp-flow-item-text p br {
    display: block;
  }
}
.p-lp-form {
  padding: 32px 0;
}
@media screen and (min-width: 768px) {
  .p-lp-form {
    padding: 64px 0;
  }
}
.p-lp-form .hidden-fields-container {
  display: none;
}
.p-lp-form--container {
  max-width: 832px;
  margin: auto;
  padding: 0 16px;
}
.p-lp-form--title {
  font-size: 22px;
  line-height: 150%;
  font-weight: 700;
  color: #000;
  margin-bottom: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-lp-form--title {
    font-size: 28px;
    line-height: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-form--title {
    font-size: 40px;
  }
}
.p-lp-form--title span {
  font-weight: 900;
  color: #f67506;
}
@media screen and (min-width: 768px) {
  .p-lp-form--title br {
    display: none;
  }
}
.p-lp-form-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-lp-form-content {
    gap: 30px;
    margin-top: 36px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-form-content {
    gap: 48px;
    margin-top: 48px;
  }
}
.p-lp-form-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-lp-form-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .p-lp-form-item::after {
    content: "";
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    width: 100%;
    height: 1px;
    background: #D8E1EA;
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .p-lp-form-item::after {
    top: calc(100% + 24px);
  }
}
.p-lp-form-item-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-lp-form-item-left {
    width: 252px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media screen and (min-width: 768px) {
  .p-lp-form-item-left.items-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
}
.p-lp-form-item-left > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-lp-form-item-left > div {
    display: block;
  }
}
.p-lp-form-item-left p {
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 768px) {
  .p-lp-form-item-left p {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .p-lp-form-item-left p span {
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0;
  }
}
.p-lp-form-item-left b {
  font-size: 13px;
  line-height: 14px;
  font-weight: 700;
  color: #fff;
  width: 48px;
  height: 18px;
  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: 2px;
  background: #dc2e28;
}
.p-lp-form-item-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-lp-form-item-right input,
.p-lp-form-item-right textarea {
  font-size: 15px;
  font-weight: 400;
  line-height: 100%;
  padding: 13.5px 12px;
  background: #f6f8fa;
  border-radius: 4px;
  border: 1px solid #d8e1ea;
  outline: none;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .p-lp-form-item-right input,
  .p-lp-form-item-right textarea {
    font-size: 18px;
    padding: 18px 24px;
  }
}
.p-lp-form-item-right input::-webkit-input-placeholder, .p-lp-form-item-right textarea::-webkit-input-placeholder {
  color: #bdc5cd;
}
.p-lp-form-item-right input::-moz-placeholder, .p-lp-form-item-right textarea::-moz-placeholder {
  color: #bdc5cd;
}
.p-lp-form-item-right input:-ms-input-placeholder, .p-lp-form-item-right textarea:-ms-input-placeholder {
  color: #bdc5cd;
}
.p-lp-form-item-right input::-ms-input-placeholder, .p-lp-form-item-right textarea::-ms-input-placeholder {
  color: #bdc5cd;
}
.p-lp-form-item-right input::placeholder,
.p-lp-form-item-right textarea::placeholder {
  color: #bdc5cd;
}
.p-lp-form-item-right textarea {
  height: 128px;
  resize: none;
}
.p-lp-form-item-right .input-form-fear {
  margin-top: 10px;
}
.p-lp-form-item-right input[name=form-fear] {
  font-size: 18px;
  padding: 18px 24px;
}
.p-lp-form-item-right .wpcf7-form-control-wrap > .wpcf7-form-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.p-lp-form-item-right .wpcf7-checkbox {
  width: 100%;
}
.p-lp-form-item-right .wpcf7-checkbox .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  position: relative;
  cursor: pointer;
}
.p-lp-form-item-right .wpcf7-checkbox .wpcf7-list-item label input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 30px;
  height: 30px;
  z-index: 2;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-lp-form-item-right .wpcf7-checkbox .wpcf7-list-item label input[type=checkbox] {
    width: 26px;
    height: 26px;
  }
}
.p-lp-form-item-right .wpcf7-checkbox .wpcf7-list-item label input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background: #f67506;
}
.p-lp-form-item-right .wpcf7-checkbox .wpcf7-list-item label input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.p-lp-form-item-right .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label {
  padding-left: 38px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 30px;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .p-lp-form-item-right .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label {
    font-size: 18px;
    min-height: 26px;
    padding-left: 34px;
  }
}
.p-lp-form-item-right .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: #c3cdd8;
  border-radius: 4px;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .p-lp-form-item-right .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label::before {
    width: 26px;
    height: 26px;
  }
}
.p-lp-form-item-right .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 17.9px;
  height: 13.65px;
  background-image: url(assets/img/lp-robot/icon-check.svg);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 1;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .p-lp-form-item-right .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label::after {
    width: 14.74px;
    height: 11.24px;
    left: 6.5px;
  }
}
input[type=checkbox]:checked + .p-lp-form-item-right .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label::before {
  background: #f67506;
}
.p-lp-form-item-right .wpcf7-radio {
  width: 100%;
}
.p-lp-form-item-right .wpcf7-radio .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  position: relative;
  cursor: pointer;
}
.p-lp-form-item-right .wpcf7-radio .wpcf7-list-item label input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 30px;
  height: 30px;
  z-index: 2;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .p-lp-form-item-right .wpcf7-radio .wpcf7-list-item label input[type=radio] {
    width: 26px;
    height: 26px;
  }
}
.p-lp-form-item-right .wpcf7-radio .wpcf7-list-item label input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.p-lp-form-item-right .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
  padding-left: 38px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 30px;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .p-lp-form-item-right .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
    font-size: 18px;
    min-height: 26px;
    padding-left: 34px;
  }
}
.p-lp-form-item-right .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: 1px solid #c3cdd8;
  border-radius: 100%;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .p-lp-form-item-right .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::before {
    width: 26px;
    height: 26px;
  }
}
.p-lp-form-item-right .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background-color: #f67506;
  opacity: 0;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .p-lp-form-item-right .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::after {
    left: 5px;
    width: 16px;
    height: 16px;
  }
}
input[type=radio]:checked + .p-lp-form-item-right .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::after {
  opacity: 1;
}
.p-lp-form-item-right .confirm-value {
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-lp-form-grid-2 .wpcf7-checkbox,
  .p-lp-form-grid-2 .wpcf7-radio {
    display: -ms-grid !important;
    display: grid !important;
    -ms-grid-columns: minmax(0, 1fr) 10px minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}
@media screen and (min-width: 768px) {
  .p-lp-form-grid-span-3 .wpcf7-checkbox,
  .p-lp-form-grid-span-3 .wpcf7-radio {
    display: -ms-grid !important;
    display: grid !important;
    -ms-grid-columns: minmax(0, 1fr) 10px minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}
@media screen and (min-width: 768px) {
  .p-lp-form-grid-span-3 .wpcf7-checkbox .wpcf7-list-item:nth-child(3),
  .p-lp-form-grid-span-3 .wpcf7-radio .wpcf7-list-item:nth-child(3) {
    -ms-grid-column-span: 2;
    grid-column: span 2/span 2;
  }
}
.p-lp-form-policy {
  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: 8px;
  margin-top: 32px;
}
@media screen and (min-width: 1024px) {
  .p-lp-form-policy {
    margin-top: 40px;
  }
}
.p-lp-form-policy p {
  font-size: 16px;
  line-height: 100%;
  font-weight: 500;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .p-lp-form-policy p {
    font-size: 18px;
  }
}
.p-lp-form-policy p span {
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}
.p-lp-form-policy input {
  position: relative;
  width: 30px;
  height: 30px;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-lp-form-policy input {
    width: 26px;
    height: 26px;
  }
}
.p-lp-form-policy input:checked ~ .custom-checkbox {
  background: #f67506;
}
.p-lp-form-policy-wrap {
  position: relative;
}
.p-lp-form-policy-wrap .error-message {
  position: absolute;
  top: 100%;
  left: 40px;
  white-space: nowrap;
}
.p-lp-form-policy .custom-checkbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background: #c3cdd8;
  border-radius: 4px;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-lp-form-policy .custom-checkbox {
    width: 26px;
    height: 26px;
  }
}
.p-lp-form-policy .custom-checkbox::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 17.9px;
  height: 13.65px;
  background-image: url(assets/img/lp-robot/icon-check.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-lp-form-policy .custom-checkbox::after {
    left: 4.5px;
  }
}
.p-lp-form-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .p-lp-form-button {
    margin-top: 64px;
  }
}
.p-lp-form-button > p {
  position: relative;
  max-width: 580px;
  width: 100%;
  height: 72px;
  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: 10px;
  background: #2c3033;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media screen and (min-width: 1024px) {
  .p-lp-form-button > p {
    height: 84px;
  }
}
.p-lp-form-button svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 16px;
}
@media screen and (min-width: 768px) {
  .p-lp-form-button svg {
    left: 24px;
    width: 46px;
    height: 30px;
  }
}
.p-lp-form-button input {
  position: relative;
  font-size: 21px;
  line-height: 32px;
  font-weight: 700;
  width: 100%;
  height: 100%;
  color: #fff !important;
}
@media screen and (min-width: 768px) {
  .p-lp-form-button input {
    font-size: 24px;
  }
}
.p-lp-form-button > p:has(input:disabled) {
  background: #c3cdd8;
}
.p-lp-form-button > p:has(input:disabled) input {
  cursor: default;
}
.p-lp-form-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}
.p-lp-form-back button {
  font-size: 18px;
  line-height: 32px;
  font-weight: 700;
  text-decoration: underline;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media screen and (min-width: 768px) {
  .p-lp-form-back button {
    font-size: 22px;
  }
}
.p-lp-modal-policy {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  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;
  padding: 0 20px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.p-lp-modal-policy.show {
  opacity: 1;
  pointer-events: auto;
}
.p-lp-modal-policy-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.25);
}
.p-lp-modal-policy-box {
  position: relative;
  width: 100%;
  max-width: 800px;
}
.p-lp-modal-policy-body {
  position: relative;
  width: 100%;
  max-height: 80vh;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  overflow: auto;
}
.p-lp-modal-policy--close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  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: #fff;
  border-radius: 100%;
  font-size: 20px;
  font-weight: 700;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  z-index: 1;
}
.p-lp-modal-policy--title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
  border-left: 5px solid #003d4f;
  padding: 15px 8px;
}
@media screen and (min-width: 768px) {
  .p-lp-modal-policy--title {
    font-size: 26px;
  }
}
.p-lp-modal-policy--heading {
  border-bottom: 3px solid #003d4f;
  font-size: 22px;
  font-weight: 700;
  padding: 10px 8px;
  margin: 15px 0 10px;
}
@media screen and (min-width: 768px) {
  .p-lp-modal-policy--heading {
    font-size: 18px;
  }
}
.p-lp-modal-policy p {
  font-size: 14px;
  letter-spacing: 0.4px;
  line-height: 1.85;
  margin-bottom: 24px;
  padding: 0 8px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-lp-modal-policy p {
    font-size: 16px;
    margin-bottom: 40px;
  }
}
.p-lp-modal-policy ul,
.p-lp-modal-policy ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  padding: 0 8px 0 28px;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .p-lp-modal-policy ul,
  .p-lp-modal-policy ol {
    margin-bottom: 12px;
    gap: 16px;
  }
}
.p-lp-modal-policy ul li,
.p-lp-modal-policy ol li {
  font-size: 14px;
  letter-spacing: 0.4px;
  line-height: 1.85;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-lp-modal-policy ul li,
  .p-lp-modal-policy ol li {
    font-size: 16px;
  }
}
.p-lp-modal-policy ul {
  list-style: disc;
}
.p-lp-modal-policy ol {
  list-style: decimal;
}