@charset "utf-8";

/* ############################################### */
/* 頁 スタイルシート */
/* ############################################### */

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Jost:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Icons");
@import url("https://fonts.googleapis.com/css2?family=Lexend+Exa:wght@100;200;300;400;500;600;700;800;900&display=swap");

::selection {
  background-color: #f45b17;
  color: #fff;
}


.font_s {
  font-family: "Jost", sans-serif;
  font-weight: 500;
}

.font_s2 {
  font-family: "Jost", sans-serif;
  font-weight: 500;
}

/* -------------------------------------------------------------------------------- */

/* Material icons */
.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 32px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -moz-font-feature-settings: "liga";
  -moz-osx-font-smoothing: grayscale;

  display: inline-flex;
  vertical-align: middle;
  margin-top: -2px;
}

/* アイコンサイズ */
.material-icons.md-14 {
  font-size: 14px;
}
.material-icons.md-16 {
  font-size: 16px;
}
.material-icons.md-18 {
  font-size: 18px;
}
.material-icons.md-24 {
  font-size: 24px;
}
.material-icons.md-36 {
  font-size: 36px;
}
.material-icons.md-48 {
  font-size: 48px;
}

/* -------------------------------------------------------------------------------- */

a {
  text-decoration: none;
}

.c_img {
  width: 100%;
  height: auto;
}

a:hover img {
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  opacity: 0.8;
}
/* ### flex ### */
/* -------------------------------------------------------------------------------- */
.c_fl_between {
  display: -moz-flex;
  display: -webkit-flex;
  display: -o-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -webkit-flex-pack: justify;
  -moz-flex-pack: justify;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.c_fl_center {
  display: -moz-flex;
  display: -webkit-flex;
  display: -o-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -webkit-flex-pack: justify;
  -moz-flex-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  flex-wrap: wrap;
}

.c_fl_sub_center {
  align-self: center;
}
.c_fl_sub_start {
  align-self: start;
}
.c_fl_sub_end {
  align-self: end;
}

/* ---------------------------------- */

body {
  color: #333;
  font-family:
    "Noto Sans JP", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "ＭＳ ゴシック", "MS Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
  line-height: 2em;
  font-size: 0.94em;
  font-weight: 400;
  background-color: #fff;
}
body * {
  font-weight: 400;
}

.c_container {
  min-width: 1200px;
  overflow: hidden;
}

/* ### ヘッダー ### */
/* -------------------------------------------------------------------------------- */
.c_header {
  /* position: fixed; */
  width: 100%;
  min-width: 1200px;
  z-index: 600;
}

.c_header_main {
  position: relative;
}

.c_logo {
  width: 90px;
  height: 41px;
  position: absolute;
  top: 20px;
  left: 30px;
  z-index: 10;
}
.c_logo img {
  width: 100%;
  height: auto;
}

.c_header_main_menu {
  background-color: #3c3c3c;
}

.c_gnav {
  display: none;
}

.c_gnav_menu {
  max-width: 1200px;
  height: 90px;
  margin: 0 auto;
  align-items: center;
}

.c_gnav_menu li {
  height: 100%;
  text-align: center;
  line-height: 1.2em;
}

.c_gnav_menu li a {
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 1.24em;
  letter-spacing: 0.04em;
  position: relative;
  padding: 0 26px;
  overflow: hidden;
  transition: ease 0.2s;
  z-index: 620;
}
.c_gnav_menu li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -250%;
  background: #fa7828;
  width: 180%;
  height: 130%;
  transform: skewX(-25deg);
  z-index: 610;
}

@media (min-width: 768px) {
  .c_gnav_menu li a:hover::before {
    animation: skewanime 0.2s forwards;
  }
}

@keyframes skewanime {
  100% {
    left: -30%;
  }
}

@media (min-width: 768px) {
  .c_gnav_menu li a:hover {
    color: #fff;
  }
}

.c_gnav_menu li a span {
  position: relative;
  z-index: 620;
}

.c_gnav_menu_s {
  display: block;
  margin-bottom: 8px;
  color: #65D21C;
  font-size: 0.66em;
  position: relative;
  font-family: 'Lexend Exa', sans-serif;
}

.c_gnav_fix {
  position: fixed;
  z-index: 700;
  top: 0;
  left: 0;
  min-width: 1200px;
  width: 100%;
}

.c_header_company {
  background-color: #fff;
  padding: 0 80px;
}
.c_header_company li {
  height: 100px;
  padding: 10px 20px;
  box-sizing: border-box;
}

.c_header_company1 {
  width: 15%;
}
.c_header_company2 {
  width: 20%;
}
.c_header_company3 {
  width: 11%;
}
.c_header_company4 {
  width: 16%;
}
.c_header_company5 {
  width: 23%;
}
.c_header_company6 {
  width: 15%;
}

.c_header_company li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ### フッター ### */
/* -------------------------------------------------------------------------------- */
.c_footer {
  padding: 10px 0 10px 0;
  background-color: #222;
  color: #fff;
  line-height: 1.6em;
}

.c_footer_copyright {
  font-size: 0.92em;
  text-align: center;
}

/* ### タイトル ### */
/* -------------------------------------------------------------------------------- */

.c_title {
  font-size: 3em;
  font-weight: 500;
  line-height: 1em;
  text-align: center;
}
.c_title * {
  font-weight: 500;
}

.c_title_wh {
  color: #fff;
}

.c_title em {
  display: block;
}
.c_title em.c_title_small1 {
  font-size: 0.4em;
  color: #f45b17;
  margin-top: -10px;
  font-weight: 700;
}

.c_title em.c_title_small1 * {
  font-weight: 700;
}

.c_title_wh em.c_title_small1 {
  color: #fff;
}

.c_title_l {
  letter-spacing: 0.1em;
}

.c_title_s {
  letter-spacing: 0em;
}

.c_title2 {
  font-size: 2.4em;
  font-weight: 500;
  line-height: 1em;
  text-align: center;
  color: #f45b17;
}
.c_title2 * {
  font-weight: 500;
}

.c_title3 {
  font-size: 2.2em;
  font-weight: 700;
  line-height: 1em;
  text-align: center;
  color: #f45b17;
}
.c_title3 * {
  font-weight: 700;
}

.c_title4 {
  font-size: 1.7em;
  font-weight: 700;
  line-height: 1em;
  text-align: center;
  color: #222;
}
.c_title4 * {
  font-weight: 700;
}

/* ### リンクボタン ### */
/* -------------------------------------------------------------------------------- */

.c_link {
  width: 480px;
  height: 96px;
  margin: 20px auto 0 auto;
}

.c_link_text {
  text-align: center;
  margin-top: 8px;
  margin-bottom: 100px;
  font-size: 1.06em;
}
.c_link_text em {
  font-style: normal;
}
.c_link_text_d {
  font-size: 1.2em;
}
.c_link_text_d2 {
  font-size: 1.1em;
}

.c_link_aj {
  margin-bottom: 40px;
}

.c_link_aj2 {
  margin-top: 100px;
}

.c_link_aj3 {
  position: relative;
  z-index: 550;
  padding-bottom: 100px;
}

.c_link_button {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 1em;
  text-align: center;
  /* border-radius: 4px; */
  background-color: #fff;
  border-radius: 100px;
}

.c_link_button_c {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1em;
  text-align: center;
  padding: 18px 30px 18px 36px;
  border-radius: 100px;
}

.c_link_button_c * {
  font-weight: 500;
}

.c_link_button_col1 .c_link_button_c {
  color: #fff;
  /* background: linear-gradient(45deg, #f45b17, 70%, #f8a246); */
  background-color: rgba(244, 91, 23, 1);
  box-shadow:
    0 1px 4px rgba(0, 0, 0, 0.2),
    0 0 40px rgba(128, 128, 128, 0.1);
  overflow: hidden;
  transition: all 0.4s;
}

