@charset "UTF-8";
/* CSS Document */

/* ============================================================
   Hero
   ============================================================ */
.sec_hero {
  position: relative;
  width: 100%;
  height: 100svh;
  max-height: 800px;
  min-height: 700px;
  overflow: hidden;
}

.sec_hero .ly_inner {
  max-width: 100%;
}

/* 背景画像 */
.bl_hero_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bl_hero_bg_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bl_hero_bg_img.is_sp {
  display: none;
}

/* 内側コンテンツ */
.bl_hero_inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 55px 100px;
}

/* ロゴ */
.bl_hero_logo img {
  width: 200px;
  margin-bottom: 60px;
}

/* キャッチコピー */
.bl_hero_catch {
  color: var(--color_white);
}

.bl_hero_catch_main {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.bl_hero_catch_main_sm,
.bl_hero_catch_main_lg {
  font-size: 94px;
  font-weight: 600;
}

.bl_hero_catch_main_lg em {
  font-style: normal;
  color: var(--color_red);
}

.bl_hero_catch_sub {
  font-size: 42px;
  font-weight: 500;
  margin-top: 20px;
  letter-spacing: 0.05em;
}

/* ============================================================
   Hero レスポンシブ
   ============================================================ */

@media screen and (max-width: 1130px) {
  .bl_hero_inner {
    padding-top: 90px;
  }

  /* ロゴ */
  .bl_hero_logo img {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 860px) {
  .sec_hero {
    max-height: inherit;
  }
  .sec_hero .ly_inner {
    height: 100svh;
  }
  /* 内側コンテンツ */
  .bl_hero_inner {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  /* ロゴ */
  .bl_hero_logo img {
    width: 120px;
    position: absolute;
    top: 20px;
    left: 20px;
  }
  .bl_hero_catch {
    position: absolute;
    bottom: 50px;
    left: 20px;
  }

  .bl_hero_catch_main_sm,
  .bl_hero_catch_main_lg {
    font-size: 42px;
  }

  .bl_hero_catch_sub {
    font-size: 20px;
  }
  .bl_hero_bg_img.is_pc {
    display: none;
  }

  .bl_hero_bg_img.is_sp {
    display: block;
  }
}
/* ============================================================
   About
   ============================================================ */
.sec_about {
  background: url(assets/images/bg_about_img_pc.jpg) center -2px no-repeat;
  background-size: cover;
  padding: 80px 0;
  height: 860px;
  margin-left: auto;
}

.sec_about .ly_inner {
  padding: 0 100px;
}

.bl_about {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 580px;
  margin-left: auto;
}

/* メイン画像 */
.bl_about_img img {
  width: 100%;
  max-width: 800px;
}

.bl_about_img .is_sp {
  display: none;
}

/* 矢印 */
.bl_about_arw img {
  width: 52px;
  height: auto;
}

/* 計算式 */
.bl_about_equation {
  width: 100%;
  max-width: 450px;
}

.bl_about_equation .flex {
  align-items: center;
  gap: 14px;
}

.bl_about_equation01,
.bl_about_equation03 {
  border: 1px solid var(--color_white);
  background: var(--color_black);
  color: var(--color_white);
  font-size: 18px;
  font-weight: 700;
  width: 203px;
  height: 42px;
  text-align: center;
  line-height: 40px;
  flex: 1;
}
.bl_about_equation03 {
  background: var(--color_white);
  color: var(--color_black);
}

.bl_about_equation02 img {
  width: 14px;
  height: auto;
}

/* コピー画像 */
.bl_about_copy {
  width: 100%;
  max-width: 580px;
  text-align: center;
}

.bl_about_copy img {
  width: 100%;
  height: auto;
}

.bl_about_copy .is_sp {
  display: none;
}

/* リストタイトル */
.bl_about_list_ttl {
  text-align: center;
  border-bottom: 2px solid var(--color_gold);
  color: var(--color_gold);
  margin-bottom: 24px;
  padding-bottom: 10px;
}

.bl_about_list_ttl .ttl {
  font-size: 18px;
  font-weight: 700;
}

.bl_about_list_ttl .strong {
  font-size: 24px;
}

/* チェックリスト */
.bl_about_lists {
  display: flex;
  justify-content: center;
  max-width: 527px;
  width: 100%;
}

.bl_about_list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.bl_about_item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color_white);
}

.bl_about_item img {
  width: 27px;
  flex-shrink: 0;
}

/* ============================================================
   About レスポンシブ
   ============================================================ */
@media screen and (max-width: 767px) {
  .sec_about {
    padding: 89vw 0 60px;
    background: url(assets/images/bg_about_img_sp.jpg) center top no-repeat;
    background-size: cover;
    height: auto;
  }

  .sec_about .ly_inner {
    padding: 0 20px;
  }

  .bl_about {
    width: auto;
    margin: 0 auto;
  }

  .bl_about_img .is_pc {
    display: none;
  }

  .bl_about_img .is_sp {
    display: block;
  }

  /* 矢印 */
  .bl_about_arw img {
    width: 52px;
    height: auto;
  }

  /* 計算式 */
  .bl_about_equation {
    width: 100%;
    max-width: 335px;
  }

  .bl_about_equation .flex {
    align-items: center;
    gap: 10px;
  }

  .bl_about_equation01,
  .bl_about_equation03 {
    font-size: 14px;
    width: 47%;
    max-width: 151px;
    height: 31px;
    line-height: 29px;
  }

  .bl_about_equation02 img {
    width: 10px;
  }

  .bl_about_copy {
    width: 100%;
    max-width: 335px;
  }

  .bl_about_copy .is_pc {
    display: none;
  }

  .bl_about_copy .is_sp {
    display: block;
  }

  .bl_about_list_ttl .ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .bl_about_list_ttl .strong {
    font-size: 26px;
  }

  .bl_about_lists {
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 335px;
  }

  .bl_about_item {
    font-size: 14px;
  }
}
/* ============================================================
   FLOW
   ============================================================ */
.sec_flow {
  background: var(--color_off_white);
  padding: 80px 0 55px;
}

.sec_flow .ly_inner {
  padding: 0 40px;
}

/* ============================================================
   FLOW STEP ラベル
   ============================================================ */
.bl_flow_steps {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
}

.bl_flow_step {
  position: relative;
}

.bl_flow_step_label {
  font-family: var(--font_en);
  font-style: italic;
  font-size: 28px;
  font-weight: 500;
  color: var(--color_black);
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
  position: absolute;
  top: -35px;
  left: 0;
  width: 100%;
}

.bl_flow_step_label em {
  font-size: 50px;
  color: var(--color_gold);
}

/* ============================================================
   FLOW STEP 本体
   ============================================================ */
.bl_flow_step_body {
  background: var(--color_white);
  padding: 35px 0 30px;
  text-align: center;
}

.bl_flow_step_ttl {
  background: var(--color_black);
  color: var(--color_white);
  font-size: 24px;
  font-weight: 600;
  padding: 14px 0;
  text-align: center;
  max-width: 545px;
  margin: 0 auto 30px;
  position: relative;
}

.bl_flow_step_time {
  font-size: 18px;
}

/* ============================================================
   FLOW サブリスト
   ============================================================ */
.bl_flow_step_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  width: 438px;
  margin: 0 auto;
}

