@charset "UTF-8";
/* common
-------------------------------------------- */
:root {
  --color-background: #e6eef7;
  --color-txt: #122b4d;
  --color-txt-light: #194aa2;
  --color-secondary: #a2bbe3;
  --color-accent: #ff001b;
  --color-accent-dark: #bd0015;
  --color-blue: #2555b0;
  --color-white: #ffffff;
  --color-yellow: #fde585;
  --color-cv: #fd8b2c;
  --border-radius: 0.4rem;
}
html {
    font-size: 0.625rem;
}
*, *::before, *::after {
    box-sizing: border-box;
}
html,
body {
    width: 100%;
    margin: 0;
    overflow-x: hidden;
}
body {
    color: var(--color-txt);
    text-align: justify;
}
img{
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}
a {
  cursor: pointer;
}
.center {
    text-align: center;
}
.bold {
    font-weight: bold;
}
.inner {
    width: min(100% - 20px, 1080px);
    margin-inline: auto;
}
.inner.narrow {
    width: min(100% - 20px, 900px);
}
.txt_red {
  color: var(--color-accent);
}
.highlight {
  font-weight: bold;
  background: linear-gradient(transparent 30%, #ffeb5c 30%, #ffeb5c 100%, transparent 100%);
}
.white_line {
  display: inline-block;
  padding: 1px 8px;
  margin-bottom: 12px;
  background-color: #fff;
}
.txt_underline {
  position: relative;
}
.txt_underline::before {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: auto;
  content: '';
  width: 100%;
  height: 2px;
  background-color: var(--color-txt-light);
}
.akshar {
  font-family: "Akshar", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.bg_blue {
  background-color: var(--color-background);
}
.section-area {
  padding: 50px 0;
}
.inline_block {
  display: inline-block;
 }
.pc {
  display: block;
}
.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .section-area {
    padding: 30px 0;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  br.sp {
    display: block!important;
  }
  .white_line {
    margin-bottom: 5px;
  }
}

/* ttl
-------------------------------------------- */
.section_ttl-area {
  padding: 10px 0 30px;
}

.ttl {
  margin-bottom: 10px;
  color: var(--color-txt-light);
  text-align: center;
  font-size: clamp(24px, 5.5vw, 35px);
  font-weight: bold;
}

.lead_ttl {
  margin-bottom: 5px;
  text-align: center;
  font-size: clamp(16px, 3vw, 18px);
  font-weight: bold;
}

.sub_txt {
  color: var(--color-txt);
  text-align: center;
  font-size: clamp(14px, 3vw, 16px);
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .section_ttl-area {
    padding: 10px 0 20px;
  }
}

/* cvエリア
-------------------------------------------- */
.cv {
  padding: 40px 0 10px;
  background: linear-gradient(to bottom, #004b99, #0082bb);
}

.cv p {
  margin-top: 0;
  margin-bottom: 0;
}

.cv ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cv_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1000px;
  max-width: 95%;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}

.cv_head {
  display: inline-block;
  padding: 0 10px 4px;
  background-color: #fdfd6d;
  color: var(--color-txt-light);
  font-size: 38px;
}

.cv_head_txt {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  color: var(--color-white);
  font-size: 20px;
  font-weight: normal;
}

.cv_head_txt::before, .cv_head_txt::after {
  position: absolute;
  bottom: 0;
  content: '';
  width: 2px;
  height: 90%;
  background-color: var(--color-white);
}

.cv_head_txt::before {
  right: -15px;
  transform: rotate(45deg);
}

.cv_head_txt::after {
  left: -15px;
  transform: rotate(-45deg);
}

.cv_inner .cv_talk {
  margin: 16px auto;
  font-size: clamp(16px, 3.7vw, 20px);
}

.cv_inner .cv_talk img {
  width: 8vw;
  min-width: 60px;
  max-width: 75px;
  height: auto;
}

.cv_inner .cv_talk > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.cv_inner .cv_talk > div:nth-child(2) {
  margin-top: -10px;
}

.cv_inner .cv_talk > div > p {
  position: relative;
  padding: 5px 20px;
  border-radius: 30px;
  background-color: #fff;
}


.cv_inner .cv_talk > div > p::before {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: '';
  width: 11px;
  height: 16px;
  background-color: #fff;
}

.cv_inner .cv_talk > div:nth-child(odd) > p::before {
  right: -7px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.cv_inner .cv_talk > div:nth-child(even) > p::before {
  left: -7px;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.cv_inner .cv_answer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px 0;
  margin-bottom: 30px;
  color: #fff;
  font-size: clamp(20px, 3.5vw, 25px);
}

.cv_inner .cv_answer > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.cv_inner .cv_answer span {
  padding: 0 5px;
  color: #fcfc7b;
  border-bottom: solid 1px #fcfc7b;
}

.cv_inner .cv_answer .cv_partner_name {
  margin: 0 0.35em 0 0;
  color: #fff;
  font-size: clamp(18px, 3.2vw, 26px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}

.cv .cv_bg {
  padding: 30px 0;
  background-image: url("../assets/img/cv_bg_pc.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  box-shadow: inset 0 -2px 0 #0082bb;
}

.cv .cv_bg > div {
  margin: auto;
  width: 790px;
  max-width: 100%;
}

.cv .cv_bg > div > div {
  padding-right: 7px;
  margin: 0 0 0 auto;
  width: 580px;
  max-width: 75%;
}

.cv .cv_bg ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 12px;
}

.cv .cv_bg p {
  margin-bottom: 10px;
  text-align: center;
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: bold;
}

.cv .cv_bg ul li {
  position: relative;
  display: inline-block;
  padding: 6px 16px 6px 30px;
  margin-bottom: 3px;
  width: fit-content;
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: bold;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 120, 255, 0.21);
}

.cv .cv_bg ul li::before {
  position: absolute;
  top: 14px;
  left: 10px;
  content: '';
  display: block;
  width: 13px;
  height: 7px;
  border-left: 3px solid #ff3150;
  border-bottom: 3px solid #ff3150;
  transform: rotate(-45deg);
}

.cv_btn_area {
  padding: 15px 0 25px;
  width: 100%;
}

.cv_btn_area > a {
  max-width: 90%;
}

ul.cv_mt {
  margin-top: 20px !important;
}

@media (max-width: 768px) {
  .cv {
    padding: 20px 0 0;
  }
  .cv_inner ul {
    font-size: 15px;
  }
  .cv_head {
    font-size: clamp(22px, 7.5vw, 30px);
  }
  .cv .cv_bg {
    padding: 40px 0 18px;
    background-image: url("../assets/img/cv_bg_sp.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .cv .cv_bg ul {
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 2px 0;
  }
  .cv_inner .cv_talk > div {
    gap: 10px;
  }
  .cv_inner .cv_answer {
    margin-bottom: 10px;
  }
  .cv .cv_bg {
    position: relative;
  }
  .cv .cv_bg::before {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    top: -1px;
    width: 100%;
    height: 22px;
    content: '';
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background-color: #0064a6;
  }
  .cv_head_txt {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .cv_inner .cv_talk {
    display: grid;
    row-gap: 12px;
    width: 100%;
  }

  .cv_inner .cv_talk > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 60px;
    width: 100%;
    gap: 24px;
  }

  .cv_inner .cv_talk > div:nth-child(even) {
    grid-template-columns: 60px minmax(0, 1fr);
    margin-top: 0;
  }

  .cv_inner .cv_talk > div > p {
    box-sizing: border-box;
    min-width: 0;
    width: 100%;
    max-width: none;
  }

  .cv_inner .cv_talk img {
    width: 60px;
    min-width: 0;
    max-width: 60px;
  }
}

/* cv_btn
-------------------------------------------- */
.cv_btn {
    background: var(--color-accent);
    color: var(--color-white);
    padding: 1.6rem 1.2rem;
    margin: 0 auto;
    display: block;
    font-size: clamp(1.8rem, 5.5vw, 2.3rem);
    font-weight: bold;
    width: 450px;
    max-width: 100%;
    text-align: center;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 0 0 var(--color-accent-dark);
}

.cv_btn:after {
  position: absolute;
  top: 0;
  right: 18px;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 14px;
  content: '';
  background-color: #ffffff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.cv_btn_txt {
  position: relative;
  display: inline-block;
  margin: 0 auto clamp(1px, 1vw, 8px);
  font-size: clamp(1.6rem, 4.0vw, 1.8rem);
  text-align: center;
  font-weight: bold;
  color: var(--color-white);
  z-index: 1;
}

.cv_btn_txt::before, .cv_btn_txt::after {
  position: absolute;
  bottom: 0;
  content: '';
  width: 2px;
  height: 90%;
  background-color: var(--color-white);
}

.cv_btn_txt::before {
  right: -22px;
  transform: rotate(45deg);
}

.cv_btn_txt::after {
  left: -22px;
  transform: rotate(-45deg);
}

.cv_btn_txt.__blue {
  color: var(--color-txt-light);
}

.cv_btn_txt.__blue::before, .cv_btn_txt.__blue::after {
  background-color: var(--color-txt-light);
}

.cv_btn_txt.__dark {
  color: var(--color-txt);
}

.cv_btn_txt.__dark::before, .cv_btn_txt.__dark::after {
  background-color: var(--color-txt);
}

/* Lineバナー
-------------------------------------------- */
.line_bnr {
  margin: 10px auto 20px;
  width: 650px;
  height: auto;
  max-width: 95%;
  text-align: center;
}

.line_bnr a {
  display: block;
}

.line_bnr p {
  font-size: clamp(15px, 3vw, 18px);
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .line_bnr {
    margin-top: 10px;
    max-width: calc(100% - 24px);
  }
}

/* キャンペーンバナー
-------------------------------------------- */
.campaign_banner_area {
  position: relative;
  z-index: 1;
  padding: 0 0 30px;
  margin: 0 auto;
  width: 650px;
  max-width: 95%;
}

@media screen and (max-width: 700px) {
  .cv_section .form_wrapper {
    margin-block: 0.5rem 10px !important;
  }
}

/* header
-------------------------------------------- */

/* -------------------------
   共通ヘッダー
------------------------- */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 50;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: background-color 0.35s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 15px 25px;
  position: relative;
  width: 100%;
  height: 80px;
}

/* -------------------------
   ロゴ
------------------------- */
.header-logo,
.header-logo-invert {
  position: relative;
  z-index: 2002;
}

.header-logo img,
.header-logo-invert img {
  width: clamp(130px, 22vw, 188px);
}

.header-logo-invert {
  display: none;
}

/* -------------------------
   PC ナビ
------------------------- */
.header-nav {
  margin-left: auto;
  margin-right: 10px;
}

.header-nav ul {
  display: flex;
  gap: 3.5vw;
  justify-content: flex-end;
  margin: 0 30px 0 0;
  padding: 0;
  list-style: none;
}

.header-nav li {
  list-style: none;
}

.header-nav a {
  color: var(--color-txt);
  text-decoration: none;
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 600;
  transition: .2s;
}

.header-nav a:hover {
  opacity: .5;
}

/* -------------------------
   CVボタン
------------------------- */
.header-cv-btn {
  padding: 12px 50px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.2px;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  -webkit-box-shadow: 0 4px 0 var(--color-accent-dark);
  box-shadow: 0 4px 0 var(--color-accent-dark);
  z-index: 2002;
}

/* -------------------------
   ハンバーガーメニュー
------------------------- */
.hamburger {
  display: none;
  width: 30px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 2003;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #007bff;
  transition: 0.3s;
  transform-origin: center;
}

/* × ボタン */
.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
  background: #fff;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
  background: #fff;
}

/* -------------------------
   SP メニュー
------------------------- */
.sp-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #4481dc;
  padding-top: 80px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 2000;
}

.sp-menu.active {
  opacity: 1;
  visibility: visible;
}

.sp-menu ul {
  display: flex;
  flex-direction: column;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.sp-menu li {
  list-style: none;
  text-align: center;
  border-bottom: solid 1px rgba(0, 49, 147, 0.25);
}

.sp-menu li a {
  display: block;
  padding: 15px 10px;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}

.sp-menu_cv {
  width: 90%;
  margin: 0 auto;
}

/* -------------------------
   SPメニューOPEN時
------------------------- */
.header.sp-open {
  background-color: #007bff; /* 背景色フェード */
}

.header.sp-open .header-logo {
  display: none;
}

.header.sp-open .header-logo-invert {
  display: block;
}

.header.sp-open .header-cv-btn {
  display: none;
}

/* -------------------------
   レスポンシブ
------------------------- */
@media (max-width: 1200px) {

  /* PCナビ非表示 */
  .header-nav {
    display: none;
  }

  /* ハンバーガー表示 */
  .hamburger {
    display: flex;
    margin-left: 10px;
  }

  /* CVボタン右寄せ（メニュー閉じ時） */
  .header-cv-btn {
    padding: 7px 10px;
    margin-left: auto;
    display: inline-block;
    letter-spacing: -1px;
    font-size: 15px;
  }

  /* ヘッダー内全体調整 */
  .header-inner {
    display: flex;
    align-items: center;
  }

  /* メニュー開いた時の切り替え */
  .header.sp-open .header-cv-btn {
    display: none;
  }

  .header.sp-open .hamburger {
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 10px;
    height: 60px;
  }
}

/* fv
-------------------------------------------- */

.fv_section {
  background-image: url("../assets/img/fv_bg_pc.jpg");
  background-image: image-set(
    url("../assets/img/fv_bg_pc.webp") type("image/webp"),
    url("../assets/img/fv_bg_pc.jpg") type("image/jpeg")
  );
  background-size: cover;
  background-position: center;
  color: #fff;
  padding-bottom: 0;
  margin-top: 80px;
  overflow: hidden;
}

.fv_section>.inner {
  display: grid;
  grid-template-columns: 50% 50%;
  /*width: min(100% - 70px, 1240px);*/
}

.fv_section .fv_catch,
.fv_section .fv_features,
.fv_section .c-cv_area {
  grid-column: 1 / 2;
}

.fv_section .fv_catch,
.fv_section .fv_features,
.fv_section .c-cv_area,
.fv_section .note {
  z-index: 1;
}

.fv_section .fv_catch {
  grid-row: 1 / 2;
  margin-top: 50px;
}

.fv_section .fv_catch picture {
  display: block;
  margin-top: 10px;
  width: clamp(150px, 40vw, 260px);
  height: auto;
}

@media (min-width: 769px) {
  .fv_section .fv_catch picture {
    width: 260px;
  }
}

.fv_section .fv_catch img {
  width: 100%;
  height: auto;
}

.fv_section .fv_features {
  grid-row: 2 / 3;
}

.fv_section .c-cv_area {
  grid-row: 3 / 4;
}

.fv_section .woman {
  grid-column: 2 / 3;
  grid-row: 1 / 5;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.fv_section .ttl {
  display: inline-block;
  font-size: clamp(3.8rem, 2.7vw, 4.2rem);
  line-height: 1.0;
  padding: 0.7vw 1vw;
  margin-top: 0;
  margin-bottom: 14px;
  white-space: nowrap;
  color: var(--color-txt);
  background-color: #fff;
  font-weight: 800;
}

.fv_section .ttl > span {
  color: var(--color-accent);
}

.fv_section .c-cv_area {
  margin-left: 0;
  margin-right: auto;
  width: 100%;
  max-width: 45rem;
  margin-block: 0.5rem 4.7rem;
}

.fv_section .c-cv_area .c-cv_btn {
  position: relative;
  background-color: var(--color-accent);
  color: #fff;
  border-radius: 100px;
  text-align: center;
  font-weight: bold;
  max-width: 500px;
  display: block;
  padding: 2rem 35px 2rem 1rem;
  -webkit-box-shadow: 0 5px 0 var(--color-accent-dark);
  box-shadow: 0 5px 0 var(--color-accent-dark);
  margin: 0 auto;
  line-height: 1;
  cursor: pointer;
  font-size: 2.3rem;
  width: 100%;
}

.fv_section .c-cv_area .c-cv_btn::before {
  position: absolute;
  top: 0;
  right: 18px;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 14px;
  content: '';
  background-color: #ffffff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.fv_section .c-cv_area .c-cv_btn__txt {
  position: relative;
  display: inline-block;
  margin: 0 auto clamp(1px, 1vw, 8px);
  font-size: 2.0rem;
  text-align: center;
  font-weight: bold;
  color: var(--color-txt);
}

.fv_section .fv_features {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 1rem auto 0.5rem 0;
  filter: drop-shadow(0 4px 5px rgba(19, 0, 142, 0.2));
}

.fv_section .c-cv_btn__txt::before,
.fv_section .c-cv_btn__txt::after {
  position: absolute;
  bottom: 0;
  content: '';
  width: 2px;
  height: 90%;
  background-color: var(--color-txt);
}

.fv_section .c-cv_btn__txt::before {
  right: -15px;
  transform: rotate(45deg);
}
.fv_section .c-cv_btn__txt::after {
  left: -15px;
  transform: rotate(-45deg);
}

@media only screen and (max-width: 1200px) {

  .fv_section .ttl {
    font-size: clamp(2rem, 3.6vw, 4rem);
  }
}

@media only screen and (max-width: 768px) {
  .fv_section {
    background-image: url("../assets/img/fv_bg_tab.jpg");
    background-image: image-set(
      url("../assets/img/fv_bg_tab.webp") type("image/webp"),
      url("../assets/img/fv_bg_tab.jpg") type("image/jpeg")
    );
    background-position: top right;
    margin-top: 60px;
  }
  .fv_section>.inner {
    display: flex;
    flex-direction: column;
    width: min(92%, 768px);
  }

  .fv_section .woman {
    display: none;
  }

  .fv_section .fv_catch {
    order: 1;
    margin-top: 25px;
  }
  .fv_section .fv_features {
    position: relative;
    order: 2;
    margin: 8vw auto 1rem 0;;
    margin-inline: auto;
    width: min(100%, 50rem);
  }

  .fv_section .fv_features .fv_reskilling {
    display: none;
  }
  .fv_section .fv_features .fv_case {
    width: clamp(130px, 24vw, 500px);
  }
  .fv_section .fv_features .fv_case img {
    width: 100%;
    height: auto;
  }
  .fv_section .c-cv_area {
    order: 3;
    margin-inline: auto;
    margin-block: 0;
    max-width: 100%;
  }
  .fv_section .c-cv_area .c-cv_btn {
    padding-top: 18px;
    padding-bottom: 18px;
    margin-bottom: 20px;
    width: min(100%, 450px);
    max-width: calc(100vw - 28px);
  }
  .fv_section .c-cv_area .c-cv_btn span {
    display: none;
  }
  .fv_section .ttl {
    padding: 5px 6px;
    margin-top: 0;
    margin-bottom: 2.5vw;
    font-size: clamp(1.4rem, 5.9vw, 3.5rem);
  }
  .fv_section .ttl_sub {
    width: 100%;
    font-size: clamp(1rem, 5.0vw, 3.5rem);
    letter-spacing: 0.6px;
  }
  .fv_section .ttl_sub picture {
    width: min(36vw, 210px);
  }
  .fv_section .c-cv_area .c-cv_btn__txt {
    font-size: clamp(1rem, 4.0vw, 1.8rem);
    color: #fff;
  }
  .fv_section .c-cv_area .c-cv_btn__txt::before,
  .fv_section .c-cv_area .c-cv_btn__txt::after {
    background-color: #fff;
  }
}

@media only screen and (max-width: 430px) {

  .fv_section {
    background-image: url("../assets/img/fv_bg_sp.jpg");
    background-image: image-set(
      url("../assets/img/fv_bg_sp.webp") type("image/webp"),
      url("../assets/img/fv_bg_sp.jpg") type("image/jpeg")
    );
  }
}

/* free_advice
-------------------------------------------- */
.free_advice {
  padding: 50px 0;
  background-color: #004799;
}

.free_advice_inner {
  margin: auto;
  width: 960px;
  max-width: 95%;
}

.free_advice_ttl {
  position: relative;
  margin: 0 auto;
  width: fit-content;
  text-align: center;
  font-size: 28px;
  line-height: 1.45;
  font-weight: bold;
  color: #fff;
}

.free_advice_ttl::before {
  position: absolute;
  top: -30px;
  left: -80px;
  z-index: 2;
  content: 'まずは';
  padding: 3px 15px;
  font-size: 22px;
  line-height: 1.2;
  color: #00172d;
  background-color: #fff;
  border-radius: 30px;
  transform: rotate(353deg);
}

.free_advice_ttl::after {
  position: absolute;
  top: -4px;
  left: -35px;
  z-index: 1;
  content: '';
  width: 20px;
  height: 20px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 50%);
}

.free_advice_ttl .txt_box {
  position: relative;
  z-index: 1;
  padding: 0 8px 2px;
  margin-right: 10px;
  font-size: 28px;
  color: #004799;
  background-color: #fdfd6c;
  border: solid 1px #004799;
}

.free_advice_ttl .txt_box::after {
  position: absolute;
  bottom: -5px;
  right: -5px;
  content: '';
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
}

.free_advice_box {
  margin: 30px 0 20px;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.free_advice_box_ttl {
  margin: 0;
  padding: 10px;
  width: 100%;
  text-align: center;
  font-size: 20px;
  line-height: 1.4;
  font-weight: bold;
  color: #004799;
  background-color: #cfdfeb;
}

.free_advice_flex {
  display: flex;
  padding: 24px 20px;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
}

.free_advice_flex > div {
  position: relative;
  display: flex;
  flex: 1;
  align-items: flex-start;
  gap: 12px;
  padding: 0 15px;
}

.free_advice_flex > div:not(:last-child) {
  border-right: dashed 2px #e2e2e2;
}

.free_advice_flex > div img {
  width: 70px;
  height: auto;
}

.free_advice_txt {
  flex: 1;
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
}

.free_advice_txt p {
  margin: 0;
}

.free_advice_txt :first-of-type {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: bold;
  color: #004799;
}

@media (max-width: 768px) {
  .free_advice {
    padding: 30px 0 34px;
  }

  .free_advice_ttl {
    padding-top: 22px;
    font-size: clamp(24px, 6.9vw, 28px);
    line-height: 1.45;
  }

  .free_advice_ttl .txt_box {
    line-height: 1.9;
  }

  .free_advice_ttl::before {
    top: -17px;
    left: -40px;
    font-size: 18px;
  }

  .free_advice_ttl::after {
    top: 9px;
    left: -7px;
  }

  .free_advice_box {
    margin-top: 22px;
  }

  .free_advice_box_ttl {
    padding: 10px;
    font-size: 20px;
  }

  .free_advice_flex {
    flex-direction: column;
    padding: 18px 12px;
  }

  .free_advice_flex > div {
    width: 100%;
    gap: 12px;
    padding: 16px 5px;
  }

  .free_advice_flex > div:first-child {
    padding-top: 0;
  }

  .free_advice_flex > div:last-child {
    padding-bottom: 0;
  }

  .free_advice_flex > div:not(:last-child) {
    border-right: none;
    border-bottom: dashed 2px #e2e2e2;
  }

  .free_advice_flex > div img {
    width: 66px;
  }

  .free_advice_txt {
    font-size: 14px;
    line-height: 1.6;
  }

  .free_advice_txt :first-of-type {
    margin-bottom: 5px;
    font-size: 18px;
  }
}

/* present_cp
-------------------------------------------- */
.present_cp {
  position: relative;
  padding: 24px 0 28px;
  background-color: #2559b2;
  overflow: hidden;
}

.present_cp::before, .present_cp::after {
  content: '';
  position: absolute;
  background: #2162b8;
  transform: rotate(35deg);
}

.present_cp::before {
  top: 20px;
  right: -110px;
  width: 370px;
  height: 20px;
}

.present_cp::after {
  left: -240px;
  bottom: -180px;
  width: 730px;
  height: 310px;
}

.present_cp .center {
  position: relative;
  z-index: 1;
}

/* about
-------------------------------------------- */
@media (min-width: 769px) {
  .about {
    padding: 60px 0 0;
  }
  .about .top_txt {
    position: relative;
    font-size: 30px;
    text-align: center;
    font-weight: bold;
  }
  .about .top_txt::after {
    position: absolute;
    content: "";
    width: 247px;
    height: 20px;
    background: url("../assets/img/top_txt_tail.png") no-repeat center / contain;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
  }
  .about h2,
  .about .sub_ttl,
  .about .plan_txt {
    font-size: 32px;
    color: var(--color-txt-light);
    font-weight: bold;
    text-align: center;
    margin-top: 42px;
  }
  .about h2 {
    margin-top: 0;
  }
  .about .red_bg_txt {
    background-color: var(--color-accent);
    color: #ffffff;
    padding: 0 8px;
  }
  .about .note {
    margin: 28px auto 0;
    padding-bottom: 72px;
    font-size: 15px;
    text-align: center;
  }
  .about .blue_bg {
    position: relative;
    background-color: #eaf0f9;
    padding-top: 90px;
    padding-bottom: 10px;
  }
  .about .blue_bg::before {
    position: absolute;
    content: "";
    width: 137px;
    height: 78px;
    background: url("../assets/img/arrow_pink.png") no-repeat center / contain;
    top: -42px;
    left: 50%;
    transform: translateX(-50%);
  }
  .about .plan_txt {
    margin: 0 auto 34px;
  }
}
@media screen and (max-width: 768px) {
  .about {
    padding: 8vw 0 4vw;
  }
  .about .top_txt {
    position: relative;
    font-size: 5.4vw;
    text-align: center;
    font-weight: bold;
  }
  .about .top_txt::after {
    position: absolute;
    content: "";
    width: 43vw;
    height: 3.5vw;
    background: url(../assets/img/top_txt_tail.png) no-repeat center / contain;
    top: 9.5vw;
    left: 50%;
    transform: translateX(-50%);
  }
  .about h2,
  .about .sub_ttl,
  .about .plan_txt {
    font-size: 5.4vw;
    color: var(--color-txt-light);
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
    margin-top: 6.667vw;
  }
  .about .red_bg_txt {
    background-color: var(--color-accent);
    color: #ffffff;
    padding: 0 1vw;
    margin-right: 1vw;
  }
  .about .blue_bg_txt {
    background-color: var(--color-txt-light);
    color: #ffffff;
    padding: 0 1vw;
    margin-right: 1vw;
  }
  .about .note {
    margin: 3vw auto 0;
    padding: 0 0 8vw;
    font-size: 2.7vw;
    text-align: center;
  }
  .about .blue_bg {
    position: relative;
    background-color: #eaf0f9;
    padding-top: 12.267vw;
    padding-bottom: 3.267vw;
  }
  .about .blue_bg::before {
    position: absolute;
    content: "";
    width: 106px;
    height: 63px;
    background: url(../assets/img/arrow_pink.png) no-repeat center / contain;
    top: -29px;
    left: 50%;
    transform: translateX(-50%);
  }
  .about .plan_txt {
    font-size: 4.6vw;
    margin: 0 auto 4.533vw;
  }
}

/* faq
-------------------------------------------- */
@media (min-width: 769px) {
  .faq h2 {
    font-size: 28px;
    color: #fff;
    font-weight: bold;
    background-color: var(--color-txt-light);
    padding: 24px 0;
    margin: 0;
    text-align: center;
  }
  .faq .wrap {
    padding: 45px 0 68px;
    background: url("../assets/img/faq_bg.jpg") no-repeat center / cover;
  }
  .faq .inner {
    width: min(100% - 250px, 900px);
    text-align: center;
  }
  .faq .sub_ttl {
    font-size: 22px;
    position: relative;
    display: inline-block;
    padding: 0 112px;
    margin: 0 0 4px;
    text-align: center;
  }

  .faq .sub_ttl:before,
  .faq .sub_ttl:after {
    content: "";
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 92px;
    height: 1px;
    background-color: #666;
  }

  .faq .sub_ttl:before {
    left: 0;
  }

  .faq .sub_ttl:after {
    right: 0;
  }

  .faq .white_box {
    position: relative;
    background-color: #fff;
    padding: 24px 40px;
    margin-top: 18px;
    border-radius: 10px;
    max-width: 100%;
    width: 90%;
    display: inline-block;
    text-align: left;
  }
  .faq .white_box .heading {
    font-size: 24px;
    color: var(--color-txt-light);
    font-weight: bold;
    line-height: 1.45;
    margin: 0 0 6px;
  }
  .faq .white_box .txt {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
  }
  /* 1つ目 → 右寄せ */
  .faq .inner .white_box:nth-of-type(1) {
    margin-left: auto;
    display: block;
    width: fit-content;
  }

  /* 2つ目 → 左寄せ */
  .faq .inner .white_box:nth-of-type(2) {
    margin-right: auto;
    display: block;
    width: fit-content;
  }

  /* 3つ目 → 右寄せ */
  .faq .inner .white_box:nth-of-type(3) {
    margin-left: auto;
    display: block;
    width: fit-content;
  }
  .faq .inner .white_box:nth-of-type(1)::after {
    position: absolute;
    content: "";
    width: 218px;
    height: 169px;
    background: url("../assets/img/faq_fig01.png") no-repeat center / contain;
    bottom: 0;
    right: -119px;
  }
  .faq .inner .white_box:nth-of-type(2)::before {
    position: absolute;
    content: "";
    width: 214px;
    height: 172px;
    background: url("../assets/img/faq_fig02.png") no-repeat center / contain;
    bottom: 0;
    left: -119px;
  }
  .faq .inner .white_box:nth-of-type(3)::after {
    position: absolute;
    content: "";
    width: 217px;
    height: 169px;
    background: url("../assets/img/faq_fig03.png") no-repeat center / contain;
    bottom: 0;
    right: -119px;
  }
  .faq {
    position: relative;
  }
  .faq::after {
    position: absolute;
    content: "";
    width: 137px;
    height: 78px;
    background: url("../assets/img/arrow_pink.png") no-repeat center / contain;
    bottom: -36px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .faq h2 {
    position: relative;
    font-size: clamp(15px, 4.0vw, 21px);
    font-weight: bold;
    line-height: 1.5;
    color: var(--color-txt);
    text-align: center;
    background: url(../assets/img/faq_ttl_bg.png) no-repeat center / contain;
    width: min(92vw, 555px);
    height: min(30vw, 163px);
    margin: 0 auto 25.5vw;
    padding: 5vw 10px;
  }
  .faq_ttl_fig {
    position: absolute;
    top: 16vw;
    left: 50%;
    transform: translateX(-54%);
    width: 83vw;
    text-align: center;
  }
  .faq .wrap {
    padding: 5vw 0 10vw;
    background: url("../assets/img/faq_bg_sp.jpg") no-repeat center / cover;
  }
  .faq .inner {
    text-align: center;
  }
  .faq .sub_ttl {
    font-size: 3.8vw;
    position: relative;
    display: inline-block;
    padding: 0 7vw;
    margin: 0 0 1vw;
    text-align: center;
  }
  .faq .sub_ttl:before,
  .faq .sub_ttl:after {
    content: "";
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 23px;
    height: 1px;
    background-color: #666;
  }

  .faq .sub_ttl:before {
    left: 0;
  }

  .faq .sub_ttl:after {
    right: 0;
  }
  .faq .white_box {
    position: relative;
    background-color: #fff;
    padding: 3vw 5vw;
    margin-top: 4vw;
    margin-left: auto;
    margin-right: auto;
    border-radius: 1.333vw;
    width: min(100%, 520px);
    max-width: calc(100vw - 24px);
    background-image: none;
    text-align: left;
  }
  .faq .white_box .heading {
    font-size: 4.2vw;
    color: var(--color-txt-light);
    font-weight: bold;
    line-height: 1.45;
    margin: 0 0 1vw;
  }
  .faq .white_box .txt {
    font-size: 3.6vw;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
  }
  .faq .white_box::after {
    position: absolute;
    content: "";
    bottom: -15px;
    right: 81px;
    width: 40px;
    height: 17px;
    background: #fff;
    clip-path: polygon(20% 0, 0% 100%, 100% 0);
    display: inline-block;
    border-radius: 20px;
  }
  .faq {
    position: relative;
  }
  .faq::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 55px;
    background: url(../assets/img/arrow_pink.png) no-repeat center / contain;
    bottom: -29px;
    left: 50%;
    transform: translateX(-50%);
  }
}
/* step
-------------------------------------------- */
.step.section-area {
  padding-top: 35px;
}
.step .ttl_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.step h2 {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.7;
  color: var(--color-txt-light);
}
.step .step_ttl {
  position: relative;
  background-color: var(--color-txt-light);
  border-radius: 4px 4px 0 0;
  text-align: center;
  width: 96.2%;
  margin: 0 auto;
  padding: 14px 0;
}

.step .step_ttl img {
  display: block;
  width: min(100%, 434px);
  margin: 0 auto;
}

.step .step_flex_wrap {
  display: flex;
  justify-content: start;
  align-items: stretch;
  gap: 15px;
}

.step .step_flex_wrap > img {
  width: 77px;
}

.step .white_box {
  background-color: #fff;
  width: 93.8%;
  margin: 0 auto;
  padding: 48px 44px 56px;
  border-radius: 0 0 19px 19px;
}

.step .step_box_wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.step .step_box_ttl_flex {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.step .step_box_ttl_flex p {
  flex: 1;
  margin: 0;
  font-size: 24px;
  line-height: 1.35;
  color: var(--color-txt-light);
  font-weight: bold;
  text-align: left;
}

.step .step_box > p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-txt);
  text-align: left;
}

.step .gaol_txt {
  margin: 0;
  font-size: 35px;
  line-height: 1.35;
  color: var(--color-txt-light);
  font-weight: bold;
  text-align: left;
}
@media (min-width: 769px) {
  .step .step_box:nth-child(2) {
    transform: translateY(-5px);
  }

  .step .gaol_txt {
    transform: translateY(-8px);
  }

    .step .ttl_flex > img.pc {
    width: 308px;
    max-width: 308px;
    flex: 0 0 308px;
  }

  .step h2 {
    flex: 0 1 auto;
  }

  .step h2 .white_line {
    white-space: nowrap;
  }

  .step .step_box_ttl_flex > img {
    width: 113px;
    max-width: 113px;
    flex: 0 0 113px;
  }
  /* 左端の三角形 */
  .step .step_ttl::before {
    content: "";
    position: absolute;
    bottom: -0.73em;
    left: 0;
    width: 0;
    height: 0;
    border-top: 12px solid #0b2760;
    border-left: 12px solid transparent;
  }

  /* 右端の三角形 */
  .step .step_ttl::after {
    content: "";
    position: absolute;
    bottom: -0.73em;
    right: 0;
    width: 0;
    height: 0;
    border-top: 12px solid #0b2760;
    border-right: 12px solid transparent;
  }
}

@media (max-width: 768px) {
  .step.section-area {
    padding-bottom: 0;
  }
  .step .inner {
    width: 100%;
  }
  .step h2 {
    font-size: 5.1vw;
    text-align: center;
    margin: 5vw auto;
  }
  .step .step_ttl {
    padding: 1.867vw 0;
    width: 100%;
    border-radius: 0;
  }
  .step .step_ttl img {
    width: 70vw;
  }
  .step .step_flex_wrap > div {
    flex: 1;
  }
  .step_flex_wrap img {
    width: 18vw;
  }
  .step .step_flex_wrap > img {
    width: 89px;
  }
  .step .white_box {
    padding: 32px 20px;
    width: 100%;
    border-radius: 0;
  }
  .step .step_box {
    margin-bottom: 7vw;
  }
  .step .step_box:nth-child(2) {
    transform: translateY(-10px);
  }
  .step .step_box:nth-child(3) {
    transform: translateY(-6px);
  }
  .step .step_flex_wrap {
    gap: 0;
  }
  .step .step_box_ttl_flex {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 2.133vw;
    margin-bottom: 2.133vw;
  }

  .step .step_box_ttl_flex p {
    font-size: clamp(18px, 5vw, 22px);
    line-height: 1.35;
    text-align: left;
  }

  .step .step_box > p {
    font-size: 14px;
    line-height: 1.75;
    text-align: left;
  }

  .step .gaol_txt {
    transform: translateY(-10px);
    font-size: clamp(21px, 5vw, 30px);
    line-height: 1.3;
    color: var(--color-txt-light);
    background: #eef1f9;
    padding: 10px 12px;
    font-weight: bold;
  }
  }

/* results
-------------------------------------------- */
.results {
  padding: 70px 0;
  background-color: #eaf0f9;
}

.results .ttl {
  padding: 4px 13px;
  display: inline-block;
  color: #fff;
  background-color: var(--color-txt-light);
}

.results h2 {
  margin: 0 auto 55px;
}

.results .result_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.results .result_box {
  width: 49%;
}

.results .white_box {
  position: relative;
  background-color: #fff;
  padding: 38px 18px 16px;
}

.result_project {
  position: absolute;
  top: -10px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 1.4px;
  color: var(--color-white);
  background-color: var(--color-accent);
  border-radius: 100px;
}

.results .ttl_flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.results .ttl_flex span {
  font-size: clamp(18px, 2.0vw, 25px);
  color: var(--color-txt-light);
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
}

.results .fig_flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.results .fig_flex p {
  flex: 1;
  position: relative;
  font-size: 14px;
  background-color: #eaf0f9;
  padding: 12px;
  font-weight: 500;
  min-height: 175px;
  text-align: left;
  line-height: 1.5;
}

.results .fig_flex p::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: -12px;
  width: 15px;
  height: 20px;
  background: #eaf0f9;
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
  display: inline-block;
}

.results .fig_flex > img {
  width: 140px;
}

.results .recommend_plan_flex {
  background-color: #547ac6;
  display: flex;
  align-items: stretch;
}

.results .recommend_plan {
  padding: 8px 12px;
  font-size: clamp(12px, 3.9vw, 17px);
  color: #fff;
  display: flex;
  align-items: center;
  text-align: center;
}

.results .recommend_plan_ttl {
  font-size: clamp(12px, 3.9vw, 20px);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 13px 16px;
  text-align: center;
}

.results .recommend_plan {
  position: relative;
  background: #254ca5;
}

.results .recommend_plan::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: -12px;
  width: 13px;
  height: 100%;
  background: #254ca5;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  display: inline-block;
}

