/*
Theme Name: 協会オリジナル
Author: sara ikeda
Version: 0.1
*/

@charset "urf-8";
/*----基本設定----*/
html {
  font-size: 62.5%;
  color: #707071;
}
body {
  font-size: 1.4rem;
  max-width: 100%;
  text-align: center;
  margin: auto;
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN";
  font-weight: 400;
  letter-spacing: 0.05em;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
section {
  width: 73%;
  padding: 15px 0;
  margin: auto;
}
a {
  text-decoration: none;
  color: #707071;
  cursor: pointer;
}
p {
  text-align: left;
}
h1 {
  font-size: 28rpx;
  font-weight: 600;
}
h2 {
  font-size: 20px;
  font-weight: 600;
  text-align: left;
}
h3 {
  font-size: 16px;
  text-align: left;
  color: #025aab;
  padding: 5px;
  border-bottom: solid 1px #d5d5d5;
}
li {
  text-align: left;
}
img {
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  margin: auto;
}
ul {
  padding-inline-start: 0px;
}
/*----ヘッダー----*/
header {
  width: 100%;
}
.head-logo {
  width: 90%;
  height: 80px;
  display: flex;
  padding-top: 15px;
  margin: auto;
}
.head-logo a {
  display: block;
  margin: auto 0 auto 7%;
}
.head-logo a .top-logo {
  width: 300px;
}
.head-logo > div:last-of-type {
  margin-left: auto;
}
.head-info-all {
  display: flex;
  margin-right: 20px;
}
.head-info p {
  font-size: 10px;
  margin-right: 15px;
}
.head-info .tell {
  font-size: 20px;
  font-weight: 600;
  color: #025aab;
  display: flex;
}
.head-info .tell img {
  width: 20px;
}
.head-info-all .head-inquiry {
  height: 45px;
  font-weight: 600;
  color: #025aab;
  padding: 5px 20px;
  margin: auto;
  border: 2px solid #025aab;
  display: flex;
  position: relative;
}
.mail-blue {
  width: 25px;
  margin-top: 6px;
}
.mail-white {
  width: 25px;
  margin-top: 6px;
  display: none;
}
.head-info-all .head-inquiry span {
  font-size: 16px;
  margin: 3px auto 2px 7px;
}
.head-info-all .head-inquiry:before {
  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 5px;

  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;

  background: #025aab;
}
.head-info-all .head-inquiry:hover {
  color: #fff;
  background: #025aab;
}
.head-info-all .head-inquiry:hover:before {
  background-color: #fff;
}
.head-info-all .head-inquiry:hover .mail-white {
  display: block;
}
.head-info-all .head-inquiry:hover .mail-blue {
  display: none;
}
.breadcrumb-all {
  width: 100%;
  background-color: #efefef;
}
.breadcrumb-area {
  width: 75%;
  font-size: 12px;
  padding: 10px;
  margin: auto;
  display: inline-flex;
}
.breadcrumb-area span {
  margin: auto 5px;
}
/*----ナビゲーション----*/
.gnavi__wrap {
  width: 100%;
  margin: 0 auto;
  font-size: 15px;
}
.menu-sidemenu-container {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
}
.menu {
  display: flex;
  list-style: none;
}
.menu .menu-item {
  display: block;
  width: 120px;
  height: 24px;
  text-align: center;
  background-color: white;
  padding: 2px 2px;
  margin: 0;
  border-right: 1px solid #d5d5d5;
  cursor: pointer;
}
.menu .menu-item:hover {
  background-color: #025aab;
  color: #fff;
}
.menu .menu-item-a {
  display: block;
  width: 155px;
  height: 24px;
  text-align: center;
  background-color: white;
  padding: 2px 20px;
  margin: 0 0 0 auto;
  border-left: 1px solid #d5d5d5;
  border-right: 1px solid #d5d5d5;
}
.menu .menu-item-a .title-a {
  display: block;
  height: 24px;
}
.menu .menu-item-a:hover {
  background-color: #025aab;
}
.menu .menu-item-a:hover .title-a {
  color: #fff;
}
.menu .menu-item-a-last {
  display: block;
  width: 120px;
  height: 24px;
  text-align: center;
  background-color: white;
  padding: 2px 20px;
  margin: 0 auto 0 0;
  border-right: 1px solid #d5d5d5;
}
.menu .menu-item-a-last:hover {
  background-color: #025aab;
}
.menu .menu-item-a-last:hover .title-a {
  color: #fff;
}
.sub-menu {
  display: none; /*デフォルトでは非表示の状態にしておく*/
  position: absolute;
  top: 20px;
  left: 0;
  list-style: none;
}
.menu-item-has-children:hover .sub-menu {
  display: block; /*Gナビメニューにホバーしたら表示*/
  width: 100%;
  height: auto;
  background-color: #025aab;
  color: #707071;
  padding: 2% 12%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  z-index: 100;
}
.sub-menu .menu-item {
  display: block;
  width: 30%;
  height: 60px;
  background-color: white;
  padding: 0;
  margin: 0.8%;
  position: relative;
}
.sub-menu .menu-item :before {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-style: solid;
  border-width: 1px;
  border-color: #707071;
}
.sub-menu .menu-item:hover :before {
  border-color: white;
}
.menu .menu-item:hover a {
  display: block;
  color: #707071;
}
.sub-menu .menu-item:hover a {
  color: white;
}
.sub-menu .menu-item a {
  display: block;
  height: 60px;
  font-size: 12px;
  text-align: left;
  padding: 21px 10px;
  position: relative;
}
.sub-menu .menu-item a .kourousyou {
  width: 160px;
  margin-left: 0;
  margin-top: -15px;
}
.sub-menu .menu-item .towa {
  display: block;
  height: 60px;
  font-size: 10px;
  text-align: left;
  padding: 15px 10px;
  position: relative;
}
.sub-menu .menu-item .towa .towa-flex {
  width: 100%;
  height: 100%;
  display: flex;
}
.sub-menu .menu-item .towa .towa-flex img {
  width: 60px;
  margin: -5px 5px auto 2px;
}
.sub-menu .menu-item .towa .towa-flex img span {
  display: block;
  text-align: left;
}
.sub-menu .menu-item a:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #707071;
  position: absolute;
  top: 50%;
  right: 8px;
  margin-top: -6px;
}
.sub-menu .menu-item a:hover::after {
  border-color: transparent transparent transparent #fff;
}
.sub-menu .blue:hover {
  width: 30%;
  color: #fff;
  background: #91afdc;
}
.sub-menu .sky:hover {
  width: 30%;
  color: #fff;
  background: #9bcde1;
}
.sub-menu .purple:hover {
  width: 30%;
  color: #fff;
  background: rgb(185, 155, 225);
}
.sub-menu .yellow:hover {
  width: 30%;
  color: #fff;
  background: #f4d264;
}
.sub-menu .darkblue:hover {
  width: 30%;
  color: #fff;
  background: #7dc4ef;
}
.sub-menu .gray:hover {
  width: 30%;
  color: #fff;
  background: #d5d5d5;
}
.sub-menu .insta:hover {
  width: 30%;
  color: #fff;
  background-image: linear-gradient(
    90deg,
    rgba(200, 145, 220, 1),
    rgba(255, 108, 142, 1) 50%,
    rgba(255, 207, 118, 1)
  );
}
/*----フッター----*/
footer {
  width: 100%;
  background-color: #efefef;
  list-style: none;
}
footer .footer-nav {
  width: 90%;
  font-size: 12px;
  text-align: left;
  padding: 35px 0;
  margin: auto;
  display: flex;
}
footer .footer-nav .fn-mass {
  width: 19%;
  margin-right: 10px;
}
footer .footer-nav .last-moss {
  margin-left: -10%;
}
footer .footer-nav .fn-mass ul {
  list-style: none;
}
footer .footer-nav .fn-mass ul .li-title {
  font-size: 14px;
  font-weight: 600;
}
footer .footer-nav .company-all {
  width: auto;
  font-weight: 600;
  margin-top: 35px;
  margin-left: -10%;
}
footer .footer-nav .company-all .footer-logo {
  width: 200px;
  margin-left: 0;
}
footer .footer-nav .company-all .company {
  font-size: 14px;
}
footer .footer-nav .company-all .company .cp-info {
  font-size: 14px;
}
.footer-bottom {
  width: 100%;
  height: 80px;
  background-color: white;
  padding: 10px 0;
  position: relative;
}
.footer-bottom .arrow-bg {
  background-color: white;
  width: 44px;
  height: 44px;
  transform: rotate(45deg);
  position: absolute;
  top: -15px;
  right: 10%;
}
.footer-bottom .arrow-Top {
  border-top: solid 2px black;
  border-left: solid 2px black;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 8px;
  left: 8px;
}
.footer-bottom .arrow-Top .arrow-Top2 {
  border-top: solid 2px black;
  border-left: solid 2px black;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 5px;
  left: 5px;
}
footer .footer-bottom .copywriter {
  font-size: 14px;
  text-align: center;
}
/*----トップページ----*/
#top-page {
  width: 100%;
  font-size: 1.6em;
}
/*----スライダー----*/
.top-slider {
  width: 100%;
}
/*----お申込み・予約----*/
.top-reserve {
  width: 75%;
  margin: 80px auto 40px auto;
}
.top-reserve h1 {
  width: 97%;
  position: relative;
  margin: 25px auto;
}
.top-reserve h1:before,
.top-reserve h1:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 30%;
  height: 6px;
  border-top: solid 2px #025aab;
  border-bottom: solid 2px #025aab;
}
.top-reserve h1:before {
  left: 0;
}
.top-reserve h1:after {
  right: 0;
}
.reserve-botton-all {
  display: flex;
  margin: auto;
}
.reserve-botton-all .reserve-botton {
  width: 31%;
  margin: 15px auto;
}
.reserve-botton-all .reserve-botton .rb-li {
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
}
.reserve-botton-all .reserve-botton .blue {
  border: 2px solid #91afdc;
  border-radius: 0;
  background: #fff;

  -webkit-transform-style: preserve-3d;

  transform-style: preserve-3d;
}
.reserve-botton-all .reserve-botton .blue a {
  color: #91afdc;
}
.reserve-botton-all .reserve-botton .blue:before {
  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 5px;

  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;

  background: #91afdc;
}
.reserve-botton-all .reserve-botton .blue:hover {
  color: #fff;
  background: #91afdc;
}
.reserve-botton-all .reserve-botton .blue:hover a {
  color: white;
}
.reserve-botton-all .reserve-botton .blue:hover:before {
  background: #fff;
}
.reserve-botton-all .reserve-botton .sky {
  border: 2px solid #9bcde1;
  border-radius: 0;
  background: #fff;

  -webkit-transform-style: preserve-3d;

  transform-style: preserve-3d;
}
.reserve-botton-all .reserve-botton .sky a {
  color: #9bcde1;
}
.reserve-botton-all .reserve-botton .sky:before {
  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 5px;

  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;

  background: #9bcde1;
}
.reserve-botton-all .reserve-botton .sky:hover {
  color: #fff;
  background: #9bcde1;
}
.reserve-botton-all .reserve-botton .sky:hover a {
  color: #fff;
}
.reserve-botton-all .reserve-botton .sky:hover:before {
  background: #fff;
}
.reserve-botton-all .reserve-botton .green {
  border: 2px solid #9bc8aa;
  border-radius: 0;
  background: #fff;

  -webkit-transform-style: preserve-3d;

  transform-style: preserve-3d;
}
.reserve-botton-all .reserve-botton .green a {
  color: #9bc8aa;
}
.reserve-botton-all .reserve-botton .green:before {
  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 5px;

  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;

  background: #9bc8aa;
}
.reserve-botton-all .reserve-botton .green:hover {
  color: #fff;
  background: #9bc8aa;
}
.reserve-botton-all .reserve-botton .green:hover a {
  color: white;
}
.reserve-botton-all .reserve-botton .green:hover:before {
  background: #fff;
}
.reserve-botton-all .caption {
  display: block;
  width: 100%;
  font-size: 14px;
  text-align: right;
  padding: 5px 0;
}
/*----松江講習会場----*/
.top-matsue {
  width: 100%;
  background-image: url(https://tgkk.or.jp/wp-content/themes/original/images/pc/matsue_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: white;
  padding: 40px 0 20px 0;
}
.top-matsue h1 {
  width: 73%;
  color: white;
  margin: auto;
  position: relative;
  margin: 25px auto;
}
.top-matsue h1:before,
.top-matsue h1:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 35%;
  height: 6px;
  border-top: solid 2px white;
  border-bottom: solid 2px white;
}
.top-matsue h1:before {
  left: 0;
}
.top-matsue h1:after {
  right: 0;
}
.top-matsue p {
  margin: 25px 0;
  text-align: center;
}
.top-matsue p span {
  background: linear-gradient(transparent 60%, #9bc8aa 60%);
  width: 100px;
  margin: auto;
}
.top-matsue .matsue-botton {
  display: block;
  width: 230px;
  height: 50px;
  background-color: white;
  margin: 15px auto;
  position: relative;
}
.top-matsue .matsue-botton :before {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #025aab;
}
.top-matsue .matsue-botton a {
  display: block;
  width: 230px;
  height: 50px;
  color: #025aab;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 5px;
  position: relative;
}
.top-matsue .matsue-botton a:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #025aab;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -6px;
}
.top-matsue .image-box {
  width: 100%;
  display: flex;
}
.top-matsue .image-box .image-list {
  width: 24.25%;
  margin-right: 1%;
}
.top-matsue .image-box > div:last-of-type {
  margin: 0;
}
/*----出張講習----*/
.business-trip {
  width: 75%;
  margin: 40px auto;
}
.business-trip h1 {
  width: 100%;
  margin: 40px auto;
}
.business-trip h1 {
  width: 100%;
  position: relative;
  display: inline-block;
}
.business-trip h1:before,
.business-trip h1:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 35%;
  height: 6px;
  border-top: solid 2px #f4d264;
  border-bottom: solid 2px #f4d264;
}
.business-trip h1:before {
  left: 0;
}
.business-trip h1:after {
  right: 0;
}
.business-trip-all {
  display: flex;
}
.business-trip-all img {
  width: 35%;
}
.business-trip .business-trip-all .bt-p {
  width: 65%;
  font-size: 14px;
  padding: 10px 15px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.business-trip .business-trip-all .bt-p p {
  text-align: left;
  padding-bottom: 10px;
}
.bt-p .bt-a {
  display: block;
  width: 230px;
  height: 50px;
  border: solid 2px #f4d264;
  margin: 10px 0 0 auto;
  position: relative;
}
.bt-p .bt-a:before {
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #f4d264;
}
.bt-p .bt-a a {
  display: block;
  width: 230px;
  height: 50px;
  color: #f4d264;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  padding: 11px 5px;
  position: relative;
}
.bt-p .bt-a a:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #f4d264;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -8px;
}
/*-ユーザーの声----*/
.user-voice {
  width: 75%;
  margin: 30px auto;
}
.user-voice h1 {
  width: 100%;
  color: #707071;
  position: relative;
  display: inline-block;
}
.user-voice h1:before,
.user-voice h1:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 25%;
  height: 6px;
  border-top: solid 2px #9bcde1;
  border-bottom: solid 2px #9bcde1;
}
.user-voice h1:before {
  left: 0;
}
.user-voice h1:after {
  right: 0;
}
.user-voice .voice-list {
  width: 100%;
  margin: 5px auto;
  display: flex;
}
.user-voice .voice-list .voice {
  width: 48%;
  background-color: white;
  padding: 0;
  margin: 1%;
}
.user-voice .voice-list .voice span {
  display: block;
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  color: #025aab;
  text-align: left;
}
.user-voice .voice-list .voice img {
  padding-top: 10px;
}
.user-voice .smp {
  display: none;
}
/*----新着情報----*/
.whats-new {
  width: 75%;
  margin: 30px auto;
  display: flex;
}
.whats-new .new-list {
  width: 60%;
  padding: 15px;
}
.whats-new .new-list h1 {
  width: 100%;
  font-size: 20px;
  text-align: left;
}
.whats-new .new-list ul {
  width: 93%;
  list-style: none;
  margin-left: 0;
}
.whats-new .new-list ul li {
  width: 100%;
  border-bottom: solid 1px #707071;
}
.whats-new .new-list ul li:first-of-type {
  width: 100%;
  border-top: solid 1px #707071;
  border-bottom: solid 1px #707071;
}
.whats-new .new-list ul li p {
  font-size: 12px;
  margin: 10px;
}
.whats-new .new-list .nl-a {
  width: 93%;
  border: solid 1px #707071;
  font-size: 16px;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-left: 0;
  position: relative;
}
.whats-new .new-list .nl-a:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #707071;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -6px;
}
.whats-new .new-list .nl-a a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
}
.whats-new .youtube-wrap {
  max-width: 40%;
  margin: 15px auto auto auto;
}
.whats-new .youtube-wrap h1 {
  font-size: 20px;
  text-align: left;
}
.whats-new .youtube-swap .youtube {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.whats-new .youtube-swap .youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*----固定ページ----*/
header .main-content-title {
  padding: 5px 0 5px 15px;
  border-left: solid 10px #025aab;
}
.wp-block-flexible-table-block-table .has-fixed-layout thead tr th {
  background-color: #efefef;
  font-weight: 400;
  text-align: left;
  padding: 10px;
  border: solid 1px #efefef;
}
.wp-block-flexible-table-block-table .has-fixed-layout tbody tr td {
  text-align: left;
  padding: 15px 10px;
  border: solid 1px #efefef;
}
.wp-block-flexible-table-block-table .has-fixed-layout tbody tr td span {
  color: #b40000;
}
.wp-block-flexible-table-block-table .has-fixed-layout {
  border-collapse: collapse; /* セルの線を重ねる */
}
.wp-block-column
  .wp-block-flexible-table-block-table
  .has-fixed-layout
  tbody
  tr
  td
  strong {
  display: block;
  text-indent: -1em;
  padding: 0 0 0 1em;
  margin: 0;
}
.bottom-info {
  width: 100%;
  border: solid 1px #d5d5d5;
  padding: 20px;
  margin: 40px auto;
}
.bottom-info h1 {
  font-size: 20px;
}
.bottom-info p {
  font-size: 12px;
  text-align: center;
}
.bottom-info p span {
  font-size: 18px;
  font-weight: 600;
}
.bottom-info a {
  display: block;
  width: 90%;
  font-size: 20px;
  font-weight: 600;
  padding: 25px;
  background-color: white;
  color: #707071;
  margin: auto;
  border: 2px solid #707071;
  position: relative;
}
.bottom-info a:before {
  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 5px;

  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;

  background: #707071;
}
.bottom-info a:hover {
  color: #fff;
  background: #707071;
}
.bottom-info a:hover a {
  color: white;
}
.bottom-info a:hover:before {
  background: #fff;
}
/*----技能講習・特別教育・安全教育----*/
.with-bottun {
  width: 100%;
  display: flex;
}
.with-bottun .wb-h2 {
  width: 50%;
}
.with-bottun .application {
  width: 50%;
  margin: auto;
}
#short_course-education .with-bottun .application a {
  display: block;
  width: 300px;
  font-weight: 600;
  color: #9bcde1;
  background-color: white;
  padding: 10px 35px;
  margin: auto 0 auto auto;
  border: 2px solid #9bcde1;
  position: relative;
}
#short_course-education .with-bottun .application a:before {
  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 5px;

  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;

  background: #9bcde1;
}
#short_course-education .with-bottun .application a:hover {
  color: #fff;
  background: #9bcde1;
}
#short_course-education .with-bottun .application a:hover a {
  color: #fff;
}
#short_course-education .with-bottun .application a:hover:before {
  background: #fff;
}
#short_course-education .with-bottun .ginou a {
  display: block;
  width: 300px;
  font-weight: 600;
  color: #91afdc;
  background-color: white;
  padding: 10px 35px;
  margin: auto 0 auto auto;
  border: 2px solid #91afdc;
  position: relative;
}
#short_course-education .with-bottun .ginou a:before {
  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 5px;

  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;

  background: #91afdc;
}
#short_course-education .with-bottun .ginou a:hover {
  color: #fff;
  background: #91afdc;
}
#short_course-education .with-bottun .ginou a:hover a {
  color: #fff;
}
#short_course-education .with-bottun .ginou a:hover:before {
  background: #fff;
}
#short_course-education
  .wp-block-flexible-table-block-table
  .has-fixed-layout
  thead
  tr
  th {
  background-color: #025aab;
  color: #fff;
  font-weight: 400;
  text-align: left;
  padding: 10px;
  border: solid 1px #efefef;
}
#short_course-education
  .wp-block-flexible-table-block-table
  .has-fixed-layout
  tbody
  tr
  td {
  text-align: left;
  padding: 10px;
  border: solid 1px #efefef;
}
#short_course-education .wp-block-flexible-table-block-table .has-fixed-layout {
  border-collapse: collapse; /* セルの線を重ねる */
}
#short_course-education .wp-block-flexible-table-block-table figcaption {
  font-size: 18px;
  text-align: left;
  margin-top: 10px;
  margin-bottom: 10px;
}
#short_course-education
  .wp-block-flexible-table-block-table
  figcaption
  strong
  a {
  color: #b40000;
}
.completion {
  width: 100%;
  margin: 15px auto;
}
.completion .flex {
  display: flex;
}
.completion .flex .flex-left {
  width: 60%;
}
.completion .flex .flex-right {
  width: 40%;
}
.completion .flex div img {
  width: 250px;
  height: auto;
  margin: auto;
}
.business-trip-page {
  width: 100%;
  margin: 15px auto;
}
.business-trip-page .flex {
  display: flex;
}
.business-trip-page .flex .flex-left {
  width: 60%;
}
.business-trip-page .flex .flex-right {
  width: 30%;
  margin: auto 0 auto auto;
  border: 2px solid #f4d264;
  border-radius: 0;
  background: #fff;

  -webkit-transform-style: preserve-3d;

  transform-style: preserve-3d;
}
.business-trip-page .flex .flex-right a {
  display: block;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  color: #f4d264;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}
.business-trip-page .flex .flex-right a:before {
  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 5px;

  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;

  background: #f4d264;
}
.business-trip-page .flex .flex-right:hover {
  color: #fff;
  background: #f4d264;
}
.business-trip-page .flex .flex-right:hover a {
  color: white;
}
.business-trip-page .flex .flex-right a:hover:before {
  background: #fff;
}
.reserve-botton-all .caption {
  width: 100%;
  font-size: 12px;
  text-align: right;
}
.page-bottom {
  width: 100%;
  margin: 50px auto;
}
.page-bottom .pg-ginou {
  width: 100%;
  margin: auto;
  border-radius: 0;
  background: #fff;

  -webkit-transform-style: preserve-3d;

  transform-style: preserve-3d;
}
.page-bottom .pg-ginou a {
  display: block;
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  color: #91afdc;
  padding: 25px;
  border: 2px solid #91afdc;
  position: relative;
}
.page-bottom .pg-ginou a:before {
  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 5px;

  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;

  background: #91afdc;
}
.page-bottom .pg-ginou:hover {
  color: #fff;
  background: #91afdc;
}
.page-bottom .pg-ginou:hover a {
  color: white;
}
.page-bottom .pg-ginou a:hover:before {
  background: #fff;
}
.page-bottom .pg-tokubetu {
  width: 100%;
  margin: auto;
  border-radius: 0;
  background: #fff;

  -webkit-transform-style: preserve-3d;

  transform-style: preserve-3d;
}
.page-bottom .pg-tokubetu a {
  display: block;
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  color: #9bcde1;
  padding: 25px;
  border: 2px solid #9bcde1;
  position: relative;
}
.page-bottom .pg-tokubetu a:before {
  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 5px;

  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;

  background: #9bcde1;
}
.page-bottom .pg-tokubetu:hover {
  color: #fff;
  background: #9bcde1;
}
.page-bottom .pg-tokubetu:hover a {
  color: white;
}
.page-bottom .pg-tokubetu a:hover:before {
  background: #fff;
}
.page-bottom .caption {
  display: block;
  font-size: 14px;
  text-align: right;
  padding: 10px;
  margin-right: 0;
}
/*----建築物石綿含有建材調査者講習----*/
#ishiwata .with-bottun .application a {
  display: block;
  width: 300px;
  font-weight: 600;
  color: #9bc8aa;
  background-color: white;
  padding: 10px 35px;
  margin: auto 0 auto auto;
  border: 2px solid #9bc8aa;
  position: relative;
}
#ishiwata .with-bottun .application a:before {
  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 5px;

  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;

  background: #9bc8aa;
}
#ishiwata .with-bottun .application a:hover {
  color: #fff;
  background: #9bc8aa;
}
#ishiwata .with-bottun .application a:hover a {
  color: #fff;
}
#ishiwata .with-bottun .application a:hover:before {
  background: #fff;
}
#ishiwata .wp-block-flexible-table-block-table .has-fixed-layout thead tr th {
  background-color: #025aab;
  color: #fff;
  font-weight: 400;
  text-align: left;
  padding: 10px;
  border: solid 1px #efefef;
}
#ishiwata .wp-block-flexible-table-block-table .has-fixed-layout tbody tr td {
  text-align: left;
  padding: 10px;
  border: solid 1px #efefef;
}
#ishiwata .wp-block-flexible-table-block-table .has-fixed-layout {
  border-collapse: collapse; /* セルの線を重ねる */
}
#ishiwata .wp-block-flexible-table-block-table figcaption {
  font-size: 18px;
  text-align: left;
  margin-top: 10px;
}
#ishiwata .wp-block-flexible-table-block-table figcaption a {
  color: red;
}
.page-bottom .pg-ishiwata a {
  display: block;
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  color: #9bc8aa;
  padding: 25px;
  border: 2px solid #9bc8aa;
  position: relative;
}
.page-bottom .pg-ishiwata a:before {
  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 5px;

  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;

  background: #9bc8aa;
}
.page-bottom .pg-ishiwata:hover {
  color: #fff;
  background: #9bc8aa;
}
.page-bottom .pg-ishiwata:hover a {
  color: white;
}
.page-bottom .pg-ishiwata a:hover:before {
  background: #fff;
}
/*----出張講習について----*/
.with-bottun .application-bt {
  width: 50%;
  margin: auto;
}
.with-bottun .application-bt a {
  display: block;
  width: 300px;
  font-weight: 600;
  color: #f4d264;
  background-color: white;
  padding: 10px 35px;
  margin: auto 0 auto auto;
  border: 2px solid #f4d264;
  position: relative;
}
.with-bottun .application-bt a:before {
  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 5px;

  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;

  background: #f4d264;
}
.with-bottun .application-bt a:hover {
  color: #fff;
  background: #f4d264;
}
.with-bottun .application-bt a:hover a {
  color: white;
}
.with-bottun .application-bt a:hover:before {
  background: #fff;
}
.business-trip-info {
  width: 100%;
  border: solid 1px #d5d5d5;
  padding: 15px;
  margin: 30px auto;
}
.business-trip-info h1 {
  color: #f4d264;
}
.business-trip-info p {
  font-size: 12px;
  text-align: center;
}
.business-trip-info p span {
  font-size: 18px;
  font-weight: 600;
}
.business-trip-info a {
  display: block;
  width: 85%;
  background-color: #fff;
  color: #f4d264;
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  padding: 25px 1px;
  margin: 10px auto;
  border: 2px solid #f4d264;
  position: relative;
}
.business-trip-info a:before {
  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 5px;

  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;

  background: #f4d264;
}
.business-trip-info a:hover {
  color: #fff;
  background: #f4d264;
}
.business-trip-info a:hover a {
  color: white;
}
.business-trip-info a:hover:before {
  background: #fff;
}

