@charset "UTF-8";

/* CSS Document */


/*--------------------
01.共通
02.ヘッダー
03.
04.
--------------------*/


/*----------
01.共通
----------*/

#wrapper {
  position: relative;
  width: 100%;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

.l_pc {
  display: block !important;
}

.l_sp {
  display: none !important;
}

.image_wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image_wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
}


/* Animation keyframes */

@-webkit-keyframes link-lineloop {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
  }
  30% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: top right;
    transform-origin: top right;
  }
  32% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }
}

@keyframes link-lineloop {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
  }
  30% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: top right;
    transform-origin: top right;
  }
  32% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }
}

@-webkit-keyframes link-lineloop-vertical {
  0% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
  30% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
  32% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }
  to {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }
}

@keyframes link-lineloop-vertical {
  0% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
  30% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
  32% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }
  to {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }
}

@keyframes hdlhdlhdl {
  0% {
    transform: translateX( -5px)
  }
  100% {
    transform: translateX( 5px)
  }
}

@keyframes hdlhdlhdl-vertical {
  0% {
    transform: translateY( 5px)
  }
  100% {
    transform: translateY( -5px)
  }
}


/* Header css */

#header {
  height: 74px;
  padding: 17px 0;
  position: sticky;
  left: 0;
  top: 0;
  right: 0;
  background-color: #fff;
  transition: all 0.5s;
  z-index: 997;
}

#header.header_scrolled {
  background-color: #fff;
  box-shadow: 0px 2px 9px rgba(0, 0, 0, 0.15);
}

.top_menu_container {
  display: none;
}

body.header_hidden #header {
  display: none;
}

body.header_hidden #intro .top_menu_container {
  display: block;
}

.header_container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}

#logo {
  display: flex;
  align-items: center;
}

#logo a {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 143px;
  height: 28px;
  text-decoration: none !important;
}

#logo a img {
  width: 100%;
}

#nav_menu_container {
  position: relative;
}

#header .nav_menu {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header .nav_menu li {
  position: relative;
  padding: 0 20px;
  border-left: 1px solid #F9E57A;
}

.nav_menu a {
  position: relative;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  color: #5d3233;
  transition: all 0.3s;
}

.nav_menu a:hover {
  color: #FF9100;
}

.nav_menu .nav_item_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  bottom: -45px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.nav_menu .nav_item_01 .nav_item_icon {
  left: calc(100% - 50px);
}

.nav_menu .nav_item_02 .nav_item_icon {
  left: -20px;
}

.nav_menu .nav_item_03 .nav_item_icon {
  left: auto;
  right: 0;
}

.nav_menu .nav_item_04 .nav_item_icon {
  left: -3px;
}

.nav_menu .nav_item_icon img {
  width: auto;
  height: auto;
}


/* intro */

#intro {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#intro .intro_container {
  position: relative;
  padding: 0;
  margin: 0;
}

#intro h2 {
  font-family: "Yu Mincho";
  font-weight: normal;
  font-size: 50px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
}

.top_menu_container {
  position: relative;
  background-color: #fff;
  border-top: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
  padding: 20px 0;
}

.top_nav_menu {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin-left: -20px;
  margin-right: -20px;
}

.top_nav_menu li {
  position: relative;
  padding: 0 19px;
}

.top_nav_menu li:not(:last-child) {
  border-right: 1px solid #F9E57A;
}

.top_nav_menu a {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  white-space: nowrap;
  color: #5c3232;
  transition: all 0.3s;
}

.top_nav_menu a:hover {
  color: #FF9100;
}


/* section */

.section_title {
  position: relative;
  margin-bottom: 25px;
}

.section_title h3 {
  position: relative;
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 32px;
  line-height: 1.4;
  text-align: center;
  color: #5c3232;
}

.section_title p {
  position: relative;
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 20px;
  line-height: 1.8;
  text-align: center;
  color: #5c3232;
  margin-top: 8px;
}

.arrow_right_round_icon {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url(../img/arrow_right_round_icon.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.news_link {
  position: relative;
  display: flex;
  align-items: center;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
  color: #5c3232;
}

.news_link i {
  margin-left: 8px;
}

.sign_out_icon {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url(../img/sign_out_icon.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.white_sign_out_icon {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url(../img/white_sign_out_icon.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.arrow_down_icon {
  position: relative;
  display: inline-block;
  width: 17px;
  height: 11px;
  background-image: url(../img/arrow_down_icon.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}


/* link_btn */

.link_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 46px;
  border-radius: 5px;
  background: #26466d;
  border: 1px solid #26466d;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.16);
  padding: 10px;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 17px;
  line-height: 1.6;
  text-align: center;
  color: #fff;
  text-decoration: none !important;
  outline: none;
  transition: all 0.4s;
}

.link_btn:hover {
  background: #fff;
  color: #26466d;
}

.news_more_link_wrap {
  position: relative;
  padding-top: 38px;
}

.news_more_link_wrap .link_btn {
  margin-left: auto;
  margin-right: auto;
}

.link_wrap {
  position: relative;
}

.link_wrap .link_btn {
  margin-left: auto;
  margin-right: auto;
}

.link_btn.arrow_left span {
  padding-bottom: 2px;
}

.link_btn.arrow_left::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 25px;
  width: 15px;
  height: 13px;
  background-image: url(../img/white_arrow_left.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.2s;
}

.link_btn.arrow_left:hover::after {
  background-image: url(../img/blue_arrow_left.svg);
}

.link_btn.triangle_down_icon {
  padding: 6px 17px 6px 7px;
}

.link_btn.triangle_down_icon::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  right: 9px;
  width: 9px;
  height: 6px;
  background-image: url(../img/triangle_down_icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.2s;
}

.link_btn.triangle_down_icon:hover::before {
  background-image: url(../img/blue_triangle_down_icon.svg);
}

.link_btn.bottom_triangle_down_icon {
  height: 52px;
  width: 155px;
  padding: 6px 6px 15px 6px;
}

.link_btn.bottom_triangle_down_icon::before {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 6px;
  background-image: url(../img/triangle_down_icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.2s;
}

.link_btn.bottom_triangle_down_icon:hover::before {
  background-image: url(../img/blue_triangle_down_icon.svg);
}

.link_btn.pdf_icon::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  width: 32px;
  height: 32px;
  background-image: url(../img/pdf_icon.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.2s;
}

.link_btn.arrow_right::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 9px;
  height: 10px;
  background-image: url(../img/arrow_right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.2s;
}

.link_btn.arrow_right:hover:before {
  background-image: url(../img/blue_arrow_right.svg);
}

.link_btn.sign_out_icon {
  position: relative;
  width: 326px;
  height: 66px;
  font-size: 16px;
}

.link_btn.sign_out_icon::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url(../img/white_sign_out_icon.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
  transition: all 0.2s;
}

.link_btn.sign_out_icon:hover {
  color: #fff;
  background: #26466D;
}


/* yellow_link_btn */

.yellow_link_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 326px;
  height: 66px;
  background: #f9e57a;
  border: 1px solid #f9e57a;
  border-radius: 5px;
  filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.16));
  padding: 10px;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  color: #5c3232;
  text-decoration: none !important;
  outline: none;
  transition: all 0.4s;
}

.yellow_link_btn:hover {
  background-color: #fff;
  border-color: #f9e57a;
  color: #5c3232;
}

.yellow_link_btn .sign_out_icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 17px;
}

.link_wrap .yellow_link_btn {
  margin-left: auto;
  margin-right: auto;
}

.white_link_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 46px;
  border-radius: 5px;
  background: #f8f8f8;
  border: 1px solid #f8f8f8;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.16);
  padding: 10px;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 17px;
  line-height: 1.6;
  text-align: center;
  color: #383838;
  text-decoration: none !important;
  outline: none;
  transition: all 0.4s;
}

.white_link_btn:hover {
  background: #26466d;
  color: #fff;
}

.detail_info_item.no_border_bottom::after {
  display: none;
}

.white_link_btn.arrow_up_icon {
  color: #26466D;
}

.white_link_btn.arrow_up_icon::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  width: 11px;
  height: 6px;
  background-image: url(../img/arrow_up_icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.2s;
}

.white_link_btn.arrow_up_icon:hover {
  color: #fff;
}

.white_link_btn.arrow_up_icon:hover::before {
  background-image: url(../img/white_arrow_up_icon.svg);
}

.brown_link_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 46px;
  border-radius: 5px;
  background: #5D3233;
  border: 1px solid #f8f8f8;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.16);
  padding: 10px;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 17px;
  line-height: 1.6;
  text-align: center;
  color: #fff;
  text-decoration: none !important;
  outline: none;
  transition: all 0.4s;
}

.brown_link_btn:hover {
  background: #fff;
  color: #5D3233;
  border-color: #5D3233;
}

.course_links_area {
  position: relative;
}

.course_links_area .text_title {
  margin-bottom: 19px;
}

.course_links_area .m_text {
  position: relative;
  color: #000;
  margin-bottom: 30px;
}

.course_links {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(81px, 1fr));
  grid-column-gap: 20px;
  grid-row-gap: 30px;
}

