@charset "utf-8";

html,
body {
  background: #fff none;
  color: #000000;
  font-family:
    "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic,
    "メイリオ", Meiryo, sans-serif;
  /*font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;*/
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
}

html {
  font-size: 62.5%;
  scroll-padding-top: 100px;
}

/*** スマホ 320px ~ 767px***/
@media screen and (min-width: 768px) and (max-width: 1200px) {
  html {
    font-size: 0.833vw;
  }
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
  html {
    font-size: 62.5%;
  }
}

body {
  -webkit-font-smoothing: antialiased;
  overflow: auto;
}

* {
  box-sizing: border-box;
}
a:hover img {
  opacity: 1;
  transition: none;
}

a,
a:hover {
  opacity: 1;
  transition: none;
}

a[href^="tel:"] {
  pointer-events: none;
}

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

.cl-over {
  clear: both;
  overflow: hidden;
}

.fl-left {
  float: left;
}
.fl-right {
  float: right;
}

.di-fl {
  display: flex;
}

.ju-sb {
  justify-content: space-between;
}
.ju-cn {
  justify-content: center;
}
.ju-fe {
  justify-content: flex-end;
}

.inner {
  box-sizing: border-box;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}

.inner-930 {
  box-sizing: border-box;
  max-width: 930px;
  width: 90%;
  margin: 0 auto;
}

.inner-950 {
  box-sizing: border-box;
  max-width: 950px;
  width: 90%;
  margin: 0 auto;
}

.font-mi {
  font-family:
    "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN",
    "Hiragino Mincho ProN", sans-serif;
}
.italic {
  font-style: italic;
}
.font-w8 {
  font-family: "Hiragino Sans";
  font-weight: 800;
}

.zen {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 900;
}
.pop {
  font-family: "Poppins", sans-serif;
}
.lato {
  font-family: "Lato", sans-serif;
}
.rob {
  font-family: "Roboto Condensed";
}

.mb0 {
  margin-bottom: 0px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mb60 {
  margin-bottom: 60px !important;
}
.mb70 {
  margin-bottom: 70px !important;
}
.mb80 {
  margin-bottom: 80px !important;
}
.mb90 {
  margin-bottom: 90px !important;
}
.mb100 {
  margin-bottom: 100px !important;
}
.link-btn a {
  display: flex;
  width: fit-content;
  border-radius: 10px;
  background: #ff7c00;
  color: #fff;
  font-weight: bold;
  align-items: center;
  gap: 5px;
  padding: 0.7rem 2rem;
  font-size: 1.6rem;
  margin-top: 2rem;
  transition: unset;
}
.link-btn > a:hover {
  background: #eb4100;
  transition: unset;
}

section {
  margin: 10rem auto;
  box-sizing: border-box;
}
/*-----------------------------

sp-nav

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

#nav-toggle {
  position: fixed;
  top: 25px;
  right: 25px;
  height: 32px;
  cursor: pointer;
}
#nav-toggle > div {
  position: relative;
  width: 36px;
}
#nav-toggle span {
  width: 100%;
  height: 1px;
  left: 0;
  display: block;
  background: #333;
  position: absolute;
  transition:
    transform 0.6s ease-in-out,
    top 0.5s ease;
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 14px;
}
#nav-toggle span:nth-child(3) {
  top: 28px;
}
.open #nav-toggle span {
  background: #fff;
}
.open #nav-toggle span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 15px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 15px;
  transform: rotate(-45deg);
}
#nav-toggle {
  z-index: 1000;
}
#container {
  z-index: 900;
}
#gloval-nav {
  background: #000;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  text-align: center;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 29px;
  opacity: 0;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}
#gloval-nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 10px 0;
  transition: color 0.6s ease;
}
#gloval-nav a:hover {
  color: #666;
}
#gloval-nav ul {
  list-style: none;
}
#gloval-nav ul li {
  opacity: 0;
  transform: translateX(200px);
  transition:
    transform 0.6s ease,
    opacity 0.2s ease;
}
.open {
  overflow: hidden;
}
.open #gloval-nav {
  visibility: visible;
  opacity: 1;
}
.open #gloval-nav li {
  opacity: 1;
  transform: translateX(0);
  transition:
    transform 1s ease,
    opacity 0.9s ease;
}

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

header skilltraining-header 

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

.skilltraining-header header {
  padding: 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

.skilltraining-header header.scroll {
  background-color: rgba(255, 255, 255, 0.8);
}

.skilltraining-header header .di-fl {
  align-items: center;
}

.countermeasure-menu {
  position: fixed;
  right: 2%;
  top: 2%;
  width: 200px;
}

.countermeasure-menu ul > li.parent {
  border: solid #ff9600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.6rem;
  font-weight: bold;
  background: #fff;
}

.countermeasure-menu ul ul {
  display: none;
  position: absolute;
  background: #fff;
  padding: 0;
  margin: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  z-index: 10;
  top: 37px;
}
.countermeasure-menu ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}
.countermeasure-menu li.parent {
  position: relative;
  display: block;
}
.countermeasure-menu li.parent a {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 0.5rem 0;
  gap: 6px;
  justify-content: center;
  align-items: center;
}
.countermeasure-menu li.parent:hover > ul,
.countermeasure-menu li.parent:focus-within > ul {
  display: block;
}
.countermeasure-menu li.child {
  white-space: nowrap;
  padding: 0;
  margin: 0;
}
.countermeasure-menu li.child a {
  display: block;
  width: 200px;
  padding: 0.6rem 0;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
  background: #ff9600;
  font-weight: bold;
}
.countermeasure-menu li.child + li a {
  border-top: solid #fff 1px;
}
.countermeasure-menu li.child a:hover {
  background: #fff;
  color: #ff9600;
}
.skilltraining-other .countermeasure-menu .parent a:hover {
  background: #ff9600;
  color: #000;
}

.countermeasure-menu ul li a img {
  width: 23px;
}
.close-sp {
  display: none;
}
/*-------------------------inline----

main

------------------------------*/
#main-fv {
  background: url("../images/page/skilltraining-2025/top/main-bg-2.webp")
    no-repeat center;
  background-size: cover;
  padding: 1rem 2rem 0rem;
  text-align: center;
  margin: 0rem 3rem 7rem;
  text-align: center;
}
.skilltraining-2025 #main-fv {
  background: url("../images/page/skilltraining-2025/top/main-bg.webp")
    no-repeat center;
  background-size: 100%;
}

