@charset "UTF-8";
/*
---------------------------------------------
baseファイルの読み込み
---------------------------------------------
*/
/*
---------------------------------------------
flexの設定
---------------------------------------------
*/
/*
---------------------------------------------
ブレイクポイントを指定
---------------------------------------------
*/
/*
---------------------------------------------
hoverするときのみ設定するメディアクエリ
---------------------------------------------
*/
/*
---------------------------------------------
色
---------------------------------------------
*/
/*
---------------------------------------------
フォントサイズ title
---------------------------------------------
*/
/*
---------------------------------------------
baseファイルの読み込み
---------------------------------------------
*/
/*
---------------------------------------------
色　※全体調整の際に削除する。
---------------------------------------------
*/
/*
---------------------------------------------
色
---------------------------------------------
*/
/*
---------------------------------------------
フォントサイズ title
---------------------------------------------
*/
/*
---------------------------------------------
全体のレイアウト
---------------------------------------------
*/
.company__inner {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
@media screen and (min-width: 700px) {
  .company__inner {
    gap: 24px;
  }
}

/**
 * swiperを使用する場合のレイアウト
 * 
 * @author ishizaka
 * @version 2026/01/07
 */
.companySlider {
  width: 100%;
  max-width: 1536px;
}

/*
---------------------------------------------
企業ロゴの並び
---------------------------------------------
*/
.company__list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media screen and (min-width: 768px) {
  .company__list {
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
  }
}
@media screen and (min-width: 1536px) {
  .company__list {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}

/*
---------------------------------------------
見出しのフォント設定
---------------------------------------------
*/
.company__title__2 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 700px) {
  .company__title__2 {
    font-size: 20px;
  }
}

/**
 * li要素のスタイル
 * 
 * @author ishizaka
 * @version 2026/01/08
 */
.company__item {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  cursor: pointer;
}

/**
 * 導入企業ロゴ部分のスタイル
 * スライダーアイテムのスタイルです。
 * 
 * @author ishizaka
 * @version 2026/01/07
 */
.companySlider__inner {
  width: 100%;
  max-width: 246px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}

/**
 * 導入企業名のテキストスタイル
 * 
 * @author ishizaka
 * @version 2026/01/07
 */
.company__name {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .company__name {
    font-size: 16px;
  }
}

/*
---------------------------------------------
資料ダウンロードボタン
---------------------------------------------
*/
.kv__04 {
  grid-area: kv04;
  align-self: end;
  width: 100%;
  padding: 0 4%;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 900px) {
  .kv__04 {
    padding: 0;
  }
}
@media screen and (min-width: 1440px) {
  .kv__04 {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}

.kv__04 .kv__cta {
  font-size: 17px;
}
@media screen and (min-width: 480px) {
  .kv__04 .kv__cta {
    font-size: 18px;
  }
}
@media screen and (min-width: 640px) {
  .kv__04 .kv__cta {
    font-size: 20px;
  }
}
@media screen and (min-width: 1440px) {
  .kv__04 .kv__cta {
    font-size: 18px;
  }
}

.kv__cta {
  position: relative;
  display: grid;
  place-content: center;
  text-decoration: none;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: bold;
  line-height: 1;
  width: 100%;
  height: 64px;
  padding: 20px 8px 24px 0;
  border-radius: 32px;
  transition: background-color 0.3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 480px) {
  .kv__cta {
    font-size: 18px;
  }
}
@media screen and (min-width: 640px) {
  .kv__cta {
    font-size: 20px;
  }
}
@media screen and (min-width: 900px) {
  .kv__cta {
    width: 100%;
    max-width: 640px;
  }
}
@media screen and (min-width: 1440px) {
  .kv__cta {
    height: 80px;
    padding: 20px 16px 24px 0;
    border-radius: 40px;
  }
}
.kv__cta .kv__cta__icons {
  width: 28px;
  height: 28px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 1440px) {
  .kv__cta .kv__cta__icons {
    right: 24px;
    width: 32px;
    height: 32px;
  }
}
.kv__cta .kv__cta__icons.download {
  background-image: url(./../../../img/download_icon_arrow_default.svg);
}
.kv__cta .kv__cta__icons.contact {
  background-image: url(./../../../img/contact_icon_arrow_default.svg);
}
.kv__cta .kv__cta__icons.info {
  background-image: url(./../../../img/btn_detail_arrow_default.svg);
}
@media (hover: hover) {
  .kv__cta:hover:hover .kv__cta__icons.download {
    background-image: url(./../../../img/download_icon_arrow_hover.svg);
    transition: background-image 0.3s;
  }
  .kv__cta:hover:hover .kv__cta__icons.contact {
    background-image: url(./../../../img/contact_icon_arrow_hover.svg);
    transition: background-image 0.3s;
  }
  .kv__cta:hover:hover .kv__cta__icons.info {
    background-image: url(./../../../img/btn_detail_arrow_hover.svg);
    transition: background-image 0.3s;
  }
}

.kv__cta.kv__download__btn {
  background-color: #1A9BB2;
}
@media (hover: hover) {
  .kv__cta.kv__download__btn:hover:hover {
    background-color: #388199;
    transition: border-color 0.3s;
  }
}
@media screen and (min-width: 900px) {
  .kv__cta.kv__download__btn {
    background-color: #1A9BB2;
  }
}

.kv__contact__btn {
  background-color: #DF6217;
}
@media (hover: hover) {
  .kv__contact__btn:hover:hover {
    background-color: #B85220;
    transition: background-color 0.3s;
  }
}

.kv__info__btn {
  background-color: #595750;
}
@media (hover: hover) {
  .kv__info__btn:hover:hover {
    background-color: #777777;
    transition: background-color 0.3s;
  }
}

/*
---------------------------------------------
ページ固有CSS
---------------------------------------------
*/
/* - フォントカラー指定 - */
.fc-red, .customBold {
  color: #DE6317;
}

.fc-white {
  color: #FFFFFF;
}

/* - Backgroundカラー指定 - */
.bgc-gray {
  background-color: #F4F5F5;
}

.bgc-yellow {
  background-color: #F5E400;
}

.bgc-yellow_light {
  background-color: #FFFCB2;
}

.bgc-black {
  background-color: #595750;
}

.bgc-white {
  background-color: #FFFFFF;
}

.bgc-red {
  background-color: #DE6317;
}

/* - border - */
.border_yellow--company {
  border-bottom: 1px solid #F5E400;
}

/* - LP全体 共通パーツ - */
.outer {
  width: 100%;
  height: auto;
}

.lp__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: auto;
  height: auto;
  margin: 40px 4%;
}

.heading-2 {
  font-size: 2rem;
  line-height: 37.8px;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 1440px) {
  .heading-2 {
    font-size: 3rem;
    line-height: 1;
  }
}

.lp__supplement {
  font-size: 1.5rem;
  line-height: 44.8px;
  font-weight: bold;
  -webkit-text-decoration: underline #F3E100 10px;
          text-decoration: underline #F3E100 10px;
  text-underline-offset: -2px;
  text-align: center;
}
@media screen and (min-width: 1440px) {
  .lp__supplement {
    font-size: 1.75rem;
  }
}

@media screen and (min-width: 900px) {
  .lp__sm__none {
    display: none;
  }
}

/* - KV - */
.kv__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: auto;
  height: auto;
  margin: 24px 16px;
}
@media screen and (min-width: 900px) {
  .kv__wrapper {
    gap: 0;
    display: grid;
    grid-template-areas: ". . content" "copy . content" ". . content" "cta . content" ". . content";
    grid-template-rows: 1fr auto 40px auto 1fr;
    grid-template-columns: 1fr 48px 1fr;
  }
}
@media screen and (min-width: 1440px) {
  .kv__wrapper {
    grid-template-areas: "copy copy . content" ". . . content" "cta . . content";
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 376px 1fr 48px 1fr;
    max-width: 1280px;
    margin: 56px auto;
  }
}

