@charset "UTF-8";

/* =========================================================
   Manufacture
   Web Site Production Service
   ========================================================= */

/*
 * CIN GROUP Brand Colors
 *
 * Yellow : #FFEB51
 * Coral  : #FCC929
 * green  : #B6D56A
 * Blue   : #70BBE9
 * red    : #EC685C
 * Pink   : #ef91b2
 * Perple : #C5A4CC
 * Dark   : #27313b
 */

/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */
.corporate_hero {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.corporate_hero_inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: 60px;
  width: min(1320px, calc(100% - 80px));
  min-height: 78vh;
  margin: 90px auto 0;
  padding: 20px 0;
}


/* ---------------------------------------------------------
   Left Content
   --------------------------------------------------------- */

.corporate_hero_content {
  position: relative;
  z-index: 5;
  padding-left: 0;
}
.corporate_hero_title {
  margin: 0;

  color: #27313b;
  font-size: clamp(42px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.corporate_hero_lead {
  margin: 30px 0 0;
  color: #27313b;
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.corporate_hero_text {
  max-width: 600px;
  margin: 24px 0 0;

  color: #626d76;
  font-size: 15px;
  line-height: 2;
}


/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */
.corporate_hero_cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.corporate_hero_button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 245px;
  min-height: 70px;
  padding: 13px 17px 13px 24px;
  border-radius: 40px;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}

.corporate_hero_button:hover {
  transform: translateY(-3px);
}

/* メインCTA */
.corporate_hero_button_main {
  color: #fff;
  background: #EC685C;
  box-shadow:
    0 14px 28px rgba(239, 100, 105, 0.19);
}

.corporate_hero_button_main:hover {
  color: #fff;
  box-shadow:
    0 18px 34px rgba(239, 100, 105, 0.27);
}


/* サブCTA */
.corporate_hero_button_sub {
  color: #fff;
  background: #70BBE9;
  border: 1px solid #70BBE9;
  box-shadow:
    0 8px 20px rgba(37, 58, 71, 0.04);
}

.corporate_hero_button_sub:hover {
  color: #fff;
  border-color: #70BBE9;
  box-shadow:
    0 12px 26px rgba(239, 145, 178, 0.12);
}

.corporate_hero_button_text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.corporate_hero_button_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 14px;
}

/* メイン */
.corporate_hero_button_main .corporate_hero_button_arrow {
  color: #EC685C;
  background: #fff;
}

/* サブ */
.corporate_hero_button_sub .corporate_hero_button_arrow {
  color: #70BBE9;
  background: #fff;
}


/* ---------------------------------------------------------
   Right Visual
   --------------------------------------------------------- */

.corporate_hero_visual {
  position: relative;
  min-height: 560px;
}


/*
 * 従来のSEO / UIUX / MARKETINGラベルは非表示
 */
.corporate_hero_visual_badge {
  display: none;
}


/* 写真全体 */
.corporate_hero_mock {
  position: absolute;

  top: 50%;
  left: 0;

  width: calc(100% + 70px);
  height: 520px;

  transform: translateY(-50%);
}


/*
 * ブラウザの枠を写真コンテナとして再利用
 */
.corporate_hero_browser {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border: none;
  border-radius:90px 0 0 0;
  background: #e9edf0;
  box-shadow: 0 30px 70px rgba(36, 55, 68, 0.12);
  transform: none;
}


/* ブラウザ上部は不要 */
.corporate_hero_browser_header {
  display: none;
}


/*
 * ここに実写写真
 */
.corporate_hero_browser_body {
  position: relative;

  width: 100%;
  height: 100%;
  min-height: 0;

  padding: 0;

  background-image:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02),
      rgba(0, 0, 0, 0.02)
    ),
    url("../img/manufacture/hero.webp");

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


/*
 * 既存の疑似WebサイトUIを非表示
 */
.corporate_hero_mock_nav,
.corporate_hero_mock_mv,
.corporate_hero_mock_cards {
  display: none;
}


/*
 * スマホモックも今回のHEROでは非表示
 */
.corporate_hero_phone {
  display: none;
}


/* ---------------------------------------------------------
   CIN GROUP Graphic
   --------------------------------------------------------- */

/*
 * Yellow
 */
.corporate_hero_mock::before {
  content: "";

  position: absolute;
  z-index: 5;

  left: -48px;
  bottom: 115px;

  width: 128px;
  height: 128px;

  border-radius: 50%;

  background: #FCC929;

  box-shadow:
    0 12px 30px rgba(249, 200, 34, 0.18);
}


/*
 * Coral
 */
.corporate_hero_mock::after {
  content: "";
  position: absolute;
  z-index: 6;
  left: 34px;
  bottom: 50px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #EC685C;
  box-shadow:
    0 12px 30px rgba(240, 93, 98, 0.16);
}


/*
 * Blue Circle
 */
.corporate_hero_visual::before {
  content: "";
  position: absolute;
  z-index: 8;
  left: 111px;
  bottom: 92px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #70BBE9;
}


/*
 * Pink Bar
 */
.corporate_hero_visual::after {
  content: "";

  position: absolute;
  z-index: 7;

  left: -18px;
  bottom: 0;

  width: 250px;
  height: 28px;

  border-radius: 30px;

  background:
    linear-gradient(
      90deg,
      #ee829f 0%,
      #ef91b2 45%,
      #f4c1df 100%
    );
}

/* ---------------------------------------------------------
   Tablet
   --------------------------------------------------------- */

@media screen and (max-width: 1100px) {

  .corporate_hero_inner {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(400px, 0.9fr);

    gap: 35px;

    width: calc(100% - 50px);
  }

  .corporate_hero_title {
    font-size: 30px;
  }

  .corporate_hero_visual {
    min-height: 470px;
  }

  .corporate_hero_mock {
    height: 440px;
  }

  .corporate_hero_mock::before {
    width: 100px;
    height: 100px;
  }

  .corporate_hero_mock::after {
    width: 70px;
    height: 70px;
  }

}


/* ---------------------------------------------------------
   Smartphone
   --------------------------------------------------------- */

@media screen and (max-width: 767px) {

  .corporate_hero_inner {
    display: flex;
    flex-direction: column;
    gap: 42px;
    width: calc(100% - 36px);
    min-height: auto;
    padding: 55px 0 65px;
  }

  .corporate_hero_content {
    width: 100%;
    padding: 0;
  }
  .corporate_hero_title {
    font-size: 30px;
    line-height: 1.4;
  }

  .corporate_hero_lead {
    margin-top: 18px;

    font-size: 20px;
    line-height: 1.7;
  }

  .corporate_hero_sp_break {
    display: none;
  }

  .corporate_hero_text {
    margin-top: 18px;

    font-size: 16px;
    line-height: 1.9;
  }


  /* CTA */

  .corporate_hero_cta {
    flex-direction: column;

    gap: 11px;

    margin-top: 28px;
  }

  .corporate_hero_button {
    width: 100%;
    min-width: 0;
    min-height: 68px;

    padding: 12px 14px 12px 20px;
  }


  /* Visual */

  .corporate_hero_visual {
    width: calc(100% + 18px);
    min-height: 340px;

    margin-right: -18px;
  }

  .corporate_hero_mock {
    top: 0;
    left: 0;

    width: 100%;
    height: 330px;

    transform: none;
  }

  .corporate_hero_browser_body {
    background-position: center;
  }


  /* CIN graphics */

  .corporate_hero_mock::before {
    left: -20px;
    bottom: 55px;

    width: 78px;
    height: 78px;
  }

  .corporate_hero_mock::after {
    left: 32px;
    bottom: 22px;

    width: 55px;
    height: 55px;
  }

  .corporate_hero_visual::before {
    left: 76px;
    bottom: 51px;

    width: 32px;
    height: 32px;
  }

  .corporate_hero_visual::after {
    left: -8px;
    bottom: -10px;

    width: 160px;
    height: 20px;
  }

}