#main-fv .main-txt {
  margin-bottom: 2rem;
}
#main-fv .main-txt01 {
  margin: 2rem 0 1rem;
}
#main-fv .main-txt01 img {
  width: 575px;
}
#main-fv .main-img {
  position: relative;
  z-index: 10;
  margin-top: 4rem;
}

.skilltraining-other #main-fv {
  padding: 1rem 2rem 4rem;
  margin: 0rem 3rem 2rem;
  background-size: 100%;
}

.skilltraining-other .main-img > img:nth-child(1) {
  width: 645px;
}

.skilltraining-other #main-fv .main-img {
  margin-top: 2rem;
}

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

top-contact

------------------------------*/
.main-top {
  text-align: center;
}

#main-contents > .top-contact {
  padding: 7rem 0;
}
.top-contact > .inner {
  width: 70%;
  margin: auto;
  position: relative;
}

.top-contact .di-fl {
  align-items: baseline;
}
.top-contact {
  position: relative;
}
.reservation_confirmation {
  position: relative;
  z-index: 1;
}
.top-contact .tel,
.top-contact .tel02 {
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}
.top-contact .reservation_confirmation img,
.top-contact .tel img,
.top-contact .tel02 img {
  width: 61%;
  margin: 1rem auto;
  display: block;
}

/* 要素 | https://h-a.ac.jp/skill_training_course */