.kv__copy__container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 900px) {
  .kv__copy__container {
    grid-area: copy;
  }
}
@media screen and (min-width: 1440px) {
  .kv__copy__container {
    gap: 14px;
  }
}

.kv__maincopy {
  font-size: 1.43rem;
  font-weight: bold;
  line-height: 1.75;
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .kv__maincopy {
    margin: 0;
  }
}
@media screen and (min-width: 1440px) {
  .kv__maincopy {
    font-size: 1.25rem;
  }
}

.kv__h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
@media screen and (min-width: 900px) {
  .kv__h1 {
    align-items: start;
  }
}
@media screen and (min-width: 1440px) {
  .kv__h1 {
    gap: 16px;
  }
}
.kv__h1 > span {
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 4px 6px 4px;
  font-size: 2.85rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .kv__h1 > span {
    text-align: left;
  }
}
@media screen and (min-width: 1440px) {
  .kv__h1 > span {
    font-size: 3rem;
  }
}

.kv__h1--ruby {
  font-size: 1rem;
  line-height: 1;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 1440px) {
  .kv__h1--ruby {
    font-size: 1.25rem;
  }
}

.kv__subcopy {
  font-size: 1rem;
  font-weight: bold;
  line-height: 2;
  text-underline-offset: 6px;
  text-decoration: underline;
  margin: 0 auto;
}
@media screen and (min-width: 1440px) {
  .kv__subcopy {
    margin: 0;
    font-size: 1.125rem;
    white-space: pre-wrap;
  }
}