/* ---------------------------------------------------------
   Corporate Problem
   --------------------------------------------------------- */

.corporate_problem {
  position: relative;
  padding: 100px 0 110px;
  background: #f5f9fc;
}

.corporate_problem_ttl {
  margin: 0 0 48px;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
  color: #1a1a1a;
}

.corporate_problem_list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  margin: 0 auto;
}

.corporate_problem_item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 84px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 72, 115, 0.06);
}

.corporate_problem_txt {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
  color: #333;
}

.corporate_problem_arrow {
  position: relative;
  width: 64px;
  height: 52px;
  margin: 48px auto 42px;
}

.corporate_problem_arrow span {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 64px;
  background: #0186d1;
  transform: translateX(-50%);
}

.corporate_problem_arrow span::before,
.corporate_problem_arrow span::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 34px;
  height: 3px;
  background: #0186d1;
}

.corporate_problem_arrow span::before {
  left: 50%;
  transform: rotate(45deg);
  transform-origin: left center;
}

.corporate_problem_arrow span::after {
  right: 50%;
  transform: rotate(-45deg);
  transform-origin: right center;
}

.corporate_solution {
  max-width: 900px;
  margin: 0 auto;
  padding: 52px 64px;
  text-align: center;
}

.corporate_solution_ttl {
  margin: 0 0 24px;
  font-size: 36px;
  line-height: 1.5;
  font-weight: 600;
  color: #222;
}

.corporate_solution_ttl b {
  color: #0186d1;
  font-weight: 700;
}

.corporate_solution_txt {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 2;
  color: #444;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 767px) {

  .corporate_problem {
    padding: 64px 0 72px;
  }

  .corporate_problem_ttl {
    margin-bottom: 32px;
    font-size: 26px;
    line-height: 1.55;
  }

  .corporate_problem_list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .corporate_problem_item {
    gap: 12px;
    min-height: auto;
    padding: 18px 16px;
  }
  .corporate_problem_txt {
    font-size: 16px;
    line-height: 1.7;
  }
  .corporate_problem_arrow {
    margin: 36px auto 30px;
  }
  .corporate_solution {
    padding: 36px 20px;
  }
  .corporate_solution_ttl {
    margin-bottom: 20px;
    font-size: 24px;
  }
  .corporate_solution_txt {
    font-size: 16px;
    line-height: 1.9;
    text-align: left;
  }
  .sp-only {
    display: block;
  }
}



/* =========================================================
   Corporate Site - Common
   ========================================================= */
.corporate_section_head {
  max-width: 1024px;
  margin: 0 auto 60px;
  text-align: center;
}

.corporate_section_en {
  margin: 0 0 12px;
  color: #0186d1;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
}

.corporate_section_ttl {
  margin: 0;
  color: #172333;
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .03em;
}

.corporate_section_lead {
  width: 100%;
  margin: 28px auto 0;
  color: #4c5661;
  font-size: 16px;
  line-height: 2;
  text-align: center;
}

.corporate_site .l_inner {
  width: 100%;
  max-width: 1024px;
  margin: auto;
}

@media screen and (max-width: 1024px) {
  .corporate_site .l_inner {
    padding: 0 5%;
  }
}



/* =========================================================
   Service
   ========================================================= */

.corporate_service {
  padding: 110px 0;
}

.corporate_service_list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #dce5eb;
}

.corporate_service_item {
  display: flex;
  gap: 24px;
  padding: 38px 34px;
  border-bottom: 1px solid #dce5eb;
}

.corporate_service_item:nth-child(odd) {
  border-right: 1px solid #dce5eb;
}

.corporate_service_ttl {
  font-size: 22px;
  margin: 0 0 14px;
  color: #172333;
  line-height: 1.5;
}

.corporate_service_ttl .service_number {
  font-size: 32px;
  padding-right: 4px;
  color: #0186d1;
}

.corporate_service_txt {
  margin: 0;
  color: #4c5661;
  font-size: 16px;
  line-height: 1.9;
}


/* =========================================================
   Case Study
   ========================================================= */

.corporate_case {
  padding: 110px 0;
  background: #f5f9fc;
}

.corporate_case_item {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 16px 50px rgba(27, 65, 86, .08);
}

.corporate_case_image {
  min-height: 500px;
  background: #e6eef3;
}

.corporate_case_image_dummy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #8a9ba6;
  font-weight: 700;
  letter-spacing: .1em;
}

.corporate_case_content {
  padding: 48px;
}

.corporate_case_company {
  margin: 0 0 26px;
  color: #172333;
  font-size: 26px;
  font-weight: 700;
}

.corporate_case_meta {
  margin: 0 0 34px;
}

.corporate_case_meta > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 12px 0;
  border-bottom: 1px solid #e4eaee;
}

.corporate_case_meta dt {
  color: #71808a;
  font-size: 13px;
}

.corporate_case_meta dd {
  margin: 0;
  color: #333;
  font-size: 14px;
}

.corporate_case_story_item {
  padding: 20px;
  background: #f7fafc;
}

.corporate_case_story_label {
  display: block;
  margin-bottom: 7px;
  color: #0186d1;
  font-size: 12px;
  font-weight: 700;
}

.corporate_case_story_item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.corporate_case_story_arrow {
  padding: 5px;
  color: #0186d1;
  text-align: center;
}


/* =========================================================
   Reason
   ========================================================= */

.corporate_reason {
  padding: 110px 0;
}

.corporate_reason_list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.corporate_reason_item {
  position: relative;
  padding: 42px 38px;
  background: #fff;
  border: 1px solid #dce7ed;
  border-radius: 8px;
}

.corporate_reason_image{
  margin-bottom: 16px;
}

/* 最後のカードのみ横長 */
.corporate_reason_item_wide {
  grid-column: 1 / -1;

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
  align-items: center;
  gap: 50px;

  padding: 0;
  overflow: hidden;
}

/* 左：テキスト */
.corporate_reason_item_wide .corporate_reason_content {
  padding: 48px 0 48px 48px;
}

.corporate_reason_item_wide .corporate_reason_ttl {
  margin-top: 0;
}

