@charset "utf-8";
/* CSS Document */
/* style.css */
html {
  scroll-behavior: smooth;
}
/* Header
------------------------------------------ */
.header {
  width: 100%;
  height: var(--header_height_sp);
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.header .header_inner {
  width: var(--inner_sp);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header_inner .header_logo {
  width: 100px;
}
.header_cta {
  position: relative;
  top: -2px;
}
.header_cta .header_cta_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #ff8c5e, #f05a22);
  color: #FFF;
  font-size: 14px;
  font-weight: bold;
  padding: 10px 18px;
  border-radius: 50px;
  position: relative;
  text-decoration: none;
  box-shadow: 0 4px 0 #c43d0b;
  transition: all 0.1s;
}
.header_cta .header_cta_btn::after {
  content: "»";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  background-color: #FFF;
  color: #f05a22;
  border-radius: 50%;
  font-size: 14px;
  padding-bottom: 2px;
}
.header_cta .header_cta_btn:hover {
  opacity: 0.9;
  transform: translateY(1px);
  box-shadow: 0 3px 0 #c43d0b;
}
.header_cta .header_cta_btn:active {
  transform: translateY(4px);
  box-shadow: none;
}
@media (min-width: 768px) {
  .header {
    height: var(--header_height_pc);
  }
  .header .header_inner {
    width: 100%;
    max-width: var(--inner_pc);
    padding: 0 20px;
  }
  .header .header_inner .header_logo {
    width: 140px;
  }
  .header_cta .header_cta_btn {
    font-size: 18px;
    padding: 12px 35px;
  }
  .header_cta .header_cta_btn::after {
    width: 26px;
    height: 26px;
    font-size: 18px;
  }
}
/* Main
------------------------------------------ */
main {
  position: relative;
  top: var(--header_height_sp);
}
@media (min-width: 768px) {
  main {
    top: var(--header_height_pc);
  }
}
/* アンカーリンクでフォームへ飛んだとき、固定ヘッダで隠れないようにする */
#form {
  scroll-margin-top: var(--header_height_sp);
}
@media (min-width: 768px) {
  #form {
    scroll-margin-top: var(--header_height_pc);
  }
}
/* FV
------------------------------------------ */
/* スマホ用FV：768px以下でのみ表示 */
.fv_sp {
  display: none;
}
.fv_sp img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .fv_pc {
    display: none;
  }
  .fv_sp {
    display: block;
  }
}
.fv_Top {
  background-image: url(../img/fv_bg.png);
  background-size: cover;
  background-position: center;
  height: 73vw;
  min-height: 385px;
  max-height: 653px;
}
.fv_Top_inner.format {
  padding: 40px 0 24px;
}
.fv_Top_tags {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}
.fv_Top_tags li {
  background-color: #FFF;
  color: var(--color_primary);
  font-size: 16px;
  font-weight: bold;
  padding: 5px 16px 7px;
  border-radius: 4px;
}
.fv_Top_mainCopy {
  max-width: 500px;
  margin: 0 auto 15px;
}
.fv_Top_subCopy {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fv_Top_subCopy p {
  margin: 0 auto;
}
.fv_Top_subCopy p:first-child {
  max-width: 380px;
}
.fv_Top_subCopy p:last-child {
  max-width: 550px;
}
.fv_note {
  padding: 40px 20px;
}
.fv_note::before {
  content: '';
  display: inline-block;
  width: 100%;
  height: 400px;
  background-image: url(../img/poligon.png);
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.fv_note::after {
  content: '';
  display: inline-block;
  background-image: url(../img/fv_note_bg.png);
  background-repeat: no-repeat;
  width: 700px;
  height: 270px;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 0;
}
.fv_note_inner {
  width: 90%;
  max-width: 420px;
  margin: auto;
  ;
  padding: 40px 20px 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FFF;
  text-align: center;
  background-color: var(--color_primary);
  border-radius: 5px;
  position: relative;
  z-index: 1;
}
.fv_note_sub {
  margin-bottom: 8px;
  font-size: clamp(14px, 4vw, 16px);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.fv_note_sub::before, .fv_note_sub::after {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #FFF;
  transform: rotate(50deg);
  display: block;
}
.fv_note_sub::after {
  transform: rotate(-50deg);
}
.fv_note_main span {
  color: var(--color_accent);
  margin: 0 5px;
}
.fv_note_main {
  display: inline-block;
  margin-bottom: 10px;
  padding: 0 10px 10px 10px;
  color: var(--color_accent);
  font-size: clamp(18px, 3.5vw, 32px);
  font-weight: 700;
  position: relative;
}
.fv_note_main::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #FFF;
  border-radius: 2px;
}
.fv_note_main span {
  font-size: 1em;
  margin: 0 -1px;
  position: relative;
  top: 1px;
}
.fv_note_message {
  width: 270px;
  margin: auto;
  font-size: 18px;
  font-weight: bold;
}
.fv_note_figure {
  width: 100%;
  max-width: 300px;
  position: absolute;
  top: 300px;
}
.fv_note_figure img {
  position: relative;
  z-index: 0;
}
.fv_note_figure::before {
  content: '';
  width: 120px;
  height: 118px;
  background-image: url("../img/kuma_character_02.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 8px;
  top: -90px;
  left: 50%;
  z-index: 0;
  transform: translate(-50%, 0);
}
.fv .text_highlight {
  color: var(--color_accent);
}
.fv .text_large {
  font-size: 2em;
  font-weight: 900;
  display: inline-block;
}
.fv .text_small {
  font-size: 0.8em;
  padding-right: 5px;
  margin-left: -18px;
}
@media (min-width: 700px) {
  .fv_note_sub {
    font-size: 22px;
  }
  .fv_Top_tags li {
    font-size: 22px;
  }
  .fv_note::after {
    width: 1000px;
    height: 380px;
    bottom: -110px;
  }
  .fv_note_inner {
    width: 100%;
    max-width: 700px;
    padding: 40px 20px;
    position: relative;
  }
  .fv_note_main {
    font-size: 34px;
  }
  .fv_note_main::after {
    width: 120%;
    margin-left: -10%;
  }
  .fv_note_message {
    width: 340px;
    margin: 0;
    font-size: 22px;
    text-align: left;
    ;
  }
  .fv_note_figure {
    position: absolute;
    max-width: inherit;
    width: 290px;
    height: 290px;
    top: 210px;
    right: -20px;
    z-index: 1;
  }
  .fv_note_figure::before {
    left: 33%;
  }
}
@media (min-width: 768px) {
  .fv_Top_inner.format {
    padding: 60px 0 70px;
  }
  .fv_Top_content {
    max-width: 500px;
    margin: 0;
  }
  .fv_Top_content::before {
    width: 370px;
    height: 480px;
    background-image: url("../img/fv_Top_content.png");
    position: absolute;
    top: -70px;
    right: -410px;
    z-index: 1;
  }
  .fv_Top_tags {
    justify-content: flex-start;
    gap: 12px;
  }
  .fv_Top_tags li {
    font-size: 24px;
  }
  .fv_note::before {
    height: 300px;
  }
  .fv_note_inner {
    max-width: 800px;
  }
  .fv_note_figure::before {
    background-image: url(../img/kuma-typeb_PC.png);
  }
  .fv_note_figure {
    width: 280px;
    height: 300px;
    top: -135px;
    right: -40px;
  }
  .fv_note_figure::before {
    top: 220px;
    left: 60%;
  }
  .fv_note::after {
    display: none;
  }
  .fv_note_message {
    width: 100%;
  }
  .fv_note_message {
    width: 100%;
    font-size: 19px;
  }
  .fv .text_large {
    font-size: 32px;
  }
  .fv .text_small {
    margin-left: -10px;
  }
}
/* project
------------------------------------------ */
.project {
  position: relative;
  z-index: 0;
}
.project_head {
  background: url("../img/project_bg.png") no-repeat center bottom/ cover;
  margin-bottom: -3px;
}
.project_head_txt p:first-child span {
  display: block;
}
.project_head_txt {
  position: relative;
  z-index: 1;
}
.project_head_txt {
  position: relative;
  z-index: 1;
}
.project_head_img {
  position: relative;
  top: -20px;
  z-index: 0;
}
.project_lead {
  background-color: var(--color_bg_green);
}
.project_lead .format {
  position: relative;
  top: -52px;
}
.project_lead_head {
  margin-bottom: 40px;
}
.project_lead_head span {
  display: block;
}
.project_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.project_list_card {
  text-align: center;
}
.project_list_tag {
  display: inline-block;
  ;
  margin-bottom: 10px;
  padding: 4px 20px;
  color: #FFFFFF;
  font-weight: bold;
  background-color: var(--color_primary);
  border-radius: 4px;
}
.project_list_contents {
  box-shadow: 0px 6px 10px -5px #777777;
  border-radius: 5px;
  overflow: hidden;
}
.project_list_contents_text {
  background-color: #004e52;
  color: #FFFFFF;
  padding: 15px 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}
.project_list_contents_text .text_highlight {
  color: var(--color_accent);
}
.project_footer_text {
  background-color: #FFF;
  margin-bottom: 15px;
}
.project_footer_text .format {
  margin: auto;
  padding: 46px 0 8px;
}

@media (min-width: 768px) {
  .project_head_txt p:first-child span {
    display: inline;
  }
  .project_head_img {
    padding-top: 30px;
  }
  .project_list {
    flex-direction: row;
    justify-content: center;
  }
  .project_card {
    flex: 1;
    max-width: 340px;
  }
  .project_tag {
    left: 20px;
    transform: none;
  }
  .project_card_text {
    font-size: 16px;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
/* collabo
------------------------------------------ */
.collabo_ttl {
  max-width: var(--inner_pc);
  margin: auto;
}
.collabo_count {
  background-color: #FFF;
}
.collabo_count_head {
  margin-bottom: 40px;
}
.collabo_count_head span {
  display: inline-block;
  background: linear-gradient(transparent 70%, var(--color_accent) 70%);
}
.collabo_count_gallery {
  margin-top: 30px;
}
.collabo_award_head {
  max-width: 500px;
  margin: 0 auto 30px;
}
.collabo_award_list {
  display: flex;
  align-items: center;
  gap: 10px;
}
.collabo_award_item {
  width: 100%;
  max-width: 280px;
}
.collabo_award_item img {
  width: 100%;
  height: auto;
}
@media (min-width: 700px) {
  .collabo_award_head {
    max-width: 800px;
  }
}

/* cta
------------------------------------------ */
.cta .format {
  max-width: 760px;
}
.cta_head {
  margin-bottom: 30px;
}
.cta_head_sub {
  font-size: 18px;
  margin-bottom: 10px;
}
.cta_head_sub span {
  background: linear-gradient(transparent 60%, #fff100 60%);
}
.cta_head_main {
  font-size: 28px;
  line-height: 1.4;
}
.cta_ttl_green {
  color: #00896c;
}
.cta_ttl_small {
  font-size: 0.8em;
  margin-left: 2px;
}
.cta_ttl_black {
  color: #333333;
}
.cta_banner {
  max-width: 360px;
  margin: auto;
  border-radius: 5px;
  overflow: hidden;
}
.cta_banner a {
  display: block;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
}
.cta_banner_top {
  background-color: #e6e6e6;
  padding: 20px;
  position: relative;
}
.cta_banner_top p {
  font-size: 20px;
  text-align: left;
}
.cta_banner_top .cta_num_large {
  font-size: 135%;
}
.cta_banner_top .cta_txt_small {
  display: block;
  margin-top: 5px;
  margin-left: -3px;
  font-size: 64%;
  color: #8c8c8c;
}
.cta_character {
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 80px;
}
.cta_banner_bottom {
  background: url("../img/cta_bg.png") no-repeat center center / cover;
  padding: 0 15px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.cta_price_old {
  display: inline-block;
  color: #FFFFFF;
  letter-spacing: 1px;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  top: 20px;
  left: 20px;
}
.cta_price_old span {
  font-size: 75%;
  font-weight: normal;
}
.cta_price_old::after {
  content: "";
  position: absolute;
  left: -5%;
  top: 50%;
  width: 110%;
  height: 3px;
  background-color: rgba(255, 51, 102, 0.85);
  transform: rotate(10deg);
}
.cta_price_flex {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta_price_free {
  width: 70px;
  height: 70px;
  background-color: #fff100;
  color: #333;
  font-size: 18px;
  font-weight: bold;
  line-height: 4;
  border-radius: 50px;
  transform: rotate(-15deg);
  position: relative;
  top: -12px;
}
.cta_price_main {
  color: #fff100;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 2px;
}
@media (min-width: 768px) {
  .cta_head_sub {
    font-size: 24px;
  }
  .cta_head_main {
    font-size: 42px;
  }
  .cta_banner_top {
    padding: 20px 40px;
  }
  .cta_banner {
    max-width: 100%;
  }
  .cta_banner_top p {
    font-size: 28px;
  }
  .cta_character {
    width: 100px;
    right: 30px;
  }
  .cta_banner_bottom {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
  }
  .cta_head_main {
    font-size: 42px;
  }
  .cta_price_old {
    font-size: 26px;
    top: 4px;
    left: 18px;
  }
  .cta_price_main {
    margin: 4px 0 0 4px;
  }
  .cta_price_free {
    top: 6px;
  }
}
/* Seminar
------------------------------------------ */
.seminar {
  max-width: 800px;
  margin: auto;
  background-color: var(--color_primary);
}
.seminar_card {
  background-color: #fff;
  border-radius: 10px;
  padding-bottom: 30px;
  overflow: hidden;
}
.seminar_card_header {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  position: relative
}
.seminar_card_badge {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
}
.seminar_card_badge::before {
  content: '';
  display: inline-block;
  width: 25px;
  height: 29px;
  background-image: url(../img/beginner_mark.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  top: -12px;
  left: 36px;
}
.seminar_card_badge img {
  width: 24px;
  margin-right: 8px;
}
.seminar_card_title {
  font-weight: 900;
  line-height: 1.3;
}
.seminar_card_kuma {
  width: 60px;
  position: absolute;
  bottom: -2px;
  right: 30px;
  z-index: 0;
}
.seminar_gallery {
  width: 120%;
  height: 100px;
  overflow-y: hidden;
  position: relative;
  z-index: 1;
}
.seminar_info_main {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 15px;
  position: relative;
}
.seminar_date_box {
  background-color: #f6c344;
  border-radius: 50%;
  width: 190px;
  height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -170px;
  left: -10px;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.seminar_date_box:before {
  content: "";
  border: solid 1px #FFF;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
}
.seminar_year {
  margin-top: -10px;
  font-size: 24px;
}
.seminar_date_list {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
}
.seminar_time_box {
  border-radius: 5px;
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
.seminar_time_lead {
  padding: 5px 16px;
  background-color: #ffc22d;
  display: flex;
  justify-content: flex-end;
  position: relative;
  top: -54px;
  z-index: 1;
}
.seminar_time_box_wrap {
  text-align: center;
}
.seminar_time_note {
  font-size: 14px;
  margin-bottom: 10px;
}
.seminar_time_list {
  font-weight: 900;
  font-size: 22px;
}
.seminar_time_list span {
  color: #e60012;
  margin-right: 5px;
}
.seminar_specs {
  padding: 0 20px;
}
.seminar_specs dl {
  padding-top: 10px;
}
.spec_row {
  display: flex;
  padding: 5px 0;
  align-items: center;
}
.spec_row dt {
  background-color: #333;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  width: 70px;
  padding: 4px;
  text-align: center;
  border-radius: 4px;
  margin-right: 15px;
}
.spec_row dd {
  font-weight: bold;
  flex: 1;
  font-size: 0.9em;
}
.spec_row_schedule {
  width: 100%;
  padding: 40px 0 16px;
  border-bottom: 1px solid #e1e1e1;
}
.spec_row_schedule dd {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: clamp(8px, 1.4vw, 16px);
  font-size: clamp(24px, 6.2vw, 36px);
  line-height: 1.25;
}
.spec_row_schedule .schedule_date,
.spec_row_schedule .schedule_time {
  white-space: nowrap;
}
.spec_row_schedule .schedule_date_accent {
  color: #e60012;
}
.spec_row_schedule .schedule_time {
  font-size: 1.1em;
}
.spec_content {
  align-items: flex-start;
}
.spec_content dd {
  font-weight: 500;
}
.spec_content dt {
  margin-bottom: 8px;
}
.spec_content dd {
  font-size: 14px;
  line-height: 1.6;
}
.text_alert {
  color: #e60012;
  font-size: 120%;
}
.seminar_price {
  display: flex;
  align-items: center;
  gap: 10px;
}
.price_label {
  width: 70px;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 14px;
}
.price_old {
  font-size: 18px;
}
.price_free {
  color: #e60012;
  font-size: 32px;
  font-weight: 900;
}
@media (min-width: 500px) {
  .seminar_time_lead {
    justify-content: flex-start;
    padding: 10px 16px;
    top: -42px;
  }
  .seminar_time_lead p {
    margin-left: 174px;
  }
  .seminar_time_lead p .sp {
    display: none;
  }
  .seminar_card_badge {
    font-size: 24px;
  }
  .seminar_card_badge::before {
    top: -14px;
    left: 46px;
  }
  .seminar_card_title {
    font-size: 32px;
  }
  .seminar_card_kuma {
    width: 90px;
  }
  .seminar_info_main {
    padding: 0 20px;
  }
  .seminar_date_box {
    top: -140px;
  }
  .seminar_time_box_wrap {
    text-align: left;
  }
  .seminar_time_box {
    max-width: 270px;
    margin: -24px 10px 20px 186px;
  }
  .seminar_gallery {
    width: 100%;
    height: 160px;
  }
  .seminar_time_note {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .seminar .format {
    width: 90%;
    max-width: inherit;
  }
  .seminar_date_box {
    top: -140px;
    left: 60px;
  }
  .seminar_time_lead {
    padding: 16px;
    top: -57px;
  }
  .seminar_time_box {
    margin-top: -46px;
    margin-left: 263px;
  }
  .seminar_time_lead p {
    margin-left: 250px;
  }
  .seminar_card_badge::before {
    top: 3px;
    left: -7px;
  }
  .spec_row {
    padding: 15px 0;
  }
  .seminar_specs dl {
    display: flex;
    flex-wrap: wrap;
  }
  .spec_row:not(.spec_content):not(.spec_row_schedule) {
    width: 50%;
  }
  .spec_row dt, .price_label {
    width: 100px;
    font-size: 16px;
  }
  .spec_row dd {
    font-size: 18px;
  }
  .spec_row_schedule {
    padding: 40px 0 16px;
  }
  .spec_row_schedule dd {
    font-size: clamp(30px, 3vw, 32.5px);
  }
  .text_alert {
    font-size: 100%;
  }
  .price_old {
    margin-left: 4px;
  }
}
@media (max-width: 768px) {
  .spec_row_schedule {
    padding: 5px 0 15px;
    align-items: flex-start;
  }
  .spec_row_schedule dd {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    transform: translateY(-4px);
  }
}
/* Entry CTA
------------------------------------------ */
.entry_cta {
  max-width: 400px;
  margin: auto;
  padding: 20px 0 16px;
  text-align: center;
}
.entry_btn_wrap a:hover {
  opacity: 0.9;
}
.entry_btn_wrap a:active {
  transform: translateY(2px);
}
@media (min-width: 768px) {
  .entry_cta {
    max-width: 510px;
    padding: 84px 0 64px;
  }
}
/* Step
------------------------------------------ */
.step_ttl {
  margin-bottom: 56px;
}
.step_list {
  display: flex;
  gap: 10px;
}
.step_item {
  padding: 0 16px 16px;
  background-color: #f8f8f8;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  text-align: center;
  flex: 1;
  position: relative;
}
.step_item::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  z-index: 1;
}
.step_item::after {
  display: none;
}
.step_item:last-child::after {
  display: none;
}
.step_icon {
  width: 50px;
  margin: auto;
  position: relative;
  top: -30px;
}
.step_num {
  font-weight: 600;
  color: #007bff;
  font-size: 14px;
  margin-top: -20px;
}
.step_item_ttl {
  font-size: 1.1em;
  color: #007bff;
  margin: 5px 0 10px;
}
.step_item_txt {
  font-size: 13px;
  text-align: left;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .step .format {
    width: 700px;
    margin: auto;
  }
  .step_list {
    gap: 30px;
  }
  .step_item {
    padding: 0 20px 20px;
  }
  .step_item::after {
    display: none;
  }
  .step_item:nth-child(2)::before, .step_item:nth-child(2)::after {
    content: "";
    position: absolute;
    top: 104px;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 14px;
    border-color: transparent transparent transparent #646464;
  }
  .step_item:nth-child(2)::before {
    left: -22px;
  }
  .step_item:nth-child(2)::after {
    left: inherit;
    right: -32px;
  }
}
/* Benefit
------------------------------------------ */
.benefit_head_lead {
  font-size: 21px;
  margin-bottom: 30px;
}
.benefit_main_copy {
  width: 110%;
  max-width: 600px;
  margin: 0 10% 0 -10%;
}
.benefit_books {
  width: 110%;
  margin-left: -5%;
  margin-bottom: 20px;
}
.benefit_list_wrap {
  max-width: 400px;
  margin: 0 auto;
  background-color: #444;
  padding: 10px 18px;
  position: relative;
}
.benefit_list_wrap::before {
  content: '';
  display: block;
  width: 60px;
  height: 60px;
  background-image: url(../img/ribbon_01.png);
  background-size: contain;
  position: absolute;
  top: -2px;
  left: -4px;
  z-index: 2;
}
.benefit_list_wrap::after {
  content: '';
  display: block;
  width: 50px;
  height: 50px;
  background-image: url(../img/ribbon_02.png);
  background-size: contain;
  position: absolute;
  bottom: -2px;
  right: -4px;
  z-index: 2;
}
.benefit_list {
  max-width: 600px;
  margin: 0 auto;
  font-family: serif;
  position: relative;
  z-index: 1;
}
.benefit_list_shadow_box {
  width: 110%;
  height: 17vh;
  background: url("../img/benefit_list_shadow.png") no-repeat center bottom / contain;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.benefit_item {
  padding: 12px 0;
  border-bottom: 2px solid #7f775e;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}
.benefit_item:last-child {
  border-bottom: none;
}
.benefit_item_num {
  color: #e6c84e;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
}
.benefit_item_num span:last-child {
  font-size: 38px;
  font-style: italic;
}
.benefit_item_txt {
  font-weight: bold;
}
.benefit_item_txt .small_txt {
  display: block;
  font-size: 12px;
  font-weight: normal;
}
@media (min-width: 600px) {
  .benefit_main_copy {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .benefit_list_wrap {
    padding: 10px 30px;
  }
  .benefit_list_wrap::before {
    width: 72px;
    height: 72px;
  }
  .benefit_list_wrap::after {
    width: 66px;
    height: 66px;
  }
  .benefit_item {
    gap: 20px;
  }
  .benefit_books {
    width: 110%;
    max-width: 600px;
    margin: 20px auto;
  }
}
@media (min-width: 768px) {
  .benefit_head_lead {
    font-size: 28px;
  }
  .benefit_wrap {
    display: flex;
    align-items: center;
  }
  .benefit_main_copy {
    width: 100%;
    max-width: 400px;
    margin: auto;
  }
  .benefit_books {
    width: 400px;
    max-width: inherit;
  }
  .benefit_item_txt {
    font-size: 16px;
  }
  .benefit_list_wrap {
    max-width: 600px;
  }
  .benefit_item_txt .small_txt {
    display: none;
  }
}
/* problem
------------------------------------------ */
.problem {
  background: linear-gradient(to bottom, #e0f2f7 0%, #ffffff 20%);
}
.problem_label {
  max-width: 420px;
  margin: 0 auto 20px;
  padding: 8px 12px;
  background-color: #00896c;
  font-size: clamp(14px, 4vw, 18px);
  color: #fff;
  text-align: center;
  border-radius: 50px;
  position: relative;
  z-index: 1
}
.problem_cloud {
  position: relative;
  top: -50px;
  z-index: 0;
}
.problem_solve {
  width: 80%;
  max-width: 400px;
  margin: 0 auto -40px;
  position: relative;
  top: -60px;
  z-index: 1;
}
.problem_worry {
  margin: -30px auto 0;
  position: relative;
  z-index: 2;
}
.problem_worry_inner {
  background: #003a4d url("../img/problem_bg.png") no-repeat center/cover;
  padding: 40px 20px;
  position: relative;
}
.problem_worry_inner::before {
  content: "";
  position: absolute;
  top: 33px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 10px;
  background-color: #333;
}
.problem_worry_list {
  max-width: 800px;
  margin: 0 auto;
}

.txt_red {
  color: #b00;
}
.problem_worry_arrows {
  width: 170px;
  height: 40px;
  margin: auto;
  position: relative;
  top: -10px;
}
/* problem_intro 
------------------------------------------ */
.problem_intro {
  text-align: center;
  margin-top: -40px;
}
.intro_lead_wrap {
  background: url("../img/bg_problem_intro.png") no-repeat center center / cover;
  padding-bottom: 10px;
}
.intro_card {
  margin-top: 15px;
  margin-bottom: 40px;
  padding: 35px 15px 25px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}
.intro_card_label {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f6c12b;
  padding: 8px 20px;
  border-radius: 5px;
  width: 85%;
  font-size: 14px;
  white-space: nowrap;
}
.intro_card_ttl {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 15px;
}
.intro_card_ttl .txt_large {
  font-size: 26px;
}
.intro_card_box {
  background: url("../img/cta_bg.png") no-repeat center center / cover;
  color: #fff;
  padding: 15px;
  border-radius: 5px;
  font-size: 18px;
  line-height: 1.5;
}
.intro_summary {
  margin-top: -34px;
}
.summary_wish {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .problem_solve {
  max-width: 600px;
  margin: 70px auto -40px;
  position: relative;
  top: -60px;
  z-index: 1;
}
  .problem_worry_list li {
    font-size: 27px;
    padding: 15px 0 15px 50px;
  }
  .problem_worry_list li::before {
    width: 30px;
    height: 30px;
    top: 22px;
  }
  .intro_card {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 60px 40px 40px;
    border-radius: 25px;
  }
  .intro_card_label {
    font-size: 22px;
    width: 60%;
    top: -25px;
    border-radius: 50px;
  }
  .intro_card_ttl {
    font-size: 28px;
  }
  .intro_card_ttl .txt_large {
    font-size: 38px;
  }
  .intro_card_box {
    font-size: 28px;
    padding: 30px;
  }
  .summary_wish {
    max-width: 600px;
    margin: 18px auto 0;
  }
}
.problem_future {
  margin-top: -60px;
}
.future_bg {
  background: url("../img/future_bg.png") no-repeat center center / cover;
  padding-top: 60px;
}
.future_card {
  background-color: #fff;
  border: 1px solid #333;
  padding: 24px 15px 12px;
  position: relative;
  margin-top: 20px;
  border-radius: 5px;
}
.future_card_label {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #b00;
  color: #fff;
  padding: 4px 30px;
  border-radius: 5px;
  font-size: 20px;
  white-space: nowrap;
}
.future_list {
  list-style: none;
  text-align: left;
}
.future_list li {
  position: relative;
  padding: 15px 0 15px 40px;
  font-size: 18px;
  color: #333;
  font-weight: 900;
  line-height: 1.5;
  border-bottom: 1px dotted #ccc;
}
.future_list li:last-child {
  border-bottom: none;
}
.future_list li::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 18px;
  width: 22px;
  height: 22px;
  background: url("../img/check.png") no-repeat center/contain;
}
.future_list .small_txt {
  font-size: 85%;
}
@media (min-width: 768px) {
  .problem_future {
    margin-top: -80px;
  }
  .future_bg {
    padding: 100px 0 20px;
  }
  .problem_future .future_card {
    max-width: 850px;
    margin: 0 auto;
    padding: 60px 80px 50px;
    border-radius: 0;
  }
  .future_card_label {
    top: -25px;
    font-size: 24px;
    padding: 12px 60px;
    border-radius: 0;
  }
  .future_list li {
    font-size: 30px;
    line-height: 1;
    padding-left: 55px;
  }
  .future_list li::before {
    width: 30px;
    height: 30px;
    top: 22px;
  }
  .future_list .small_txt {
    font-size: 80%;
    display: inline-block;
    margin-bottom: 12px;
  }
}
.problem_necessity {
  background: #00a19a url("../img/bg_necessity.png") no-repeat center center / cover;
  padding: 45px 20px 80px;
  text-align: center;
  position: relative;
  color: #fff;
  margin-top: -1px;
}
.necessity_label_txt {
  margin: 16px 0 30px;
}
.info_icon {
  width: 46px;
  height: auto;
  margin-right: 6px;
}
.necessity_label .u_line {
  display: inline-block;
  background: linear-gradient(transparent 75%, rgba(255, 241, 0, 0.5) 75%);
  padding: 0 3px;
  border-bottom: none;
  font-size: 24px;
}
.necessity_lead {
  font-size: 22px;
  margin-bottom: 5px;
}
.necessity_ttl {
  display: block;
  max-width: 1000px;
  margin: 0 auto;
}
.necessity_ttl span {
  font-size: 0.8em;
}
.necessity_kuma {
  position: absolute;
  right: 5px;
  bottom: 0;
  width: 85px;
}
@media (min-width: 768px) {
  .problem_necessity {
    padding: 80px 0 120px;
  }
  .necessity_label {
    padding: 12px 50px;
    border-radius: 50px;
    font-size: 28px;
    margin-bottom: 25px;
  }
  .info_icon {
    width: 28px;
    margin-right: 12px;
    padding-top: 2px;
  }
  .necessity_label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f6c12b;
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
    padding: 16px 56px;
    border-radius: 50px;
    line-height: 1.2;
  }
  .necessity_label .u_line {
    background: none;
    padding: 0;
  }
  .necessity_label_txt {
    margin: 0;
  }
  .necessity_lead {
    font-size: 32px;
    margin-bottom: 0;
  }
  .necessity_ttl {
    font-size: 100px;
  }
  .necessity_kuma {
    width: 160px;
    right: 15%;
  }
}
/* reason
------------------------------------------ */
.reason {
  padding: 40px 0;
  text-align: center;
}
.bg_reason {
  padding-bottom: 100px;
  background: linear-gradient(#FFF, #e5e5e5);
}
.reason_ttl {
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 40px;
}
.reason_ttl span {
  font-size: 20px;
}
.reason_white_card {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 50px;
}
.card_lead {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: normal;
}
.card_lead .text_small {
  font-size: 60%;
}
.u_line_yellow {
  background: linear-gradient(transparent 60%, rgba(255, 241, 0, 0.8) 60%);
  padding: 0 5px;
}.u_line_yellow_pc {
  background: none;
}
.card_sub_txt {
  font-size: 15px;
  color: #004d4a;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: normal;
}
.card_graph {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 20px;
}
.card_graph img {
  width: 100%;
}
.card_caption {
  font-size: 11px;
  color: #999;
  text-align: left;
  line-height: 1.4;
  margin: auto;
}
.reason_solution_card {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  top: -140px;
}

@media (max-width: 768px) {
  .reason_solution_card picture img {
    max-width: 90%;
    height: auto;
  }
}

.solution_list {
  list-style: none;
  text-align: left;
}
.solution_list li {
  position: relative;
  padding: 10px 0 10px 40px;
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px dotted #ccc;
}
.solution_list li.bg_pic_after {
  position: relative;
}
.solution_list li.bg_pic_after::after {
  width: 78px;
  height: 60px;
  background-image: url("../img/busy-buisinesseman.png");
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
}
.solution_list li::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 15px;
  width: 20px;
  height: 20px;
  background: url("../img/check.png") no-repeat center/contain;
}
.message_main {
  font-size: 28px;
  color: #00a19a;
  margin: 5px 0;
  display: inline-block;
  position: relative;
  padding: 0 40px;
}
.message_main::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  width: 25px;
  height: 1px;
  background-color: #353535;
  transform: translateY(-50%) rotate(65deg);
}
.message_main::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 50%;
  width: 25px;
  height: 1px;
  background-color: #353535;
  transform: translateY(-50%) rotate(-65deg);
}
@media (min-width: 768px) {
  .reason_ttl {
    font-size: 40px;
  }
  .reason_white_card {
    padding: 60px 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .card_lead {
    font-size: 32px;
  }
  .card_sub_txt {
    font-size: 22px;
  }
  .card_graph {
    max-width: 450px;
  }
  .solution_list li {
    font-size: 24px;
    padding-left: 50px;
  }
  .solution_list li::before {
    width: 30px;
    height: 30px;
    top: 22px;
  }
  .solution_list li.bg_pic_after::after {
    width: 100px;
    height: 74px;
  }
  .message_main {
    font-size: 48px;
    padding: 0 60px;
  }
  .message_main::before, .message_main::after {
    width: 45px;
    height: 2px;
  }
.u_line_yellow_pc {
  background: linear-gradient(transparent 60%, rgba(255, 241, 0, 0.8) 60%);
  margin-right: -15px;
  }
}
.reason_worry {
  margin-top: -110px;
}
.worry_label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--color_accent);
  border-radius: 50%;
  font-size: 20px;
  margin-bottom: 20px;
}
.worry_txt {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color_text_main);
}
.txt_primary {
  color: var(--color_primary);
}
.reason_future {
  margin-top: 30px;
  padding: 40px 0;
  background: url("../img/future_bg.jpg") no-repeat center/cover;
}
.reason_future .solution_list li {
  padding: 10px 0 10px 36px;
}
.reason_future .solution_list li::before {
  top: 11px;
}
.reason_future .future_card {
  background-color: #fff;
  border: 2px solid var(--color_text_main);
  padding: 18px 15px 20px;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.reason_future .future_card::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 10px;
  background-color: #a40000;
}
.future_card .solution_list li {
  font-size: 16px;
  border-bottom: 1px dotted #ccc;
  font-weight: 900;
}
.future_card .solution_list li span {
  color: #a40000;
}
.reason_future .future_lead {
  font-size: 20px;
  color: var(--color_text_main);
  text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff;
  position: relative;
}
@media (min-width: 768px) {
  .solution_message {
   margin-top: 30px; 
  }
  .worry_label {
    width: 80px;
    height: 80px;
    font-size: 24px;
  }
  .worry_txt {
    font-size: 28px;
  }
  .future_card {
    padding: 20px 60px 0;
  }
  .future_card .solution_list li {
    font-size: 24px;
  }
  .future_lead {
    font-size: 36px;
    bottom: -15px;
    color: var(--color_text_main);
    text-shadow:
      3px 3px 0 #fff, -3px -3px 0 #fff, 3px -3px 0 #fff, -3px 3px 0 #fff, 3px 0px 0 #fff, -3px 0px 0 #fff, 0px 3px 0 #fff, 0px -3px 0 #fff, 0 0 5px rgba(255, 255, 255, 0.8);
  }
}
/* Marketing Detail Section
------------------------------------------ */
.marketing_detail {
  margin-top: -40px;
}
.marketing_logo {
  display: block;
  width: 100px;
  margin: auto;
}
.marketing_header {
  margin-bottom: 20px;
}
.marketing_badge {
  margin-top: 18px;
  font-size: 1.6rem;
}
.marketing_badge::before {
  content: '';
  display: inline-block;
  width: 25px;
  height: 29px;
  background-image: url(../img/beginner_mark.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  top: 7px;
  left: -6px;
}
.marketing_title {
  font-size: 1.6rem;
  margin-bottom: 25px;
}
.marketing_sub_wrap {
  border-top: 2px solid var(--color_primary);
  border-bottom: 2px solid var(--color_primary);
  padding: 12px 30px;
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
}
.marketing_sub_txt {
  font-size: 20px;
  color: var(--color_text_main);
  line-height: 1.3;
}
.txt_primary {
  color: var(--color_primary);
}
.marketing_sub_wrap::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid var(--color_primary);
  z-index: 1;
}
.marketing_sub_wrap::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
  z-index: 2;
}
.balloon_wrap {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}
.kuma_icon {
  width: 60px;
  flex-shrink: 0;
}
.balloon_text {
  background-color: #FFF;
  padding: 15px;
  border-radius: 10px;
  font-size: 0.95rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  position: relative;
}
.balloon_text::before {
  content: "";
  position: absolute;
  top: 15px;
  left: -10px;
  border-right: 10px solid var(--color_bg_gray);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.marketing_main_text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 40px;
  overflow: hidden;
  font-weight: normal;
}
.float_img {
  float: right;
  width: 140px;
  margin-left: 15px;
  border-radius: 5px;
}
.marketing_detail .txt_red {
  color: #d00;
}
.summary_lead {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.summary_highlight {
  font-size: 1.3rem;
}
.worry_section {
  margin-top: 80px;
}
.worry_label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--color_accent);
  border-radius: 50%;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.worry_txt {
  font-size: 1.1rem;
  line-height: 1.6;
}
.txt_primary {
  color: var(--color_primary);
}
.future_section {
  margin-top: 40px;
  padding: 80px 20px;
  background: var(--color_primary);
  border-radius: 10px;
}
.future_card {
  background-color: #fff;
  border: 2px solid var(--color_text_main);
  padding:25px 15px 10px;
  position: relative;
  max-width: 650px;
  margin: 0 auto;
}
.future_card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 10px;
  background-color: #a40000;
}
.future_lead {
  font-size: 1.3rem;
  margin-top: 15px;
  color: var(--color_text_main);
}
@media (min-width: 768px) {
  .marketing_title {
    font-size: 2.5rem;
  }
  .marketing_sub_txt {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }
  .marketing_sub_wrap {
    border-width: 4px
  }
  .marketing_sub_wrap::before {
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
  }
  .kuma_icon {
    width: 90px;
  }
  .balloon_text {
    font-size: 1.2rem;
    padding: 25px;
  }
  .marketing_main_text {
    font-size: 1.15rem;
  }
  .summary_lead {
    font-size: 1.7rem;
  }
  .summary_highlight {
    font-size: 1.8rem;
  }
  .worry_label {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
  }
  .worry_txt {
    font-size: 1.8rem;
  }
  .future_card {
    padding: 60px 80px;
  }
  .reason_future .future_card {
    padding: 20px 40px 0;
  }
  .future_card .solution_list li {
    font-size: 32px;
    padding-left: 50px;
  }
  .reason_future .solution_list li::before {
    top: 18px;
}
  .reason_future .future_lead {
    margin-top: 0;
    font-size: 36px;
    position: relative;
    bottom: -20px;
    text-shadow:
      3px 3px 0 #fff, -3px -3px 0 #fff, 3px -3px 0 #fff, -3px 3px 0 #fff, 3px 0px 0 #fff, -3px 0px 0 #fff, 0px 3px 0 #fff, 0px -3px 0 #fff;
  }
  .float_img {
    width: 300px;
  }
}
/* Curriculum Area
------------------------------------------ */
.curriculum_main_ttl {
  font-size: 22px;
  margin-bottom: 30px;
  color: var(--color_text_main);
}
.curriculum_card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  text-align: left;
  border: 1px solid #eee;
}
.curriculum_card:last-child {
  margin-bottom: 0;
}
.curriculum_card_ttl {
  background-color: var(--color_primary);
  color: #fff;
  text-align: center;
  padding: 6px;
  font-size: 18px;
}
@media (max-width: 768px) {
  .curriculum_card_ttl {
    padding: 12px;
  }
}
.curriculum_card_body {
  padding: 20px 15px;
}
.curriculum_list {
  list-style: none;
  margin-bottom: 20px;
}
.curriculum_list li {
  position: relative;
  padding-left: 1.2em;
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--color_text_main);
}
.curriculum_list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--color_primary);
  font-weight: bold;
}
.curriculum_images {
  display: flex;
  gap: 10px;
}
.curriculum_images img {
  width: calc(50% - 5px);
  border-radius: 5px;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}
.curriculum_images img.curriculum_sp_only {
  display: block;
}
@media (min-width: 769px) {
  .curriculum_images img.curriculum_sp_only {
    display: none;
  }
}
@media (min-width: 768px) {
  .curriculum_area {
    margin-top: 100px;
  }
  .curriculum_main_ttl {
    font-size: 32px;
    margin-bottom: 60px;
  }
  .curriculum_card {
    padding: 50px 60px;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  }
  .curriculum_card_ttl {
    background-color: transparent;
    color: var(--color_primary);
    text-align: left;
    padding: 0 0 15px 0;
    margin-bottom: 35px;
    border-bottom: 2px solid var(--color_primary);
    font-size: 28px;
  }
  .curriculum_card_ttl span {
    background-color: var(--color_primary);
    color: #FFF;
    font-size: 90%;
    margin-right: 10px;
    padding: 0 10px 2px;
    border-radius: 4px;
  }
  .curriculum_card_body {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
  }
  .curriculum_list {
    flex: 1;
    margin-bottom: 0;
  }
  .curriculum_list li {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .curriculum_images {
    width: 230px;
    flex-direction: column;
    gap: 20px;
  }
  .curriculum_images img {
    width: 100%;
    aspect-ratio: 1.6 / 1;
  }
}
/* Market Demand Section
------------------------------------------ */
.market_demand {
  background-color: #FFF;
}
.market_demand .market_demand_ttl {
  font-size: 22px;
  margin-bottom: 40px;
  color: var(--color_text_main);
}
.market_demand .market_demand_card {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 50px;
  padding: 25px 15px 20px 0;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.market_demand .market_demand_card:last-child {
  margin-bottom: 0;
}
.market_demand .demand_bg_text {
  position: absolute;
  top: -18px;
  right: 20px;
  font-family: "Open Sans", sans-serif;
  font-size: 36px;
  color: #d1eaea;
  z-index: 1;
  line-height: 1;
}
.market_demand .market_demand_card_ttl {
  background-color: var(--color_primary);
  color: #fff;
  padding: 12px 25px;
  font-size: 16px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  margin-bottom: 18px;
  line-height: 1.4;
  position: relative;
  z-index: 2;
  display: inline-block;
  text-align: left;
}
.market_demand .market_demand_body {
  padding-left: 15px;
}
.market_demand .market_demand_txt p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
  text-align: left;
  color: var(--color_text_main);
}
.market_demand .market_demand_graph img {
  width: 100%;
  height: auto;
}
  .market_demand .career_support_ttl {
    font-size: 22px;
  }
@media (min-width: 768px) {
  .market_demand .format {
    padding: 80px 0;
  }
  .market_demand .market_demand_ttl {
    font-size: 36px;
    margin-bottom: 80px;
  }
  .market_demand .market_demand_card {
    padding: 20px 0 40px;
    margin-bottom: 80px;
  }
  .market_demand .demand_bg_text {
    top: -51px;
    right: 50px;
    font-size: 80px;
  }
  .market_demand .market_demand_card_ttl {
    font-size: 24px;
    padding: 15px 45px;
    margin-bottom: 0;
  }
  .market_demand .market_demand_body {
    padding-left: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
  }
  .market_demand .market_demand_txt {
    flex: 1;
  }
  .market_demand .market_demand_txt p {
    font-size: 18px;
    margin-bottom: 0;
  }
  .market_demand .market_demand_graph {
    padding-right: 42px;
    flex: 1.2;
  }
  .market_demand .market_career_support .format {
    border-radius:  10px;
    
  }
  .market_demand .career_support_ttl {
    font-size: 24px;
  }
}
/* Market Choice Block
------------------------------------------ */
.market_demand .market_choice_block .format {
  padding-bottom: 20px;
}
.market_demand .market_choice_block {
  background: url('../img/market_demand_bg.png') no-repeat center center / cover;
  position: relative;
}
.market_demand .market_choice_inner {
  width: 90%;
  margin: auto;
  padding: 40px 0 22px;
}
.market_demand .market_choice_q {
  margin-bottom: 14px;
}
.market_demand .market_choice_q img {
  width: 240px;
}
.market_demand .market_choice_flex {
  display: flex;
  flex-direction: column;
}
.market_demand .market_choice_item:last-child {
  margin-top: -15px;
}
.market_demand .market_choice_answer {
  width: 80%;
  margin: auto;
  background-color: #fff;
  padding: 10px 20px 15px;
  border-radius: 5px;
  position: relative;
  top: -20px;
}
.market_demand .market_choice_message {
  font-size: 22px;
  color: var(--color_text_main);
  line-height: 1.2;
}
.market_demand .market_choice_message .txt_small {
  font-size: 80%;
}
.market_demand .market_choice_message .u_line_yellow {
  background: linear-gradient(transparent 70%, rgba(255, 241, 0, 0.8) 70%);
}
@media (min-width: 768px) {
  .market_demand .market_choice_inner {
    width: 100%;
  padding: 80px 0 50px;
}
  .market_demand .market_choice_q {
    margin-bottom: 30px;
  }
  .market_demand .market_choice_q img {
    width: 320px;
  }
  .market_demand .market_choice_flex {
    width: 100vw;
  }
  .market_demand .market_choice_answer {
    width: 640px;
    padding: 13px 0 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    top: -35px;
  }
  .market_demand .market_choice_message {
    font-size: 32px;
  }
}
/* Project Results Section
------------------------------------------ */
.project_results {
  background: #FFF;
}
.project_results .project_results_sub {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}
.project_results .project_results_ttl {
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 40px;
}
.project_results .project_slider_container {
  position: relative;
  padding: 0 10px;
  max-width: 90%;
  margin: 0 auto;
  margin-bottom: 30px;
}
.project_results .project_card {
  background: #fff;
  border-radius: 10px;
}
.project_results .project_img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.project_results .project_content {
  padding: 20px 15px;
  text-align: left;
}
.project_results .project_card_ttl {
  color: var(--color_primary);
  font-size: 16px;
  margin-bottom: 8px;
  text-align: center;
}
.project_results .project_user {
  font-size: 13px;
  text-align: center;
  margin-bottom: 15px;
  color: #666;
}
.project_results .project_desc p {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.6;
}
.project_results .project_desc p.project_note {
  margin-top: auto;
  padding-top: 15px;
  font-size: 13px;
  color: #686868;
}
.project_results .project_prev, .project_results .project_next {
  color: #fff;
  background-color: #000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: opacity 0.3s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  left: auto;
  right: auto;
}
.project_results .project_prev {
  left: -30px;
}
.project_results .project_next {
  right: -30px;
}
.project_results .project_prev::after, .project_results .project_next::after {
  content: "" !important;
}
.project_results .project_prev::before, .project_results .project_next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
}
.project_results .project_prev::before {
  border-width: 6px 8px 6px 0;
  border-color: transparent #fff transparent transparent;
  margin-left: -2px;
}
.project_results .project_next::before {
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #fff;
  margin-left: 2px;
}
.project_results .project_prev:hover, .project_results .project_next:hover {
  opacity: 0.7;
}
@media (min-width: 768px) {
  .project_results .format {
    width: var(--inner_pc_wide);
    max-width: var(--inner_pc_wide);
    padding: 80px 0;
  }
  .project_results .project_results_sub {
    font-size: 20px;
  }
  .project_results .project_results_ttl {
    font-size: 36px;
    margin-bottom: 60px;
  }
  .project_results .project_slider_container {
    padding: 0 80px;
  }
  .project_results .swiper-slide {
    height: auto;
    display: flex;
  }
  .project_results .project_card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    flex-grow: 1;
  }
  .project_results .project_desc {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  .project_results .project_note {
    margin-top: auto;
  }
  .project_results .project_card_ttl {
    font-size: 18px;
  }
  .project_results .project_content {
    padding: 30px;
  }
  .project_results .project_slider_container {
    padding: 0;
    max-width: 1100px;
  }
  .project_results .project_prev {
    left: -70px;
  }
  .project_results .project_next {
    right: -70px;
  }
  .project_results .project_prev, .project_results .project_next {
    color: #fff;
    background-color: #000;
    width: 40px;
    height: 40px;
  }
  .project_results .project_prev::before {
    border-width: 8px 12px 8px 0;
  }
  .project_results .project_next::before {
    border-width: 8px 0 8px 12px;
  }
}
/* Market Office Area
------------------------------------------ */
.market_demand .market_office_area {
  background-color: #FFF;
}
.market_demand .other_results_box {
  background: #fff;
  border: 2px solid #eee;
  border-radius: 15px;
  padding: 40px 30px 0;
  position: relative;
  margin-bottom: 34px;
}
.market_demand .other_results_tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color_primary);
  color: #fff;
  padding: 5px 30px;
  border-radius: 5px;
  font-size: 18px;
}
.market_demand .other_results_list li {
  position: relative;
  padding-left: 35px;
  padding-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: left;
  font-weight: 900;
  border-bottom: 1px dotted #ccc;
}
.market_demand .other_results_list li:last-child {
  border: none;
  margin-bottom: 0;
}
.market_demand .other_results_list li::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 20px;
  height: 20px;
  background: url(../img/check.png) no-repeat center / contain;
}
.market_demand .other_results_lead {
  font-size: 14px;
  position: relative;
  top: 10px;
  left: 50%;
  transform: translate(-50%, 0);
  display: inline-block;
  padding: 0 5px;
  background-color: #FFF;
}
.market_demand .office_map_ttl {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 30px;
}
.market_demand .office_map_img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .market_demand .other_results_box {
    max-width: 800px;
    margin: 0 auto 100px;
    padding: 60px 78px 0;
  }
  .market_demand .other_results_tag {
    font-size: 24px;
  }
  .market_demand .other_results_list li {
    font-size: 18px;
    margin-bottom: 25px;
  }
  .market_demand .other_results_lead {
    font-size: 18px;
  }
  .market_demand .office_map_ttl {
    font-size: 32px;
    margin-bottom: 50px;
  }
}
/* Career Support Section
------------------------------------------ */
.market_demand .market_career_support {
  background-color: #fff;
}
.market_demand .career_support_ttl {
  line-height: 1.5;
  margin-bottom: 30px;
  color: var(--color_text_main);
}
.market_demand .career_profile_img {
  width: 160px;
}
.market_demand .career_profile_img img {
  width: 100%;
  border-radius: 50%;
}
.market_demand .career_profile_flex {
  margin-bottom: 16px;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}