.kouza-ttl {
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.kouza-ttl > span:nth-child(1) {
  color: #ffdc00;
  font-size: 3.5rem;
  display: block;
}

.reservation-btn {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.skilltraining-other #main-contents > .top-contact {
  padding: 5rem 0;
}

.skilltraining-other .reservation-btn {
  margin: auto;
  position: relative;
  z-index: 1;
  width: 550px;
}
.page-template-page-skilltraining-2025_plastic .reservation-btn {
  width: 700px;
}
.page-template-page-skilltraining-2025_welding .reservation-btn {
  width: 475px;
}
.page-template-page-skilltraining-2025_inspection .reservation-btn {
  width: 385px;
}

.page-template-page-skilltraining-2025_plastic .icon-01 {
  width: 100% !important;
}

.top-contact .text-01 {
  width: 57%;
  margin: auto;
  display: block;
}
.page-id-3207 .reservation-btn a {
  width: 30%;
}

.icon-01 {
  left: 50%;
  transform: translate(-50%);
  position: absolute;
  width: 85%;
  max-width: 985px;
}

.skilltraining-other .icon-01 {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  width: 85%;
  max-width: 985px;
}

footer .icon-01 {
  left: 50%;
  top: unset !important;
  transform: translate(-50%) !important;
  position: absolute;
  width: 85%;
  max-width: 985px;
}

.features-section .tel {
  display: none;
}
#main-contents > .top-contact .tel02,
.top-lesson .tel02 {
  display: none;
}
.features-section .tel02 .features-section .top-contact {
  padding: 0;
}
.top-features {
  margin-top: 7rem;
}

.top-features .main-ttl {
  text-align: center;
  margin-bottom: 3rem;
}

.top-features .main-ttl > p:nth-child(2) > span {
  color: #c30d23;
}

.top-features .main-ttl > p:nth-child(2) {
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 3rem;
}

.features-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

div.features-block {
  background: #ffda2a;
  padding: 2rem 1.5rem;
  border-radius: 20px;
}

div.features-block .catch {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

div.features-block > p:nth-child(1) {
  background: #000;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  width: fit-content;
  padding: 10px 1.5rem;
  margin: 0px auto 2.5rem;
  border-radius: 10px;
}

div.features-block:nth-child(1) .features-img img:nth-child(1) {
  width: 100%;
  margin: 0 auto;
  display: block;
}

div.features-block:nth-child(2) .features-img img:nth-child(1) {
  width: 83%;
  margin: 0 auto;
  display: block;
}

div.features-block:nth-child(3) .features-img img:nth-child(1) {
  width: 85%;
  margin: 0 auto;
  display: block;
}

div.features-block .features-img {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 280px;
}

div.features-block > p:nth-child(4) {
  font-size: 1.4rem;
  margin-top: 2rem;
  font-weight: bold;
}

.top-course {
  padding: 10rem 0;
  background: #f7f7f7;
}

.course-ttl-area h2 {
  font-size: 3.4rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.course-ttl-area h2 > span:nth-child(1) {
  background: #ff3900;
  color: #fff;
  padding: 1.3rem 2rem;
  border-radius: 10px;
}

.course-ttl-area {
  text-align: center;
  margin: auto;
  position: relative;
  margin-bottom: 5rem;
}
.course-ttl-area > img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}

.course-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.course-list > li:not(:last-child) {
  background: #ffffed;
  border: solid #3743ad 5px;
  padding: 3rem 2rem;
  border-radius: 20px;
}
.course-list > li:hover:not(:last-child) {
  background: #ffffc3;
}
.course-list > li .course-list-inner p:nth-child(1) {
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.course-list > li .course-list-inner img:nth-child(2) {
  margin-bottom: 2rem;
}

.course-list > li .course-list-inner p:nth-child(4) {
  background: #000;
  color: #fff;
  width: fit-content;
  font-size: 1.7rem;
  padding: 5px 2rem;
  border-radius: 10px;
  margin: 2rem 0 1.5rem;
  font-weight: bold;
}

.course-list > li .course-list-inner ul li {
  font-size: 1.4rem;
  font-weight: bold;
}
.course-list > li:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
}
.course-list > li:last-child img {
  width: 80%;
}

.top-movie .main-ttl-area > p:nth-child(2) {
  font-size: 1.6rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 3rem 0;
  letter-spacing: 0.6px;
}

.top-movie .main-ttl-area > p:nth-child(2) > span:nth-child(1) {
  font-size: 1.9rem;
  font-weight: bold;
  color: #fff;
  border:;
  background: #ff3900;
  padding: 10px 1rem;
  border-radius: 10px;
}

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

contents

------------------------------*/
#main-contents {
}

.top-about {
  margin: 10rem 0;
}
.top-about p {
  font-size: 1.4rem;
  line-height: 2;
}
.top-about-info h2 {
  margin-top: -100px;
}
.top-about-info {
  background: #ffffed;
  border: 6px solid #3743ad;
  padding: 5rem 4rem 5rem;
  margin-bottom: 2rem;
}

.top-about-info p {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 600;
  padding-top: 3rem;
  margin-bottom: 2rem;
}

.top-about-info .btn a {
  display: inline-block;
  font-size: 1.6rem;
  font-family: "Hiragino Sans W8" sans-serif;
  src: local(HiraginoSans-W8);
  font-weight: 800;
  background: #fff;
  border: 2px solid #ff9600;
  border-radius: 10px;
  height: 55px;
  line-height: 55px;
  padding: 0 5rem 0 3rem;
  position: relative;
}

.top-about-info .btn a:hover {
  background: #ffc200;
}
.top-about-info .btn a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 15%;
  right: 3%;
  background: url("../img/page/top/arrow.webp") no-repeat;
  background-size: contain;
  width: 35px;
  height: 35px;
  transition: all 0.3s;
}

.target-area {
  padding: 5rem 0;
  background: url("../img/page/top/bg_01.webp") no-repeat left center;
  background-size: 40%;
  margin-bottom: 2rem;
}
.target-area .target-info h2 {
  padding-top: 10rem;
}

ul.target-list {
  margin-bottom: 2rem;
}
ul.target-list li {
  width: 31%;
  max-width: 31%;
  background: #ffffed;
  border: 8px solid #3743ad;
  padding: 3.9rem 3rem;
  text-align: center;
}