/* 右：画像 */
.corporate_reason_item_wide .corporate_reason_image {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.corporate_reason_item_wide .corporate_reason_image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.corporate_reason_ttl {
  margin: 0 0 20px;
  color: #172333;
  font-size: 23px;
  line-height: 1.6;
}

.corporate_reason_txt {
  margin: 0;
  color: #4c5661;
  font-size: 15px;
  line-height: 1.9;
}

/* Smartphone */
@media screen and (max-width: 767px) {

  .corporate_reason_item_wide {
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
  }

  .corporate_reason_item_wide .corporate_reason_content {
    width: 100%;
    padding: 28px 22px 32px;
  }

  .corporate_reason_item_wide .corporate_reason_image {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

}



/* =========================================================
   Scope
   ========================================================= */
.corporate_scope {
  padding: 110px 0;
  background: #eff8fd;
}

.corporate_scope_list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin: 0 auto 42px;
  padding: 0;
  list-style: none;
}

.corporate_scope_list li {
  position: relative;
  padding: 18px 22px 18px 52px;
  background: #fff;
  color: #172333;
  font-size: 16x;
  font-weight: 600;
}

.corporate_scope_list li::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 22px;
  color: #0186d1;
  font-weight: 700;
  transform: translateY(-50%);
}

.corporate_scope_txt {
  width: 100%;
  margin: 0 auto;
  color: #4c5661;
  font-size: 16px;
  line-height: 2;
}


/* =========================================================
   Purpose
   ========================================================= */
.corporate_purpose {
  padding: 110px 0;
}

.corporate_purpose_list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin: 0 auto;
}

.corporate_purpose_item {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  overflow: hidden;
  min-height: 250px;
  background: #fff;
  border: 1px solid #edf0f3;
}

.corporate_purpose_content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px 46px 40px;
}

/* Heading */
.corporate_purpose_item h3 {
  margin: 0 0 18px;

  color: #27313b;

  font-size: 25px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .01em;
}


/* Description */
.corporate_purpose_item p {
  margin: 0;

  color: #596872;

  font-size: 16px;
  line-height: 1.95;
}


/* Image */
.corporate_purpose_image {
  position: relative;
  overflow: hidden;
  min-height: 250px;
}

.corporate_purpose_image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 写真とテキストの境界を少し柔らかく */
.corporate_purpose_image::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  width: 80px;
  background: linear-gradient(
    90deg,
    #fff 0%,
    #fff 12%,
    rgba(255, 255, 255, .96) 28%,
    rgba(255, 255, 255, .78) 48%,
    rgba(255, 255, 255, .42) 70%,
    rgba(255, 255, 255, .12) 88%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}


/* CIN GROUPの色味を各カードで少し変える */

.corporate_purpose_item:nth-child(1) .corporate_purpose_num {
  color: #ef6573;
  background: #fff0f2;
}

.corporate_purpose_item:nth-child(2) .corporate_purpose_num {
  color: #3ca9df;
  background: #eef8fd;
}

.corporate_purpose_item:nth-child(3) .corporate_purpose_num {
  color: #e7a71f;
  background: #fff8e6;
}

.corporate_purpose_item:nth-child(4) .corporate_purpose_num {
  color: #bc75b1;
  background: #faf0f8;
}

.corporate_purpose_item:nth-child(5) .corporate_purpose_num {
  color: #63a65b;
  background: #f0f8ef;
}


/* ---------------------------------------------------------
   Tablet
   --------------------------------------------------------- */

@media screen and (max-width: 1024px) {

  .corporate_purpose_item {
    grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr);
  }

  .corporate_purpose_content {
    padding: 34px 0;
  }

  .corporate_purpose_item h3 {
    font-size: 22px;
  }

}


/* ---------------------------------------------------------
   Smartphone
   --------------------------------------------------------- */

@media screen and (max-width: 767px) {

  .corporate_purpose {
    padding: 70px 0;
  }

  .corporate_purpose_list {
    gap: 18px;
  }

  .corporate_purpose_item {
    display: flex;
    flex-direction: column-reverse;

    min-height: 0;

    border-radius: 14px;
  }

  .corporate_purpose_image {
    min-height: 190px;
    aspect-ratio: 16 / 9;
  }

  .corporate_purpose_image::before {
    display: none;
  }

  .corporate_purpose_content {
    padding: 26px 0;
  }

  .corporate_purpose_num {
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
  }

  .corporate_purpose_item h3 {
    margin-bottom: 14px;

    font-size: 20px;
    line-height: 1.55;
  }

  .corporate_purpose_item p {
    font-size: 16px;
    line-height: 1.9;
  }

}



/* =========================================================
   Point
   ========================================================= */
.corporate_point {
  padding: 110px 0;
  background: #f6f8fa;
}

.corporate_point_list {
  width: 100%;
  margin: 0 auto;
}

.corporate_point_item {
  display: block;
  padding: 34px 0;
  border-top: 1px solid #d9e0e5;
}

.corporate_point_item:last-child {
  border-bottom: 1px solid #d9e0e5;
}

.corporate_point_item h3 {
  font-size: 22px;
  margin: 0;
  margin-bottom: 8px;
  color: #172333;
  line-height: 1.65;
}

.corporate_point_item span {
  font-size: 18px;
  font-weight: bold;
}

.corporate_point_item:nth-of-type(1) span, 
.corporate_point_item:nth-of-type(2) span{
  color: #FCC929;
}

.corporate_point_item:nth-of-type(3) span, 
.corporate_point_item:nth-of-type(4) span{
  color: #EC685C;
}

.corporate_point_item:nth-of-type(5) span, 
.corporate_point_item:nth-of-type(6) span{
  color: #0186d1;
}

.corporate_point_item:nth-of-type(7) span, 
.corporate_point_item:nth-of-type(8) span{
  color: #B6D56A;
}

.corporate_point_item p {
  margin: 0;
  color: #4c5661;
  font-size: 16px;
  line-height: 1.9;
}


/* =========================================================
   Sitemap / Contents
   ========================================================= */

.corporate_structure {
  padding: 110px 0;
}

.corporate_contents_list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 50px;
}

.corporate_contents_list article {
  padding: 28px 0;
  border-top: 1px solid #dce4e9;
}

.corporate_contents_list article:nth-of-type(7), 
.corporate_contents_list article:nth-of-type(8) {
  border-bottom: 1px solid #dce4e9;
}

.corporate_contents_list h3 {
  margin: 0 0 12px;
  color: #172333;
  font-size: 19px;
}

.corporate_contents_list p {
  margin: 0;
  color: #4c5661;
  font-size: 16px;
  line-height: 1.9;
}



/* =========================================================
   Flow
   ========================================================= */
.corporate_flow {
  padding: 110px 0;
  background: #f7f9fb;
}

.corporate_flow_inner{
  width: 100%;
  max-width: 1024px;
  margin: auto;
}

.corporate_flow_list {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.corporate_flow_item {
  position: relative;
  display: grid;
  grid-template-columns: 280px 94px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 0 0 50px;
}


/* STEP同士をつなぐ縦ライン */
.corporate_flow_item:not(:last-child)::before {
  content: "";
  position: absolute;
  z-index: 0;

  top: 70px;
  bottom: -140px;
  /*
   * 画像 280px
   * gap 30px
   * STEP 94pxの中央
   */
  left: 357px;

  width: 1px;
  background: #d3dce2;
}

.corporate_flow_image {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #e7edf1;
  box-shadow:
    0 12px 30px rgba(35, 61, 78, 0.08);
}

.corporate_flow_image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.corporate_flow_step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 94px;
  height: 78px;
  color: #fff;
  background: #4c5661;
}

