@charset "UTF-8";


/* 共通 */
body {
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
}

main {
  overflow-x: clip;
}

.pc_br {
  display: block;
}

.sp_br{
  display: none;
}

@media screen and (max-width: 767px) {
  .pc_br {
    display: none;
  }

  .sp_br{
    display: block;
  }
}

.visually_hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}


/* ヘッダー */
.site_header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #EAF8FD;
}

.site_header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 60px;
}

.site_header_brand {
  display: flex;
  align-items: center;
}

.site_header_logo {
  width: 180px;
  flex-shrink: 0;
}

.site_header_logo img {
  display: block;
  width:90%;
}

.site_header_catch {
  color: #63656B;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.site_header_nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site_header_nav_list {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site_header_nav_list a {
  color: #63656B;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.site_header_nav_list a:hover {
  color: #0388FF;
}

.site_header_cv {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 80px 12px 24px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #FFB300 0%,
    #FF7A00 100%
  );
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.site_header_cv_image {
  position: absolute;
  top: 50%;
  right: -35px;
  width: 110px;
  height: auto;
  transform: translateY(-50%) rotate(12deg);
  transform-origin: center center;
}

.site_header_cv span {
  padding: 2px 7px;
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    #67CAFF 0%,
    #0388FF 100%
  );
}

.site_header_menu {
  display: none;
}

.sp_menu {
  display: none;
}

@media screen and (max-width: 1279px){
  .site_header_logo {
    width: 150px;
  }

  .site_header_catch {
    font-size: 12px;
}

  .site_header_nav_list {
    gap: 16px;
}

.site_header_nav_list a {
    font-size: 14px;
}

.site_header_nav {
  gap: 20px;
}

.site_header_cv{
  font-size: 16px;
}
}

@media screen and (max-width: 1100px){
.site_header_cv_image{
  display: none;
}  
.site_header_cv{
  padding: 12px 34px 12px 24px;
}
}

@media screen and (max-width: 1024px) {
  .site_header_inner {
    padding: 20px 16px;
  }

.site_header_logo {
  width: 150px;
}

.site_header_catch {
  font-size: 10px;
}

  .site_header_nav {
    display: none;
  }

  .site_header_menu {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    width: 48px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
  }

  .site_header_menu span {
    display: block;
    width: 42px;
    height: 4px;
    background: #63656B;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .site_header.is_open .site_header_menu span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
  }

  .site_header.is_open .site_header_menu span:nth-child(2) {
    opacity: 0;
  }

  .site_header.is_open .site_header_menu span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
  }

  .sp_menu {
  display: block;
  position: fixed;
  top: 85px;
  left: 0;
  width: 100%;
  height: calc(100vh - 108px);
  padding: 28px 16px 40px;
  background: #FFFFFF;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.site_header.is_open .sp_menu {
  opacity: 1;
  visibility: visible;
}

  .sp_menu_nav {
    display: grid;
  }

  .sp_menu_nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #D7D7D7;
    color: #63656B;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
  }

  .sp_menu_nav a img {
    width: 18px;
    height: 18px;
  }

  .sp_menu_cv {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 8px;
    max-width: 340px;
    margin: 50px auto 0;
    padding: 18px 48px 20px;
    border-radius: 999px;
    background: linear-gradient(
  90deg,
  #FFB300 0%,
  #FF7A00 100%
);
    color: #FFFFFF;
    text-decoration: none;
    box-shadow: 0 6px 12px rgba(255, 111, 22, 0.25);
  }

  .sp_menu_cv small {
    position: absolute;
    top: -18px;
    left: 50%;
    min-width: 190px;
    padding: 4px 18px;
    border-radius: 999px;
    background: #FFFFFF;
    color: #FF4D01;
    font-size: 14px;
    font-weight: 700;
    transform: translateX(-50%);
  }

  .sp_menu_cv span {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
  }

  .sp_menu_cv em {
    padding: 2px 8px;
    border-radius: 4px;
    background: linear-gradient(
    90deg,
    #67CAFF 0%,
    #0388FF 100%
  );
    font-style: normal;
    font-size: 18px;
  }

  .sp_menu_cv img {
    position: absolute;
    right: 12px;
    bottom: 22px;
    width: 31px;
    height: 31px;
  }
}


/* FV */

.fv_picture,
.fv_text {
  display: none;
}

.fv_picture.is_active,
.fv_text.is_active {
  display: block;
}

.fv_picture img {
  display: block;
  width: 100%;
  height: auto;
}


/* CTA */
.download_section {
  padding: 40px 20px 70px;
  background: #FFF8E8;
}

.download_section_inner {
  max-width: 1040px;
  margin: 0 auto;
}

.download_price img{
  width: 80%;
  margin: 0 auto;
  display: block;
  height: auto;
}

.download_arrow img,
.download_lead img,
.download_logo img,
.download_book img {
  display: block;
  width: 100%;
  height: auto;
}

.download_price {
  max-width: 1020px;
  margin: 0 auto;
}

.download_arrow {
  width: 160px;
  margin: 24px auto 10px;
}

.download_lead {
  width: 410px;
  margin: 30px auto;
}

.download_content {
  display: grid;
  grid-template-columns: 370px 430px;
  justify-content: center;
  align-items: start;
  gap: 0;
}

.download_visual img {
  display: block;
  max-width: 100%;
  height: auto;
}

.download_visual {
  display: grid;
  gap: 0;
  width: 370px;
}

.download_logo {
  width: 180px;
  margin: 0 auto;
}

.download_book {
  width: 356px;
  margin: 0 auto;
}

.download_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 390px;
  max-width: none;
  justify-self: auto;
}