.kv__main__container {
  width: auto;
  height: auto;
}
@media screen and (min-width: 900px) {
  .kv__main__container {
    grid-area: content;
  }
}

.kv__shortcopy {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 0 0 16px 0;
  font-size: 1.71rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  font-style: italic;
  -webkit-text-decoration: underline 18px #f5e400;
          text-decoration: underline 18px #f5e400;
  text-underline-offset: -8px;
}
@media screen and (min-width: 1440px) {
  .kv__shortcopy {
    font-size: 2rem;
    margin: 0 0 24px 0;
  }
}

.kv__introduction__container {
  position: relative;
  width: 100%;
  height: auto;
}

.kv__introduction__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1440px) {
  .kv__introduction__inner {
    width: 712px;
    flex-direction: row;
    gap: 16px;
    height: 211px;
    align-items: center;
  }
}

.kv__introduction__inner--before {
  padding: 8px 16px 24px 16px;
  background-color: #FFFFFF;
  border: 4px solid #595750;
  border-radius: 8px 8px 0 0;
  border-bottom: none;
}
@media screen and (min-width: 1440px) {
  .kv__introduction__inner--before {
    padding: 0 48px 0 48px;
  }
}

.kv__introduction__inner--after {
  padding: 40px 16px 24px 16px;
  background-color: #F5E400;
  border: 4px solid #DE6317;
  border-radius: 0 0 8px 8px;
}
@media screen and (min-width: 1440px) {
  .kv__introduction__inner--after {
    padding: 0 48px 0 48px;
  }
}

.kv__introduction__title {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.43rem;
  font-weight: bold;
  line-height: 1;
  color: #FFFFFF;
  padding: 4px 16px 8px 12px;
  border-radius: 4px 0 4px 0;
}
@media screen and (min-width: 900px) {
  .kv__introduction__title {
    font-size: 1.25rem;
  }
}

.kv__introduction__title--before {
  border-radius: 4px 0 4px 0;
}

.kv__introduction__title--after {
  border-radius: 0 0 4px 0;
}

.kv__introduction__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  width: 261px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: bold;
}
@media screen and (min-width: 1440px) {
  .kv__introduction__text {
    margin: 0;
    gap: 12px;
    font-size: 1.25rem;
    width: auto;
  }
}