.market_demand .career_profile_header {
  width: 100%;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.market_demand .career_profile_header .career_name_box {
  margin-bottom: 10px;
  border-bottom: 2px solid var(--color_primary);
}
.market_demand .career_corp {
  padding-left: 10px;
  font-size: 13px;
}
.market_demand .career_name {
  padding-left: 10px;
  padding-bottom: 6px;
  font-size: 20px;
}
.market_demand .career_license_tag {
  background-color: var(--color_primary);
  color: #fff;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 5px;
  line-height: 1.3;
  text-align: center;
}
.market_demand .career_profile_text p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: left;
}
.market_demand .career_bottom_area {
  margin-top: 40px;
  text-align: center;
}
.market_demand .career_bottom_area .carrier_step_asset_img {
  max-width: 100%;
  width: auto;
}
.market_demand .career_bottom_txt {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.market_demand .career_video_thumb {
  width: 100%;
  max-width: 100%;
  margin-bottom: 50px;
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 20px;
}
.market_demand .career_video_thumb iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.market_demand .other_results_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background: url('../img/check.png') no-repeat center center / contain;
}
@media (min-width: 768px) {
  .market_demand .career_profile_flex {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 30px;
  }
  .market_demand .career_profile_img {
    width: 240px;
    flex-shrink: 0;
  }
  .market_demand .career_profile_header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 20px;
  }
  .market_demand .career_profile_header .career_name_box {
    margin-bottom: 0;
    flex-grow: 1;
  }
  .market_demand .career_name {
    font-size: 24px;
    padding-left: 0;
  }
  .market_demand .career_corp {
    padding-left: 0;
  }
  .market_demand .career_license_tag {
    font-size: 16px;
    padding: 14px 25px;
    white-space: nowrap;
    flex-grow: 1;
  }
  .market_demand .career_profile_text {
    width: calc(100% - 280px);
    position: relative;
    top: -186px;
    left: 280px;
  }
  .market_demand .career_bottom_area {
    margin-top: -60px;
  }
  .market_demand .career_bottom_txt {
    width: 600px;
    font-size: 22px;
    margin-bottom: 0;
  }
  .market_demand .career_video_thumb {
    margin-bottom: 80px;
  }
}
/* Attendee Voices
------------------------------------------ */
.market_attendee_voices {
  background-color: #FFF;
}
.market_attendee_voices .attendee_voice_ttl {
  font-size: 24px;
  margin-bottom: 40px;
}
.market_attendee_voices .attendee_item {
  display: flex;
  margin-bottom: 40px;
  gap: 15px;
  align-items: flex-start;
}
.market_attendee_voices .flex_row_reverse {
  flex-direction: row-reverse;
}
.market_attendee_voices .attendee_profile {
  width: 90px;
  flex-shrink: 0;
}
.market_attendee_voices .attendee_img {
  width: 100%;
  margin-bottom: 10px;
}
.market_attendee_voices .attendee_img img {
  width: 100%;
  border-radius: 50%;
}
.market_attendee_voices .attendee_info {
  font-size: 12px;
  font-weight: bold;
}
.market_attendee_voices .balloon_text {
  position: relative;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
  text-align: left;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}