.course_links a.link {
  padding-right: 15px;
  text-decoration: underline !important;
  border-bottom: none;
}

.course_links a.link::after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
}


/* text */

.sm_text {
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
  color: #666;
}

.m_text {
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
  color: #666;
}

.xm_text {
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
  color: #383838;
}

.x_text {
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 20px;
  line-height: 1.6;
  text-align: left;
  color: #383838;
}

.s_title {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
  color: #5c3232;
}

.sm_title {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: #5c3232;
}

.m_title {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 28px;
  line-height: 1.5;
  text-align: left;
  color: #5c3232;
}

.m_text_list {
  position: relative;
  list-style: none;
  padding: 0;
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 16px;
  line-height: 2.0;
  text-align: left;
  color: #666;
}

.m_text_list li {
  position: relative;
  padding-left: 20px;
}

.m_text_list li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #26466D;
}

.m_text_list.yellow_disc li {
  padding-left: 13px;
}

.m_text_list.yellow_disc li::before {
  background-color: #F9E57A;
}

.help_text {
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 12px;
  line-height: 1.9;
  text-align: left;
  color: #383838;
}

.noto_title_32 {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 32px;
  line-height: 1.4;
  text-align: left;
  color: #5c3232;
}

.noto_text_18 {
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 18px;
  line-height: 1.6;
  color: #666;
}

.noto_title_20 {
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 20px;
  line-height: 1.6;
  text-align: left;
  color: #5c3232;
}

.noto_title_35 {
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 35px;
  line-height: 1.4;
  text-align: left;
  color: #5c3232;
}

span.medium {
  font-weight: 500 !important;
}


/* font size */

.font_10 {
  font-size: 10px !important;
}

.font_12 {
  font-size: 12px !important;
}

.font_14 {
  font-size: 14px !important;
}

.font_16 {
  font-size: 16px !important;
}

.font_18 {
  font-size: 18px !important;
}

.font_20 {
  font-size: 20px !important;
}

.font_24 {
  font-size: 24px !important;
}

.font_26 {
  font-size: 26px !important;
}

.font_28 {
  font-size: 28px !important;
}

.font_30 {
  font-size: 30px !important;
}

.font_32 {
  font-size: 32px !important;
}


/* course flow */

.course_flow_container {
  position: relative;
}

.course_flow_container .box {
  position: relative;
  background: #fff;
  border: 5px solid #f9e57a;
  border-radius: 10px;
  padding: 0 40px;
}

.course_flow_container .title_01 {
  position: relative;
  padding-top: 33px;
  margin-bottom: 24px;
}

.course_flow_container .title_01 h3 {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  text-align: center;
  color: #666;
}

.course_flow_container .title_01 p {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  color: #666;
}

.course_flow_container .btn_wrap_01 {
  position: relative;
  margin-bottom: 25px;
}

.course_flow_container .btn_wrap_01 .link_btn {
  margin-left: auto;
  margin-right: auto;
}

.course_flow_container .title_02 {
  position: relative;
  text-align: center;
  margin-bottom: 15px;
  margin-top: 20px;
}

.course_flow_container .title_02 h3 {
  position: relative;
  display: inline-block;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  text-align: center;
  color: #666;
  padding-left: 36px;
  padding-right: 36px;
}

.course_flow_container .title_02 h3 small {
  font-size: 18px;
}

.course_flow_container .title_02 h3::before,
.course_flow_container .title_02 h3::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 31px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.course_flow_container .title_02 h3::before {
  left: 0;
  background-image: url(../../img/top/title_left_icon.svg);
}

.course_flow_container .title_02 h3::after {
  right: 0;
  background-image: url(../../img/top/title_right_icon.svg);
}

.course_flow_container .text_box_01 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #5C3232;
  padding: 10px 20px;
  margin-left: -45px;
  margin-right: -45px;
}

.course_flow_container .text_box_01 p {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 33px;
  line-height: 1.6;
  text-align: center;
  color: #fff;
}

.course_flow_container .text_box_list {
  position: relative;
  padding-top: 38px;
  padding-bottom: 15px;
}

.course_flow_container .text_box {
  position: relative;
  border-radius: 5px;
  background: #fff5c1;
}

.course_flow_container .text_box .title {
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  color: #383838;
  border-radius: 5px 5px 0px 0px;
  background: #f9e57a;
  padding: 3px 0;
}

.course_flow_container .text_box .text_box_body {
  padding: 7px;
}

.course_flow_container .text_box .text {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
  color: #383838;
}

.course_flow_container .text_list_wrap {
  position: relative;
}

.course_flow_container .text_list_wrap .text_list {
  position: relative;
  list-style: none;
  border-radius: 5px;
  background-color: #fff;
  padding: 0 8px;
}

.course_flow_container .text_list_wrap .text_list:not(:last-child) {
  margin-bottom: 7px;
}

.course_flow_container .text_list_wrap .text_list li {
  position: relative;
  padding: 6px 0;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
  color: #383838;
}

.course_flow_container .text_list_wrap .text_list li:not(:last-child) {
  border-bottom: 1px solid rgba(181, 186, 190, 0.3);
}

.course_flow_container .help_text {
  position: relative;
}

.course_flow_container .help_text p {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 12px;
  line-height: 2.0;
  text-align: left;
  color: #666;
}

.course_flow_container .title_03 {
  position: relative;
  margin-bottom: 15px;
}

.course_flow_container .title_03 h3 {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 28px;
  line-height: 1.4;
  text-align: center;
  color: #666;
}

.course_flow_container .course_list {
  position: relative;
  margin-bottom: 15px;
}

.course_flow_container .course_list_wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 24px;
}

