@charset "UTF-8";

@font-face {
  font-family: 'Noto Sans CJK JP Subset';
  font-style: normal;
  font-weight: 400;
  src: local('Noto Sans CJK JP'),
       local('NotoSansCJKjp-Regular'),
       local('NotoSansJP-Regular'),
       url('../fonts/NotoSansCJKjp-Regular.woff2') format('woff2'),
       url('../fonts/NotoSansCJKjp-Regular.woff') format('woff'),
       url('../fonts/NotoSansCJKjp-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Noto Sans CJK JP Subset';
  font-style: normal;
  font-weight: 700;
  src: local('NotoSansCJKjp-Bold'),
       local('NotoSansJP-Bold'),
       url('../fonts/NotoSansCJKjp-Bold.woff2') format('woff2'),
       url('../fonts/NotoSansCJKjp-Bold.woff') format('woff'),
       url('../fonts/NotoSansCJKjp-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto-Regular'),
       local('Roboto-Regular'),
       url('../fonts/Roboto-Regular.woff2') format('woff2'),
       url('../fonts/Roboto-Regular.woff') format('woff'),
       url('../fonts/Roboto-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto-Bold'),
       local('Roboto-Bold'),
       url('../fonts/Roboto-Bold.woff2') format('woff2'),
       url('../fonts/Roboto-Bold.woff') format('woff'),
       url('../fonts/Roboto-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 500;
  src: local('Oswald-Medium'),
       local('Oswald-Medium'),
       url('../fonts/Oswald-Medium.woff2') format('woff2'),
       url('../fonts/Oswald-Medium.woff') format('woff'),
       url('../fonts/Oswald-Medium.ttf') format('truetype');
}

:root {
  --fv_base: 1420;
  --header_h: 84px;
}
@media (max-width: 767px) {
  :root {
    --fv_base: 750;
    --header_h: 66px;
  }
}

/* リセットCSS
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Noto Sans', 'Noto Sans CJK JP', 'Noto Sans CJK JP Subset', sans-serif;
  line-height: 1.6;
  font-weight: 500;
  background: #fff;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

input, select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #fff;
}

/*------------------------------
common
------------------------------*/
body {
  word-break: break-all;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
}
body.is-active {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll; /* スクロールバー補完 */
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/* スマホ用の表示の時はis-pcは非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* PC用の表示の時はis-spは非表示 */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
/* コンテンツ幅
------------------------------*/
.inner {
  width: 1024px;
  max-width: 90%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .inner {
    width: 400px;
  }
}

/* タイトル
------------------------------*/
.c-section-title {
  text-align: center;
}

.c-section-title__ja {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.25;
}
@media (max-width: 767px) {
  .c-section-title__ja {
    font-size: min(2.2rem, 5.8666666667vw);
  }
}

.c-section-title__en {
  display: block;
  margin-top: 0.8em;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  line-height: 1.19;
  letter-spacing: 3.2px;
  color: #006bba;
}
@media (max-width: 767px) {
  .c-section-title__en {
    font-size: min(1.4rem, 3.7333333333vw);
    margin-top: 10px;
  }
}

/* 見出し
------------------------------*/
.c-heading {
  font-size: min(3.6rem, 3.1578947368vw);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 767px) {
  .c-heading {
    font-size: 2rem;
  }
}

/* リード文
------------------------------*/
.c-lead {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.76;
}
@media (max-width: 767px) {
  .c-lead {
    text-align: left;
    font-size: 1.4rem;
  }
}

/* テキスト色
------------------------------*/
.u-text-wh {
  color: #fff;
}

/* ボタン
------------------------------*/
.c-button {
  max-width: 100%;
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  border-radius: 1.8em;
  padding: 1.3em 0;
}
@media (max-width: 767px) {
  .c-button {
    font-size: 1.6rem;
  }
}

a.c-button--yel {
  background: #ffe600;
  color: #111;
}

a.c-button--blue {
  background: #006bbb;
  color: #fff;
}

/* anchor
------------------------------*/
.c-anc {
  scroll-margin-top: var(--header_h);
}

/* anchor
------------------------------*/
.fade {
  opacity: 0;
}

/*------------------------------
CTA
------------------------------*/
.cta01 {
  background: #1078e0 url(../img/cta_bg.webp) no-repeat center center/cover;
}

.cta02 {
  background: #1078e0 url(../img/cta2.webp) no-repeat center center/cover;
}

.cta03 {
  background: #1078e0 url(../img/cta3.webp) no-repeat center center/cover;
}

.cta04 {
  background: #1078e0 url(../img/cta4.webp) no-repeat center center/cover;
}

.cta {
  padding: 80px 0;
  color: #fff;
}
@media (max-width: 767px) {
  .cta {
    padding: 40px 0;
  }
}

.cta__box {
  color: #333;
  max-width: 768px;
  margin: 0 auto;
  margin-top: 34px;
  padding: 4.2% 5% 3.3%;
  border-radius: 16px;
  background: #fff;
}

.cta__buttons {
  display: flex;
  justify-content: space-between;
}
.cta__buttons a {
  width: 48%;
  box-shadow: 0px 2px 8px 0px rgba(51, 51, 51, 0.2), inset 0px -3px 0px 0px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .cta__buttons {
    display: block;
  }
  .cta__buttons a {
    width: 100%;
  }
  .cta__buttons a:nth-child(2) {
    margin-top: 10px;
  }
}

.cta__tel {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta__tel a{
  color: #111;
}
@media (max-width: 767px) {
  .cta__tel {
    display: block;
    margin-top: 20px;
  }
}

.cta__tel-number {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1.92px;
  font-family: "Oswald", sans-serif;
}
.cta__tel-number strong {
  font-size: 3.2rem;
}
.cta__tel-number strong::before {
content: "";
background-image: url("../img/icon_fd.png");
background-size: contain;
display: inline-block;
width: 32px;
height: 32px;
position: relative;
bottom: -3px;
margin-right: 6px;
}
.cta__tel-number a {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cta__tel-number {
    text-align: center;
  }
    .cta__tel-number a {
  display: block;
}
}

.cta__tel-note {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-left: 0.7em;
}
@media (max-width: 767px) {
  .cta__tel-note {
    margin-left: 0;
    font-size: 1.2rem;
    text-align: center;
    margin-top: 5px;
  }
}

.cta__list {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}
.cta__list li {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.375;
  text-align: center;
  padding: 0 1.6em;
}
.cta__list li:not(:last-child) {
  border-right: 1px solid #fff;
}
.cta__list li strong {
  display: block;
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .cta__list li {
    font-size: 1.2rem;
    padding: 0 1em;
  }
  .cta__list li strong {
    font-size: 1.6rem;
  }
}

.cta__course {
  margin-top: 20px;
}
.cta__course a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 480px;
  margin: 0 auto;
  background: #fff;
  color: #333;
  padding: 1em 0;
}
.cta__course a::after {
  display: inline-block;
  content: "";
  position: relative;
  background: url(../img/icon_button-arrow.webp) no-repeat center center/contain;
  width: 0.8em;
  aspect-ratio: 32/22;
  margin-left: 12px;
}
.cta__course.type2 a::after {
  transform: rotate(180deg);
}

/*------------------------------
header
------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 18px 0;
  transition: background 0.3s;
}
header.act {
  background: #fff;
}

.header__inner {
  width: 100%;
  max-width: 100%;
  padding: 0 min(1.2%, 20px);
}
@media (max-width: 767px) {
  .header__inner {
    padding: 0 10px;
  }
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  width: 230px;
}
@media (max-width: 767px) {
  .header__logo {
    width: 150px;
  }
}

.header__nav {
  display: flex;
  align-items: center;
}

.header__buttons a {
  display: inline-block;
  width: 16.4em;
  max-width: 100%;
  font-size: 1.6rem;
  font-size: clamp(11.2px, 1vw, 1.6rem);
  font-weight: 700;
  line-height: 1.2;
  padding: 0.7em 0;
  border-radius: 4px;
  box-shadow: 0px 2px 8px 0 rgba(51, 51, 51, 0.2), inset 0px -2px 0 0 rgba(0, 0, 0, 0.2);
  text-align: center;
}
.header__buttons a:nth-child(2) {
  margin-left: 16px;
}

@media (max-width: 767px) {
  .header__buttons.header {
    display: none;
  }
}

.header__buttons.drawer {
  display: flex;
  flex-direction: column;
}
.header__buttons.drawer a {
  width: 100%;
  font-size: 1.6rem;
  padding: 1.2em 0;
}
.header__buttons.drawer a:nth-child(n) {
  margin: 25px auto 0;
}

.header__tel {
  font-size: 1.6rem;
  font-size: clamp(11.2px, 1vw, 1.6rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1.2px;
  margin-left: 1.7em;
  margin-right: 6.4em;
  font-family: "Oswald", sans-serif;
}
.header__tel a {
  display: flex;
  align-items: center;
  color: #111;
}

.header__tel span {
  font-size: 2rem;
}
.header__tel span::before {
content: "";
background-image: url("../img/icon_fd.png");
background-size: contain;
display: inline-block;
width: 24px;
height: 24px;
position: relative;
bottom: -4px;
margin-right: 4px;
}
@media (max-width: 767px) {
  .header__tel {
    display: none;
  }
}

.drawer-icon {
  background: #333;
  width: 48px;
  height: 48px;
  transition: transform 0.5s ease 0s;
  cursor: pointer;
  margin-left: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .drawer-icon {
    width: 30px;
    height: 30px;
  }
}
.drawer-icon.is-active .drawer-icon__bar1 {
  transform: rotate(-45deg);
  top: 50%;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  transform: rotate(45deg);
  top: 50%;
}

.drawer-icon__bars {
  width: 16px;
  height: 12px;
  display: block;
  position: relative;
  z-index: 400;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  width: 16px;
  height: 2px;
  background: #fff;
  top: 0;
  left: 0;
}

.drawer-icon__bar1 {
  top: 0;
  transition: transform 0.3s;
}

.drawer-icon__bar2 {
  top: 6px;
}

.drawer-icon__bar3 {
  top: 12px;
  transition: transform 0.3s;
}

.drawer-content {
  width: 100%;
  height: 100vh;
  height: 100svh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 299;
  overflow-y: auto;
  overscroll-behavior: contain; /* scroll伝番防止 */
  opacity: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.8);
  transition: opacity 0.3s;
}
.drawer-content.is-active {
  opacity: 1;
  pointer-events: auto;
}

.drawer-menu {
  color: #000;
  font-size: 1.6rem;
  font-weight: bold;
  width: 80%;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 50px 0;
  height: 100%;
  min-height: 800px;
}
.drawer-menu li:nth-child(n+2) {
  margin-top: 25px;
}
.drawer-menu li a {
  background-color: white;
  border-radius: 4px;
  text-align: center;
  padding: 1em;
  display: block;
  font-size: 1.8rem;
  text-decoration: none;
  text-align: center;
}

.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.8);
  z-index: 298;
  display: none;
}
.drawer-background.is-active {
  display: block;
}