ul.target-list li h3 {
  font-size: 1.5rem;
  height: 47px;
  line-height: 47px;
  font-weight: bold;
  background: #3c78c8;
  color: #fff;
  border-radius: 10px;
  margin-bottom: 1rem;
  letter-spacing: 0;
}

ul.target-list li p {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2;
}

.features-section {
  background: #edefe7;
  position: relative;
  padding: 10rem 0 10rem;
  background-size: 100% 100%;
  margin: 0;
}

.features-section .main-ttl {
  text-align: center;
  margin: 0px auto 2rem;
}
.features-section .main-ttl h2 {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  margin: auto;
  text-align: center;
}
.ttl_01 {
  width: 183px;
}

.features-catch {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.features-catch .text-01 {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.8;
}

.features-catch .target-audience {
  margin: 3rem 0 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 2.7rem;
  font-weight: bold;
  letter-spacing: 3px;
}

.features-catch .target-audience > span:nth-child(1) {
  background: #1f2160;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  padding: 10px 2rem;
  border-radius: 10px;
  letter-spacing: 1px;
}

.schedule-btn {
  background: #fff;
  font-size: 1.4rem;
  padding: 1rem;
  font-weight: bold;
  width: fit-content;
  padding: 1.2rem 4rem;
}

.features-section .reason-ttl-area {
  width: 90%;
  margin: 0 auto;
  position: relative;
}
.features-section h2.reason-ttl {
  position: relative;
  z-index: 10;
  margin-bottom: 8rem;
}
.features-section .reason-img {
  position: absolute;
  top: -80px;
  right: 0;
}

.features-section .point-ttl {
  width: 85%;
  margin: 0 auto;
  padding: 0 0 5rem;
}
.features-section ol.features-list {
}

.features-section ol.features-list li {
  background: url("../images/page/skilltraining-2025/common/features-bg.webp")
    no-repeat center top 90px #edefe7;
  background-size: cover;
  padding: 3rem;
  position: relative;
  padding-top: 0;
  margin-top: 5rem;
}
.features-list > p {
  font-size: 1.4rem;
  margin-top: 2rem;
  font-weight: bold;
  padding-left: 5rem;
}
.features-section ol.features-list li + li {
  margin-top: 5rem;
}
.features-section ol.features-list li .features-list-inner {
  background: #fff;
  padding: 5rem;
}

.features-section ol.features-list li .features-list-inner .di-fl {
  align-items: center;
}
.features-section ol.features-list li .features-info {
  width: 460px;
  max-width: 55%;
}

.features-section ol.features-list li .features-info .features {
  margin-bottom: 3rem;
}
.features-section ol.features-list li .features-info dl {
  align-items: center;
  margin-bottom: 1rem;
}

.features-section ol.features-list li .features-info dl dt {
  width: 30%;
  max-width: 30%;
  padding-right: 2rem;
}

.features-section ol.features-list li .features-info dl dd {
  width: 70%;
  max-width: 70%;
}
.features-section ol.features-list li .features-info dl dd h3 {
  font-family: "Hiragino Sans W9" sans-serif;
  src: local(HiraginoSans-W9);
  font-weight: 900;
  font-size: 2.3rem;
}

.features-section ol.features-list li .features-info p {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: bold;
  color: #000;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.features-section ol.features-list li .features-info p span {
  background: #3c78c8;
  color: #fff;
  padding: 0rem 2rem;
}

.features-section ol.features-list li .features-img {
  width: 460px;
  max-width: 45%;
}

.features-section .features-contact {
}
.features-section .features-contact .tel {
  padding-right: 5rem;
}

.top-lesson {
}

.lesson-area {
  align-items: center;
  width: 90%;
  margin: 0 auto 3rem;
}
.lesson-area .lesson-ttl {
  width: 58%;
  max-width: 58%;
}

.lesson-area .lesson-ttl h2 {
  margin-bottom: 3rem;
}
.lesson-area .lesson-ttl p {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  line-height: 2;
}

.lesson-area .lesson-img {
  width: 40%;
  max-width: 40%;
}

.lesson-area01,
.lesson-area02 {
  margin-bottom: 2rem;
}
.lesson-area03 {
  margin-bottom: 8rem;
}

.lesson-area01 ul.lesson-list li {
  width: 49%;
  max-width: 49%;
}

.lesson-list .list {
  background: #ffffed;
  border: 8px solid #3743ad;
  padding: 3.9rem 4rem 5rem;
  text-align: center;
}
.lesson-area03 .lesson-list .list {
  padding: 3.9rem 7rem 5rem;
}
.lesson-area03.lesson-area04 .lesson-list .list {
  padding: 3.9rem 3rem 5rem;
}

ul.lesson-list li dl {
  align-items: center;
}

ul.lesson-list li dl dt {
  width: 20%;
  max-width: 20%;
}

ul.lesson-list li dl dd {
  width: 70%;
  max-width: 70%;
  font-size: 2.4rem;
  font-weight: bold;
}

.lesson-area01 ul.lesson-list li:last-child dl dt {
  width: 21%;
  max-width: 21%;
  padding: 0 2rem 0 1rem;
}

.lesson-area01 ul.lesson-list li:last-child dl dd {
  width: 78%;
  max-width: 78%;
  text-align: right;
}

.lesson-area02 ul.lesson-list li dl {
  align-items: flex-start;
}
.lesson-area02 ul.lesson-list li dl dt {
  width: 8%;
  max-width: 8%;
}

.lesson-area02 ul.lesson-list li dl dd {
  width: 90%;
  max-width: 90%;
  text-align: left;
  padding-left: 2rem;
}

.lesson-area02 ul.lesson-list li dl dd ol {
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.lesson-area02 ul.lesson-list li dl dd ol li {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.lesson-area02 ul.lesson-list li dl dd p {
  font-size: 1.4rem;
  font-weight: normal;
}

.lesson-area03 .step-area {
  border-bottom: solid 1px;
}
.lesson-area03.lesson-area04 .step-area {
  border-bottom: none;
}
.lesson-area03.lesson-area04 .step-info {
  border-bottom: solid 1px;
}
.lesson-area03 .step {
}
.lesson-list li h3 {
  padding: 1rem;
  background: #1f2160;
  color: #fff;
  border-radius: 15px;
  letter-spacing: 0;
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: bold;
  width: fit-content;
  margin: auto;
  margin-bottom: auto;
  justify-content: center;
  margin-bottom: 3rem;
  padding: 1.5rem 4rem;
}

ul.lesson-list li h3 span {
  background: #fff;
  font-size: 2rem;
  color: #3c78c8;
  padding: 3px 1rem;
}

.lesson-area03 .step-area + .step-area {
  margin-top: 3rem;
  position: relative;
}

.konnpuri-to {
  background: #ffcc00;
  color: #000;
  font-size: 1.8rem;
  position: absolute;
  padding: 2px 2rem;
  border-radius: 10px;
  bottom: -15px;
}

.lesson-area03 .step-area .step-no {
  width: 117px;
  height: 34px;
  line-height: 34px;
  max-width: 20%;
  padding: 0 2rem;
  color: #fff;
  background: #3c78c8;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
}

.lesson-area03 .step-area .step-info {
  width: 83%;
  max-width: 83%;
  text-align: left;
  padding: 0 0 3rem !important;
}

.lesson-area03 .step-area .step-info p.step-txt {
  font-size: 2.4rem;
  font-family: "Hiragino Sans W8" sans-serif;
  src: local(HiraginoSans-W8);
  font-weight: 800;
  line-height: 2;
  margin-top: -6px;
}

.lesson-area03 .step-area .step-info p.step-txt2 {
  font-size: 1.3rem;
  font-weight: bold;
  padding-top: 1rem;
  font-size: 1.6rem;
  display: block;
  align-items: center;
  gap: 2rem;
  flex-direction: column;
}

.lesson-area03 .step-area .step-info p.step-txt2 + p.step-txt2 {
  padding-top: 0;
  text-indent: -1em;
  padding-left: 1em;
}
.lesson-area03 .step-area .step-info p.step-txt2 span:nth-child(1) {
  border: solid 1px;
  padding: 3px 2rem;
}

.lesson-area03 .step-area .step-info .step-contact {
  padding: 2rem 0;
  margin: 2rem 0 0;
}

.lesson-area03 .step-area .step-info .step-contact p {
  font-size: 1.8rem;
  font-weight: bold;
  width: 261px;
  height: 48px;
  line-height: 48px;
  background: #ffcc00;
  text-align: center;
  border-radius: 10px;
}

.lesson-area03 div.step-area:nth-child(5) .step-info p:nth-child(3) {
  margin-top: 1rem;
}

div.step-area:nth-child(3) .step-info div:has(.link-btn) {
  gap: 1rem;
  display: flex;
}

.lesson-area03 .list > p:nth-child(6) {
  text-align: left;
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 3rem;
}

.lesson-area03.lesson-area04 h3 {
  width: 45%;
  font-size: 3rem;
  margin-top: 5rem;
}

.catch_text {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 5rem;
}
.catch_text span.box {
  display: block;
  font-size: 2.4rem;
  background: #fff;
  border: solid 1px;
  width: fit-content;
  margin: auto;
  padding: 0 3rem;
}
.catch_text span.color {
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 50%,
    #ffda2a 50%
  );
}
div.price-box {
  margin: 7rem 0;
}
div.price-box .table-ttl {
  display: flex;
  align-items: center;
  font-size: 2.2rem;
  margin: 0rem auto 2rem;
  padding: 8px 2em;
  font-weight: bold;
  width: fit-content;
}
div.price-box .table-ttl:not(:first-of-type) {
  margin-top: 6rem;
}
div.price-box .table-ttl::before,
div.price-box .table-ttl::after {
  content: "　";
  flex-grow: 2; /* 余白を分け与える */
  height: 1px;
  background: #1f2160;
  width: 60px;
}
div.price-box .table-ttl::before {
  margin-right: 30px;
}

div.price-box .table-ttl::after {
  margin-left: 30px;
}
div.price-box .text {
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.5;
  margin-top: 2rem;
}

div.price-box .attention {
  text-align: left;
  margin-top: 5px;
  font-size: 1.4rem;
}

.price-box a {
  width: 60%;
  margin: 5rem auto 0;
  display: block;
}

.price-box table td {
  width: 145px;
}
.price-box table tr td:last-of-type {
  width: 224px;
}

.required-area {
  color: #fff;
  margin-bottom: 10rem;
}
.required-area h3.required-ttl {
  font-size: 2.1rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 3rem;
}

.required-area p {
  font-size: 1.2rem;
  line-height: 2;
}

.required-area p + p {
  margin-top: 3rem;
}

.lesson-area04 {
  margin-bottom: 10rem;
}
.lesson-area04 {
  background: #232e84;
  padding: 5rem 3rem 3rem;
  border-radius: 10px;
  position: relative;
}

.lesson-area04 .clip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  z-index: 10;
}

.lesson-area04 .lesson-area04-info {
  background: #ffffed;
  padding: 8rem 4rem 3rem;
  border-radius: 10px;
  position: relative;
}

.lesson-area04 .lesson-area04-img {
  width: 34%;
  position: absolute;
  top: 50px;
  right: 40px;
}

.lesson-area04-info ol {
  margin-bottom: 3rem;
}
.lesson-area04-info ol li {
  padding: 0.5rem 1.5rem 1.5rem;
  border-left: 1.5px solid #606060;
  border-bottom: 1.5px solid #606060;
}

.lesson-area04-info ol li + li {
  margin-top: 35px;
}
.lesson-area04-info ol li dl {
}

.lesson-area04-info ol li dl dt {
  font-size: 2.7rem;
  width: 33px;
  height: 33px;
  line-height: 33px;
  text-align: center;
  color: #fff;
  background: #3c78c8;
}

.lesson-area04-info ol li dl dd {
  font-size: 2.2rem;
  font-weight: bold;
  padding-left: 1rem;
}

.lesson-area04-info p {
  font-size: 1.2rem;
  line-height: 2;
  margin-bottom: 5rem;
}

ul.lesson-list li p:nth-child(7) {
  font-size: 1.6rem;
  text-align: justify;
  margin-top: 2rem;
  font-weight: bold;
}

.left {
  text-align: left !important;
}
th.ttl_01 {
  width: 200px;
  width: 30%;
}
th.ttl_02 {
  width: 300px;
  width: 38%;
}
th.ttl_03 {
  width: 230px;
  width: 32%;
}

.faq-teacher-area {
  background: url("../img/page/top/bg_03.webp") no-repeat top;
  background-size: cover;
  padding: 10rem 0;
}

.faq-area {
  margin-bottom: 2rem;
}
.faq-area .faq-ttl {
  width: 40%;
  max-width: 40%;
  padding-top: 8rem;
}

.faq-area .faq-ttl h2 {
  margin-bottom: 2rem;
}
.faq-area .faq-ttl p {
  font-size: 2rem;
  font-family: "Hiragino Sans W8" sans-serif;
  src: local(HiraginoSans-W8);
  font-weight: 800;
  line-height: 2;
  padding-left: 2rem;
}

.faq-area .faq-img {
  width: 52%;
  max-width: 52%;
}

ul.faq-list {
}
ul.faq-list li {
  background: #ffffef;
  border: 20px solid #3c78c8;
  padding: 4rem;
}

ul.faq-list li + li {
  margin-top: 5rem;
}
ul.faq-list li .faq-inner {
  align-items: center;
}
ul.faq-list li .faq-inner .faq-icon {
  width: 20%;
  max-width: 20%;
  text-align: center;
}

ul.faq-list li .faq-inner .faq-info {
  width: 78%;
  max-width: 78%;
  padding-left: 3rem;
}

ul.faq-list li .faq-inner .faq-info dl {
  align-items: center;
}
ul.faq-list li .faq-inner .faq-info dl dt {
  width: 8%;
  max-width: 8%;
}

ul.faq-list li .faq-inner .faq-info dl dd {
  width: 90%;
  max-width: 90%;
  font-size: 1.6rem;
  font-weight: bold;
}

ul.faq-list li .faq-inner .faq-info dl.faq_q {
  border-bottom: 1.5px solid #000;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
ul.faq-list li .faq-inner .faq-info dl.faq_a {
  align-items: flex-start;
}
ul.faq-list li .faq-inner .faq-info dl dd p.faq_a_txt {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2;
}

ul.faq-list li .faq-inner .faq-info dl dd p.faq_a_txt01 {
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: normal;
  padding-top: 0.5rem;
}

.teacher-area {
  padding-top: 10rem;
  align-items: flex-end;
}
.teacher-area .teacher-info {
  width: 58%;
  max-width: 58%;
}

.teacher-area .teacher-info .teacher-name {
  padding: 3rem 0;
}

.teacher-area .teacher-info h3 {
  font-size: 1.9rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.teacher-area .teacher-info p {
  background: #faf9d2;
  padding: 2.4rem;
  font-size: 1.3rem;
  font-weight: bold;
}
.teacher-area .teacher-info p + p {
  margin-top: 1rem;
}

.teacher-area .teacher-img {
  width: 36%;
  max-width: 36%;
  text-align: right;
}

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

footer

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

footer {
  background: url("../images/page/skilltraining-2025/top/footer_bg.webp")
    no-repeat center;
  background-size: 100%;
  padding: 4rem 0 2rem;
  text-align: center;
  color: #fff;
}
footer .inner {
  padding-bottom: 20px;
}
footer h3 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 10rem;
}

footer h3 span {
  padding: 1.5rem 3rem;
  border-top: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
}

footer dl {
  align-items: center;
  margin-bottom: 5rem;
}

footer dl dt {
  font-size: 2.2rem;
  font-weight: 600;
  width: 155px;
  height: 44px;
  background: #fff;
  text-align: center;
  line-height: 44px;
  color: #3c78c8;
}

footer dl dd {
  font-size: 2.8rem;
  font-weight: 600;
  padding-left: 2rem;
}

footer .footer-contact {
  margin-bottom: 4rem;
}
footer .footer-logo {
  margin-bottom: 1rem;
  margin-top: 8rem;
}
footer .tel,
.lesson-contact .tel {
  padding-right: 5rem;
}

footer p {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2;
}
footer .top-contact {
  padding-top: 0;
}

.copyright {
  width: 100%;
  text-align: center;
  padding: 2rem 0;
  font-size: 1.2rem;
}

.lesson-list table {
  width: 100%;
  border-collapse: collapse;
  margin-left: 0px;
}
.lesson-list th,
.lesson-list td {
  border: 1px solid #251e1c;
  padding: 5px 5px;
  text-align: center;
  font-size: 1.4rem;
}
.lesson-list td {
  background: #fff;
}
.lesson-list th {
  background-color: #d2dbe8;
}
.lesson-list tr:first-child th:last-child {
  background: #3f6eb4;
  color: #fff;
}
.lesson-list .highlight td {
  background-color: #ffe082;
  font-weight: bold;
}

.lesson-list .blue-header th:not(:first-child) {
  background-color: #2196f3;
  color: white;
  font-size: 1.5rem;
  font-weight: normal;
}
.lesson-list .blue-header th:first-child {
  background-color: transparent;
  color: #000;
  font-size: 1.2rem;
  border-top: none;
  font-weight: bold;

  border-left: none;
}

.faq-teacher-area {
  display: none;
}

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

page-training-level

------------------------------*/
body:has(#training-area){
  background: #f7f7f7;

}

@font-face {
  font-family: "LINESeedJP";
  src:
    url("../images/page/training/font/LINESeedJP_OTF_Bd.woff") format("woff2"),
    url("../images/page/training/font/LINESeedJP_OTF_Eb.woff") format("woff2"),
    url("../images/page/training/font/LINESeedSans_W_XBd.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
.LINESeedJP {
  font-family: "LINESeedJP", sans-serif;
}

.main_ttl_area {
position: relative;
margin-top: 5rem;
min-height: 400px;
}

.main_ttl_area .inner {
height: 100%;
}

.main_ttl_area .main_ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 400px;
}

.main_ttl_area  h2.ttl {
  font-size: 3.4rem;
  margin: 1rem 0;
}



.main_ttl_area  p.ttl_sub {
  font-size: 1.9rem;
  font-weight: bold;
  background: #ffdd00;
  width: fit-content;
  padding: 4px 1rem;
}


.main_ttl_area  p.ttl_desc {
  font-size: 1.9rem;
  font-weight: bold;
}


.main_ttl_area  .main_ttl_img {
  position: absolute;
  min-width: 700px;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 50%;
}


.future-area{
  background: url("../images/page/training/bg.webp") no-repeat center top ;
  background-size: 100%;
  padding: 25rem 0 8rem;
  margin-top: -22rem;

}
.catch-area {
  padding: 5rem 0;

}
.catch-area .inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
}

 .catch-area .main-ttl2 h2 { 
  font-size: 3rem;
}
.catch-area .main-tt2l span.ttl_sub {
  font-size: 1.4rem;
}

.catch-area .main-ttl2 {
  margin-bottom: 3rem;
}

.catch-area .catch {
  font-size: 2.4rem;
  font-weight: bold;
  margin: 3rem 0;
}


.catch-area p.text {
  font-size: 1.6rem;
  line-height: 2;
}


.future-area .main-ttl {
  margin: auto;
  text-align: center;
}
.future-area .main-ttl > span {
  font-size: 2rem;
  position: relative;
  background: #fff;
  padding: 0.5rem 3rem;
  border-radius: 15px;
  border: solid 1px #1f2160;
  margin: auto;
  margin-bottom: 2rem;
  display: block;
  width: fit-content;

}
.future-area .main-ttl > span::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 2.2rem solid transparent;
  border-right: 2.2rem solid transparent;
  border-top: 1.8rem solid #1f2160;
}
.future-area .main-ttl h2 {
  font-size: 5rem;
  line-height: 1;
  text-decoration: underline;
  text-decoration-color: #ffda2a;
  text-decoration-thickness: 15px;
  text-underline-offset: -7px;
  padding: 0 1rem;
}


.future-area .main-ttl h2 span {
  font-size: 7rem;
  line-height: 1;
}





.future-area .features-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-top: 5rem;
}
.future-area ul li {
  background: #fff;
  border: solid 1px #1f2160;
  border-radius: 10px;
  position: relative;
  padding: 4.5rem 2rem 2rem;
}
.future-area ul li dl dt {
  font-size: 2rem;
  text-align: center;
}