.course_flow_container .course_item {
  position: relative;
  border-radius: 10px;
  background: #fffdeb;
  padding: 22px 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.course_flow_container .course_item:nth-child(2)::before {
  content: "";
  position: absolute;
  top: -44px;
  right: 0;
  width: 127px;
  height: 127px;
  background-image: url(../../img/top/course_help_icon.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.course_flow_container .course_item .title {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
  color: #666;
  margin-bottom: 10px;
}

.course_flow_container .course_item .text {
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
  color: #666;
  margin-bottom: 10px;
}

.course_flow_container .course_item .link_wrap {
  position: relative;
  padding-top: 15px;
}

.course_flow_container .course_item .link_wrap .link_btn {
  margin-left: auto;
  margin-right: auto;
}

.course_flow_container .course_link_list {
  position: relative;
  background-color: #fff;
  padding-bottom: 20px;
}

.course_flow_container .course_links_wrap {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-radius: 10px;
  border: 5px solid #5c3232;
}

.course_flow_container .course_links_wrap::before {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: calc(50% - 2px);
  width: 5px;
  background-color: #5c3232;
}

.course_flow_container .course_link_item {
  position: relative;
  width: 50%;
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 26px 20px 28px;
}

.course_flow_container .course_link_item .link_text {
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.course_flow_container .link_wrap {
  position: relative;
  padding-top: 10px;
}

.course_flow_container .link_wrap .link_btn {
  margin-left: auto;
  margin-right: auto;
}

.course_flow_container .box_01 {
  position: relative;
  margin-bottom: 30px;
}

.course_flow_container .box_01::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 100%;
  left: calc(50% - 22px);
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-top: 18px solid #F9E57A;
  border-bottom: 0;
}

.course_flow_container .box_02 {
  position: relative;
  padding: 24px 40px 36px;
}

.course_flow_container .box_02 .title {
  position: relative;
  margin-bottom: 20px;
}

.course_flow_container .box_02 .title h3 {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 32px;
  line-height: 1.4;
  text-align: center;
  color: #666;
  margin-bottom: 6px;
}

.course_flow_container .box_02 .title p {
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  color: #666;
}


/* accordion css */

.accordion_item {
  position: relative;
  margin-bottom: 30px;
}

.accordion_container {
  position: relative;
  counter-reset: faq_counter;
}

.accordion_item .accordion_question h3 {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #adadad;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 22px;
  line-height: 1.6;
  text-align: left;
  color: #383838;
  cursor: pointer;
  padding: 13px 70px 13px 95px;
}

.accordion_item .accordion_question h3::before {
  position: absolute;
  top: 46%;
  left: 40px;
  transform: translateY(-50%);
  counter-increment: faq_counter;
  content: 'Q'counter(faq_counter)'.';
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  text-align: left;
  color: #5c3232;
}

.accordion_item .accordion_question h3::after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: 12px;
  display: inline-block;
  width: 17px;
  height: 11px;
  background-image: url(../img/arrow_down_icon.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform ease-in-out 0.4s;
}

.accordion_item .accordion_question.expanded h3::after {
  transform: rotate(180deg);
  transition: transform ease-in-out 0.4s;
}

.accordion_item .accordion_answer {
  display: none;
  padding: 35px 40px 30px 40px;
  background-color: #F8F8F8;
}

.accordion_item .accordion_answer .content {
  position: relative;
  padding-left: 54px;
  margin: 0;
}

.accordion_item .accordion_answer .content::before {
  content: "A.";
  position: absolute;
  top: 0;
  left: 6px;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  text-align: left;
  color: #5c3232;
}

.accordion_item .accordion_answer .content>p {
  margin: 0;
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 20px;
  line-height: 1.6;
  text-align: left;
  color: #383838;
}

.accordion_item .accordion_answer .content>a.link {
  position: relative;
  display: inline-block;
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
  color: #26466d;
  padding-right: 18px;
  text-decoration: none !important;
  border-bottom: 1px solid #26466D;
  margin-top: 20px;
}

.accordion_item .accordion_answer .content>a.link::after {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  right: 0;
  width: 10px;
  height: 14px;
  background-image: url(../img/link_right_icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform ease-in-out 0.5s;
}

.side_fixed_btns {
  position: fixed;
  top: 111px;
  right: 0;
  display: grid;
  grid-template-columns: 100%;
  grid-row-gap: 6px;
}

.side_link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  border-radius: 5px 0px 0px 5px;
  padding: 20px 24px;
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  word-break: break-all;
  text-decoration: none !important;
  color: #fff;
  transition: all 0.4s;
}

.side_link.blue_link {
  background: #26466d;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  color: #fff;
}

.side_link.yellow_link {
  background: #f9e57a;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  color: #5d3233;
}

.side_link:hover {
  text-decoration: none;
}


/* pagination */

.wp-pagenavi {
  position: relative;
  padding: 30px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.wp-pagenavi a,
.wp-pagenavi span {
  padding: 0;
  position: relative;
  display: inline-block;
  font-size: 0;
  text-indent: -9999px;
  background: none;
  border: none;
  width: 45px;
  height: 20px;
  margin: 0 3px;
  text-decoration: none;
  transition: all 0.2s;
}

.wp-pagenavi a::before,
.wp-pagenavi span::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  height: 2px;
  background: #F9E57A;
}

.wp-pagenavi span.current::before,
.wp-pagenavi a:hover::before {
  background: #5D3233;
}

.wp-pagenavi a:hover::before {
  background: #5D3233;
}

.wp-pagenavi .pages {
  display: none;
}

.wp-pagenavi a {
  color: #fff;
}

.wp-pagenavi a.last,
.wp-pagenavi a.first {
  display: none;
}

.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink {
  position: relative;
}

.wp-pagenavi a.previouspostslink {
  margin-right: 20px;
}

.wp-pagenavi a.nextpostslink {
  margin-left: 20px;
}

.wp-pagenavi a.previouspostslink::before,
.wp-pagenavi a.nextpostslink::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 14px;
  height: 14px;
  background: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.wp-pagenavi a.previouspostslink::before {
  background-image: url(../img/arrow_left_round_icon.svg);
  left: 0;
  right: auto;
}

.wp-pagenavi a.nextpostslink::before {
  background-image: url(../img/arrow_right_round_icon.svg);
  right: 0;
  left: auto;
}


/* page_intro */

#page_intro {
  position: relative;
  width: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
  padding: 0;
}

#page_intro h1,
#page_intro h3 {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 34px;
  line-height: 1.4;
  text-align: left;
  color: #5d3233;
}

#page_intro p {
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 17px;
  line-height: 1.6;
  text-align: left;
  color: #ff9100;
  margin-bottom: 5px;
}

#page_intro picture {
  width: 100%;
}

#page_intro picture img {
  width: 100%;
  height: 264px;
  object-fit: cover;
}

#page_intro .intro_container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  z-index: 1;
}


/* breadcrumbs */

.breadcrumbs {
  position: relative;
  padding: 9px 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: left;
  color: #000;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #000;
  content: ">";
}

.breadcrumbs ol a {
  color: #000;
}

.breadcrumbs ol a:hover {
  color: #666;
  text-decoration: underline;
}


/* common_title */

.common_title {
  position: relative;
  padding: 18px 40px 20px;
  text-align: center;
  border-bottom: 2px solid #FFC2AF;
  margin-bottom: 62px;
}

.common_title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 45px;
  right: 0;
  height: 2px;
  background-color: #FFC2AF;
}

.common_title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: -2px;
  width: 2px;
  background-color: #5D3233;
  transform: skew(-30deg);
  transform-origin: bottom left;
}

.common_title h3 {
  position: relative;
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 24px;
  line-height: 1.6;
  text-align: center;
  color: #383838;
}

a.link {
  position: relative;
  display: inline-block;
  font-family: "Noto Sans JP";
  font-weight: inherit;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  color: #26466d;
  padding-right: 18px;
  text-decoration: none !important;
  border-bottom: 1px solid #26466D;
}

a.link::after {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  right: 0;
  width: 9px;
  height: 12px;
  background-image: url(../img/link_right_icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform ease-in-out 0.3s;
}

.page_info_section {
  position: relative;
  background-color: #FFFCEB;
  padding: 0;
  margin: 0;
}

.page_info_container {
  position: relative;
}

.page_info_container .grid_area {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 572px;
  grid-gap: 0;
}

.page_info_container .grid_area .column_left {
  position: relative;
  padding: 39px 0 39px calc( 50vw - 500px - 8px);
}

.page_info_container .grid_area .content {
  padding: 0 90px 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page_info_container .grid_area .content .text {
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 14px;
  line-height: 2.0;
  text-align: left;
  color: #2c2c2c;
  margin-bottom: 20px;
}

.page_info_container .grid_area .content .text strong {
  font-weight: bold;
}

.page_info_container .grid_area .column_right {
  position: relative;
}

.page_info_container .grid_area .info_main_image {
  position: relative;
  height: 100%;
}

.page_info_container .grid_area .info_main_image .image_wrap {
  height: 100%;
}

.page_info_container .grid_area .info_main_image .image_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page_info_container .grid_area .white_link_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px 7px 20px;
}

.page_info_container .grid_area .white_link_btn:hover {
  background: #f8f8f8;
  color: #383838;
}

.page_info_container .grid_area .help_text {
  color: #000;
}

.info_list_wrap {
  position: relative;
  margin-bottom: 20px;
}

.info_list_wrap .info_item {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-column-gap: 20px;
}

.info_list_wrap .info_item .info_icon {
  position: relative;
  padding: 8px 0;
}

.info_list_wrap .info_item .info_icon::before {
  content: "";
  position: absolute;
  top: 6px;
  right: 0;
  bottom: 5px;
  width: 1px;
  background-color: #666666;
}

.info_list_wrap .info_item .xm_text {
  color: #666;
  line-height: 1.8;
  font-weight: 500;
}

.info_list_wrap .info_item .info_icon {
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 31px;
  line-height: 1.5;
  color: #5d3233;
}

.info_list_wrap .info_item .m_text {
  color: #383838;
  font-weight: 500;
}

.info_list_wrap .info_item:not(:last-child) {
  margin-bottom: 14px;
}

.tel_icon {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 35px;
  background-image: url(../img/tel_icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.info_list_wrap .info_item .xm_text .tel a {
  color: inherit;
}

.text_title {
  position: relative;
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 20px;
  line-height: 1.6;
  text-align: left;
  color: #383838;
  padding-left: 30px;
}

.text_title>* {
  position: relative;
  z-index: 1;
}

.text_title::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 47px;
  height: 17px;
  background-color: #F9E57A;
  z-index: 0;
}

.common_sub_title {
  position: relative;
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 23px;
  line-height: 1.5;
  text-align: center;
  color: #383838;
  padding-bottom: 15px;
  margin-bottom: 40px;
}

.common_sub_title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #FF9100;
}

.common_sub_title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 76px;
  height: 2px;
  background-color: #5D3233;
}