/* スマホハンバーガーメニュー
/************************************************************/

#sp-nav{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
	top:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background-color: rgba(0,0,0,0.8);
    /*動き*/
	transition: all 0.3s;
}
/*アクティブクラスがついたら透過なしにして最前面へ*/
#sp-nav.panelactive{
	opacity: 1;
	z-index:999;
}
/*ナビゲーションの縦スクロール*/
#sp-nav.panelactive #sp-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
/*ナビゲーション*/
#sp-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
	width: 80%;
    max-width: 480px;
}
#sp-nav.panelactive ul {
    display: block;
}

/*リストのレイアウト設定*/
#sp-nav li{
	list-style: none;
    text-align: center; 
}
#sp-nav li a{
	text-decoration: none;
	display: block;
	text-transform: uppercase;
	margin-bottom: 12px;
	background-color: #FFFF;
	color: #222;
	font-weight: bold;
	border-radius: 4px;
	line-height: 48px;
    font-size: 16px;
}
#sp-nav li a.contact {
	background-color: #006bbb;
	color: #fff;
}
#sp-nav li a.zoom {
	background-color: #ffe600;
}
/*ボタン*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:14px;
	right: 2%;
	cursor: pointer;
    width: 48px;
    height:48px;
    background-color: #333;
}
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 13px;
    height: 2px;
	background-color: #fff;
  	width: 45%;
}
.openbtn span:nth-of-type(1) {
	top:15px;	
}
.openbtn span:nth-of-type(2) {
	top:23px;
}
.openbtn span:nth-of-type(3) {
	top:31px;
}
.openbtn.active span:nth-of-type(1) {
    top: 17px;
    left: 16px;
    transform: translateY(6px) rotate(-45deg);
    width: 35%;
	background-color: #fff;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 29px;
    left: 16px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
	background-color: #fff;
}
@media (max-width: 767px) {
.openbtn{
	top:8px;
    background-color: transparent;
}
.openbtn span{
	background-color: #333;
}
}

/*------------------------------
fv
------------------------------*/
.fv {
  width: 100%;
  aspect-ratio: 1420/680;
  max-height: 680px;
  position: relative;
  background: url(../img/fv_bg.webp) no-repeat center center/cover;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 8%;
}
@media (max-width: 767px) {
  .fv {
    aspect-ratio: 1420/1800;
    max-height: unset;
  }
}

