@charset "UTF-8";

:root {
  /* ------------------------ 
    color
  ------------------------ */
  /* Brand */
  --color-brand-primary: #41AFA3;
  --color-brand-primary-light: #63C5BA;
  --color-brand-primary-soft: #EAF8F6;
  --color-brand-primary-tint: #F3FBFA;
  --color-brand-primary-hover: #389D92;
  --color-brand-secondary: #1F3B4D;
  --color-brand-secondary-light: #35586D;
  --color-brand-secondary-dark: #162A36;

  /* Text */
  --color-text-main: #2E363A;
  --color-text-sub: #5F6B70;
  --color-text-light: #7D8B91;
  --color-text-white: #FFFFFF;

  /* Background */
  --color-bg-base: #FFFFFF;
  --color-bg-soft: #EFF5F5;
  --color-bg-dark: #16323F;

  /* Border */
  --color-border-light: #E3EAEC;
  --color-border-default: #D0D9DC;
  --color-border-dark: #A8B5BA;

  /* White */
  --color-white: #FFFFFF;
  --color-white-soft: #F8FBFB;
  --color-white-tint: #F3FBFA;

  /* Gray */
  --color-gray-50: #F8FAFB;
  --color-gray-100: #F1F5F6;
  --color-gray-200: #E3EAEC;
  --color-gray-300: #D0D9DC;
  --color-gray-400: #A8B5BA;
  --color-gray-500: #7D8B91;
  --color-gray-600: #5F6B70;
  --color-gray-700: #465055;
  --color-gray-800: #2E363A;
  --color-gray-900: #1C2226;

  /* ------------------------ 
    shadow
  ------------------------ */
  --shadow-soft: 0 4px 20px rgba(31,59,77,.06);
  --shadow-medium: 0 10px 30px rgba(31,59,77,.1);
  --shadow-hover: 0 14px 40px rgba(31,59,77,.14);
  --shadow-img: 0 11px 40px rgba(31,59,77,.15);

  /* ------------------------ 
    radius
  ------------------------ */
  --radius-sm: 0.4rem;
  --radius-md: 0.8rem;
  --radius-lg: 1.6rem;
  --radius-xl: 2.4rem;
  --radius-max: 999.9rem;

  /* ------------------------ 
    font-weight
  ------------------------ */
  --font-regular: 400;
  --font-medium: 500;
  --font-bold: 700;

  /* ------------------------ 
    transition
  ------------------------ */
  --transition-default: .25s ease;

  /* ------------------------ 
    container
  ------------------------ */
  --container-width-lg: 120rem;
  --container-width-md: 108rem;
  --container-width-sm: 96rem;
  --container-width-xs: 90rem;
}

html {
  font-size: 62.5%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--color-text-main);
  background-color: var(--color-bg-base);
}

.en {
  font-family: "Lato", sans-serif;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dl,
dd {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

/* reCAPTCHAマーク非表示 */
.grecaptcha-badge { visibility: hidden; }

/* ヘルパークラス */
.hp_text_primary {
  color: var(--color-brand-primary);
}

.hp_text_secondary_light {
  color: var(--color-brand-secondary-light);
}

.hp_fw_bold {
  font-weight: var(--font-bold);
}

.hp_fw_medium {
  font-weight: var(--font-medium);
}

.hp_fw_regular {
  font-weight: var(--font-regular);
}

.hp_txt_link {
  text-decoration: underline;
  transition: opacity var(--transition-default);
}

@media (hover: hover) and (pointer: fine) {
  .hp_txt_link:hover {
    opacity: .65;
  }
}

/* 改行 */
br.pc_only {
  display: inline;
}

br.sp_only {
  display: none;
}

@media (max-width: 768px) {
  br.pc_only {
    display: none;
  }
  br.sp_only {
    display: inline;
  }
}

/* PC・モバイルの表示/非表示 */
.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

@media (max-width: 768px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}

/* セクション */
.ly_hero,
.ly_cta,
.ly_section {
  padding-inline: 2.4rem;
}

.ly_section {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

/* セクションタイトル */
.bl_section_ttl {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  font-size: 3.2rem;
  letter-spacing: .02em;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 4.8rem;
}

/* 下にテキストがある場合だけ調整 */
.bl_section_ttl:has(+ .bl_section_desc) {
  margin-bottom: 2.4rem;
}

.bl_section_ttl::before {
  content: '';
  font-family: "Lato", sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: .05em;
  color: var(--color-brand-primary);
}

/* セクション概要 */
.bl_section_desc {
  text-align: center;
  font-weight: var(--font-medium);
  line-height: 2;
  margin-bottom: 4.8rem;
}

/* コンテナ */
.container {
  max-width: var(--container-width-lg);
  margin-inline: auto;
}
.container.container__sm {
  max-width: var(--container-width-sm);
}
.container.container__xs {
  max-width: var(--container-width-xs);
}

/* ボタン */
.el_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  background-color: var(--color-brand-primary);
  color: var(--color-text-white);
  text-align: center;
  line-height: 1.5;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: var(--font-medium);
  letter-spacing: .02em;
  transition: var(--transition-default);
}

.el_button__ol {
  background-color: var(--color-white);
  color: var(--color-brand-primary);
  border-color: currentColor;
}

.el_button__sm {
  padding: 1.2rem 1.6rem;
  font-size: 1.5rem;
}

.el_button__md {
  padding: 1.6rem;
  font-size: 1.6rem;
}

/* アイコン：ベース */
.el_button::before {
  content: '';
  width: 2rem;
  aspect-ratio: 1;
  background: currentColor;
}

/* アイコン：ダウンロード */
.el_button.download::before {
  mask: url("../img/satokarte/icon_download.svg") no-repeat center / contain;
}

/* アイコン：コンタクト */
.el_button.contact::before {
  mask: url("../img/satokarte/icon_mail.svg") no-repeat center / contain;
}

/* ボタンエリア */
.bl_buttons_wrapper {
  display: flex;
  flex-direction: column;
  width: 44rem;
  align-items: center;
  gap: .8rem;
  margin-top: 4rem;
}

.bl_buttons_lead {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-weight: var(--font-bold);
  color: var(--color-brand-secondary-light);
  line-height: 1.6;
}
.bl_buttons_lead::before,
.bl_buttons_lead::after {
  content: '';
  background-color: currentColor;
  height: 1px;
  width: 1.2em;
}
.bl_buttons_lead::before {
  transform: rotate(60deg);
}
.bl_buttons_lead::after {
  transform: rotate(-60deg);
}

.bl_buttons {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  width: 100%;
}

.bl_buttons > .el_button {
  flex: 1;
  box-shadow: var(--shadow-medium);
  font-weight: var(--font-bold);
}

/* ボタン：hover */
@media (hover: hover) and (pointer: fine) {
  .el_button:hover {
    background-color: var(--color-brand-primary-hover);
    box-shadow: var(--shadow-hover);
  }

  .el_button__ol:hover {
    background-color: var(--color-brand-primary-hover);
    color: var(--color-text-white);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-brand-primary-hover);
  }
}

/* アノテーションリスト */
.bl_annotation_list {
  margin-top: 3.2rem;
}

.bl_annotation_list > li {
  display: flex;
  gap: .2rem;
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--color-text-sub);
}