.column_left {
  position: relative;
}

.column_right {
  position: relative;
}


/* common_info_box */

.common_info_box_01 {
  position: relative;
}

.common_info_box_01 .content {
  position: relative;
}

.common_info_box_01 .info_list {
  position: relative;
}

.common_info_box_01 .info_item {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.common_info_box_01 .info_item:not(:last-child) {
  margin-bottom: 44px;
}

.common_info_box_01 .info_item.reverse {
  flex-direction: row-reverse;
}

.common_info_box_01 .text_title {
  margin-bottom: 18px;
}

.common_info_box_01 .m_text_list {
  position: relative;
}

.common_info_box_01 .info_list .column_left {
  position: relative;
  width: 50%;
  flex: 0 0 50%;
}

.common_info_box_01 .info_list .column_right {
  position: relative;
  width: 364px;
  flex: 0 0 364px;
}

.common_info_box_01 .info_item .help_text {
  padding-left: 20px;
  margin-top: 12px;
  color: #666;
}

.step_list {
  position: relative;
}

.step_item {
  position: relative;
  display: flex;
}

.step_item:not(:last-child) {
  margin-bottom: 20px;
}

.step_item .step_title {
  position: relative;
  padding-bottom: 36px;
  padding-right: 60px;
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step_item .step_title h3 {
  position: relative;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 22px;
  line-height: 1.6;
  white-space: nowrap;
  text-align: center;
  color: #5d3233;
}

.step_item .step_title p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  color: #5d3233;
  vertical-align: middle;
  width: 80px;
  height: 17px;
  background: #fff2ac;
  text-transform: uppercase;
  padding-bottom: 1px;
}

.step_item .step_title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 30px);
  transform: translateX(-50%);
  width: 16px;
  height: 32px;
  background-image: url(../img/step_arrow_down.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.step_item .step_title::after {
  content: "";
  position: absolute;
  top: 35px;
  right: 0;
  width: 39px;
  height: 1px;
  border-bottom: 1px dashed #5d3233;
}

.step_item .step_text {
  position: relative;
  word-break: break-all;
  padding-top: 20px;
}

.brown_info_box {
  position: relative;
  background-color: #5C3232;
  padding: 35px 20px 30px;
  margin-bottom: 85px;
}

.brown_info_box .box_title {
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  color: #fff;
  margin-bottom: 24px;
}

.brown_info_box .yellow_link_btn {
  border-color: #fff;
  padding: 10px 30px 10px 20px;
}

.brown_info_box .yellow_link_btn:hover {
  border-color: #F9E57A;
}

.grid_help_box_list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 36px;
  grid-row-gap: 34px;
  margin-bottom: 45px;
}

.grid_help_box_list .box {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 20px;
  background: #fff;
  border: 2px solid #f9e57a;
  padding: 45px 39px 0 55px;
}

.grid_help_box_list .box .box_image {
  position: relative;
}

.grid_help_box_list .box .box_title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 237px;
  background-color: #fff;
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
  color: #5d3233;
}

.grid_help_box_list .box .box_title small {
  font-size: 16px;
  line-height: 1.6;
  display: block;
  margin-top: -1px;
}


/* common_table */

table.common_table {
  position: relative;
  width: 100%;
  border-collapse: collapse;
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 16px;
  line-height: 2.0;
  text-align: left;
  color: #383838;
  vertical-align: middle;
}

table.common_table th {
  position: relative;
  color: #5d3233;
  text-align: center;
  vertical-align: middle;
  padding: 33px 24px;
  background-color: #C5DBF5;
}

table.common_table td {
  padding: 9px 9px;
  position: relative;
  border-bottom: 1px solid #26466D;
  border-right: 1px solid #26466D;
  vertical-align: middle;
  text-align: center;
}

table.common_table tr:nth-child(even) td {
  background-color: #F8F8F8;
}

table.common_table th:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 0;
  width: 1px;
  background-color: #fff;
}

table.common_table tr td:nth-child(1) {
  background-color: #F0F6FC;
  border-right: none;
  padding: 12px 9px;
  vertical-align: middle;
}

.common_info_detail_list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.detail_info_item {
  position: relative;
  padding: 30px 0;
}

.detail_info_item .info_title {
  position: relative;
  margin-bottom: 12px;
}

.detail_info_item .info_title .help_text {
  font-weight: bold;
  color: #818181;
  line-height: 1.0;
  padding-left: 30px;
}

.detail_info_item .info_title .text_title {
  position: relative;
}

.detail_info_item .content {
  position: relative;
  padding-left: 18px;
}

.detail_info_item .grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 9px;
}

.detail_info_item .grid .column {
  position: relative;
}

.detail_info_item .detail_text_item {
  position: relative;
  display: grid;
  grid-template-columns: 45px 1fr;
  grid-column-gap: 5px;
  margin-bottom: 10px;
  padding-left: 14px;
}

.detail_info_item .detail_text_item::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #F9E57A;
}

.detail_text_item .sm_text {
  color: #383838;
  line-height: 1.8;
  padding-top: 3px;
}

.detail_text_item .m_text {
  font-weight: 500;
  color: #383838;
  word-break: break-all;
}

.detail_info_item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 36px;
  right: 0;
  height: 1px;
  background-color: rgba(181, 186, 190, 0.5);
}

.detail_info_item:nth-child(even) {
  padding-left: 10px;
}

.detail_info_item:nth-child(odd) {
  padding-right: 10px;
}

.detail_info_item:nth-child(even)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  bottom: 17px;
  width: 1px;
  background-color: rgba(181, 186, 190, 0.5);
}

.detail_info_item:nth-child(even)::after {
  left: 0;
  right: 36px;
}

.common_info_area {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 556px;
  grid-column-gap: 0;
  max-width: 1280px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.common_info_area .info_box {
  padding: 0 40px;
  max-width: 585px;
  margin-left: auto;
  margin-right: 0;
}

@media(min-width: 1300px) {
  .common_info_area {
    position: relative;
    display: grid;
    grid-column-gap: 64px;
  }
  .common_info_area .info_box {
    max-width: 524px;
  }
}

.common_info_area .column_left {
  padding-left: 0;
}

.common_info_area .info_box .m_text {
  color: #383838;
  margin-bottom: 14px;
}

.common_info_area .info_box .m_text_list {
  color: #000;
}

.common_info_area .info_box .help_text {
  color: #000;
  margin-top: 14px;
}

.common_info_area .yellow_info_box {
  position: relative;
  padding: 15px 24px;
}

.common_info_area .yellow_info_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: -165px;
  background-color: #FFFCEB;
  z-index: 0;
}

.common_info_area .yellow_info_box>* {
  position: relative;
  z-index: 1;
}

.common_info_area .yellow_info_box .box_text {
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 17px;
  line-height: 1.6;
  text-align: left;
  color: #5d3233;
}

.common_info_area .yellow_info_box .box_text strong {
  font-weight: 500;
  font-size: 38px;
  line-height: 1;
}

.common_info_area .yellow_info_box .help {
  font-weight: 500;
  font-size: 14px;
}

.common_info_area .yellow_info_box .box_text p:not(:last-child) {
  margin-bottom: 20px;
}

.common_info_area .yellow_info_box .help_text {
  color: #666;
  line-height: 1.8;
  margin-top: 17px;
}


/* common_yellow_table */

table.common_yellow_table {
  position: relative;
  width: 100%;
  vertical-align: middle;
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 16px;
  line-height: 2.0;
  text-align: center;
  color: #383838;
}

table.common_yellow_table th {
  color: #5d3233;
  font-weight: 500;
  padding: 33px 17px;
  text-align: center;
  vertical-align: middle;
  background-color: rgba(242, 191, 76, 0.2);
}

table.common_yellow_table th:not(:last-child) {
  border-right: 1px solid #fff;
}

table.common_yellow_table td {
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 17px 12px;
  border-right: 1px solid #26466D;
  border-bottom: 1px solid #26466D;
}

table.common_yellow_table td.bg_yellow {
  position: relative;
  background-color: #F2BF4C;
  border-right: none;
}

table.common_yellow_table .link_btn {
  width: 113px;
  font-size: 16px;
}

table.common_yellow_table td .area_text {
  display: flex;
  align-items: center;
  justify-content: center;
}

table.common_yellow_table td .area_text span {
  display: block;
  line-height: 1.5;
  text-align: left;
}

table.common_yellow_table td .area_text span.new {
  font-weight: bold;
  font-size: 12px;
  color: #FC6D42;
  text-align: left;
  line-height: 1;
}