.fv__body {
  width: 1280px;
  max-width: 90%;
  aspect-ratio: 1000/420;
  position: relative;
}
.fv__body::before {
  content: "";
  position: absolute;
  background: url(../img/fv1.webp) no-repeat center center/100%;
  aspect-ratio: 696/1038;
  width: 27%;
  left: 0%;
  bottom: 0%;
}
.fv__body::after {
  content: "";
  position: absolute;
  background: url(../img/fv2.webp) no-repeat center center/100%;
  aspect-ratio: 684/1068;
  width: 26%;
  right: 1%;
  bottom: 0%;
}
@media (max-width: 767px) {
  .fv__body {
    max-width: 100%;
    aspect-ratio: unset;
    height: 100%;
  }
  .fv__body::before {
    width: 35%;
    left: 10%;
  }
  .fv__body::after {
    width: 35%;
    right: 10%;
  }
}

.fv__content {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45%;
}
@media (max-width: 767px) {
  .fv__content {
    width: 75%;
    top: calc(var(--header_h) + 20%);
  }
}

.fv__heading {
  font-size: min(4.8rem, 100vw * 48 / var(--fv_base));
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.fv__heading strong {
  font-size: min(6.4rem, 100vw * 64 / var(--fv_base));
  color: #006bb9;
}
.fv__subtext {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: min(1.8rem, 100vw * 18 / var(--fv_base));
  width: 100%;
}
.fv__subtext::before, .fv__subtext::after {
  content: "";
  position: absolute;
  background: #000;
  width: 4em;
  height: 1px;
  top: 50%;
  transform: translate(0%, -50%);
}
.fv__subtext::before {
  left: 0;
}
.fv__subtext::after {
  right: 0;
}

.fv__subheading {
  position: relative;
  text-align: center;
  font-weight: 700;
  line-height: 1.25;
  font-size: 3.6rem;
  font-size: min(3.6rem, 100vw * 36 / var(--fv_base));
  margin-top: 2em;
  padding: 0.7em 0;
  margin-top: 1.2em;
  border-bottom: 1px solid #000;
}

.fv__subheading--blue {
  color: #006bba;
}

.fv__list {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 46%;
  display: flex;
  justify-content: space-between;
}
.fv__list img {
  width: 32%;
}
@media (max-width: 767px) {
  .fv__list {
    transform: translate(-50%, 50%) scale(1.5);
    z-index: 10;
  }
}

/*------------------------------
kouza
------------------------------*/
.kouza {
  padding: 80px 0 48px;
  background: #004A80;
  position: relative;
}
@media (max-width: 767px) {
  .kouza {
    padding: 40px 0 32px;
  }
}
.kouza .box {
  background: #fff;
  border-radius: 16px;
  padding: 40px 40px;
}
.kouza .box:first-child {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
    .kouza .box {
        padding: 6% 6%;
    }
}
.kouza .box p {
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}
.kouza .box p em {
    color: #ED5656;
}
@media (max-width: 767px) {
.kouza .box p {
    font-size: 1.4rem;
    text-align: left;
}
}
.kouza .box .logo {
    width: 260px;
    margin: 16px auto 20px;
}
@media (max-width: 767px) {
.kouza .box .logo {
    width: 200px;
}
}
.kouza .box .price {
display: flex;
margin-bottom: 20px;
}
.kouza .box .price li {
width: 50%;
}
.kouza .box .price li dl {
border: solid 4px #006BB9;
  border-radius: 8px;
  margin: 0 8px;
  display: flex;
  font-weight: 700;
    font-size: 2.0rem;
}
.kouza .box .price li dt {
background-color: #006BB9;
line-height: 72px;
width: 32%;
text-align: center;
color: #fff;
}
.kouza .box .price li dd {
line-height: 72px;
width: 68%;
text-align: center;
font-size: 3.2rem;
color: #006BB9;
}
.kouza .box .price li dd span {
    position: relative;
    margin-right: 4px;
font-size: 2.0rem;
bottom: 4px;
color: #333;
}
@media (max-width: 767px) {
.kouza .box .price {
display: block;
margin-bottom: 0px;
}
.kouza .box .price li {
width: 100%;
margin-bottom: 16px;
}
.kouza .box .price li dl {
border: solid 3px #006BB9;
  margin: 0px;
    font-size: 1.4rem;
}
.kouza .box .price li dt {
line-height: 56px;
}
.kouza .box .price li dd {
line-height: 56px;
font-size: 1.8rem;
}
.kouza .box .price li dd span {
font-size: 1.8rem;
bottom: 0px;
}
.kouza .box .futangaku {
border: solid 1px #ccc;
padding: 16px;
text-align: center;
}
}
.kouza .box .reskills {
display: table;
padding: 0 40px;
}
.kouza .box .reskills dt {
display: table-cell;
vertical-align: middle;
padding: 0 40px 0 0;
}
.kouza .box .reskills dd {
font-size: 1.7rem;
display: table-cell;
vertical-align: middle;
    line-height: 1.5;
}
@media (max-width: 767px) {
.kouza .box .reskills {
display: block;
padding: 0;
}
.kouza .box .reskills dt {
display: block;
padding: 0;
width: 200px;
margin: 0 auto 16px;
}
.kouza .box .reskills dd {
font-size: 1.4rem;
display: block;
}
}


.seido {
margin-top: 48px;
}
.seido .head {
  background: #006BB9;
  border-radius: 16px 16px 0px 0px;
  padding: 22px 0px 24px;
  text-align: center;
  color: #fff;
  font-size: 2.8rem;
  font-weight: bold;
}
@media (max-width: 767px) {
.seido {
margin-top: 32px;
}
.seido .head {
  font-size: 1.8rem;
  padding: 18px 0px 20px;
}
}
.seido .box {
  border-radius: 0px 0px 16px 16px;
  padding: 48px 48px 48px;
}
.seido .box p {
font-size: 1.4rem;
text-align: left;
font-weight: normal;
line-height: 1.76;
}
@media (max-width: 767px) {
.seido .box {
  padding: 24px 20px 20px;
}
.seido .box p {
font-size: 1.4rem;
line-height: 1.5;
}
}


.seido .seido_price {
border: solid 4px #006BB9;
  border-radius: 8px;
  margin: 0 auto 64px;
  display: flex;
  font-weight: 700;
    font-size: 2.0rem;
    width: 680px;
}
.seido .seido_price dt {
background-color: #006BB9;
line-height: 72px;
width: 32%;
text-align: center;
color: #fff;
}
.seido .seido_price dd {
line-height: 72px;
width: 68%;
text-align: center;
font-size: 3.2rem;
color: #006BB9;
}
.seido .seido_price span {
    position: relative;
    margin-right: 4px;
font-size: 2.0rem;
bottom: 4px;
color: #333;
}
@media (max-width: 767px) {
.seido .seido_price {
border: solid 3px #006BB9;
margin: 0 auto 40px;
font-size: 1.4rem;
width: 100%;   
}
.seido .seido_price dt {
line-height: 1.2;
padding-top: 24px;
}
.seido .seido_price dd {
line-height: 1.2;
font-size: 1.8rem;
padding: 12px 0;
}
.seido .seido_price span {
font-size: 1.8rem;
bottom: 0px;
}
}
.seido .seido_about {
border: solid 2px #006BB9;
padding: 24px 40px 40px;
margin-bottom: 40px;
}
.seido .seido_about h3 {
position: relative;
top: -38px;
text-align: center;
}
.seido .seido_about h3 span {
font-size: 2.4rem;
background-color: #fff;
padding: 0 16px;
display: inline-block;
font-weight: bold;
color: #006BB9;
}
.seido .seido_about p {
font-size: 1.6rem;
margin-bottom: 32px;
}
.seido .seido_about p em {
font-weight: bold;
color: #ED5656;
}
.seido .seido_about p:last-child {
margin-bottom: 0px;
}
.seido .seido_about ul {
margin-bottom: 32px;
}
.seido .seido_about li {
font-size: 1.6rem;
font-weight: bold;
padding: 16px;
margin-bottom: 8px;
background-color: #e1edf7;
border-radius: 4px;
line-height: 1.5;
}

.seido .seido_about li em {
font-weight: bold;
color: #ED5656;
}

@media (max-width: 767px) {
.seido .seido_about {
padding: 0px 16px 20px;
margin-bottom: 24px;
}
.seido .seido_about h3 {
position: relative;
top: -18px;
text-align: center;
}
.seido .seido_about h3 span {
font-size: 1.6rem;
line-height: 1.25;
}
.seido .seido_about p {
font-size: 1.4rem;
margin-bottom: 16px;
}
.seido .seido_about ul {
margin-bottom: 16px;
}
.seido .seido_about li {
font-size: 1.4rem;
padding: 8px;
margin-bottom: 8px;
}
}


.seido .seido_course {
width: 680px;
margin: 40px auto 0;
}
.seido .seido_course:last-child {
margin: 20px auto 0;
}
.seido .seido_course dt {
background-color: #006BB9;
color: #fff;
text-align: center;
font-weight: bold;
font-size: 1.7rem;
padding: 20px;
line-height: 1.2;
}
.seido .seido_course dd {
padding: 24px;
border: solid 3px #006BB9;
}
.seido .seido_course dd .img {
display: block;
width: 480px;
margin: 0 auto;
}
.seido .seido_course dd p {
font-size: 1.4rem;
text-align: center;
font-weight: normal;
}
@media (max-width: 767px) {
.seido .seido_course {
width: 100%;
margin: 24px auto 0;
}
.seido .seido_course dt {
font-size: 1.4rem;
padding: 16px 16px;
line-height: 1.2;
text-align: left;
}
.seido .seido_course dd {
padding: 16px;
}
.seido .seido_course dd .img {
width: 160px;
}
}





.taisho {
margin-top: 48px;
}
.taisho .box {
  padding: 40px 48px;
}
.taisho .box h2 {
font-size: 2.8rem;
text-align: center;
font-weight: bold;
line-height: 1.2;
margin-bottom: 40px;
}
.taisho .box h2 em {
color: #ED5656;
}
.taisho .box p {
font-size: 1.4rem;
text-align: left;
font-weight: normal;
line-height: 1.76;
margin-top: 40px;
}
.taisho .box .status {
border: solid 1px #000;
background-color: #eee;
width: 680px;
margin: 32px auto 0px;
}
.taisho .box .status h3 {
border-bottom: solid 1px #000;
background-color: #fff;
font-weight: bold;
line-height: 56px;
font-size: 2.0rem;
}
.taisho .box .status h3 span {
color: #fff;
background-color: #000;
line-height: 56px;
display: inline-block;
padding: 0 48px;
margin-right: 48px;
}
.taisho .box .status .img {
padding: 32px 48px;
}
.taisho .box .status .img p {
margin: 0 0 24px;
}

@media (max-width: 767px) {
.taisho {
margin-top: 32px;
}
.taisho .box {
  padding: 20px;
}
.taisho .box h2 {
    font-size: 1.8rem;
    text-align: left;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 24px;
}
.taisho .box p {
    line-height: 1.5;
    margin-top: 24px;
}
.taisho .box .status {
width: 100%;
margin: 20px auto 0px;
}
.taisho .box .status h3 {
    line-height: 40px;
    font-size: 1.4rem;
    text-align: center;
}
.taisho .box .status h3 span {
    line-height: 40px;
    display: block;
    padding: 0px;
    margin-right: 0px;
}
.taisho .box .status .img {
padding: 16px;
}
.taisho .box .status .img p {
margin: 0 0 8px;
}
}

.skillup_sp {
display: none;
padding: 5%;
}
@media (max-width: 767px) {
.skillup_sp {
display: block;
}
}

/*--------------------
 accordion
--------------------*/
.accordion {
}
.accordion_content {
}
.accordion_accordionMoreContent {
  display: none;
}
.accordion_button {
  position: relative;
  display: block;
  width: 320px;
  margin: 48px auto 0;
  cursor: pointer;
}

.accordion_button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(135deg);
  margin-top: -8px;
}