.bl_flow_step_item_head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.bl_flow_step_num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color_gold);
  color: var(--color_white);
  font-family: var(--font_en);
  font-size: 30px;
  font-weight: 500;
  flex-shrink: 0;
}

.bl_flow_step_item_ttl {
  font-size: 24px;
  font-weight: 600;
  color: var(--color_gold);
}

.bl_flow_step_item_ttl .bl_flow_step_time {
  font-size: 18px;
}

.bl_flow_step_txt {
  font-size: 16px;
  line-height: 1.8;
  padding-left: 50px;
  text-align: left;
}

/* ============================================================
   FLOW 矢印
   ============================================================ */
.bl_flow_step_arw {
  text-align: center;
  margin-bottom: 35px;
}

.bl_flow_step_arw img {
  width: 140px;
  margin: 0 auto;
}

/* ============================================================
   FLOW 無料バッジ
   ============================================================ */
.bl_flow_step_badge img {
  width: 93px;
  height: auto;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(90px);
}

.bl_flow_step_ttl:has(> .bl_flow_step_badge) {
  margin-bottom: 0;
}

/* ============================================================
   FLOW レスポンシブ
   ============================================================ */
@media screen and (max-width: 767px) {
  .sec_flow {
    padding: 65px 0 50px;
  }

  .sec_flow .ly_inner {
    padding: 0 20px;
  }

  /* ============================================================
   FLOW STEP ラベル
   ============================================================ */

  .bl_flow_step_label {
    font-size: 20px;
    margin-bottom: 12px;
    top: -24px;
  }

  .bl_flow_step_label em {
    font-size: 35px;
  }

  /* ============================================================
   FLOW STEP 本体
   ============================================================ */
  .bl_flow_step_body {
    padding: 25px 20px;
  }

  .bl_flow_step_ttl {
    font-size: 15px;
    padding: 10px 0;
    margin: 0 auto 20px;
  }

  .bl_flow_step_time {
    font-size: 11px;
  }

  /* ============================================================
   FLOW サブリスト
   ============================================================ */
  .bl_flow_step_list {
    gap: 15px;
    width: 100%;
  }

  .bl_flow_step_item_head {
    margin-bottom: 5px;
  }

  .bl_flow_step_num {
    width: 30px;
    height: 30px;
    font-size: 22px;
  }

  .bl_flow_step_item_ttl {
    font-size: 18px;
  }

  .bl_flow_step_item_ttl .bl_flow_step_time {
    font-size: 12px;
  }

  .bl_flow_step_txt {
    font-size: 14px;
    padding-left: 40px;
  }

  /* ============================================================
   FLOW 矢印
   ============================================================ */
  .bl_flow_step_arw {
    margin-bottom: 30px;
  }

  .bl_flow_step_arw img {
    width: 102px;
  }

  /* ============================================================
   FLOW 無料バッジ
   ============================================================ */
  .bl_flow_step_badge img {
    width: 67px;
    top: -9px;
    transform: translateX(60px);
  }

  .bl_flow_step_ttl:has(> .bl_flow_step_badge) {
    margin-bottom: 0;
  }
}
/* ============================================================
   TRIAL
   ============================================================ */