.results .recommend_plan_ttl {
  font-weight: bold;
  margin: 0 auto;
}

@media (min-width: 901px) {
  /* 3つの青い矢印 */
  .results .ttl_flex .arrow_blue {
    width: 12px;
    height: 62px;
    max-width: 12px;
    flex: 0 0 12px;
    object-fit: contain;
  }

  /* 5分・30分の画像 */
  .results .ttl_flex > img:last-child {
    width: 207px;
    height: auto;
    max-width: 207px;
    flex: 0 0 207px;
    object-fit: contain;
  }

  /* PCのみ：業務改善カードの縦余白を縮小 */
  .results .white_box {
    padding: 28px 18px 12px;
  }

  .results .ttl_flex {
    margin-bottom: 18px;
  }

  .results .fig_flex p {
    min-height: 145px;
    padding: 10px 12px;
  }
}

@media (max-width: 900px) {
  .results {
    padding: 40px 0;
  }
  .results h2 {
    margin: 0 auto 26px;
    font-size: clamp(18px, 5.3vw, 48px);
  }
  .results .result_flex {
    flex-direction: column;
    gap: 5vw;
  }
  .results .result_box {
    width: 530px;
    max-width: calc(100% - 24px);
  }
  .results .fig_flex > img {
    width: 80px;
  }
  .results .fig_flex p {
    min-height: 0;
  }
  .results .ttl_flex {
    gap: 3vw;
  }
  .results .ttl_flex span {
    font-size: 18px;
    width: 130px;
  }
  .ttl_flex img:nth-child(2) {
    width: 6px;
  }
  .ttl_flex img:nth-child(3) {
    flex: 1;
    max-width: 150px;
  }
  .result_project {
    top: -13px;
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 400px) {
  .results .fig_flex {
    flex-direction: column;
  }
  .results .fig_flex p::after {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 15px;
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
  }
}

/* web_works
-------------------------------------------- */
@media (min-width: 769px) {
  .web_works {
    background-color: #eaf0f9;
    padding: 46px 0 0;
  }

  .web_works .inner {
    text-align: center;
  }

  .web_works h2 {
    display: inline-block;
    padding: 0 16px;
    margin: 0;
    background-color: #fff;
    color: var(--color-txt-light);
    font-size: 36px;
    font-weight: bold;
    line-height: 1.35;
  }

  .web_works .sub_ttl {
    margin: 12px 0 0;
    color: var(--color-txt-light);
    font-size: 46px;
    font-weight: bold;
    line-height: 1.35;
  }

  .web_works .txt_red {
    color: var(--color-accent);
  }

  .web_works p {
    text-align: center;
  }

  .web_works .web_works_txt {
    margin: 28px auto 42px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.75;
  }

  .web_works .companies {
    margin: 0;
    font-size: 23px;
    font-weight: bold;
  }

  .web_works .company_logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    padding: 16px 30px;
    margin: 20px 0 48px;
    background-color: #fff;
    text-align: center;
  }

  .web_works .company_logo_item {
    flex: 0 1 205px;
    width: 100%;
    max-width: 205px;
    min-width: 0;
  }

  .web_works .company_logo_item picture {
    display: block;
  }

  .web_works .company_logo_item img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  /* problem-solution */
  .problem-solution {
    padding: 44px 0 46px;
    background:
      url(../assets/img/problem-solution_bg.jpg)
      no-repeat
      center / cover;
  }

  .problem-solution .inner {
    text-align: left;
  }

  .problem-solution .concern_txt {
    padding: 4px 8px;
    margin: 0 0 12px;
    color: var(--color-txt-light);
    font-size: 24px;
    font-weight: bold;
    text-align: left;
  }

  .problem-solution .concern_txt span {
    position: relative;
    padding: 2px 10px;
    margin-right: 4px;
    background-color: #fff;
    border-radius: 50px;
  }

  .problem-solution .concern_txt span::after {
    position: absolute;
    bottom: -18px;
    right: 50px;
    display: inline-block;
    width: 15px;
    height: 20px;
    content: "";
    background: #fff;
    clip-path: polygon(13% 0, 8% 65%, 100% 0);
  }

  .problem-solution .beginner_info {
    position: relative;
    display: inline-block;
    padding: 10px 16px 10px 54px;
    margin: 8px auto 20px;
    background-color: var(--color-txt-light);
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.15;
  }

  .problem-solution .beginner_info::before {
    position: absolute;
    top: 50%;
    left: 11px;
    width: 35px;
    height: 45px;
    content: "";
    background:
      url(../assets/img/beginner_badge.png)
      no-repeat
      center / contain;
    transform: translateY(-50%);
  }

  .problem-solution .solution_txt {
    margin: 0;
    color: var(--color-txt-light);
    font-size: 30px;
    font-weight: bold;
    line-height: 1.45;
    text-align: left;
  }

  .problem-solution .txt_red {
    color: var(--color-accent);
  }
}