.accordion_buttonText {
  display: none;
  color: #ffffff;
  font-size: 16px;
  line-height: 48px;
  text-align: center;
  text-decoration: none;
  background-color: #002C4D;
  border-radius: 4px;
  transition: opacity 0.3s ease 0s;
  box-sizing: border-box;
  border: solid 1px #fff;
}

/* is-active時（展開時）の切り替え */
.accordion_button.is-active::before {
  transform: rotate(-45deg);
  margin-top: -2px;
}

.accordion_buttonText.is-active {
  display: block;
}

@media (max-width: 767px) {
.accordion_button {
  width: 240px;
  margin: 32px auto 0;
}
.accordion_buttonText {
  font-size: 14px;
  line-height: 40px;
}
}









/*------------------------------
problem
------------------------------*/
.problem {
  padding: 80px 0;
  background: #e1edf7;
  position: relative;
}
.problem::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translate(-50%, 100%);
  background: #e1edf7;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  width: 80px;
  aspect-ratio: 80/40;
}
@media (max-width: 767px) {
  .problem {
    padding: 40px 0;
  }
  .problem::after {
    width: 40px;
  }
}

.problem__content {
  margin-top: 60px;
  position: relative;
}
@media (max-width: 767px) {
  .problem__content {
    margin-top: 30px;
  }
}

