/*
Theme Name: genken
Theme URI: 
Template: lightning
Description: 
Author: 
Tags: 
Version: 0.6.0
*/

@charset "UTF-8";

* {
  box-sizing: border-box;
} /*全ての要素をborder-boxにするーーコンテンツ、border、paddingの合計がwidthと解釈される*/

html {
  font-size: 100%;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
/*設定した文字サイズを正しく反映*/

ul {
  list-style: none;
}

body {
  background-color: white;
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

a {
  cursor: pointer;
  color: black;
}

/* Luandinhvo */
.header-area {
  width: 100%;
  position: relative;
  background-color: #f5efe9;
  min-height: 85px;
  padding: 20px 45px 0;
  display: flex;
  align-items: flex-end;
}

.header-logo-nav {
  display: flex;
  align-items: flex-end; /*ヘッダー内ロゴ、ナビの上下方向下揃え*/
  width: 100%;
  margin-bottom: 7px;
}

.header-logo-syamei {
  width: 20%;
}

.header-nav {
  display: flex;
  flex-wrap: nowrap;
  font-size: 12px;
  font-weight: bold;
  padding-left: 0;
  width: 76.18%;
  margin: 0 0 7px;
}

.header-nav span {
  font-size: 11px;
}

.header-nav li {
  padding-right: 4px;
  padding-left: 4px;
  width: 96%;
  flex: 1;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
  text-align-last: justify;
}

.header-nav li + li {
  border-left: 0;
  border-right: 1px solid black;
}

/* 余白や背景色を調整する場合 */
.header-search {
  display: flex;
  position: absolute;
  top: 30px;
  right: 20px;
  height: 21px;
}

.header-search-custom {
  margin-left: 15px;
  cursor: pointer;
  margin-bottom: 9px;
}

.toggle-custom,
.toggle-close {
  display: none;
}

.wrap-search-form {
  display: none;
  width: 100%;
}

.search-form-header {
  max-width: 1152px;
  width: 95%;
  margin: 0 auto;
  background-color: #f5efe9;
  opacity: 0;
  height: 0;
  transition: opacity 0.5s ease-out, height 0.8s ease-out,
    margin-top 0.5s ease-out, border 0.8s ease-out;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.search-form-is-active {
  height: auto;
  opacity: 1;
  margin-top: 2rem;
}

.search-form {
  display: flex;
}

.search-form-popup {
  display: flex;
  width: 100%;
}

.search-form-input {
  border: none !important;
  background-color: transparent !important;
  outline: none !important;
  padding: 10px !important;
  width: 100% !important;
  font-size: 16px !important;
  margin: 0 !important;
}

.search-form-btn {
  border: none;
  background-color: transparent;
  cursor: pointer;
  padding: 0 12px;
  color: black;
  font-size: 16px;
}

/* Slide */

.slick-initialized .slick-slide {
  display: flex;
}

.slick-arrow {
  background: transparent;
  border: none;
  font-size: 2.6rem;
  cursor: pointer;
  padding: 1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
}

.slick-prev {
  left: 100px;
  z-index: 1;
}

.slick-prev__custom {
  margin-left: 1.5rem;
}

.slick-next {
  right: 100px;
}

.slick-dots {
  display: flex;
  justify-content: center;
  margin-top: 2px;
  margin-bottom: 20px;
  padding: 0;
}

.slick-dots li {
  margin: 0 20px;
}

.slick-dots button {
  width: 17px;
  height: 17px;
  border: none;
  border-radius: 100%;
  background-color: #6391d699;
  color: #6391d600;
  cursor: pointer;
  font-size: 0.5px;
}

.slick-dots .slick-active button {
  background-color: #6391d6;
}

/*====================メディアクエリーcss=======*/

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.nav-links ul {
  display: flex;
}

ul.page-numbers {
  border: none;
}

.nav-links li {
  margin: 0 5px; /* リンク間の間隔を調整 */
}

ul.page-numbers li {
  background-color: white;
  border: 1px solid #cccccc;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

ul.page-numbers :hover {
  color: white;
  background-color: #1c74bf;
}

ul.page-numbers li a,
ul.page-numbers li span {
  width: 43px;
  height: 43px;
  display: flex;
  justify-content: center;
  align-items: center;
}

ul.page-numbers li span.page-numbers.current {
  color: #fff;
  background-color: #1c74bf !important;
}

/*位置不明*/
.top-slide {
  width: auto !important;
}

.btn-area{
  display: flex;
  flex-direction: column;
}

.text-btn{
  margin: 5px auto;
  text-decoration: underline !important;
}

.register-btn{
  background-color: #2E5F9B;
  color: #fff;
  padding: 10px 30px;
  border-radius: 15px;
  width: 50%;
  min-width: 250px;
  margin-right: auto;
  text-align: center;
  font-weight: bold;
  position: relative;
  z-index: 999;
}

.pdf-popup {
  display: none; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); 
  z-index: 9999;
}

.pdf-popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  height: 95%;
  overflow: hidden;
}

.pdf-popup iframe {
  width: 100%;
  height: 100%;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #2E5F9B;
  color: #fff;
  border: none;
  font-size: 30px;
  cursor: pointer;
}

.year-se{
  background: #fff;
  border: 2px solid #000;
  color: #000;
  font-size: 20px;
  padding: 2px 10px;
}

@media (max-width: 678px) {
  .pdf-popup-content {
    width: 95%;
    max-height: 500px;
  }
  .slick-arrow img {
    width: 16px;
  }

  .slick-next {
    right: 2%;
  }

  .slick-prev {
    left: 2%;
  }

  .slick-dots li {
    margin: 0 8px;
  }

  .slick-dots button {
    width: 12px;
    height: 12px;
  }
  /*位置不明*/
  /* Luandinhvo */
  .header-area {
    padding: 15px 15px 0;
    /* border-bottom: 3px solid #000; */
  }

  .header-logo-syamei {
    width: 70%;
  }

  .header-nav {
    flex-direction: column;
    position: absolute;
    top: 85px;
    right: 15px;
    background-color: #ffffff;
    width: 236px;
    z-index: 1000;
    height: 0;
    opacity: 0;
    /* overflow: hidden; */
    transition: height 1s ease-in-out, opacity 0.6s ease-in-out;
  }

  .menu-is-active {
    height: auto;
    opacity: 1;
  }

  .header-nav li {
    border-left: none;
    border-right: none;
    text-align-last: justify;
    text-align: center;
    padding: 13px 40px;

    border-right: 2px solid #000;
    border-left: 2px solid #000;
    width: 100%;
  }

  .header-nav li:first-child {
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
  }

  .header-nav li + li {
    border-right: 2px solid #000;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
  }

  .header-nav li a {
    font-size: 16px;
  }

  .header-nav span {
    font-size: 14px;
  }

  .header-search-custom {
    margin-left: auto;
    margin-bottom: 0;
  }

  .header-search-custom i {
    font-size: 30px;
    color: #4f4f4f;
  }

  .toggle-custom {
    display: block;
    margin-left: auto;
  }

  .toggle-close {
    margin-left: auto;
  }

  .toggle-custom-non-active {
    display: none;
  }

  .toggle-close-active {
    display: block;
  }

  .toggle-close i {
    font-size: 36px;
    color: #4f4f4f;
  }

  .toggle-custom i {
    font-size: 30px;
    color: #4f4f4f;
  }
}

.footer-area {
  margin-top: 100px;
  padding-top: 20px;
  width: 100%;
  background-color: #f5efe9;
}

.footer-area-first {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  width: 78%;
}

.footer-area-second {
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  width: 78%;
}

.footer-nav {
  font-size: 16px;
}

.footer-nav li {
  line-height: 2;
}

.footer-nav li span {
  font-weight: bold;
}

.footer-address {
  margin-left: auto;
  margin-right: auto;
  line-height: 1;
  margin-top: 50px;
  width: 55%;
  padding-bottom: 50px;
  text-align: center;
}

.footer-address-sp {
  display: none;
}

.footer-address-pc {
  display: block;
}

.footer-address p {
  font-size: 16px;
}

.footer-copy-wrap {
  width: 50%;
  margin: 0 auto;
  display: flex;
}

.footer-copy-wrap p {
  font-size: 16px;
}

.pc-only {
  display: block;
}
.sp-only{
  display: none;
}

.register-btn:hover{
  color: #fff;
}

/*====================メディアクエリーcss=======*/

@media (max-width: 1150px) {
  .register-btn{
    margin: auto;
  }
  .footer-area {
    padding: 30px 15px;
    margin-top: 30px;
  }

  .footer-area-first {
    width: 100%;
    flex-wrap: wrap;
    margin-top: 0;
  }

  .footer-area-second {
    margin-top: 20px;
    width: 100%;
    flex-wrap: wrap;
  }

  .footer-address {
    width: 90%;
    margin-top: 0;
    padding-bottom: 0;
  }

  .footer-address-sp {
    display: block;
  }

  .footer-address-pc {
    display: none;
  }

  .footer-address p {
    font-size: 13px;
  }

  .footer-address-text {
    line-height: 1.6;
  }

  .footer-copy-wrap {
    width: 100%;
    text-align: center;
    display: block;
  }

  .footer-copy-wrap p {
    font-size: 13px;
    margin-bottom: 0;
  }

  .footer-copy-text {
    margin-top: 0;
  }

  .training {
    width: 100%;
  }

  .toppage,
  .company,
  .service,
  .study,
  .seminar,
  .reading,
  .information {
    width: 50%;
  }

  .service {
    margin-top: -122px;
  }

  .study {
    margin-left: -50%;
  }

  .footer-nav {
    padding: 0;
    margin-top: 0;
  }

  .footer-nav li {
    font-size: 13px;
  }

  .nav-links ul {
    flex-wrap: wrap;
  }

  ul.page-numbers li {
    margin-bottom: 10px;
  }

  ul.page-numbers {
    padding-left: 0px;
  }

  ul.page-numbers li {
    font-size: 16px;
  }
}

@media (max-width: 678px) {
  .pc-only {
    display: none;
  }
  .sp-only{
    display: block;
  }
}

.slick-track {
  will-change: transform;
  -webkit-overflow-scrolling: touch;
}