.future-area ul li dl dd {
  font-size: 1.6rem;
  font-weight: bold;
}.future-area ul li dl dd img {
  display: block;
  margin:2rem  auto;
}
.future-area ul li dl dt span {
  font-size: 2.1rem;
  font-weight: bold;
  background: #ffdd00;
  width: 60px;
  height: 60px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  border: solid 1px #000;
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
}


/* 要素 | https://h-a.ac.jp/level-training */

.step-info-item > h4 {
  border: solid 1px;
  width: 100px;
  text-align: center;
  padding: 1px;
  font-size: 1.6rem;
}

.step-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1rem;
  font-weight: bold;
}


.step-info-item > p {
  font-size: 1.6rem;
}

.training-table{
  width: 700px;
  margin: auto;
}
.training-table table + table {
  margin-top: 2rem;
}

.training-table p {
  font-size: 1.2rem;
  text-align: left;
  margin-top: 1rem;
  
}

.curriculum-area .main-ttl h2 {
  font-size: 3.1rem;
  position: relative;
  background: #fff;
  padding: 0.5rem 3rem;
  border-radius: 15px;
  border: solid 1px #1f2160;
  margin: auto;
  margin-bottom: auto;
  margin-bottom: 2rem;
  display: block;
  width: fit-content;
}

