@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: 985px;
  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

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

header {
  padding: 2rem;
  /* position: fixed; */
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

header.scroll {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

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

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

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;
}

@media screen and (max-width: 736px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
  section {
    margin: 5rem 0;
  }

  .inner {
    width: 94% !important;
  }

  #main-fv {
    margin: 0rem 1rem 4rem;
    padding: 2rem 1rem 0rem;
  }

  .skilltraining-other #main-fv {
    margin: 0rem 1rem 4rem;
    padding: 2rem 1rem 0rem;
    background: url("../images/page/skilltraining-2025/top/main-bg-2-sp.webp")
      no-repeat center 52%;
    background-size: 100%;
  }

  .skilltraining-2025 #main-fv {
    background: url("../images/page/skilltraining-2025/top/main-bg-sp.webp")
      no-repeat center 52%;
    background-size: 100%;
  }
  #main-fv .main-img {
    margin-top: 0rem;
  }

  #main-fv .main-txt01 {
    margin: 0.5rem 0 1rem;
  }

  header {
    padding: 1rem 1rem;
    height: auto;
  }

  header h1:nth-child(1) > a:nth-child(1) > img:nth-child(1) {
    width: 105px;
  }

  #main-contents > .top-contact {
    padding: 4rem 0;
  }

  .kouza-ttl {
    font-size: 1rem;
    margin-bottom: 0rem;
  }

  .kouza-ttl > span:nth-child(1) {
    font-size: 1.5rem;
  }

  .top-contact .tel,
  .top-contact .tel02 {
    margin-top: 0rem;
    padding: 0;
  }

  .top-contact .reservation_confirmation img,
  .top-contact .tel img,
  .top-contact .tel02 img {
    width: 65%;
    margin: 0.5rem auto;
  }

  .icon-01 {
    width: 96%;
  }

  .top-contact .text-01 {
    width: 70%;
  }

  .reservation-btn {
    gap: 1rem;
    margin-top: 1rem;
    justify-content: flex-start;
  }

  .page-id-3207 .reservation-btn a {
    width: 48%;
  }

  .top-features {
    margin-top: 4rem;
  }

  .top-features .main-ttl > p:nth-child(2) {
    font-size: 1.2rem;
    margin-top: 1.5rem;
  }

  .features-block-inner {
    grid-template-columns: 1fr;
  }

  div.features-block > p:nth-child(1) {
    font-size: 1.2rem;
    padding: 3px 1rem;
    margin: 0px;
    margin-left: 1rem;
  }

  div.features-block {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
  }

  div.features-block .catch {
    font-size: 1.5rem;
  }

  div.features-block .features-img {
    height: auto;
    width: 43%;
  }

  div.features-block > p:nth-child(4) {
    font-size: 1.1rem;
    margin-top: 0rem;
    width: 53%;
    line-height: 1.5;
  }

  .top-course {
    padding: 5rem 0;
  }

  .course-ttl-area h2 {
    font-size: 2.2rem;
    gap: 1.5rem;
    flex-direction: column;
  }

  .course-ttl-area h2 > span:nth-child(1) {
    padding: 0.5rem 1rem;
    font-size: 1.7rem;
  }

  .course-ttl-area {
    margin-bottom: 3rem;
  }

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

  .course-list > li .course-list-inner p:nth-child(1) {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .course-list > li .course-list-inner p:nth-child(4) {
    font-size: 1.1rem;
    padding: 4px 1rem;
    margin: 1rem 0 1rem;
  }

  .course-list > li .course-list-inner ul li {
    font-size: 1rem;
    line-height: 1.8;
  }

  .course-list > li:not(:last-child) {
    padding: 1.5rem 1.5rem;
    border-radius: 15px;
  }

  .course-list > li:last-child {
    display: none;
  }

  .course-ttl-area > p:nth-child(3) {
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .course-list > li .course-list-inner img:nth-child(3) {
    width: 85%;
    margin: auto;
    display: block;
  }

  .top-movie .main-ttl-area > p:nth-child(2) {
    flex-direction: column;
  }

  .top-movie .main-ttl-area > p:nth-child(2) {
    font-size: 1.2rem;
    flex-direction: column;
    text-align: center;
    margin: 3rem 0 2rem;
  }

  .top-movie .main-ttl-area > p:nth-child(2) > span:nth-child(1) {
    font-size: 1.8rem;
    padding: 1rem 2rem;
  }

  .course-ttl-area > img {
    display: none;
  }

  footer {
    background: url("../images/page/skilltraining-2025/top/footer_bg-sp.webp")
      no-repeat center 5px;
    background-size: auto;
    background-size: auto;
    background-size: 180%;
    padding: 6rem 0 2rem;
    text-align: center;
    color: #fff;
  }

  footer .icon-01 {
    width: 95%;
  }

  footer .footer-logo {
    width: 70%;
    margin: 3rem auto 1rem;
  }

  footer p {
    font-size: 1.3rem;
  }
  footer .top-contact div:nth-child(1) {
    padding: 0rem;
  }
  .sp-footer {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    background: #ff971d;
    z-index: 10;
  }
  .sp-footer li {
    width: 50%;
  }
  .di-fl {
    display: flex;
  }
  .sp-footer li {
    width: 50%;
  }
  .copyright {
    padding: 1rem 0;
    font-size: 0.6rem;
  }
  /* --------------------

course下層ページ

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

  .skilltraining-other .reservation-btn {
    width: 96%;
  }

  .skilltraining-other .icon-01 {
    display: none;
  }
  .skilltraining-other #main-contents > .top-contact {
    padding: 3rem 0;
  }
  .skilltraining-other .top-contact .tel img {
    width: 90%;
    margin: 1.5rem auto 0;
  }

  .skilltraining-other .top-features {
    margin-top: 0rem;
    padding: 5rem 0;
  }

  .features-section .main-ttl h2 {
    gap: 0rem;
    flex-direction: column;
  }

  .page-template-page-skilltraining-2025_plastic .ttl-name {
    margin-top: 0.5rem;
  }

  .ttl_01 {
    width: 120px;
  }

  .features-catch {
    grid-template-columns: 1fr;
  }

  .features-catch-text .mobile img {
    width: 87%;
    margin: 0 auto 2rem;
    display: block;
  }
  .features-catch .text-01 {
    font-size: 1.1rem;
  }

  .features-catch .target-audience > span:nth-child(1) {
    font-size: 1.3rem;
    padding: 5px 2rem;
  }

  .features-catch .target-audience {
    margin: 2rem 0 1.5rem;
    font-size: 1.7rem;
    justify-content: center;
  }

  .schedule-btn {
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin: auto;
    display: flex;
    align-items: center;
    line-height: 1.5;
  }
  .page-template-page-skilltraining-2025_welding .schedule-btn {
    padding: 1.2rem 1rem;
  }

  .features-catch-text {
    padding: 0 1.6rem;
  }
  /*--reason--*/

  .top-features .reason-ttl-area {
    width: 100%;
    margin: 0 auto;
    min-height: auto;
    position: relative;
  }
  .top-features h2.reason-ttl {
    position: relative;
    z-index: 10;
    margin-bottom: 3rem;
  }
  .top-features h2.reason-ttl img {
    width: 75%;
  }
  .top-features .reason-img {
    width: 46%;
    position: absolute;
    top: -44px;
    right: 19px;
  }

  .top-features .point-ttl {
    width: 100%;
    margin: 0 auto;
    padding: 2rem 0;
  }

  .top-features .point-ttl img {
    width: 100%;
  }
  .top-features ol.features-list {
    margin-bottom: 0rem;
  }
  .top-features ol.features-list li {
    padding: 1rem;
    background: url("../images/page/skilltraining-2025/common/features-bg.webp")
      no-repeat center top 70px #edefe7;
    margin-top: 2rem;
    padding-top: 0;
  }

  .top-features ol.features-list li + li {
    margin-top: 2rem;
  }
  .top-features ol.features-list li .features-list-inner {
    padding: 2rem 1.8rem;
  }

  .top-features ol.features-list li .features-list-inner .di-fl {
    align-items: center;
    flex-direction: column;
  }

  .top-features ol.features-list li .features-info {
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 2;
  }

  .top-features ol.features-list li:nth-child(3) .features-info {
    width: 80%;
    max-width: 80%;
  }
  .top-features ol.features-list li:nth-child(3) .features-info h3,
  .top-features ol.features-list li:nth-child(6) .features-info h3 {
    text-shadow: 1px 1px 1px #ffffff, -1px 1px 1px #ffffff, 1px -1px 1px #ffffff,
      -1px -1px 1px #ffffff, 1px 0px 1px #ffffff, 0px 1px 1px #ffffff,
      -1px 0px 1px #ffffff, 0px -1px 1px #ffffff;
  }

  .top-features ol.features-list li .features-info .features {
    width: 40%;
    margin-bottom: 1rem;
  }
  .top-features ol.features-list li .features-info dl {
    align-items: center;
    flex-direction: unset !important;
    margin-bottom: 1rem;
  }

  .top-features ol.features-list li .features-info dl dt {
    width: 25%;
    max-width: 25%;
    padding-right: 1rem;
  }
  .top-features ol.features-list li .features-info dl dd {
    width: 80%;
    max-width: 100%;
  }

  .features-list-inner .features img:nth-child(1) {
    width: 80px;
  }

  .top-features ol.features-list li .features-info dl dd h3 {
    font-size: 1.6rem;
    letter-spacing: 0;
  }

  .top-features ol.features-list li .features-info p {
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: bold;
    color: #000;
    gap: 5px;
    width: 95%;
    align-items: center;
  }

  .top-features ol.features-list li .features-info p span {
    padding: 2px 1rem;
    font-size: 1.2rem;
  }

  .top-features ol.features-list li .features-img {
    width: 100%;
    max-width: 80%;
    margin: 2rem auto 1rem;
  }

  .top-features .features-contact {
  }
  .top-features .features-contact .tel {
    padding-right: 2rem;
  }
  .features-list > p {
    font-size: 1.1rem;
    margin-top: 0.5rem;
    padding-left: 1rem;
    line-height: 1.7;
    text-indent: -1em;
    margin-left: 1rem;
  }

  .link-btn a {
    font-size: 1.2rem;
    margin: 2rem auto 0;
  }
  .link-btn a img:nth-child(1) {
    width: 25px;
  }

  .top-features div.top-contact {
    padding: 0;
  }

  .lesson-area03 .lesson-list .list {
    padding: 3rem 1rem;
  }

  div.step-area > .step {
    align-items: center;
  }
  .lesson-area03 div.step-area > .step {
    flex-direction: column;
  }
  .lesson-list li h3 {
    border-radius: 10px;
    font-size: 1.5rem;
    padding: 1rem 3rem;
  }
  .lesson-area03 {
    margin-bottom: 5rem;
  }
  .lesson-area03 .step-area .step-no {
    width: 40%;
    height: auto;
    max-width: 32%;
  }

  .lesson-area03 .step-area .step-info {
    width: 95%;
    max-width: 95%;
  }

  .lesson-area03 .step-area .step-info p.step-txt2 {
    font-size: 1.4rem;
  }

  div.price-box .table-ttl:not(:first-of-type) {
    /* margin-top: 6rem; */
    margin-top: 3rem;
  }

  div.price-box {
    margin: 5rem 0 0;
  }

  div.price-box .table-ttl {
    font-size: 1.6rem;
    padding: 8px 1em;
  }

  div.price-box .table-ttl::before,
  div.price-box .table-ttl::after {
    flex-grow: 1;
  }

  div.price-box .table-ttl::before {
    margin-right: 20px;
  }

  div.price-box .table-ttl::after {
    margin-left: 20px;
  }

 
  .lesson-list .table-mobile {
    width: 100%;
    border: solid 1px #251e1c;
  }
  .lesson-list .table-mobile + .table-mobile {
    margin-top: 1rem;
  }
  .lesson-list .table-mobile .table-header {
    background: #d2dbe8;
    font-size: 1rem;
  }
 .table-mobile .table-header:nth-of-type(2) > div:last-child {
    background: #3f6eb4;
    color: #fff;
  }

  .lesson-list .table-mobile > .table-header:nth-child(3) > div:nth-child(2) {
    background: #3f6eb4;
    color: #fff;
}


  .lesson-list .table-mobile .table-row {
    font-size: 1rem;
    background: #fff;
  }
  .lesson-list .table-mobile > div:not(:last-child) {
    border-bottom: solid 1px #251e1c;
  }
  .lesson-list .table-mobile > div > div:not(:last-child) {
    border-right: solid 1px #251e1c;
  }
  .lesson-list .table-mobile .table-header:nth-child(1),
  .lesson-list .table-mobile .table-row:nth-child(2) {
    font-size: 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .lesson-list .table-mobile .table-header:nth-child(3) .last {
    background: #3f6eb4;
    color: #fff;
  }
  .lesson-list .table-mobile .table-header:nth-child(3),
  .lesson-list .table-mobile .table-row:nth-child(4) {
    font-size: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  div.price-box .text {
    font-size: 0.9rem;
    margin-top: 1rem;
  }
  .lesson-area04 {
    margin-bottom: 5rem;
  }
  .lesson-area04 {
    padding: 3rem 2rem 2rem;
    border-radius: 10px;
    position: relative;
  }

  .lesson-area03.lesson-area04 .lesson-list .list {
    padding: 5rem 1.2rem 3rem;
    border: 4px solid #232e84;
    border-radius: 10px;
  }

  .lesson-area04 .clip {
    width: 40%;
  }

  .lesson-area03.lesson-area04 h3 {
    font-size: 1.5rem;
    margin-top: 0rem;
    width: 64% !important;
  }

  .lesson-area04 div.step-area > .step {
    flex-direction: unset;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0rem 1rem;
    align-items: center;
  }

  .lesson-area04 .step-area .step-no {
    width: 25%;
    max-width: 25%;
    height: auto;
    line-height: unset;
    padding: 0px 1rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .step-txt {
    font-weight: bold;
    text-align: left;
  }
  .lesson-area04 .lesson-area04-info {
    padding: 4rem 2rem 3rem;
    border-radius: 10px;
    position: relative;
  }

  .lesson-area04 .lesson-area04-img {
    display: none;
  }

  .lesson-area04 .lesson-area04-info h3 {
    width: 60%;
    font-size: 1.4rem;
    margin: 0 auto 1rem;
    height: 40px;
    line-height: 40px;
    letter-spacing: 0.1em;
  }

  .lesson-area04 .step-area .step-info p.step-txt2 span {
    font-size: 1.1rem;
    line-height: 1.5;
    padding-left: 1em;
    text-indent: -1em;
    display: block;
    margin-top: 1rem;
  }
  .lesson-area04 .list .step-area:nth-child(5) .step-info p.step-txt2 {
    font-size: 1.2rem;
    text-indent: -1em;
    margin-left: 1em;
    display: block;
    margin-top: 0rem;
  }

  .lesson-area04 .step-area .step-info p.step-txt2 {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .lesson-area04 .list .step-area:nth-child(6) .step {
    align-items: flex-start;
  }

  .lesson-area04 .step-area .step-info {
    padding: 0 0 2rem !important;
  }

  .lesson-area04 .step-area + .step-area {
    margin-top: 2rem;
  }

  .lesson-area04-info ol {
    margin-bottom: 3rem;
  }
  .lesson-area04-info ol li {
    padding: 0.5rem;
  }

  .lesson-area04-info ol li + li {
    margin-top: 2rem;
  }
  .lesson-area04-info ol li dl {
    align-items: center;
  }

  .lesson-area04-info ol li dl dt {
    font-size: 1.3rem;
    width: 23px;
    height: 23px;
    line-height: 23px;
  }

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

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

  .lesson-area04 .sp-table {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .catch_text {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 3rem;
  }

  .catch_text span.box {
    font-size: 1.1rem;
    margin-top: 0.9rem;
  }
  .lesson-area04 {
    padding: 2rem 1rem 2rem;
  }

  .lesson-area04 .sp-table {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .catch_text {
    font-size: 1.2rem;
    line-height: 2;
  }

  .catch_text span.box {
    font-size: 1.1rem;
  }
  .lesson-area04 {
    padding: 2rem 1rem 2rem;
  }

  .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%;
  }


.reservation02-btn {
  width: 90%;
  margin: auto;
}

}

/* YouTube埋め込み */
.youtube-container {
  position: relative;
  width: 100%;
}

.youtube-thumbnail {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.youtube-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.youtube-embed {
  position: relative;
  overflow: hidden;
  display: none;
}

.youtube-embed.show {
  display: block;
  padding-bottom: 56.25%;
  height: 0;
}

.youtube-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* スマホ対応 */
@media screen and (max-width: 767px) {
  .youtube-embed.show {
    padding-bottom: 56.25%;
  }
}