.market_attendee_voices .balloon_text::before {
  content: "";
  position: absolute;
  top: 15px;
  border-style: solid;
  border-width: 8px 10px 8px 0;
  border-color: transparent #fff transparent transparent;
  left: -10px;
}
.market_attendee_voices .flex_row_reverse .balloon_text::before {
  left: auto;
  right: -10px;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent #fff;
}
.market_attendee_voices .attendee_note {
  font-size: 10px;
  color: #999;
}
.market_attendee_voices .txt_red {
  color: #ff3333;
}
@media (min-width: 768px) {
  .market_attendee_voices .attendee_voice_ttl {
    font-size: 36px;
    margin-bottom: 60px;
  }
  .market_attendee_voices .attendee_item {
    gap: 30px;
    margin: 0 auto 60px;
  }
  .market_attendee_voices .attendee_item:last-child {
    margin-bottom: 0;
  }
  .market_attendee_voices .attendee_profile {
    width: 150px;
  }
  .market_attendee_voices .attendee_info {
    font-size: 16px;
  }
  .market_attendee_voices .attendee_balloon {
    padding-top: 30px;
    border-radius: 15px;
  }
  .market_attendee_voices .attendee_balloon::before {
    top: 40px;
  }
  .market_attendee_voices .flex_row .attendee_balloon::before {
    left: -15px;
    border-width: 10px 15px 10px 0;
  }
  .market_attendee_voices .flex_row_reverse .attendee_balloon::before {
    right: -15px;
    border-width: 10px 0 10px 15px;
  }
  .market_attendee_voices .balloon_text {
    padding: 20px 30px;
    font-size: 18px;
  }
  .market_attendee_voices .attendee_note {
    font-size: 14px;
    text-align: right;
  }
  .market_attendee_voices .flex_row_reverse .attendee_note {
    text-align: left;
  }
}
/* SNS Section
------------------------------------------ */
.market_sns_area {
  background-color: #FFF;
}
.market_sns_area .sns_catch_ttl {
  display: inline-block;
  width: 100%;
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.4;
  position: relative;
}
.market_sns_area .sns_catch_ttl::before, .market_sns_area .sns_catch_ttl::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 56px;
  background-color: var(--color_text_main);
  vertical-align: middle;
  position: absolute;
  top: 5px;
}
.market_sns_area .sns_catch_ttl::before {
  transform: rotate(-25deg);
  left: 40px;
}
.market_sns_area .sns_catch_ttl::after {
  transform: rotate(25deg);
  right: 40px;
}
.market_sns_area .sns_image_box img {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 768px) {
  .market_sns_area .sns_catch_ttl {
    font-size: 32px;
    margin-bottom: 50px;
  }
  .market_sns_area .sns_catch_ttl::before, .market_sns_area .sns_catch_ttl::after {
    height: 40px;
  }
}/* AS Section
------------------------------------------ */
.market_as_area {
  background-color: #FFF;
}
.market_as_area .as_catch_ttl {
  display: inline-block;
  width: 100%;
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.4;
  }