.bl_annotation_list > li + li {
  margin-top: .2rem;
}

.bl_annotation_list > li::before {
  content: '\203b';
}

/* CTA */
.ly_cta {
  position: relative;
  padding-top: 6.4rem;
  padding-bottom: 6.4rem;
  background: url("../img/satokarte/cta_bg.jpg") center bottom no-repeat;
  background-size: cover;
  z-index: 0;
}

.ly_cta::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-brand-secondary);
  z-index: -1;
  opacity: .9;
}

.ly_cta > .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bl_cta_logo {
  width: 14.4rem;
}

.bl_cta_ttl {
  font-size: 3.2rem;
  line-height: 1.6;
  letter-spacing: .02em;
  color: var(--color-text-white);
  margin-top: 2.4rem;
  text-align: center;
}

.bl_cta_txt {
  margin-top: 1.6rem;
  line-height: 2;
  color: var(--color-text-white);
  text-align: center;
}

.ly_cta .bl_buttons_lead {
  color: var(--color-brand-primary-light);
}

/* フェードアニメーション */
.fadeUp {
  opacity: 0;
  transform: translateY(1.2rem);
  transition:
    opacity .7s ease,
    transform .7s ease;
}

.fadeUp.is-active {
  opacity: 1;
  transform: translateY(0);
}

.delay01 {
  transition-delay: .1s;
}

.delay02 {
  transition-delay: .2s;
}

.delay03 {
  transition-delay: .3s;
}


/* ------------------------ 
  header
------------------------ */
.ly_header {
  padding-inline: 2.4rem;
  position: fixed;
  width: 100%;
  /* top: 0;
  left: 0; */
  background-color: rgba(255, 255, 255, .9);
  z-index: 1000;
}

.bl_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 10rem;
}

.bl_header_logo {
  width: 13rem;
}

.bl_header_buttons {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

/* ------------------------ 
  hero
------------------------ */
.ly_hero{
  background: url("../img/satokarte/hero_bg.jpg") center bottom no-repeat;
  background-size: cover;
}

.bl_hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16.4rem 1.6rem 10.4rem;
}

.bl_hero_contents {
  flex: 1;
  margin-right: 2em;
  min-width: 50.2rem;
}

.bl_hero_sub_ttl {
  font-size: 2.2rem;
  font-weight: var(--font-bold);
  line-height: 1.5;
}

.bl_hero_main_ttl {
  font-size: 4rem;
  line-height: 1.45;
  letter-spacing: .02em;
  margin-top: 2rem;
}

.bl_hero_desc {
  font-size: 1.8rem;
  line-height: 1.9;
  color: var(--color-text-sub);
  font-weight: var(--font-medium);
  margin-top: 2.4rem;
}

.bl_hero_img {
  position: relative;
  width: 48.666666%;
  min-width: 50rem;
}

.bl_hero_img_wrapper {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-img);
}

.bl_hero_patent {
  position: absolute;
  right: 2.4rem;
  top: -6rem;
  width: 12rem;
  border-radius: var(--radius-max);
  box-shadow: var(--shadow-medium);
}

/* ------------------------ 
  problem
------------------------ */
.ly_section.problem .bl_section_ttl::before {
  content: 'PROBLEM';
}

.bl_problem_list {
  display: flex;
}