.kv__before__check > span {
  display: flex;
  align-items: center;
}
.kv__before__check > span::before {
  display: block;
  content: url("../../../img/lp/kv_before_check.png");
  width: 24px;
  height: 24px;
}

.kv__after__check > span {
  display: flex;
  align-items: center;
}
.kv__after__check > span::before {
  display: block;
  content: url("../../../img/lp/kv_after_check.png");
  width: 24px;
  height: 24px;
}

.kv__introduction__image__cover {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 1440px) {
  .kv__introduction__image__cover {
    margin: 0;
  }
}

.kv__bottom__arrow {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 47%;
  left: 50%;
  z-index: 100;
  width: 32px;
  height: 32px;
  background-image: url("../../../img/lp/kv_bottom_arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 1440px) {
  .kv__bottom__arrow {
    top: 50%;
  }
}

/* - 導入企業 - */
.company__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: auto;
  height: auto;
  margin: 32px 4% 32px 4%;
}
@media screen and (min-width: 1440px) {
  .company__wrapper {
    margin: 32px 10%;
  }
}

.company__heading {
  font-size: 1.28rem;
  line-height: 1;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 1440px) {
  .company__heading {
    font-size: 1.25rem;
  }
}

/* - サービスの特徴 - */
.feature__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: auto;
  height: auto;
  margin: 40px 4%;
}
@media screen and (min-width: 1440px) {
  .feature__wrapper {
    margin: 80px 4%;
    gap: 64px;
  }
}

.feature__heading {
  font-size: 1.71rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 1440px) {
  .feature__heading {
    font-size: 1.5rem;
  }
}

.feature__char__box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: auto;
  height: auto;
}

.feature__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: auto;
  height: auto;
}
@media screen and (min-width: 1440px) {
  .feature__container {
    gap: 56px;
    max-width: 1536px;
    margin: 0 auto;
  }
}

.feature__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1440px) {
  .feature__inner {
    flex-direction: row;
    gap: 0;
    justify-content: center;
  }
}

.feature__img {
  width: auto;
  max-width: 184px;
}
@media screen and (min-width: 1440px) {
  .feature__img {
    max-width: 184px;
  }
}

.feature__img--company {
  width: auto;
  max-width: 345px;
}
@media screen and (min-width: 1440px) {
  .feature__img--company {
    max-width: 448px;
  }
}

.feature__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  gap: 24px;
  flex-shrink: 0;
  flex: 1;
  width: 100%;
  height: auto;
  padding: 24px 24px;
}
.feature__item:last-of-type {
  padding: 24px 0 0 0;
}
@media screen and (min-width: 1440px) {
  .feature__item:last-of-type {
    padding: 24px 24px;
  }
}
@media screen and (min-width: 1440px) {
  .feature__item {
    min-width: 392px;
    max-width: 513px;
  }
}

.feature__exp {
  font-size: 1.14rem;
  line-height: 28.8px;
  font-weight: normal;
  text-align: center;
}
@media screen and (min-width: 1440px) {
  .feature__exp {
    font-size: 1rem;
  }
}

.feature__note {
  font-size: 1rem;
  line-height: 25.2px;
  font-weight: normal;
  text-align: center;
}
@media screen and (min-width: 1440px) {
  .feature__note {
    font-size: 0.875rem;
  }
}

.feature__exp--emphasis, .customBold {
  font-size: 1.71rem;
  line-height: 28.8px;
  font-weight: bold;
}
@media screen and (min-width: 1440px) {
  .feature__exp--emphasis, .customBold {
    font-size: 1.5rem;
  }
}

/* - シンプルな価格体系 - */
.price__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: auto;
  height: auto;
  margin: 40px 4%;
}
@media screen and (min-width: 1440px) {
  .price__wrapper {
    gap: 48px;
    margin: 80px 4%;
  }
}

.price__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1440px) {
  .price__container {
    gap: 48px;
  }
}

.price__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 900px) {
  .price__inner {
    gap: 32px;
  }
}
@media screen and (min-width: 1440px) {
  .price__inner {
    max-width: 1040px;
    margin: 0 auto;
  }
}