@media (max-width: 768px) {
  .web_works .blue_bg {
    position: relative;
    padding: 6vw 0 22vw;
    background-color: #eaf0f9;
  }

  .web_works .blue_bg::before {
    position: absolute;
    bottom: 15px;
    left: 50%;
    width: 90px;
    height: 63px;
    content: "";
    background:
      url(../assets/img/arrow_pink.png)
      no-repeat
      center / contain;
    transform: translateX(-50%);
  }

  .web_works .inner {
    text-align: center;
  }

  .web_works h2 {
    display: inline-block;
    padding: 0 2.133vw;
    margin: 0;
    background-color: #fff;
    color: var(--color-txt-light);
    font-size: 4.8vw;
    font-weight: bold;
    line-height: 1.4;
  }

  .web_works .sub_ttl {
    margin: 2.4vw 0 0;
    color: var(--color-txt-light);
    font-size: 5.6vw;
    font-weight: bold;
    line-height: 1.45;
  }

  .web_works .txt_red {
    color: var(--color-accent);
  }

  .web_works p {
    text-align: center;
  }

  .web_works .web_works_txt {
    padding: 0 4vw;
    margin: 5.5vw auto 7vw;
    font-size: 3.7vw;
    font-weight: 500;
    line-height: 1.75;
  }

  .web_works .companies {
    margin: 0;
    font-size: 4.5vw;
    font-weight: bold;
  }

  .web_works .company_logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4vw 2.4vw;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    padding: 2.5vw 5vw 3vw;
    margin: 2vw 0 0;
    background-color: #fff;
    text-align: center;
  }

  .web_works .company_logo_item {
    justify-self: center;
    width: 100%;
    max-width: 145px;
    min-width: 0;
    margin: 0;
  }

  /* 1枚目を上段中央 */
  .web_works .company_logo_item:first-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    max-width: 145px;
  }

  .web_works .company_logo_item picture {
    display: block;
  }

  .web_works .company_logo_item img {
    display: block;
    width: 100%;
    height: auto;
  }

  /* problem-solution */
  .problem-solution .inner {
    width: 100%;
    padding-bottom: 4vw;
    background: #bed1ed;
  }

  .problem-solution .concern_txt {
    margin: 0;
    background-color: #eaf0f9;
  }

  .problem-solution .concern_txt img {
    position: relative;
    display: block;
    width: 90vw;
    margin: 0 auto -17vw;
  }

  .problem-solution .problem-solution_bg {
    display: block;
    width: 100%;
    height: auto;
  }

  .problem-solution .beginner_info {
    position: relative;
    display: inline-block;
    max-width: calc(100% - 8vw);
    padding: 1.6vw 2.4vw 1.6vw 7.6vw;
    margin: -7px auto 14px;
    background-color: var(--color-txt-light);
    color: #fff;
    font-size: 5.2vw;
    font-weight: 700;
    line-height: 1.25;
  }

  .problem-solution .beginner_info::before {
    position: absolute;
    top: 50%;
    left: 1.6vw;
    width: 4.4vw;
    height: 5.6vw;
    content: "";
    background:
      url(../assets/img/beginner_badge.png)
      no-repeat
      center / contain;
    transform: translateY(-50%);
  }

  .problem-solution .solution_txt {
    padding: 0 5vw 1vw;
    margin: 0;
    color: var(--color-txt-light);
    font-size: 3.8vw;
    font-weight: bold;
    line-height: 1.65;
    text-align: left;
  }

  .problem-solution .txt_red {
    color: var(--color-accent);
  }
}