table.common_yellow_table td.bg_yellow {
  width: 145px;
}

.common_info_list {
  position: relative;
}

.common_info_list .info_item {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  grid-column-gap: 12px;
  min-height: 45px;
}

.common_info_list .info_item .info_title {
  font-family: "Noto Sans JP";
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
  color: #383838;
  padding-right: 15px;
  border-right: 1px solid #D3DAE2;
}

.common_info_list .info_item .info_text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.common_info_list .info_item .m_text {
  color: #666;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
  color: #383838;
}

.common_info_list .info_item:not(:last-child) {
  margin-bottom: 27px;
}

.link_wrap.left>* {
  margin-left: 0;
  margin-right: auto;
}

.common_info_list .info_item .link_wrap {
  margin-top: 19px;
}

.common_info_list .info_item .info_text .m_text span.number {
  font-size: 30px;
  font-weight: bold;
  display: inline-block;
  line-height: 1;
  vertical-align: text-bottom;
}

table.normal_table {
  position: relative;
  width: 100%;
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 16px;
  line-height: 2.0;
  text-align: center;
  color: #383838;
}

table.normal_table td {
  position: relative;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #BEC2C6;
  border-bottom: 1px solid #BEC2C6;
  border-top: 1px solid #BEC2C6;
  padding: 9px 15px;
}

.normal_table.description_table {
  padding-top: 17px;
  padding-bottom: 17px;
  text-align: left;
  color: #666;
  font-weight: 500;
}

.normal_table.description_table td {
  text-align: left;
  border-color: #E5E5E5;
}

.normal_table.description_table .light_yellow {
  background: #FFFDEB;
  border: none;
  width: 113px;
  text-align: center;
}

.common_area_link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 152px;
  height: 54px;
  border-radius: 5px;
  background: #b1c5eb;
  padding: 6px 6px 17px;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  color: #5c3232;
  text-decoration: none !important;
}

.common_area_link::before {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 6px;
  background-image: url(../img/brown_triangle_down.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.2s;
}

.common_area_lisks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -7.5px;
  margin-right: -7.5px;
  justify-content: center;
  margin-bottom: 30px;
}

.common_area_lisks li {
  position: relative;
  padding-left: 7.5px;
  padding-right: 7.5px;
}

table.normal_table td.area {
  width: 87px;
  font-weight: bold;
  text-align: center;
  color: #5C3232;
  line-height: 1.2;
  border: none;
}

table.normal_table td.bg_light_blue {
  background-color: rgba(177, 197, 235, 0.1);
}

table.normal_table td.bg_light_orange {
  background-color: rgba(239, 194, 135, 0.1);
}

table.normal_table td.bg_light_green {
  background-color: rgba(140, 200, 175, 0.1);
}

table.normal_table td.bg_light_yellow {
  background-color: rgba(232, 208, 76, 0.1);
}

table.normal_table td.fw_500 {
  color: #000;
}

.link_btn.with_icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 15px;
  font-size: 16px;
}

.link_btn.with_icon:hover {
  background: #26466D;
  color: #fff;
}

table.normal_table td .link_btn {
  width: 174px;
  height: 54px;
}

table.normal_table td .link_wrap {
  padding-top: 6px;
  padding-bottom: 6px;
}

table.normal_table td.fw_bold {
  color: #000;
}

table.normal_table .table_text_wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sign_text_link {
  position: relative;
  display: inline-block;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  color: #26466d;
  padding-right: 30px;
}

.sign_text_link::before {
  content: "";
  position: absolute;
  top: 6px;
  right: 0;
  width: 14px;
  height: 14px;
  background-image: url(../img/blue_sign_out_icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

table.normal_table .table_text_wrap .link_wrap {
  text-align: left;
  padding: 24px 0 0;
}

table.normal_table .table_text_wrap .link_wrap .sign_text_link:not(:last-child) {
  margin-right: 48px;
}

.table_wrap {
  position: relative;
}

.common_voices_area {
  position: relative;
}

.common_voices_area .box_wrap {
  position: relative;
  display: grid;
  grid-template-columns: 164px 1fr;
  grid-column-gap: 20px;
}

.common_voices_area .box {
  position: relative;
}

.common_voices_area .box .column_left {
  position: relative;
}

.common_voices_area .box .column_right {
  position: relative;
}

.common_voices_area .box .box_image {
  position: relative;
}

.common_voices_area .box .box_image .image_wrap {
  border-radius: 5px;
  width: 164px;
  height: 219px;
}

.common_voices_area .box .box_image .image_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.common_voices_area .box .box_info {
  position: relative;
}

.common_voices_area .box .info_text {
  position: relative;
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
  color: #383838;
  padding-bottom: 22px;
}

.common_voices_area .box .info_text::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 15px;
  width: 100%;
  background-image: url(../../img/top/text_under_image.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.common_voices_area .box .box_info .sm_text {
  margin-top: 10px;
  margin-bottom: 10px;
}

.common_voices_area .box .box_info .info_tags {
  position: relative;
}

.common_voices_area .box .box_info .info_tags p {
  display: inline-block;
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  color: #5c3232;
  background: #fff2ac;
  margin-right: 10px;
  padding: 1px 6px;
}

.common_voices_area .box .link_wrap {
  margin-top: 40px;
}

.common_voices_area .voices_text {
  position: relative;
  max-height: 110px;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
  color: #383838;
  overflow: hidden;
  margin-top: 20px;
}

.common_voices_area .voices_text::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: linear-gradient(to top, #fff, transparent);
}

* {}

* {}

* {}

* {}

* {}

* {}


/* footer */

#footer {
  position: relative;
  padding: 0;
  background: #5D3233;
}

#footer .footer_top {
  position: relative;
  padding: 36px 54px 15px;
}

#footer .footer_menu_container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-left: -10px;
  margin-right: -10px;
}

#footer .footer_links {
  position: relative;
  width: auto;
  flex: 0 0 auto;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
}

#footer .footer_links>a {
  position: relative;
  display: block;
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 14px;
  line-height: 2.0;
  text-align: left;
  color: #fff;
  text-decoration: none !important;
  margin-bottom: 10px;
}

#footer .footer_links>a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: #fff;
}

#footer .footer_links>a:hover::after {
  opacity: 1;
  -webkit-animation: link-lineloop 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation: link-lineloop 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

#footer .footer_links ul {
  list-style: none;
}

#footer .footer_links ul>li:not(:last-child) {
  margin-bottom: 3px;
}

#footer .footer_links ul a {
  position: relative;
  display: block;
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 12px;
  line-height: 2.0;
  text-align: left;
  color: #e0dada;
}

#footer .footer_links ul a:hover {
  text-decoration: underline;
}

#footer .footer_logo a {
  display: flex;
  max-width: 200px;
  width: 100%;
  align-items: center;
  justify-content: center;
}

#footer .footer_logo a img {
  width: 100%;
}

#footer .footer_bottom {
  position: relative;
  padding: 22px 30px;
  border-top: 1px solid #767676;
}

.footer_bottom_menu_container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.footer_bottom_menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: -10px;
  margin-right: -10px;
  max-width: 650px;
  width: 100%;
  flex: 0 0 100%;
}

.footer_bottom_menu li {
  position: relative;
  width: auto;
  flex: 0 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}

.footer_bottom_menu li a {
  position: relative;
  font-family: "Noto Sans JP";
  font-weight: normal;
  text-decoration: underline;
  font-size: 12px;
  line-height: 2.0;
  text-align: center;
  color: #fff;
}

#footer .footer_copyright {
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 10px;
  line-height: 1.8;
  text-align: right;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}


/* mobile css */


/* Mobile Nav Toggle */

#mobile_nav_toggle {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 0;
  border: 0;
  width: 60px;
  height: 60px;
  padding: 0;
  background: transparent;
  display: none;
  font-size: 9px;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
  background: #5D3233;
}

.drawer_toggle_lines {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 25px;
  margin-left: auto;
  margin-right: auto;
}

.drawer_toggle_text {
  position: relative;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-align: center;
  color: #fff;
}

.drawer-hamburger-icon {
  position: relative;
  display: block;
  margin-top: 0;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon::after,
.drawer-hamburger-icon::before {
  width: 100%;
  height: 1px;
  -webkit-transition: transform .6s cubic-bezier(.19, 1, .22, 1);
  transition: transform .6s cubic-bezier(.19, 1, .22, 1);
  background-color: #fff;
}

.drawer-hamburger-icon:before {
  top: -8px;
}

.drawer-hamburger-icon:after {
  top: 8px;
}

.drawer-open .drawer-hamburger-icon:before {
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  transform-origin: center center;
}

.drawer-open .drawer-hamburger-icon:after {
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
  transform-origin: center center;
}

.drawer-hamburger-icon {
  position: relative;
  display: block;
  margin-top: 0;
}

@media (max-width: 1024px) {
  #mobile_nav_toggle {
    display: flex;
  }
}