.bl_problem_list_item {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  padding: 0 1em;
}

.bl_problem_list_item:not(:last-child) {
  border-right: 1px solid var(--color-border-light);
}

.bl_problem_list_item_icon_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bl_problem_list_num {
  font-size: 2.4rem;
  font-weight: var(--font-bold);
  color: var(--color-brand-primary);
  letter-spacing: .05em;
}

.bl_problem_list_item_icon {
  width: 13.6rem;
  margin-top: 1.6rem;
}

.bl_problem_list_item_body {
  text-align: center;
}

.bl_problem_list_ttl {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-top: 1.6rem;
}

.bl_problem_list_txt {
  font-size: 1.5rem;
  color: var(--color-text-sub);
  margin-top: 1.6rem;
}

.bl_problem_comment {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  max-width: 96rem;
  margin-inline: auto;
  margin-top: 7.2rem;
  border: 2px solid var(--color-brand-primary);
  padding: 2.4rem;
  border-radius: var(--radius-md);
}

.bl_problem_comment_icon {
  width: 3.2rem;
}

.bl_problem_comment_txt {
  font-size: 2.2rem;
  font-weight: var(--font-bold);
  line-height: 1.5;
  letter-spacing: .02em;
}

.bl_problem_comment::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  border-style: solid;
  border-width: 0 21.5px 24px 21.5px;
  border-color: transparent transparent var(--color-brand-primary);
  translate: -50% -100%;
}

.bl_problem_comment::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  border-style: solid;
  border-width: 0 18.8px 21px 18.8px;
  border-color: transparent transparent var(--color-white);
  translate: -50% -100%;
}

/* ------------------------ 
  service
------------------------ */
.ly_section.service {
  background-color: var(--color-bg-soft);
}

.ly_section.service .bl_section_ttl::before {
  content: 'SERVICE';
}

.bl_service_content {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 3.2rem;
}

.bl_service_content_ttl {
  font-size: 2.4rem;
  line-height: 1.5;
  padding: 1.6rem .8rem;
  text-align: center;
  border-radius: var(--radius-sm);
}

.conventional .bl_service_content_ttl {
  background-color: var(--color-gray-100);
  font-weight: var(--font-medium);
}

.innovative .bl_service_content_ttl {
  background-color: var(--color-brand-primary);
  color: var(--color-text-white);
}

.bl_conventional_flow {
  display: flex;
  align-items: stretch;
  gap: .4rem;
  margin-top: 2.4rem;
}

.bl_conventional_flow_item {
  flex: 1;
  text-align: center;
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-sm);
  font-weight: var(--font-medium);
  line-height: 1.5;
  color: var(--color-text-sub);
  padding: 2.8rem 1rem;
}

.bl_conventional_flow_arrow > svg {
  width: 2rem;
  height: 2rem;
  color: var(--color-border-dark);
}

.bl_conventional_flow_item,
.bl_conventional_flow_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bl_service_arrow {
  width: 7.2rem;
  margin: 2.4rem auto;
}

.bl_innovative_msg {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.4rem;
}

.bl_innovative_msg::before,
.bl_innovative_msg::after {
  content: '';
  background-color: currentColor;
  height: 1px;
  width: 1.8em;
}

.bl_innovative_msg::before {
  transform: rotate(60deg);
  margin-right: .2em;
}

.bl_innovative_msg::after {
  transform: rotate(-60deg);
  margin-left: .2em;
}

.bl_innovative_msg_txt {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: var(--font-medium);
  text-align: center;
}

.bl_innovative_flow {
  display: flex;
  gap: .4rem;
  margin-top: 1.6rem;
}

.bl_innovative_flow_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  border: 1px solid var(--color-brand-primary);
  padding: 3.2rem 1.6rem;
  border-radius: var(--radius-md);
}

.bl_innovative_flow_iconWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
  border-radius: var(--radius-max);
  box-shadow: var(--shadow-medium);
}

.bl_innovative_flow_iconWrapper > img {
  width: 4.8rem;
  height: 4.8rem;
}

.bl_innovative_flow_body {
  margin-top: 2rem;
  text-align: center;
}

.bl_innovative_flow_ttl {
  color: var(--color-brand-primary);
  line-height: 1.5;
  letter-spacing: .02em;
}

.bl_innovative_flow_txt {
  font-size: 1.4rem;
  margin-top: .8rem;
}

.bl_innovative_flow_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bl_innovative_flow_arrow > svg {
  width: 2rem;
  height: 2rem;
  color: var(--color-brand-primary);
}

.bl_orderis {
  position: relative;
  display: flex;
  gap: 6.4rem;
  margin-top: 3.2rem;
  padding: 4rem 4rem 4rem 6.4rem;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.bl_orderis_label {
  position: absolute;
  left: 4rem;
  top: -1.8rem;
  line-height: 1;
  padding: 1rem 2.4rem;
  background-color: var(--color-brand-primary);
  color: var(--color-text-white);
  border-radius: var(--radius-max);
}

.bl_orderis_image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-right: 6.4rem;
  border-right: 1px solid var(--color-border-default);
}

.bl_orderis_icon {
  width: 12rem;
  height: 12rem;
}