/* skills
-------------------------------------------- */
@media (min-width: 769px) {
  .skills {
    padding: 40px 0 56px;
    background-color: #eaf0f9;
  }

  #about,
  #support-areas,
  #load-map,
  #plan,
  #voice,
  #c_form {
    scroll-margin-top: 96px;
  }

  .skills .sub_ttl {
    font-size: 36px;
    font-weight: bold;
    color: var(--color-txt-light);
    text-align: center;
    margin: 0 0 4px;
  }

  .skills h2 {
    font-size: 46px;
    font-weight: bold;
    color: var(--color-txt-light);
    text-align: center;
    margin: 0 0 28px;
  }

  /* カード全体ラッパー */
  .skill-wrapper {
    width: 47%;
  }

  /* 見出しバー */
  .skill-header {
    background-color: #a7bde8;
    color: #254ca5;
    font-size: 25px;
    font-weight: bold;
    padding: 4px 16px;
    text-align: center;
    margin-bottom: 16px;
  }

  /* 各項目 */
  .skill-item {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 32px;
    margin-bottom: 16px;
    justify-content: center;
    gap: 16px;
  }

  /* アイコン画像 */
  .skill-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
  }

  .skill-icon img {
    max-width: 100%;
    max-height: 100%;
    display: block;
  }

  /* テキスト部分 */
  .skill-text {
    flex: 1;
  }

  .skill-title {
    margin: 0 0 6px;
    font-size: 25px;
    font-weight: 700;
  }

  .skill-desc {
    margin: 0;
  }

  .skills_flex_wrap {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .skills {
    padding: 35px 0 7.467vw;
    background-color: #eaf0f9;
  }

  .skills .sub_ttl {
    font-size: 4.8vw;
    font-weight: bold;
    color: var(--color-txt-light);
    text-align: center;
    margin: 0 0 2vw;
  }

  .skills h2 {
    font-size: clamp(15px, 6.5vw, 32px);
    font-weight: bold;
    color: var(--color-txt-light);
    text-align: center;
    margin: 0 auto 1vw;
  }

  /* カード全体ラッパー */
  .skill-wrapper {
    width: 100%;
  }
  /* 見出しバー */
  .skill-header {
    background-color: #a7bde8;
    color: #254ca5;
    font-size: 4.5vw;
    font-weight: bold;
    padding: 0.533vw 2.133vw;
    text-align: center;
    margin-bottom: 2.133vw;
  }
  /* 各項目 */
  .skill-item {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 3vw 6vw;
    margin-bottom: 2.133vw;
    justify-content: center;
    gap: 5vw;
  }
  /* アイコン画像 */
  .skill-icon {
    flex-shrink: 0;
    width: 15vw;
    height: 15vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2.4vw;
  }
  .skill-icon img {
    max-width: 100%;
    max-height: 100%;
    display: block;
  }
  /* テキスト部分 */
  .skill-text {
    flex: 1;
  }
  .skill-title {
    margin: 0 0 0.8vw;
    font-size: 4.5vw;
    font-weight: 700;
  }
  .skill-desc {
    margin: 0;
    font-size: 14px;
  }
  .skills_flex_wrap {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 5vw;
  }
}