.single-all .Widget ul.column-list,
.archive-all .Widget ul.column-list {
  width: initial;
  border: none;
  margin: 1% auto;
  padding: 1px;
}
.single-all .Widget ul.column-list ul,
.archive-all .Widget ul.column-list ul {
  width: initial;
  border: none;
  margin: 1% auto;
  padding: 1px;
}
h2.widgettitle {
  background: #025aab;
  padding: 2px 8px 0;
  color: #fff;
}
/* pagination */
.pagination {
  text-align: center;
}
ul.page-numbers li,
ul.page-numbers li:first-of-type {
  width: initial !important;
  border: none !important;
}
.nav-links .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a.page-numbers,
.nav-links .current,
.nav-links a.prev,
.nav-links a.next,
.nav-links .dots {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  background: #fff;
  color: #7090dd;
  border-radius: 50%;
  margin-right: 25px;
  font-size: 12px;
  font-weight: bold;
  border: 1px solid #7090dd;
}

.nav-links a.page-numbers:hover {
  color: #fff;
  background-color: #999;
  border-color: #999;
  border-radius: 50%;
}

.nav-links .current {
  background: #7090dd;
  color: #ffffff;
  padding: 0;
}

/* 前への「＜」、次への「＞」 */
.nav-links a.prev,
.nav-links a.next {
  border: 1px solid #004bb1;
  color: #004bb1;
  position: relative;
}