.bl_orderis_ttl {
  margin-top: 1.2rem;
  font-size: 2.4rem;
  line-height: 1.5;
  text-align: center;
  letter-spacing: .03em;
}

.bl_orderis_ttl > .reading {
  display: block;
  font-size: 1.2rem;
  font-weight: var(--font-regular);
  letter-spacing: 0;
  color: var(--color-text-sub);
}

.bl_orderis_body {
  flex: 1;
}

.bl_orderis_desc {
  color: var(--color-text-sub);
}

.bl_orderis_features {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.bl_orderis_features > li {
  display: flex;
  align-items: center;
  gap: .8rem;
  background-color: var(--color-gray-50);
  border: 1px solid var(--color-border-light);
  padding: 1.6rem;
  line-height: 1.5;
  border-radius: var(--radius-sm);
  font-weight: var(--font-medium);
}

.bl_orderis_features > li::before {
  content: '';
  width: 2rem;
  aspect-ratio: 1;
  background: var(--color-brand-primary);
  mask: url("../img/satokarte/icon_check-circle.svg") no-repeat center / contain;
}

/* ------------------------ 
  features
------------------------ */
.ly_section.features .bl_section_ttl::before {
  content: 'FEATURES';
}

.bl_features {
  display: flex;
  flex-direction: column;
  gap: 5.6rem;
}

.bl_feature {
  display: flex;
  align-items: center;
  gap: 6.4rem;
}

.bl_feature_imgWrapper {
  width: 38.4rem;
  box-shadow: var(--shadow-medium);
}

.bl_feature_content {
  flex: 1;
}

.bl_feature_num {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: var(--color-gray-400);
  font-weight: var(--font-bold);
  font-size: 1.4rem;
  letter-spacing: .02em;
}

.bl_feature_num > span {
  font-size: 2.4rem;
}

.bl_feature_ttl {
  margin-top: 2.4rem;
  font-size: 2.4rem;
  letter-spacing: .02em;
}

.bl_feature_txt {
  margin-top: 1.6rem;
  color: var(--color-text-sub);
  line-height: 1.8;
}

/* ------------------------ 
  usecase
------------------------ */
.ly_section.usecase {
  background-color: var(--color-bg-soft);
}

.ly_section.usecase .bl_section_ttl::before {
  content: 'USE CASE';
}

.bl_usecase {
  display: flex;
  background-color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.bl_usecase_imgWrapper {
  max-width: 48rem;
}

.bl_usecase_body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.8rem;
}

.bl_usecase_ttl {
  font-size: 3rem;
  line-height: 1.5;
  letter-spacing: .02em;
}

.bl_usecase_txt {
  margin-top: 1.6rem;
  line-height: 1.8;
  color: var(--color-text-sub);
}

.bl_usecase_target {
  margin-top: 2.4rem;
  background-color: var(--color-gray-100);
  padding: 1rem 1.6rem;
  line-height: 1.5;
  font-weight: var(--font-medium);
  align-self: flex-start;
}

.bl_usecase_subttl {
  font-size: 2.8rem;
  letter-spacing: .02em;
  line-height: 1.5;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--color-border-dark);
  font-weight: var(--font-medium);
  margin-top: 4.8rem;
  margin-bottom: 3.2rem;
}

.bl_usecase_deliverables {
  display: flex;
  gap: 1.6rem;
}

.bl_usecase_deliverables > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  background-color: var(--color-gray-200);
  padding: 4.8rem 1.6rem;
  text-align: center;
}

.bl_deliverable_illust {
  width: 27.2rem;
  box-shadow: var(--shadow-medium);
}

.bl_deliverable_ttl {
  margin-top: 3.2rem;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: .02em;
}

.bl_deliverable_txt {
  margin-top: .8rem;
  font-size: 1.4rem;
}

.bl_usecase_prices {
  display: flex;
  gap: 1.6rem;
}

.bl_price {
  flex: 1;
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--color-white);
}

.bl_price_ttl {
  font-size: 2.4rem;
  color: var(--color-text-white);
  padding: 2rem 1.6rem;
  text-align: center;
  font-weight: var(--font-medium);
  letter-spacing: .02em;
}

.basic .bl_price_ttl {
  background-color: var(--color-brand-primary);
}

.option .bl_price_ttl {
  background-color: var(--color-gray-500);
}

.bl_price_body {
  /* display: flex;
  flex-direction: column;
  align-items: center; */
  padding: 2.4rem;
}

.bl_price_desc {
  text-align: center;
}

.bl_basicplan_price_area {
  margin-top: 1.6rem;
}

