@charset "UTF-8";
/* CSS Document */

/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 共通パーツ */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

/* main */
#main {
  background: #fff;
}

/* header */
.header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 50px 60px 0 60px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
.header .logo {
  width: 90px;
}

.header .localnav {
  margin-left: 60px;
}
.header .localnav li {
  margin-right: 30px;
}
.header .localnav li:nth-last-child(1) {
  margin-right: 0;
}
.header .localnav li a {
  display: block;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1;
}
.header .localnav li a:hover {
  opacity: 0.6;
}

.header .menubtn {
  width: 40px;
  height: 40px;
  position: fixed;
  top: 60px;
  right: 60px;
  z-index: 10;
  transition: 0.6s;
  -webkit-transition: 0.6s;
}
.header.is-animation .menubtn {
  background: linear-gradient(135deg, #640f7e, #1e2891, #640f7e);
  background-size: 300% 200%;
  animation: bggradient 10s ease infinite;
  padding-right: 25px;
  width: 150px;
  height: 80px;
  top: 0;
  right: 0;
}
.header.is-animation .menubtn.active {
  background: none;
}
.header .menubtn .menu {
  display: block;
  position: relative;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
}
.header .menubtn .menu:after {
  content: "MENU";
  font-family: "Barlow", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  position: absolute;
  top: 2.5px;
  left: -60px;
}
.header.is-animation .menubtn .menu {
  margin-top: 30px;
  float: right;
}
.header .menubtn .menu .openbtn-area {
  transition: all 0.4s;
}
.header .menubtn .menu span {
  width: 40px !important;
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  height: 1px;
  background: #fff;
}
.header .menubtn .menu span:nth-of-type(1) {
  top: 0;
}
.header .menubtn .menu span:nth-of-type(2) {
  top: 10px;
}
.header .menubtn .menu span:nth-of-type(3) {
  width: 20px !important;
  top: 20px;
}

.header .menubtn .menu.active .openbtn-area {
  transform: rotateY(-360deg);
}
.header .menubtn .menu.active span:nth-of-type(1) {
  width: 40px !important;
  top: 5px;
  left: 50%;
  margin-left: -20px;
  transform: translateY(6px) rotate(-135deg);
}
.header .menubtn .menu.active span:nth-of-type(2) {
  opacity: 0;
}
.header .menubtn .menu.active span:nth-of-type(3) {
  width: 40px !important;
  top: 15px;
  left: 50%;
  margin-left: -20px;
  transform: translateY(-6px) rotate(135deg);
}

/* menubox */
#menubox {
  display: none;
  width: 250px;
  height: 100vh;
  background: linear-gradient(135deg, #640f7e, #1e2891, #640f7e);
  background-size: 300% 200%;
  animation: bggradient 10s ease infinite;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9;
}
#menubox .menunav {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
#menubox .menunav ul {
  width: 80%;
}
#menubox .menunav ul li {
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
}
#menubox .menunav ul li a {
  display: block;
  font-size: 1.4rem;
  color: #fff;
  padding: 20px 0;
}
#menubox .menunav ul li a:hover {
  opacity: 0.7;
}

/* c-pagetitle */
.c-pagetitle {
  width: 100%;
}
.c-pagetitle .c-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#fv .c-inner {
  height: 100vh;
}
#detail .c-inner {
  height: 520px;
}
.c-pagetitle .text {
  color: #fff;
}
#detail .text {
  padding-top: 60px;
}
.c-pagetitle .text .en_head {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  border-bottom: solid 2px #fff;
  padding-bottom: 5px;
  margin-bottom: 30px;
}

.c-pagetitle .text h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5em;
  margin-bottom: 30px;
}

.c-pagetitle a.link {
  display: block;
  position: absolute;
  bottom: 100px;
  left: 0;
}

/* c-conductor */
#c-conductor {
  width: 100%;
}
#c-conductor ul li.box {
  width: 100%;
  background: #f4f4f4;
}
#c-conductor ul li.box a {
  max-width: 1100px;
  width: 90%;
  margin: auto;
  height: 300px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
#c-conductor ul li.box a:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 4px 0 4px 12px;
  position: absolute;
  top: 50%;
  right: 22px;
  margin-top: -4px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