.price__itemBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 900px) {
  .price__itemBox {
    flex-direction: row;
    gap: 16px;
  }
}

.price__plusMark {
  width: 24px;
  height: 24px;
  background-image: url("../../../img/lp/plusMark.png");
  background-repeat: no-repeat;
  background-size: contain;
}

.price__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: auto;
  padding: 32px 0 32px 0;
  border-radius: 16px;
}
@media screen and (min-width: 900px) {
  .price__item {
    flex: 1;
    height: 200px;
  }
}

.price__item--primary {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  height: auto;
  padding: 0 0 32px 0;
  border-radius: 16px;
  border: 2px solid #595750;
}
@media screen and (min-width: 1440px) {
  .price__item--primary {
    padding: 0 0 40px 0;
  }
}

.price__heading {
  font-size: 1.42rem;
  line-height: 1;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 1440px) {
  .price__heading {
    font-size: 1.25rem;
  }
}

.price__heading--primary {
  font-size: 1.42rem;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  border-radius: 8px 8px 0 0;
  padding: 12px 0 12px 0;
}
@media screen and (min-width: 1440px) {
  .price__heading--primary {
    font-size: 1.5rem;
    padding: 16px 0 16px 0;
  }
}

.price__exp {
  font-size: 1.71rem;
  line-height: 1;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 1440px) {
  .price__exp {
    font-size: 2rem;
  }
}

.price__exp--emphasis {
  font-size: 3.42rem;
  line-height: 1;
  font-weight: bold;
}
@media screen and (min-width: 1440px) {
  .price__exp--emphasis {
    font-size: 5rem;
  }
}

.price__exp--emphasis--low {
  font-size: 3.42rem;
  line-height: 1;
  font-weight: bold;
}
@media screen and (min-width: 1440px) {
  .price__exp--emphasis--low {
    font-size: 3.5rem;
  }
}

.price__note {
  font-size: 0.85rem;
  line-height: 1;
  font-weight: normal;
  text-align: center;
}
@media screen and (min-width: 1440px) {
  .price__note {
    font-size: 0.75rem;
  }
}

.price__note-2 {
  font-size: 0.85rem;
  line-height: 1;
  font-weight: normal;
  text-align: left;
}
@media screen and (min-width: 900px) {
  .price__note-2 {
    text-align: center;
  }
}

/* - サービス導入 - */
.introduction__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: auto;
  height: auto;
  margin: 40px 4%;
}
@media screen and (min-width: 900px) {
  .introduction__wrapper {
    margin: 80px 4%;
  }
}
@media screen and (min-width: 1440px) {
  .introduction__wrapper {
    flex-wrap: nowrap;
  }
}

.introduction__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1440px) {
  .introduction__container {
    gap: 24px;
    max-width: 1536px;
    margin: 0 auto;
  }
}

.introduction__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1440px) {
  .introduction__inner {
    gap: 24px;
  }
}

.introduction__item {
  display: flex;
  flex-direction: column;
  gap: 21px;
  width: 100%;
  height: auto;
  padding: 28px 21px 28px 21px;
  border: 1px solid #D7DADA;
  border-radius: 4px;
}
@media screen and (min-width: 900px) {
  .introduction__item {
    padding: 48px 48px 48px 48px;
  }
}
@media screen and (min-width: 1440px) {
  .introduction__item {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    padding: 48px 48px 48px 48px;
  }
}

.introduction__item--onImage {
  display: flex;
  flex-direction: column;
  gap: 21px;
  width: 100%;
  height: auto;
  padding: 28px 21px 0px 21px;
  border: 1px solid #D7DADA;
  border-radius: 4px;
}
@media screen and (min-width: 900px) {
  .introduction__item--onImage {
    padding: 48px 48px 0 48px;
  }
}
@media screen and (min-width: 1440px) {
  .introduction__item--onImage {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    padding: 48px 48px 48px 48px;
  }
}