/* design
-------------------------------------------- */
.design .lead_ttl {
  position: relative;
  display: inline-block;
  margin-bottom: 5px;
  color: var(--color-txt-light);
  font-size: 21px;
}
.design .lead_ttl:before,
.design .lead_ttl:after {
  position: absolute;
  bottom: 0;
  content: '';
  width: 2.5px;
  height: 90%;
  background-color: var(--color-txt-light);
}
.design .lead_ttl:before {
  right: -15px;
  transform: rotate(35deg);
}
.design .lead_ttl:after {
  left: -15px;
  transform: rotate(-35deg);
}

.design .lead-text {
  position: relative;
  margin: 0 auto;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: bold;
  padding: 10px 0;
  color: #254ca5;
  text-align: center;
  background-color: #d0e0f7;
  z-index: 0;
}

.design .lead-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  aspect-ratio: 1;
  clip-path: polygon(0 0,100% 0,0 100%);
  background: #b9cfef;
  z-index: -1;
}

.design .lead-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: auto;
  height: 100%;
  aspect-ratio: 1;
  clip-path: polygon(0 100%,100% 0,100% 100%);
  background: #b9cfef;
  z-index: -1;
}

.design ul {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  margin: 30px 10px 50px;
  padding: 0;
  list-style: none;
}