.bl_basicplan_price {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bl_basicplan_price .price {
  font-size: 2rem;
  font-weight: var(--font-medium);
}

.bl_basicplan_price .price .value {
  color: var(--color-brand-primary);
  font-size: 6.4rem;
  letter-spacing: .02em;
  font-weight: var(--font-bold);
  line-height: 1;
}

.bl_basicplan_price .acreage {
  font-size: 1.4rem;
  margin-top: .2rem;
}

.bl_basicplan_price .annotation {
  font-size: 1.2rem;
  color: var(--color-text-sub);
  margin-top: .8rem;
}

.bl_basicplan_details {
  margin-top: 3.2rem;
}

.bl_basicplan_detail {
  padding: 2.4rem 1.6rem;
  border-top: 1px solid var(--color-border-light);
}

.bl_basicplan_detail_ttl {
  font-weight: var(--font-bold);
  color: var(--color-brand-primary);
}

.bl_basicplan_detail_lead {
  font-size: 1.4rem;
  color: var(--color-text-sub);
}

.bl_basicplan_detail_list {
  margin-top: 1.6rem;
  padding: 1.6rem;
  background-color: var(--color-gray-50);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
}

.bl_basicplan_detail_list > li {
  display: flex;
  font-weight: var(--font-medium);
}

.bl_basicplan_detail_list > li::before {
  content: "\30FB";
}

.bl_basicplan_detail_list > li + li {
  margin-top: .2rem;
}

.bl_basicplan_detail_blocks {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bl_basicplan_detail_block {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.6rem;
  background-color: var(--color-gray-50);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
}

.bl_basicplan_detail_block_num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.4rem;
  color: var(--color-text-white);
  background-color: var(--color-brand-primary);
  border-radius: var(--radius-max);
}

.bl_basicplan_detail_block_body {
  flex: 1;
}

.bl_basicplan_detail_block_ttl {
  font-weight: var(--font-medium);
}

.bl_basicplan_detail_block_txt {
  font-size: 1.4rem;
  color: var(--color-text-sub);
}

.bl_optionplan_list {
  margin-top: 3.2rem;
}

.bl_optionplan_list > li {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding: 2.4rem 1.6rem;
  border-top: 1px solid var(--color-border-light);
}

.bl_optionplan_list_iconWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-gray-100);
  width: 12rem;
  height: 12rem;
}

.bl_optionplan_list_iconWrapper > img {
  width: 8.8rem;
  height: 8.8rem;
}

.bl_optionplan_list_body {
  flex: 1;
}

.bl_optionplan_list_lead {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: var(--color-brand-secondary-light);
  font-weight: var(--font-medium);
}

.bl_optionplan_list_lead .bl_optionplan_list_num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-size: 1.4rem;
  color: var(--color-text-white);
  background-color: var(--color-brand-secondary-light);
  border-radius: var(--radius-max);
}

.bl_optionplan_list_ttl {
  font-size: 1.8rem;
  font-weight: var(--font-bold);
  letter-spacing: .02em;
  margin-top: .8rem;
  line-height: 1.5;
}

.bl_optionplan_list_txt {
  margin-top: .8rem;
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--color-text-sub);
}

.ly_section.usecase .bl_buttons_wrapper {
  margin-inline: auto;
}

.bl_usecase_other_environments {
  display: flex;
  gap: 2.4rem;
}

.bl_usecase_other_environment {
  flex: 1;
}

.bl_usecase_other_environment_imgWrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.bl_usecase_other_environment_ttl {
  margin-top: 1.6rem;
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: .02em;
  text-align: center;
}

.bl_usecase_other_environment_txt {
  margin-top: .8rem;
  font-size: 1.4rem;
  color: var(--color-text-sub);
}

/* ------------------------ 
  target
------------------------ */
.ly_section.target .bl_section_ttl::before {
  content: 'TARGET';
}
.ly_section.target .bl_section_desc {
  margin-bottom: 6.4rem;
}

.bl_target_animals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 3.2rem;
}

.bl_target_animal {
  position: relative;
}

.bl_target_animal_label {
  position: absolute;
  font-size: 1.4rem;
  line-height: 1.5;
  padding: .6rem .8rem;;
  width: 10.4rem;
  color: var(--color-text-white);
  border-radius: var(--radius-max);
  box-shadow: var(--shadow-medium);
  text-align: center;
  background-color: var(--color-gray-400);
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.is-available .bl_target_animal_label {
  background-color: var(--color-brand-primary);
}

.bl_target_animal_imgWrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.bl_target_animal_imgWrapper::before {
  content: '';
  position: absolute;
  background-color: #455961;
  opacity: .5;
  inset: 0;
}

.bl_target_animal_imgWrapper::after {
  content: 'Comming Soon';
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Lato", sans-serif;
  font-weith: var(--font-regular);
  color: var(--color-text-white);
  opacity: .7;
  text-align: center;
  line-height: 1.5;
  letter-spacing: .08em;
}

.is-available .bl_target_animal_imgWrapper::before,
.is-available .bl_target_animal_imgWrapper::after {
  content: none;
}

.bl_target_animal_name {
  font-size: 1.8rem;
  font-weight: var(--font-medium);
  text-align: center;
  margin-top: 1.2rem;
  color: var(--color-text-light);
}

.is-available .bl_target_animal_name {
  font-weight: var(--font-bold);
  color: var(--color-brand-primary);
}

/* ------------------------ 
  flow
------------------------ */
.ly_section.flow {
  background-color: var(--color-bg-soft);
}

.ly_section.flow .bl_section_ttl::before {
  content: 'FLOW';
}

.bl_flow_chart {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.bl_flow {
  position: relative;
  display: flex;
  gap: 4rem;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 2.4rem 2.4rem 2.4rem 6.4rem;
}

.bl_flow_num {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  width: 4rem;
  height: 4rem;
  color: var(--color-text-white);
  background-color: var(--color-brand-primary);
  border-radius: var(--radius-max);
  box-shadow: var(--shadow-medium);
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}

.bl_flow_iconWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 4.8rem;
  border-right: 1px solid var(--color-border-default);
}

.bl_flow_iconWrapper > img {
  width: 6.4rem;
}

.bl_flow_body {
  flex: 1;
}

.bl_flow_ttl {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: .02em;
  color: var(--color-brand-primary);
}

.bl_flow_txt {
  margin-top: .8rem;
  color: var(--color-text-sub);
}

.bl_flow_arrow {
  width: 3.2rem;
  margin: 0 auto;
}

.bl_flow_arrow > img {
  display: block;
}

.bl_flow_delivery_date {
  margin-top: 1.6rem;
  padding: 1.6rem 2rem;
  background-color: var(--color-gray-50);
  border: 1px solid var(--color-brand-primary);
  border-radius: var(--radius-sm);
}

.bl_flow_delivery_date_ttl {
  font-weight: var(--font-medium);
  line-height: 1.5;
}

.bl_flow_delivery_date_ttl > .date {
  font-size: 2rem;
}

.bl_flow_delivery_date_txt {
  color: var(--color-text-sub);
}

/* ------------------------ 
  faq
------------------------ */
.ly_section.faq .bl_section_ttl::before {
  content: 'FAQ';
}

.bl_faq_list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.bl_faq_list_item {
  /* padding: 2.8rem 2.4rem; */
  border: 1px solid var(--color-border-default);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-default);
}