.c_link_button_col1 .c_link_button_c::before {
  content: "";
  position: absolute;
  top: -75%;
  left: -110%;
  width: 100%;
  height: 200%;
  background: linear-gradient(0deg, #0594b3, #02b7bd);
  z-index: 550;
  transform: rotate(-45deg);
  transition: all 0.4s ease-out;
}
.c_link_button_col1 .c_link_button_c::after {
  content: "";
  position: absolute;
  bottom: -75%;
  right: -110%;
  width: 100%;
  height: 200%;
  background: linear-gradient(0deg, #02b7bd, #0594b3);
  z-index: 550;
  transform: rotate(-45deg);
  transition: all 0.4s ease-out;
}

@media (min-width: 768px) {
  .c_link_button_col1:hover .c_link_button_c {
    box-shadow:
      0 1px 10px rgba(0, 0, 0, 0.6),
      0 0 60px rgba(128, 128, 128, 0.1);
  }

  .c_link_button_col1:hover .c_link_button_c:before {
    left: 33%;
  }

  .c_link_button_col1:hover .c_link_button_c:after {
    right: 33%;
  }
}

.c_link_button_col2 {
  margin-top: 50px;
}

.c_link_button_col2 .c_link_button_c {
  color: #fff;
  background-color: rgba(5, 148, 179, 1);
  box-shadow:
    0 1px 4px rgba(0, 0, 0, 0.2),
    0 0 40px rgba(128, 128, 128, 0.1);
  overflow: hidden;
  transition: all 0.4s;
}

.c_link_button_col2 .c_link_button_c::before {
  content: "";
  position: absolute;
  top: -75%;
  left: -110%;
  width: 100%;
  height: 200%;
  background: linear-gradient(0deg, #0594b3, #02b7bd);
  z-index: 550;
  transform: rotate(-45deg);
  transition: all 0.4s ease-out;
}
.c_link_button_col2 .c_link_button_c::after {
  content: "";
  position: absolute;
  bottom: -75%;
  right: -110%;
  width: 100%;
  height: 200%;
  background: linear-gradient(0deg, #02b7bd, #0594b3);
  z-index: 550;
  transform: rotate(-45deg);
  transition: all 0.4s ease-out;
}

@media (min-width: 768px) {
  .c_link_button_col2:hover .c_link_button_c {
    box-shadow:
      0 1px 10px rgba(0, 0, 0, 0.6),
      0 0 60px rgba(128, 128, 128, 0.1);
  }

  .c_link_button_col2:hover .c_link_button_c:before {
    left: 33%;
  }

  .c_link_button_col2:hover .c_link_button_c:after {
    right: 33%;
  }
}

.c_link_button_text {
  line-height: 2.2em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 560;
}

.c_link_button_text em {
  font-size: 2.2em;
  letter-spacing: 0.1em;
}

.c_link_button_arrow {
  position: absolute;
  width: 19px;
  height: 18px;
  top: 50%;
  right: 7%;
  transform: translate(0, -50%);
  z-index: 560;
}

@media (min-width: 768px) {
  .c_link_button:hover .c_link_button_arrow {
    transition: 0.1s cubic-bezier(0.45, 0, 0.55, 1);
    animation: arrow 0.5s;
  }
}
@keyframes arrow {
  50% {
    right: 10%;
  }
  100% {
    right: 7%;
  }
}

/* -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */

/* ### コンテンツ ### */
/* -------------------------------------------------------------------------------- */
.c_contents {
  padding-top: 136px;
}

.c_contents_fix {
  padding-top: 226px;
}

.c_section {
  margin: 0 auto 120px auto;
  box-sizing: border-box;
  position: relative;
  z-index: 510;
}

.c_section12 {
  max-width: 1200px;
  padding: 0 20px;
}

.c_section9 {
  width: 960px;
  margin: 0 auto 120px auto;
}

.c_section10 {
  width: 1080px;
  margin: 0 auto 0 auto;
}

.c_section_aj {
  margin-bottom: 80px;
}
.c_section_aj0 {
  margin-bottom: 0;
}

/* ### コンテンツ詳細 ### */
/* -------------------------------------------------------------------------------- */

/* ### TOPICS トピックス ### */
/* -------------------------------------------------------------------------------- */

.c_topics {
  display: table;
  margin: 30px auto 0 auto;
}

.c_topics li {
  margin: 10px 0;
}

.no_link {
  padding-left: 0.9em;
}

/* ### MESSAGE メッセージ ### */
/* -------------------------------------------------------------------------------- */

.c_message {
  margin-top: 40px;
  font-size: 1.18em;
  text-align: center;
  line-height: 1.9em;
}

.c_message_title {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 1em;
  color: #f45b17;
}
.c_message_title * {
  font-weight: 700;
}

.c_message_text {
  margin-bottom: 2em;
}

/* ### POINT ポイント ### */
/* -------------------------------------------------------------------------------- */

.c_point {
  margin-top: 50px;
  display: flex;
  justify-content: space-around;
}

.c_point li {
  width: 31%;
  background-color: #fff;
  padding: 40px 50px;
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.c_point_num {
  height: 2em;
  font-size: 1.2em;
  font-weight: 700;
  color: #f45b17;
}
.c_point_num * {
  font-weight: 700;
}

.c_point_title {
  font-size: 1.2em;
  font-weight: 700;
}
.c_point_title * {
  font-weight: 700;
}
.c_point_text {
  margin-top: 20px;
  flex-grow: 1;
}

/* ### PICK UP ### */
/* -------------------------------------------------------------------------------- */

.c_pickup {
  padding: 70px 0 10px 0;
}

.c_pickup_line {
  border-bottom: 2px dotted #bbb;
  width: 20em;
  margin: 0 auto 0 auto;
}

.c_pickup_part {
  width: 1080px;
  margin: 40px auto 50px auto;
  background-color: #fff;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
  padding: 30px 30px 30px 50px;
}

.c_pickup_part_p1 {
  width: 30%;
}

.c_pickup_part_p2 {
  width: 66%;
}

.c_pickup_part_seminar {
  margin-bottom: 10px;
}
.c_pickup_part_seminar em {
  padding: 0px 8px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background-color: #f1912f;
  border-radius: 20px;
}
.c_pickup_part_seminar em * {
  font-weight: 700;
}

.c_pickup_part_time {
  font-size: 26px;
  color: #f1912f;
  padding-left: 0.5em;
}

.c_pickup_part_title {
  width: 100%;
  font-size: 22px;
  font-weight: 500;
  color: #f05b17;
  line-height: 1.3em;
  margin: 10px 0 0 0;
}
.c_pickup_part_title * {
  font-weight: 500;
}

.c_pickup_part_logo_image {
  width: 130px;
}

.c_pickup_part_logo_image {
  background-color: #fff;
  height: 70px;
  margin-right: 20px;
}
.c_pickup_part_logo_image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 1px solid #aaa;
}

.c_pickup_part_company_text1 {
  font-size: 24px;
  font-weight: 700;
}
.c_pickup_part_company_text1 * {
  font-weight: 700;
}

.c_pickup_part_company_text2 {
  font-size: 15px;
  font-weight: 700;
}
.c_pickup_part_company_text2 * {
  font-weight: 700;
}

.c_pickup_part_company_text2 em {
  font-size: 1.3em;
}

.c_pickup_part_text {
  margin-top: 20px;
}

/* ### COMPANY 参加企業 ### */
/* -------------------------------------------------------------------------------- */

.c_company {
  padding: 70px 0 10px 0;
}

.c_comingsoon {
  text-align: center;
  margin: 80px 0 120px 0;
  font-size: 2em;
}

.c_company_list_l {
  /* width: 50%; */
  margin: 50px auto 0 auto;
}
.c_company_list {
  /* width: 55%; */
  margin: 50px auto 120px auto;
}

.c_company_list_k {
  position: relative;
  padding-bottom: 100px;
  z-index: 550;
}

.c_company_list_l ul {
  margin-top: 30px;
}

.c_company_list_k ul {
  margin-top: 50px;
}

.c_company_list .c_company_list_aj {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}

.c_company_list ul.c_fl_between {
  display: -moz-flex;
  display: -webkit-flex;
  display: -o-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -webkit-flex-pack: justify;
  -moz-flex-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  flex-wrap: wrap;
}

.c_company_list_l ul::before {
  content: "";
  display: block;
  width: 48%;
  order: 1;
}
.c_company_list_l ul::after {
  content: "";
  display: block;
  width: 48%;
}

.c_company_list_k ul::before {
  content: "";
  display: block;
  width: 23%;
  order: 1;
}

.c_company_list_k ul::after {
  content: "";
  display: block;
  width: 23%;
}

.c_company_list_l li {
  width: 31.5%;
  margin-bottom: 26px;
}
.c_company_list li {
  width: 23%;
  margin-bottom: 26px;
  margin-left: 1%;
  margin-right: 1%;
}
.c_company_list .c_company_list_aj li {
  width: 30%;
  margin-left: 1.3%;
  margin-right: 1.3%;
}

.c_company_list_k li {
  width: 23%;
  margin-bottom: 26px;
}

.c_company_list_image {
  background-color: #fff;
  height: 84px;
  padding: 10px 20px;
}
.c_company_list_image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.c_company_list_k_image {
  background-color: #fff;
  height: 84px;
  padding: 10px 20px;
}
.c_company_list_k_image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.c_company_list_l_image {
  background-color: #fff;
  height: 104px;
  padding: 10px 20px;
}
.c_company_list_l_image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.c_company_list_text {
  font-size: 0.92em;
  margin-top: 4px;
  line-height: 1.4em;
}
.c_company_list_text2 {
  text-align: center;
  font-size: 1.1em;
  margin-top: 30px;
}

/* ### TIMETABLE タイムテーブル ### */
/* -------------------------------------------------------------------------------- */

.c_timetable {
  padding: 70px 0 70px 0;
}

.c_timetable_area {
  margin-top: 40px;
  margin-bottom: 50px;
}

.c_timetable_part {
  width: 680px;
  padding: 25px 40px;
  margin: 0 auto;
  border: 1px solid #f45b17;
  background-color: #fff;
}

.c_timetable_part li {
  margin: 12px 0 12px 0;
  padding: 0 0 12px 0;
  border-bottom: 2px dotted #888;
}

.c_timetable_part li:last-child {
  border-bottom: none;
}

.c_timetable_time1 {
  text-align: center;
  background: #000;
  height: 100%;
  width: 100%;
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);

  position: relative;
}
.c_timetable_time1_text {
  color: #fff;
  font-size: 26px;
  position: absolute;
  width: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 88;
}

.c_timetable_time1_b {
  width: 108px;
  height: 40px;
  position: relative;
}

.c_timetable_time2 {
  text-align: center;
  background: #000;
  height: 100%;
  width: 100%;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);

  position: relative;
}
.c_timetable_time2_text {
  color: #fff;
  font-size: 26px;
  position: absolute;
  width: 160px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 88;
}

.c_timetable_time2_b {
  width: 194px;
  height: 40px;
  position: relative;
}

.c_timetable_time_text {
  font-size: 22px;
  font-weight: 700;
  padding-left: 5px;
}
.c_timetable_time_text2 {
  font-size: 18px;
  font-weight: 700;
  padding-left: 5px;
}

.c_timetable_contents1 {
  width: 220px;
  margin-right: 30px;
}
.c_timetable_contents2 {
  width: 220px;
}

.c_timetable_contents3 {
  width: 120px;
}
.c_timetable_contents4 {
  width: 440px;
}

.c_timetable_contents4p {
  background-color: #fce9d5;
  padding: 3px 6px;
  border-radius: 4px;
}

.c_timetable_contents4p2 {
  padding: 4px 10px;
}

.c_timetable_time3 {
  width: 90px;
  color: #fff;
  text-align: center;
  font-size: 26px;
  padding: 2px 10px;
  background-color: #f49169;
  border-radius: 100px;
}

.c_timetable_time3_t {
  text-align: center;
  line-height: 1.2em;
  margin: 10px 0 10px 0;
}
.c_timetable_time3_t em {
  color: #f05b17;
  font-size: 22px;
}
.c_timetable_time4_t em {
  color: #f1912f;
  font-size: 22px;
}

.c_timetable_contents_title1 {
  height: 42px;
  line-height: 42px;
  margin-top: 5px;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 700;
  color: #f45b17;
  text-align: center;
  border: 1px solid #f45b17;
  border-radius: 4px;
}
.c_timetable_contents_title2 {
  height: 42px;
  line-height: 42px;
  margin-top: 5px;
  font-size: 24px;
  font-weight: 700;
  color: #f7922d;
  text-align: center;
  border: 1px solid #f7922d;
  border-radius: 4px;
}

.c_timetable_contents_title3 {
  height: 34px;
  line-height: 34px;
  margin-top: 5px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background-color: #f05b17;
  text-align: center;
  border-radius: 4px;
}

.c_timetable_contents_title4 {
  height: 34px;
  line-height: 34px;
  margin-top: 5px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background-color: #f1912f;
  text-align: center;
  border-radius: 4px;
}

.c_timetable_contents_title5 {
  height: 32px;
  line-height: 32px;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 500;
  background-color: #f8c897;
  border-radius: 4px;
  padding: 0 10px;
}
.c_timetable_contents_title5 * {
  font-weight: 500;
}
.c_timetable_contents_title5.c_timetable_contents_title5_aj {
  margin-top: 0;
}

.c_timetable_contents_title5 .c_timetable_contents_title5t {
  color: #fff;
  padding-right: 0.2em;
}

.c_timetable_contents_text {
  margin: 18px 0 18px 0;
  /* text-align: center; */
}
.c_timetable_contents_text em {
  width: 120px;
  font-size: 24px;
  padding-left: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}

.c_timetable_contents_part {
  width: 100%;
  margin-top: 10px;
}
.c_timetable_contents_txt {
  line-height: 1.5em;
  margin: 6px 0 0 6px;
}

.c_timetable_contents_p1 {
  font-size: 21px;
  margin: 6px 0;
}

.c_timetable_contents_p1 em {
  font-weight: 700;
}
.c_timetable_contents_p1 em * {
  font-weight: 700;
}

.c_timetable_contents_pc {
  font-size: 18px;
  font-weight: 500;
  color: #f05b17;
  line-height: 1.4em;
  margin-bottom: 15px;
}
.c_timetable_contents_pc * {
  font-weight: 500;
}

.c_timetable_contents_pc2 {
  font-size: 18px;
  font-weight: 500;
  color: #825d5a;
  line-height: 1.4em;
  margin-bottom: 15px;
}
.c_timetable_contents_pc2 * {
  font-weight: 500;
}

.c_timetable_contents_button {
  width: 100%;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.c_timetable_contents_button a {
  display: block;
  padding: 5px 0;
  border: 1px solid #21a9bf;
  border-radius: 10px;
  color: #21a9bf;
}
.c_timetable_contents_button a:hover {
  background-color: #21a9bf;
  color: #fff;
}

.c_timetable_contents_button2 {
  margin-top: 20px;
  text-align: center;
}

.c_timetable_contents_button_text {
  position: relative;
  padding: 10px 30px 10px 0;
  font-size: 1.2em;
  font-weight: 500;
}
.c_timetable_contents_button_text2 {
  position: relative;
  padding: 10px 0 10px 30px;
  font-size: 1.2em;
  font-weight: 500;
  color: #333;
}

.c_timetable_contents_button_c {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -45%);

  box-sizing: content-box;
  width: 14px;
  height: 14px;
  padding: 5px;
  background-color: #80d5df;
  border-radius: 3px;
}
.c_timetable_contents_button_c2 {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -45%);

  box-sizing: content-box !important;
  width: 14px;
  height: 14px;
  padding: 5px;
  background-color: #80d5df;
  border-radius: 3px;
}

.c_timetable_contents_button a:hover .c_timetable_contents_button_c,
.c_timetable_contents_button2 .c_timetable_contents_button_c2,
.c_timetable_contents_button2 .c_timetable_contents_button_text2 {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.c_timetable_contents_button a:hover .c_timetable_contents_button_c {
  background-color: #fff;
}
.c_timetable_contents_button2 a:hover .c_timetable_contents_button_c2 {
  background-color: #f05b17;
}

.c_timetable_contents_button2 a:hover .c_timetable_contents_button_text2 {
  color: #f45b17;
}

.c_timetable_contents_button_sq {
  width: 14%;
  left: 43%;
  height: 100%;
  position: relative;
  background-color: #fff;
}
.c_timetable_contents_button_sq::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  background-color: #fff;
}

.c_timetable_contents_button a:hover .c_timetable_contents_button_sq {
  background-color: #21a9bf;
}
.c_timetable_contents_button a:hover .c_timetable_contents_button_sq::before {
  background-color: #21a9bf;
}

.c_timetable_contents_button_sq.c_modal_close_b {
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c_timetable_contents_part2 {
  margin-bottom: 70px;
}
.c_timetable_contents_part3 {
  margin-bottom: 30px;
}

.c_timetable_contents_part_photo {
  width: 45%;
}
.c_timetable_contents_part_photo2 {
  width: 45%;
}

.c_timetable_contents_part_photo2_aj {
  margin-right: 5px;
}
.c_timetable_contents_part_photo2 img {
  border: 1px solid #444;
}

.c_timetable_contents_part_text {
  width: 50%;
  line-height: 1.7em;
}

.c_timetable_contents_part_text2 {
  width: 100%;
  line-height: 1.7em;
  margin-top: 10px;
}

.c_timetable_contents_comingsoon {
  font-size: 22px;
  padding-left: 5px;
  padding-top: 5px;
  font-weight: 700;
}

.c_timetable_banner {
  width: 800px;
  max-width: 800px;
  margin: 50px auto 0 auto;
}

.c_timetable_banner_text {
  text-align: center;
  font-size: 1.16em;
  font-weight: 500;
  line-height: 1em;
  margin-top: 15px;
}

.c_timetable_banner_text2 {
  text-align: center;
  font-size: 1.16em;
  font-weight: 500;
  line-height: 2em;
  margin-top: 40px;
}

.c_timetable_banner_text a {
  font-weight: 700;
  padding-left: 0.1em;
}

/* ### ACCESS ### */
/* -------------------------------------------------------------------------------- */
.c_access_aj {
  margin-top: 90px;
}

.c_access {
  margin-top: 50px;
}

.c_access11 {
  width: 20%;
  margin-bottom: 3em;
  text-align: right;
}

.c_access11 em {
  font-weight: 700;
}
.c_access11 em * {
  font-weight: 700;
}

.c_access12 {
  width: 77%;
  margin-bottom: 3em;
}

.c_access21 {
  width: 2em;
  color: #f45b17;
  font-size: 0.9em;
}

.c_access22 {
  width: calc(100% - 2em);
}

.c_access_map {
  width: 100%;
}
.c_access_map iframe {
  width: 100%;
}

/* ### FAQ よくある質問 ### */
/* -------------------------------------------------------------------------------- */

.c_faq {
  margin-top: 50px;
}

.c_faq_part {
  padding: 50px 50px;
  box-shadow:
    0 1px 4px rgba(64, 64, 64, 0.2),
    0 0 40px rgba(128, 128, 128, 0.1);
  margin-bottom: 24px;
}

.c_faq_part dt {
  margin-bottom: 20px;
}

.c_faq_q {
  width: 3.5em;
}

.c_faq_q em {
  display: block;
  text-align: center;
  width: 2em;
  height: 2em;
  line-height: 1em;
  background-color: #0594b3;
  color: #fff;
  font-size: 1.3em;
  border-radius: 50%;
  padding: 0.5em;
  font-weight: 500;
}
.c_faq_q em * {
  font-weight: 500;
}

.c_faq_q_text {
  width: calc(100% - 3.5em);
  font-size: 1.3em;
  font-weight: 500;
  margin-top: 4px;
}
.c_faq_q_text * {
  font-weight: 500;
}

.c_faq_a {
  width: 3.5em;
}

.c_faq_a em {
  display: block;
  text-align: center;
  width: 2em;
  height: 2em;
  line-height: 1em;
  background-color: #f45b17;
  color: #fff;
  font-size: 1.3em;
  border-radius: 50%;
  padding: 0.5em;
  font-weight: 500;
}
.c_faq_a em * {
  font-weight: 500;
}

.c_faq_a_text {
  width: calc(100% - 3.5em);
  margin-top: 4px;
}

/* ### 昨年実績 ### */
/* -------------------------------------------------------------------------------- */
.c_achieve {
  text-align: center;
  font-size: 1.18em;
  margin-top: 40px;
}

.c_achieve_title {
  font-size: 1.1em;
  font-weight: 700;
}
.c_achieve_title * {
  font-weight: 700;
}

.c_achieve_text {
  margin-bottom: 16px;
}

.c_achieve_company {
  margin-bottom: 16px;
  text-align: center;
}
.c_achieve_company li {
  display: inline-block;
}
.c_achieve_company li::after {
  content: "、";
}
.c_achieve_company li.c_achieve_company_aj::after,
.c_achieve_company li.c_achieve_company_etc::after {
  content: "";
}
.c_achieve_company li.c_achieve_company_etc {
  width: 100%;
}

/* ### メインビジュアル ### */
/* -------------------------------------------------------------------------------- */

.c_main_header_visual {
  width: 100%;
  height: 598px;
  position: relative;
  background: url(/finance_career_forum_2025/main_bg.png) no-repeat center top;
  background-size: cover;
}

.c_main_header_visual_image {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-right: 160px;
  position: relative;
}

.c_main_header_visual_image_pc {
  display: inline;
}
.c_main_header_visual_image_sp {
  display: none;
}

@media (min-width: 768px) {
  .c_entry_button1:hover::before {
    top: 0%;
    left: 25%;
  }

  .c_entry_button1:hover::after {
    top: -75%;
    right: 50%;
  }
}

.c_entry_button1_re {
  position: relative;
  width: 100%;
  height: 100%;
}
.c_entry_button1_text{
  position: absolute;
  width: 250px;
  height: 250px;
  top: 36%;
  left: 94%;
  transform: translate(20%, -80%);
  z-index: 710;
}
.c_entry_button1_text_after {
  position: absolute;
  width: 250px;
  height: 250px;
  top: 36%;
  left: 94%;
  transform: translate(20%, -80%);
  z-index: 710;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.c_entry_button1:hover .c_entry_button1_text_after {
  opacity: 1;
}
.c_entry_button1:hover .c_entry_button1_text {
  opacity: 0;
}

@media (min-width: 768px) {
  .c_entry_button1:hover .c_entry_button1_arrow {
    transition: 0.1s cubic-bezier(0.45, 0, 0.55, 1);
    animation: arrow_b1 0.5s;
  }
}
@keyframes arrow_b1 {
  40% {
    left: 55%;
  }
  70% {
    left: 49%;
  }
  100% {
    left: 50%;
  }
}
.c_entry_button2 {
  display: block;
  position: absolute;
  width: 180px;
  height: 153px;
  bottom: 60px;
  right: 3%;
}

.c_entry_button2_re {
  position: relative;
  width: 100%;
  height: 100%;
}

.c_entry_button2::before {
  content: "";
  position: absolute;
  top: -150%;
  left: -75%;
  width: 100%;
  height: 200%;

  z-index: 2700;
  transform: rotate(45deg);
  transition: all 0.3s ease-out;
}
.c_entry_button2::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -70%;
  width: 100%;
  height: 200%;
  background: linear-gradient(0deg, #222, #451304);
  z-index: 2700;
  transform: rotate(45deg);
  transition: all 0.3s ease-out;
}
@media (min-width: 768px) {
  .c_entry_button2:hover::before {
    top: 0%;
    left: 25%;
  }

  .c_entry_button2:hover::after {
    top: -75%;
    right: 50%;
  }
}

.c_entry_button2_text {
  position: absolute;
  width: 113px;
  height: 52px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  z-index: 2710;
}

.c_entry_button2_arrow {
  position: absolute;
  width: 18px;
  height: 17px;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 14%;
  z-index: 2710;
}

@media (min-width: 768px) {
  .c_entry_button2:hover .c_entry_button2_arrow {
    transition: 0.1s cubic-bezier(0.45, 0, 0.55, 1);
    animation: arrow_b2 0.5s;
  }
}
@keyframes arrow_b2 {
  40% {
    left: 55%;
  }
  70% {
    left: 49%;
  }
  100% {
    left: 50%;
  }
}

.c_entry_fix {
  display: none;
  min-width: 1200px;
  width: 100%;

  position: fixed;
  left: 0;
  bottom: 20px;
  z-index: 2000;
}

.c_limit_image {
  width: 200px;
  position: absolute;
  bottom: 140px;
  right: 150px;
}

/* -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */

/* ### タブレット ### */
@media (max-width: 1079px) {
  .c_container {
    min-width: 100%;
  }

  /* ### ヘッダー ### */
  /* -------------------------------------------------------------------------------- */
  .c_header {
    min-width: 100%;
  }

  .c_logo {
    width: 8vw;
  }

  .c_gnav_menu li a {
    font-size: 1.14em;
    letter-spacing: 0;
    padding: 0 16px;
  }

  /* ### フッター ### */
  /* -------------------------------------------------------------------------------- */

  /* ### タイトル ### */
  /* -------------------------------------------------------------------------------- */

  .c_title {
    font-size: 2.6em;
  }

  /* ### リンクボタン ### */
  /* -------------------------------------------------------------------------------- */

  .c_link {
    width: 300px;
    height: 70px;
  }

  .c_link_text {
    font-size: 1em;
  }

  .c_link_text_d {
    font-size: 1.1em;
  }
  .c_link_text_d2 {
    font-size: 1em;
  }

  .c_link_button_c {
    font-size: 1em;
  }

  .c_link_button_text {
    line-height: 1.8em;
  }

  .c_link_button_text em {
    font-size: 1.8em;
  }

  .c_link_button_text_s {
    white-space: nowrap;
    font-size: 0.8em;
  }

  /* ### コンテンツ ### */
  /* -------------------------------------------------------------------------------- */
  .c_contents {
    padding-top: 116px;
  }

  .c_section {
    max-width: 100%;
    box-sizing: border-box;
  }

  .c_section9 {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 960px;
  }

  .c_section10 {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 960px;
  }

  /* ### コンテンツ詳細 ### */
  /* -------------------------------------------------------------------------------- */

  /* ### PICK UP ### */
  /* -------------------------------------------------------------------------------- */
  .c_pickup_part {
    width: 90%;
  }

  /* ### ACCESS ### */
  /* -------------------------------------------------------------------------------- */
  .c_access {
    padding-left: 20px;
    padding-right: 20px;
  }

  .c_access11 {
    width: 100%;
    text-align: left;
    margin-bottom: 1em;
  }

  .c_access12 {
    width: 100%;
  }

  /* ### メインビジュアル ### */
  /* -------------------------------------------------------------------------------- */

  .c_main_header_visual {
    height: 50vw;
  }

  .c_main_header_visual_image {
    padding-right: 160px;
    padding-left: 20px;
  }

  .c_entry_button1 {
    width: 17vw;
    height: 14vw;
    bottom: 8px;
    right: 8px;
  }

  .c_entry_button1_text {
    width: 200px;
    height: 200px;
  }

  .c_limit_image {
    width: 15vw;
    bottom: 13vw;
    right: 13vw;
  }

  .c_entry_fix {
    min-width: 100%;
  }

  .c_entry_button2 {
    width: 150px;
    height: 128px;
  }

  .c_entry_button2_text {
    width: 100px;
    height: 46px;
  }
  .c_entry_button2_arrow {
    width: 15px;
    height: 14px;
  }

  /* -------------------------------------------------------------------------------- */
}
/*  @media (max-width: 1079px)  */

/* -------------------------------------------------------------------------------- */
@media (max-width: 889px) {
  .c_gnav_menu {
    display: none;
  }

  .c_gnav {
    display: block;
    position: fixed;
    z-index: 700;

    top: 0;
    right: -120%;
    width: 180px;
    height: 280px;

    background-color:#65d21c;
    color: #fff;

    transition: all 0.6s;
  }

  /* メニュークリック */
  .c_gnav.menu {
    right: 0;
  }

  .c_gnav.menu .c_gnav_area {
    position: fixed;
    z-index: 600;
    width: 70%;
    padding: 20px 60px 20px 30px;
    font-size: 1.1em;

    /* 縦スクロール */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .c_gnav.menu .c_gnav_area a {
    color: #fff;
  }

  .c_gnav_area_menu {
    margin-top: 50px;
  }

  .c_gnav_area_menu li {
    margin-bottom: 10px;
  }

  .c_gnav_area_menu .c_gnav_en {
    font-size: 0.8em;
    letter-spacing: 0.1em;
    padding-left: 1em;
  }

  .c_gnav_area_menu_aj {
    margin-top: 18px;
  }

  .c_menu_btn {
    position: fixed;
    z-index: 6000;
    top: 0;
    right: 0;
    display: block;

    background-color: #65d21c;
    width: 60px;
    height: 60px;
  }
  .c_menu_btn .c_menu_btn_part {
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 24%;
  }

  .c_menu_btn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;

    left: 50%;
    transform: translateX(-50%);

    height: 2px;
    border-radius: 1px;
    background-color: #fff;
    width: 40%;
  }

  .c_menu_btn span:nth-of-type(1) {
    top: 10%;
  }

  .c_menu_btn span:nth-of-type(2) {
    top: 24%;
  }

  .c_menu_btn span:nth-of-type(3) {
    top: 38%;
  }

  /* ### close(×) ### */

  .c_menu_btn.active span:nth-of-type(1) {
    top: 18%;
    left: 30%;

    transform: translateY(6px) rotate(-45deg);
    width: 44%;
  }

  .c_menu_btn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .c_menu_btn.active span:nth-of-type(3) {
    top: 37%;
    left: 30%;

    transform: translateY(-6px) rotate(45deg);
    width: 44%;
  }

  .c_entry_button1_text {
    width: 88px;
    height: 40px;
  }


  .c_header_company {
    border-bottom: 1px solid #222;
  }

  .c_header_company {
    padding: 0 40px;
  }

  .c_header_company li {
    height: 72px;
    padding: 8px 15px;
  }

  /* ### POINT ポイント ### */
  /* -------------------------------------------------------------------------------- */
  .c_point {
    display: block;
  }

  .c_point li {
    width: 70%;
    margin: 0 auto 20px auto;
  }

  /* ### PICK UP ### */
  /* -------------------------------------------------------------------------------- */
  .c_pickup_part {
    max-width: 600px;
    padding: 30px 40px 30px 40px;
  }
  .c_pickup_part_p1 {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 30px auto;
  }

  .c_pickup_part_p2 {
    width: 100%;
  }

  /* ### COMPANY 参加企業 ### */
  /* -------------------------------------------------------------------------------- */
  .c_company_list .c_company_list_aj {
    width: 76.5%;
  }

  /* ### TIMETABLE タイムテーブル ### */
  /* -------------------------------------------------------------------------------- */

  .c_timetable_banner {
    width: 100%;
  }
}

/* ### スマートフォン ### */
@media (max-width: 767px) {
  .c_spbr::before,
  .c_brsp::before {
    content: "\A";
    white-space: pre;
  }
  .c_pcbr::before,
  .c_brpc::before {
    content: "";
  }

  .c_spon {
    display: block;
  }
  .c_spon_inline {
    display: inline;
  }

  .c_pcon {
    display: none !important;
  }
  .c_pcon_inline {
    display: none !important;
  }



  body {
    min-width: 100%;
    margin: 0 auto;
    font-size: 1em;
    line-height: 1.8em;
  }

  /* ### ヘッダー ### */
  /* -------------------------------------------------------------------------------- */
  .c_logo {
    width: 100px;
    top: 30px;
  }

  .c_contents_fix {
    padding-top: 0px;
  }

  .c_header_company {
    padding: 0;
  }

  .c_header_company li {
    height: 64px;
    padding: 4px 10px;
  }

  /* ### フッター ### */
  /* -------------------------------------------------------------------------------- */

  /* ### タイトル ### */
  /* -------------------------------------------------------------------------------- */



  /* ### コンテンツ ### */
  /* -------------------------------------------------------------------------------- */


  /* ### コンテンツ詳細 ### */
  /* -------------------------------------------------------------------------------- */

  /* ### 背景 ### */
  /* -------------------------------------------------------------------------------- */

  /* ### MESSAGE メッセージ ### */
  /* -------------------------------------------------------------------------------- */



  /* ### POINT ポイント ### */
  /* -------------------------------------------------------------------------------- */


  /* ### PICK UP ### */
  /* -------------------------------------------------------------------------------- */



  /* ### COMPANY 参加企業 ### */
  /* -------------------------------------------------------------------------------- */



  .c_company_list ul.c_fl_between {
    display: -moz-flex;
    display: -webkit-flex;
    display: -o-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -webkit-flex-pack: justify;
    -moz-flex-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .c_company_list_k {
    padding-bottom: 50px;
  }

  .c_company_list_l {
    width: 100%;
  }

  .c_company_list_l ul::before {
    display: none;
  }
  .c_company_list_l ul::after {
    display: none;
  }

  .c_company_list_k ul::before {
    content: "";
    display: block;
    width: 48%;
    order: 1;
  }
  .c_company_list_k ul::after {
    content: "";
    display: block;
    width: 48%;
  }

  .c_company_list_l li {
    width: 100%;
    margin-bottom: 26px;
  }

  .c_company_list_k li,
  .c_company_list li {
    width: 48%;
    margin-bottom: 26px;
    margin-left: 0;
    margin-right: 0;
  }
  .c_company_list .c_company_list_aj li {
    width: 48%;
    margin-left: 0;
    margin-right: 0;
  }

  .c_company_list_image {
    background-color: #fff;
    height: 104px;
    padding: 10px 20px;
  }

  .c_company_list_k_image {
    background-color: #fff;
    height: 104px;
    padding: 10px 20px;
  }

  .c_company_list_l_image {
    background-color: #fff;
    height: 134px;
    padding: 10px 20px;
  }

  /* ### TIMETABLE タイムテーブル ### */
  /* -------------------------------------------------------------------------------- */

  .c_timetable_part {
    width: 430px;
    padding: 20px 30px;
  }

  .c_timetable_part li {
    margin: 10px 0 10px 0;
    padding: 0 0 10px 0;
    border-bottom: 2px dotted #888;
  }

  .c_timetable_time1_text {
    font-size: 18px;
    width: 55px;
  }

  .c_timetable_time1_b {
    width: 72px;
    height: 30px;
  }

  .c_timetable_time2_text {
    font-size: 18px;
    width: 110px;
  }

  .c_timetable_time2_b {
    width: 134px;
    height: 30px;
  }

  .c_timetable_time_text {
    font-size: 19px;
  }
  .c_timetable_time_text2 {
    font-size: 16px;
  }

  .c_timetable_contents1 {
    width: 160px;
    margin-right: 30px;
  }
  .c_timetable_contents2 {
    width: 160px;
  }

  .c_timetable_contents3 {
    width: 100%;
    margin: 0 0 15px 0;
  }
  .c_timetable_contents4 {
    width: 100%;
  }

  .c_timetable_time3 {
    width: 64px;
    font-size: 18px;
    padding: 2px 10px;
  }
  .c_timetable_time3_t em {
    font-size: 20px;
  }
  .c_timetable_time4_t em {
    font-size: 20px;
  }

  .c_timetable_contents_title1 {
    height: 38px;
    line-height: 34px;
    margin-top: 5px;
    font-size: 18px;
  }
  .c_timetable_contents_title2 {
    height: 38px;
    line-height: 34px;
    margin-top: 5px;
    font-size: 18px;
  }

  .c_timetable_contents_title3 {
    height: 30px;
    line-height: 30px;
    margin-top: 5px;
    font-size: 18px;
  }
  .c_timetable_contents_title4 {
    height: 30px;
    line-height: 30px;
    margin-top: 5px;
    font-size: 18px;
  }
  .c_timetable_contents_title5 {
    height: auto;
    line-height: 1.4em;
    font-size: 15px;
    padding: 5px 10px;
  }

  .c_timetable_contents_text {
    margin: 8px 0 8px 0;
  }
  .c_timetable_contents_text em {
    width: 90px;
    font-size: 18px;
    padding-left: 10px;
    letter-spacing: 1px;
  }

  .c_timetable_contents_p1 {
    font-size: 18px;
  }

  .c_timetable_contents_pc {
    font-size: 17px;
  }

  .c_timetable_contents_pc2 {
    font-size: 17px;
  }

  .c_timetable_contents_button_text {
    font-size: 1.1em;
  }
  .c_timetable_contents_button_text2 {
    font-size: 1.1em;
  }

  .c_timetable_contents_comingsoon {
    font-size: 18px;
    padding-left: 5px;
  }

  .c_timetable_banner {
    margin: 30px auto 0 auto;
  }

  .c_timetable_banner_text {
    font-size: 0.94em;
    line-height: 2em;
    margin-top: 10px;
  }

  .c_timetable_banner_text2 {
    text-align: left;
    font-size: 1.1em;
    line-height: 1.7em;
  }

  .c_timetable_contents_button_c {
    width: 12px;
    height: 12px;
  }
  .c_timetable_contents_button_c2 {
    width: 12px;
    height: 12px;
  }

  .c_timetable_contents_part_text {
    margin-top: 10px;
    width: 100%;
  }

  /* ### FAQ よくある質問 ### */
  /* -------------------------------------------------------------------------------- */

  .c_faq_part {
    padding: 30px 40px 30px 30px;
  }

  .c_faq_q {
    width: 3em;
  }

  .c_faq_q em {
    width: 1.8em;
    height: 1.8em;
    font-size: 1.2em;
  }

  .c_faq_q_text {
    width: calc(100% - 3em);
    font-size: 1.16em;
  }

  .c_faq_a {
    width: 3em;
  }

  .c_faq_a em {
    width: 1.8em;
    height: 1.8em;
    font-size: 1.2em;
  }

  .c_faq_a_text {
    width: calc(100% - 3em);
  }

  /* ### 運営会社ヒュープロ ### */
  /* -------------------------------------------------------------------------------- */
  .c_hupro {
    padding: 50px 40px;
  }

  .c_hupro_logo {
    width: 100%;
    margin-bottom: 20px;
  }
  .c_hupro_logo img {
    width: 60%;
    max-width: 220px;
    height: auto;
  }

  .c_hupro_text {
    width: 100%;
  }

  .c_hupro_title {
    font-size: 1.2em;
  }

  /* ### 昨年実績 ### */
  /* -------------------------------------------------------------------------------- */
  .c_achieve {
    font-size: 1.06em;
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
  }

  .c_achieve_company {
    text-align: left;
  }

  /* ### メインビジュアル ### */
  /* -------------------------------------------------------------------------------- */

  .c_main_header_visual {
    width: 100%;
    height: auto;
    background: #f45b17 url(/finance_career_forum_2025/main_bg_sp.png) no-repeat center center;
    background-size: cover;
  }

  .c_main_header_visual_image {
    padding: 65px 30px 160px 30px;
    text-align: center;
    align-self: start;
  }

  .c_main_header_visual_image_pc {
    display: none;
  }
  .c_main_header_visual_image_sp {
    margin-top: 20px;
    display: inline;
    width: 100%;
    max-width: 500px;
  }

  .c_entry_button1 {
    width: 160px;
    height: 136px;
    bottom: 25px;
    right: 14px;
  }

  .c_entry_button1_text {
    position: absolute;
    width: 100px;
    height: 46px;
  }

  .c_limit_image {
    width: 156px;
    bottom: 54px;
    right: 180px;
  }

  .c_entry_button2 {
    width: 120px;
    height: 102px;
  }

  .c_entry_button2_text {
    width: 82px;
    height: 38px;
  }
  .c_entry_button2_arrow {
    width: 11px;
    height: 10px;
  }

  /* ### modal ### */
  /* -------------------------------------------------------------------------------- */
  .c_modal_title1 {
    font-size: 1.4em;
  }

  .c_modal_text {
    width: 100%;
  }
  .c_modal_text_p {
    font-size: 1em;
  }
  .c_modal_text_p1 {
    text-align: left;
  }
  .c_modal_text_p1 em {
    font-size: 1.1em;
  }
  .c_modal_text_p2 em {
    font-size: 1em;
  }
  .c_modal_text_p3 {
    font-size: 0.92em;
    text-align: left;
  }

  .c_modal_text_tbl {
    font-size: 0.92em;
  }
  .c_modal_text_tbl .c_modal_text_tbl_s em {
    width: 4.5em;
  }
  .c_modal_text_tbl .c_modal_text_tbl_sl em {
    width: 6em;
    padding: 2px 4px;
  }
  .c_modal_text_tbl .c_modal_text_tbl_txt2 em {
    font-size: 1.16em;
  }
  .c_modal_text_tbl .c_modal_text_tbl_num em {
    width: 4.5em;
    padding: 2px 5px;
  }

  /* -------------------------------------------------------------------------------- */
}

@media (max-width: 499px) {
  /* ### ヘッダー ### */
  /* -------------------------------------------------------------------------------- */
  .c_header_company4 {
    width: 30%;
  }
  .c_header_company3 {
    width: 26%;
  }
  .c_header_company2 {
    width: 44%;
  }

  .c_header_company5 {
    width: 41%;
  }
  .c_header_company1 {
    width: 30%;
  }
  .c_header_company6 {
    width: 29%;
  }

  /* ### PICK UP ### */
  /* -------------------------------------------------------------------------------- */
  .c_pickup_part {
    width: 96%;
    padding: 26px 26px 26px 26px;
  }

  /* ### COMPANY 参加企業 ### */
  /* -------------------------------------------------------------------------------- */

  .c_company_list_image {
    height: 64px;
  }
  .c_company_list_k_image {
    background-color: #fff;
    height: 64px;
    padding: 10px 20px;
  }

  .c_company_list_l_image {
    background-color: #fff;
    height: 84px;
    padding: 10px 20px;
  }
  .c_company_list_text {
    font-size: 0.9em;
  }
  .c_company_list_text2 {
    font-size: 1em;
  }

  /* ### TIMETABLE タイムテーブル ### */
  /* -------------------------------------------------------------------------------- */
  .c_timetable_banner_text {
    text-align: left;
  }

  .c_timetable_part {
    max-width: 430px;
    width: 100%;
    padding: 10px 15px;
  }

  .c_timetable_part li {
    margin: 10px 0 10px 0;
    padding: 0 0 10px 0;
    border-bottom: 2px dotted #888;
  }

  .c_timetable_time1_text {
    font-size: 15px;
    width: 44px;
  }

  .c_timetable_time1_b {
    width: 58px;
    height: 25px;
  }

  .c_timetable_time2_text {
    font-size: 15px;
    width: 90x;
  }

  .c_timetable_time2_b {
    width: 107px;
    height: 25px;
  }

  .c_timetable_time_text {
    font-size: 16px;
    font-weight: 700;
    padding-left: 5px;
  }

  .c_timetable_contents1 {
    width: 133px;
    margin-right: 20px;
  }
  .c_timetable_contents2 {
    width: 133px;
  }

  .c_timetable_time3 {
    width: 56px;
    font-size: 15px;
    padding: 1px 10px;
  }

  .c_timetable_contents_title1 {
    height: 34px;
    line-height: 32px;
    margin-top: 5px;
    font-size: 15px;
  }
  .c_timetable_contents_title2 {
    height: 34px;
    line-height: 32px;
    margin-top: 5px;
    font-size: 15px;
  }

  .c_timetable_contents_text {
    margin: 8px 0 8px 0;
  }
  .c_timetable_contents_text em {
    width: 76px;
    font-size: 15px;
    padding-left: 5px;
    letter-spacing: 0;
  }

  .c_timetable_contents_p1 {
    font-size: 16px;
  }

  .c_timetable_contents_pc {
    font-size: 16px;
  }

  .c_timetable_contents_pc2 {
    font-size: 16px;
  }

  .c_timetable_contents_button_text {
    font-size: 1.06em;
  }
  .c_timetable_contents_button_text2 {
    font-size: 1.06em;
  }

  .c_timetable_contents_part_photo {
    width: 49%;
  }
  .c_timetable_contents_part_photo2 {
    width: 49%;
  }

  .c_timetable_contents_comingsoon {
    font-size: 15px;
    padding-left: 5px;
  }

  /* ### modal ### */
  /* -------------------------------------------------------------------------------- */
  .c_modal_part {
    padding: 14px 22px 24px 22px;
  }
  .c_modal_part.c_modal_part2 {
    padding: 44px 22px 54px 22px;
  }
}
/*  @media (max-width: 499px)  */

/* -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */

@media (max-width: 330px) {
  /* ### TIMETABLE タイムテーブル ### */
  /* -------------------------------------------------------------------------------- */

  .c_timetable_part {
    padding: 10px 10px;
  }

  .c_timetable_part li {
    margin: 10px 0 10px 0;
    padding: 0 0 10px 0;
    border-bottom: 2px dotted #888;
  }

  .c_timetable_time1_text {
    font-size: 13px;
    width: 39px;
  }

  .c_timetable_time1_b {
    width: 51x;
    height: 25px;
  }

  .c_timetable_time2_text {
    font-size: 13px;
    width: 79x;
  }

  .c_timetable_time2_b {
    width: 94px;
    height: 25px;
  }

  .c_timetable_time_text {
    font-size: 13px;
    font-weight: 700;
    padding-left: 3px;
  }

  .c_timetable_contents1 {
    width: 115px;
    margin-right: 20px;
  }
  .c_timetable_contents2 {
    width: 115px;
  }

  .c_timetable_time3 {
    width: 50px;
    font-size: 13px;
    padding: 0px 10px;
  }

  .c_timetable_contents_title1 {
    height: 32px;
    line-height: 30px;
    margin-top: 5px;
    font-size: 13px;
  }
  .c_timetable_contents_title2 {
    height: 32px;
    line-height: 30px;
    margin-top: 5px;
    font-size: 13px;
  }

  .c_timetable_contents_text {
    margin: 8px 0 8px 0;
  }
  .c_timetable_contents_text em {
    width: 62px;
    font-size: 13px;
    padding-left: 5px;
  }

  .c_timetable_contents_comingsoon {
    font-size: 13px;
    padding-left: 5px;
  }
}

/* ### IE用 ### */

@media all and (-ms-high-contrast: none) {
  .c_gnav.menu .c_gnav_area {
    overflow-y: hidden;
  }
}
/*  @media IE  */

/* ##長部さん作成CSS## */
* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
header img {
  max-width: 100%;
  vertical-align: bottom;
  position: relative;
}
.sp {
  display: none !important;
}
main > section {
  padding-top: 160px;
  padding-bottom: 160px;
}
main > section.contact {
  padding-top: 40px;
  display: flex;
  gap: 40px;
  flex-direction: column;
  align-items: center;
}
.contents {
  background-image: url("/finance_career_forum_2025/CONTENTS.png");
}
.catchcopy {
  font-size: 20px;
  font-weight: bold;
}
.content-title h2 {
  font-size: 33px;
}
.content-title {
  margin-bottom: 30px;
  margin-top: 16px;
}
.area {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.timetable {
  background-image: url("/finance_career_forum_2025/TIME_TABLE.png");
  width: 100%;
}
.achievement {
  background-image: url("/finance_career_forum_2025/ACHIVEMENT.png");
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding-bottom: 130px;
}
.faq {
  background-image: url("/finance_career_forum_2025/FAQ.png");
}
.content-top {
  color: #fa7828;
  font-size: 50px;
  font-family: "Lexend Exa", sans-serif;
  font-weight: bold;
}
.title p {
  color: #3c3c3c;
  font-size: 20px;
}
.subtitle {
  color: #fa7828;
  font-size: 28px;
  margin-bottom: 20px;
  padding-top: 20px;
  font-weight: 500;
}
.title-details {
  font-size: 16px;
  color: #3c3c3c;
  font-weight: 600;
  margin-bottom: 1.5em;
}

.title-details + .title-details {
  margin-top: 1.5em;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-top: 52px;
}
.orange-content {
  background-color: #fa7828;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1272px;
  height: 493px;
  box-shadow: 13px 8px #d3d3d3;
  margin-left: 5%;
  gap: 52px;
}
.green-content {
  background-color: #65d21c;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1272px;
  height: 493px;
  box-shadow: 11px 8px #d3d3d3;
  margin-left: 5%;
  margin-right: 5%;
  gap: 52px;
}
.contents {
  text-align: center;
}
.content-title h2 {
  font-size: 50px;
  margin: 0;
  line-height: 1.2;
  font-weight: bold;
}
.content-title p {
  font-weight: bold;
}
.title {
  text-align: center;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
/* 大きな見出しの行高を適正化して重なり回避 */
.content-top,
.timetable-title,
.achieve,
.access-title { line-height: 1.2; }
.access-title {
  font-family: 'Lexend Exa', sans-serif;
  color: #fa7828;
  font-size: 50px;
  font-weight: 500;
}
.entry {
  color: #65d21c;
  font-size: 50px;
  font-weight: bold;
  line-height: 1.2;
  font-family: 'Lexend Exa', sans-serif;
}
.illust {
  width: 40%;
  height: 283px;
}
.illust-career {
  width: 493px;
  height: 283px;
}
.illust-seminar {
  width: 493px;
  height: 350px;
}
.reception {
  margin: 30px;
  padding-bottom: 20px;
  height: 80px;
  font-size: 24px;
  color: #3c3c3c;
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #3c3c3c;
}
.opening {
  border-bottom: 1px dashed #3c3c3c;
  padding-bottom: 30px;
  margin: 0px 30px;
}
.opening p {
  margin: 0px 0px 10px;
  font-size: 24px;
  color: #3c3c3c;
}
.closing p {
  margin: 0px 0px 10px;
  font-size: 24px;
  color: #3c3c3c;
}
.closing {
  border-bottom: 1px dashed #3c3c3c;
  padding-bottom: 30px;
  margin: 0 30px;
}
.close {
  margin: 30px;
  color: #3c3c3c;
  height: 70px;
  font-size: 24px;
  color: #3c3c3c;
  display: flex;
  align-items: center;
}
.timetable-title {
  color: #65d21c;
  font-size: 50px;
  font-weight: bold;
  font-family: 'Lexend Exa', sans-serif;
}
.timetable-box {
  display: flex;
  height: 1265px;
  padding: 30px 0 60px 0;
  align-items: center;
  justify-content: center;
}
.timetable-con {
  background-color: #65d21c;
  width: 144px;
  height: 1200px;
}
.time-contents {
  border: solid 2px #65d21c;
  background-color: #ffffff;
  width: 900px;
  height: 1200px;
  display: flex;
  flex-direction: column;
}
.timetable-timetable {
  display: flex;
  border-bottom: 1px dashed #3c3c3c;
  margin: 30px;
}
.time {
  color: #ffffff;
  font-size: 32px;
}
.timetable-con {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.commingsoon-green {
  width: 840px;
  height: 137px;
  margin-left: 0px;
}
.commingsoon-orange {
  width: 310px;
  height: 439px;
  margin: 0 15px;
}
.time_1300 {
  padding: 30px 0;
  font-family: 'Lexend Exa', sans-serif;
}
.time_1315 {
  padding: 50px 0;
  font-family: 'Lexend Exa', sans-serif;
}
.time_1400 {
  padding: 160px 0;
  font-family: 'Lexend Exa', sans-serif;
}
.time_1700 {
  padding: 200px 0 0;
  font-family: 'Lexend Exa', sans-serif;
}
.time_1715 {
  padding: 50px 0;
  font-family: 'Lexend Exa', sans-serif;
}
.time_1800 {
  padding: 175px 0 0;
  font-family: 'Lexend Exa', sans-serif;
}
.timetable-time {
  background-color: #fee4d4;
  width: 200px;
  color: #fa7828;
  font-size: 18px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.timetable-time p {
  background-color: #ffffff;
  width: 145px;
  height: 33px;
  margin: 5px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.timetable-time div {
  margin-top: 10px;
  text-align: center;
  font-size: 22px;
}
.achieve {
  color: #fa7828;
  font-size: 50px;
  font-weight: bold;
  font-family: 'Lexend Exa', sans-serif;
}
.achieve-content {
  color: #3c3c3c;
  font-size: 16px;
}
.achieve-content-top {
  color: #3c3c3c;
  font-size: 16px;
  padding-top: 30px;
  padding-bottom: 30px;
  line-height: 25px;
}
.achieve-content-title {
  font-weight: bold;
  color: #3c3c3c;
  margin: 35px 0 0 0;
}
.slider-wrapper {
  display: flex;
  gap: 36px;
  overflow: hidden;
  width: calc(100vw - 16px);
}
.slider {
  animation: scroll-left 80s infinite linear 0.5s both;
  display: flex;
  gap: 36px;
  list-style: none;
}
.slide {
  width: calc(100vw / 4);
  aspect-ratio: 13 / 8;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.hupro {
  background-color: #fa7828;
  color: #ffffff;
  display: flex;
  gap: 60px;
  width: 1024px;
  padding: 52px 60px;
  justify-content: center;
  align-items: center;
  
}
.logo {
  width: 324px;
  height: auto;
}
.access {
  display: flex;
  flex-direction: column;
}
.access-name {
  display: flex;
  flex-direction: column;
  text-align: right;
  margin: 15px;
  font-weight: bold;
}
.access-name p{
  font-weight: bold;
}
.access-detail {
  margin: 15px;
}
.map {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 50px;
  padding-top: 30px;
}
.way {
  display: flex;
  justify-content: center;
  padding-top: 30px;
  color: #3c3c3c;
}
.about {
  align-items: center;
}
.about h2{
  font-size: 30px;
  margin-bottom: 12px;
  font-weight: 700;
}
.about p{
  font-size: 18px;
  font-weight: 500;
}
section.form {
  padding-bottom: 0 !important;
}

/* HubSpotフォームの余分なスペースを削除 */

.hbspt {
  width: 40%;
  height: auto;
  margin: 20px auto;
}
.btn {
  background-color: #fa7828;
  color: #ffffff;
  border-radius: 10px;
  width: 488px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
}
footer {
  background-color: #333333;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
}
.qa {
  color: #fa7828;
  font-size: 50px;
  font-weight: bold;
  line-height: 1.2;
  font-family: 'Lexend Exa', sans-serif;
}
.accordion {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 0 100px 0;
}
.accordion-003 {
  width: 1050px;
  margin-bottom: 7px;
  border-bottom: 2px solid #d0d0d0;
}

.accordion-003 dl{
  display: grid;
  grid-template-columns: 24px 1fr;
  column-gap: 16px;
  row-gap: 8px;
}
.accordion-003 dd{
  font-size: 24px;
  font-weight: bold;
}
.accordion-003 dt{
  font-size: 24px;
  font-weight: bold;
}
.accordion-003 summary {
  width: 1024px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 16px 16px;
  color: #fa7828;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}
.accordion-003 summary::-webkit-details-marker {
  display: none;
}
.accordion-003 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 2px solid #333333b3;
  border-right: 2px solid #333333b3;
  content: "";
  transition: transform 0.3s;
}

.accordion-003[open] summary::after {
  transform: rotate(225deg);
}

.accordion-003 p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 16px 20px 22px;
  color: #3c3c3c;
  font-size: 16px;
  transition:
    transform 0.5s,
    opacity 0.5s;
}

.accordion-003[open] p {
  transform: none;
  opacity: 1;
}

@media screen and (max-width: 959px) {
  /* 959px以下に適用されるCSS（タブレット用） */
}
@media screen and (max-width: 768px) {
  /* 480px以下に適用されるCSS（スマホ用） */
  .pc {
    display: none;
  }
  .sp {
    display: flex !important;
  }
  .contents {
    height: auto;
  }
  .content-top {
    font-size: 28px;
    padding-top: 40px;
    font-family: "Lexend Exa", sans-serif;
    font-weight: bold;
  }
  .title p {
    font-size: 16px;
  }
  .subtitle-sp {
    color: #fa7828;
    font-size: 22px;
    justify-content: center;
    margin: 20px 0;
    font-weight: bold;
  }
  .details {
    font-size: 14px;
    font-weight: 700;
    color: #3c3c3c;
    font-weight: bold;
    justify-content: center;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    margin-bottom: 1.5em;
  }
  
  .details-sp {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  

  
  /* PC版とスマホ版の表示制御 */
  .pc {
    display: block;
  }
  
  .sp {
    display: none;
  }
  
  @media screen and (max-width: 768px) {
    .pc {
      display: none;
    }
    
    .sp {
      display: block;
    }
  }
  
  .content-wrapper {
    gap: 28px;
    margin-top: 36px;
  }
  .orange-content {
    flex-direction: column;
    width: 91%;
    height: auto;
    box-shadow: 7px 6px #d3d3d3;
    padding: 24px 12px;
    margin: 0 auto;
    gap: 20px;
  }
  .area {
    flex-direction: column;
  }
  .illust {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }
  .green-content {
    flex-direction: column;
    width: 91%;
    height: auto;
    box-shadow: 7px 6px #d3d3d3;
    padding: 24px 12px;
    margin: 0 auto;
    gap: 20px;
  }
  .content-title {
    text-align: left;
    justify-content: center;
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .content-title h2 {
    font-size: 34px;
  }
  main > section {
    padding-top: 40px;
    padding-bottom: 40px;

  }
  main > section.contact {
    gap: 28px;
    padding-top: 0px;
  }
  .illust-career {
    width: 85%;
    height: auto;
    margin: 0 auto;
  }
  .timetable {
    flex-direction: column;
  }
  .timetable-title {
    padding-top: 20px;
    font-size: 28px;
    font-family: "Lexend Exa", sans-serif;
    font-weight: bold;
  }
  .time-img {
    width: 93%;
    margin: 0 auto;
    padding: 30px 0;
  }
  .achieve {
    font-size: 28px;
    font-family: "Lexend Exa", sans-serif;
    font-weight: bold;
    padding: 30px 0;
  }
  .logo {
    width: 50%;
    height: auto;

  }
  .hupro {
    width: 93%;
    height: auto;
    flex-direction: column;
    padding: 12px;
    align-items: center;
    gap: 16px;
  }
  
  .about h2 {
    text-align: center;
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 600;
  }
  .about p {
    font-size: 14px;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .btn {
    width: 92%;
    height: 70px;
  }
  .form {
    width: 100%;
  }
  .hbspt {
    width: 80%;
  }
  .entry {
    font-size: 28px;
    font-family: "Lexend Exa", sans-serif;
    font-weight: bold;
  }
  .faq {
    width: 100%;
  }
  .accordion {
    padding: 20px 0 30px 0;
  }
  .accordion-003 {
    width: 97%;
  }
  .accordion-003 dl{
    display: grid;
    grid-template-columns: 20px 1fr;
    column-gap: 8px;
    row-gap: 8px;
  }
  .accordion-003 dd{
    font-size: 20px;
    font-weight: bold;
  }
  .accordion-003 dt{
    font-size: 20px;
    font-weight: bold;
  }
  .accordion-003 summary {
    width: 100%;
    font-size: 20px;
  }
  .accordion-003 p {
    padding: 0 20px 15px;
  }
  .access {
    margin: 40px;
  }
  .access-title {
    font-size: 28px;
    font-family: "Lexend Exa", sans-serif;
    font-weight: bold;
    padding: 0;
  }
  .location {
    flex-direction: column;
    text-align: center;
    font-size: 16px;
  }
  .way {
    flex-direction: column;
  }
  .hutoji {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    margin: 10px 0;
  }
  .map {
    width: 100%;
  }
  .qa {
    font-size: 28px;
    font-family: "Lexend Exa", sans-serif;
    font-weight: bold;
    padding-top: 30px;
  }
  .access .sp .access-detail dl {
    display: grid;
    grid-template-columns: 20px 1fr;
    column-gap: 8px;
    row-gap: 8px;
  }
  .access .sp .access-detail dt,
  .access .sp .access-detail dd {
    margin: 0;
  }
  .access .sp .access-detail dt {
    grid-column: 1;
    float: none;
  }
  .access .sp .access-detail dd {
    grid-column: 2;
  }
  .header {
    position: relative;
    padding: 0;
  }

  .achieve {
    padding-bottom: 0;
  }
  .achieve-list {
    display: flex;
    flex-direction: column;
    width: 70%;
    align-items: center;
    text-align: left;
    margin: 0 auto;
  }
  .title p {
    font-size: 16px;
  }
  .achievement {
    padding-bottom: 50px;
  }
  /* slider spacing for SP */
  .slider-wrapper { gap: 16px; }
  .slider { gap: 16px; }
  .slide { width: calc(100vw - 16px); }
}

/* ENTRY画像はホバーで透過させない */
.c_entry_button1:hover .c_entry_button1_text {
  filter: none !important;
  -moz-opacity: 1 !important;
  opacity: 1 !important;
}



.c_entry_button2_re { position: relative; }
.c_entry_button2_text,
.c_entry_button2_text_after {
  position: absolute;
  width: 230px;
  height: 230px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  z-index: 710;
}
/* グローバルの a:hover img の透過を受けないようにする（opacityは制御用に残す） */
.c_entry_button2 .c_entry_button2_text,
.c_entry_button2 .c_entry_button2_text_after {
  filter: none !important;
  -moz-opacity: 1 !important;
}
/* 擬似要素によるホバー演出を無効化 */
.c_entry_button2::before,
.c_entry_button2::after,
.c_entry_button2:hover::before,
.c_entry_button2:hover::after {
  content: none !important;
  display: none !important;
}
.c_entry_button2_text_after { opacity: 0; transition: opacity 0.2s ease; }
.c_entry_button2:hover .c_entry_button2_text_after { opacity: 1; }
.c_entry_button2:hover .c_entry_button2_text { opacity: 0; }

@media (max-width: 767px) {
  .c_entry_button1_text,
  .c_entry_button1_text_after{
    width: 150px;
    height: 150px;
    top: 40% ; 
    left: 90% ; 
    transform: translate(-65%, 0%);
  }
  .c_entry_button2_text,
  .c_entry_button2_text_after {
    width: 100px;
    height: 100px;
  }
}

@media (hover: none) {
  .c_entry_button1:hover .c_entry_button1_text_after,
  .c_entry_button2:hover .c_entry_button2_text_after {
    opacity: 0 !important;
  }
  .c_entry_button1:hover .c_entry_button1_text,
  .c_entry_button2:hover .c_entry_button2_text {
    opacity: 1 !important;
  }
}