#c-conductor ul li.box a:before {
  content: "";
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    #640f7e,
    #1e2891,
    #640f7e
  ); /*グラデーションを定義*/
  background-size: 300% 200%; /*サイズを大きくひきのばす*/
  animation: bggradient 10s ease infinite;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -30px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
#c-conductor ul li.box a:hover:before {
  width: 70px;
  height: 70px;
  right: -5px;
  margin-top: -35px;
}
#c-conductor ul li.box a h2 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

#c-conductor ul li.box a .en {
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: 20px;
}

/* c-iconlist */
.c-iconlist li {
  margin-top: 5px;
  font-size: 1.6rem;
  line-height: 1.6em;
  padding-left: 15px;
  position: relative;
}
.c-iconlist li:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9d9d9;
  position: absolute;
  top: 8px;
  left: 0;
}

/* c-setlist */
.c-setlist .set {
  margin-bottom: 70px;
}
.c-setlist .set:nth-last-child(1) {
  margin-bottom: 0;
}
.c-setlist .set .text {
  width: 67%;
  padding-right: 5%;
}

.c-setlist .set .pht {
  width: 33%;
}

.c-setlist .set h3 {
  font-size: 2.8rem;
  line-height: 1.4em;
  padding-left: 20px;
  margin-bottom: 15px;
  position: relative;
}
.c-setlist .set h3:after {
  content: "";
  width: 10px;
  height: 10px;
  background: #640f7e;
  position: absolute;
  top: 9px;
  left: 0;
}
.c-setlist .set h3:before {
  content: "";
  width: 10px;
  height: 10px;
  background: #1e2891;
  position: absolute;
  top: 19px;
  left: 0;
}

/* c-table */
.c-table {
  width: 100%;
  border-collapse: collapse;
}
.c-table th {
  width: 25%;
  padding: 20px;
  background: #f4f4f4;
  border-top: solid 1px #ddd;
  border-right: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
  font-size: 1.5rem;
  font-weight: 500;
}
.c-table td {
  width: 75%;
  padding: 20px;
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
}
.c-table td p {
  font-size: 1.5rem;
  line-height: 1.8em;
}
.c-table td p a {
  color: #4f7794;
  text-decoration: underline;
}
.c-table td p a:hover {
  text-decoration: none;
}

.c-table td span {
  font-size: 1.2rem;
  line-height: 1.4em;
}

/* feature */
#feature {
  width: 100%;
  padding: 150px 0 150px 0;
}

/* results */
#results {
  width: 100%;
  padding: 150px 0 150px 0;
}
#results .list .box {
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 20px;
  padding: 60px 70px 40px 70px;
}
#results .list .box:nth-last-child(1) {
  margin-bottom: 0;
}
#results .list .box .text {
  width: 60%;
  color: #fff;
}
#results .list .box:nth-child(1) .text {
  padding-right: 5%;
}
#results .list .box:nth-child(2) .text {
  padding-left: 5%;
}
#results .list .box .text h3 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.8em;
  margin-bottom: 15px;
}
#results .list .box .text h3 span {
  font-size: 6rem;
  font-weight: 600;
}

#results .list .box .text .sub_txt {
  display: block;
  font-size: 1.2rem;
  line-height: 1.8em;
  margin-top: 10px;
}

#results .list .box .illust {
  width: 40%;
}
#results .list .box:nth-child(1) .illust img {
  margin-top: -90px;
}
#results .list .box:nth-child(2) .illust img {
  margin-bottom: -70px;
}

/* voice */
#voice {
  width: 100%;
  padding: 150px 0 150px 0;
}
#voice .list .box {
  margin-bottom: 60px;
}
#voice .list .box:nth-last-child(1) {
  margin-bottom: 0;
}
#voice .list .box .profile {
  width: 120px;
}
#voice .list .box .profile .human {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  border: solid 1px #ddd;
  border-radius: 50%;
  overflow: hidden;
}

#voice .list .box .profile p {
  font-size: 1.2rem;
  line-height: 1.4em;
  text-align: center;
  padding-top: 10px;
}