@media (hover: hover) and (pointer: fine) {
  .bl_faq_list_item:hover {
    border-color: var(--color-border-dark);
  }
}

.bl_faq_list_item.is_active {
  border-color: var(--color-brand-primary);
}

.bl_faq_list_question_button {
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
  position: relative;
  display: flex;
  gap: .8rem;
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 2.8rem 6.8rem 2.8rem 2.4rem;
  font-size: 1.8rem;
  font-weight: var(--font-bold);
  line-height: 1.5;
}

.bl_faq_list_question_button::after {
  content: '';
  position: absolute;
  right: 2.4rem;
  top: 50%;
  width: 2.8rem;
  aspect-ratio: 1;
  background: url(../img/satokarte/icon_faq_arrow.svg) no-repeat center / contain;
  transform: translateY(-50%) rotate(-180deg);
  transition: transform var(--transition-default);
}

.is_active .bl_faq_list_question_button::after {
  transform: translateY(-50%) rotate(-360deg);
}

.bl_faq_list_question button > .question_mark {
  font-size: 2rem;
  margin-top: -.3rem;
  color: var(--color-brand-primary);
}

.bl_faq_list_answer {
  display: none;
  color: var(--color-text-sub);
  line-height: 1.6;
  padding: 0 3.2rem 2.8rem;
  /* margin-top: -1.8rem; */
}

/* ------------------------ 
  related_services
------------------------ */
.ly_section.related_services .bl_section_ttl::before {
  content: 'RELATED SERVICES';
}

.bl_related_services {
  display: flex;
  gap: 4.8rem;
}

.bl_related_service {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bl_related_service_imgWrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.bl_related_service_body {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}

.bl_related_service_ttl {
  margin-top: 2rem;
  font-size: 2rem;
  line-height: 1.6;
  text-align: center;
  letter-spacing: .02em;
}

.bl_related_service_txt {
  margin: .8rem 0 2.4rem;
  font-size: 1.5rem;
  color: var(--color-text-sub);
}

.bl_related_service_button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.6;
  padding: 1.4rem .8rem;
  border: 1px solid var(--color-border-default);
  border-radius: var(--radius-max);
  text-align: center;
  margin-top: auto;
  transition: var(--transition-default);
}

.bl_related_service_button::after {
  content: '';
  position: absolute;
  right: 1em;
  width: 1.6rem;
  aspect-ratio: 1;
  background: currentColor;
  mask: url("../img/satokarte/icon_chevron-right.svg") no-repeat center / contain;
  transition: var(--transition-default);
}

@media (hover: hover) and (pointer: fine) {
  .bl_related_service_button:hover {
    border-color: var(--color-border-dark);
    box-shadow: var(--shadow-soft);
  }

  .bl_related_service_button:hover::after {
    transform: translateX(.3rem);
  }
}

/* ------------------------ 
  footer
------------------------ */
.ly_footer_inner {
  padding-inline: 2.4rem;
}