.design li {
  list-style: none;
}

.design li::marker {
  content: "";
}

@media (max-width: 768px) {
  .design ul {
    gap: 10px;
    margin: 25px 5px 35px;
  }
  .design .lead_ttl {
    font-size: 19px;
  }
}

/* load-map
-------------------------------------------- */
.section-area.load-map {
  padding-top: 20px;
}

@media (max-width: 768px) {
  .section-area.load-map {
    padding: 10px 0 30px;
  }
  .section-area.load-map .contents-area {
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .scroll_text {
    text-align: end;
    font-size: 13px;
    padding-bottom: 8px;
    color: #818c97;
  }
  .section-area.load-map .contents-area img {
    max-width: 100%;
    min-width: 700px;
    vertical-align: top;
  }
}

/* scrollbar
-------------------------------------------- */
/*スクロールバー全体の高さ*/
.scroll-box::-webkit-scrollbar {
  height: 4px;
}
/*スクロールバー全体の背景*/
.scroll-box::-webkit-scrollbar-track {
  background: #eee;
}
/*スクロールバーの動く部分*/
.scroll-box::-webkit-scrollbar-thumb {
  background: #aaa;
  border: none;
}
/*スクロールバーの動く部分のホバー（マウスオーバー）*/
.scroll-box::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* support
-------------------------------------------- */

/* セクション見出し */
.section-area.support .section_ttl-area {
  padding: 0 0 28px;
}

.section-area.support .lead_ttl {
  margin: 0 0 5px;
  font-size: 18px;
  line-height: 1.4;
}

.section-area.support .ttl {
  margin: 0;
  font-size: 35px;
  line-height: 1.35;
}

/* リスト・段落の標準余白を解除 */
.support ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.support_contents p {
  margin: 0;
}

/* 支援カード */
.support_contents {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5%;
  margin-bottom: 26px;
  padding: 40px 65px 28px;
  background-color: #fff;
  box-sizing: border-box;
}

.support_contents:last-child {
  margin-bottom: 0;
}

.support_text_block {
  flex: 1;
  text-align: start;
}

/* 「まずは現状を把握」など */
.support_lead_ttl {
  padding-bottom: 4px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

/* 「業務ヒアリング・AI活用診断」など */
.support_ttl {
  color: #254ca5;
  font-size: 28px;
  line-height: 1.4;
  font-weight: bold;
}

/* 導入段階・説明文 */
.support_description_box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

.support_description_block {
  display: flex;
}

.support_description_ttl,
.support_description {
  display: flex;
  align-items: center;
  padding: 6px 15px;
  line-height: 1.6;
}

.support_description_ttl {
  width: 140px;
  flex-shrink: 0;
  justify-content: center;
  color: #254ca5;
  background-color: #cad9ef;
  font-size: 16px;
  font-weight: 400;
}

.support_description {
  flex: 1;
  justify-content: start;
  background-color: #eaf0f9;
  font-size: 16px;
  font-weight: 400;
}

.support_img_block {
  width: 28%;
}

.support_img_block picture,
.support_img_block img {
  display: block;
  width: 100%;
  height: auto;
}

.support_bk_number {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: auto;
}

/* SP */
@media (max-width: 768px) {
  .section-area.support .section_ttl-area {
    padding: 0 0 20px;
  }

  .section-area.support .lead_ttl {
    margin: 0 0 4px;
    font-size: 16px;
  }

  .section-area.support .ttl {
    margin: 0;
    font-size: 24px;
    line-height: 1.4;
  }

  .support_contents {
    flex-direction: column-reverse;
    gap: 0;
    margin-bottom: 18px;
    padding: 20px;
  }

  .support_text_block {
    width: 100%;
    margin-top: 14px;
  }

  .support_lead_ttl {
    padding-bottom: 3px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
  }

  .support_ttl {
    font-size: 22px;
    line-height: 1.4;
  }

  .support_description_box {
    gap: 10px;
    margin-top: 12px;
  }

  .support_description_block {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
  }

  .support_description_ttl,
  .support_description {
    width: 100%;
    height: auto;
    padding: 6px 10px;
    box-sizing: border-box;
  }

  .support_description_ttl {
    font-size: 14px;
    font-weight: 400;
  }

  .support_description {
    font-size: 15px;
    line-height: 1.65;
    font-weight: 400;
  }

  .support_img_block {
    width: 78%;
    margin-top: 6px;
  }

  .support_img_block picture,
  .support_img_block img {
    display: block;
    margin: 0 auto;
  }

  .support_bk_number {
    width: 70px;
  }
}

/* voice
-------------------------------------------- */
.voice .contents-area{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  justify-content: center;
}
.section-area.voice .section_ttl-area {
  padding: 0 0 14px;
}

.section-area.voice .lead_ttl {
  margin: 0 0 6px;
}

.section-area.voice .ttl {
  margin: 0;
}
.voice ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px 20px;
  margin: 18px auto 0;
  padding: 0;
  list-style: none;
}
.voice_contents {
  position: relative;
  width: calc((100% - 20px) / 2);
  background-color: #eaf0f9;
  margin-top: 20px;
  padding: 0 20px 24px;
  color: #254ca5;
  list-style: none;
  box-sizing: border-box;
}

.voice_ttl_block {
  min-height: 95px;
  text-align: start;
  display: flex;
  align-items: center;
}

.voice_ttl_block p {
  margin: 0 0 0 104px;
  padding: 0;
  min-height: auto;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.35;
}

.voice_detail_block {
  position: relative;
  background-color: #fff;
  text-align: start;
  line-height: 1.9;
  padding: 30px;
  min-height: 170px;
}

.voice_detail_block img {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 18px;
  width: auto;
  height: 100px;
  margin: 0;
}

.voice_detail_block p {
  margin: 0;
  color: var(--color-txt);
  font-size: 15px;
  line-height: 1.85;
}

@media (max-width: 768px) {
  .section-area.voice .contents-area {
    display: flex;
    gap: 30px;
    margin-top: 0;
    flex-direction: column;
    align-items: center;
  }

  .voice ul {
    flex-direction: column;
    gap: 20px;
    margin: 10px auto 0;
    padding: 0;
    align-items: center;
  }

  .voice_contents {
    width: 100%;
    max-width: 520px;
    box-sizing: border-box;
    padding: 0 18px 20px;
  }

  .voice_ttl_block {
    min-height: 82px;
  }

  .voice_ttl_block p {
    margin-left: 80px;
    min-height: auto;
    padding: 0;
    font-size: 18px;
    line-height: 1.35;
  }

  .voice_detail_block {
  padding: 18px 20px;
  min-height: auto;
  }

  .voice_detail_block img {
    left: 10px;
    bottom: calc(100% + 4px);
    width: auto;
    height: 86px;
  }

  .voice_detail_block p {
  font-size: 15px;
  line-height: 1.7;
  }

    .section-area.voice .section_ttl-area {
    padding: 0 0 10px;
  }

  .section-area.voice .lead_ttl {
    margin: 0 0 6px;
  }

  .section-area.voice .ttl {
    margin: 0;
  }
}

/* plan
-------------------------------------------- */
/* 横スクロール許容コンテナ（小さい画面用） */
.plan_wrap {
  max-width: 100%;
  padding-bottom: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.plan_attention {
  display: none;
}

/* テーブル */
.plan_table {
  margin-top: 10px;
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

/* プラン見出し（thead） */
.plan_table thead th {
  position: relative;
  padding: 16px 12px;
  background: #002f82;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  line-height: 1.4;
}

/* 各セル（td） */
.plan_table td {
  background: #fff;
  vertical-align: top;
  padding: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

/* セクションごとに余白を作る */
.plan_block {
  padding: 14px 10px 0;
  background-color: #fff;
}

/* 共通のセクション見出し */
.plan_title {
  background: #002e7e;
  padding: 1px 12px;
  font-size: 15px;
  text-align: center;
  color: #ffffff;
}

/* 価格部分 */
.plan_price {
  text-align: center;
  padding: 6px 0 0;
}
.plan_price_before {
  position: relative;
  color: #00a9e3;
  display: block;
  padding: 0 2px;
  text-align: left;
  margin: auto auto auto 10px;
  width: fit-content;
  font-size: 16px;
}
.plan_price_before > span {
  margin-right: 3px;
  font-size: 20px;
  font-weight: 500;
}
.plan_price_main {
  font-size: 17px;
  color: #0052a2;
  font-weight: 800;
  margin-bottom: 6px;
}
.plan_price_main > span {
  font-size: 37px;
  line-height: 1;
  color: #fd2e37;
  margin-right: 3px;
}
.plan_price_sub {
  line-height: 1;
  text-align: right;
  font-size: 12px;
  color: #808080;
}

/* 小見出し */
.plan_contents {
  padding: 12px 5px 0;
  border-radius: 6px;
}
.plan_contents > div {
  position: relative;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
  color: #0052a2;
  background-color: rgba(0, 45, 122, 0.15);;
  padding: 3px 7px;
}

/* リスト */
.plan_contents ul, .plan_recommend_box ul {
  margin: 0;
  padding: 0 0 0 28px;
  list-style: disc;
  color: #0052a2;
}
.plan_contents li, .plan_recommend_box li {
  position: relative;
  margin-bottom: 6px;
  line-height: 1.45;
  font-size: 15px;
  list-style: none;
}
.plan_contents li::before, .plan_recommend_box li::before {
  position: absolute;
  top: 6px;
  left: -20px;
  content: '';
  display: block;
  width: 13px;
  height: 7px;
  border-left: 2px solid #00c0ea;
  border-bottom: 2px solid #00c0ea;
  transform: rotate(-45deg);
}

.plan_block .plan_contents:nth-child(3) li span {
  background: linear-gradient(transparent 70%, #fbf87f 30%);
}

.plan_recommend .blue {
  color: #00a9e3;
  font-weight: bold;
}

/* 活用定着 */
.plan_project .plan_contents {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}

.plan_project .plan_contents > span {
  font-size: 38px;
}

/* 特長エリア */
.plan_feature {
  background: #d4ddec;
  padding: 12px;
  margin-bottom: 15px;
  line-height: 1.3;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-txt);
}

/* キャンペーン用CSS */
.plan_price_cp {
  color: #fd2e37;
  font-weight: bold;
  background-color: #fff64dc2;
}
.plan_price_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.plan_price_before.__cp {
  margin-right: inherit;
  margin-left: inherit;
}
.plan_price_before.__cp::after {
  position: absolute;
  top: 0;
  right: -15px;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 13px;
  content: '';
  background-color: #919191;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.plan_price_after {
  font-size: 18px;
  color: #fd2e37;
}
.plan_price_after > span {
  margin-left: 3px;
  font-size: 24px;
  font-weight: 500;
}

/* 価格グレーアウト __gray */
.plan_price_before.__gray {
  position: relative;
  color: #939393;
}
.plan_price_before.__gray::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  content: '';
  background-color: #818181;
}

/* プランごとの色分け */
.plan_table thead th:nth-child(2), .plan_table tr td:nth-child(2) .plan_title {
  background: #164ba1;
}
.plan_table tbody td:nth-child(2) .plan_feature {
  background: rgb(217, 229, 246);
}
.plan_table tbody td:nth-child(2) .plan_contents > div {
  background-color: #d9e5f6;
}
.plan_table thead th:nth-child(3), .plan_table tr td:nth-child(3) .plan_title {
  background: #1773cd;
}
.plan_table tbody td:nth-child(3) .plan_feature {
  background: rgb(213, 227, 243);
}
.plan_table tbody td:nth-child(3) .plan_contents > div {
  background-color: #d9e5f6;
}

@media (max-width: 720px) {
  .plan_table {
    width: 800px;
  }

  .plan_attention {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    text-align: right;
    color: #818c97;
  }
}

/* form
-------------------------------------------- */

.cv_section {
  background: var(--color-background);
}
#end_fixedcta .cv_section {
  padding-top: 40px;
}
@media (max-width: 768px) {
  #end_fixedcta .cv_section {
    padding-top: 24px;
  }
}
.cv_section > .ttl {
    background: var(--color-txt-light);
    color: var(--color-white);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    text-align: center;
    font-weight: bold;
    padding: 0.8em 1rem;
}

.privacy_text_box h2.dec {
  background-color: #8fc0ff !important;
}

.privacy_text_box .text_wrapper{
    font-size: 1.3rem;
}

.privacy_text_box .ttl{
    font-size: 1.1em;
    font-weight: bold;
    margin-block: 1.2rem 0.6rem;
}

#end_fixedcta .form-inner {
  padding: 1rem 0;
}
#c_form {
  scroll-margin-top: 96px;
}