.corporate_flow_step span {
  margin-bottom: 2px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.corporate_flow_step strong {
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}

.corporate_flow_body {
  padding: 8px 0;
}

.corporate_flow_body h3 {
  position: relative;
  margin: 0 0 15px;
  padding-bottom: 14px;
  color: #27313b;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}

.corporate_flow_body h3::after {
  content: "";

  position: absolute;
  bottom: 0;
  left: 0;

  width: 42px;
  height: 2px;

  background: #ef91b2;
}

.corporate_flow_body p {
  margin: 0;

  color: #596872;

  font-size: 16x;
  line-height: 1.95;
}

@media screen and (max-width: 1024px) {

  .corporate_flow_list {
    max-width: 900px;
  }

  .corporate_flow_item {
    grid-template-columns: 220px 80px minmax(0, 1fr);
    gap: 24px;
  }

  .corporate_flow_step {
    width: 80px;
    height: 80px;
  }

  .corporate_flow_item:not(:last-child)::before {
    top: 70px;
    left: 283px;
  }

}

@media screen and (max-width: 767px) {

  .corporate_flow {
    padding: 70px 0;
  }

  .corporate_flow_item {
    display: grid;

    grid-template-columns: 58px minmax(0, 1fr);
    gap: 0 16px;

    padding-bottom: 42px;
  }

  /*
   * SPではSTEPを左側のタイムラインとして表示
   */
  .corporate_flow_step {
    grid-column: 1;
    grid-row: 1 / 3;

    width: 58px;
    height: 58px;

    border-radius: 50%;
  }

  .corporate_flow_step span {
    font-size: 7px;
  }

  .corporate_flow_step strong {
    font-size: 18px;
  }

  .corporate_flow_item:not(:last-child)::before {
    top: 58px;
    bottom: 0;
    left: 28px;
  }

  /*
   * HTML上では画像が先ですが、
   * SPではSTEPの右側へ配置
   */
  .corporate_flow_image {
    grid-column: 2;
    grid-row: 1;

    margin-bottom: 20px;

    aspect-ratio: 16 / 9;
  }

  .corporate_flow_body {
    grid-column: 2;
    grid-row: 2;

    padding: 0;
  }

  .corporate_flow_body h3 {
    margin-bottom: 12px;
    padding-bottom: 11px;

    font-size: 19px;
  }

  .corporate_flow_body p {
    font-size: 16px;
    line-height: 1.9;
  }

}



/* =========================================================
   Price
   ========================================================= */

.corporate_price {
  padding: 110px 0;
}

.corporate_price_wrap {
  width: 100%;
  margin: 0 auto 30px;
  overflow-x: auto;
}

.corporate_price_table {
  width: 100%;
  border-collapse: collapse;
}

.corporate_price_table th,
.corporate_price_table td {
  padding: 22px 26px;
  border: 1px solid #dce4e9;
}

.corporate_price_table thead th {
  background: #172333;
  color: #fff;
  font-size: 14px;
}

.corporate_price_table tbody th {
  width: 60%;
  background: #f8fafb;
  color: #263641;
  font-size: 15px;
  text-align: left;
}

.corporate_price_table td {
  color: #4c5661;
  text-align: center;
}

.corporate_price_table td strong {
  color: #0186d1;
  font-size: 20px;
}

.corporate_price_note {
  width: 100%;
  margin: 0 auto;
  color: #6a747c;
  font-size: 13px;
  line-height: 1.9;
}


/* =========================================================
   FAQ
   ========================================================= */

.corporate_faq {
  padding: 110px 0;
  background: #ffffff;
}

.corporate_faq_inner{
  width: 100%;
  max-width: 1024px;
  margin: auto;
}

.corporate_faq_list {
  max-width: 1024px;
  margin: 0 auto;
}

.corporate_faq_item {
  background: #fff;
  border-bottom: 1px solid #dce5ea;
}

.corporate_faq_item:first-child {
  border-top: 1px solid #dce5ea;
}

.corporate_faq_item summary {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 26px 60px 26px 24px;
  color: #172333;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  cursor: pointer;
  list-style: none;
}

.corporate_faq_item summary::-webkit-details-marker {
  display: none;
}

.corporate_faq_item summary::before,
.corporate_faq_item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 26px;
  width: 16px;
  height: 2px;
  background: #0186d1;
}

.corporate_faq_item summary::after {
  transform: rotate(90deg);
  transition: transform .25s;
}

.corporate_faq_item[open] summary::after {
  transform: rotate(0);
}

.corporate_faq_q,
.corporate_faq_a {
  flex: 0 0 auto;
  color: #0186d1;
  font-size: 22px;
  font-weight: 700;
}

.corporate_faq_answer {
  display: flex;
  gap: 20px;
  padding: 0 24px 28px;
}

.corporate_faq_answer p {
  margin: 0;
  color: #4c5661;
  font-size: 16px;
  line-height: 1.9;
}


/* =========================================================
   CTA
   ========================================================= */
.corporate_cta {
  padding: 100px 0;
  background: #EDEFF1;
  color: #010101;
  text-align: center;
}

.corporate_cta_label {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  opacity: .8;
}

.corporate_cta_ttl {
  margin: 0;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.5;
}

.corporate_cta_txt {
  max-width: 760px;
  margin: 26px auto 0;
  font-size: 15px;
  line-height: 2;
}

.corporate_cta_btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.corporate_cta_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  min-height: 64px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  border-radius: 40px;
  color: #fff;
  background-color: #EC685C;
  transition: opacity .25s, transform .25s;
}

.corporate_cta_btn:hover {
  opacity: .88;
  transform: translateY(-2px);
}

.corporate_cta_btn_primary {
  background: #70BBE9;
  color: #fff;
}

.corporate_cta_btn_secondary {
  border: 1px solid #EC685C;
  color: #fff;
}

.corporate_cta_btn_primary:hover,
.corporate_cta_btn_secondary:hover {
  color: #fff;
}


/* =========================================================
   SP
   ========================================================= */