#voice .list .box .text {
  width: -webkit-calc(100% - 150px);
  width: calc(100% - 150px);
  position: relative;
}
#voice .list .box.flex-end .text {
  margin-right: 30px;
}
#voice .list .box .text:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  top: 45px;
}
#voice .list .box.flex-start .text:after {
  border-width: 10px 10px 10px 0;
  border-color: transparent #f4f4f4 transparent transparent;
  left: -10px;
}
#voice .list .box.flex-end .text:after {
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #f4f4f4;
  right: -10px;
}
#voice .list .box .text p {
  font-size: 1.8rem;
  background: #f4f4f4;
  padding: 20px;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 認定試験制度ページ */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

/* qualification */
#qualification {
  width: 100%;
  padding: 150px 0;
}
#qualification .schedule {
  border-top: solid 1px #ddd;
}
#qualification .schedule .days {
  border-bottom: solid 1px #ddd;
  padding: 25px 20px 15px 20px;
}
#qualification .schedule .off {
  color: #a7a7a7;
  position: relative;
}
#qualification .schedule .off:after {
  content: "※試験は終了しました";
  height: 100%;
  font-size: 1.6rem;
  line-height: 1;
  color: #272727;
  position: absolute;
  top: 0;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#qualification .schedule .days .years {
  font-size: 1.3rem;
  line-height: 1;
  margin-bottom: 8px;
}

#qualification .schedule .days time {
  font-size: 1.6rem;
  line-height: 1.4em;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 研修事業についてページ */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

/* lad */
#lad {
  width: 100%;
  padding: 150px 0 150px 0;
  animation-duration: 200s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  background: #0b0811 url("/wp/wp-content/uploads/2025/02/lad_txtbg.png") repeat-x left top;
  animation-name: slide_img;
}
@keyframes slide_img {
  100% {
    background-position: -10000px 0;
  }
}
#lad .read {
  margin-bottom: 80px;
}
#lad .read h2 {
  font-size: 3.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4em;
  text-align: center;
  margin-bottom: 25px;
}

#lad .read .c-txt {
  color: #fff;
  text-align: center;
}

#lad .whitebox {
  background: #fff;
  padding: 70px 50px;
  position: relative;
}
#lad .whitebox:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 20px;
  border-color: #0b0811 transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -20px;
}
#lad .whitebox h3 {
  font-size: 4.6rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  padding-bottom: 25px;
  margin-bottom: 25px;
  position: relative;
}
#lad .whitebox h3:after {
  content: "";
  width: 40px;
  height: 1px;
  background: #0b0811;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -20px;
}

#lad .whitebox .c-txt {
  text-align: center;
}

/* problem */
#problem {
  width: 100%;
  padding: 0 0 150px 0;
  background: #0b0811;
  position: relative;
}
#problem:before {
  content: "";
  width: 100%;
  height: 600px;
  background: url("/wp/wp-content/uploads/2025/02/problem_bg.jpg") no-repeat center / cover;
  position: absolute;
  bottom: 0;
  left: 0;
}
#problem ul.list {
  margin-bottom: 80px;
}
#problem ul.list li {
  width: 24%;
  background: #fff;
  padding: 30px 10px 40px 10px;
  text-align: center;
  position: relative;
}
#problem ul.list li:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #ffffff transparent transparent transparent;
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -10px;
}
#problem ul.list li .en {
  font-size: 1.4rem;
  color: #3d1d89;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #640f7e, #1e2891, #640f7e);
  background-size: 200% 200%;
  animation: bggradient 10s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#problem ul.list li img {
  width: auto;
  height: 90px;
}

#problem ul.list li h3 {
  margin-top: 25px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4em;
}

#problem .textbox h3 {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.4em;
  color: #fff;
  text-align: center;
  margin-bottom: 25px;
}

#problem .textbox .c-txt {
  color: #fff;
  text-align: center;
}

/* special */
#special {
  width: 100%;
  padding: 150px 0;
  background: #f4f4f4;
}
#special .read {
  margin-bottom: 80px;
}

/* knowledge */
#knowledge {
  width: 100%;
  padding: 0 0 150px 0;
  background: #f4f4f4;
}
#knowledge .sub_txt {
  display: block;
  font-size: 1.2rem;
  margin-top: 5px;
}