.download_button {
  position: relative;
  display: grid;
  justify-items: center;
  max-width: 400px;
  margin: 45px 0;
  padding: 28px 30px;
  border-radius: 999px;
  background: linear-gradient(90deg, #FFB300 0%, #FF7A00 100%);
  color: #FFFFFF;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.download_button:hover {
    transform: translateY(-1px);
    box-shadow:
        0 6px 24px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(255, 255, 255, 0.35);
}

.download_button small {
  position: absolute;
  top: -18px;
  padding: 5px 28px;
  border-radius: 999px;
  background: #FFFFFF;
  color: #FF4D01;
  font-size: 18px;
  font-weight: 800;
}

.download_button span {
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.download_list {
  display: grid;
  gap: 10px;
  font-size: 18px;
  color: #63656B;
  font-weight: 600;
  
}

.download_list li {
  position: relative;
  padding-left: 34px;
}

.download_list li::before {
  content: "";
  position: absolute;
  top: 0.15em;
  left: 0;
  width: 22px;
  height: 22px;
  background: url("../images/icon_check_blue.svg") center center / contain no-repeat;
}

.download_note {
  margin-top: 14px;
  color: #63656B;
  font-size: 16px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .download_section {
    padding: 60px 16px;
  }

  .download_price img{
  width: 100%;
}

  .download_arrow {
    width: 128px;
    margin: 18px auto 12px;
  }

  .download_lead {
    width: 280px;
    margin-bottom: 13px;
  }

  .download_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }

  .download_logo {
    width: 220px;
  }

  .download_book {
    width: 100%;
    max-width: 320px;
  }

  .download_info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .download_text {
    width: fit-content;
  }

  .download_button {
    order: -1;
    margin: 8px 0 28px;
    padding: 24px 31px;
  }

  .download_button small {
    font-size: 16px;
  }

  .download_button span {
    font-size: 20px;
  }

  .download_list {
    width: fit-content;
    margin: 0 auto;
  }

  .download_list li {
    font-size: 16px;
  }

  .download_note {
    text-align: center;
    font-size: 14px;
  }
}


/* 流れ */
.flow_section {
  position: relative;
  padding: 130px 20px;
  background: #FFFFFF url("../images/flow_bg.webp") center center / cover no-repeat;
}

.flow_section_inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.flow_heading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.flow_device {
  flex-shrink: 0;
  width: 250px;
  height: 140px;
  background: url("../images/flow_device.webp") center center / contain no-repeat;
}

.flow_title {
  color: #0388FF;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.flow_lead {
  margin-top: 18px;
  color: #63656b;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.flow_lead span {
  font-weight: 700;
  background: linear-gradient(transparent 70%, #FFF701 100%);
}

.flow_image_pc {
  display: grid;
  gap: 18px;
  max-width: 880px;
  margin: 48px auto 0;
}

.flow_image_pc img,
.flow_image_sp img {
  display: block;
  width: 100%;
  height: auto;
}

.flow_image_sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .flow_section {
    padding: 80px 16px;
    background: #FFFFFF url("../images/flow_bg_sp.webp") center top / cover no-repeat;
  }

  .flow_heading {
    display: block;
    margin-bottom: 0;
  }

  .flow_device {
    display: none;
  }

  .flow_title {
    font-size: 1.375rem;
    line-height: 1.4;
  }

  .flow_lead {
    margin-top: 12px;
    font-size: 16px;
    text-align: left;
  }

  .flow_image_pc {
    display: none;
  }

  .flow_image_sp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 8px;
    max-width: 360px;
    margin: 28px auto 0;
  }
}


/* 不安・疑問 */
.about_section {
  background: #F0FAFF;
}

.about_inner {
  max-width: 740px;
  margin: 0 auto;
  padding: 130px 0 0;
}

.about_problem {
  position: relative;
}

.about_problem::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 0;
  width: 200px;
  height: 230px;
  background: url("../images/about_doctor.webp") center center / contain no-repeat;
}

.about_problem_head {
  position: relative;
  z-index: 1;
  text-align: center;
}

.about_problem_label {
  position: relative;
  display: inline-block;
  min-width: 320px;
  padding: 10px 32px;
  border-radius: 999px;
  background: #FFFFFF;
  color: #63656B;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.about_problem_label::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 0;
  height: 0;
  border-top: 16px solid #FFFFFF;
  border-right: 14px solid transparent;
  border-left: 14px solid transparent;
  transform: translateX(-50%);
}

.about_problem_label span {
  color: #FF3636;
}

.about_problem_title {
  margin-top: 46px;
  color: #0D4565;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
}

.about_problem_title span {
  font-size: 2.5rem;
  background: linear-gradient(
    90deg,
    #67CAFF 0%,
    #0388FF 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about_problem_list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  margin: 40px auto;
}

.about_problem_list li {
  position: relative;
  padding: 18px 20px 18px 60px;
  border-radius: 12px;
  background: #FFFFFF;
  color: #63656B;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
}

.about_problem_list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  width: 28px;
  height: 28px;
  background: url("../images/icon_check_blue.svg") center center / contain no-repeat;
  transform: translateY(-50%);
}

.about_problem_list li span {
  color: #0388FF;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .about_solution{
    background: #FFFFFF url("../images/about_bg_sp.webp") center center / cover no-repeat;
  }

  .about_inner {
    padding: 80px 16px 0;
  }

  .about_problem::before {
    top: 35px;
    right: -20px;
    width: 180px;
    height: 200px;
  }

  .about_problem_head {
    text-align: left;
  }

  .about_problem_label {
    min-width: 230px;
    padding: 12px 22px;
    font-size: 16px;
    text-align: center;
  }

  .about_problem_title {
    margin-top: 28px;
    font-size: 1.5rem;
    line-height: 1.45;
  }

  .about_problem_title span {
  font-size: 2rem;
}


  .about_problem_list {
    gap: 12px;
    margin-top: 32px;
  }

  .about_problem_list li {
    padding: 16px 5px 16px 43px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.6;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  }

  .about_problem_list li::before {
    left: 12px;
    width: 24px;
    height: 24px;
  }
}

/* 矢印 */
.about_arrow {
  width: 68px;
  margin: 36px auto 34px;
}

.about_arrow img {
  display: block;
  width: 100%;
  height: auto;
}

/* お任せください！ */
.about_solution {
  position: relative;
  padding-bottom: 130px;
  background: #F0FAFF url("../images/about_bg.webp") center center / cover no-repeat;
  scroll-margin-top: 100px;
}