.introduction__item__image {
  position: relative;
  align-self: center;
}
@media screen and (min-width: 1440px) {
  .introduction__item__image {
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translate(40%, 47%);
  }
}

.introduction__box {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: auto;
  height: auto;
}
@media screen and (min-width: 1440px) {
  .introduction__box {
    flex: 1;
    max-width: 324px;
    gap: 16px;
  }
}

.introduction__item__heading {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 1440px) {
  .introduction__item__heading {
    flex-direction: column;
    gap: 20px;
  }
}

.introduction__item__step-head {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1rem;
  line-height: 1;
  font-weight: bold;
  padding: 3px 10px 3px 10px;
}

.introduction__item__step-num {
  font-size: 1.71rem;
  line-height: 1;
  font-weight: bold;
}
@media screen and (min-width: 1440px) {
  .introduction__item__step-num {
    font-size: 1.5rem;
  }
}

.introduction__item__copy {
  font-size: 1.43rem;
  line-height: 30px;
  font-weight: bold;
}
@media screen and (min-width: 1440px) {
  .introduction__item__copy {
    font-size: 1.375rem;
    text-align: center;
  }
}

.introduction__item__bottom-arrow {
  background-image: url("../../../img/lp/bottom_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 32px;
  height: 32px;
  margin: 0 0 0 17px;
}
@media screen and (min-width: 1440px) {
  .introduction__item__bottom-arrow {
    background-image: url("../../../img/lp/right_arrow.png");
    margin: 0;
  }
}

.introduction__supplement {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 1.71rem;
  line-height: 1;
  font-weight: bold;
  text-align: center;
}
.introduction__supplement {
  flex-shrink: 0;
}
.introduction__supplement::before, .introduction__supplement::after {
  content: "";
  flex: auto;
  height: 1px;
  background-color: #D7DADA;
}
@media screen and (min-width: 1440px) {
  .introduction__supplement {
    font-size: 1.5rem;
  }
}

.introduction__note {
  font-size: 1rem;
  line-height: 25.2px;
  font-weight: normal;
}
@media screen and (min-width: 1440px) {
  .introduction__note {
    font-size: 0.875rem;
  }
}

.introduction__exp {
  font-size: 1rem;
  font-weight: normal;
  line-height: 25.2px;
}
@media screen and (min-width: 1440px) {
  .introduction__exp {
    line-height: 28.8px;
    text-align: center;
    white-space: pre-wrap;
  }
}

.introduction__item__bracket {
  font-size: 1rem;
  line-height: 30px;
  font-weight: bold;
}

/* - 導入事例 - */
.case__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: auto;
  height: auto;
  margin: 40px 4%;
}
@media screen and (min-width: 1440px) {
  .case__wrapper {
    flex-wrap: nowrap;
    margin: 80px 4%;
    gap: 64px;
  }
}

.case__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  font-size: 1rem;
  line-height: 18.9px;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 1440px) {
  .case__heading {
    font-size: 1.25rem;
  }
}

.case__supplement {
  font-size: 1.14rem;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  -webkit-text-decoration: underline #DE6317 4px;
          text-decoration: underline #DE6317 4px;
  text-underline-offset: 10px;
}
@media screen and (min-width: 1440px) {
  .case__supplement {
    font-size: 1.5rem;
  }
}

.case__supplement--emphasis {
  font-size: 1.71rem;
  line-height: 1;
  font-weight: bold;
}
@media screen and (min-width: 1440px) {
  .case__supplement--emphasis {
    font-size: 2.5rem;
  }
}

.case__container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  border-radius: 2px;
}
@media screen and (min-width: 1440px) {
  .case__container {
    flex-wrap: nowrap;
    max-width: 1536px;
    margin: 0 auto;
  }
}

.case__item {
  flex: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 21px 21px 21px;
  border: 1px solid #D7DADA;
}
@media screen and (min-width: 1440px) {
  .case__item {
    padding: 40px 24px 24px 24px;
  }
}