/* training */
#training {
  width: 100%;
  padding: 0 0 100px 0;
  background: #f4f4f4;
}

/* curriculum */
#curriculum {
  width: 100%;
  padding: 150px 0;
}
#curriculum table {
  width: 100%;
  border-collapse: collapse;
}
#curriculum table th {
  width: 370px;
  padding: 20px;
  background: #f4f4f4;
  border-top: solid 1px #ddd;
  border-right: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
  font-size: 1.5rem;
  font-weight: 500;
}
#curriculum table td {
  padding: 20px;
  border-top: solid 1px #ddd;
  font-size: 1.5rem;
  line-height: 1.8em;
  border-bottom: solid 1px #ddd;
}
#curriculum table td.arrow {
  width: 100px;
  padding: 0 10px 0 0;
}
#curriculum table .head {
  font-size: 1.8rem;
  font-weight: 700;
}

/* taget */
#taget {
  width: 100%;
  padding: 150px 0;
  background: #0b0811;
}
#taget .box {
  max-width: 750px;
  margin: auto;
  border: solid 1px #fff;
  padding: 40px 80px;
  color: #fff;
}

/* certification */
#certification {
  width: 100%;
  padding: 0 0 150px 0;
  background: #0b0811;
}
#certification .pht {
  width: 40%;
}

#certification .text {
  width: 60%;
  padding-left: 5%;
}
#certification .text .c-txt {
  margin-bottom: 15px;
  color: #fff;
}
#certification .text .c-txt:nth-child(2) {
  margin-bottom: 30px;
}

/* faq */
#faq {
  width: 100%;
  padding: 0 0 150px 0;
}
#faq .list dl {
  background: #f4f4f4;
  margin-bottom: 20px;
}
#faq .list dl dt {
  padding: 20px 70px 20px 70px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4em;
  cursor: pointer;
  position: relative;
  background: url("/wp/wp-content/uploads/2025/02/open.svg") no-repeat right 30px center;
}
#faq .list dl dt.active {
  background: url("/wp/wp-content/uploads/2025/02/close.svg") no-repeat right 30px center;
}
#faq .list dl dt:before {
  content: "Q";
  font-size: 2rem;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  position: absolute;
  top: 20px;
  left: 30px;
}

#faq .list dl dd {
  display: none;
  position: relative;
  padding: 0 70px 20px 70px;
  font-size: 1.6rem;
  transition: 0;
  -webkit-transition: 0;
}
#faq .list dl dd a {
  color: #4f7794;
  text-decoration: underline;
}
#faq .list dl dd:before {
  content: "A";
  font-size: 2rem;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  color: #9a9a9a;
  position: absolute;
  top: -3px;
  left: 30px;
}
#faq .list dl dd span {
  display: block;
  font-size: 1.2rem;
}

/* about */
#about {
  background: #0b0811;
}
#about .c-txt {
  color: #fff;
}

/* clients */
#clients {
  background: #f4f4f4;
}
#clients .bg {
  background: #0b0811;
  z-index: 0;
}

/*レイアウト05*/
#company {
  background: #f4f4f4;
}

/* 1400px */
@media screen and (max-width: 1400px) {
  /* ++++++++++++++++++++++++++++++++++++++++++++++ */
  /* 共通パーツ */
  /* ++++++++++++++++++++++++++++++++++++++++++++++ */

  /* header */
  .header {
    padding: 50px 5% 0 5%;
  }

  /* c-setlist */
  .c-setlist .set .text {
    width: 65%;
  }

  .c-setlist .set .pht {
    width: 35%;
  }

  /* results */
  #results .list .box .text {
    width: 60%;
  }

  #results .list .box .illust {
    width: 40%;
  }
  #results .list .box:nth-child(1) .illust img {
    margin-top: -70px;
  }
}