.form-privacy-note {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 10px;
  color: #818c97;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  text-align: center;
}

.form-privacy-note a {
  color: inherit;
  text-decoration: underline;
}
@media (max-width: 768px) {
  #c_form {
    scroll-margin-top: 80px;
  }
}

@media (max-width: 480px) {
  .form-privacy-note {
    padding: 0 8px;
    font-size: 12px;
    text-align: left;
  }
}

.google-form-wrapper {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 16px;
  overflow: hidden;
  background-color: #d1dbec;
  border-radius: 12px;
}

.google-form-embed {
  display: block;
  width: 100%;
  height: 962px;
  border: 0;
}

.google-form-note {
  margin: 12px 0 0;
  color: var(--color-txt);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.google-form-note a {
  color: var(--color-txt-light);
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .google-form-wrapper {
    padding: 8px;
    border-radius: 8px;
  }

  .google-form-embed {
    height: 1100px;
  }
}
/* ______________________________________________________________ 問合せフォーム 確認事項*/

.cv_section .form_wrapper .form_wrapper_inner form .input_area dl dd.checkbox .day_item.confirm  {
  display: flex;
  align-items: flex-start;
}
.cv_section .form_wrapper .form_wrapper_inner form .input_area dl dd.checkbox .day_item.confirm label {
  text-align: left;
  margin-left: 3px;
}

/* footer-------------------------------------------- */
footer .footer_top_wrapper {
  background-color: var(--color-txt-light)!important;
}

.site-footer {
  padding: 40px 20px 24px;
  color: var(--color-white);
  background-color: var(--color-txt);
}

.site-footer-inner {
  width: min(100%, 1080px);
  margin: 0 auto;
  text-align: center;
}

.site-footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer-nav li {
  margin: 0;
  list-style: none;
}

.site-footer-nav a {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-footer-nav a:hover {
  opacity: 0.7;
}

.site-footer-nav a:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 4px;
}

.site-footer-copyright {
  margin: 28px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 32px 16px 20px;
  }

  .site-footer-nav ul {
    gap: 10px 20px;
  }

  .site-footer-nav a {
    font-size: 13px;
  }

  .site-footer-copyright {
    margin-top: 24px;
    padding-top: 16px;
  }
}