.problem__image {
  width: min(150px, 13.1578947368vw);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .problem__image {
    width: 100px;
  }
}

.problem__item {
  width: 21em;
  max-width: 100%;
  font-size: min(1.8rem, 1.5789473684vw);
  font-weight: 700;
  line-height: 1.28;
  text-align: center;
  background: #fff;
  border-radius: 1em;
  padding: 1.5em 0;
  box-shadow: 0 0 8px 0 rgba(0, 107, 187, 0.2);
}
@media (min-width: 768px) {
  .problem__item {
    position: absolute;
  }
}
@media (max-width: 767px) {
  .problem__item {
    margin: 0 auto;
    font-size: 1.4rem;
  }
  .problem__item:nth-child(n+2) {
    margin-top: 10px;
  }
}

@media (min-width: 768px) {
  .problem__item1 {
    top: 0;
    left: 4%;
  }
}

@media (min-width: 768px) {
  .problem__item2 {
    top: 0%;
    right: 4%;
  }
}

@media (min-width: 768px) {
  .problem__item3 {
    top: 36%;
    left: 0;
  }
}

@media (min-width: 768px) {
  .problem__item4 {
    top: 36%;
    right: 0;
  }
}

@media (min-width: 768px) {
  .problem__item5 {
    top: 72%;
    left: 4%;
  }
}

@media (min-width: 768px) {
  .problem__item6 {
    top: 72%;
    right: 4%;
  }
}

/*------------------------------
solution
------------------------------*/
.solution {
  background: #39AAE2 url(../img/solution_bg.webp) no-repeat center center/cover;
  padding: 90px 0;
  color: #fff;
}
@media (max-width: 767px) {
  .solution {
    padding: 60px 0;
  }
}

.solution__heading {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: min(4rem, 3.5087719298vw);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  padding-bottom: 9px;
}
.solution__heading span {
  display: inline-block;
  line-height: 1.2;
  border-bottom: 4px solid #fff;
}
@media (max-width: 767px) {
  .solution__heading {
    font-size: 2.4rem;
  }
}

.solution__box {
  background: #fff;
  padding: 3.6% 4%;
  border-radius: 20px;
  margin-top: 54px;
}
@media (max-width: 767px) {
  .solution__box {
    margin-top: 30px;
  }
}

.solution__box-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: #006bbb;
  text-align: center;
}
@media (max-width: 767px) {
  .solution__box-title {
    font-size: 1.8rem;
  }
}

.solution__list {
  margin-top: 50px;
  display: flex;
}
.solution__list li {
  width: calc(25% - 12px);
  height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.18;
  text-align: center;
  color: #fff;
  background: #189ce2;
  border-radius: 8px;
  box-shadow: inset 0px -3px 0 0 rgba(0, 0, 0, 0.2);
  position: relative;
}
.solution__list li:nth-child(2n) {
  background: #006bbb;
}
.solution__list li:nth-child(2n) .solution__number {
  color: #006bbb;
}
@media (min-width: 768px) {
  .solution__list li:nth-child(n+2) {
    margin-left: 16px;
  }
}
@media screen and (max-width: 999px) {
  .solution__list li {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .solution__list {
    flex-wrap: wrap;
  }
  .solution__list li {
    width: calc(50% - 8px);
    font-size: 1.6rem;
  }
  .solution__list li:nth-child(2n) {
    margin-left: 16px;
  }
  .solution__list li:nth-child(n+3) {
    margin-top: 30px;
  }
}

.solution__number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2em;
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: 50%;
  font-size: 2.4rem;
  font-size: 700;
  font-family: "Roboto", sans-serif;
  color: #189ade;
}

.solution__footer {
  margin-top: 80px;
  position: relative;
}
.solution__footer::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../img/img_arrow.webp) no-repeat center center/contain;
  width: 64px;
  aspect-ratio: 128/88;
}

/*------------------------------
flow
------------------------------*/
.flow__header {
  padding: 80px 0 70px;
  position: relative;
}
.flow__header::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translate(-50%, 100%);
  background: #fff;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  width: 80px;
  aspect-ratio: 80/40;
}
@media (max-width: 767px) {
  .flow__header {
    padding: 40px 0;
  }
  .flow__header::after {
    width: 40px;
  }
}

.flow__lead {
  margin-top: 35px;
  text-align: center;
}
@media (max-width: 767px) {
  .flow__lead {
    text-align: left;
  }
}

.flow__content {
  padding: 80px 0;
  background: #006bbb;
}

.flow__item {
  background: #fff;
  border-radius: 20px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  aspect-ratio: 1000/175;
  position: relative;
}
.flow__item::after {
  content: "";
  position: absolute;
  background: url(../img/icon_arrow.webp) no-repeat center bottom/100%;
  z-index: 10;
  aspect-ratio: 64/288;
  width: 3%;
  left: calc(6% + 56px);
  bottom: 0;
  transform: translate(-50%, 60%);
}
.flow__item:nth-child(n+2) {
  margin-top: 24px;
}
.flow__item:nth-last-of-type(2)::after {
  aspect-ratio: 64/250;
}
.flow__item:nth-last-of-type(1) {
  z-index: 1;
}
.flow__item:nth-last-of-type(2) {
  z-index: 2;
}
.flow__item:nth-last-of-type(3) {
  z-index: 3;
}
.flow__item:nth-last-of-type(4) {
  z-index: 4;
}
.flow__item:nth-last-of-type(5) {
  z-index: 5;
}
.flow__item:last-child {
  aspect-ratio: 1000/200;
}
.flow__item:last-child::after {
  display: none;
}
@media (max-width: 767px) {
  .flow__item {
    display: block;
    padding: 10% 6%;
    aspect-ratio: 350/300;
  }
  .flow__item:nth-child(n)::after {
    left: 50%;
    aspect-ratio: 64/150;
    width: 10%;
  }
}

.flow__item-last .flow__title {
  color: #ed5656;
}
.flow__item-last .flow__description li::before {
  background: #ed5656;
}

.flow__label {
  width: 112px;
}
@media (max-width: 767px) {
  .flow__label {
    width: 50%;
    margin: 0 auto;
  }
}

.flow__period {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url(../img/flow_label-bg.webp) no-repeat center center/100%;
  aspect-ratio: 112/36;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.18;
  color: #fff;
  text-align: center;
}

@media (min-width: 768px) {
  .flow__body {
    width: 81%;
    max-width: calc(100% - 150px);
  }
}
@media (max-width: 767px) {
  .flow__body {
    width: 100%;
    margin-top: 20px;
  }
}