@media screen and (max-width: 767px) {

  .corporate_section_head {
    margin-bottom: 38px;
    text-align: left;
  }

  .corporate_section_ttl {
    font-size: 27px;
    line-height: 1.55;
  }

  .corporate_section_lead {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.9;
  }

  .corporate_service,
  .corporate_case,
  .corporate_reason,
  .corporate_scope,
  .corporate_purpose,
  .corporate_point,
  .corporate_structure,
  .corporate_flow,
  .corporate_price,
  .corporate_faq {
    padding: 70px 0;
  }

  /* service */

  .corporate_service_list {
    display: block;
  }

  .corporate_service_item {
    gap: 16px;
    padding: 26px 0;
    border-right: 0 !important;
  }

  .corporate_service_ttl {
    font-size: 19px;
  }

  .corporate_service_txt {
    font-size: 16px;
  }

  /* case */

  .corporate_case_item {
    display: block;
  }

  .corporate_case_image {
    min-height: 220px;
  }

  .corporate_case_content {
    padding: 26px 20px;
  }

  .corporate_case_company {
    font-size: 22px;
  }

  .corporate_case_meta > div {
    display: block;
  }

  .corporate_case_meta dt {
    margin-bottom: 5px;
  }

  /* reason */

  .corporate_reason_list {
    display: block;
  }

  .corporate_reason_item {
    margin-bottom: 16px;
    padding: 28px 22px;
  }

  .corporate_reason_ttl {
    font-size: 20px;
  }

  .corporate_reason_txt {
    font-size: 16px;
  }

  /* scope */

  .corporate_scope_list {
    display: block;
  }

  .corporate_scope_list li {
    margin-bottom: 8px;
    padding: 16px 16px 16px 46px;
    font-size: 16px;
  }

  .corporate_scope_txt {
    font-size: 16px;
  }

  /* purpose */

  .corporate_purpose_list {
    display: block;
  }

  .corporate_purpose_item {
    margin-bottom: 16px;
    padding: 28px 22px;
  }

  .corporate_purpose_item h3 {
    font-size: 19px;
  }

  .corporate_purpose_item p {
    font-size: 16px;
  }

  /* point */

  .corporate_point_item {
    display: block;
    padding: 26px 0;
  }

  .corporate_point_item > span {
    display: block;
    margin-bottom: 8px;
  }

  .corporate_point_item h3 {
    margin-bottom: 12px;
    font-size: 18px;
  }

  .corporate_point_item p {
    font-size: 16px;
  }

  /* sitemap */

  .corporate_sitemap {
    margin-bottom: 50px;
    padding: 28px 16px;
  }

  .corporate_sitemap_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .corporate_contents_list {
    display: block;
  }

  .corporate_contents_list article {
    padding: 22px 0;
  }

  .corporate_contents_list h3 {
    font-size: 18px;
  }

  .corporate_contents_list p {
    font-size: 16px;
  }

  /* flow */

  .corporate_flow_item {
    grid-template-columns: 72px 1fr;
    gap: 18px;
    padding-bottom: 34px;
  }

  .corporate_flow_step {
    width: 72px;
    height: 72px;
  }

  .corporate_flow_step strong {
    font-size: 20px;
  }

  .corporate_flow_item:not(:last-child)::before {
    top: 220px;
    bottom: -220px;
    left: 35px;
  }

  .corporate_flow_body h3 {
    font-size: 18px;
  }

  .corporate_flow_body p {
    font-size: 16px;
  }

  /* price */

  .corporate_price_table {
    min-width: 600px;
  }

  .corporate_price_table th,
  .corporate_price_table td {
    padding: 18px;
  }

  .corporate_price_note {
    font-size: 12px;
  }

  /* FAQ */

  .corporate_faq_item summary {
    gap: 12px;
    padding: 20px 50px 20px 14px;
    font-size: 16px;
  }

  .corporate_faq_item summary::before,
  .corporate_faq_item summary::after {
    right: 16px;
  }

  .corporate_faq_q,
  .corporate_faq_a {
    font-size: 18px;
  }

  .corporate_faq_answer {
    gap: 12px;
    padding: 0 14px 22px;
  }

  .corporate_faq_answer p {
    font-size: 16px;
  }

  /* CTA */

  .corporate_cta {
    padding: 70px 0;
  }

  .corporate_cta_ttl {
    font-size: 27px;
  }

  .corporate_cta_txt {
    font-size: 16px;
    text-align: left;
  }

  .corporate_cta_btns {
    display: block;
    margin-top: 30px;
  }

  .corporate_cta_btn {
    width: 100%;
  }

  .corporate_cta_btn + .corporate_cta_btn {
    margin-top: 10px;
  }

}



/* ========================================
service site
======================================== */
/* hero
-------------------------------- */
.service_site_hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 90% 50%,
            rgba(242, 239, 253, 0.9) 0,
            rgba(242, 239, 253, 0.35) 25%,
            rgba(255, 255, 255, 0) 48%
        ),
        #fff;
}

.service_site_hero_inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1180px, calc(100% - 80px));
    min-height: 720px;
    margin: 0 auto;
    padding: 80px 0 100px;
}

/* content
-------------------------------- */
.service_site_hero_content {
    position: relative;
    z-index: 5;
    width: 50%;
    max-width: 610px;
}

.service_site_hero_label {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;

    color: #e84c73;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.service_site_hero_label::before {
    display: block;
    width: 30px;
    height: 3px;
    background: #f6c632;
    content: "";
}

.service_site_hero_lead {
    margin: 0 0 5px;
    color: #13233d;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.6;
}