@media (min-width: 768px) {
.market_as_area .as_catch_ttl {
    font-size: 32px;
    margin-bottom: 50px;
  }
}
/* Organizer Message
------------------------------------------ */
.market_organizer_message .organizer_ttl {
  margin-bottom: 30px;
}
.market_organizer_message .organizer_profile_unit {
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
  gap: 15px;
  margin-bottom: 25px;
}
.market_organizer_message .organizer_img {
  width: 140px;
  flex-shrink: 0;
}
.market_organizer_message .organizer_img img {
  width: 110px;
  box-shadow: 4px 4px 0 #f0f0f0;
}
.market_organizer_message .organizer_profile_txt_box {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.market_organizer_message .organizer_catch {
  color: #009b85;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 12px;
  font-family: "Zen Old Mincho", serif;
}
.market_organizer_message .organizer_name_box {
  border-bottom: 1px solid #545454;
  padding-bottom: 5px;
}
.market_organizer_message .organizer_pos {
  font-size: 10px;
  line-height: 1.3;
  margin-bottom: 3px;
}
.market_organizer_message .organizer_name {
  font-size: 18px;
  line-height: 1.2;
}
.market_organizer_message .organizer_main_text {
  width: 100%;
  margin-bottom: 30px;
  background-image: linear-gradient(transparent 2.15em, #e0e0e0 2.15em, #e0e0e0 2.25em, transparent 2.25em);
  background-size: 100% 2.2em;
  line-height: 2.2em;
  font-size: 13px;
}
.market_organizer_message .organizer_main_text p {
  font-weight: normal;
  margin-bottom: 0;
}
.market_organizer_message .decoration_icon {
  position: relative;
  display: inline-block;
  padding-left: 0.2em;
}
.market_organizer_message .decoration_icon::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -10px;
  width: 20px;
  height: 20px;
  background: url("../img/icon_accent.png") no-repeat center center / contain;
  display: inline-block;
}
@media (min-width: 768px) {
  .market_organizer_message .organizer_content_inner {
    display: block !important;
    position: relative;
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .market_organizer_message .organizer_catch {
    position: absolute !important;
    top: -10px;
    left: -520px;
    width: 515px !important;
    font-size: 32px !important;
    line-height: 1.4 !important;
    color: #009b85 !important;
    margin: 0 !important;
    z-index: 10;
  }
  .market_organizer_message .organizer_profile_unit {
    display: block !important;
    float: right !important;
    width: 280px;
    margin-left: 80px !important;
    margin-bottom: 20px !important;
    position: relative;
    z-index: 5;
  }
  .market_organizer_message .organizer_img {
    width: 100% !important;
    padding-bottom: 15px;
    padding-left: 15px;
    margin-bottom: 15px !important;
    background-color: #FFF;
  }
  .market_organizer_message .organizer_img img {
    width: 100% !important;
    display: block;
  }
  .market_organizer_message .organizer_profile_txt_box {
    display: block !important;
    width: 100% !important;
  }
  .market_organizer_message .organizer_name_box {
    width: calc(100% - 15px)!important;
    display: block !important;
    border-bottom: 1.5px solid #545454;
    padding-bottom: 10px;
    background-color: #FFF;
    padding-left: 15px;
    margin-left: 15px;
  }
  .market_organizer_message .organizer_name {
    font-size: 32px !important;
  }
  .market_organizer_message .organizer_pos {
    font-size: 14px;
  }
  .market_organizer_message .organizer_main_text {
    display: block !important;
    width: auto !important;
    font-size: 16px;
    line-height: 2.5em;
    background-size: 100% 2.5em;
    background-image: linear-gradient(transparent 2.45em, #e0e0e0 2.45em, #e0e0e0 2.55em, transparent 2.45em) !important;
    margin-top: 100px;
  }
  .market_organizer_message .organizer_main_text p {
    margin-bottom: 0 !important;
  }
  .market_organizer_message .organizer_bottom_catch {
    clear: both !important;
    padding-top: 60px;
    font-size: 28px;
    display: block !important;
  }
  .market_organizer_message .decoration_icon::before {
    top: -25px;
    left: -20px;
    width: 35px;
    height: 35px;
  }
}
/* Summary Section
------------------------------------------ */
.market_summary {
  background: url("../img/summary_bg.png") no-repeat center left / cover;
}
.market_summary .summary_catch {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #FFF;
}
.market_summary .u_line_green_light {
  background: linear-gradient(transparent 70%, #b3e334 70%);
}
.market_summary .summary_white_box {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 20px;
  max-width: 960px;
  margin: 0 auto;
}
.market_summary .summary_sub_txt {
  font-size: 20px;
  margin-bottom: 10px;
}
.market_summary .summary_main_img {
  width: 110px;
  margin: 0 auto 20px;
}
.market_summary .summary_main_img img {
  width: 100%;
}
.market_summary .summary_footer_txt {
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 10px;
  flex-wrap: wrap;
}
.market_summary .summary_footer_txt p {
  position: relative;
}
.market_summary .summary_footer_txt p::before, .market_summary .summary_footer_txt p::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 42px;
  background-color: var(--color_text_main);
  vertical-align: middle;
  position: absolute;
  top: 5px;
}
.market_summary .summary_footer_txt p::before {
  transform: rotate(-25deg);
  left: -5px;
}
.market_summary .summary_footer_txt p::after {
  transform: rotate(25deg);
  right: -5px;
}
.market_summary .summary_icon {
  width: 34px;
  height: auto;
  position: relative;
  top: 13px;
}
.market_summary .deco_line {
  color: #ccc;
  font-weight: normal;
}
@media (min-width: 768px) {
  .market_summary {
    padding: 20px 0;
  }
  .market_summary .summary_catch {
    font-size: 28px;
  }
  .market_summary .summary_white_box {
    padding: 60px 40px;
  }
  .market_summary .summary_sub_txt {
    font-size: 32px;
  }
  .market_summary .summary_main_img {
    width: 180px;
    margin: 20px auto 30px;
  }
  .market_summary .summary_footer_txt {
    font-size: 24px;
    gap: 26px;
  }
  .market_summary .summary_footer_txt p::before, .market_summary .summary_footer_txt p::after {
    height: 30px;
  }
  .market_summary .summary_footer_txt p::before {
    left: -10px;
  }
  .market_summary .summary_footer_txt p::after {
    right: -10px;
  }
  .market_summary .summary_icon {
    display: none;
  }
}
/* Contact Section
------------------------------------------ */
.market_contact {
  background-color: #e2f1f4;
}
.market_contact .contact_inner {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}
.market_contact .contact_note {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 30px;
}
.market_contact .contact_ttl {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
}
.market_contact .form_select_date::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(../img/icon_calendar.png) no-repeat center center / contain;
  pointer-events: none;
  z-index: 2;
}
.market_contact .form_select_date {
  width: 100%;
  margin-bottom: 30px;
  padding: 15px 15px 15px 45px;
  background-color: #fce4e4;
  border: 1px solid #f9cccc;
  border-radius: 8px;
  font-size: 14px;
  appearance: none;
  background-image: url("../img/calender-icon.png");
  background-repeat: no-repeat;
  background-position: left 15px center;
  background-size: 18px;
  position: relative;
  z-index: 1;
}
.market_contact .form_select_date select {
  width: 100%;
  background-color: #fce4e4 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 8px;
  font-size: 14px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  z-index: 1;
  color: #333;
}
.market_contact .form_select_date select:invalid, .market_contact .form_select_date select option[value=""] {
  color: #666;
}
.market_contact .form_input_table {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
}
.market_contact .form_row {
  border-bottom: 1px solid #ddd;
  background-color: #eee;
}
.market_contact .form_row:last-child {
  border-bottom: none;
}
.market_contact .form_label {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.market_contact .label_required {
  background-color: #e65a4f;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
}
.market_contact .form_input {
  background-color: #fff;
  padding: 15px;
}
.market_contact .form_input input {
  width: 100%;
  padding: 12px;
  background-color: #fce4e4;
  border: 1px solid #f9cccc;
  border-radius: 6px;
}
.market_contact .tel_input_group {
  display: flex;
  gap: 10px;
}
.market_contact .tel_country {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #f5f5f5;
  padding: 0 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}
.market_contact .form_policy_area {
  font-size: 13px;
  margin-bottom: 40px;
}
.market_contact .policy_link {
  color: #333;
  display: inline-block;
  margin: 15px 0;
}
.market_contact .policy_link span {
  display: inline-block;
  text-decoration: underline;
}
.market_contact .policy_check {
  margin-top: 20px;
  font-size: 15px;
  font-weight: bold;
}
.market_contact .policy_check input {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 10px;
}
.market_contact .form_submit_btn button {
  width: 100%;
  max-width: 500px;
  background-color: #323d5d;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 8px 0 #1d253a;
  position: relative;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.market_contact .form_submit_btn button:active {
  box-shadow: 0 2px 0 #1d253a;
  transform: translateY(6px);
}
.market_contact .btn_icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: #fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23323d5d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E") no-repeat center center / 16px;
  border-radius: 50%;
}
.market_contact .form_submit_btn {
  text-align: center;
}
@media (min-width: 768px) {
  .market_contact {
    padding: 40px 0;
  }
  .market_contact .contact_inner {
    padding: 60px 40px;
  }
  .market_contact .contact_ttl {
    font-size: 24px;
  }
  .market_contact .contact_note, .market_contact .policy_txt, .market_contact .policy_link {
    font-size: 16px;
  }
  .market_contact .form_row {
    display: flex;
  }
  .market_contact .form_label {
    width: 240px;
    padding: 20px;
    background-color: #eee;
  }
  .market_contact .form_input {
    flex: 1;
    padding: 20px;
  }
  .market_contact .policy_check {
    font-size: 18px;
  }
  .market_contact .btn_icon {
    right: 20%;
  }
  .market_contact .form_submit_btn button {
    font-size: 22px;
  }
}
/* Footer Section
------------------------------------------ */
.market_footer {
  background-color: #fff;
  padding-top: 80px;
}

.market_footer .footer_nav {
  list-style: none;
  padding: 0 0 6px 0;
  margin: 0 auto;
  text-align: center;
  width: 90%;
}
.market_footer .footer_nav li {
  border-top: 1px solid #333;
  padding: 10px 0;
}
.market_footer .footer_nav li:first-child {
  border-top: none;
}
.market_footer .footer_nav li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  display: block;
}
.market_footer .footer_copy {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  margin-top: 0;
}
.market_footer .footer_copy p {
  font-size: 12px;
  margin: 0;
}
@media (min-width: 768px) {

  .market_footer .footer_nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 12px auto;
  }
  .market_footer .footer_nav li {
    border-top: none;
    border-right: 1px solid #333;
    padding: 0 30px;
  }
  .market_footer .footer_nav li:last-child {
    border-right: none;
  }
  .market_footer .footer_nav li a {
    font-size: 16px;
    letter-spacing: 0.05em;
  }
  .market_footer .footer_copy {
    padding: 20px 0;
  }
  .market_footer .footer_copy p {
    font-size: 14px;
  }
}

/* 申込フォーム（参考LPに寄せたデザイン・ページ幅に合わせたレスポンシブ）
------------------------------------------ */
#form.form_asp_section,
section#form.form_asp_section {
  background: #05a18a;
  padding: 40px 0 56px;
}
#form .form_asp_inner {
  width: var(--inner_sp);
  max-width: var(--inner_pc_wide);
  margin: 0 auto;
}
#form .form_asp_card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
}
#form .gd_title {
  background: linear-gradient(to bottom, #00a18c, #00aa9a, #04c5c0);
  padding: clamp(12px, 3vw, 28px) 16px;
  font-feature-settings: "palt";
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
}
#form .gd_title.padding_none h1 {
  padding: 0;
}
#form .gd_title h1 {
  text-align: center;
  color: #fff;
  font-size: clamp(1.25rem, 4.2vw, 2.375rem);
  line-height: 1.25;
  margin: 0;
  font-weight: bold;
}
#form .title_small_italic {
  font-size: 68%;
  margin-left: -2px;
}
#form .text_italic {
  transform: skewX(-10deg);
  display: inline-block;
}
#form .icon_wakaba_mini {
  width: clamp(28px, 7vw, 40px);
  height: auto;
  vertical-align: middle;
  margin-right: 4px;
  padding-bottom: 4px;
  object-fit: contain;
}
#form .kiro {
  color: #ffff66;
}
#form .form_asp_lead .form_asp_br {
  display: none;
}
#form .form_asp_lead {
  text-align: center;
  line-height: 1.6;
  font-size: clamp(14px, 3.6vw, 17px);
  color: #363636;
  margin: 20px auto;
  padding: 0 clamp(12px, 4vw, 24px);
}
#form .form_asp_lead_alert {
  display: block;
  margin-top: 0.35em;
  font-weight: bold;
  color: #d80011;
}
#form .table_form {
  margin: 0;
  padding: clamp(8px, 2vw, 16px);
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #c0c0c0;
  box-sizing: border-box;
}
#form .table_form th,
#form .table_form td {
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
  padding: clamp(12px, 3vw, 20px);
  box-sizing: border-box;
  vertical-align: top;
}
#form .table_form th {
  background: #faf6ec;
  text-align: center;
  font-weight: bold;
  font-size: clamp(15px, 3.5vw, 18px);
}
#form .table_form td:first-of-type:not([colspan]) {
  font-weight: bold;
  font-size: clamp(14px, 3.2vw, 16px);
  background: #fafafa;
  width: 28%;
  min-width: 7.5em;
}
#form .table_form td span {
  font-size: 0.85rem;
  color: #787878;
  line-height: 1.5;
}
#form .table_form td span a {
  color: #00a58f;
  text-decoration: underline;
}
#form .table_form td span a:hover {
  color: #31dac3;
}
#form .table_form input[type="text"],
#form .table_form input[type="email"] {
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  background: #f5f5f5;
  border: none;
  border-radius: 0;
  font-size: clamp(16px, 3.8vw, 20px);
  font-weight: bold;
  padding: 12px 15px;
  margin: 4px 0;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