.flow__title {
  font-size: min(2.4rem, 2.1052631579vw);
  line-height: 1.2;
  font-weight: 700;
  color: #0072ba;
}
@media (max-width: 767px) {
  .flow__title {
    font-size: min(2rem, 5.3333333333vw);
  }
}

.flow__description {
  margin-top: 20px;
}
.flow__description li {
  font-size: min(1.7rem, 1.4912280702vw);
  font-weight: 400;
  line-height: 1.76;
  position: relative;
  padding-left: 1em;
}
.flow__description li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  background: #006bbb;
  width: 0.5em;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .flow__description li {
    font-size: 1.4rem;
  }
}

.flow__award {
  text-align: center;
}
.flow__award img {
  position: relative;
  width: 70%;
}
@media screen and (max-width: 999px) {
  .flow__award img {
    width: 50%;
  }
}

.flow__footer {
  margin-top: 90px;
  position: relative;
}
.flow__footer::before {
  content: "";
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../img/img_arrow.webp) no-repeat center center/contain;
  width: 64px;
  aspect-ratio: 128/88;
}

.flow__message {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 999px) {
  .flow__message {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .flow__message {
    font-size: 2.6rem;
  }
}

.flow__message--box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #006bbb;
  display: block;
  font-size: 3.2rem;
  margin-top: 30px;
  padding: 0.25em 0.5em;
  background: #ffe733;
}
@media screen and (max-width: 999px) {
  .flow__message--box {
    font-size: 2.6rem;
  }
}
@media (max-width: 767px) {
  .flow__message--box {
    font-size: 2.8rem;
  }
}

/*------------------------------
merit
------------------------------*/
.merit {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .merit {
    padding: 40px 0;
  }
}

.merit__list {
  margin-top: 9%;
}

.merit__item {
  position: relative;
}
  .merit__item .merit__image img {
    border-radius: 16px;
  }
.merit__item:nth-child(n+2) {
  margin-top: 7.5%;
}
@media (min-width: 768px) {
  .merit__item:nth-child(2n) .merit__body {
    padding: 7.25% 10% 7.25% 5%;
    margin-right: auto;
    margin-left: unset;
  }
  .merit__item:nth-child(2n) .merit__number {
    left: 8%;
  }
  .merit__item:nth-child(2n) .merit__image {
    left: unset;
    right: 0;
  }

}

@media (min-width: 768px) {
  .merit__image {
    width: 47%;
    position: absolute;
    top: -15%;
    left: 0;
    transform: translate(0%, 0%);
    z-index: 10;
  }
}
@media (max-width: 767px) {
  .merit__image {
    width: 100%;
    position: relative;
  }
}

.merit__body {
  width: 58.8%;
  background: #fff;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  margin-left: auto;
  position: relative;
  padding: 0% 5% 0% 10.5%;
  aspect-ratio: 600/280;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .merit__body {
    width: 100%;
    padding: 0;
  box-shadow: none;
  margin-top: 16px;
  align-items: start;
  aspect-ratio: 0;
}
}

.merit__number {
  position: absolute;
  top: 0;
  left: 18%;
  transform: translateY(-70%);
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: #189ce2;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 999px) {
  .merit__number {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .merit__number {
    left: 5%;
    font-size: 2.0rem;
    transform: translateY(-10%);
    position: static;
  }
}

.merit__heading {
  font-size: 2.6rem;
  line-height: 1.27;
  font-weight: 700;
  color: #006bbb;
}
@media screen and (max-width: 999px) {
  .merit__heading {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .merit__heading {
    font-size: min(2.4rem, 6.4vw);
    margin-top: 8px;
  }
}

.merit__description {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.76;
  margin-top: 1em;
}
@media screen and (max-width: 999px) {
  .merit__description {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .merit__description {
    font-size: 1.4rem;
    margin-top: 1em;
  }
}

.merit__description--emphasis {
  display: inline;
  color: #ec5555;
  font-weight: 700;
  background: linear-gradient(transparent 60%, #ffe733 40%);
}

/*------------------------------
about
------------------------------*/
.about__header {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .about__header {
    padding: 40px 0;
  }
}

.about__lead {
  margin-top: 45px;
}

.about__content {
  background: url(../img/about_bg.webp) no-repeat center center/cover;
  padding: 50px 0;
}

.about__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .about__wrapper {
    display: block;
  }
}

.about__body {
  width: 52.6%;
  color: #fff;
}
@media (max-width: 767px) {
  .about__body {
    width: 100%;
  }
}

.about__heading {
  font-size: min(3.2rem, 3.3854166667vw);
  font-weight: 700;
  line-height: 1.25;
}
@media (max-width: 767px) {
  .about__heading {
    font-size: 2.2rem;
  }
}

.about__description {
  margin-top: 40px;
  font-size: min(1.7rem, 1.8229166667vw);
  font-weight: 400;
  line-height: 2;
}
@media (max-width: 767px) {
  .about__description {
    font-size: 1.4rem;
    margin-top: 20px;
  }
}

.about__description--emphasis {
  color: #ffe633;
  font-weight: 700;
}

.about__image {
  width: 40%;
}
@media (max-width: 767px) {
  .about__image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    margin-top: 30px;
  }
}

/*------------------------------
experience
------------------------------*/
.experience {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .experience {
    padding: 40px 0;
  }
}

.experience__lead {
  margin-top: 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .experience__lead {
    text-align: left;
  }
}

.experience__container {
  margin-top: 40px;
}

.experience__block {
  border-radius: 16px;
}
.experience__block:nth-child(n+2) {
  margin-top: 40px;
}

.experience__block01 {
  border: 8px solid #159393;
}
.experience__block01 .experience__title {
  background: #159393;
}
.experience__block01 .experience__label {
  color: #159393;
}
.experience__block01 .experience__list li::before {
  background-color: #159393;
}

.experience__block02 {
  border: 8px solid #4185cf;
}
.experience__block02 .experience__title {
  background: #4185cf;
}
.experience__block02 .experience__label {
  color: #4185cf;
}
.experience__block02 .experience__list li::before {
  background-color: #4185cf;
}

.experience__block03 {
  border: 8px solid #405ba4;
}
.experience__block03 .experience__title {
  background: #405ba4;
}
.experience__block03 .experience__label {
  color: #405ba4;
}
.experience__block03 .experience__list li::before {
  background-color: #405ba4;
}

.experience__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  text-align: center;
  padding: 0.9em 0;
}
@media (max-width: 767px) {
  .experience__title {
    font-size: 1.6rem;
  }
}

.experience__content {
  padding: 0 5.9%;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .experience__content dt, .experience__content dd {
    padding: 30px 0;
  }
  .experience__content dt:not(:last-of-type), .experience__content dd:not(:last-of-type) {
    border-bottom: 1px solid #D5D5D5;
  }
}
@media (max-width: 767px) {
  .experience__content {
    display: block;
  }
}

.experience__label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 21.6%;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .experience__label {
    width: 100%;
    padding: 20px 0 0 0;
  }
}