.service_site_hero_title {
    margin: 0 0 32px;
    color: #13233d;
    font-size: clamp(48px, 4vw, 60px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.02em;
}

.service_site_hero_copy {
    margin: 0 0 25px;
    color: #13233d;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.9;
}

.service_site_hero_text {
    max-width: 570px;
    margin: 0;
    color: #475569;
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
}


/* button
-------------------------------- */

.service_site_hero_button {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.service_site_hero_button a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    min-height: 58px;
    padding: 0 28px;
    border-radius: 100px;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.service_site_hero_button_primary {
    min-width: 300px;
    background: linear-gradient(
        100deg,
        #e84972 0%,
        #ed577e 55%,
        #f36a91 100%
    );
    color: #fff;
    box-shadow: 0 12px 30px rgba(232, 73, 114, 0.18);
}

.service_site_hero_button_secondary {
    min-width: 190px;
    border: 1px solid #e84c73;
    background: #fff;
    color: #e84c73;
}

.service_site_hero_button a:hover {
    transform: translateY(-3px);
}

.service_site_hero_button_primary:hover {
    box-shadow: 0 16px 35px rgba(232, 73, 114, 0.25);
}

.service_site_hero_button_secondary:hover {
    background: #fff5f8;
}

.service_site_hero_button_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}


/* visual
-------------------------------- */

.service_site_hero_visual {
    position: relative;
    width: 49%;
    min-height: 520px;
}

.service_site_hero_visual_main {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    width: 115%;
    transform: translate(-48%, -50%);
}

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

/* logo color decoration
-------------------------------- */
.service_site_hero_shape {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

/* yellow */
.service_site_hero_shape_yellow {
    top: 15px;
    right: 45px;

    width: 115px;
    height: 115px;

    border-radius: 50%;
    background: #fbc83e;
}

/* purple */
.service_site_hero_shape_purple {
    top: 75px;
    left: 80px;

    width: 190px;
    height: 28px;

    border-radius: 100px;
    background: #b99ad7;

    transform: rotate(1deg);
}

/* pink */
.service_site_hero_shape_pink {
    right: 100px;
    bottom: 55px;

    width: 180px;
    height: 26px;

    border-radius: 100px;
    background: #ef8dac;
}

/* blue */
.service_site_hero_shape_blue {
    right: 20px;
    bottom: 20px;

    width: 85px;
    height: 85px;

    border-radius: 50%;
    background: #54b7df;
}

/* background decoration
-------------------------------- */
.service_site_hero::after {
    position: absolute;
    z-index: 0;
    right: -170px;
    bottom: -180px;

    width: 480px;
    height: 480px;

    border-radius: 50%;
    background: rgba(192, 178, 226, 0.11);

    content: "";
}

/* scroll
-------------------------------- */
.service_site_hero_scroll {
    position: absolute;
    z-index: 5;
    bottom: 25px;
    left: 30px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.service_site_hero_scroll span {
    color: #8a94a3;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    writing-mode: vertical-rl;
}

.service_site_hero_scroll i {
    position: relative;
    width: 1px;
    height: 40px;
    overflow: hidden;
    background: #e1e5eb;
}

.service_site_hero_scroll i::after {
    position: absolute;
    top: -100%;
    left: 0;

    width: 100%;
    height: 100%;

    background: #e84c73;

    content: "";

    animation: service_site_scroll 2s infinite;
}

@keyframes service_site_scroll {

    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(200%);
    }

}


/* ========================================
responsive
======================================== */
@media screen and (max-width: 1024px) {

    .service_site_hero_inner {
        width: min(100% - 48px, 1180px);
    }

    .service_site_hero_title {
        font-size: 48px;
    }

    .service_site_hero_button {
        flex-direction: column;
        align-items: flex-start;
    }

    .service_site_hero_button a {
        width: 100%;
        max-width: 340px;
    }

}
@media screen and (max-width: 767px) {

    .service_site_hero_inner {
        display: block;
        width: calc(100% - 40px);
        min-height: auto;
        padding: 60px 0 80px;
    }

    .service_site_hero_content {
        width: 100%;
        max-width: none;
    }

    .service_site_hero_label {
        margin-bottom: 22px;
        font-size: 10px;
    }

    .service_site_hero_label::before {
        width: 22px;
    }

    .service_site_hero_lead {
        margin-bottom: 4px;
        font-size: 18px;
    }

    .service_site_hero_title {
        margin-bottom: 22px;
        font-size: 40px;
        line-height: 1.3;
    }

    .service_site_hero_copy {
        margin-bottom: 18px;
        font-size: 16px;
        line-height: 1.8;
    }

    .service_site_hero_text {
        font-size: 14px;
        line-height: 1.9;
    }

    .service_site_hero_button {
        gap: 12px;
        margin-top: 30px;
    }

    .service_site_hero_button a {
        width: 100%;
        max-width: none;
        min-width: 0;
        min-height: 56px;
        padding: 0 22px;
    }

    .service_site_hero_visual {
        width: 100%;
        min-height: 320px;
        margin-top: 35px;
    }

    .service_site_hero_visual_main {
        width: 110%;
    }

    .service_site_hero_shape_yellow {
        top: 5px;
        right: 10px;
        width: 70px;
        height: 70px;
    }

    .service_site_hero_shape_purple {
        top: 45px;
        left: 5px;
        width: 120px;
        height: 18px;
    }

    .service_site_hero_shape_pink {
        right: 65px;
        bottom: 35px;
        width: 110px;
        height: 18px;
    }

    .service_site_hero_shape_blue {
        right: 5px;
        bottom: 10px;
        width: 55px;
        height: 55px;
    }

    .service_site_hero_scroll {
        display: none;
    }

    .pc {
        display: none;
    }

}


/* ========================================
problem
======================================== */

.service_site_problem {
    position: relative;
    overflow: hidden;
    padding: 110px 0 120px;
    background: #fff;
}

.service_site_problem_inner {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 80px));
    margin: 0 auto;
}


/* heading
-------------------------------- */

.service_site_problem_heading {
    margin-bottom: 45px;
}

.service_site_problem_label {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 18px;

    color: #e84c73;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.service_site_problem_label::before {
    display: block;

    width: 30px;
    height: 3px;

    background: #f6c632;

    content: "";
}

.service_site_problem_title {
    margin: 0;

    color: #13233d;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.02em;
}


/* problem list
-------------------------------- */

.service_site_problem_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    border-top: 1px solid #e7eaf0;
    border-left: 1px solid #e7eaf0;

    background: #fff;

    box-shadow: 0 18px 50px rgba(27, 41, 67, 0.04);
}
.service_site_problem_item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 76px;
    padding: 20px 26px;
    border-right: 1px solid #e7eaf0;
    border-bottom: 1px solid #e7eaf0;
    background: #fff;
}
.service_site_problem_item p {
    margin: 0;

    color: #25344d;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
}


/* check icon
-------------------------------- */

.service_site_problem_check {
    position: relative;

    flex: 0 0 24px;

    width: 24px;
    height: 24px;

    border-radius: 6px;

    background: #fff0f4;
}

.service_site_problem_check::before {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 9px;
    height: 5px;

    border-left: 2px solid #e84c73;
    border-bottom: 2px solid #e84c73;

    content: "";

    transform:
        translate(-50%, -62%)
        rotate(-45deg);
}
.service_site_problem_arrow{
  margin: 64px 0;
  text-align: center;
}
.service_site_problem_arrow:before{
  content: "▼";
  font-size: 42px;
  color: #e84c73;

}

/* message
-------------------------------- */
.service_site_problem_message {
  text-align: center;
}
.service_site_problem_message p {
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    color: #475569;
    font-size: 18px;
    line-height: 2;
}

.service_site_problem_message p + p {
    margin-top: 12px;
}

.service_site_problem_message b {
    color: #13233d;
    font-weight: 700;

    background:
        linear-gradient(
            transparent 68%,
            rgba(246, 198, 50, 0.3) 68%
        );
}


/* decorative line */

.service_site_problem_message_deco {

}


/* background decoration
-------------------------------- */

.service_site_problem_shape {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.service_site_problem_shape_blue {
    right: 40px;
    bottom: 35px;

    width: 55px;
    height: 55px;

    background: rgba(84, 183, 223, 0.6);
}

.service_site_problem_shape_purple {
    right: 5px;
    bottom: 5px;

    width: 95px;
    height: 95px;

    border-radius: 48px 48px 0 48px;

    background: rgba(185, 154, 215, 0.18);
}


/* ========================================
responsive
======================================== */

@media screen and (max-width: 1024px) {

    .service_site_problem {
        padding: 90px 0 100px;
    }

    .service_site_problem_inner {
        width: min(100% - 48px, 1180px);
    }

    .service_site_problem_item {
        padding: 18px 20px;
    }

}


@media screen and (max-width: 767px) {

    .service_site_problem {
        padding: 70px 0 80px;
    }

    .service_site_problem_inner {
        width: calc(100% - 40px);
    }

    .service_site_problem_heading {
        margin-bottom: 30px;
    }

    .service_site_problem_label {
        margin-bottom: 14px;
        font-size: 10px;
    }

    .service_site_problem_label::before {
        width: 22px;
    }

    .service_site_problem_title {
        font-size: 27px;
        line-height: 1.5;
    }

    .service_site_problem_list {
        display: block;
    }

    .service_site_problem_item {
        min-height: auto;
        padding: 17px 16px;

        border-right: 1px solid #e7eaf0;
    }

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

    .service_site_problem_check {
        flex-basis: 22px;

        width: 22px;
        height: 22px;
    }

    .service_site_problem_message {
        margin-top: 32px;
        padding: 28px 24px 28px 30px;

        border-radius: 10px;
    }

    .service_site_problem_message p {
        font-size: 14px;
        line-height: 1.9;
    }

    .service_site_problem_message_deco {
        right: 15px;
        bottom: 15px;

        width: 70px;
        height: 10px;
    }

    .service_site_problem_shape_blue {
        right: 15px;
        bottom: 15px;

        width: 40px;
        height: 40px;
    }

    .service_site_problem_shape_purple {
        right: -10px;
        bottom: -10px;

        width: 70px;
        height: 70px;
    }

}


.ss_content {
    color: #475569;
    font-family: inherit;
}

.ss_content * {
    box-sizing: border-box;
}

.ss_section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
}