/* 1024px */
@media screen and (max-width: 1024px) {
  /* ++++++++++++++++++++++++++++++++++++++++++++++ */
  /* 共通パーツ */
  /* ++++++++++++++++++++++++++++++++++++++++++++++ */

  /* header */
  .header .localnav {
    display: none;
  }

  /* c-pagetitle */
  .c-pagetitle .text .en_head {
    font-size: 1.7rem;
  }

  .c-pagetitle .text h1 {
    font-size: 3.4rem;
  }

  /* c-conductor */
  #c-conductor {
    width: 100%;
    margin-bottom: 0;
  }
  #c-conductor ul {
    display: block;
  }
  #c-conductor ul li.box {
    width: 100%;
  }
  #c-conductor ul li.box a {
    height: auto;
    justify-content: flex-start;
    text-align: left;
    padding: 50px 70px 50px 0;
  }
  #c-conductor ul li.box a h2 {
    font-size: 2.4rem;
  }

  #c-conductor ul li.box a .en {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  #c-conductor ul li.box a br {
    display: none;
  }

  /* c-iconlist */
  .c-iconlist li {
    font-size: 1.5rem;
  }
  .c-iconlist li:after {
    top: 7px;
  }

  /* c-setlist */
  .c-setlist .set {
    margin-bottom: 70px;
  }
  .c-setlist .set:nth-last-child(1) {
    margin-bottom: 0;
  }
  .c-setlist .set .text {
    width: 55%;
    padding-right: 5%;
  }

  .c-setlist .set .pht {
    width: 45%;
  }

  .c-setlist .set h3 {
    font-size: 2.6rem;
  }

  /* c-table */
  .c-table th {
    font-size: 1.4rem;
  }

  .c-table td p {
    font-size: 1.4rem;
  }

  .c-table td span {
    font-size: 1.1rem;
  }

  /* feature */
  #feature {
    width: 100%;
    padding: 150px 0 150px 0;
  }

  /* results */
  #results .list .box {
    display: block;
  }
  #results .list .box .text {
    width: 100%;
    padding-bottom: 40px;
  }
  #results .list .box:nth-child(1) .text {
    padding-right: 0;
  }
  #results .list .box:nth-child(2) .text {
    padding-left: 0;
  }
  #results .list .box .text h3 {
    font-size: 2.4rem;
  }
  #results .list .box .text h3 span {
    font-size: 5.4rem;
  }

  #results .list .box .illust {
    width: 100%;
    max-width: 500px;
    margin: auto;
  }
  #results .list .box:nth-child(1) .illust img {
    margin-top: 0;
  }
  #results .list .box:nth-child(2) .illust img {
    margin-bottom: 0;
  }

  /* ++++++++++++++++++++++++++++++++++++++++++++++ */
  /* 認定試験制度ページ */
  /* ++++++++++++++++++++++++++++++++++++++++++++++ */

  /* qualification */
  #qualification {
    padding: 120px 0;
  }
  #qualification .schedule .days {
    padding: 25px 20px 15px 20px;
  }
  #qualification .schedule .off:after {
    font-size: 1.5rem;
  }
  #qualification .schedule .days .years {
    font-size: 1.2rem;
  }

  #qualification .schedule .days time {
    font-size: 1.5rem;
  }

  /* ++++++++++++++++++++++++++++++++++++++++++++++ */
  /* 研修事業についてページ */
  /* ++++++++++++++++++++++++++++++++++++++++++++++ */

  /* lad */
  #lad .read h2 {
    font-size: 3rem;
  }

  #lad .whitebox h3 {
    font-size: 4rem;
  }

  /* problem */
  #problem:before {
    height: 630px;
  }
  #problem ul.list {
    margin-bottom: 80px;
  }
  #problem ul.list li {
    padding: 30px 10px 30px 10px;
  }
  #problem ul.list li .en {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  #problem ul.list li img {
    width: auto;
    height: 80px;
  }

  #problem ul.list li h3 {
    margin-top: 25px;
    font-size: 1.6rem;
  }

  #problem .textbox h3 {
    font-size: 3rem;
  }

  /* curriculum */
  #curriculum table th {
    width: 200px;
    font-size: 1.4rem;
    padding: 10px;
    line-height: 1.5em;
    text-align: left;
  }
  #curriculum table td {
    font-size: 1.4rem;
    padding: 10px;
    line-height: 1.5em;
    text-align: left;
  }
  #curriculum table td.arrow {
    width: 80px;
    padding: 0;
  }
  #curriculum table .head {
    font-size: 1.6rem;
  }
}