.experience__body {
  width: 78.4%;
}
@media (max-width: 767px) {
  .experience__body {
    width: 100%;
    padding: 0 0 20px 0;
    margin-top: 10px;
  }
  .experience__body:not(:last-of-type) {
    border-bottom: 1px solid #D5D5D5;
  }
}

.experience__heading {
  display: inline;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.76;
  background: linear-gradient(transparent 60%, #ffe733 40%);
}

.experience__list {
  margin-top: 10px;
}
.experience__list li {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.76;
  position: relative;
  padding-left: 2em;
}
.experience__list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  -webkit-mask-image: url(../img/icon_check.webp);
          mask-image: url(../img/icon_check.webp);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  width: 1.1em;
  aspect-ratio: 40/32;
}
.experience__list li.note {
  padding-left: 0;
  margin-top: 0.5em;
}
.experience__list li.note::before {
  display: none;
}
@media (max-width: 767px) {
  .experience__list li {
    font-size: 1.4rem;
  }
}

/*------------------------------
staff
------------------------------*/
.staff {
  background: #006bbb;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .staff {
    padding: 40px 0;
  }
}

.staff__list {
  margin-top: 50px;
}

.staff__item {
  box-shadow: 0 0 8px 0 rgba(0, 107, 187, 0.2);
  background: #fff;
  border-radius: 20px;
  padding: 5% 6%;
}
.staff__item:nth-child(n+2) {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .staff__item {
    padding: 20px;
  }
}

.staff__wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .staff__wrapper {
    display: block;
  }
}