.ss_section:nth-child(even) {
    background: #f7f9fc;
}

.ss_inner {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 80px));
    margin: auto;
}

.ss_heading {
    max-width: 780px;
    margin-bottom: 50px;
}

.ss_heading.ss_center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.ss_heading h2 {
    margin: 14px 0 0;
    color: #13233d;
    font-size: clamp(32px, 3.6vw, 48px);
    line-height: 1.45;
    letter-spacing: .02em;
}

.ss_heading p, .ss_intro {
    margin: 24px 0 0;
    font-size: 16px;
    line-height: 2;
}

.ss_label {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: #e84c73;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .17em;
}

.ss_label:before {
    width: 28px;
    height: 3px;
    background: #f6c632;
    content: "";
}


/* ========================================
IMPORTANT
======================================== */
.ss_outcome{
    background: linear-gradient(100deg, #fff7f9, #f7fbff);
}


.ss_split {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 80px;
    align-items: start;
}

.ss_split .ss_heading {
    margin: 0;
}

.ss_note {
  font-size: 16px;
  line-height: 1.9;
}

.ss_journey {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 0;
    margin: 65px 0;
    list-style: none;
}

.ss_journey li {
    position: relative;
    display: grid;
    place-items: center;
    border: 1px solid #e7eaf0;
    padding: 10px;
    background: #fff;
    text-align: center;
}

.ss_journey li+li {
    border-left: 0;
}

.ss_journey li:not(:last-child):after {
    position: absolute;
    z-index: 2;
    right: -8px;
    width: 15px;
    height: 15px;
    border-top: 2px solid #e84c73;
    border-right: 2px solid #e84c73;
    background: #fff;
    content: "";
    transform: rotate(45deg);
}

.ss_journey b,
.ss_card_no {
    color: #e84c73;
    font-size: 24px;
    letter-spacing: .12em;
}

.ss_journey span {
  font-size: 20px;
  color: #13233d;
  font-weight: 700;
}



.ss_body p {
    margin: 0 0 20px;
    line-height: 2;
}


.ss_cards {
    display: grid;
    gap: 24px;
}

.ss_cards_3 {
    grid-template-columns: repeat(3, 1fr);
}

.ss_cards_2 {
    grid-template-columns: repeat(2, 1fr);
}

.ss_card {
    position: relative;
    padding: 38px;
    border: 1px solid #e7eaf0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 16px 45px rgba(19, 35, 61, .055);
}

.ss_card:before {
    position: absolute;
    top: 0;
    left: 38px;
    width: 55px;
    height: 4px;
    background: linear-gradient(90deg, #e84c73, #b99ad7, #54b7df);
    content: "";
}

.ss_card h3 {
    margin: 17px 0;
    color: #13233d;
    font-size: 21px;
    line-height: 1.55;
}

.ss_card p {
    margin: 0;
    line-height: 1.9;
}

.ss_card a {
    display: inline-flex;
    gap: 20px;
    margin-top: 22px;
    color: #e84c73;
    font-weight: 700;
    text-decoration: none;
}

.ss_card_wide {
    grid-column: 1/-1;
}

.ss_feature_list {
    border-top: 1px solid #e7eaf0;
}

.ss_feature_list article {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 28px;
    padding: 40px 20px;
    border-bottom: 1px solid #e7eaf0;
}

.ss_feature_list article>span {
    color: #e84c73;
    font-size: 36px;
    font-weight: 300;
}

.ss_feature_list h3 {
    margin: 0 0 12px;
    color: #13233d;
    font-size: 24px;
}

.ss_feature_list p {
    max-width: 850px;
    margin: 0;
    line-height: 1.9;
}

.ss_tag_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 0;
    list-style: none;
}

.ss_tag_grid li, .ss_check_list li {
    position: relative;
    padding: 18px 18px 18px 46px;
    border: 1px solid #e7eaf0;
    border-radius: 9px;
    background: #fff;
    color: #13233d;
    font-weight: 650;
}

.ss_tag_grid li:before, .ss_check_list li:before {
    position: absolute;
    top: 50%;
    left: 19px;
    width: 10px;
    height: 6px;
    border-bottom: 2px solid #e84c73;
    border-left: 2px solid #e84c73;
    content: "";
    transform: translateY(-70%) rotate(-45deg);
}

.ss_center_text {
    text-align: center;
    margin: 30px 0 0;
    font-weight: 700;
}

.ss_subtitle {
    margin: 65px 0 25px;
    color: #13233d;
    font-size: 26px;
}

.ss_table_wrap {
    overflow-x: auto;
}

.ss_table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.ss_table th, .ss_table td {
    padding: 20px;
    border: 1px solid #e7eaf0;
    text-align: left;
}

.ss_table thead th {
    background: #13233d;
    color: #fff;
}

.ss_table tbody th {
    width: 18%;
    background: #f6f8fb;
    color: #13233d;
}

.ss_table td:nth-child(2) {
    background: #fff8fa;
}

.ss_compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ss_compare>div {
    padding: 35px;
    border: 1px solid #e7eaf0;
    border-radius: 14px;
    background: #fff;
}

.ss_compare b {
    color: #13233d;
    font-size: 22px;
}

.ss_compare p {
    margin: 14px 0 0;
    line-height: 1.9;
}

.ss_accordion_like {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ss_accordion_like article {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    padding: 30px;
    border: 1px solid #e7eaf0;
    border-radius: 12px;
    background: #fff;
}

.ss_accordion_like article>b {
    color: #e84c73;
}

.ss_accordion_like h3 {
    margin: 0 0 12px;
    color: #13233d;
    font-size: 19px;
}

.ss_accordion_like p {
    margin: 0;
    line-height: 1.8;
}

.ss_client_works {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
    padding: 45px;
    border-radius: 16px;
    background: #13233d;
    color: #fff;
}

.ss_client_works h3 {
    margin: 0 0 12px;
    font-size: 25px;
}

.ss_client_works p {
    margin: 0;
}

.ss_button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    min-height: 60px;
    padding: 0 30px;
    border: 1px solid #e84c73;
    border-radius: 100px;
    background: linear-gradient(100deg, #e84c73, #f36a91);
    box-shadow: 0 12px 30px rgba(232, 76, 115, .18);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

.ss_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(232, 76, 115, .25);
}

.ss_button_outline {
    background: #fff;
    box-shadow: none;
    color: #e84c73;
}

.ss_price_box {
    padding: 55px;
    border: 1px solid #e7eaf0;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(19, 35, 61, .06);
    text-align: center;
}

.ss_price_box h3 {
    margin: 0 0 30px;
    color: #13233d;
    font-size: 27px;
}

.ss_price_box p {
    max-width: 850px;
    margin: 30px auto;
    line-height: 1.9;
}

.ss_timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 55px;
}

.ss_timeline article {
    position: relative;
    padding: 26px;
    border-top: 3px solid #e84c73;
    background: #fff;
}

.ss_timeline article:nth-child(2) {
    border-color: #ef8dac;
}

.ss_timeline article:nth-child(3) {
    border-color: #b99ad7;
}

.ss_timeline article:nth-child(4) {
    border-color: #54b7df;
}

.ss_timeline article:nth-child(5) {
    border-color: #f6c632;
}

.ss_timeline span {
    font-size: 12px;
    color: #e84c73;
}

.ss_timeline h3 {
    margin: 12px 0;
    color: #13233d;
    font-size: 18px;
}

.ss_timeline b {
    color: #e84c73;
}

.ss_timeline p {
    font-size: 14px;
    line-height: 1.7;
}



/* ========================================
  ss_practice
======================================== */
.ss_practice{

}
.ss_practice .ss_cards_3{
  grid-template-columns: repeat(1, 1fr);
}
.ss_practice .ss_practice_area{
  display: flex;
  gap: 48px;
  align-items: end;
}
.ss_practice .ss_practice_area .ss_practice_text{
  flex: 5;
}
.ss_practice .ss_practice_area .ss_practice_images{
  flex: 5;
}




/* ========================================
 流れ
======================================== */
.ss_flow_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding: 0;
    counter-reset: flow;
    list-style: none;
}