.sec_trial {
  background: var(--color_off_white);
  padding: 55px 0 0;
}

/* リード文 */
.bl_trial_lead {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  padding-bottom: 12px;
}

/* ゴールド帯 */
.bl_trial_catch {
  background: var(--color_gold);
  padding: 35px 0 40px;
  text-align: center;
}

.bl_trial_catch_ttl {
  font-size: 50px;
  font-weight: 600;
  color: var(--color_white);
  margin-bottom: 10px;
}

/* コピー画像 */
.bl_trial_copy .is_sp {
  display: none;
}

.bl_trial_copy img {
  height: 86px;
  width: auto;
  margin: 0 auto;
}

/* 写真 */
.bl_trial_imgs img {
  width: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ============================================================
   TRIAL レスポンシブ
   ============================================================ */
@media screen and (max-width: 767px) {
  /* ============================================================
   TRIAL
   ============================================================ */
  .sec_trial {
    padding: 0;
  }

  /* リード文 */
  .bl_trial_lead {
    font-size: 20px;
  }

  /* ゴールド帯 */
  .bl_trial_catch {
    background: var(--color_gold);
    padding: 20px;
  }

  .bl_trial_catch_ttl {
    font-size: 30px;
  }

  /* コピー画像 */

  .bl_trial_copy .is_pc {
    display: none;
  }

  .bl_trial_copy .is_sp {
    display: block;
  }

  .bl_trial_copy img {
    width: 100%;
    height: auto;
  }

  /* 写真 */
  .bl_trial_imgs img {
    width: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
}
/* ============================================================
   MENU
   ============================================================ */
.sec_menu {
  background: var(--color_white);
  padding: 140px 0 120px;
}

.sec_menu .ly_inner {
  max-width: 1240px;
  padding: 0 56px;
}

/* ============================================================
   MENU プラン
   ============================================================ */
.bl_menu_plans {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}

.bl_menu_plan {
  display: grid;
  grid-template-columns: 42% 1fr;
}

/* 左側カラーエリア */
.bl_menu_plan_img {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 240px;
}

.bl_menu_plan_img::before {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.bl_menu_plan_img::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.bl_menu_plan_img.is_black::before {
  background: #1a1a1a;
}
.bl_menu_plan_img.is_black::after {
  background: #000000;
}

.bl_menu_plan_img.is_red::before {
  background: #e60000;
}
.bl_menu_plan_img.is_red::after {
  background: var(--color_red);
}

.bl_menu_plan_img.is_gold::before {
  background: #cdc08e;
}
.bl_menu_plan_img.is_gold::after {
  background: var(--color_gold);
}

.bl_menu_plan_name {
  position: relative;
  z-index: 1;
  font-size: 30px;
  font-weight: 600;
  color: var(--color_white);
  line-height: 1.5;
  padding: 0 13%;
}

.bl_menu_plan_name span {
  font-size: 20px;
}

/* 右側コンテンツエリア */
.bl_menu_plan_body {
  background: var(--color_off_white);
  padding: 50px 60px;
}

.bl_menu_plan_catch {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 25px;
}

.bl_menu_plan_detail {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.bl_menu_plan_detail_row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
  align-items: start;
}

.bl_menu_plan_detail_row dt {
  font-size: 14px;
  white-space: nowrap;
}

.bl_menu_plan_detail_row:has(.bl_menu_plan_num) dt {
  padding-top: 10px;
}

.bl_menu_plan_num {
  font-size: 22px;
}

/* サービスリスト */
.bl_menu_plan_service {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
  list-style-type: none;
  font-size: 16px;
}

.bl_menu_plan_service li::before {
  content: "■ ";
  font-size: 16px;
}

/* ============================================================
   MENU 特典ブロック
   ============================================================ */
.bl_menu_benefit {
  background: var(--color_black);
  border: solid 6px var(--color_gold);
  display: grid;
  grid-template-columns: 50% 1fr;
  margin-bottom: 110px;
}

.bl_menu_benefit_head {
  display: flex;
  align-items: center;
  padding: 45px 0;
  padding-left: 10%;
}

.bl_menu_benefit_head img {
  width: 43px;
  flex-shrink: 0;
  margin-right: 1em;
}

.bl_menu_benefit_ttl {
  font-size: 30px;
  font-weight: 600;
  color: var(--color_white);
  line-height: 1.5;
}

.bl_menu_benefit_list {
  padding: 50px 10%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.bl_menu_benefit_list li {
  font-size: 18px;
  color: var(--color_white);
  line-height: 1.6;
}

.bl_menu_benefit_list li::before {
  content: "■ ";
  color: var(--color_gold);
  font-size: 18px;
}

.bl_menu_benefit_list br {
  display: none;
}

/* ============================================================
   MENU 比較表
   ============================================================ */
.bl_menu_table_ttl {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.bl_menu_table_ttl::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: var(--color_gold);
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.bl_menu_table_wrap {
  max-width: 910px;
  margin: 0 auto;
  overflow-x: auto;
}

.bl_menu_table {
  border-collapse: collapse;
  font-size: 16px;
  max-width: 910px;
  width: 100%;
  margin: 0 auto;
}

.bl_menu_table th,
.bl_menu_table td {
  padding: 20px 0;
  text-align: center;
  border: 4px solid var(--color_white);
}

.bl_menu_table br {
  display: none;
}

.bl_menu_table thead th {
  font-size: 20px;
  font-weight: 500;
  color: var(--color_white);
}

.bl_menu_table thead th:first-child {
  background: transparent;
}

.bl_menu_table thead th.is_black {
  background: var(--color_black);
}
.bl_menu_table thead th.is_red {
  background: var(--color_red);
}
.bl_menu_table thead th.is_gold {
  background: var(--color_gold);
  color: var(--color_black);
}

.bl_menu_table_label {
  text-align: center;
}

.bl_menu_table tbody tr:nth-child(odd) td {
  background: var(--color_off_white);
}

.bl_menu_table tbody tr:nth-child(even) td {
  background: var(--color_white);
}

.bl_menu_table_note {
  border-top: solid 1px #ebebe5;
  text-align: right;
  font-size: 12px;
  font-weight: 500;
  max-width: 910px;
  margin: 0 auto;
  padding-top: 10px;
}

/* ============================================================
   MENU レスポンシブ
   ============================================================ */
@media screen and (max-width: 768px) {
  .bl_menu_plan {
    grid-template-columns: 1fr;
  }

  .bl_menu_benefit {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  /* ============================================================
   MENU
   ============================================================ */
  .sec_menu {
    padding: 60px 0;
    overflow: hidden;
  }

  .sec_menu .ly_inner {
    padding: 0;
  }

  /* ============================================================
   MENU プラン
   ============================================================ */
  .bl_menu_plans {
    gap: 25px;
    margin-bottom: 25px;
  }

  /* 左側カラーエリア */
  .bl_menu_plan_img {
    min-height: 90px;
  }

  .bl_menu_plan_name {
    font-size: 22px;
    padding: 0 20px;
  }

  .bl_menu_plan_name span {
    font-size: 16px;
  }

  /* 右側コンテンツエリア */
  .bl_menu_plan_body {
    padding: 25px 20px;
  }

  .bl_menu_plan_catch {
    font-size: 20px;
    margin-bottom: 15px;
    padding: 0 20px;
  }

  .bl_menu_plan_detail {
    padding: 0 20px;
  }

  .bl_menu_plan_detail_row {
    display: grid;
    grid-template-columns: 1fr;
    line-height: 1.5;
    gap: 0;
  }

  .bl_menu_plan_detail_row:has(.bl_menu_plan_num) dt {
    padding-top: 0;
  }

  /* サービスリスト */
  .bl_menu_plan_service {
    margin-bottom: 0;
  }

  /* ============================================================
   MENU 特典ブロック
   ============================================================ */
  .bl_menu_benefit {
    margin: 0 20px 50px;
  }

  .bl_menu_benefit_head {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 25px 30px;
  }

  .bl_menu_benefit_head img {
    width: 33px;
    margin-right: 0;
  }

  .bl_menu_benefit_ttl {
    font-size: 22px;
  }

  .bl_menu_benefit_list {
    padding: 0 30px 40px;
    gap: 15px;
  }

  .bl_menu_benefit_list li {
    text-indent: -1.3em;
    padding-left: 1.3em;
  }

  .bl_menu_benefit_list br {
    display: block;
  }

  /* ============================================================
   MENU 比較表
   ============================================================ */
  .bl_menu_table_ttl {
    font-size: 24px;
    margin-bottom: 50px;
  }

  .bl_menu_table_ttl::after {
    width: 54px;
    bottom: -15px;
  }

  .bl_menu_table_wrap {
    max-width: inherit;
    width: calc(100% - 20px);
    margin-left: 20px;
  }

  .bl_menu_table {
    width: 581px;
    border-collapse: collapse;
    font-size: 16px;
    max-width: inherit;
    margin: 0 auto;
  }

  .bl_menu_table th,
  .bl_menu_table td {
    padding: 10px 0;
    text-align: center;
    border: 4px solid var(--color_white);
    line-height: 1.5;
  }

  .bl_menu_table br {
    display: block;
  }

  .bl_menu_table thead th {
    font-size: 18px;
    padding: 20px 10px;
  }

  .bl_menu_table thead th:first-child {
    background: transparent;
  }

  .bl_menu_table thead td:first-child {
    font-size: 14px;
  }

  .bl_menu_table_note {
    font-size: 14px;
    margin-right: 20px;
  }
}
/* ============================================================
   MACHINES
   ============================================================ */
.sec_machines {
  background: var(--color_black);
  padding: 115px 0 105px;
}

.sec_machines .bl_sec_ttl_ja {
  color: var(--color_white);
}

/* ============================================================
   MACHINES タイトルエリア
   ============================================================ */
.bl_machines_ttl_wrap {
  padding: 0 0 60px;
}

.bl_machines_ttl_wrap .ly_inner {
  padding: 0 40px;
}

.bl_machines_lead {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--color_white);
  line-height: 2;
}

.bl_machines_lead .strong {
  font-size: 18px;
  color: var(--color_gold);
}

/* ============================================================
   MACHINES 写真
   ============================================================ */
.bl_machines_imgs {
}

.bl_machines_imgs img {
  width: 100%;
  display: block;
}

/* ============================================================
   MACHINES 特徴グリッド
   ============================================================ */
.bl_machines_features {
}

.bl_machines_features .ly_inner {
  max-width: 1240px;
  margin: 0 auto;
  transform: translateY(-35px);
}

.bl_machines_feature_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 60px;
  row-gap: 80px;
}

.bl_machines_feature_item {
  background: var(--color_white);
  padding: 30px;
  position: relative;
}

.bl_machines_feature_num {
  font-family: var(--font_en);
  font-size: 70px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color_gold);
  line-height: 1;
  margin-bottom: 12px;
  position: absolute;
  top: -35px;
  left: 30px;
}

.bl_machines_feature_ttl {
  font-size: 24px;
  font-weight: 600;
  color: var(--color_gold);
  margin-bottom: 10px;
  line-height: 1.5;
}

.bl_machines_feature_txt {
  font-size: 16px;
  font-weight: 500;
  color: var(--color_black);
  line-height: 1.9;
  width: 86%;
}

/* ============================================================
   MACHINES 締めテキスト
   ============================================================ */
.bl_machines_outro {
  text-align: center;
}

.bl_machines_outro p {
  font-size: 16px;
  color: var(--color_white);
  line-height: 2;
  font-weight: 600;
}

.bl_machines_outro em {
  font-size: 18px;
  font-style: normal;
  color: var(--color_gold);
}

/* ============================================================
   MACHINES レスポンシブ
   ============================================================ */
@media screen and (max-width: 767px) {
  /* ============================================================
   MACHINES
   ============================================================ */
  .sec_machines {
    background: var(--color_black);
    padding: 80px 0;
  }

  /* ============================================================
   MACHINES タイトルエリア
   ============================================================ */
  .bl_machines_ttl_wrap {
    padding: 0 0 40px;
  }

  .bl_machines_ttl_wrap .ly_inner {
    padding: 0 20px;
  }

  .bl_machines_lead {
    text-align: left;
    margin: 0 20px;
  }

  /* ============================================================
   MACHINES 特徴グリッド
   ============================================================ */
  .bl_machines_features {
  }

  .bl_machines_features .ly_inner {
    margin: 0 20px;
    transform: translateY(-60px);
    width: calc(100% - 40px);
  }

  .bl_machines_feature_grid {
    grid-template-columns: 1fr;
    gap: 40px 0;
  }

  .bl_machines_feature_item {
    padding: 30px 20px 15px;
  }

  .bl_machines_feature_num {
    font-size: 57px;
    margin-bottom: 0;
    position: absolute;
    top: -30px;
    left: 20px;
  }

  .bl_machines_feature_ttl {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .bl_machines_feature_txt {
    width: 100%;
  }

  /* ============================================================
   MACHINES 締めテキスト
   ============================================================ */
  .bl_machines_outro {
    text-align: left;
    margin: 0 20px;
  }
}
/* ============================================================
   PROFILE
   ============================================================ */
.sec_profile {
  position: relative;
  overflow: hidden;
  padding: 140px 0 0;
}

.sec_profile .ly_inner {
  max-width: 1240px;
  margin: 0 auto;
  padding-bottom: 140px;
}

/* 背景画像 */
.bl_profile_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bl_profile_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 人物PNG */
.bl_profile_person {
  position: absolute;
  bottom: 0;
  left: -12%;
  width: 66%;
  max-width: 818px;
  z-index: 1;
  pointer-events: none;
}

.bl_profile_person.is_sp {
  display: none;
}

.bl_profile_person img {
  width: 100%;
  height: auto;
  display: block;
}

/* コンテンツ */
.bl_profile_inner {
  position: relative;
  z-index: 2;
}

.bl_profile_body {
  width: 55%;
  margin-left: auto;
}

/* キャッチコピー */
.bl_profile_catch {
  font-size: 32px;
  font-weight: 700;
  color: var(--color_gold);
  line-height: 1.7;
  margin-bottom: 40px;
}

.bl_profile_catch.is_sp {
  display: none;
}

/* 本文 */
.bl_profile_txt {
  margin-bottom: 70px;
}

.bl_profile_txt p {
  font-size: 16px;
  color: var(--color_white);
  line-height: 2;
}

/* プロフィール詳細 */
.bl_profile_detail_ttl {
  font-family: var(--font_en);
  font-size: 32px;
  font-weight: 500;
  color: var(--color_gold);
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.bl_profile_detail_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.bl_profile_detail_list li {
  font-size: 16px;
  color: var(--color_white);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.bl_profile_detail_list li::before {
  content: "■ ";
  color: var(--color_gold);
  font-size: 16px;
}

/* ============================================================
   PROFILE レスポンシブ
   ============================================================ */
@media screen and (max-width: 768px) {
  .bl_profile_body {
    width: 90%;
    margin: 0 auto;
  }
  /* プロフィール詳細 */
  .bl_profile_detail {
    margin-left: 40%;
  }
}
@media screen and (max-width: 767px) {
  /* ============================================================
   PROFILE
   ============================================================ */
  .sec_profile {
    padding: 50px 0 0;
  }

  .sec_profile .ly_inner {
    padding: 0 20px;
  }

  .bl_profile_person.is_pc {
    display: none;
  }

  .bl_profile_person.is_sp {
    display: block;
  }

  .bl_profile_body {
    width: calc(100% - 40px);
    margin: 0 20px;
  }

  /* キャッチコピー */
  .bl_profile_catch {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .bl_profile_catch .is_sp {
    display: block;
  }

  /* 本文 */
  .bl_profile_txt {
    margin-bottom: 50px;
  }

  .bl_profile_txt p {
    font-size: 14px;
  }

  /* プロフィール詳細 */
  .bl_profile_detail {
    height: 124vw;
    margin-left: 45.86%;
  }

  /* 人物PNG */
  .bl_profile_person {
    position: absolute;
    bottom: 0;
    left: -48.8vw;
    width: 128vw;
  }

  .bl_profile_detail_ttl {
    font-size: 22px;
  }

  .bl_profile_detail_list {
    gap: 0;
  }

  .bl_profile_detail_list li {
    font-size: 14px;
    padding-left: 0;
  }

  .bl_profile_detail_list li::before {
    content: "■ ";
    color: var(--color_gold);
    font-size: 16px;
  }
}
/* ============================================================
   CONTACT
   ============================================================ */
.sec_contact {
  background: var(--color_white);
  padding: 100px 0 90px;
}

.sec_contact .ly_inner {
  padding: 0 40px;
}

.sec_contact .bl_contact_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #76611a 0%, #d8c16b 100%);
  color: var(--color_white);
  font-size: 22px;
  font-weight: 700;
  padding: 35px 50px;
  max-width: 480px;
  margin: 0 auto;
}

.sec_contact .bl_contact_btn img {
  width: 26px;
}

/* ============================================================
   CONTACT レスポンシブ
   ============================================================ */
@media screen and (max-width: 767px) {
  /* ============================================================
   CONTACT
   ============================================================ */
  .sec_contact {
    padding: 70px 0 80px;
  }

  .sec_contact .ly_inner {
    padding: 0 20px;
  }

  .sec_contact .bl_contact_btn {
    padding: 25px 50px;
    max-width: 480px;
    width: 100%;
  }

  .sec_contact .bl_contact_btn img {
    width: 26px;
  }
}