.nav-links .next::before {
  left: -15px;
}

.nav-links .prev::after {
  right: -15px;
}

.nav-links .dots {
  background: transparent;
  border: none;
}
/* cta-btn */
.column-cta {
  border: 1px solid #999;
  width: 95%;
  padding: 1em;
}
.column-cta ul {
  list-style: none;
}
.column-cta h2 {
  background: #025aab;
  padding: 2px 8px 0;
  color: #fff;
}
.column-cta h3 {
  font-size: 16px;
  text-align: left;
  color: #025aab;
  padding: 5px;
  border-bottom: solid 1px #d5d5d5;
}
.column-cta-btn {
  font-weight: bold;
  padding: 2px 10px;
  background: #025aab;
  color: #fff;
}
.column-list .column-cta figure {
  margin-bottom: 1em;
}
/*----スマホでカラムの表示順変更----*/
/* 親要素でflex指定 */
.reversebox {
  display: flex;
}
/* 幅600px以下は縦向き表示にする設定 */
@media screen and (max-width: 600px) {
  .reversebox {
    flex-direction: column;
  }
}
/* 子要素に縦向きの際の並び順を指定 */
@media screen and (max-width: 600px) {
  .order1 {
    order: 1;
  }
  .order2 {
    order: 2;
  }
}
/*----出張講習カレンダー----*/
.eo-fullcalendar {
  width: 100%;
  margin: 30px 0 60px 0;
}
.fc-toolbar {
  width: 96%;
  height: 30px;
  margin: auto;
}
.fc-toolbar .fc-button-group {
  float: none;
}
.fc-toolbar .fc-button-group button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  width: 30px;
  height: 30px;
}
.fc-toolbar .fc-button-group button .fc-icon-left-single-arrow {
  position: relative;
  width: 30px;
  height: 30px;
}
.fc-toolbar .fc-button-group button .fc-icon-left-single-arrow::after {
  position: absolute;
  top: 5px;
  left: 10px;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #707071;
  border-right: 2px solid #707071;
  -webkit-transform: rotate(225deg);
}
.eo-fullcalendar .fc-toolbar .fc-left .fc-button-group .fc-state-default {
  color: #fff;
  text-shadow: none;
  box-shadow: none;
  background-image: none;
}
.fc-toolbar .fc-button-group button .fc-icon-right-single-arrow {
  position: relative;
  width: 30px;
  height: 30px;
}
.fc-toolbar .fc-button-group button .fc-icon-right-single-arrow::after {
  position: absolute;
  top: 5px;
  left: 10px;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #707071;
  border-right: 2px solid #707071;
  -webkit-transform: rotate(45deg);
}
.eo-fullcalendar .fc-toolbar .fc-right .fc-button-group .fc-state-default {
  color: #fff;
  text-shadow: none;
  box-shadow: none;
  background-image: none;
}
.eo-fullcalendar .fc-toolbar .fc-center h2 {
  font-size: 20px;
  text-align: center;
}
.fc-widget-header table thead tr .fc-widget-header {
  background-color: white;
  font-weight: 400;
}
.fc-widget-header table thead tr .fc-sat {
  color: #025aab;
}
.fc-widget-header table thead tr .fc-sun {
  color: #b40000;
}
.eo-fullcalendar
  .fc-view-container
  .fc-view
  table
  tbody
  .fc-widget-content
  .fc-day-grid-container
  .fc-day-grid
  .fc-row
  .fc-content-skeleton
  table
  tbody
  td
  .fc-day-grid-event {
  margin-bottom: 5px;
  padding: 0 5px;
  line-height: 20px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  font-size: 10px;
  font-feature-settings: "palt";
  letter-spacing: 0;
}
.fc-day-grid-event .fc-content {
  white-space: normal;
  overflow: visible;
}
.eo-fullcalendar td {
  border-right: 1px #ddd solid !important;
}
/*----投稿一覧----*/
.archive-all {
  margin: auto;
  display: flex;
}
.archive-all .whats-new {
  width: 65%;
  margin: 30px auto;
}
.archive-all .whats-new .new-list {
  width: 100%;
  text-align: left;
  padding: 15px;
}
.archive-all .whats-new .new-list h1 {
  font-size: 18px;
  padding: 5px 0 5px 10px;
  margin: 0 auto 80px auto;
  border-left: solid 5px #025aab;
}
.archive-all .Widget {
  width: 28%;
}
.archive-all .Widget ul {
  width: 200px;
  border: solid 1px #707071;
  padding: 10px 0 40px 30px;
  margin: 112px 1% auto 1%;
  list-style: none;
}
.archive-all .Widget ul li {
  width: 100%;
  font-size: 12px;
  text-align: left;
  padding: 5px 0;
  position: relative;
}
.archive-all .Widget ul li a::before {
  /*タイトル横の矢印*/
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #707071;
  border-right: 1px solid #707071;
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 3px);
  right: 30px;
  transform: rotate(45deg);
}
.archive-all .Widget ul li a {
  display: inline;
}
.more-btn {
  width: 100%;
  padding: 10px;
  border: 1px solid #707071;
  margin: 20px auto 0 auto;
}
.more-btn a {
  display: block;
  width: 100%;
  text-align: center;
  position: relative;
}
/*----投稿ページ----*/
.single-all {
  margin: 20px auto;
  display: flex;
  justify-content: space-around;
}
.single-all .single-page {
  width: 65%;
}
.single-all .single-page h1 {
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  padding: 5px 0 5px 10px;
  margin-left: 3%;
  border-left: solid 5px #025aab;
}
.single-all .single-page p {
  font-size: 14px;
  margin: 20px;
  text-align: left;
}
.single-all .single-page .page-next {
  width: 80%;
  font-size: 14px;
  margin: auto auto 10px auto;
  display: flex;
}
.single-all .single-page .page-next a {
  width: 20%;
}
.single-all .single-page .page-next .page-all {
  width: 60%;
  margin-top: -20px;
}
.single-all .single-page .page-next .page-all a {
  display: block;
  width: 100px;
  margin: 0 auto;
}
.single-all .Widget {
  width: 28%;
}
.single-all .Widget ul {
  width: 200px;
  border: solid 1px #707071;
  padding: 10px 0 40px 30px;
  margin: 112px 1% auto 1%;
  list-style: none;
}
.single-all .Widget ul li {
  width: 100%;
  font-size: 12px;
  text-align: left;
  padding: 5px 0;
  position: relative;
}
.single-all .Widget ul li a::before {
  /*タイトル横の矢印*/
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #707071;
  border-right: 1px solid #707071;
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 3px);
  right: 30px;
  transform: rotate(45deg);
}
.single-all .Widget ul li a {
  display: inline;
}
/*----出張講習お問い合わせ----*/
.wpcf7 {
  width: 80%;
  margin: auto;
}
.wpcf7 p label {
  margin: 5px auto;
}
.wpcf7 p label .red {
  color: #b40000;
}
.wpcf7 p label .wpcf7-form-control-wrap input {
  width: 100%;
  height: 40px;
  background-color: #efefef;
  border: 1px solid #707071;
  border-radius: 2px;
}
.wpcf7 p label .wpcf7-form-control-wrap input:focus {
  background-color: #fff;
}
.wpcf7 .serect {
  border-top: 1px solid #d5d5d5;
  border-bottom: 1px solid #d5d5d5;
  border-width: 110%;
}
.wpcf7 p label .wpcf7-form-control-wrap textarea {
  width: 100%;
  background-color: #efefef;
  border: 1px solid #707071;
  border-radius: 2px;
}
.wpcf7 p label .wpcf7-form-control-wrap textarea:focus {
  background-color: #fff;
}
.wpcf7 p .wpcf7-submit {
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  color: #707071;
  background-color: #efefef;
  border: 1px solid #efefef;
  padding: 15px 0;
  margin: auto;
  cursor: pointer;
}
/*----お問い合わせ----*/
.wpcf7 p .wpcf7-form-control-wrap .wpcf7-file {
  background-color: #fff;
  border: none;
  cursor: pointer;
}
/*----アコーディオンブロック調整----*/
.ark-block-accordion__body {
  padding-left: 1em;
  text-indent: -1em;
}