/* - contact - */
.contact__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: auto;
  height: auto;
  margin: 40px 4%;
}
@media screen and (min-width: 1440px) {
  .contact__wrapper {
    gap: 16px;
    margin: 80px 4%;
  }
}

.contact__container {
  display: grid;
  grid-template-areas: "user user user" ". . ." "answer1 . answer2" ". . ." "company_reco . walletcho" ". . ." "company company company" ". . ." "answer3 answer3 answer3" ". . ." "walletcho2 walletcho2 walletcho2";
  grid-template-rows: auto 8px auto 8px auto 24px auto 8px auto 8px auto;
  grid-template-columns: 1fr 8px 1fr;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 900px) {
  .contact__container {
    grid-template-areas: "user user user . company" ". . . . ." "answer1 . answer2 . answer3" ". . . . ." "company_reco . walletcho walletcho walletcho";
    grid-template-rows: auto 16px auto 16px auto;
    grid-template-columns: 1fr 16px 1fr 16px 1fr;
    margin: 48px auto 0 auto;
    max-width: 1536px;
  }
}

.contact__inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  height: auto;
}

.contact__head {
  width: 100%;
  height: auto;
  padding: 8px 8px 8px 8px;
  font-size: 1.14rem;
  line-height: 1.4;
  font-weight: bold;
  border-radius: 4px;
  text-align: center;
}
@media screen and (min-width: 1440px) {
  .contact__head {
    font-size: 1.5rem;
    border-radius: 8px;
  }
}

.contact__exp {
  width: 100%;
  height: auto;
  padding: 8px 8px 8px 8px;
  border-radius: 4px;
  font-size: 0.78rem;
  line-height: 1.8;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 1440px) {
  .contact__exp {
    font-size: 1.5rem;
    border-radius: 8px;
  }
}

.contact__items {
  display: flex;
  gap: 8px;
  width: 100%;
  height: auto;
}

.contact__item {
  position: relative;
  flex: 1;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 8px 16px 8px;
  margin: 0 0 12px 0;
  border: 2px solid #F5E400;
  border-radius: 4px;
  font-size: 0.78rem;
  line-height: 1.8;
  font-weight: bold;
}
.contact__item::after {
  position: absolute;
  transform: translate(-50%, 100%);
  bottom: 0;
  left: 50%;
  content: "";
  width: auto;
  height: auto;
  border-top: 12px solid #F5E400;
  border-right: 16px solid transparent;
  border-left: 16px solid transparent;
}
@media screen and (min-width: 900px) {
  .contact__item::after {
    border-top: 18px solid #F5E400;
    border-right: 24px solid transparent;
    border-left: 24px solid transparent;
  }
}
.contact__item > span::before {
  content: "・";
  font-size: 0.78rem;
}
@media screen and (min-width: 1440px) {
  .contact__item > span::before {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .contact__item {
    font-size: 1.5rem;
    border-radius: 16px;
  }
}

.contact__note {
  font-size: 1rem;
  line-height: 25.2px;
  font-weight: normal;
}
@media screen and (min-width: 1440px) {
  .contact__note {
    font-size: 0.875rem;
    width: 100%;
    max-width: 1536px;
    margin: 0 auto;
  }
}

.kv_cta {
  grid-area: cta;
}

.contact__area__user {
  grid-area: user;
}

.contact__area__company {
  grid-area: company;
}

.contact__area__answer1 {
  grid-area: answer1;
}

.contact__area__answer2 {
  grid-area: answer2;
}

.contact__area__answer3 {
  grid-area: answer3;
}

.contact__area__company_reco {
  grid-area: company_reco;
}

.contact__area__walletcho {
  grid-area: walletcho;
}

.contact__area__walletcho2 {
  grid-area: walletcho2;
}

.sp__none {
  display: none;
}
@media screen and (min-width: 1440px) {
  .sp__none {
    display: block;
  }
}/*# sourceMappingURL=landing-page.css.map */