@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap');
* {
  box-sizing: border-box;
}
body {
  font-family: 'Noto Sans JP', Arial, Helvetica, "sans-serif", sans-serif;
  margin: 0;
  color: #555;
  font-size: 14px;
}
h1,
h2,
h3,
h4 {
  font-weight: normal;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.img {
  max-width: 980px;
  margin: 0 auto;
}
.text_style01 + .img {
  margin-top: 50px;
}
/* fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}
.main_visual_area {
  height: 35vh;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background: #0a3b95 url(../images/mv_bg_blue.png) no-repeat center center / cover;
}
.breadcrumbs {
  padding: 0;
  margin: 0 0 20px 50px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
}
.breadcrumbs ul,
.breadcrumbs li {
  margin: 0;
  padding: 0;
  color: #fff;
}
.breadcrumbs a {
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs ul {
  display: flex;
  max-width: 1400px;
  margin: auto;
}
.breadcrumbs li {
  list-style: none;
  font-size: 12px;
  height: 30px;
  line-height: 30px;
  margin-right: 2.0em;
  position: relative;
}
.breadcrumbs li:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1.2em;
  margin: auto;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: border-color 500ms ease;
}
.breadcrumbs li.active a {
  color: #000;
}
.breadcrumbs li:last-child:before {
  content: none;
}
.breadcrumbs+section {
  padding-top: 0;
}
section {
  padding: 100px 3%;
  margin: 0 auto;
  position: relative;
}
.mw1400 {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.page_title_h1 {
  font-size: clamp(20px, 3.28vw, 48px);
  color: #fff;
  text-align: center;
  position: relative;
}
.page_title_h1 span {
  font-size: clamp(14px, 1.7vw, 20px);
  color: #fff;
  text-align: center;
  position: relative;
}
.page_title_parent {
  font-size: clamp(20px, 3.28vw, 48px);
  color: #646464;
  text-align: center;
  position: absolute;
  left: 50px;
  z-index: 10;
}
h2 {
  font-size: 48px;
  margin-bottom: 1.0em;
}
.section_title_M {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 2em;
  color: #0a3b95;
}
.section_title_L {
  font-weight: bold;
  font-size: clamp(20px, 5vw, 42px);
  margin-bottom: 20px;
  line-height: 1;
  display: inline-block;
  color: #555;
}
h3 {
  font-size: 48px;
  margin-bottom: 1.0em;
  color: #555;
}
.title_h3 {
  font-size: 24px;
  font-weight: bold;
}
.text_style01 {
  font-size: clamp(14px, 1.14vw, 16px);
  line-height: 1.7;
  margin-bottom: 1.0em;
}
.text_style01 a {
  text-decoration: underline;
  color: #555;
}
.text_large {
  font-size: 24px;
  line-height: 1.7;
  margin-bottom: 1.0em;
}
.des_text {
  margin-bottom: 50px;
}
.link_btn {
  text-align: right;
}
/* ボタン */
.background_btn01 {
  display: block;
  color: #0a3b95;
  font-weight: normal;
  width: 100%;
  max-width: 300px;
  text-decoration: none;
  border: 1px solid #0a3b95;
  padding: 0.7em 1em;
  margin: 60px auto 0;
  text-align: center;
  position: relative;
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: 200% auto;
  background-image: linear-gradient(to right, #0a3b95 0%, #0a3b95 50%, #fff 50%, #fff 100%);
  transition: background-position .8s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: background-position .8s cubic-bezier(0.19, 1, 0.22, 1);
}
.background_btn01:hover,
a:hover .background_btn01 {
  background-position: 0 0;
  color: #fff;
}
.background_btn02 {
  display: block;
  color: #0a3b95;
  font-weight: normal;
  width: 100%;
  max-width: 200px;
  text-decoration: none;
  border: 1px solid #0a3b95;
  padding: 0.7em 1em;
  margin: 0 0 0 auto;
  text-align: center;
  position: relative;
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: 200% auto;
  background-image: linear-gradient(to right, #0a3b95 0%, #0a3b95 50%, #fff 50%, #fff 100%);
  transition: background-position .8s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: background-position .8s cubic-bezier(0.19, 1, 0.22, 1);
}
.background_btn02:hover,
a:hover .background_btn02 {
  background-position: 0 0;
  color: #fff;
}
/*ul a[target="_blank"]::after {
  content: "\f35d";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  padding-left: .7em;
}*/
.common_section {
  background: #a4a4a4 url(../images/bg.png) no-repeat center center / cover !important;
  color: #555;
  font-weight: bold;
  border: none !important;
}


.common_section .text_style01 {
  width: fit-content;
  margin: 0 auto;
}

/* footer */
footer {
  border-top: solid 4px #0a3b95;
  background: rgb(44 44 44);
  color: #fff;
  padding: 0 4%;
}
.footer_inner {
  padding: 60px 0%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.footer_inner .footer_logo {
  width: 240px;
  margin-bottom: 10px;
}
dl.contact-info {
    width: 250px;
    font-size: 18px;
}
.contact-info dt {
  font-weight: bold;
  width: 50px;
  display: inline-block;
  vertical-align: top;
}
.contact-info dd {
  display: inline-block;
  margin: 0;
  padding-left: 10px;
  vertical-align: top;
}
.contact-info .hours {
    font-size: 14px;
    display: block;
}
.footer_menu {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: end;
}
.footer_menu li {
  font-size: 16px;
}
.footer_menu li a:hover {
  text-decoration: underline;
}
p.copyright {
  text-align: right;
  padding: 10px 0;
}

/* flx */
.flx {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
}

/* table */
.table_style01 {
  width: 100%;
  margin: 0 auto 30px;
  border-collapse: collapse;
  border-spacing: 0;
  background: #fff;
}
.table_style01 th,
.table_style01 td {
  border: 1px solid #ccc;
  padding: 0.7em 1em;
}
.table_style01 th {
  background: rgba(204, 204, 204, 0.2);
  color: #555;
  font-weight: normal;
}
.table_style02 {
  margin-bottom:20px;
  width:100%;
  border-collapse:separate;
}
.table_style02 th,.table_style02 td {
  border: none;
  padding: 1em;
}
.table_style02 th {
  width: 25%;
  color: #FFF;
  font-size: clamp(14px, 1.14vw, 18px);
  font-weight: bold;
  background-color: #0a3b95;
  vertical-align: middle;
}
.table_style02 td {
  background-color: #EEE;
  font-size: clamp(14px, 1.14vw, 16px);
  line-height: 1.7;
}
.table_style02 td li {
  margin-bottom: 1.0em;
}
.main_content section {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: solid 1px #ccc;
}
.main_content section:nth-child(even) {
  background: rgba(255, 255, 255, 1.0);
}

/* cardtype_menu_list */
ul.cardtype_menu_list {
  display: flex;
  gap: 30px 2%;
  flex-wrap: wrap;
}
ul.cardtype_menu_list li {
  width: calc(96% / 3);
  background: #f8f8f8;
  overflow: hidden;
}
ul.cardtype_menu_list li:hover {
  background: #f8fcff;
}
.card_img {
  display: flex;
}
.card_content {
  padding: 20px;
}
h3.menu_title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
}
.card_content .menu_title + .text_style01 {
  font-size: 16px;
  margin: 0;
}
.effect {
  clip-path: inset(0 100% 0 0);
  transition: clip-path .5s ease;
  display: inline-block;
}
.effect.is-active {
  clip-path: inset(0 0% 0 0);
}
.card_content .text_box {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  ul.cardtype_menu_list {
    gap: 20px 2%;
  }
  ul.cardtype_menu_list li {
    width: calc(98% / 2);
  }
  .table_style02 th {
    display: block;
    width: 100%;
    text-align :left;
  }
  .table_style02 td {
    display: block;
    width: 100%;
    text-align :left;
    margin-bottom: 5px;
  }
}
@media (max-width: 640px) {
  ul.cardtype_menu_list li {
    width: 100%;
  }
}
.column_split {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 160px;
  flex-wrap: wrap;
}
.split_text {
  width: 55%;
  z-index: 1;
  position: relative;
  background: rgb(255 255 255 / 100%);
  padding: 45px 45px 0 0;
}
.column_split.reverse .split_text {
  padding: 45px 0 0 45px;
}
.split_image {
  width: 50%;
  position: absolute;
  top: -60px;
  right: 0;
  z-index: 0;
}
.split_image img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.case_title {
  font-size: 24px;
  font-weight: bold;
  background: #0a3b95;
  display: inline-block;
  margin-bottom: 1em;
  line-height: 1.7;
  color: #fff;
  padding: 4px 15px;
}
.case_list {
  margin-bottom: 30px;
}
.case_list li {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.7;
}
.item {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  padding-left: 20px;
}
.item::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #0a3b95;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.column_split.reverse {
  flex-direction: row-reverse;
}
.column_split.reverse .split_image {
  left: 0;
  right: auto;
}
.marker {
  position: relative;
  display: inline-block;
}
.marker::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.1em;
  width: 100%;
  height: 0.6em;
  background: #ceebff;
  transform: scaleX(0) skewX(-35deg);
  transform-origin: left;
  transition: transform 0.6s ease 0.6s;
  z-index: -1;
}
.marker.show::before {
  transform: scaleX(1) skewX(-35deg);
}
.marker {
  position: relative;
  z-index: 1;
}
.flow_step {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}
.step {
  padding-left: 0;
}
.step > li {
  list-style-type: none;
  background: #f1f1f1;
  border: 2px solid #0a3b95;
  padding: 20px;
  border-radius: 12px;
}
.step > li:not(:last-child) {
  margin-bottom: 40px;
  position: relative;
}
.step > li:not(:last-child)::after {
  content: '';
  position: absolute;
  border: 20px solid transparent;
  width: 0;
  height: 0;
  bottom: -53px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border-top-color: #0a3b95;
}
.step > li dl dt {
  display: flex;
  font-weight: bold;
  border-bottom: 2pt dashed #ccc;
  padding-bottom: 0.5em;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.3;
  margin-bottom: 1.0em;
  gap: 1.0em;
  flex-wrap: wrap;
  align-items: end;
}
.step > li dl dt .text_sub {
  font-size: 16px;
  font-weight: bold;
}
.step > li .icon10 {
  color: #0a3b95;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1;
  margin-right: 0.5em;
}
.step > li dl dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 1.0em;
}
.step > li:not(.active) dl dd strong {
  color: #0a3b95;
}
.step > li.active {
  background: #0a3b95;
  color: #fff;
}
.step > li.active .icon10 {
  color: #fff;
}
ul.tool_list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 30px 0;
}
ul.tool_list li {
  width: calc((100% - 40px)/3);
  background: #0a3b95;
  color: #fff;
  padding: 20px;
  border-radius: 6px;
}
ul.tool_list li h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 4px;
  color: #fff;
}
ul.tool_list li .text_style01 {
  font-weight: 100;
}
.balloon-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 2%;
  margin: 60px 0 0;
}
.balloon {
  position: relative;
  width: calc((100% - 4%)/3);
}
.balloon .text_style01 {
  background: #0a3b95;
  color: #ffffff;
  text-align: center;
  border-radius: 6px;
  padding: 20px 0;
  position: relative;
}
.balloon .text_style01 .arrow {
  display: block;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border: solid 4px #0a3b95;
  border-radius: 50px;
}
.balloon .text_style01 .arrow::after {
  content: "";
  position: absolute;
  bottom: 11px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-bottom: solid 4px #0a3b95;
  border-left: solid 4px #0a3b95;
  display: inline-block;
  transform: translateX(-50%) rotate(-45deg);
}
.balloon ul {
  margin: 0;
  padding: 22px;
  border: solid 4px #0a3b95;
  margin: -9px 0px 0;
  border-radius: 6px;
}
.balloon li {
  margin-bottom: 0.4em;
  font-size: clamp(14px, 1.14vw, 16px);
  font-weight: bold;
  line-height: 1.5;
}
.curriculum {
  margin: 2em 10px;
  padding: 1em;
  border-radius: 6px;
  background: #fff;
}
.curriculum-title {
  position: relative;
  font-size: 1.3em;
  padding: 4px 0 4px 12px;
  color: #0a3b95;
  font-weight:bold;
  text-align: center;
}
.curriculum ul,.curriculum ol {
  position: relative;
  margin: 0;
  padding: 0 0.5em 0 0.5em;
  color: #0a3b95;
  border: none;
  list-style-type: none;
}
.curriculum ol {
  counter-reset: number;
}
.curriculum ol li {
  line-height: 1.5;
  padding: 0.5em 0 0.5em 0;
  border-bottom: dashed 1px #0a3b95;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 1em;
}
.curriculum ul li:before {
  position: absolute;
  font-family: FontAwesome;
  content: "\f14a";
  left : 0.5em;
  color: #0a3b95;
}
.curriculum ol li:before {
  display: inline-block;
  font-family: "Quicksand", sans-serif;
  content: counter(number);
  counter-increment: number;
  left: 0.5em;
  width: 26px;
  height: 26px;
  border-radius: 20%;
  background: #0a3b95;
  color: white;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  padding-top: 3px;
}
.curriculum ul li:last-of-type,.curriculum ol li:last-of-type{
  border-bottom: none;
}
/*************************************
  contact
*************************************/
form#mail_form .privacy_check {
  text-align: center;
  padding: 1em;
}
form#mail_form input[type="button"]:disabled {
  background: #ddd;
  border: 1px solid #ddd;
}
form#mail_form input[type="button"]:disabled:hover {
  pointer-events: none;
  background: #ddd;
  border: 1px solid #ddd;
}
.thanks_title {
  font-size: 32px;
  margin-bottom: 1.7em;
}
/*************************************
  PRIVACY POLICY
*************************************/
.privacy .privacy_wrap {
  background: #fff;
}
.privacy h3 {
  margin: 50px 0 20px 0;
  padding: 10px 0 10px 20px;
  font-size: 24px;
  border-left: 5px solid #0a3b95;
}
.privacy .privacy_wrap ol {
  margin: 20px 0 0 1.7em;
}
.privacy .privacy_wrap ol li {
  position: relative;
  list-style: outside decimal;
  padding: 0 0 0 5px;
}
.privacy .privacy_wrap ol li::marker {
  font-size: 130%;
  font-weight: 700;
  color: #0a3b95;
}
.privacy .privacy_wrap li+li {
  margin-bottom: 15px;
}
.privacy .privacy_wrap li {
  font-size: 16px;
  line-height: 1.7;
}
/*****************************************************
  レスポンシブ
/****************************************************/
@media screen and (max-width: 1300px) {
  .catchy {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 900px) {
  .balloon {
    width: calc((100% - 2%)/2);
  }
}

/*****************************************************
  PC 767px以下
/****************************************************/
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .page_title_parent {
    left: 20px;
  }
  .breadcrumbs {
    margin: 0 0 10px 4%;
  }
  .breadcrumbs li {
    font-size: 10px;
    margin-right: 1.5em;
  }
  .breadcrumbs li:before {
    right: -1em;
    margin: auto;
    width: 4px;
    height: 4px;
  }
  .title_h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .title_h2 .h2_sub {
    font-size: 24px;
  }
  .background_btn02 {
    font-size: 14px;
  }
  .sub .main_visual_area {
    height: 260px;
  }
  .passing .passing-txt {
    font-size: 2.4rem;
    margin-bottom: 5px;
  }
  .breadcrumbs li {
    font-size: 12px;
  }
  section {
    padding: 60px 3%;
  }
  .flx {
    flex-direction: column;
  }
  iframe {
    height: 40vh;
  }
  .footer_inner .footer_logo {
    width: 160px;
  }
  .footer_menu {
    gap: 8px;
  }
  .footer_inner {
    padding: 30px 4%;
    display: block;
  }
  .footer_left_column {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer_menu {
    justify-content: center;
    margin: 2em 0 0;
    gap: 8px 1.5em;
  }
  .footer_menu li {
    font-size: 14px;
  }
  p.copyright {
    text-align: center;
    font-size: 12px;
  }
  .main_visual_area {
    height: 30vh;
  }
  .text_large {
    font-size: 16px;
  }
  .table_style01 th,
  .table_style01 td {
    width: 100%;
    font-size: 14px;
    display: block;
    padding: 10px;
  }
  .table_style01 tr:not(:last-child) td,
  .table_style01 tr th {
    border-bottom: 0;
  }
  .main_content section {
    padding: 40px 4%;
  }
  .step > li dl dt .text_sub,
  .step > li dl dd {
    font-size: 14px;
  }
  ul.tool_list li {
    width: calc((100% - 40px) / 2);
    background: #0a3b95;
    color: #fff;
    padding: 20px;
    border-radius: 6px;
  }
  .balloon {
    width: 100%;
  }
  .curriculum ol li {
    font-size: 16px;
  }
  .column_split {
    flex-direction: column;
    margin-bottom: 40px;
  }
  .split_text,
  .split_image {
    width: 100%;
    position: static !important;
    z-index: auto;
    top: auto;
    left: auto;
    right: auto;
    margin-top: 20px;
    padding: 0;
  }
  .column_split.reverse .split_text {
    padding: 0;
  }
  .split_image {
    margin-top: 10px;
  }
  .column_split.reverse {
    flex-direction: column;
  }
  .case_title {
    font-size: 20px;
    padding: 3px 7px;
  }
  .case_list li {
    font-size: 16px;
  }
  .item {
    font-size: 18px;
    padding-left: 16px;
  }
  .privacy h3 {
    margin: 24px 0 18px 0;
    padding: 6px 0 6px 10px;
    font-size: 18px;
  }
  .privacy .privacy_wrap ol {
    margin: 20px 0 0 1.5em;
  }
  .privacy .privacy_wrap li {
    font-size: 14px;
  }
  .privacy .privacy_wrap li+li {
    margin-bottom: 0.7em;
  }
}