.staff__image {
  width: 31.4%;
}
@media (max-width: 767px) {
  .staff__image {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
}

.staff__body {
  width: 62%;
}
.staff__body .staff__message {
  margin-top: 1em;
}
@media (max-width: 767px) {
  .staff__body {
    width: 100%;
    margin-top: 20px;
  }
}

.staff__heading {
  font-size: min(2.6rem, 2.6041666667vw);
  font-weight: 700;
  line-height: 1.27;
  color: #006bbb;
}
@media (max-width: 767px) {
  .staff__heading {
    font-size: 1.8rem;
  }
}

.staff__meta {
  font-size: min(1.7rem, 1.953125vw);
  font-weight: 700;
  line-height: 1.75;
  margin-top: 2.5%;
}
.staff__meta strong {
  font-size: min(3.4rem, 3.6458333333vw);
}
@media (max-width: 767px) {
  .staff__meta {
    font-size: 1.2rem;
  }
  .staff__meta strong {
    font-size: 2rem;
  }
}

.staff__courses {
  margin-top: 0.5%;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .staff__courses {
    display: block;
  }
}

.staff__courses-label {
  font-size: min(1.7rem, 1.8229166667vw);
  font-weight: 400;
  line-height: 1.76;
  margin-right: 0.4em;
}
@media (max-width: 767px) {
  .staff__courses-label {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
}

.staff__course {
  display: inline-block;
  font-size: min(1.5rem, 1.5625vw);
  font-weight: 700;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 7px 13px;
  margin-right: 8px;
}
@media (max-width: 767px) {
  .staff__course {
    font-size: 1.2rem;
    margin-bottom: 0.5em;
  }
}

.staff__course--green {
  background: #159393;
}

.staff__course--skyblue {
  background: #4185cf;
}

.staff__course--blue {
  background: #405ba4;
}

.staff__profile {
  position: relative;
  border: 1px solid #ccc;
  padding: 1.4em;
  margin-top: 3em;
  font-size: 1.4rem;
  line-height: 1.79;
  font-weight: 400;
}
@media (max-width: 767px) {
  .staff__profile {
    padding: 15px;
    margin-top: 30px;
  }
}

.staff__profile-label {
  display: inline-block;
  background: #fff;
  padding: 0 10px;
  position: absolute;
  top: 0;
  left: 1em;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 2.8px;
  line-height: 1.2;
  color: #999;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 767px) {
  .staff__profile-label {
    left: 5px;
  }
}

.staff__message {
  margin-top: 2.5em;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.76;
}
@media (max-width: 767px) {
  .staff__message {
    margin-top: 30px;
    font-size: 1.4rem;
  }
}

/*------------------------------
course
------------------------------*/
.course {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .course {
    padding: 40px 0;
  }
}

.course__container {
  margin-top: 45px;
}

.course__tab-list {
  display: flex;
  justify-content: center;
}

.course__tab-item {
  width: 240px;
  padding: 22px 0 7px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.36;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  margin-bottom: 4px;
  cursor: pointer;
}
.course__tab-item strong {
  display: block;
  font-size: 2.4rem;
}
.course__tab-item:nth-child(n+2) {
  margin-left: 8px;
}
.course__tab-item.active {
  margin-bottom: 0;
  border-radius: 4px 4px 0 0;
}
@media (max-width: 767px) {
  .course__tab-item {
    font-size: 1.2rem;
  }
  .course__tab-item strong {
    font-size: 1.8rem;
  }
}

.course__tab-item--green {
  background: #159393;
}

.course__tab-item--skyblue {
  background: #4185cf;
}

.course__tab-item--blue {
  background: #405ba4;
}

.course__content {
  display: none;
  padding: 64px 0;
}
.course__content.active {
  display: block;
}

.course__content01 {
  background: #159393;
}
.course__content01 .course__title {
  color: #159393;
}
.course__content01 .course__label {
  color: #159393;
}
.course__content01 .course__item-title {
  color: #159393;
}

.course__content02 {
  background: #4185cf;
}
.course__content02 .course__title {
  color: #4185cf;
}
.course__content02 .course__label {
  color: #4185cf;
}
.course__content02 .course__item-title {
  color: #4185cf;
}

.course__content03 {
  background: #405ba4;
}
.course__content03 .course__title {
  color: #405ba4;
}
.course__content03 .course__label {
  color: #405ba4;
}
.course__content03 .course__item-title {
  color: #405ba4;
}

.course__box {
  background: #fff;
  border-radius: 10px;
  padding: 5% 6% 2%;
}
.course__box:nth-child(n+2) {
  margin-top: 40px;
}

.course__title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 767px) {
  .course__title {
    font-size: 2rem;
  }
}

.course__info {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.7rem;
}
@media (max-width: 767px) {
  .course__info {
    display: block;
    margin-top: 30px;
  }
}

.course__label,
.course__body {
  font-size: 1.7rem;
  line-height: 1.76;
  border-top: 1px solid #D4D4D4;
}
@media (min-width: 768px) {
  .course__label,
.course__body {
    padding: 1.5em 0;
  }
}
@media (max-width: 767px) {
  .course__label,
.course__body {
    font-size: 1.4rem;
  }
}

.course__label {
  width: 28%;
  font-weight: 700;
}
@media (min-width: 768px) {
  .course__label {
    padding-left: 0.3em;
  }
}
@media (max-width: 767px) {
  .course__label {
    width: 100%;
    padding: 2em 0 0;
  }
}

.course__body {
  width: 72%;
  font-weight: 400;
}
.course__body strong {
  display: block;
  font-weight: 700;
}
.course__body a {
  color: #3366ff;
}
.course__body table {
  border-top: 1px solid #D4D4D4;
  border-left: 1px solid #D4D4D4;
  width: 100%;
  margin: 12px 0 16px;
  font-size: 1.5rem;
}
.course__body table thead th {
  background-color: #f1f1f1;
  text-align: center;
  font-weight: bold;
}
.course__body table thead td {
  background-color: #f1f1f1;
  text-align: center;
  font-weight: bold;
}
.course__body table tr {
  border-right: 1px solid #D4D4D4;
  border-bottom: 1px solid #D4D4D4;
}
.course__body table th {
  border-right: 1px solid #D4D4D4;
  padding: 8px 12px;
  width: 64%;
}
.course__body table td {
  padding: 8px;
}


@media (max-width: 767px) {
  .course__body {
    width: 100%;
    border-top: none;
    padding: 0 0 2em;
    margin-top: 10px;
  }
    .course__body table {
  font-size: 1.4rem;
}
.course__body table th {
  width: 50%;
}
}

.course__schedule {
  display: flex;
  flex-wrap: wrap;
}
.course__schedule dt {
  width: 123px;
}
.course__schedule dd {
  width: calc(100% - 123px);
}
@media (max-width: 767px) {
  .course__schedule dt {
    width: 95px;
  }
  .course__schedule dd {
    width: calc(100% - 95px);
  }
}

.course__items {
  margin-top: 50px;
}
.course__items li {
  border-top: 1px solid #D4D4D4;
  padding: 35px 0;
}


.course__item-title {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.76;
}
.course__item-title.large {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .course__item-title {
    font-size: 1.4rem;
  }
  .course__item-title.large {
    font-size: 1.65rem;
  }
}

.course__item-content {
  margin-top: 23px;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.76;
}
.course__item-content strong {
  display: block;
  font-weight: 700;
}
@media (max-width: 767px) {
  .course__item-content {
    font-size: 1.4rem;
  }
}

.course__button {
  margin-top: 80px;
  text-align: center;
}
.course__button a {
  display: inline-block;
  width: 420px;
  max-width: 100%;
  background: #ee7755;
  border-radius: 40px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  padding: 1.2em 0;
  box-shadow: 0px 2px 8px 0 rgba(51, 51, 51, 0.2), inset 0px -3px 0 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .course__button {
    width: 90%;
    margin: 40px auto 0;
  }
}

/*------------------------------
faq
------------------------------*/
.faq {
  padding: 80px 0;
  background: #e1edf7;
}
@media (max-width: 767px) {
  .faq {
    padding: 40px 0;
  }
}

.faq__list {
  margin-top: 40px;
}

.faq__item {
  border: 2px solid #006bbb;
  border-radius: 16px;
  padding: 3%;
  padding-bottom: 2%;
  display: flex;
  align-items: flex-start;
  background: #fff;
}
.faq__item:nth-child(n+2) {
  margin-top: 24px;
}
@media (max-width: 767px) {
  .faq__item {
    display: block;
    padding: 15px;
  }
}

.faq__label {
  font-family: "Roboto", sans-serif;
  width: 100px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 2.4px;
  color: #006bbb;
  padding-left: 0.8em;
  padding-top: 0.7em;
}
@media (max-width: 767px) {
  .faq__label {
    width: 100%;
    padding: 0;
  }
}

.faq__body {
  width: calc(100% - 100px);
}
@media (max-width: 767px) {
  .faq__body {
    width: 100%;
    margin-top: 20px;
  }
}

.faq__q {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #006bbb;
}
@media (max-width: 767px) {
  .faq__q {
    font-size: 1.6rem;
  }
}

.faq__a {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.76;
  margin-top: 0.7em;
}
@media (max-width: 767px) {
  .faq__a {
    font-size: 1.4rem;
    margin-top: 10px;
  }
}

/*------------------------------
company
------------------------------*/
.company {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .company {
    padding-top: 40px;
  }
}

.cpmpany__info {
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #ccc;
}
.cpmpany__info dt, .cpmpany__info dd {
  font-size: min(1.6rem, 1.8229166667vw);
  font-weight: 400;
  line-height: 1.5;
  padding: 1.4em 2.1em;
}
.cpmpany__info dt {
  width: 240px;
  background: #F1F1F1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cpmpany__info dd {
  width: calc(100% - 240px);
}
@media (min-width: 768px) {
  .cpmpany__info dt:not(:first-of-type), .cpmpany__info dd:not(:first-of-type) {
    border-top: 1px solid #ccc;
  }
}
@media (max-width: 767px) {
  .cpmpany__info {
    display: block;
  }
  .cpmpany__info dt, .cpmpany__info dd {
    width: 100%;
    font-size: 1.4rem;
    padding: 1em;
  }
  .cpmpany__info dt:not(:first-of-type) {
    border-top: 1px solid #ccc;
  }
  .cpmpany__info dd {
    border-top: 1px solid #ccc;
  }
}

/*------------------------------
footer
------------------------------*/
footer {
    padding: 48px 0 96px;
}
.footer__copyright {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.7px;
}
.bottom_link {
position: fixed;
bottom: 0px;
display: none;
width: 100%;
z-index: 9999;
}
.bottom_link .zoom_btn {
width: 50%;
}
.bottom_link .zoom_btn a {
color: #333;
font-size: 1.6rem;
font-weight: bold;
background-color: #ffe600;
display: block;
line-height: 56px;
text-align: center;
}
.bottom_link .contact_btn {
width: 50%;
}
.bottom_link .contact_btn a {
color: #fff;
font-size: 1.6rem;
font-weight: bold;
background-color: #006bbb;
display: block;
line-height: 56px;
text-align: center;
}


@media (max-width: 767px) {
.bottom_link {
display: flex;
}
}

.skillup {
position: fixed;
bottom: 16px;
right: 16px;
z-index: 9999;
}
.skillup .banner {
width: 300px;
}
@media (max-width: 767px) {
.skillup {
display: none;
}
}
/*# sourceMappingURL=style.css.map */