.about_solution_title {
  color: #0D4565;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.about_solution_title .title_deco {
  position: relative;
  display: inline-block;
  color: #0388FF;
  font-size: 3rem;
}

.about_solution_title .title_deco::before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  width: 36px;
  height: 18px;
  background: url("../images/title_deco.svg") center center / contain no-repeat;
  transform: translateX(-50%);
}

.about_solution_lead {
  margin-top: 12px;
  color: #63656B;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
}

.about_solution_lead span {
  color: #FF6F16;
  font-weight: 700;
}

.about_solution_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 850px;
  margin: 44px auto 0;
}

.about_solution_card {
  padding:25px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.about_solution_head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about_solution_point_box {
  flex-shrink: 0;
  width: 72px;
}

.about_solution_point {
  font-size: 1.8rem;
  line-height: 1;
  background: linear-gradient(90deg, #67CAFF 0%, #0388FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about_solution_number {
  display: block;
  width: 64px;
  height: auto;
  margin-top: 6px;
}

.about_solution_card_title {
  color: #0388FF;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}

.about_solution_image {
  display: block;
  width: auto;
  height: 150px;
  margin: 24px auto 26px;
}

.about_solution_text {
  color: #63656B;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  text-align: justify
}

@media screen and (max-width: 767px) {
  .about_solution {
    padding: 0 16px 80px;
  }

  .about_solution_title {
    font-size: 1.25rem;
    line-height: 1.3;
  }

  .about_solution_title span {
    font-size: 16px;
  }

  .about_solution_title .title_deco {
    font-size: 2rem;
}

.about_solution_title .title_deco::before {
    content: "";
    position: absolute;
    top: -4%;
    left: 5%;
    width: 30px;
    height: 18px;
    background: url(../images/title_deco.svg) center center / contain no-repeat;
    transform: translateX(-50%);
}

  .about_small_sp{
    font-size: 16px;
  }

  .about_solution_lead {
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.5;
  }

  .about_solution_list {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
  }

  .about_solution_card {
    padding: 20px 15px;
    border-radius: 14px;
  }

  .about_solution_head {
    gap: 6px;
  }

  .about_solution_point_box {
    width: 64px;
  }

  .about_solution_point {
    font-size: 1.5rem;
  }

  .about_solution_number {
    width: 58px;
  }

  .about_solution_card_title {
    font-size: 1.25rem;
  }

  .about_solution_image {
    margin: 20px auto 22px;
  }

  .about_solution_text {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* 共通cta */
.cta_button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 80px auto 0;
  gap: 10px;
  width: fit-content;
  min-width: 390px;
  padding: 32px 64px 32px 36px;
  border-radius: 999px;
  background: linear-gradient(90deg, #FFB300 0%, #FF7A00 100%);
  color: #FFFFFF;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.4s ease;
}

.cta_button:hover {
  transform: translateY(-1px);
    box-shadow:
        0 6px 24px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(255, 255, 255, 0.35);
}

.cta_button_label {
  position: absolute;
  top: -19px;
  left: 50%;
  padding: 3px 20px;
  border-radius: 999px;
  background: #FFFFFF;
  color: #FF4D01;
  font-size: 1.125rem;
  font-weight: 800;
  white-space: nowrap;
  transform: translateX(-50%);
}

.cta_button_text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.75rem;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  text-align: center;
}

.cta_button_text em {
  padding: 4px 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, #67CAFF 0%, #0388FF 100%);
  font-style: normal;
  font-size: 1.25rem;
}

.cta_button_document {
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 80px;
  height: auto;
  transform: rotate(12deg);
}

@media screen and (max-width: 767px) {
  .cta_button {
    width: 100%;
    min-width: auto;
    max-width: 360px;
    padding: 22px 56px 22px 28px;
  }

  .cta_button_label {
    font-size: 16px;
  }

  .cta_button_text {
    font-size: 20px;
  }

  .cta_button_text em {
    font-size: 1.25rem;
  }

  .cta_button_icon {
    right: 14px;
    width: 30px;
    height: 30px;
  }
}


/* すべて自動化 */
.effect_section {
  padding: 130px 20px;
  background: #FFFFFF;
}

.effect_inner {
  max-width: 1040px;
  margin: 0 auto;
}

.effect_title {
  color: #0D4565;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}

.effect_title_box {
  position: relative;
  display: inline-block;
  gap: 4px;
  padding: 0 54px;
  font-size: 1.5rem;
}

.effect_title_box::before,
.effect_title_box::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px;
  height: 76px;
  background: url("../images/title_bracket.svg") center center / contain no-repeat;
  transform: translateY(-50%);
}

.effect_title_box::before {
  left: 0;
}

.effect_title_box::after {
  right: 0;
  transform: translateY(-50%) scaleX(-1);
}

.effect_title_box span {
  color: #FF7A00;
}

.effect_title_lead {
  display: block;
  margin-top: 20px;
  color: #0388FF;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}

.effect_flow {
  position: relative;
  margin-top: 42px;
}

.effect_flow img {
  display: block;
  width: 100%;
  height: auto;
}

.effect_zoom_button {
  display: none;
}

.effect_sub_title {
  margin-top: 44px;
  color: #0D4565;
  font-size: 1.625rem;
  font-weight: 700;
  text-align: center;
}

.effect_card_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-top: 24px;
}

.effect_card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px 14px;
  border: 1px solid currentColor;
  border-radius: 10px;
}

.effect_card_green {
  color: #13BFA6;
  background: #F3FAF7;
}

.effect_card_blue {
  color: #0388FF;
  background: #F5F8FD;
}

.effect_card_purple {
  color: #7A6CFF;
  background: #F5F8FD;
}

.effect_card_head {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 8px;
}

.effect_card_image {
  display: block;
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.effect_card_title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}

.effect_card_title_small {
  font-size: 16px;
}

.effect_card_lead {
  margin-top: 6px;
  color: #0D4565;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.effect_card_list_inner {
  display: grid;
  gap: 8px;
}

.effect_card_list_inner li {
  position: relative;
  padding-left: 22px;
  color: #0D4565;
  font-size: 14px;
  font-weight: 500;
}

.effect_card_list_inner li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 18px;
  height: 18px;
}

.effect_card_green li::before {
  background: url("../images/effect_icon_check_green.svg") center center / contain no-repeat;
}

.effect_card_blue li::before {
  background: url("../images/effect_icon_check_blue.svg") center center / contain no-repeat;
}

.effect_card_purple li::before {
  background: url("../images/effect_icon_check_purple.svg") center center / contain no-repeat;
}

.effect_card_numbers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
  gap: 8px;
  margin-top: auto;
}

.effect_card_green .effect_card_number::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 26px;
  margin-left: 0;
  background: url("../images/icon_up.svg") center center / contain no-repeat;
  vertical-align: -2px;
}