/*----PCで不要部分削除----*/
.smp {
  display: none;
}
/*----WPブロック全体----*/
:where(.wp-block-columns.is-layout-flex) {
  gap: 1em;
}
/*----スマホ対応画面----*/
@media screen and (max-width: 1180px) {
  /*----基本設定----*/
  html {
    font-size: 62.5%;
    color: #707071;
  }
  body {
    font-size: 1.4rem;
    max-width: 100%;
    text-align: center;
    margin: auto;
    font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN";
    font-weight: 400;
    letter-spacing: 0.05em;
  }
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  .clearfix::after {
    content: "";
    display: block;
    clear: both;
  }
  .breadcrumb-all {
    position: absolute;
    top: 10em;
  }
  .breadcrumb-area {
    width: 95%;
    flex-flow: wrap;
  }
  section {
    width: 95%;
    margin: auto;
    padding-top: 165px;
  }
  a {
    text-decoration: none;
    color: #707071;
  }
  h1 {
    font-size: 22px;
    font-weight: 600;
  }
  h2 {
    font-size: 20px;
    font-weight: 600;
    text-align: left;
  }
  img {
    width: 100%;
    padding: 0;
    margin: auto;
  }
  /*----ヘッダー----*/
  .head-logo-smp {
    width: 100%;
    height: 140px;
    background-color: white;
    display: block;
    box-sizing: border-box; /* padding分を含んで幅を100%にするため */
    position: fixed; /* ウィンドウを基準に画面に固定 */
    top: 0; /* 上下の固定位置を上から0pxにする */
    left: 0; /* 左右の固定位置を左から0pxにする */
    z-index: 50;
  }
  .head-logo-smp .smp-info {
    display: flex;
  }
  .head-logo-smp .smp-info a {
    width: 50%;
    height: 80px;
    padding: 3px;
  }
  .head-logo-smp .smp-info .smp-info-left {
    background-color: #025aab;
    color: white;
    display: flex;
  }
  .head-logo-smp .smp-info .smp-info-left img {
    width: 25px;
    margin: auto 3px auto auto;
  }
  .head-logo-smp .smp-info .smp-info-left span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin: auto auto auto 0;
  }
  .head-logo-smp .smp-info .smp-info-left span .mini {
    font-size: 8px;
  }
  .head-logo-smp .smp-info .smp-info-right {
    background-color: white;
    color: #025aab;
    display: flex;
  }
  .head-logo-smp .smp-info .smp-info-right img {
    width: 35px;
    margin: auto 5px auto auto;
  }
  .head-logo-smp .smp-info .smp-info-right span {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin: auto auto auto 0;
  }
  .head-logo-smp .logo-all {
    height: 60px;
    display: flex;
  }
  .head-logo-smp .logo-all .logo {
    width: 80%;
    padding: 10px;
  }
  .head-logo-smp .logo-all .logo img {
    width: 100%;
    max-width: 350px;
    margin: auto auto auto 0;
  }
  .head-logo-smp .logo-all .navi-all {
    width: 20%;
    padding: 10px;
    margin: auto 0 auto auto;
  }
  /*----ハンバーガーメニュー*/
  .drawer_menu a {
    color: inherit;
    text-decoration: none;
  }

  .drawer_menu a:visited {
    color: inherit;
  }
  .touch-btn {
    color: #fff;
    margin-left: 5px;
  }
  .drawer_menu a {
    color: inherit;
    text-decoration: none;
  }

  .drawer_menu a:visited {
    color: inherit;
  }
  .drawer_menu .drawer_button .drawer_bar {
    background-color: #707071;
    /* ハンバーガーメニュー三本線の色 */
  }
  .drawer_menu .drawer_bg {
    width: 60px;
    height: 60px;
    position: fixed;
    z-index: 999;
    background-color: #fff;
    display: none;
    top: 80px;
    right: 0;
  }
  .drawer_menu .drawer_button {
    display: block;
    background-color: #fff;
    color: #fff;
    border: none;
    padding: 5px;
    width: 50px;
    height: 50px;
    letter-spacing: 0.1em;
    cursor: pointer;
    position: fixed;
    top: 80px;
    right: 10px;
    z-index: 1001;
    text-align: center;
    outline: none;
  }
  .drawer_menu .drawer_button.active .drawer_bar {
    width: 40px;
  }
  .drawer_menu .drawer_button.active .drawer_bar1 {
    transform: rotate(30deg);
  }
  .drawer_menu .drawer_button.active .drawer_bar2 {
    opacity: 0;
  }
  .drawer_menu .drawer_button.active .drawer_bar3 {
    transform: rotate(-30deg);
  }
  .drawer_menu .drawer_bar {
    display: block;
    height: 2px;
    margin: 8px 2px;
    transition: all 0.2s;
    transform-origin: 0 0;
  }
  .drawer_menu .drawer_nav_wrapper {
    width: 60%;
    height: 100%;
    transition: all 0.2s;
    transform: translate(1180px);
    position: fixed;
    top: 140px;
    right: 0;
    z-index: 1000;
    background-color: #fff;
    /* ドロワーメニュー内背景色 */
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box; /* 追加 */
  }
  .drawer_menu .drawer_nav {
    display: block;
    position: relative;
    margin-top: 10px;
  }
  .drawer_menu .drawer_nav li {
    background-color: #fff;
    height: auto;
    line-height: 50px;
    /*  ドロワーメニューリスト項目高さ */
    position: relative;
    border-bottom: 1px solid #efefef;
    list-style: none;
  }
  .drawer_menu .drawer_nav li a {
    background-color: #fff;
    /* ドロワーメニューリスト背景色 */
    color: #707071;
    /* ドロワーメニューリスト文字色 */
    display: block;
    text-align: left;
    padding: 5px;
  }
  /* スマートフォン2階層目 */
  .drawer_menu .drawer_nav li ul.second-level {
    display: none;
    position: relative;
    background-color: #efefef;
    padding: 0;
    z-index: 1001;
  }
  .drawer_menu .drawer_nav li ul.second-level li .li-child {
    background-color: #efefef;
  }
  .touch-btn {
    color: #555;
    position: absolute;
    top: 0.25rem;
    right: 0;
    display: block;
    z-index: 10;
    width: 100%;
    height: 50px;
    text-align: center;
    vertical-align: middle;
  }
  .touch-btn::before {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid #707071;
    border-right: 2px solid #707071;
    -webkit-transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 3px);
    right: 20px;
    transform: rotate(135deg);
  }
  .navi-title-a::before {
    /*タイトル横の矢印*/
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid #707071;
    border-right: 2px solid #707071;
    -webkit-transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 3px);
    right: 20px;
    transform: rotate(45deg);
  }
  .drawer_menu .drawer_nav li ul.second-level li a {
    padding-left: 5px;
  }
  .drawer_menu .drawer_nav_wrapper.open {
    transform: translate(0);
  }
  .drawer_menu.left .drawer_button {
    right: auto;
  }
  .drawer_menu.left .drawer_nav_wrapper {
    transform: translate(-250px);
    right: auto;
    left: 0;
  }
  .drawer_menu.left .drawer_nav_wrapper.open {
    transform: translate(0);
  }
  /*----メニュー下部----*/
  .navi-botton-all {
    width: 95%;
    margin: 10px auto 80px auto;
    padding-bottom: 80px;
  }
  .navi-botton {
    width: 95%;
    margin: 10px auto;
  }
  .navi-botton .nb-li {
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    padding: 10px 0;
    position: relative;
  }
  .navi-botton .nb-li a {
    display: block;
    width: 100%;
    font-size: 16px;
    color: #fff;
    text-align: center;
    padding: 10px;
  }
  .navi-botton .blue {
    border: 2px solid #91afdc;
    border-radius: 0;
    background: #91afdc;

    -webkit-transform-style: preserve-3d;

    transform-style: preserve-3d;
  }
  .navi-botton .blue:before {
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 5px;

    content: "";
    -webkit-transition: all 0.3s;
    transition: all 0.3s;

    background: #fff;
  }
  .navi-botton .sky {
    border: 2px solid #9bcde1;
    border-radius: 0;
    background: #9bcde1;

    -webkit-transform-style: preserve-3d;

    transform-style: preserve-3d;
  }
  .navi-botton .sky:before {
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 5px;

    content: "";
    -webkit-transition: all 0.3s;
    transition: all 0.3s;

    background: #fff;
  }
  .navi-botton .green {
    border: 2px solid #9bc8aa;
    border-radius: 0;
    background: #9bc8aa;

    -webkit-transform-style: preserve-3d;

    transform-style: preserve-3d;
  }
  .navi-botton .green:before {
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 5px;

    content: "";
    -webkit-transition: all 0.3s;
    transition: all 0.3s;

    background: #fff;
  }
  .navi-botton .caption {
    font-size: 12px;
    text-align: right;
  }
  body.active {
    height: 100%;
    overflow: hidden;
  }
  /*----フッター----*/
  footer {
    width: 100%;
    background-color: #efefef;
    text-align: left;
  }
  footer .footer-nav-smp ul {
    width: 90%;
    font-size: 10px;
    font-weight: 600;
    text-align: left;
    padding: 35px 0 5px 0;
    margin: auto;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
  }
  footer .footer-nav-smp ul li {
    font-size: 12px;
    margin: 0 10px;
  }
  footer .footer-nav-smp .li-title-a {
    width: 90%;
    font-size: 12px;
    font-weight: 600;
    padding-left: 10px;
    margin: auto;
  }
  footer .footer-nav-smp .baner {
    width: 50%;
    padding: 20px 0;
    margin-left: 5%;
    display: flex;
  }
  footer .footer-nav-smp .baner .f-logo {
    width: 50%;
  }
  footer .footer-nav-smp .baner .f-logo img {
    display: block;
    margin-top: 8px;
  }
  footer .footer-nav-smp .baner .harness {
    display: block;
    width: 50%;
    font-size: 12px;
    display: flex;
  }
  footer .footer-nav-smp .baner .harness img {
    width: 50%;
  }
  footer .footer-nav-smp .baner .harness p {
    margin: auto auto auto 2px;
  }
  .company-all {
    width: 90%;
    font-weight: 600;
    text-align: left;
    margin: 0 auto 15px auto;
  }
  .company-all .company {
    font-size: 20px;
  }
  .company-all .company .cp-info {
    font-size: 14px;
  }
  footer .copywriter {
    width: 100%;
    background-color: white;
    font-size: 12px;
    text-align: center;
    padding: 15px;
  }
  footer .pc {
    display: none;
  }
  footer .footer-nav-smp {
    display: block;
  }
  /*----トップページ----*/
  .top-page {
    width: 100%;
  }
  /*----スライダー----*/
  .top-slider {
    width: 100%;
  }
  /*----お申込み・予約----*/
  .top-reserve {
    width: 100%;
    margin: 40px auto;
  }
  .top-reserve h1 {
    width: 100%;
    position: relative;
    display: inline-block;
  }
  .top-reserve h1:before,
  .top-reserve h1:after {
    content: "";
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 20%;
    height: 6px;
    border-top: solid 2px #025aab;
    border-bottom: solid 2px #025aab;
  }
  .top-reserve h1:before {
    left: 0;
  }
  .top-reserve h1:after {
    right: 0;
  }
  .top-reserve .reserve-botton-all {
    width: 90%;
    margin: auto;
    display: block;
  }
  .top-reserve .reserve-botton-all .reserve-botton {
    width: 100%;
    margin: 2% auto;
  }
  .top-reserve .reserve-botton-all .reserve-botton div {
    width: 100%;
    display: block;
  }
  .top-reserve .reserve-botton-all .caption {
    width: 100%;
    font-size: 12px;
    text-align: center;
  }
  /*----松江講習会場----*/
  .top-matsue {
    width: 100%;
    background-image: url(https://tgkk.or.jp/wp-content/themes/original/images/sp/matsue_bg_sp.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: white;
    padding: 40px 0 20px 0;
  }
  .top-matsue h1 {
    width: 100%;
    color: white;
    padding: 10px 20px;
    margin: auto;
    position: relative;
    display: inline-block;
  }
  .top-matsue h1:before,
  .top-matsue h1:after {
    content: "";
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 25%;
    height: 6px;
    border-top: solid 2px white;
    border-bottom: solid 2px white;
  }
  .top-matsue h1:before {
    left: 0;
  }
  .top-matsue h1:after {
    right: 0;
  }
  .top-matsue p {
    font-size: 24px;
    font-weight: 600;
    margin: 25px 0;
  }
  .top-matsue .matsue-botton {
    width: 230px;
    height: 50px;
    background-color: white;
    color: #025aab;
    margin: 10px auto 20px auto;
    display: block;
    position: relative;
  }
  .top-matsue .matsue-botton :before {
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    content: "";
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: 1px solid #025aab;
  }
  .top-matsue .matsue-botton a {
    display: block;
    width: 230px;
    height: 50px;
    font-size: 16px;
    font-weight: 600;
    color: #025aab;
    text-align: center;
    padding: 13px 5px;
    position: relative;
  }
  .top-matsue .matsue-botton a:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent #025aab;
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -6px;
  }
  .top-matsue .matsue-slider {
    width: 100%;
    margin-bottom: 20px;
    display: block;
  }
  .top-matsue .image-box {
    display: none;
  }
  /*----出張講習----*/
  .business-trip {
    width: 100%;
    margin: 30px auto;
  }
  .business-trip h1 {
    width: 100%;
    position: relative;
    display: inline-block;
  }
  .business-trip h1:before,
  .business-trip h1:after {
    content: "";
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 28%;
    height: 6px;
    border-top: solid 2px #f4d264;
    border-bottom: solid 2px #f4d264;
  }
  .business-trip h1:before {
    left: 0;
  }
  .business-trip h1:after {
    right: 0;
  }
  .business-trip-all {
    width: 100%;
    display: block;
  }
  .business-trip-all img {
    width: 60%;
    margin: 5px auto;
  }
  .business-trip .business-trip-all .bt-p {
    display: block;
    width: 90%;
    font-size: 14px;
    text-align: center;
    margin: 10px auto;
  }
  .business-trip .business-trip-all .bt-p .bt-a {
    width: 230px;
    height: 50px;
    background-color: white;
    color: #f4d264;
    margin: 10px auto;
    display: block;
  }
  /*-ユーザーの声----*/
  .user-voice {
    width: 100%;
    background-color: white;
    padding: 10px 0;
  }
  .user-voice h1 {
    width: 100%;
    color: #333333;
    position: relative;
    display: inline-block;
  }
  .user-voice h1:before,
  .user-voice h1:after {
    content: "";
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 25%;
    height: 6px;
    border-top: solid 2px #9bcde1;
    border-bottom: solid 2px #9bcde1;
  }
  .user-voice h1:before {
    left: 0;
  }
  .user-voice h1:after {
    right: 0;
  }
  .user-voice .voice-list {
    width: 70%;
    margin: 10px auto;
    display: block;
  }
  .user-voice .voice-list .voice {
    width: 100%;
    background-color: white;
    margin: 10px auto;
  }
  .user-voice .pc {
    display: none;
  }
  /*----新着情報----*/
  .whats-new {
    width: 100%;
    margin: 20px auto;
    display: block;
  }
  .whats-new .top-wn {
    width: 100%;
    position: relative;
    display: inline-block;
  }
  .whats-new .top-wn:before,
  .whats-new .top-wn:after {
    content: "";
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 28%;
    height: 6px;
    border-top: solid 2px #025aab;
    border-bottom: solid 2px #025aab;
  }
  .whats-new .top-wn:before {
    left: 0;
  }
  .whats-new .top-wn:after {
    right: 0;
  }
  .whats-new .new-list {
    width: 100%;
    text-align: left;
    padding: 15px;
    margin-left: 0;
  }
  .whats-new .new-list .pc {
    display: none;
  }
  .whats-new .new-list ul {
    width: 95%;
    list-style: none;
    margin: 10px auto;
  }
  .whats-new .new-list ul li {
    width: 100%;
    border-bottom: solid 1px #707071;
  }
  .whats-new .new-list ul li:first-of-type {
    width: 100%;
    border-top: solid 1px #707071;
    border-bottom: solid 1px #707071;
  }
  .whats-new .new-list ul li p {
    font-size: 12px;
    margin: 10px;
  }
  .whats-new .new-list .nl-a {
    display: block;
    width: 91.5%;
    border: solid 1px #707071;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 20px auto 0 auto;
  }
  .whats-new .youtube-wrap-smp {
    max-width: 100%;
    margin-top: 10px;
    display: block;
  }
  .whats-new .youtube-wrap-smp h1 {
    width: 100%;
    margin: 20px auto;
    position: relative;
    display: inline-block;
  }
  .whats-new .youtube-wrap-smp h1:before,
  .whats-new .youtube-wrap-smp h1:after {
    content: "";
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 20%;
    height: 6px;
    border-top: solid 2px #9bc8aa;
    border-bottom: solid 2px #9bc8aa;
  }
  .whats-new .youtube-wrap-smp h1:before {
    left: 0;
  }
  .whats-new .youtube-wrap-smp h1:after {
    right: 0;
  }

  .whats-new .youtube-swap-amp .youtube {
    position: relative;
    width: 80%;
    height: 0;
    padding-top: 56.25%;
    margin: auto;
  }
  .whats-new .youtube-swap-smp .youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    margin: auto;
  }
  /*----固定ページ----*/
  header .main-content-title {
    padding: 5px 0 5px 15px;
    border-left: solid 10px #025aab;
  }
  .wp-block-heading {
    font-size: 16px;
    text-align: left;
    color: #025aab;
    padding: 5px;
    border-bottom: solid 1px #d5d5d5;
  }
  .wp-block-flexible-table-block-table {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .wp-block-flexible-table-block-table .has-fixed-layout {
    width: 100%;
  }
  .wp-block-flexible-table-block-table .has-fixed-layout thead {
    background-color: #d5d5d5;
    font-weight: 400;
  }
  .wp-block-flexible-table-block-table .has-fixed-layout thead tr th {
    text-align: left;
    padding: 10px;
    border: solid 1px #efefef;
  }
  .wp-block-flexible-table-block-table .has-fixed-layout tbody tr td {
    text-align: left;
    padding: 10px;
    border: solid 1px #efefef;
  }
  .wp-block-flexible-table-block-table .has-fixed-layout {
    border-collapse: collapse; /* セルの線を重ねる */
  }
  .bottom-info {
    border: solid 1px #d5d5d5;
    padding: 20px;
  }
  .bottom-info h1 {
    font-size: 18px;
  }
  .bottom-info p {
    font-size: 12px;
  }
  .bottom-info p span {
    font-size: 18px;
    font-weight: 600;
  }
  .bottom-info a {
    width: 90%;
    padding: 15px;
    margin: auto;
  }
  .no-margin p {
    display: block;
    margin-block-start: 0px;
    margin-block-end: 0px;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
  }
  .no-margin :where(.wp-block-columns.is-layout-flex) {
    gap: 0;
  }
  /*----技能講習・特別教育・安全教育----*/
  .with-bottun {
    width: 100%;
  }
  .with-bottun .wb-h2 {
    width: 100%;
  }
  .with-bottun .application {
    display: none;
  }
  .completion {
    width: 100%;
    margin: 15px auto;
  }
  .completion .flex {
    display: block;
    width: 100%;
  }
  .completion .flex .flex-left {
    width: 95%;
  }
  .completion .flex .flex-right {
    width: 95%;
  }
  .completion .flex div img {
    width: 250px;
    height: 160px;
    margin: auto;
  }
  .business-trip-page {
    width: 100%;
    margin: 15px auto;
  }
  .business-trip-page .flex {
    display: block;
  }
  .business-trip-page .flex .flex-left {
    width: 95%;
    margin: auto;
  }
  .business-trip-page .flex .flex-right {
    width: 95%;
    margin: auto;
  }
  .business-trip-page .flex .flex-right a {
    font-weight: 600;
    padding: 20px 0;
  }
  .page-bottom {
    width: 100%;
    margin: 50px auto;
  }
  .page-bottom .pg-a {
    width: 100%;
  }
  .page-bottom .pg-a a {
    width: 100%;
    font-weight: 600;
    padding: 30px 0;
  }
  .page-bottom .caption {
    width: 100%;
    font-size: 12px;
    text-align: center;
  }
  /*----出張講習について----*/
  .with-bottun .application-bt {
    display: none;
  }
  .business-trip-info {
    width: 100%;
    border: solid 1px #d5d5d5;
    padding: 15px;
    margin: 30px auto;
  }
  .business-trip-info h1 {
    color: 24px;
    color: #f4d264;
  }
  .business-trip-info p {
    font-size: 12px;
  }
  .business-trip-info .p-smp {
    font-size: 12px;
  }
  .business-trip-info p span {
    font-size: 18px;
    font-weight: 600;
  }
  .business-trip-info a {
    width: 85%;
    font-size: 18px;
    font-weight: 600;
    padding: 25px 1px;
    margin: 10px auto;
  }
  /*----講習カレンダー----*/
  .eo-fullcalendar .fc-toolbar {
    width: 100%;
    height: 35px;
    float: none;
    margin-bottom: 10px;
    position: relative;
  }
  .fc-toolbar .fc-left {
    width: 50px;
    position: absolute;
    top: 20%;
    left: 10px;
  }
  .fc-toolbar .fc-right {
    width: 50px;
    position: absolute;
    top: 20%;
    right: 10px;
  }
  .fc-toolbar .fc-center h2 {
    width: 150px;
    height: 35px;
    font-size: 20px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  /*----投稿一覧----*/
  .archive-all {
    margin: auto;
    display: block;
  }
  .archive-all .whats-new {
    width: 100%;
    margin: auto;
  }
  .archive-all .whats-new .new-list {
    width: 100%;
    text-align: left;
    padding: 15px;
  }
  .archive-all .whats-new .new-list h1 {
    font-size: 18px;
    padding: 5px 0 5px 10px;
    margin: 0 auto 80px auto;
    border-left: solid 5px #025aab;
  }
  .archive-all .whats-new .new-list .pull-down-all {
    width: 100%;
    height: 50px;
    display: flex;
  }
  /*----投稿ページ----*/
  .single-all {
    margin: 16em auto 10px auto;
    padding: 0;
    display: block;
  }
  .single-all .single-page {
    width: 100%;
    padding: 0;
    margin: 0 auto;
  }
  .single-all .single-page h1 {
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    padding: 5px 20px;
    margin: 0;
    border-left: none;
    border-bottom: solid 1px #d5d5d5;
  }
  .single-all .single-page p {
    font-size: 14px;
    margin: 20px;
    text-align: left;
  }
  .single-all .single-page .page-next {
    width: 90%;
    font-size: 14px;
    margin: auto auto 10px auto;
    display: flex;
  }
  .single-all .single-page .page-next a {
    width: 20%;
  }
  .single-all .single-page .page-next .page-all {
    width: 60%;
    margin-top: -20px;
  }
  .single-all .single-page .page-next .page-all a {
    display: block;
    width: 100px;
    margin: 0 auto;
  }
  /*----タブレットで不要部分削除----*/
  .smp {
    display: block;
  }
  .pc {
    display: none;
  }
  @media screen and (max-width: 700px) {
    .drawer_menu .drawer_nav_wrapper {
      width: 100%;
    }
    /*----トップ調整----*/
    .business-trip-all img {
      width: 80%;
      margin: 5px auto;
    }
    .user-voice .voice-list {
      width: 90%;
      margin: 10px auto;
      display: block;
    }
    .user-voice .voice-list .voice {
      width: 100%;
      background-color: white;
      margin: 10px auto;
    }
    .user-voice .pc {
      display: none;
    }
    /*----フッター----*/
    footer .footer-nav-smp .baner {
      width: 90%;
      padding: 20px 0;
      margin: auto;
      display: flex;
    }
    footer .footer-nav-smp .baner .f-logo {
      width: 50%;
    }
    footer .footer-nav-smp .baner .f-logo img {
      display: block;
      margin-top: 8px;
    }
    footer .footer-nav-smp .baner .harness {
      display: block;
      width: 50%;
      font-size: 12px;
      display: flex;
    }
    footer .footer-nav-smp .baner .harness img {
      width: 50%;
    }
    footer .footer-nav-smp .baner .harness p {
      margin: auto auto auto 2px;
    }
    /*----スマホで不要部分削除----*/
    .smp {
      display: block;
    }
    .pc {
      display: none;
    }
  }
}


/* 東内追加分 2024/06/06 グロナビにフォークリフト追加 */
#menu-sidemenu.menu > li.menu-item:nth-child(2) {
	width: auto;
	letter-spacing: 0px;
}
.menu > .menu-item:nth-child(2) a:hover {
	color: #ffffff;
}
#menu-sidemenu.menu li.menu-item:last-child { /* 中央に寄せる */
	margin-right: auto;
}