/* Mobile Nav Styling */

#mobile_nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 998;
  right: -100%;
  width: 100%;
  overflow-y: auto;
  transition: 0.4s;
  background: #FFFCEB;
}

#mobile_nav .header_top {
  position: relative;
  margin-bottom: 0;
  height: 60px;
  background: #fff;
  padding: 21px 15px;
}

#mobile_nav .header_body {
  position: relative;
  padding: 35px 17px 17px;
}

#mobile_nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile_nav .nav_menu>ul>li {
  position: relative;
  padding: 12px 0;
}

#mobile_nav .nav_menu>ul>li a {
  display: inline-block;
  text-align: left;
  position: relative;
  padding: 0;
  text-decoration: none;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 20px;
  line-height: 1.6;
  color: #5d3233;
}

#mobile_nav ul li li {
  padding-left: 0;
}

#mobile_nav .nav_menu>ul>li.drop_down>a {
  position: relative;
  padding-right: 28px;
}

#mobile_nav .nav_menu>ul>li.drop_down>a::after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: 0;
  display: inline-block;
  width: 15px;
  height: 10px;
  background-image: url(../img/arrow_down_icon.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform ease-in-out 0.4s;
}

#mobile_nav .nav_menu>ul>li.drop_down.active>a::after {
  transform: rotate(180deg);
  transform-origin: center center;
  transition: transform ease-in-out 0.4s;
}

#mobile_nav .nav_menu>ul>li.drop_down ul {
  position: relative;
  padding-top: 5px;
}

#mobile_nav .nav_menu>ul>li.drop_down li {
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}

#mobile_nav .nav_menu>ul>li.drop_down li:not(:last-child) {
  border-bottom: 1px solid rgba(93, 50, 51, 0.1);
}

#mobile_nav .nav_menu>ul>li.drop_down li a {
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
  color: #5d3233;
}

#mobile_nav ul .menu_item_active {
  color: #f82249;
}

#mobile_nav #logo {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  align-items: center;
}

#mobile_nav #logo img {
  width: 94px;
}

#mobile_body_overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.45);
  display: none;
}


/* Mobile Nav body classes */

body.mobile_nav_active {
  overflow: hidden;
}

body.mobile_nav_active #mobile_nav {
  right: 0;
}

body.mobile_nav_active #mobile_nav-toggle {
  background-color: transparent;
}