#form .table_form input[type="text"]:focus {
  background: #e9f5fb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  outline: none;
}
#form .table_form input[type="checkbox"] {
  transform: scale(1.2);
  margin: 0 8px 0 0;
  vertical-align: middle;
}
#form .form_asp_check_label {
  display: inline-block;
  line-height: 1.5;
  font-weight: normal;
  cursor: pointer;
}
#form .form_asp_submit_cell {
  text-align: center;
  background: #fff;
  padding-top: clamp(20px, 4vw, 28px);
  padding-bottom: clamp(16px, 3vw, 24px);
  border-bottom: none;
}
#form .form-submit {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background: #ffc942;
  color: #fff;
  font-size: clamp(1rem, 3.2vw, 1.25rem);
  font-weight: bold;
  border: none;
  border-radius: 8px;
  padding: 16px 28px;
  width: min(100%, 400px);
  max-width: 90%;
  margin: 0 auto;
  display: inline-block;
  transition: background 0.3s ease;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
}
#form .form-submit:hover {
  background: #74726d;
}
@media (max-width: 768px) {
  #form.form_asp_section,
  section#form.form_asp_section {
    padding: 28px 0 40px;
  }
  #form .form_asp_lead .form_asp_br {
    display: block;
  }
  #form .form_asp_lead {
    text-align: left;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  #form .table_form th,
  #form .table_form td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  #form .table_form tr {
    border-bottom: 1px solid #d7d7d7;
  }
  #form .table_form tr:last-child {
    border-bottom: none;
  }
  #form .table_form td:first-of-type:not([colspan]) {
    width: 100%;
    min-width: 0;
    padding-bottom: 8px;
  }
  #form .table_form td + td {
    padding-top: 0;
  }
  #form .table_form th[colspan="2"] {
    width: 100%;
  }
}
.ewp_form_container {
  border-radius: 8px;
  overflow: hidden;
}