.effect_card_number {
  margin: 0;
  padding: 8px 6px;
  border: 1px solid currentColor;
  border-radius: 14px;
  background: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.effect_card_number span {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.effect_card_number em {
  display: block;
  color: #FF9900;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1;
}



.effect_modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.effect_modal.is_open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.effect_modal img {
  display: block;
  max-width: 96vw;
  max-height: 86vh;
  height: auto;
}

.effect_modal_close {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1;
}

@media screen and (max-width: 767px) {
  .effect_section {
    padding: 80px 16px;
  }

  .effect_title_box {
    padding: 0 28px;
    font-size: 18px;
  }

  .effect_title_box::before,
  .effect_title_box::after {
    width: 16px;
    height: 72px;
  }

  .effect_title_lead {
    margin-top: 18px;
    font-size: 1.5rem;
  }

  .effect_flow {
    margin-top: 28px;
  }
  .effect_card_list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .effect_card_head {
    grid-template-columns: 64px 1fr;
    gap: 12px;
  }

  .effect_card_image {
    width: 64px;
  }

  .effect_card_title {
    font-size: 18px;
  }

  .effect_card_number span {
    font-size: 2rem;
  }

.effect_zoom_button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: block;
  width: 74px;
  height: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  appearance: none;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.effect_zoom_button img {
  display: block;
  width: 100%;
  height: auto;
}

  .effect_zoom_button span {
    display: block;
    font-size: 2.6rem;
    line-height: 1;
  }

  .effect_sub_title {
    margin-top: 40px;
    font-size: 1.25rem;
  }

  .effect_card_list {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
  }

  .effect_modal {
  justify-content: flex-start;
  overflow: auto;
  padding: 24px 16px;
}

.effect_modal img {
  width: 650px;
  max-width: none;
  max-height: none;
  margin: auto 0;
}
}


/* 事例 */
.case_section {
  padding: 130px 0 130px 30px;
  background: #FFFFFF;
}

.case_inner {
  max-width: 100%;
  margin: 0 auto;
}

.case_result_title {
  position: relative;
  color: #0D4565;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.case_result_title > span {
  position: relative;
  display: inline-block;
  margin-bottom: 22px;
  padding: 0 48px;
  font-size: 1.5rem;
  line-height: 2;
}

.case_result_title > span::before,
.case_result_title > span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 70px;
  background: url("../images/title_bracket.svg") center / contain no-repeat;
  transform: translateY(-50%);
}

.case_result_title > span::before {
  left: 0;
}

.case_result_title > span::after {
  right: 0;
  transform: translateY(-50%) scaleX(-1);
}

.case_result_title em {
  color: #FF7A00;
  font-style: normal;
}

.case_result_title {
  color: #0388FF;
}

.case_result_title > span {
  color: #0D4565;
}

.case_result_list {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.case_result_list img {
  display: block;
  width: 140px;
  height: auto;
}

.case_result_text {
  margin-top: 30px;
  color: #63656B;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

.case_title {
  margin-top: 80px;
  color: #0388FF;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.case_slider {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 52px;
  overflow: hidden;
}

.case_slider_track {
  display: flex;
  gap: 60px;
  padding-inline: calc((100vw - 790px) / 2);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.case_card {
  position: relative;
  display: grid;
  grid-template-columns: 290px 1fr;
  grid-template-areas:
    "head compare"
    "text text";
  gap: 18px 14px;
  flex: 0 0 790px;
  padding: 37px 20px 17px;
  border: 1px solid #0388FF;
  border-radius: 8px;
  background: #F3FBFF;
}

.case_card_label {
  position: absolute;
  top: -14px;
  left: 24px;
  z-index: 2;
  padding: 6px 24px;
  border-radius: 999px;
  background: #3AB8FF;
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 700;
}

.case_card_head {
  grid-area: head;
  display: block;
}

.case_card_head img {
  display: block;
  width: 100%;
  max-width: 285px;
  margin-top: 18px;
}

.case_card_title {
  color: #0D4565;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.case_card_title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #67CAFF 0%, #0388FF 100%);
  border-radius: 999px;
}

.case_card_lead {
  margin-top: 8px;
  color: #0D4565;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.case_card_lead span {
  color: #FF7A00;
}

.case_card_compare {
  position: relative;
  grid-area: compare;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-top: 0;
}

.case_card_compare::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 36px;
  background: url("../images/flow_arrow.svg") center center / contain no-repeat;
  transform: translate(-50%, -50%) rotate(-90deg);
  z-index: 9999;
}

.case_card_compare > div {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
}

.case_card_compare p {
  padding: 6px 10px;
  color: #FFFFFF;
  font-weight: 700;
  text-align: center;
}

.case_card_compare > div:first-child p {
  background: #0388FF;
}

.case_card_compare > div:last-child p {
  background: #FF7A00;
}

/* ulをsubgridで左右の行高さを同期 */
.case_card_compare > div {
  display: grid;
  grid-template-rows: auto 1fr;
}

.case_card_compare ul {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  padding: 0 12px;
}

.case_card_compare li {
  display: flex;
  align-items: center;
  padding: 7px 0;
  color: #0D4565;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.case_card_compare li + li {
  border-top: 1px solid #8CCBFF;
}

.case_card_compare > div:last-child li + li {
  border-top-color: #FFB866;
}

/* spanはスタイルなし（テキストラッパーのみ） */
.case_card_compare li span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/* 強調テキスト */
.case_card_compare li em {
  color: #FF7A00;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
}

.case_card_text {
  grid-area: text;
  margin-top: 0;
  padding: 12px 16px;
  background: #E0F5FF;
  color: #0D4565;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}

.case_slider {
  overflow: hidden;
  padding-top: 20px;
}

.case_slider_control {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.case_slider_prev,
.case_slider_next {
  width: 34px;
  height: 34px;
  border: 1px solid #0388FF;
  border-radius: 50%;
  background: #FFFFFF;
  color: #0388FF;
  cursor: pointer;
}

.case_slider_dots {
  display: flex;
  gap: 10px;
}

.case_slider_dots button {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #D8D8D8;
  appearance: none;
  cursor: pointer;
}

.case_slider_dots button.is_active {
  background: #0388FF;
}

.case_cta {
  margin: 76px auto 0;
}

@media screen and (max-width: 767px) {
  .case_section {
    /* overflow: hidden; */
    margin: 80px 16px;
    padding: 0;
  }

  .case_result_title {
    font-size: 1.25rem;
  }

  .case_result_title > span {
    padding: 0 32px;
    font-size: 1.125rem;
    line-height: 1.4;
  }

  .case_card{
    gap: 8px 14px;
  }

  .case_card_label{
    font-size: 16px;
  }

  .case_result_list {
    gap: 4px;
  }

  .case_result_list img {
    width: calc((100% - 8px) / 3);
  }

  .case_result_text {
    margin-top:16px;
    text-align: left;
    line-height: 1.8;
  }

  .case_title {
    margin-top: 62px;
    font-size: 2rem;
  }

  .case_slider {
    margin-top: 38px;
  }

  .case_slider_track {
    gap: 16px;
    padding: 0 16px;
  }

  .case_card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "compare"
      "text";
    flex: 0 0 100%;
    padding: 34px 16px 18px;
  }

  .case_card_title {
    font-size: 1.25rem;
  }

  .case_card_head img {
    width: 57px;
    max-width: none;
    position: absolute;
    top: 36px;
    right: 18px;
    margin-top: 0;
  }

  .case_card_head {
    padding-right: 68px;
  }

  .case_card_compare {
    gap: 8px;
  }

  .case_card_compare ul {
    padding: 0 7px;
  }

  .case_card_compare li {
    font-size: 0.85rem;
  }

  .case_card_compare li em {
    font-size: 1rem;
  }

  .case_card_text{
    font-size: 14px;
    padding: 8px ;
  }

  .case_slider_control {
    margin-top: 24px;
  }

  .case_cta {
    margin-top: 58px;
  }
}


/* 比較表 */
.comparison_section {
  padding: 130px 20px;
  background: #EAF8FD;
}

.comparison_inner {
  max-width: 1040px;
  margin: 0 auto;
}

.comparison_title {
  color: #0388FF;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.comparison_table {
  position: relative;
  max-width: 1040px;
  margin: 44px auto 0;
}

.comparison_table.is_full {
  max-width: 1040px;
}

.comparison_more_button.is_hidden {
  display: none;
}

.comparison_table_image {
  display: block;
  width: 100%;
  height: auto;
}

.comparison_modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  visibility: hidden;
}

.comparison_modal.is_open {
  opacity: 1;
  visibility: visible;
}

.comparison_modal img {
  display: block;
  max-width: 96vw;
  max-height: 86vh;
  height: auto;
}

.comparison_zoom_button {
  display: none;
}

.comparison_more_button {
  display: block;
  margin: 32px auto 0;
  padding: 8px 16px;
  border: 2px solid #0D4565;
  background: #FFFFFF;
  color: #0D4565;
  font-weight: 700;
  cursor: pointer;
}

.comparison_table_sp {
  display: none;
}

body.is_modal_open {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .comparison_section {
    padding: 80px 16px;
  }

  .comparison_title {
    font-size: 2rem;
  }

@media screen and (max-width: 767px) {
  .comparison_zoom_button {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: block;
    width: 74px;
    height: auto;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    appearance: none;
    transform: translate(-50%, -50%);
    cursor: pointer;
    overflow: visible;
  }

  .comparison_zoom_button img {
    display: block;
    width: 100%;
    height: auto;
  }
}

  .comparison_table {
    max-width: 100%;
    overflow: hidden;
  }

  .comparison_table_image {
    width: 100%;
  }

  .comparison_zoom_button img {
    width: 64px;
  }

    .comparison_modal {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: auto;
    padding: 24px 16px;
  }

  .comparison_modal img {
    display: block;
    width: 600px;
    max-width: none;
    max-height: none;
    height: auto;
    margin: auto 0;
  }

  .comparison_modal_close {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1;
  }

  .comparison_more_button {
    display: none;
  }

  .comparison_table_pc {
    display: none;
  }

  .comparison_table_sp {
    display: block;
  }
}


/* 導入フロー */
.flow_step_section {
  padding: 130px 20px;
  background: #FFFFFF url("../images/flow_step_bg.webp") center center / cover no-repeat;
}

.flow_step_inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.flow_step_title {
  color: #0388FF;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.flow_step_title_lead {
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto 14px;
  padding: 0 54px;
  color: #0D4565;
  font-size: 1.5rem;
  line-height: 1.6;
}

.flow_step_title_lead::before,
.flow_step_title_lead::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 72px;
  background: url("../images/title_bracket.svg") center center / contain no-repeat;
  transform: translateY(-50%);
}

.flow_step_title_lead::before {
  left: 0;
}

.flow_step_title_lead::after {
  right: 0;
  transform: translateY(-50%) scaleX(-1);
}

.flow_step_title_lead em {
  color: #FF7A00;
  font-style: normal;
}

.flow_step_badge {
  color: #0388FF;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
}

.flow_step_badge em {
  background: linear-gradient(transparent 64%, #FFE500 50%);
  font-style: normal;
  color: #0388FF;
}

.flow_step_badge--sp{
  display: none;
}

.flow_step_list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 48px;
  counter-reset: flow_step;
}

.flow_step_item {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;

  width: 163px;
  height: 163px;
  padding: 6px;

  border: 1px solid #67CAFF;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.5);
}

.flow_step_item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -25px;

  width: 32px;
  height: 18px;

  background:
    url("../images/flow_arrow.svg")
    center center / contain no-repeat;

  transform: translateY(-50%) rotate(-90deg);
  z-index: 99;
}

.flow_step_item img {
  display: block;
  width: auto;
  height: 45%;
  margin-top: 18px;
}

  .flow_step_item:nth-child(4) img {
    transform: translateY(-9px);
  }

.flow_step_text {
  color: #3AB8FF;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.flow_step_text span {
  display: block;
  color: #0D4565;
  font-size: 1.125rem;
  font-weight: 700;
}

.flow_step_button {
  margin: 76px auto 0;
}

@media screen and (max-width: 1085px){
  .flow_step_list {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 300px;
    margin: 15px auto 0;
  }  
  .flow_step_item {
    display: grid;
    grid-template-columns: 1fr 80px;
    align-items: center;
    justify-content: initial;
    justify-items: initial;

    width: 100%;
    height: 96px;
    padding: 12px 45px;
  }

  .flow_step_item img {
    width: auto;
    height: 54px;
    margin-top: 0;
    justify-self: center;
  }

  .flow_step_item:not(:last-child)::after {
    top: auto;
    right: auto;
    left: 50%;
    bottom: -16px;

    width: 32px;
    height: 18px;

    background: url("../images/flow_arrow.svg") center center / contain no-repeat;

    transform: translateX(-50%) rotate(0);
  }
}

@media screen and (max-width: 767px) {
  .flow_step_section {
    padding: 80px 16px;
    background: #FFFFFF url("../images/flow_step_bg_sp.webp") center center / cover no-repeat;
  }

  .flow_step_title {
    font-size: 2rem;
  }

  .flow_step_title_lead {
    padding: 0 28px;
    font-size: 1.25rem;
  }

  .flow_step_title_lead::before,
  .flow_step_title_lead::after {
    width: 16px;
    height: 72px;
  }






  .flow_step_text {
    text-align: left;
    font-size: 1.3rem;
  }

  .flow_step_button {
    margin-top: 58px;
  }
}

@media screen and (min-width: 768px) {
  .flow_step_title  { order: 1; }
  .flow_step_list   { order: 2; }
  .flow_step_badge  { order: 3; margin-top: 28px; }
  .flow_step_button { order: 4; }
}

@media screen and (max-width: 767px) {
  .flow_step_badge--sp{
    display: block;
  }

  .flow_step_badge--pc{
    display: none;
  }
  .flow_step_title  { order: 1; }
  .flow_step_badge  {
    order: 2;
    max-width: 305px;
    margin: 20px auto 0;
  }
  .flow_step_badge em {
    background: none;
    color: #fff;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .flow_step_list   { order: 3; }
  .flow_step_button { order: 4; }
}



/* faq */
.faq_section {
  padding: 130px 20px;
  background: #FFFFFF;
}

.faq_inner {
  max-width: 920px;
  margin: 0 auto;
}

.faq_title {
  color: #0388FF;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}

.faq_list {
  display: grid;
  gap: 14px;
  margin-top: 44px;
}

.faq_item {
  overflow: hidden;
  border-radius: 10px;
  background: #EAF8FD;
}

.faq_question {
  display: grid;
  grid-template-columns: 32px 1fr 24px;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  color: #0D4565;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq_question::-webkit-details-marker {
  display: none;
}

.faq_question span {
  color: #0388FF;
  font-size: 1.5rem;
  font-weight: 700;
}

.faq_question i {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0388FF;
}

.faq_question i::before,
.faq_question i::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 2px;
  background: #FFFFFF;
}

.faq_question i::after {
  transform: rotate(90deg);
}

.faq_item[open] .faq_question i::after {
  transform: rotate(0);
}

.faq_answer {
  padding: 0 64px 22px;
  color: #0D4565;
  font-size: 1rem;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .faq_section {
    padding: 80px 16px;
  }

  .faq_title {
    font-size: 2rem;
  }

  .faq_question {
    grid-template-columns: 28px 1fr 22px;
    padding: 18px 14px;
    font-size: 1rem;
  }

  .faq_answer {
    padding: 0 44px 22px;
    font-size: 0.95rem;
  }
}


/* cta 3 */
.final_download_section {
  padding: 70px 20px;
  background: linear-gradient(180deg, #0388FF 0%, #67CAFF 100%);
}

.final_download_inner {
  max-width: 900px;
  margin: 0 auto;
}

.final_download_title {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.final_download_box {
  margin-top: 34px;
  padding: 34px 54px 42px;
  border-radius: 18px;
  background: #FFFFFF;
}

.final_download_box .download_lead {
  width: 360px;
  margin: 0 auto 20px;
}

.final_download_box .download_content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
}

.final_download_box .download_logo {
  width: 220px;
  margin: 0 auto 8px;
}

.final_download_box .download_book {
  width: 330px;
  margin: 0 auto;
}

.final_download_box .download_list {
  font-size: 0.95rem;
}

.final_download_box .download_note {
  font-size: 0.85rem;
}

.final_download_box .download_button {
  margin: 30px auto 0;
}

@media screen and (max-width: 767px) {
  .final_download_section {
    padding: 72px 16px;
  }

  .final_download_box {
    margin-top: 28px;
    padding: 28px 20px 32px;
    border-radius: 16px;
  }

  .final_download_box .download_lead {
    width: 260px;
    margin-bottom: 22px;
  }

  .final_download_box .download_content {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .final_download_box .download_logo {
    width: 220px;
  }

  .final_download_box .download_book {
    width: 100%;
    max-width: 320px;
  }

  .final_download_box .download_info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .final_download_box .download_button {
    order: -1;
    margin: 8px auto 28px;
  }

  .final_download_box .download_text {
    width: fit-content;
  }
}


/* footer */
.footer {
  padding: 80px 20px 100px;
  background: #EAF8FD;
}

.footer_inner {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.footer_logo {
  display: inline-block;
}

.footer_logo img {
  display: block;
  width: 240px;
  height: auto;
}

.footer_nav {
  margin-top: 48px;
}

.footer_nav_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
}

.footer_nav_list a {
  color: #0D4565;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer_copy {
  margin-top: 32px;
  color: #0D4565;
  font-size: 12px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 70px 16px 80px;
  }

  .footer_logo img {
    width: 200px;
  }

  .footer_nav {
    margin-top: 40px;
  }

  .footer_nav_list {
    flex-direction: column;
    gap: 28px;
  }
}


/* form */
.form_section {
  padding: 48px 20px;
  background: #EAF8FD;
}

.form_inner {
  max-width: 1040px;
  margin: 0 auto;
}

.form_box {
  padding: 60px 80px;
  border-radius: 20px;
  background: #FFFFFF;
}

.form_title {
  color: #0D4565;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
}

.form_download {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap:16px;
  max-width: 680px;
  margin: 40px auto 0;
}

.form_download_image img {
  display: block;
  width: 100%;
}

.form_download_list {
  padding: 18px 22px;
  border-radius: 6px;
  background: #EAF8FD;
}

.form_download_list p {
  color: #0D4565;
  font-size: 0.9rem;
  font-weight: 700;
}

.form_download_list li {
  position: relative;
  margin-top: 8px;
  padding-left: 22px;
  color: #0D4565;
  font-size: 0.85rem;
}

.form_download_list li::before {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 14px;
  height: 14px;
  background: url("../images/icon_check_blue.svg") center / contain no-repeat;
}

.form_content {
  display: grid;
  gap: 18px;
  max-width: 680px;
  margin: 48px auto 0;
}

.form_item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.form_item label,
.form_item p {
  color: #0D4565;
  font-size: 0.95rem;
  font-weight: 700;
}

.form_item span {
  margin-left: 6px;
  padding: 2px 5px;
  background: #FF1F1F;
  color: #FFFFFF;
  font-size: 0.75rem;
}

.form_item input,
.form_item select {
  width: 100%;
  padding: 13px 16px;
  border: none;
  background: #EAF8FD;
  color: #0D4565;
}

.form_item_check {
  align-items: start;
}

.form_item_check label {
  display: flex;
  align-items: center;
  gap: 10px;

  grid-column: 2;
  font-weight: 500;
}

.form_item_check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
}

input[name="agree"] ,
input[name="not_patient"] {
  width: 15px;
  height: 15px;
}

.form_agree {
  display: grid;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  color: #0D4565;
  font-size: 0.85rem;
  text-align: center;
}

.form_agree a {
  color: #0388FF;
  text-decoration: underline;
}

.form_submit {
  width: 320px;
  margin: 34px auto 0;
  padding: 18px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(90deg, #67CAFF 0%, #0388FF 100%);
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
}

.contact_notice {
  margin-top: 24px;
  padding: 24px;
  border-radius: 8px;
  background: #F9ECEE;
}

.contact_notice_title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #B64E5E;
  font-size: 1rem;
  font-weight: 700;
}

.contact_notice_title span {
  color: #FF4D4F;
  font-size: 1.25em;
  line-height: 1;
}

.contact_notice p:not(.contact_notice_title) {
  color: #8A5A63;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.contact_notice p + p {
  margin-top: 12px;
}

.form_box_label {
  color: #0388FF;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.form_lead {
  margin-top: 16px;
  color: #0D4565;
  font-size: 0.875rem;
  line-height: 1.7;
}

.form_columns {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.form_left .form_download {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 100%;
  margin: 0;
}

.form_right .form_content {
  max-width: 100%;
  margin: 0;
}

/* form_titleは左寄せに上書き */
.form_left .form_title {
  text-align: left;
}

.form_item .form_tel_small{
  font-size: 14px;
  color: #8b8b8b;
  font-weight: 500;
  margin-top: -5px;
}

@media screen and (max-width: 767px) {
  .form_section {
    padding: 24px 16px;
  }

  .form_box {
    padding: 40px 16px;
    border-radius: 14px;
  }

  .form_title {
    font-size: 1.5rem;
  }

  .form_download {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
  }

  .form_content {
    margin-top: 32px;
  }

  .form_item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .form_item_check label {
    grid-column: auto;
  }

  .form_submit {
    width: 100%;
    max-width: 260px;
  }

  .form_columns {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form_left .form_title {
    text-align: center;
  }

  input[name="agree"], input[name="not_patient"] {
    width: 22px;
    height: 22px;
}
}


/* 確認画面 */
.confirm {
  padding: 48px 20px;
  background: #EAF8FD;
}

.confirm .innerBox {
  max-width: 1040px;
  margin: 0 auto;
  padding: 60px 80px;
  border-radius: 20px;
  background: #FFFFFF;
}

.confirm .index {
  color: #0D4565;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
}

.confirm .leadBox {
  margin-top: 24px;
  text-align: center;
}

.confirm .txt {
  color: #0D4565;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.8;
}

.confirm .formBox {
  max-width: 680px;
  margin: 48px auto 0;
}

.confirm .contBox {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid #D8EEF7;
}

.confirm .ttl {
  color: #0D4565;
  font-size: 0.95rem;
  font-weight: 700;
}

.confirm .label {
  margin-left: 6px;
  padding: 2px 5px;
  background: #FF1F1F;
  color: #FFFFFF;
  font-size: 0.75rem;
}

.confirm .confirmCont {
  width: 100%;
  min-height: 48px;
  padding: 13px 16px;
  background: #EAF8FD;
  color: #0D4565;
  font-size: 0.95rem;
  line-height: 1.6;
}

.confirm .submitBox {
  margin-top: 40px;
}

.confirm .submitBox .inner {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.confirm .btn {
  display: grid;
  place-items: center;
  width: 220px;
  min-height: 56px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.confirm .btn__submit {
  border: none;
  background: linear-gradient(90deg, #67CAFF 0%, #0388FF 100%);
  color: #FFFFFF;
}

.confirm .btn__back {
  border: 1px solid #0388FF;
  background: #FFFFFF;
  color: #0388FF;
}

@media screen and (max-width: 767px) {
  .confirm {
    padding: 24px 16px;
  }

  .confirm .innerBox {
    padding: 40px 16px;
    border-radius: 14px;
  }

  .confirm .index {
    font-size: 1.5rem;
  }

  .confirm .formBox {
    margin-top: 32px;
  }

  .confirm .contBox {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .confirm .submitBox .inner {
    flex-direction: column;
    align-items: center;
  }

  .confirm .submitBox .btnBox {
    width: 100%;
    max-width: 260px;
  }

  .confirm .btn {
    width: 100%;
  }

  .confirm .submitBox .btnBox {
    order: 1;
  }

  .confirm .submitBox .btnBox__back {
    order: 2;
  }
}


/* エラーページ */
.error_section {
  padding: 48px 20px;
  background: #EAF8FD;
}

.error_inner {
  max-width: 1040px;
  margin: 0 auto;
}

.error_box {
  padding: 60px 80px;
  border-radius: 20px;
  background: #FFFFFF;
  text-align: center;
}

.error_title {
  color: #0D4565;
  font-size: 2.5rem;
  font-weight: 700;
}

.error_text {
  margin-top: 28px;
  color: #0D4565;
  font-size: 0.95rem;
  line-height: 1.8;
}

.error_button {
  display: grid;
  place-items: center;
  width: 320px;
  min-height: 56px;
  margin: 40px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #67CAFF 0%, #0388FF 100%);
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .error_section {
    padding: 24px 16px;
  }

  .error_box {
    padding: 40px 16px;
    border-radius: 14px;
  }

  .error_title {
    font-size: 1.5rem;
  }

  .error_button {
    width: 100%;
    max-width: 260px;
  }
}


/* サンクス */
.thanks_section {
  padding: 48px 20px;
  background: #EAF8FD;
}

.thanks_inner {
  max-width: 1040px;
  margin: 0 auto;
}

.thanks_box {
  padding: 60px 80px;
  border-radius: 20px;
  background: #FFFFFF;
  text-align: center;
}

.thanks_title {
  color: #0D4565;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.thanks_text {
  max-width: 760px;
  margin: 40px auto 0;
}

.thanks_text p {
  color: #63656B;
  line-height: 2;
}

.thanks_text p + p {
  margin: 10px 0 30px;
}

.thanks_timerex iframe {
  width: 100%;
}

.thanks_button {
  display: grid;
  place-items: center;
  width: 320px;
  min-height: 56px;
  margin: 40px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #67CAFF 0%, #0388FF 100%);
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .thanks_section {
    padding: 32px 16px;
  }

  .thanks_box {
    padding: 40px 18px;
    border-radius: 14px;
  }

  .thanks_title {
    font-size: 1.65rem;
    line-height: 1.45;
  }

  .thanks_text {
    margin-top: 28px;
  }

  .thanks_text p {
    font-size: 0.95rem;
    line-height: 1.9;
  }

  .thanks_text p + p {
    margin-top: 16px;
  }

  .thanks_reserve {
    margin: 32px 0 16px;
    font-size: 1.05rem;
    line-height: 1.6;
    text-align: center;
  }

  .thanks_timerex {
    margin-top: 24px;
  }

  .thanks_button {
    width: 100%;
    max-width: 260px;
    margin-top: 32px;
  }
}


/* プライバシーポリシー */
.underlayer {
  max-width: 960px;
  margin: 0 auto;
  padding: 64px 20px;
}

.underlayer .contents {
  padding: 56px 64px;
  border-radius: 20px;
  background: #FFFFFF;
}

.main_function {
  color: #0D4565;
  font-size: 0.95rem;
  line-height: 1.9;
}

.news_contents {
  margin-top: 24px;
}

.news_contents:first-child {
  margin-top: 0;
}

.pp_title {
  margin-top: 48px;
  padding-bottom: 12px;
  border-bottom: 2px solid #D8EEF7;
  color: #0D4565;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.5;
}

.pp_list {
  margin-top: 20px;
  padding-left: 1.5em;
}

.pp_list > li {
  margin-top: 12px;
}

.list_child {
  margin-top: 12px;
  padding-left: 1.5em;
}

.list_child > li {
  margin-top: 8px;
}

.main_function table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.main_function th,
.main_function td {
  padding: 14px 16px;
  border: 1px solid #D8EEF7;
  vertical-align: top;
}

.main_function th {
  background: #EAF8FD;
  color: #0D4565;
  font-weight: 700;
  text-align: left;
}

.table_list {
  padding-left: 1.2em;
}

.table_list li {
  margin-top: 6px;
}

.pp_list_info {
  margin-top: 20px;
  padding: 20px 24px;
  border-radius: 8px;
  background: #EAF8FD;
  color: #0D4565;
}

.pp_list_info li {
  margin-top: 6px;
}

.pp_list_info li:first-child {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .underlayer {
    padding: 32px 16px;
  }

  .underlayer .contents {
    padding: 32px 18px;
    border-radius: 14px;
  }

  .main_function {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .pp_title {
    margin-top: 40px;
    font-size: 1.15rem;
  }

  .main_function table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .main_function th,
  .main_function td {
    min-width: 180px;
    padding: 12px;
  }
}


/* 矢印追従 */
.page_top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.page_top.is_show {
  opacity: 1;
  visibility: visible;
}

.page_top img {
  display: block;
  width: 60px;
  height: auto;
}

@media screen and (max-width: 767px) {
  .page_top{
    display: none;
  }
}

/* フッター固定 */
.sp_fixed_footer {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp_fixed_footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
  }

  .sp_fixed_footer.is_show {
    display: block;
  }

  .sp_fixed_footer img {
    display: block;
    width: 100%;
    height: auto;
  }
}