/* max 768px */
@media screen and (max-width: 768px) {
  /* ++++++++++++++++++++++++++++++++++++++++++++++ */
  /* 共通パーツ */
  /* ++++++++++++++++++++++++++++++++++++++++++++++ */

  /* header */
  .header {
    padding: 30px 5% 0 5%;
  }
  .header .logo {
    width: 60px;
  }

  .header .menubtn {
    top: 30px;
    right: 5%;
  }
  .header.is-animation .menubtn {
    padding-right: 15px;
    width: 120px;
    height: 60px;
  }
  .header .menubtn .menu:after {
    top: 2.5px;
    left: -50px;
  }
  .header.is-animation .menubtn .menu {
    margin-top: 20px;
  }

  /* c-pagetitle */
  #detail .c-inner {
    height: 550px;
  }
  #detail .text {
    padding-top: 50px;
  }
  .c-pagetitle .text .en_head {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }

  .c-pagetitle .text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }

  .c-pagetitle a.link {
    bottom: 30px;
  }

  /* c-pagetitle */
  #fv .c-inner {
  }

  /* c-conductor */
  #c-conductor ul li.box {
  }
  #c-conductor ul li.box a {
    height: auto;
    justify-content: flex-start;
    text-align: left;
    padding: 40px 90px 40px 0;
  }
  #c-conductor ul li.box a:after {
    border-width: 3px 0 3px 9px;
    right: 19px;
    margin-top: -3px;
  }
  #c-conductor ul li.box a:before {
    width: 50px;
    height: 50px;
    right: 0;
    margin-top: -25px;
  }
  #c-conductor ul li.box a:hover:before {
    width: 50px;
    height: 50px;
    right: 0;
    margin-top: -25px;
  }
  #c-conductor ul li.box a h2 {
    font-size: 2.2rem;
  }

  #c-conductor ul li.box a .en {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  /* c-iconlist */
  .c-iconlist li {
    font-size: 1.4rem;
  }
  .c-iconlist li:after {
    top: 6.5px;
  }

  /* c-setlist */
  .c-setlist .set {
    display: block;
    margin-bottom: 50px;
  }
  .c-setlist .set:nth-last-child(1) {
    margin-bottom: 0;
  }
  .c-setlist .set .text {
    width: 100%;
    padding-right: 5%;
  }

  .c-setlist .set .pht {
    padding-top: 20px;
    max-width: 400px;
    width: 100%;
    margin: auto;
  }

  .c-setlist .set h3 {
    font-size: 2.4rem;
  }

  /* c-table */
  .c-table th {
    padding: 10px;
    font-size: 1.3rem;
  }
  .c-table td {
    padding: 10px;
  }
  .c-table td p {
    font-size: 1.3rem;
  }

  .c-table td span {
    font-size: 1rem;
  }

  /* feature */
  #feature {
    padding: 80px 0 80px 0;
  }

  /* results */
  #results {
    padding: 60px 0 80px 0;
  }
  #results .list .box {
    padding: 30px;
  }
  #results .list .box .text {
    padding-bottom: 30px;
  }
  #results .list .box .text h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
  #results .list .box .text h3 span {
    font-size: 4.4rem;
  }

  #results .list .box .text .sub_txt {
    font-size: 1rem;
  }

  /* voice */
  #voice {
    padding: 60px 0 60px 0;
  }
  #voice .list .box {
    margin-bottom: 40px;
  }
  #voice .list .box .profile {
    width: 80px;
  }
  #voice .list .box .profile .human {
    width: 80px;
    height: 80px;
  }

  #voice .list .box .profile p {
    font-size: 1rem;
  }

  #voice .list .box .text {
    width: -webkit-calc(100% - 100px);
    width: calc(100% - 100px);
  }
  #voice .list .box.flex-end .text {
    margin-right: 20px;
  }
  #voice .list .box .text:after {
    top: 30px;
  }
  #voice .list .box .text p {
    padding: 20px;
    font-size: 1.6rem;
  }

  /* ++++++++++++++++++++++++++++++++++++++++++++++ */
  /* 認定試験制度ページ */
  /* ++++++++++++++++++++++++++++++++++++++++++++++ */

  /* qualification */
  #qualification {
    padding: 80px 0;
  }
  #qualification .schedule .days {
    padding: 25px 0 15px 0;
  }
  #qualification .schedule .off:after {
    display: block;
    font-size: 1.3rem;
    top: 24px;
    left: 70px;
    right: auto;
  }
  #qualification .schedule .days .years {
    font-size: 1rem;
  }

  #qualification .schedule .days time {
    font-size: 1.3rem;
  }

  /* ++++++++++++++++++++++++++++++++++++++++++++++ */
  /* 研修事業についてページ */
  /* ++++++++++++++++++++++++++++++++++++++++++++++ */

  /* lad */
  #lad {
    padding: 60px 0 60px 0;
    background: #0b0811 url("/wp/wp-content/uploads/2025/02/lad_txtbg.png") repeat-x left top /
      1600px;
  }
  #lad .read {
    margin-bottom: 40px;
  }
  #lad .read h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }

  #lad .read .c-txt {
    text-align: left;
  }

  #lad .whitebox {
    padding: 40px 25px;
  }
  #lad .whitebox h3 {
    font-size: 3.2rem;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  #lad .whitebox h3:after {
    width: 30px;
    margin-left: -15px;
  }

  #lad .whitebox .c-txt {
    text-align: left;
  }

  /* problem */
  #problem {
    padding: 0 0 60px 0;
  }
  #problem:before {
    height: 650px;
  }
  #problem ul.list {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  #problem ul.list li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 30px;
    padding: 20px 5px 20px 5px;
  }
  #problem ul.list li:nth-child(2n) {
    margin-right: 0;
  }
  #problem ul.list li .en {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  #problem ul.list li img {
    width: auto;
    height: 70px;
  }

  #problem ul.list li h3 {
    margin-top: 15px;
    font-size: 1.4rem;
    letter-spacing: 0;
  }

  #problem .textbox h3 {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }

  #problem .textbox .c-txt {
    text-align: left;
  }

  /* special */
  #special {
    padding: 60px 0;
  }
  #special .read {
    margin-bottom: 40px;
  }

  /* knowledge */
  #knowledge {
    padding: 0 0 80px 0;
  }
  #knowledge .sub_txt {
    font-size: 1rem;
  }

  /* training */
  #training {
    padding: 0 0 80px 0;
  }

  /* curriculum */
  #curriculum {
    padding: 60px 0 80px 0;
  }
  #curriculum table th {
    width: 100px;
    font-size: 1.2rem;
    padding: 8px;
    line-height: 1.4em;
    text-align: left;
  }
  #curriculum table td {
    font-size: 1.2rem;
    padding: 8px;
    line-height: 1.4em;
    text-align: left;
    border-right: solid 1px #ddd;
  }
  #curriculum table td.arrow {
    width: 70px;
    padding: 0 10px;
  }
  #curriculum table .head {
    font-size: 1.4rem;
    letter-spacing: 0;
  }

  /* taget */
  #taget {
    padding: 60px 0 60px 0;
  }
  #taget .box {
    max-width: 100%;
    padding: 25px;
  }

  /* certification */
  #certification {
    padding: 0 0 80px 0;
  }
  #certification .flex-start {
    display: block;
  }
  #certification .pht {
    width: 80%;
    margin: auto;
  }

  #certification .text {
    width: 100%;
    padding-top: 25px;
    padding-left: 0;
  }

  /* faq */
  #faq {
    padding: 0 0 80px 0;
  }
  #faq .list dl {
    margin-bottom: 10px;
  }
  #faq .list dl dt {
    padding: 15px 50px 15px 50px;
    font-size: 1.5rem;
    text-align: left;
    background: url("/wp/wp-content/uploads/2025/02/open.svg") no-repeat right 20px center;
  }
  #faq .list dl dt.active {
    background: url("/wp/wp-content/uploads/2025/02/close.svg") no-repeat right 20px center;
  }
  #faq .list dl dt:before {
    font-size: 1.7rem;
    left: 20px;
  }

  #faq .list dl dd {
    padding: 0 50px 15px 50px;
    font-size: 1.4rem;
  }
  #faq .list dl dd a {
    color: #4f7794;
    text-decoration: underline;
  }
  #faq .list dl dd:before {
    font-size: 1.7rem;
    left: 20px;
  }
}