.curriculum-area .main-ttl p {
  font-size: 2.6rem;
  text-align: center;
  font-weight: bold;
}

.curriculum-area .main-ttl {
  margin-bottom: 5rem;
}

.curriculum-area .course-box .course-ttl {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
}

.curriculum-area .course-box .course-ttl-item h3 {
  font-size: 2.6rem;
  background: #232584;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: .5rem 1rem .5rem 3rem;
}

.curriculum-area .course-box .course-ttl-item h3 span {
  font-size: 1.8rem;
  background: #ffdd00;
  color: #3c2618;
  padding: 2px 2rem;
  border-radius: 5px;
}

.curriculum-area .course-box .course-ttl-item p.catch {
  font-size: 2.2rem;
  margin: 2rem 0;
  padding-left: 1rem;
}

.curriculum-area .course-box .course-ttl-item p.text {
  font-size: 1.6rem;
  font-weight: bold;
  padding-left: 1rem;
  line-height: 2;
}

div.course-box + div.course-box {
  margin-top: 10rem;
}
div.course-box .course-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}


.curriculum-area .course-box .course-content-item dt {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  background: #69a0f9;
  padding: 1rem 2rem;
  position: relative;
  padding-left: 60px;
}


.curriculum-area .course-box .course-content-item {
  border: solid 3px #3743ad;
}


.curriculum-area .course-box .course-content-item dd {
  font-size: 1.3rem;
  padding: 1rem 1.5rem;
  height: auto;
  min-height: 4.5em;
}


.curriculum-area .course-box .course-content-item dt span {
  font-size: 1.1rem;
  font-weight: bold;
  background: #ffdd00;
  width: 30px;
  height: 30px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  border: solid 1px #000;
  left: 4%;
  top: 50%;
  transform: translateY(-50%);
position: absolute;
  color: #000;
}