/* AI支援プラン
-------------------------------------------- */

.ai-plan_cards {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.ai-plan_card {
  min-width: 0;
  padding: 34px 36px 30px;
  border: 1px solid rgba(20, 56, 104, 0.14);
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(20, 56, 104, 0.08);
}

.ai-plan_card_header {
  max-width: 820px;
  margin: 0 auto 24px;
  text-align: center;
}

.ai-plan_card_label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 10px;
  padding: 6px 18px;
  border-radius: 999px;
  background-color: #e8f2ff;
  color: #1a4f95;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 700;
}

.ai-plan_card_name {
  margin: 0;
  color: var(--color-txt-light);
  font-size: 3rem;
  line-height: 1.4;
  font-weight: 700;
}

.ai-plan_card_text {
  margin: 10px 0 0;
  color: var(--color-txt);
  font-size: 1.6rem;
  line-height: 1.8;
}

.ai-plan_target {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto 24px;
  padding: 12px 20px;
  border-radius: 6px;
  background-color: #eef5ff;
}

.ai-plan_target span {
  flex: 0 0 auto;
  padding: 4px 12px;
  border-radius: 999px;
  background-color: #1f57a8;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 700;
}

.ai-plan_target p {
  margin: 0;
  color: var(--color-txt);
  font-size: 1.5rem;
  line-height: 1.7;
  font-weight: 500;
}

.ai-plan_phase_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ai-plan_phase {
  min-width: 0;
  padding: 22px 20px;
  border: 1px solid #c9dcf5;
  border-radius: 8px;
  background-color: #f7faff;
}

.ai-plan_phase_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.ai-plan_phase_no {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 4px;
  background-color: #1f57a8;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 700;
}

.ai-plan_phase_timing {
  color: #1f57a8;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 700;
}

.ai-plan_phase_title {
  margin: 0;
  color: var(--color-txt-light);
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
}

.ai-plan_phase_list {
  margin: 14px 0 0;
  padding-left: 1.4em;
  color: var(--color-txt);
  font-size: 1.5rem;
  line-height: 1.8;
}

.ai-plan_phase_list li + li {
  margin-top: 4px;
}

.ai-plan_estimate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-top: 24px;
  padding: 20px 24px;
  border-radius: 8px;
  background-color: #1f57a8;
}

.ai-plan_estimate_main {
  flex: 0 0 auto;
  text-align: center;
}

.ai-plan_estimate_heading {
  margin: 0;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 700;
}

.ai-plan_estimate_value {
  margin: 2px 0 0;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 700;
}

.ai-plan_estimate_note {
  margin: 0;
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.8;
}


/* SP
-------------------------------------------- */

@media screen and (max-width: 767px) {

  .ai-plan_card {
    padding: 24px 16px 20px;
  }

  .ai-plan_card_header {
    margin-bottom: 18px;
  }

  .ai-plan_card_label {
    margin-bottom: 8px;
    font-size: 1.2rem;
  }

  .ai-plan_card_name {
    font-size: 2.2rem;
  }

  .ai-plan_card_text {
    margin-top: 8px;
    font-size: 1.4rem;
    line-height: 1.7;
    text-align: left;
  }

  .ai-plan_target {
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
    padding: 10px 12px;
  }

  .ai-plan_target span {
    font-size: 1.1rem;
  }

  .ai-plan_target p {
    font-size: 1.3rem;
    line-height: 1.6;
  }

  .ai-plan_phase_grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ai-plan_phase {
    padding: 18px 16px;
  }

  .ai-plan_phase_head {
    margin-bottom: 10px;
  }

  .ai-plan_phase_title {
    font-size: 1.8rem;
  }

  .ai-plan_phase_list {
    margin-top: 10px;
    font-size: 1.4rem;
    line-height: 1.7;
  }

  .ai-plan_estimate {
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
    padding: 18px 14px;
  }

  .ai-plan_estimate_value {
    font-size: 2.1rem;
  }

  .ai-plan_estimate_note {
    padding: 12px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.45);
    border-left: none;
    font-size: 1.3rem;
    line-height: 1.7;
    text-align: center;
  }

}

/* SPの主要セクション見出しサイズを統一 */
@media (max-width: 768px) {
  .about h2,
  .faq h2,
  .step h2,
  .results .inner > .ttl,
  .web_works h2,
  .skills h2,
  .section-area .section_ttl-area > .ttl,
  #end_fixedcta .cv_section > .ttl {
    font-size: clamp(15px, 6.5vw, 32px);
  }
}