/* 東内追加分 2024/06/06 ログインボタン */
.head-login {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	text-align: right;
	display: flex;
	justify-content: flex-end;
	line-height: 1.0em;
	color: #025aab;
}
.head-login a {
	margin-left: 12px;
	margin-right: 20px;
	background-color: #025aab;
	color: #ffffff;
	padding: 8px 20px 5px 20px;
	font-weight: 700;
	transition: all 0.3s;
	line-height: 2em;
}
.head-login a:hover {
	background-color: #0477e1;
	transition: all 0.3s;
}
@media screen and (max-width: 700px) {
	.head-login {
		width: auto;
		justify-content: center;
	}
	.head-logo-smp .logo-all {
		background-color: #ffffff;
	}
}
/* 東内追加分 2024/06/11 グロナビに更に追加 */
.menu > .menu-item:nth-child(2) {
	width: auto;
	letter-spacing: 0px;
}
.menu > .menu-item {
	width: auto;
	padding-left: 0.8em;
	padding-right: 0.8em;
}
.menu .menu-item-a {
	width: auto;
}
.menu .menu-item-a:hover, .menu .menu-item:hover > a {
	color: #ffffff;
}
.menu > .menu-item-a-last {
	width: auto;
}
.menu > .menu-item:nth-child(2) a:hover {
	color: #ffffff;
}