.ly_footer_inner > .container {
  padding-top: 8rem;
  padding-bottom: 8rem;
  border-top: 1px solid var(--color-border-default);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bl_footer_logo {
  width: 16.8rem;
}

.bl_footer_links {
  margin-top: 4.8rem;
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.bl_footer_links > li > a {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-weight: var(--font-medium);
  line-height: 1.6;
  transition: opacity var(--transition-default);
}

.bl_footer_links > li > a::after {
  content: '';
  width: 1.6rem;
  aspect-ratio: 1;
  background: var(--color-text-sub);
  mask: url("../img/satokarte/icon_external-link.svg") no-repeat center / contain;
}

@media (hover: hover) and (pointer: fine) {
  .bl_footer_links > li > a:hover {
    opacity: .65;
  }
}

.ly_footer .bl_annotation_list {
  max-width: 80rem;
}

.bl_footer_copyright {
  background-color: var(--color-bg-dark);
  color: var(--color-text-white);
  text-align: center;
  padding: 1.2rem;
}

.bl_footer_copyright small {
  font-size: 1.4rem;
  letter-spacing: .02em;
}


/* ----------------------------------- 
-------------------------------------- 
  responsive
--------------------------------------
----------------------------------- */

@media (max-width: 768px) {

  /* セクション */
  .ly_section {
    padding-top: 6.4rem;
    padding-bottom: 6.4rem;
  }

  /* セクションタイトル */
  .bl_section_ttl {
    font-size: 2.2rem;
    margin-bottom: 4rem;
  }

  .bl_section_ttl::before {
    font-size: 1.5rem;
  }

  /* セクション概要 */
  .bl_section_desc {
    font-size: 1.4rem;
    text-align: left;
    line-height: 1.8;
    margin-bottom: 4rem;
  }

  /* ボタン */
  .el_button__sm {
    font-size: 1.4rem;
    padding: 1.1rem 1.2rem;
  }

  .el_button__sm::before {
    width: 1.6rem;
  }

  /* ボタンエリア */
  .bl_buttons_wrapper {
    width: 100%;
    margin-top: 3.2rem;
    gap: 1.6rem;
  }

  .bl_buttons_lead {
    font-size: 1.4rem;
    gap: .1rem;
  }

  .bl_buttons {
    flex-direction: column;
    gap: 1.6rem;
  }

  .bl_buttons > .el_button {
    width: 100%;
  }

  /* CTA */
  .bl_cta_ttl {
    font-size: 2.4rem;
  }

  .bl_cta_txt {
    font-size: 1.5rem;
    text-align: left;
  }


  /* ------------------------ 
    header
  ------------------------ */
  .ly_header {
    padding-inline: 1.6rem;
  }

  .bl_header {
    height: 8rem;
  }

  .bl_header_logo {
    width: 10.4rem;
  }

  .bl_header_buttons > .el_button.download {
    display: none;
  }

  /* ------------------------ 
    hero
  ------------------------ */
  .bl_hero {
    position: relative;
    display: block;
    padding: 11.2rem 0 10.4rem;
    text-align: center;
  }

  .bl_hero_contents {
    margin-right: 0;
    min-width: auto;
  }

  .bl_hero_sub_ttl {
    font-size: 1.6rem;
  }

  .bl_hero_main_ttl {
    font-size: 3.2rem;
    margin-top: 1.6rem;
  }

  .bl_hero_desc {
    font-size: 1.5rem;
    margin-top: 1.6rem;
  }

  .bl_hero_img {
    position: absolute;
    width: 100%;
    min-width: 100%;
    margin-top: 6.4rem;
  }

  .bl_hero_patent {
    width: 8.8rem;
    right: 1.2rem;
    top: -3.2rem;
  }

  /* ------------------------ 
    problem
  ------------------------ */
  .ly_section.problem {
    padding-top: clamp(160px, 64vw, 480px);
  }

  .bl_problem_list {
    flex-direction: column;
  }

  .bl_problem_list_item {
    flex-direction: row;
    gap: 2.4rem;
    padding: 1.6rem 0;
  }

  .bl_problem_list_item:first-child {
    padding-top: 0;
  }

  .bl_problem_list_item:last-child {
    padding-bottom: 0;
  }

  .bl_problem_list_item:not(:last-child) {
    border-right-width: 0;
    border-bottom: 1px solid var(--color-border-light);
  }

  .bl_problem_list_num {
    font-size: 1.6rem;
  }
  
  .bl_problem_list_item_icon {
    width: 8.8rem;
    margin-top: 0;
  }

  .bl_problem_list_item_body {
    flex: 1;
    text-align: left;
  }

  .bl_problem_list_ttl {
    font-size: 1.6rem;
    margin-top: 0;
  }

  .bl_problem_list_txt {
    font-size: 1.4rem;
    margin-top: .8rem;
  }

  .bl_problem_comment {
    padding: 2rem 1.6rem;
  }

  .bl_problem_comment_icon {
    display: none;
  }

  .bl_problem_comment_txt {
    font-size: 1.6rem;
    text-align: center;
  }

  /* ------------------------ 
    service
  ------------------------ */
  .bl_service_content {
    padding: 2.4rem;
  }

  .bl_service_content_ttl {
    font-size: 1.8rem;
  }

  .bl_conventional_flow {
    flex-direction: column;
  }

  .bl_service_arrow {
    width: 5.6rem;
  }

  .bl_conventional_flow_arrow > svg {
    transform: rotate(90deg);
  }

  .bl_innovative_msg::before,
  .bl_innovative_msg::after {
    content: none;
  }

  .bl_innovative_msg_txt {
    font-size: 1.8rem;
  }

  .bl_innovative_flow {
    flex-direction: column;
  }

  .bl_innovative_flow_item {
    padding: 2.4rem 1.6rem;
  }

  .bl_innovative_flow_arrow > svg {
    transform: rotate(90deg);
  }

  .bl_orderis {
    flex-direction: column;
    padding: 4rem 2.4rem 2.4rem 2.4rem;
    gap: 2.4rem;
  }

  .bl_orderis_label {
    left: 50%;
    transform: translateX(-50%);
  }

  .bl_orderis_image {
    padding-right: 0;
    padding-bottom: 2.4rem;
    border-right-width: 0;
    border-bottom: 1px solid var(--color-border-default);
  }

  .bl_orderis_desc {
    font-size: 1.4rem;
  }

  .bl_orderis_features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  /* ------------------------ 
    features
  ------------------------ */
  .bl_features {
    gap: 4rem;
  }

  .bl_feature {
    flex-direction: column;
    gap: 2.4rem;
  }

  .bl_feature_imgWrapper {
    width: 100%;
  }

  .bl_feature_ttl {
    font-size: 2rem;
    margin-top: 1.6rem;
  }

  /* ------------------------ 
    usecase
  ------------------------ */
  .bl_usecase {
    flex-direction: column;
  }

  .bl_usecase_body {
    padding: 2.4rem;
  }

  .bl_usecase_ttl {
    font-size: 2rem;
    text-align: center;
  }

  .bl_usecase_txt {
    font-size: 1.4rem;;
  }

  .bl_usecase_target {
    margin-top: 1.6rem;
    font-size: 1.4rem;
  }

  .bl_usecase_subttl {
    font-size: 2rem;
  }

  .bl_usecase_deliverables {
    flex-direction: column;
  }

  .bl_deliverable_ttl {
    font-size: 1.8rem;
  }

  .bl_usecase_prices {
    flex-direction: column;
  }

  .bl_price_ttl {
    font-size: 1.8rem;
    padding: 1.2rem 1.6rem;
  }

  .bl_price_body {
    padding: 2rem;
  }

  .bl_price_desc {
    font-size: 1.4rem;
    text-align: left;
  }

  .bl_basicplan_price_area {
    margin-top: .8rem;
  }

  .bl_basicplan_detail {
    padding: 2rem 0 0;
  }

  .bl_basicplan_detail_list {
    padding: 1.2rem;
  }

  .bl_basicplan_detail_list > li {
    font-size: 1.4rem;
  }

  .bl_optionplan_list > li {
    gap: 1.6rem;
    padding: 2rem 0;
  }

  .bl_optionplan_list > li:last-child {
    padding-bottom: 0;
  }

  .bl_optionplan_list_iconWrapper {
    width: 6.4rem;
    height: 6.4rem;
  }

  .bl_optionplan_list_iconWrapper > img {
    width: 5.6rem;
    height: 5.6rem;
  }

  .bl_optionplan_list_lead {
    font-size: 1.4rem;
  }

  .bl_optionplan_list_ttl {
    font-size: 1.6rem;
  }

  .bl_usecase_other_environments {
    flex-direction: column;
    padding-inline: 3rem;
  }

  /* ------------------------ 
    target
  ------------------------ */
  .ly_section.target .bl_section_desc {
    margin-bottom: 4.8rem;
  }

  .bl_target_animals {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.2rem 1.6rem;
  }

  .bl_target_animal_label {
    font-size: 1.2rem;
    padding: .4rem .2rem;
    width: 8rem;
  }

  .bl_target_animal_imgWrapper::after {
    font-size: 1.4rem;
  }

  .bl_target_animal_imgWrapper > img {
    height: 20rem;
    object-fit: cover;
  }

  .bl_target_animal_name {
    font-size: 1.6rem;
    margin-top: .8rem;
  }

  /* ------------------------ 
    flow
  ------------------------ */
  .bl_flow {
    gap: 1.6rem;
    padding: 1.6rem;
  }

  .bl_flow_num {
    font-size: 1.4rem;
    width: 2.4rem;
    height: 2.4rem;
    top: 0;
  }

  .bl_flow_iconWrapper {
    padding-right: 1.6rem;
  }

  .bl_flow_iconWrapper > img {
    width: 4rem;
  }

  .bl_flow_ttl {
    font-size: 1.6rem;
  }

  .bl_flow_txt {
    font-size: 1.4rem;
    margin-top: .4rem;
  }

  .bl_flow_delivery_date {
    margin-top: 1.2rem;
    padding: 1.2rem;
  }

  .bl_flow_delivery_date_ttl {
    font-size: 1.5rem;
  }

  .bl_flow_delivery_date_ttl > .date {
    font-size: 1.5rem;
  }

  .bl_flow_delivery_date_txt {
    font-size: 1.4rem;
  }

  /* ------------------------ 
    faq
  ------------------------ */
  .bl_faq_list_question_button {
    font-size: 1.6rem;
    padding: 1.6rem 4.8rem 1.6rem 1.6rem;
  }

  .bl_faq_list_question_button::after {
    right: 1.6rem;
    width: 2rem;
  }

  .bl_faq_list_answer {
    font-size: 1.4rem;
    padding: 0 2.4rem 1.6rem;
  }

  /* ------------------------ 
    related_services
  ------------------------ */
  .bl_related_services {
    flex-direction: column;
  }

  .bl_related_service_ttl {
    font-size: 1.8rem;
  }

  .bl_related_service_txt {
    font-size: 1.4rem;
  }

  /* ------------------------ 
    footer
  ------------------------ */
  .ly_footer_inner > .container {
    padding-top: 6.4rem;
    padding-bottom: 6.4rem;
  }

  .bl_footer_logo {
    width: 15.2rem;
  }

  .bl_footer_links {
    width: 100%;
    margin-top: 4rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
  }


}
/* /.@media (max-width: 768px) */