.ss_flow_list li {
    position: relative;
    min-height: 245px;
    padding: 34px;
    border: 1px solid #e7eaf0;
    border-radius: 14px;
    background: #fff;
}

.ss_flow_list li>b {
    color: #e84c73;
    font-size: 12px;
    letter-spacing: .1em;
}

.ss_flow_list h3 {
    margin: 22px 0 12px;
    color: #13233d;
    font-size: 21px;
}

.ss_flow_list p {
    margin: 0;
    line-height: 1.8;
}

.ss_check_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}



/* ========================================
  事前準備のもの
======================================== */
.ss_prepare .ss_note{
  margin-top: 32px;
}



/* ========================================
  FAQ
======================================== */
.ss_faq_list {
    border-top: 1px solid #e7eaf0;
}

.ss_faq details {
    border-bottom: 1px solid #e7eaf0;
    background: #fff;
}

.ss_faq summary {
    position: relative;
    padding: 27px 60px 27px 58px;
    color: #13233d;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.ss_faq summary:before {
    position: absolute;
    left: 18px;
    color: #e84c73;
    font-size: 20px;
    content: "Q";
}

.ss_faq summary:after {
    position: absolute;
    right: 24px;
    content: "＋";
    color: #e84c73;
}

.ss_faq details[open] summary:after {
    content: "－";
}

.ss_faq details p {
    position: relative;
    margin: 0;
    padding: 0 55px 28px 58px;
    line-height: 1.9;
}

.ss_faq details p:before {
    position: absolute;
    left: 18px;
    color: #54b7df;
    font-size: 20px;
    font-weight: 700;
    content: "A";
}

.ss_final_cta {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background: linear-gradient(120deg, #fff3f6, #f7f3fd 55%, #effaff);
    text-align: center;
}

.ss_final_cta .ss_inner {
    max-width: 900px;
}

.ss_final_cta h2 {
    margin: 20px 0;
    color: #13233d;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.45;
}

.ss_final_cta p {
    max-width: 780px;
    margin: 0 auto;
    line-height: 2;
}

.ss_cta_buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 38px;
}

.ss_final_cta_shapes:before, .ss_final_cta_shapes:after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.ss_final_cta_shapes:before {
    top: -80px;
    left: -60px;
    width: 230px;
    height: 230px;
    background: rgba(246, 198, 50, .35);
}

.ss_final_cta_shapes:after {
    right: -80px;
    bottom: -90px;
    width: 280px;
    height: 280px;
    background: rgba(84, 183, 223, .22);
}

@media screen and (max-width: 1024px) {
    .ss_inner {
        width: min(100% - 48px, 1180px);
    }

    .ss_tag_grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ss_timeline {
        grid-template-columns: repeat(3, 1fr);
    }

    .ss_flow_list {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media screen and (max-width: 767px) {
    .ss_section, .ss_final_cta {
        padding: 72px 0;
    }

    .ss_inner {
        width: calc(100% - 40px);
    }

    .ss_heading {
        margin-bottom: 32px;
    }

    .ss_heading h2, .ss_final_cta h2 {
        font-size: 28px;
    }

    .ss_heading p, .ss_intro {
        font-size: 14px;
        line-height: 1.9;
    }

    .ss_split {
        display: block;
    }

    .ss_split>.ss_heading {
        margin-bottom: 30px;
    }

    .ss_journey {
        grid-template-columns: 1fr;
        margin-top: 35px;
    }

    .ss_journey li {
        min-height: 75px;
    }

    .ss_journey li+li {
        border-top: 0;
        border-left: 1px solid #e7eaf0;
    }

    .ss_journey li:not(:last-child):after {
        right: auto;
        bottom: -8px;
        transform: rotate(135deg);
    }

    .ss_cards_3, .ss_cards_2, .ss_accordion_like, .ss_compare, .ss_flow_list {
        grid-template-columns: 1fr;
    }

    .ss_card {
        padding: 30px 24px;
    }

    .ss_feature_list article {
        grid-template-columns: 55px 1fr;
        gap: 10px;
        padding: 28px 0;
    }

    .ss_feature_list article>span {
        font-size: 24px;
    }

    .ss_feature_list h3 {
        font-size: 19px;
    }

    .ss_tag_grid {
        grid-template-columns: 1fr 1fr;
    }

    .ss_table {
        min-width: 680px;
    }

    .ss_client_works {
        display: block;
        padding: 32px 24px;
    }

    .ss_client_works .ss_button {
        margin-top: 25px;
    }

    .ss_price_box {
        padding: 35px 20px;
    }

    .ss_price_box .ss_tag_grid {
        grid-template-columns: 1fr;
    }

    .ss_timeline {
        grid-template-columns: 1fr;
    }

    .ss_flow_list li {
        min-height: auto;
    }

    .ss_check_list {
        grid-template-columns: 1fr;
    }

    .ss_cta_buttons {
        flex-direction: column;
    }

    .ss_button {
        width: 100%;
        padding: 0 22px;
    }

    .ss_faq summary {
        padding-right: 48px;
        padding-left: 48px;
    }

    .ss_faq details p {
        padding-right: 20px;
        padding-left: 48px;
    }

    .ss_faq summary:before, .ss_faq details p:before {
        left: 12px;
    }

}