/* NARTS追加分 2024-07-19 コピペと右クリック禁止 */
body, img {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
img {
	pointer-events: none;
}
/* NARTS追加分 2024/10/29　フッター調整 */
.footer-nav.pc {
	letter-spacing: 0px;
}
.fn-mass .li-title.asbestos {
	letter-spacing: -1px;
}
/* NARTS追加分 2024/10/29 グロナビに石綿追加 */
.menu > .menu-item {
	width: auto;
	padding-left: 0.6em;
	padding-right: 0.6em;
}
.sub-menu .light-gray:hover {
	background-color: #c6c6c6;
}

/* カレンダーの土日祝について背景を変更する 2024/10/11 */
.category-holiday {
	background-color: #efc8c8 !important;
	opacity: unset !important;
}
.fc-sat {
	background-color: #c8d6ef !important;
}
.fc-sun {
	background-color: #efc8c8 !important;
}
.fc-row .fc-content-skeleton td, .fc-row .fc-helper-skeleton td {
	border-color: #dddddd !important;
}

/* FAQの文字サイズ変更 2025/04/01 */
.faq-accordion .ark-block-accordion__label {
	text-align: left;
	font-size: 1.3em;
}
.faq-accordion .ark-block-accordion__body p.has-medium-font-size {
	font-size: 1.2em !important;
}
@media screen and (max-width: 640px) {
	.faq-accordion .ark-block-accordion__body {
		text-indent: 0em;
	}
}