@media only screen and (max-width:1024px) {
  /*----------
01.共通
----------*/
  .l_pc {
    display: none !important;
  }
  .l_sp {
    display: block !important;
  }
  #header #nav_menu_container {
    display: none;
  }
  #header {
    position: fixed;
    height: 60px;
    padding: 21px 0;
    width: 100%;
    box-shadow: none;
    border-bottom: 1px solid #E0E0E0;
  }
  .header_container {
    padding: 0 15px;
  }
  #wrapper {
    padding-top: 60px;
  }
  .page_info_container .grid_area {
    position: relative;
    display: grid;
    grid-template-columns: 100%;
    grid-gap: 0;
  }
  .page_info_container .grid_area .column_left {
    position: relative;
    padding: 39px 0;
  }
  .page_info_container .grid_area .content {
    padding: 0 37px;
  }
  .page_info_container .grid_area .info_main_image {
    position: relative;
    height: 100%;
    max-height: 420px;
  }
  #logo a {
    width: 94px;
    height: 18px;
  }
  .common_info_area {
    position: relative;
    display: grid;
    grid-template-columns: 100%;
    grid-row-gap: 68px;
  }
  .common_info_area .info_box {
    max-width: 100%;
  }
  .common_info_area .column_right {
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
  }
  .common_info_area {
    position: relative;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width:750px) {
  /*----------
01.共通
----------*/
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .section_title h3 {
    font-size: 24px;
  }
  .news_link {
    font-size: 14px;
  }
  .link_btn,
  .white_link_btn {
    width: 240px;
    height: 54px;
  }
  .arrow_right_round_icon {
    position: relative;
    display: inline-block;
    width: 13px;
    height: 12px;
  }
  .section_title {
    position: relative;
    margin-bottom: 15px;
  }
  .section_title p {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 14px;
  }
  #page_intro p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 2px;
  }
  /* text css */
  .s_title {
    font-size: 14px;
    line-height: 1.6;
  }
  .m_title {
    font-size: 20px;
    line-height: 1.5;
  }
  .m_text {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
  }
  .xm_text {
    font-size: 15px;
  }
  .noto_text_18 {
    font-size: 14px;
  }
  .noto_title_32 {
    font-size: 24px;
  }
  .noto_title_20 {
    font-size: 14px;
  }
  .noto_title_35 {
    font-size: 25px;
  }
  .help_text {
    line-height: 1.6;
  }
  .font_20 {
    font-size: 16px !important;
  }
  /* course flow */
  .course_flow_container .box {
    position: relative;
    border-radius: 5px;
    padding: 0 12px;
  }
  .course_flow_container .title_01 h3 {
    font-size: 24px;
    line-height: 1.4;
  }
  .course_flow_container .title_01 p {
    font-size: 14px;
    line-height: 1.6;
  }
  .course_flow_container .title_01 {
    position: relative;
    padding-top: 20px;
    margin-bottom: 15px;
  }
  .course_flow_container .btn_wrap_01 {
    margin-bottom: 15px;
  }
  .course_flow_container .box .noto_text_18 span.medium {
    font-weight: bold !important;
    display: block;
    margin-top: 3px;
  }
  .course_flow_container .title_02 h3 {
    font-size: 22px;
    padding-left: 28px;
    padding-right: 28px;
  }
  .course_flow_container .title_02 h3 small {
    font-size: 12px;
    font-weight: 500;
  }
  .course_flow_container .title_02 {
    position: relative;
    margin-bottom: 10px;
    margin-top: 30px;
  }
  .course_flow_container .text_box_01 {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 16px 15px;
    margin-left: -17px;
    margin-right: -17px;
  }
  .course_flow_container .text_box_01 p {
    font-family: "Noto Sans JP";
    font-size: 18px;
  }
  .course_flow_container .help_text p {
    line-height: 1.6;
  }
  .course_flow_container .title_03 h3 {
    font-size: 24px;
  }
  .course_flow_container .course_list_wrap {
    display: grid;
    grid-template-columns: 100%;
    grid-row-gap: 40px;
  }
  .course_flow_container .course_item {
    padding: 15px 6px 20px;
  }
  .course_flow_container .course_item .title {
    font-size: 20px;
  }
  .course_flow_container .title_03 {
    margin-bottom: 20px;
  }
  .course_flow_container .course_item .text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
  }
  .course_flow_container .course_item .link_wrap {
    position: relative;
    padding-top: 20px;
  }
  .course_flow_container .course_item:nth-child(2)::before {
    width: 119px;
    height: 119px;
    right: -46px;
    top: -48px;
  }
  .course_flow_container .course_link_item {
    width: 100%;
    flex: 0 0 100%;
    padding: 30px 0;
  }
  .course_flow_container .course_links_wrap::before {
    display: none;
  }
  .course_flow_container .course_link_item:not(:last-child) {
    margin-bottom: 5px;
  }
  .course_flow_container .course_link_item:not(:last-child)::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: -2px;
    right: -2px;
    height: 5px;
    background-color: #5c3232;
  }
  .course_flow_container .course_link_item .m_text {
    text-align: center;
  }
  .course_flow_container .link_wrap {
    position: relative;
    padding-top: 20px;
  }
  .course_flow_container .course_link_item .link_text {
    min-height: unset;
  }
  .course_flow_container .box_02 .title h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .course_flow_container .box_02 .title p {
    font-size: 14px;
  }
  .course_flow_container .box_02 .title {
    margin-bottom: 0;
  }
  .course_flow_container .box.box_02 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .course_flow_container .text_box_list {
    position: relative;
    padding-top: 14px;
    padding-bottom: 10px;
  }
  .course_flow_container .text_box_list .tabs {
    position: relative;
  }
  .course_flow_container .text_box_list .tabs .tabs_list {
    position: relative;
    list-style: none;
    display: flex;
    align-items: flex-end;
    margin: 0px;
    padding: 0px;
  }
  .course_flow_container .text_box_list .tabs .tabs_list li {
    position: relative;
    width: 24%;
  }
  .course_flow_container .text_box_list .tabs .tabs_list li.active {
    width: 28%;
  }
  .course_flow_container .text_box_list .tabs .tabs_list li a {
    position: relative;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 34px;
    padding: 3px 8px;
    text-align: center;
    border-radius: 5px 5px 0px 0px;
    background: #d3dae2;
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 11px;
    line-height: 1.6;
    text-align: center;
    color: #383838;
    text-decoration: none !important;
  }
  .course_flow_container .text_box_list .tabs .tabs_list li a span {
    font-size: 15px;
    font-weight: bold;
  }
  .course_flow_container .text_box_list .tabs .tabs_list li.active a {
    font-size: 14px;
    height: 42px;
    border-radius: 5px 5px 0px 0px;
    background: #f9e57a;
  }
  .course_flow_container .help_text p:not(:last-child) {
    margin-bottom: 6px;
  }
  .course_flow_container .help_text.mb_45 {
    margin-bottom: 30px !important;
  }
  .text_box_list .tabs .tabs_list li.active a span {
    font-size: 20px;
  }
  .course_flow_container .tabs .text_box {
    border-radius: 0px 0px 5px 5px;
  }
  .course_flow_container .tabs .tab {
    display: none;
  }
  .course_flow_container .tabs .tab.active {
    display: block;
  }
  .accordion_item .accordion_question h3::before {
    font-size: 20px;
    left: 17px;
    top: 49%;
  }
  .accordion_item .accordion_question h3 {
    padding: 17px 34px 17px 58px;
    font-size: 16px;
    line-height: 1.6;
  }
  .accordion_item .accordion_question h3::after {
    width: 15px;
    height: 10px;
    right: 6px;
  }
  .accordion_item .accordion_answer {
    padding: 12px 17px 17px;
  }
  .accordion_item .accordion_answer .content {
    position: relative;
    padding-left: 36px;
    margin: 0;
  }
  .accordion_item .accordion_answer .content::before {
    font-size: 20px;
  }
  .accordion_item .accordion_answer .content>p {
    font-size: 14px;
  }
  .accordion_item .accordion_answer .content>a.link {
    font-size: 16px;
    padding-right: 14px;
    margin-top: 14px;
  }
  .accordion_item .accordion_answer .content>a.link::after {
    content: "";
    position: absolute;
    top: calc(50% - 4px);
    right: 0;
    width: 8px;
    height: 10px;
  }
  .accordion_item {
    margin-bottom: 15px;
  }
  #page_intro picture img {
    width: 100%;
    height: 142px;
    object-fit: cover;
  }
  #page_intro h1,
  #page_intro h3 {
    font-size: 20px;
  }
  .breadcrumbs ol li+li {
    padding-left: 8px;
  }
  .breadcrumbs ol li+li::before {
    padding-right: 8px;
  }
  .wp-pagenavi {
    padding: 28px 0 0;
  }
  .wp-pagenavi a,
  .wp-pagenavi span {
    padding: 0;
    background: none;
    width: 9px;
    height: 9px;
    margin: 0 8px;
  }
  .wp-pagenavi a::before,
  .wp-pagenavi span::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    right: auto;
    height: 9px;
    width: 9px;
    border-radius: 50%;
  }
  .wp-pagenavi a.previouspostslink,
  .wp-pagenavi a.nextpostslink {
    position: relative;
    width: 45px;
    height: 40px;
    border-radius: 5px;
    background: #26466d;
  }
  .wp-pagenavi a.previouspostslink {
    margin-left: 0;
  }
  .wp-pagenavi a.nextpostslink {
    margin-right: 0;
  }
  .wp-pagenavi a.previouspostslink::before,
  .wp-pagenavi a.nextpostslink::before {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 15px;
    height: 12px;
    right: auto;
    transform: translate(-50%, -50%);
  }
  .wp-pagenavi a.previouspostslink::before {
    content: "";
    background-image: url(../img/white_arrow_left.svg);
  }
  .wp-pagenavi a.nextpostslink::before {
    content: "";
    background-image: url(../img/white_arrow_right.svg);
  }
  .common_title h3 {
    font-size: 18px;
    line-height: 1.6;
  }
  .common_title {
    position: relative;
    padding: 9px 0 8px 17px;
    text-align: center;
    border-bottom: 2px solid #FFC2AF;
    margin-bottom: 20px;
  }
  .common_title::before {
    left: 15px;
  }
  .common_title::after {
    transform: skew(-12deg);
  }
  a.link {
    font-size: 14px;
    padding-right: 16px;
  }
  a.link::after {
    width: 8px;
  }
  * {}
  * {}
  * {}
  #footer .footer_top {
    position: relative;
    padding: 30px 37px 30px;
  }
  #footer .footer_links {
    position: relative;
    width: 50%;
    flex: 0 0 50%;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
  }
  #footer .footer_links ul a {
    line-height: 1.4;
  }
  #footer .footer_links ul>li:not(:last-child) {
    margin-bottom: 8px;
  }
  #footer .footer_links>a {
    margin-bottom: 12px;
  }
  .footer_bottom_menu_container {
    justify-content: center;
  }
  .footer_bottom_menu_container .footer_logo {
    order: 2;
  }
  .footer_bottom_menu {
    order: 1;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: 17px;
  }
  #footer .footer_copyright {
    text-align: center;
    margin-top: 10px;
  }
  #footer .footer_bottom {
    position: relative;
    padding: 17px 20px 10px;
  }
  .footer_bottom_menu li {
    display: flex;
    align-items: center;
  }
  .footer_bottom_menu li {
    line-height: 2.1;
  }
  .side_fixed_btns {
    position: fixed;
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 0;
  }
  .side_link {
    position: relative;
    width: 100%;
    height: 50px;
    border-radius: 5px 5px 0px 0px;
    padding: 13px 15px;
    font-size: 16px;
  }
  .side_fixed_btns .btn_container:nth-child(1) {
    order: 2;
  }
  .side_fixed_btns .btn_container:nth-child(2) {
    order: 1;
  }
  #footer {
    margin-bottom: 46px;
  }
  .page_info_container .grid_area .column_left {
    padding: 20px 0 30px;
  }
  .page_info_container .grid_area .content {
    padding: 0 20px;
  }
  .page_info_container .grid_area .info_item .xm_text {
    line-height: 1.6;
    font-size: 14px;
  }
  .page_info_container .grid_area .info_list_wrap .info_item {
    grid-column-gap: 15px;
  }
  .page_info_container .grid_area .info_item .xm_text .tel {
    font-size: 18px;
    line-height: 1.5;
  }
  .page_info_container .grid_area .info_item .xm_text .tel a {
    text-decoration: underline;
  }
  .text_title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .text_title::before {
    height: 16px;
  }
  .common_info_box_01 .info_list .column_left {
    position: relative;
    width: 100%;
    flex: 0 0 100%;
    margin-bottom: 15px;
  }
  .common_info_box_01 .info_list .column_right {
    position: relative;
    width: 100%;
    flex: 0 0 100%;
  }
  .common_info_box_01 .info_list .column_right .image_wrap {
    max-width: 364px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .common_sub_title {
    font-size: 18px;
    line-height: 1.6;
    padding-bottom: 12px;
    margin-bottom: 30px;
  }
  .common_info_box_01 .text_title {
    margin-bottom: 10px;
  }
  .m_text_list {
    font-size: 14px;
    line-height: 1.8;
  }
  .m_text_list li::before {
    top: 10px;
  }
  .m_text_list li {
    position: relative;
    padding-left: 17px;
  }
  .common_info_box_01 .info_item:not(:last-child) {
    margin-bottom: 60px;
  }
  .common_info_box_01 .info_item .help_text {
    padding-left: 17px;
    margin-top: 6px;
  }
  .common_info_detail_list {
    position: relative;
    display: grid;
    grid-template-columns: 100%;
  }
  .detail_info_item {
    position: relative;
    padding: 15px 0;
  }
  #course .teaching_material_section .block_area_04 .common_sub_title {
    margin-bottom: 15px;
  }
  .detail_info_item .info_title .text_title {
    position: relative;
    margin-bottom: 8px;
  }
  .detail_text_item .sm_text {
    line-height: 1.6;
    padding-top: 0;
  }
  .detail_info_item .detail_text_item::before {
    top: 8px;
  }
  .detail_info_item .grid {
    position: relative;
    display: grid;
    grid-template-columns: 100%;
  }
  .detail_info_item:nth-child(even)::before {
    display: none;
  }
  .detail_info_item:nth-child(even) {
    padding-left: 0;
  }
  .detail_info_item:nth-child(odd) {
    padding-right: 0;
  }
  .detail_info_item::after {
    display: none;
  }
  table.common_table th:not(:last-child) {
    border-bottom: 1px solid #fff;
  }
  table.common_table td {
    padding: 10px 17px;
    position: relative;
    border-bottom: 1px solid #D3DAE2;
    border-right: 1px solid #D3DAE2;
    vertical-align: middle;
    text-align: center;
  }
  table.common_table .m_text_list {
    font-size: 16px;
    line-height: 1.6;
  }
  table.common_table th {
    padding: 17px 9px;
  }
  .info_list_wrap .info_item {
    position: relative;
    display: grid;
    grid-column-gap: 15px;
  }
  .brown_info_box .box_title {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  .brown_info_box {
    position: relative;
    background-color: #5C3232;
    padding: 20px 17px;
    margin-bottom: 30px;
  }
  .brown_info_box .yellow_link_btn {
    border-color: #fff;
    padding: 10px 62px 10px 30px;
    height: 86px;
    width: 240px;
  }
  table.common_table {
    font-size: 14px;
    line-height: 1.6;
  }
  .step_item .step_title h3 {
    font-size: 18px;
    margin-top: 4px;
  }
  .grid_help_box_list {
    position: relative;
    display: grid;
    grid-template-columns: 100%;
    grid-row-gap: 34px;
    margin-bottom: 40px;
  }
  .grid_help_box_list .box .box_title {
    font-size: 15px;
    width: 297px;
  }
  .grid_help_box_list .box .box_title small {
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-top: 0;
    line-height: 1.4;
  }
  .grid_help_box_list .box {
    padding: 18px 20px 0;
  }
  .grid_help_box_list .box .box_title {
    position: absolute;
    transform: translate(-50%, -14px);
  }
  .grid_help_box_list .box .image_wrap {
    max-width: 205px;
  }
  .common_info_area .info_box {
    padding: 0 20px;
  }
  .common_info_area .info_box .m_text_list li:not(:last-child) {
    margin-bottom: 14px;
  }
  table.common_yellow_table {
    font-size: 14px;
    line-height: 1.6;
  }
  table.common_yellow_table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #D3DAE2;
    border-right: 1px solid #D3DAE2;
  }
  table.common_yellow_table td.bg_yellow {
    width: 77px;
    padding-left: 8px;
    padding-right: 8px;
    font-weight: 500;
    text-align: center;
    border-bottom: 1px solid #fff;
    background: rgba(246, 210, 129, 0.6);
  }
  table.common_yellow_table .link_btn {
    width: 214px;
  }
  .course_flow_container .common_yellow_table .link_wrap {
    position: relative;
    padding-top: 0;
  }
  .course_flow_container .common_yellow_table .link_wrap>* {
    margin-left: 0;
  }
  .common_info_list .info_item {
    position: relative;
    display: grid;
    grid-template-columns: 100%;
    grid-row-gap: 10px;
    min-height: auto;
  }
  .common_info_list .info_item .m_text {
    font-weight: normal;
  }
  .common_info_list .info_item .info_title {
    padding-right: 0;
    padding-bottom: 7px;
    border-right: none;
    border-bottom: 1px solid #D3DAE2;
  }
  .common_info_list .info_item .info_title .m_text {
    font-weight: 500;
  }
  .link_btn.sign_out_icon {
    position: relative;
    width: 240px;
    height: 52px;
    font-size: 17px;
    font-weight: 500;
    padding-right: 28px;
  }
  .link_btn.sign_out_icon::before {
    right: 9px;
  }
  .common_info_list .info_item .link_wrap {
    margin-top: 15px;
  }
  .common_info_list .info_item:not(:last-child) {
    margin-bottom: 30px;
  }
  .course_links_area .text_title {
    margin-bottom: 10px;
  }
  .course_links_area .m_text {
    position: relative;
    margin-bottom: 20px;
  }
  .course_links a.link {
    font-weight: 500;
  }
  .course_links {
    display: grid;
    grid-row-gap: 26px;
  }
  .common_info_area .yellow_info_box {
    position: relative;
    padding: 19px 17px;
  }
  .common_info_area .yellow_info_box .box_text {
    font-size: 16px;
    line-height: 1.8;
  }
  .common_info_area .yellow_info_box .box_text strong {
    font-size: 33px;
  }
  .common_info_area .yellow_info_box .box_text p:not(:last-child) {
    margin-bottom: 15px;
  }
  .common_info_area .yellow_info_box .help_text {
    font-weight: normal;
    margin-top: 10px;
    line-height: 1.85;
  }
  .common_info_area .yellow_info_box::before {
    right: 0;
  }
  .common_info_area {
    position: relative;
    display: grid;
    grid-template-columns: 100%;
    grid-row-gap: 15px;
  }
  .common_info_area .column_right {
    padding-left: 20px;
    padding-right: 20px;
  }
  .common_info_area .column_right .image_wrap img {
    height: 242px;
  }
  .normal_table.description_table {
    font-size: 14px;
    line-height: 1.6;
  }
  .normal_table.description_table td {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 10px;
    padding-right: 6px;
  }
  .normal_table.description_table .light_yellow {
    background: #FFFDEB;
    border: none;
    width: 94px;
    font-size: 16px;
    text-align: center;
  }
  .common_area_lisks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: -2px;
    margin-right: -2px;
    justify-content: flex-start;
    margin-bottom: 10px;
  }
  .common_area_lisks li {
    position: relative;
    padding-left: 2px;
    padding-right: 2px;
    margin-bottom: 4px;
  }
  .common_area_link {
    position: relative;
    display: inline-block;
    align-items: unset;
    justify-content: unset;
    text-align: center;
    width: auto;
    height: 60px;
    padding: 19px 19px;
  }
  .common_area_link::before {
    display: none;
  }
  table.normal_table {
    font-size: 14px;
    line-height: 1.6;
  }
  table.normal_table th {
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
    width: 77px;
    color: #000;
    background-color: #C8D6F1;
    line-height: 1.5;
    padding: 15px 6px;
  }
  table.normal_table th:not(:last-child) {
    border-bottom: 1px solid #fff;
  }
  table.normal_table td {
    padding: 15px;
    text-align: left;
  }
  table.normal_table td.fw_bold {
    padding-top: 6px;
    padding-bottom: 6px;
    line-height: 1.6;
  }
  .sign_text_link {
    padding-right: 24px;
  }
  table.normal_table .table_text_wrap .link_wrap .sign_text_link:not(:last-child) {
    margin-right: 18px;
  }
  .table_wrap table.normal_table:not(:last-child) {
    margin-bottom: 20px;
  }
  .page_info_container .grid_area .info_main_image .image_wrap img {
    width: 100%;
    height: auto;
  }
  table.normal_table .table_text_wrap .link_wrap {
    text-align: left;
    padding: 10px 0 0;
  }
  .table_area_tabs {
    position: relative;
  }
  .table_area_tabs .table_tab {
    display: none;
  }
  .table_area_tabs .table_tab.active {
    display: block;
  }
  .common_voices_area .box_wrap {
    position: relative;
    display: grid;
    grid-template-columns: 100%;
    grid-column-gap: 0;
    grid-row-gap: 0;
  }
  .common_voices_area .box .box_info .info_wrap {
    position: relative;
    display: grid;
    grid-template-columns: 115px 1fr;
    grid-column-gap: 13px;
  }
  .common_voices_area .box .box_image .image_wrap {
    border-radius: 5px;
    width: 115px;
    height: 154px;
  }
  .common_voices_area .box .column_left {
    display: grid;
    grid-template-columns: 115px 1fr;
    grid-column-gap: 13px;
  }
  .common_voices_area .box .info_text {
    font-size: 15px;
  }
  .common_voices_area .box .box_info .sm_text {
    font-size: 12px;
    margin-top: 12px;
    margin-bottom: 6px;
  }
  .common_voices_area .box .box_info .info_tags p {
    font-size: 14px;
  }
  .common_voices_area .box {
    padding: 30px 0 20px;
  }
  .common_voices_area .col_md_6:not(:last-child) .box {
    border-bottom: 1px solid #D3DAE2;
  }
  .common_voices_area .box .link_wrap {
    margin-top: 20px;
  }
  .common_voices_area .voices_text {
    position: relative;
    max-height: 90px;
    font-size: 14px;
    line-height: 2.1;
    margin-top: 10px;
  }
}