@charset "UTF-8";
/*
date created: 2019.03.15
date modified: 2023.11.30
taihei drivers school
*/
/* ===========================================
add.css
*** basic setting on assets/css/vendor/sanitize.css ***
=========================================== */
/* Simple Reset */
@import 'https://fonts.googleapis.com/css?family=Open+Sans:400';
@import 'http://weloveiconfonts.com/api/?family=fontawesome';
/* Windows 用 Medium 指定の游ゴシック */
@font-face {
  font-family: "Yu Gothic M";
  src: local("Yu Gothic Medium");
}
/* font-weight: bold の時は通常どおり Bold 書体を使わせる */
@font-face {
  font-family: "Yu Gothic M";
  font-weight: 700;
  src: local("Yu Gothic Bold");
}
/* basic */
body {
  padding: 0;
  margin: 0;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", "HiraKakuProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: #111;
  /* letter-spacing: 1px; */
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  /* min-width: 980px; */
}

@media (max-width: 768px) {
  body {
    width: 768px;
  }
}
@media (min-width: 769px) {
  body {
    min-width: 980px;
  }
}
.gothic {
  font-family: "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", "HiraKakuProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.mincho {
  font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", "HiraMinProN-W3", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

#alltop_wrapper {
  margin: 0 auto;
}

#wrapper {
  margin: 0 auto;
}

.toggle {
  position: fixed;
  top: 30px;
  /* bodyに対しての絶対位置指定 */
  right: 8px;
  /* z-index: 3; */
  z-index: 99999;
  /*
  right: 30px;
     top: 25px;
  */
  /*
     right: 13px;
     top: 13px;
  */
  display: block;
  width: 70px;
  height: 70px;
  cursor: pointer;
  background: #fff;
  border: 2px solid #004d9c;
  border-radius: 5px;
}

.toggle span {
  position: absolute;
  right: 10px;
  display: block;
  /* .toggleに対して */
  width: 70%;
  padding-top: 5px;
  margin: 0 auto;
  color: #000;
  /* color: #660011; */
  text-align: center;
  /* border-bottom: solid 5px #008742; */
  border-bottom: solid 5px #004d9c;
  transition: 0.15s ease-in-out;
}

.toggle span:nth-child(1) {
  top: 10px;
}

.toggle span:nth-child(2) {
  top: 20px;
}

.toggle span:nth-child(3) {
  top: 30px;
}

.toggle span:nth-child(4) {
  top: 35px;
  font-size: 16px;
  font-weight: 700;
  border: none;
}

/* 最初のspanをマイナス45度に */
.toggle.active span:nth-child(1) {
  top: 15px;
  left: 4px;
  transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.toggle.active span:nth-child(2),
.toggle.active span:nth-child(3) {
  top: 15px;
  transform: rotate(45deg);
}

/* .global_nav */
.global_nav {
  position: fixed;
  top: 0;
  left: 0;
  /* z-index: 2; */
  z-index: 88888;
  width: 100%;
  padding-top: 20px;
  color: #fff !important;
  text-align: center;
  background: #004d9c;
  /* background: #0d4675; */
  transition: all 0.3s;
  transform: translateY(-100%);
}

.global_nav .nav_li {
  width: 100%;
  padding: 30px 0;
  font-size: 32px;
  list-style-type: none;
}

.global_nav .nav_li a {
  display: block;
  color: #fff !important;
}

/* .global_navに.activeが追加 */
.global_nav.active {
  transform: translateY(0%);
}

/*  */
/* alltop_header */
#alltop_header {
  padding: 0;
  margin: 20px 0 0;
  text-align: center;
}

.alltop_header_info {
  margin: 0;
  /*
  width: 980px;
  margin: 0px auto 0px auto;
  */
  text-align: center;
}

.alltop_header_logo {
  margin: 60px 0 80px;
}

@media (max-width: 768px) {
  .all_header_info_text {
    width: 720px;
    margin: 0 auto;
    font-size: 13px;
  }
}
@media (min-width: 769px) {
  .all_header_info_text {
    font-size: 13px;
  }
}
#header {
  padding: 0;
  margin: 0;
}

.header_line {
  height: 20px;
  background-color: #004d9c;
}

.header_line_tekisei {
  height: 20px;
  background-color: #f7931e;
}

.header_line_career {
  height: 20px;
  background-color: #004d9c;
}

/* slider上書き調整 */
.bx-wrapper {
  margin-bottom: 20px !important;
  overflow: hidden !important;
}

@media (max-width: 768px) {
  .header_line_inner {
    width: 758px;
    padding-right: 10px;
    margin: 0 auto;
    font-size: 11px;
    line-height: 20px;
    color: #fff;
    text-align: right;
  }
}
@media (min-width: 769px) {
  .header_line_inner {
    width: 970px;
    padding-right: 10px;
    margin: 0 auto;
    font-size: 11px;
    line-height: 20px;
    color: #fff;
    text-align: right;
  }
}
@media (max-width: 768px) {
  .header_mainmenu {
    display: none;
  }
  .header_info {
    width: 768px;
    margin: 0 auto;
    text-align: center;
  }
  .header_info_career {
    width: 768px;
    margin: 0 auto 20px;
  }
  .header_box1 {
    display: none;
  }
  .header_logo {
    float: left;
    padding-top: 40px;
    margin: 0;
  }
  .header_logo_tekisei {
    padding-top: 40px;
    margin: 0;
  }
  .header_logo_career {
    margin: 10px 0 0 15px;
    text-align: center;
  }
  .header_link {
    float: left;
    margin: 40px 0 0 20px;
  }
  .header_contact {
    display: none;
  }
  .header_contact_tekisei {
    display: none;
  }
  .header_contact_career {
    display: none;
  }
  .sp_header_box1 {
    width: 600px;
    margin: 0 auto 20px;
    text-align: center;
  }
  .sp_header_contact {
    width: 470px;
    margin: 20px auto;
    text-align: center;
  }
  .sp_header_contact_tekisei {
    width: 460px;
    margin: 30px auto;
    text-align: center;
  }
  .sp_header_contact_career {
    margin: 30px 10px 0 0;
    font-size: 21px;
    font-weight: 700;
    text-align: center;
  }
}
@media (min-width: 769px) {
  .header_info {
    width: 980px;
    margin: 0 auto 40px;
  }
  .header_info_career {
    width: 980px;
    margin: 0 auto 20px;
  }
  .header_box1 {
    float: left;
  }
  .header_logo {
    float: left;
    margin: 40px 0 0 15px;
  }
  .header_logo_tekisei {
    float: left;
    margin: 40px 0 0 15px;
  }
  .header_logo_career {
    float: left;
    margin: 10px 0 0 15px;
  }
  .header_link {
    float: left;
    margin: 40px 0 0 80px;
  }
  .header_contact {
    float: right;
    margin: 40px 10px 0 0;
    font-size: 14px;
    font-weight: 700;
  }
  .header_contact_tekisei {
    float: right;
    margin: 40px 10px 0 0;
    font-size: 14px;
    font-weight: 700;
  }
  .header_contact_career {
    float: right;
    margin: 60px 10px 0 0;
    font-size: 14px;
    font-weight: 700;
  }
  .header_contact table {
    border-collapse: collapse;
  }
  .header_mainmenu {
    background-color: #004d9c;
  }
  .header_mainmenu ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
  }
  .header_mainmenu ul li {
    width: 16.6666666667%;
    height: 60px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    letter-spacing: 1px;
    background-color: #004d9c;
    border-right: 1px solid #fff;
  }
  .header_mainmenu ul li:first-of-type {
    border-left: 1px solid #fff;
  }
  .header_mainmenu ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    color: #fff;
    transition: 0s !important;
  }
  .header_mainmenu ul li a:hover {
    color: #ff8000;
    background: transparent;
    opacity: 1;
    transition: 0s !important;
  }
  .sp_header_box1 {
    display: none;
  }
  .sp_header_contact {
    display: none;
  }
  .sp_header_contact_tekisei {
    display: none;
  }
  .sp_header_contact_career {
    display: none;
  }
  .sp_mainmenu {
    display: none;
  }
}
@media (max-width: 768px) {
  .header_img {
    width: 768px;
    padding: 0;
    margin: 0 auto;
  }
  .header_img img {
    width: 100%;
  }
  .contents_header_img {
    width: 768px;
    margin: 0 auto 10px;
  }
}
@media (min-width: 769px) {
  .header_img {
    width: 980px;
    padding: 0;
    margin: 0 auto;
  }
  .contents_header_img {
    width: 980px;
    margin: 0 auto 10px;
  }
}
/*  */
#contents {
  padding: 0;
  margin: 0 auto;
}

.contents_title {
  margin: 10px 0 20px;
}

#main {
  padding: 0;
  margin: 0 auto 100px;
}

#allmain {
  padding: 0;
  margin: 0 auto 20px;
}

.alltop_contents {
  text-align: center;
}

.alltop_contents_box {
  padding: 0;
  margin: 45px auto 100px;
}

/* 背景用設定ここに追加 */
.alltop_contents_bg {
  height: 800px;
  /* not.cover (左右が切れる) */
  overflow: auto;
  background: url("img/alltop_bg.jpg") center 0 no-repeat;
  background-size: 100% auto;
}

.alltop_contents_menu {
  width: 720px;
  margin: 0 auto 40px;
}

.alltop_contents_menu li {
  float: left;
}

@media (max-width: 768px) {
  .alltop_contents_banner {
    width: 640px;
    margin: 40px auto;
    text-align: center;
  }
  .alltop_contents_banner img {
    width: 200px;
    height: auto;
  }
}
@media (min-width: 769px) {
  .alltop_contents_banner {
    width: 880px;
    margin: 40px auto;
  }
}
.alltop_contents_banner li {
  float: left;
}

.alltop_contents_footer {
  margin: 0 0 10px;
  font-size: 14px;
  text-align: center;
}

.top_contents {
  padding: 0;
  margin: 0;
}

.top_contents_box {
  padding: 0;
  /* width: 880px; */
  margin: 0 auto 80px;
}

.top_contents_textbox01 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.top_contents_textbox02 {
  width: 730px;
  margin: 20px auto 60px;
  font-size: 18px;
  letter-spacing: 0.3px;
}

.top_contents_text_deco {
  color: #004d9c;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .top_contents_menu01 {
    display: none;
  }
  .sp_top_contents_menu01 {
    padding-bottom: 80px;
  }
  .sp_top_contents_menu01 ul {
    display: flex;
    flex-direction: column;
    width: 768px;
    margin: 0 auto;
  }
  .sp_top_contents_menu01 ul li {
    margin: 0 0 5px;
  }
  .top_contents_menu02 {
    margin: 0 auto 80px;
    text-align: center;
  }
  .top_contents_menu02 div {
    margin-bottom: 60px;
  }
  .top_contents_menu02 img {
    width: 768px;
    height: auto;
  }
  .top_contents_text_title {
    margin: 20px 0;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    background-color: #004d9c;
  }
  .top_contents_text_title_inner {
    width: 685px;
    height: 50px;
    padding: 0 0 0 60px;
    margin: 0 auto;
    line-height: 50px;
    color: #fff;
    background-image: url("img/sp_top_contents_icon_car.png");
    background-repeat: no-repeat;
    background-position: left 3px center;
  }
  .top_contents_text_title_inner a {
    color: #fff;
  }
  .top_contents_text_title_inner a:link,
  .top_contents_text_title_inner a:active,
  .top_contents_text_title_inner a:visited {
    color: #fff;
  }
  .top_contents_text_title_inner a:hover {
    color: #ff8000;
  }
}
@media (min-width: 769px) {
  .sp_top_contents_menu01 {
    display: none;
  }
  .top_contents_menu01 ul {
    display: flex;
    flex-direction: row;
    -moz-column-gap: 40px;
         column-gap: 40px;
    justify-content: center;
    margin: 40px auto 80px;
  }
  .top_contents_menu02 {
    margin-bottom: 80px;
    text-align: center;
  }
  .top_contents_menu02 div {
    margin-bottom: 60px;
  }
  .top_contents_text_title {
    margin: 20px 0;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    background-color: #004d9c;
  }
  .top_contents_text_title_inner {
    width: 685px;
    height: 60px;
    padding: 0 0 0 80px;
    margin: 0 auto;
    line-height: 60px;
    color: #fff;
    background-image: url("img/top_contents_icon_car.png");
    background-repeat: no-repeat;
    background-position: left 3px center;
  }
  .top_contents_text_title_inner a {
    color: #fff;
  }
  .top_contents_text_title_inner a:link,
  .top_contents_text_title_inner a:active,
  .top_contents_text_title_inner a:visited {
    color: #fff;
  }
  .top_contents_text_title_inner a:hover {
    color: #ff8000;
  }
}
.top_contents_text_title_list {
  float: right;
  font-size: 14px;
  font-weight: 400;
}

.top_contents_text_title2 {
  height: 55px;
  padding-left: 80px;
  margin: 20px 0 0;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  background-color: #b4bb21;
}

.top_contents_text_title2 img {
  vertical-align: bottom;
}

@media (max-width: 768px) {
  .top_news {
    width: 768px;
    margin: 35px auto 20px;
  }
  .top_news_inner {
    width: 748px;
    margin: 0 auto;
  }
}
@media (min-width: 769px) {
  .top_news {
    width: 980px;
    margin: 35px auto 20px;
  }
  .top_news_inner {
    width: 768px;
    margin: 0 auto;
  }
}
.top_news_inner ul li {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.5;
  border-bottom: 1px dashed #333;
}

.top_news_inner ul li div {
  float: left;
  padding-bottom: 5px;
}

.top_news_date_arrow {
  float: left;
  width: 22px;
  height: 18px;
  padding: 0;
  margin: 2px 10px 0 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #fff;
  text-align: center;
  background-color: #0071b8;
  border-radius: 50%;
}

.top_news_title a:link,
.top_news_title a:active,
.top_news_title a:visited {
  color: #111;
}

.top_news_title a:hover {
  color: #e7380d;
}

.top_news_contents {
  font-size: 15px;
}

.top_news_contents a:link,
.top_news_contents a:active,
.top_news_contents a:visited,
.top_news_contents a:hover {
  color: #e7380d;
}

.top_contents_text1 {
  width: 815px;
  height: 250px;
  padding-top: 20px;
  margin: 40px auto 20px;
  line-height: 1.7;
  background-image: url("img/top_contents_about_img01.png");
  background-repeat: no-repeat;
  background-position: right top;
}

.top_contents_text1_box {
  width: 460px;
}

.top_contents_text2 {
  width: 752px;
  margin: 0 auto;
}

.top_contents_text2 li {
  float: left;
  text-align: center;
}

/* page */
.page_single {
  width: 860px;
  min-height: 480px;
  margin: 35px auto 60px;
}

.page_single_time {
  padding-bottom: 3px;
  margin-bottom: 20px;
  border-bottom: 1px solid #777;
}

.page_single img {
  padding: 5px;
}

.page_contents {
  padding: 0;
  margin: 40px 0 0;
}

.page_contents_topimg h1 {
  width: 980px;
  margin: 0 auto !important;
}

.page_contents_box {
  width: 950px;
  padding: 0;
  margin: 0 auto 80px;
}

@media (max-width: 768px) {
  .page_name {
    margin: 40px auto 10px;
    font-size: 12px;
  }
}
@media (min-width: 769px) {
  .page_name {
    width: 950px;
    margin: 40px auto 10px;
    font-size: 12px;
  }
}
.page_name_inner {
  margin-left: 40px;
}

.page_title {
  height: 60px;
  background-color: #8cc63f;
}

@media (max-width: 768px) {
  .page_title_inner {
    position: relative;
    height: 60px;
    margin: 0 auto;
    color: #fff;
    text-shadow: 2px 2px 2px #555;
  }
}
@media (min-width: 769px) {
  .page_title_inner {
    position: relative;
    width: 950px;
    height: 60px;
    margin: 0 auto;
    color: #fff;
    text-shadow: 2px 2px 2px #555;
  }
}
.page_title_text {
  position: absolute;
  top: 50%;
  margin-top: -1rem;
  margin-left: 40px;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.page_title_text2 {
  margin-left: 12px;
  font-size: 15px !important;
  font-weight: 400;
  vertical-align: middle;
}

/* miryoku */
@media (max-width: 768px) {
  .miryoku_box {
    width: 100%;
    padding: 0;
    margin: 0 auto 80px;
  }
  .miryoku_box img {
    width: 100%;
  }
}
@media (min-width: 769px) {
  .miryoku_box {
    width: 950px;
    padding: 0;
    margin: 0 auto 80px;
  }
}
.miryoku_text_box {
  min-height: 90px;
  padding: 2px 0;
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 2px #555;
  letter-spacing: 1px;
  background-color: #8cc63f;
}

@media (max-width: 768px) {
  .miryoku_text_box_inner {
    width: 770px;
    margin: 20px auto;
  }
}
@media (min-width: 769px) {
  .miryoku_text_box_inner {
    width: 780px;
    margin: 20px auto;
  }
}
/* school */
.page-school h3 {
  display: block;
  padding: 0.25em 1em;
  margin-bottom: 1em;
  font-size: 0.95em;
  font-weight: 600;
  line-height: 1.3em;
  color: #fff;
  background: #8cc63f;
  border-radius: 6px;
}
.page-school p {
  margin-bottom: 1em;
}
.page-school p + h3 {
  margin-top: 3em;
}
.page-school * + p {
  margin-top: 1em;
}
.page-school .school_lectureship {
  width: 100%;
  max-width: 740px;
  margin: 20px auto;
  border: 1px solid #2d2d2d;
}
.page-school .school_lectureship p {
  margin: 0;
}
.page-school .school_lectureship tr th,
.page-school .school_lectureship tr td {
  padding: 0.5em;
  border: 1px solid #82b5d1;
}
.page-school .school_lectureship tr th:nth-of-type(odd),
.page-school .school_lectureship tr td:nth-of-type(odd) {
  width: 40%;
  min-width: 160px;
  font-weight: 600;
  white-space: nowrap;
}
.page-school .school_lectureship tr th:nth-of-type(even),
.page-school .school_lectureship tr td:nth-of-type(even) {
  width: 60%;
}
.page-school .school_lectureship tr th {
  color: #fff;
  background: #5da9cd;
}
.page-school .school_lectureship tr th span {
  font-size: 0.75em;
  font-weight: 400;
}
.page-school .school_lectureship tr td {
  font-size: 0.9em;
  color: #006097;
  text-align: center;
}
.page-school .school_lectureship tr td div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  width: 100%;
  margin: 3px;
}
.page-school .school_lectureship tr td span {
  display: inline-block;
  padding: 0.2em 0.4em;
  background: #fff;
  border: 1px solid #5da9cd;
  border-radius: 4px;
}
.page-school .school_lectureship tr td:nth-of-type(1) {
  padding: 0 1em;
  text-align: left;
}
.page-school .school_lectureship tr:nth-of-type(odd) td {
  background: #f8f8f8;
}

@media (max-width: 768px) {
  .school_box {
    width: 768px;
    padding: 0;
    margin: 40px auto 0;
  }
}
@media (min-width: 769px) {
  .school_box {
    width: 820px;
    padding: 0;
    margin: 40px auto 0;
  }
}
.school_box_text {
  line-height: 1.7;
  letter-spacing: 1px;
  border-collapse: collapse;
}

@media (max-width: 768px) {
  .school_box_text table {
    width: 768px;
    margin: 40px auto 60px;
    font-size: 16px;
    border-collapse: collapse;
  }
}
@media (min-width: 769px) {
  .school_box_text table {
    width: 820px;
    margin: 40px auto 60px;
    font-size: 16px;
    border-collapse: collapse;
  }
}
.school_box_text th {
  padding: 10px 40px 10px 30px;
  border-bottom: 1px dashed #333;
}

.school_box_text td {
  padding: 10px 10px 10px 0;
  border-bottom: 1px dashed #333;
}

.school_box_table1 li {
  float: left;
}

@media (max-width: 768px) {
  .school_photo {
    width: 580px;
    margin: 40px auto 60px;
  }
  .school_photo li {
    float: left;
    margin: 0 10px 20px 0;
    text-align: center;
  }
}
@media (min-width: 769px) {
  .school_photo {
    width: 860px;
    margin: 40px auto 60px;
  }
  .school_photo li {
    float: left;
    margin-bottom: 20px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .school_koushu {
    width: 768px;
    margin: 40px auto 80px;
  }
}
@media (min-width: 769px) {
  .school_koushu {
    width: 820px;
    margin: 40px auto 80px;
  }
}
.school_koushu_title {
  padding: 0 0 5px 10px;
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 700;
  border-bottom: 4px solid #8cc63f;
}

.school_koushu_etc {
  width: 750px;
  margin: 20px auto;
  line-height: 1.7;
  text-align: center;
}

@media (max-width: 768px) {
  .school_access_map {
    width: 768px;
    margin: 40px auto;
  }
  .school_access_map iframe {
    width: 100%;
  }
}
@media (min-width: 769px) {
  .school_access_map {
    width: 820px;
    margin: 40px auto;
  }
}
.school_access td {
  padding: 20px 0 20px 20px;
}

/* price */
@media (max-width: 768px) {
  .price_box {
    width: 768px;
    margin: 0 auto;
  }
}
.price_box th {
  font-weight: 400;
}

.price_box span {
  font-size: 15px;
  font-weight: 400;
}

.must {
  margin-left: 5px;
  font-size: 11px !important;
  color: #f00;
}

/*  */
@media (max-width: 768px) {
  .guide_box {
    width: 768px;
    margin: 40px auto;
  }
}
@media (min-width: 769px) {
  .guide_box {
    width: 820px;
    margin: 40px auto;
  }
}
.guide_box_title {
  padding: 0 0 5px 10px;
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 700;
  border-bottom: 4px solid #8cc63f;
}

.guide_box_text {
  margin: 20px 0 40px 20px;
}

.guide_box_text ul li {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
}

.guide_box_text_sub {
  font-size: 16px;
  font-weight: 400;
}

.guide_box_text table {
  font-size: 16px;
  border-collapse: collapse;
}

.guide_box_text th {
  padding: 5px 0;
  text-align: center;
  background-color: #e6e6e6;
  border: 1px solid #333;
}

.guide_box_text td {
  padding: 5px 10px;
  border: 1px solid #333;
}

/* contact */
.page_contents_contact {
  width: 768px;
  margin: 30px auto;
}

.page_contents_contact table {
  font-size: 15px;
}

.page_contents_contact table th {
  width: 200px;
  padding-bottom: 20px;
  text-align: left;
}

.page_contents_contact table td {
  padding-bottom: 20px;
}

.page_contents_contact input[type=text] {
  width: 500px;
  height: 23px;
  padding-left: 5px;
  margin: 5px 0;
  border: 1px solid #999;
}

.page_contents_contact input[type=email] {
  width: 500px;
  height: 23px;
  padding-left: 5px;
  margin: 5px 0;
  border: 1px solid #999;
}

.page_contents_contact input[type=tel] {
  width: 500px;
  height: 23px;
  padding-left: 5px;
  margin: 5px 0;
  border: 1px solid #999;
}

.page_contents_contact input[type=number] {
  width: 50px;
  height: 23px;
  padding-left: 3px;
  margin: 5px 0;
  border: 1px solid #999;
}

.page_contents_contact select {
  width: 200px;
  height: 27px;
  padding-left: 5px;
  margin: 5px 0;
  border: 1px solid #999;
}

.page_contents_contact textarea {
  width: 500px;
  height: 200px;
  padding-left: 5px;
  margin: 5px 0;
  border: 1px solid #999;
}

.page_contents_contact input[type=submit] {
  width: 200px;
  height: 50px;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background-color: #004da0;
  border: none;
  box-shadow: 2px 2px 4px 2px rgba(0, 0, 0, 0.1);
}

.page_contents_contact input[type=button] {
  width: 200px;
  height: 50px;
  font-size: 16px;
  text-align: center;
  box-shadow: 2px 2px 4px 2px rgba(0, 0, 2, 0.1);
}

.page_contents_contact_submit {
  margin: 30px 0 0;
  text-align: center;
}

.contact_telfax {
  width: 720px;
  margin: 20px auto 0;
}

.contact_telfax ul li {
  float: left;
  height: 120px;
  border-right: 2px solid #555;
}

.contact_telfax ul li div {
  margin-bottom: 5px;
}

.contact_telfax_text {
  font-size: 23.5px;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.5px;
}

.contact_job input {
  width: 394px !important;
  vertical-align: middle;
}

.contact_privacy {
  width: 860px;
  height: 200px;
  padding: 15px 10px 10px 20px;
  margin: 120px 0 0;
  overflow: auto;
  font-size: 13px;
  line-height: 1.4em;
  letter-spacing: 1px;
  background-color: #fcfcfc;
  border: solid 1px #999;
}

@media (max-width: 768px) {
  .contact_box {
    width: 768px;
    margin: 40px auto 80px;
  }
}
@media (min-width: 769px) {
  .contact_box {
    width: 820px;
    margin: 40px auto 80px;
  }
}
.contact_box table {
  margin-left: 10px;
}

.contact_box img {
  vertical-align: middle;
}

.contact_box_title {
  padding: 0 0 5px 10px;
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 700;
  border-bottom: 4px solid #8cc63f;
}

.contact_box_telfax {
  margin: 20px 0 0 10px;
}

.contact_box_telfax img {
  vertical-align: middle;
}

.contact_box_telfax_text {
  font-size: 28px;
  letter-spacing: 1.5px;
}

.contact_box_telfax_text img {
  vertical-align: -1px;
}

.contact_box_telfax_text span {
  margin: -20px 0 0;
}

/* shiryou */
.page_contents_shiryou {
  width: 768px;
  margin: 30px auto;
}

.page_contents_shiryou table {
  font-size: 15px;
  border-collapse: collapse;
  border: 1px solid #333;
}

.page_contents_shiryou table th {
  width: 190px;
  padding: 10px 0 10px 10px;
  font-weight: 400;
  text-align: left;
  background-color: #eee;
  border-right: 1px solid #333;
  border-bottom: 1px dashed #999;
  border-left: 1px solid #333;
}

.page_contents_shiryou table td {
  padding: 10px;
  border-right: 1px solid #333;
  border-bottom: 1px dashed #999;
  border-left: 1px solid #333;
}

.page_contents_shiryou input[type=text] {
  width: 500px;
  height: 23px;
  padding-left: 5px;
  margin: 5px 0;
  border: 1px solid #999;
}

.page_contents_shiryou input[type=email] {
  width: 500px;
  height: 23px;
  padding-left: 5px;
  margin: 5px 0;
  border: 1px solid #999;
}

.page_contents_shiryou input[type=tel] {
  width: 500px;
  height: 23px;
  padding-left: 5px;
  margin: 5px 0;
  border: 1px solid #999;
}

.page_contents_shiryou input[type=number] {
  width: 50px;
  height: 23px;
  padding-left: 3px;
  margin: 5px 0;
  border: 1px solid #999;
}

.page_contents_shiryou select {
  width: 200px;
  height: 27px;
  padding-left: 5px;
  margin: 5px 0;
  border: 1px solid #999;
}

.page_contents_shiryou textarea {
  width: 500px;
  height: 200px;
  padding-left: 5px;
  margin: 5px 0;
  border: 1px solid #999;
}

.page_contents_shiryou input[type=submit] {
  width: 200px;
  height: 50px;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background-color: #004da0;
  border: none;
  box-shadow: 2px 2px 4px 2px rgba(0, 0, 0, 0.1);
}

.page_contents_shiryou input[type=button] {
  width: 200px;
  height: 50px;
  font-size: 16px;
  text-align: center;
  box-shadow: 2px 2px 4px 2px rgba(0, 0, 2, 0.1);
}

.page_contents_shiryou input[type=checkbox] {
  width: 15px;
  height: 15px;
  vertical-align: middle;
}

.shiryou_radio_list span.wpcf7-list-item {
  margin: 5px 0;
}

.shiryou_select_list span.wpcf7-list-item {
  display: block;
  margin: 5px 0;
}

.page_contents_shiryou_ex {
  font-size: 12px !important;
}

/* form_error */
.wpcf7 span.wpcf7-not-valid-tip {
  display: none;
}

.wpcf7 .wpcf7-not-valid {
  background: pink;
}

.wpcf7 .wpcf7-response-output {
  padding: 8px 35px 8px 14px;
  margin: 10px 0 0;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  border-radius: 4px;
}

.wpcf7 .wpcf7-validation-errors {
  color: #b94a48;
  background-color: #f2dede;
  border: 1px solid #eed3d7;
}

.wpcf7 .wpcf7-mail-sent-ok {
  color: #3a87ad;
  background-color: #d9edf7;
  border: 1px solid #bce8f1;
}

/* news */
.news_box {
  width: 860px;
  margin: 0 auto;
}

.news_contents {
  margin-bottom: 40px;
}

.news_contents_title {
  height: 40px;
  padding-left: 8px;
  line-height: 40px;
  border-left: 8px solid #8cc63f;
}

.news_contents_text {
  margin: 20px 0;
  font-size: 16px;
  line-height: 1.6;
}

.page_top {
  margin: 40px 0 0;
  text-align: right;
}

/* machine */
.machine_box {
  width: 100%;
  max-width: 768px;
  margin: 40px auto;
}

.machine_box_text {
  margin: 20px 0 60px auto;
}

.machine_menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.machine_menu li {
  display: flex;
  /* 縦方向中央揃え（Safari用） */
  justify-content: center;
  width: 100%;
  height: 100px;
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background-color: #004d9a;
  border-radius: 3px;
  /* 横方向中央揃え */
}
.machine_menu li a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  color: #fff;
}
.machine_menu li a:hover {
  color: #ff8000;
}
.machine_menu li a > div {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 769px) {
  .machine_box {
    max-width: 860px;
    margin: 40px auto;
  }
  .machine_box_text {
    margin: 20px 0 60px auto;
  }
  .machine_menu li {
    display: flex;
    /* 縦方向中央揃え（Safari用） */
    align-items: center;
    /* 縦方向中央揃え */
    /* 横方向中央揃え（Safari用） */
    justify-content: center;
    float: left;
    width: calc(50% - 10px);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    background-color: #004d9a;
    border-radius: 4px;
    /* 横方向中央揃え */
  }
  .machine_menu li:nth-of-type(2n) {
    margin-left: 10px;
  }
}
@media (max-width: 768px) {
  .machine_box_img {
    margin: 0 0 20px;
  }
  .machine_box_img img {
    width: 100%;
  }
}
@media (min-width: 769px) {
  .machine_box_img {
    margin: 0 0 20px;
  }
}
.machine_box_text_details {
  padding-left: 10px;
  margin: 0 0 40px;
  font-size: 16px;
}

.machine_box_title {
  padding: 0 0 5px 10px;
  margin: 0 0 10px;
  font-size: 21px;
  font-weight: 700;
  border-bottom: 4px solid #8cc63f;
}

.machine_course-type {
  font-weight: 600;
}
.machine_course-type span {
  display: block;
  font-size: 0.9em;
  font-weight: 400;
}

.machine_box_text_details table {
  width: 680px;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  border-collapse: collapse;
}

.machine_box_text_details th {
  font-size: 16px;
  background-color: #e0e0e0;
  border: 1px solid #333;
}

.machine_box_text_details td {
  min-width: 32px;
  padding: 5px;
  border: 1px solid #333;
}

.machin_box_table_no {
  width: 32px;
  background-color: #bae8f3;
}

.machin_box_table_text {
  width: 360px;
  padding: 10px;
  text-align: left;
}

/* tekisei */
.tekisei_title {
  height: 60px;
  background-color: #fbb03b;
}

.tekisei_box_text {
  margin: 20px auto 60px;
}

.tekisei_month {
  padding-bottom: 2px !important;
  font-size: 21px;
  background-color: transparent !important;
  border: none !important;
}

div.tekisei_sch_box_text_details table:nth-child(odd) {
  margin-right: 20px;
}

.tekisei_sch_box_text_details table tr th {
  background-color: #ccc;
}

.tekisei_sch_box_text_details table tr.tekisei_month th {
  font-size: 1.3rem;
  font-weight: 700;
  background-color: #fff;
  border-top: none;
  border-right: none;
  border-left: none;
}

.tekisei_sch_box_text_details table tr.tekisei_week th:nth-child(1) {
  background-color: #fae0d4;
}

.tekisei_sch_box_text_details table tr.tekisei_week th:nth-child(7) {
  background-color: #e6f5fc;
}

.tekisei_sch_box_text_details table tr td:empty {
  background-color: #fff;
}

.tekisei_sch_box_text_details table tr.tekisei_week th:nth-child(7),
.tekisei_sch_box_text_details table tr td:nth-child(7),
.tekisei_saturday {
  color: #1892cb;
}

.tekisei_sch_box_text_details table tr.tekisei_week th:nth-child(1),
.tekisei_sch_box_text_details table tr td:nth-child(1),
.tekisei_sunday {
  color: #e2142c !important;
}

.tekisei_none {
  background-color: transparent !important;
}

.tekisei_day {
  width: 100px;
  height: 100px;
  background-color: #c8fed9;
}

.tekisei_time {
  padding: 5px 10px;
  color: #fff;
  background-color: #1892cb;
}

.tekisei_close {
  position: relative;
  background-color: transparent !important;
  border: 1px solid #333;
}

.tekisei_close::before,
.tekisei_close::after {
  position: absolute;
  top: 49%;
  left: 0;
  display: block;
  width: 99%;
  content: "";
  border-top: 1px solid #333;
}

.tekisei_close::before {
  transform: skewY(-41deg);
}

.tekisei_close::after {
  transform: skewY(41deg);
}

.tekisei_sch_box_text_details table {
  float: left;
  width: 360px;
  margin-bottom: 20px;
  text-align: center;
  border-collapse: collapse;
}

.tekisei_sch_box_text_details th {
  padding: 10px 15px;
  font-weight: 400;
  background-color: #ccc;
  border: 1px solid #333;
}

.tekisei_sch_box_text_details td {
  padding: 10px 15px;
  background-color: #c8fed9;
  border: 1px solid #333;
}

@media (max-width: 768px) {
  .tekisei_box {
    width: 768px;
    margin: 40px auto;
  }
  .tekisei_box_text_info {
    width: 680px;
    margin: 50px auto 40px;
    line-height: 1.7;
  }
  .tekisei_box_title {
    padding: 0 0 5px 10px;
    margin: 0 0 10px;
    font-size: 21px;
    font-weight: 700;
    border-bottom: 4px solid #fbb03b;
  }
  .tekisei_box_text_details {
    padding-left: 10px;
    margin: 0 0 40px;
    font-size: 16px;
    line-height: 1.5;
  }
  .tekisei_box_text_details_text {
    /* padding-left: 10px; */
  }
  .tekisei_sch_box_title {
    padding: 0 0 5px 10px;
    margin: 0 0 10px;
    font-size: 21px;
    font-weight: 700;
    border-bottom: 4px solid #fbb03b;
  }
  .tekisei_sch_box_text_info {
    width: 740px;
    margin: 20px auto 30px;
    font-size: 16px;
    line-height: 1.7;
  }
  .tekisei_sch_box_text_info div {
    margin-bottom: 10px;
  }
  .tekisei_sch_box_text_details {
    width: 740px;
    margin: 0 auto 40px;
  }
}
@media (min-width: 769px) {
  .tekisei_box {
    width: 860px;
    margin: 40px auto;
  }
  .tekisei_box_text_info {
    width: 750px;
    margin: 50px 0 40px;
    line-height: 1.7;
  }
  .tekisei_box_title {
    padding-bottom: 5px;
    margin: 0 0 10px;
    font-size: 21px;
    font-weight: 700;
    border-bottom: 4px solid #fbb03b;
  }
  .tekisei_box_text_details {
    margin: 0 0 40px;
    font-size: 16px;
    line-height: 1.5;
  }
  .tekisei_box_text_details_text {
    width: 760px;
  }
  .tekisei_sch_box_title {
    padding: 0 0 5px 10px;
    margin: 0 0 10px;
    font-size: 21px;
    font-weight: 700;
    border-bottom: 4px solid #fbb03b;
  }
  .tekisei_sch_box_text_info {
    width: 740px;
    margin: 20px auto 30px;
    font-size: 16px;
    line-height: 1.7;
  }
  .tekisei_sch_box_text_info div {
    margin-bottom: 10px;
  }
  .tekisei_sch_box_text_details {
    width: 740px;
    margin: 0 auto 40px;
  }
  .tekisei_sch_box_text_details table {
    float: left;
    width: 360px;
    margin-bottom: 20px;
    text-align: center;
    border-collapse: collapse;
  }
  .tekisei_sch_box_text_details th {
    padding: 10px 15px;
    font-weight: 400;
    background-color: #ccc;
    border: 1px solid #333;
  }
  .tekisei_sch_box_text_details td {
    padding: 10px 15px;
    background-color: #c8fed9;
    border: 1px solid #333;
  }
}
/* タブのスタイル */
.tab_item {
  display: block;
  float: left;
  width: 347px;
  height: 50px;
  margin: 0 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 50px;
  color: #565656;
  text-align: center;
  background-color: #f2f2f2;
  border-top: 1px solid #afafaf;
  border-right: 1px solid #afafaf;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #afafaf;
  border-radius: 4px 4px 0 0;
  transition: all 0.2s ease;
}

.tab_item:hover {
  cursor: pointer;
  background: #fbb03b;
}

input[name=tab_item] {
  display: none;
}

/* タブ切り替えの中身のスタイル */
.tab_content {
  display: none;
}

.underborder {
  position: absolute;
  z-index: -1;
  display: block;
  width: 740px;
  height: 1px;
  margin-top: 49px;
  background: #afafaf;
}

/* 選択されているタブのコンテンツのみを表示 */
#tekisei_first:checked ~ #tekisei_first_content,
#tekisei_second:checked ~ #tekisei_second_content {
  display: block;
  height: 100%;
}

/* 選択されているタブのスタイルを変える */
.tekisei_sch_inner input:checked + .tab_item {
  background: #fff;
  border-bottom: 1px solid #fff;
}

.tekisei_box_text_table {
  width: 680px;
  font-size: 14px;
  line-height: 1.5;
  border-collapse: collapse;
}

.tekisei_box_text_table th {
  padding: 10px 5px;
  font-size: 18px;
  text-align: center;
  background-color: #e0e0e0;
  border: 1px solid #333;
}

.tekisei_box_text_table td {
  min-width: 32px;
  padding: 5px;
  text-align: left;
  border: 1px solid #333;
}

.tekisei_box_text_table_case {
  width: 107px;
  padding: 10px 5px !important;
  text-align: center !important;
  background-color: #ffeed9;
}

.tekisei_box_text_table_case2 {
  width: 58px;
  text-align: center;
}

.tekisei_box_text_table_info {
  width: 680px;
  margin: 10px 0 0;
  font-size: 14px;
  text-align: right;
}

.tekisei_box_text_details li {
  margin-bottom: 10px;
}

.tekisei_moushikomi {
  display: flex;
  flex-wrap: wrap;
  width: 650px;
}

.tekisei_moushikomi_file {
  display: flex;
  justify-content: center;
  width: 650px;
  height: 180px;
  margin-top: 10px;
  background-image: url("img/tekisei_img02.png");
  background-repeat: no-repeat;
  background-position: center center;
  margin-bottom: 40px;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.tekisei_moushikomi_file > div {
  margin-top: 60px;
}
.tekisei_moushikomi_file a {
  display: block;
}

.tekisei_freedial {
  margin: 15px 0 20px;
  font-size: 18px;
}

.tekisei_freedial img {
  vertical-align: -10px;
}

.tekisei_telfax {
  margin: 0;
  letter-spacing: 2px;
  border: none;
}

.tekisei_telfax th {
  width: 50px;
  height: 30px;
  padding: 3px;
  border: none;
}

.tekisei_telfax th div {
  width: 50px;
  padding: 6px 5px 5px;
  color: #fff;
  text-align: center;
  background-color: #f7931e;
  border: none;
}

.tekisei_telfax td {
  font-size: 28px;
  border: none;
}

@media (max-width: 768px) {
  .tekisei_access_map {
    margin: 40px 0;
  }
  .tekisei_access_map iframe {
    width: 100% !important;
  }
}
@media (min-width: 769px) {
  .tekisei_access_map {
    margin: 40px 0;
  }
}
.tekisei_box_text_company {
  font-size: 18px;
}

/* career */
.career_title {
  padding: 25px 0;
  margin-top: -10px;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background-color: #004da0;
}

@media (max-width: 768px) {
  .career_box {
    width: 768px;
    margin: 0 auto 40px;
  }
  .career_box_text {
    margin: 20px 0 60px auto;
  }
  .career_box_text_menu {
    display: none;
  }
  .sp_career_box_text_menu {
    width: 680px;
    margin: 20px auto;
  }
  .sp_career_box_text_menu li {
    float: left;
    margin-bottom: 20px;
  }
  .career_box_text_details {
    width: 100%;
    margin: 40px auto;
  }
  .career_box_title {
    border-bottom: 4px solid #004da0;
  }
  .career_box_title_job {
    float: left;
    margin-left: 10px;
    font-size: 28px;
    font-weight: 700;
  }
  .career_box_title_navi {
    float: right;
    padding: 0 10px 0 8px;
    margin: 14px 0 0;
    text-align: center;
    vertical-align: bottom;
    background-color: #004da0;
  }
  .career_box_text_details table {
    width: 768px;
    margin: 20px 0 0;
  }
  .career_box_text_details th {
    width: 160px;
    height: 37px;
    font-weight: 400;
    vertical-align: top;
  }
  .career_box_text_details th div {
    padding: 5px;
    background-color: #c7b299;
  }
  .career_box_text_details td {
    font-size: 16px;
    vertical-align: top;
  }
  .career_box_text_details_td {
    width: 365px;
    padding: 0 20px 0 5px;
  }
  .career_box_title_contact {
    padding: 10px 0;
    margin: 60px 0 0;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    background-color: #004da0;
  }
  .career_box_text_company {
    width: 100%;
    padding: 30px 0;
    margin: 20px 0 0;
    color: #fff;
    text-align: center;
    background-color: #004da0;
  }
  .career_freedial {
    margin: 20px 0 0;
    font-size: 18px;
    text-align: center;
  }
  .career_freedial_tantou {
    width: 350px;
    padding: 5px;
    margin: 10px auto 0;
    font-weight: 700;
    color: #fff;
    text-align: center;
    background-color: #f7931e;
  }
}
@media (min-width: 769px) {
  .career_box {
    width: 860px;
    margin: 0 auto 40px;
  }
  .career_box_text {
    margin: 20px 0 60px auto;
  }
  .sp_career_box_text_menu {
    display: none;
  }
  .career_box_text_menu {
    width: 860px;
    margin: 20px auto;
  }
  .career_box_text_menu li {
    float: left;
    margin-bottom: 20px;
  }
  .career_box_text_details {
    width: 860px;
    margin: 40px auto;
  }
  .career_box_title {
    border-bottom: 4px solid #004da0;
  }
  .career_box_title_job {
    float: left;
    font-size: 28px;
    font-weight: 700;
  }
  .career_box_title_navi {
    float: right;
    padding: 0 10px 0 8px;
    margin: 14px 0 0;
    text-align: center;
    vertical-align: bottom;
    background-color: #004da0;
  }
  .career_box_text_details table {
    width: 860px;
    margin: 20px 0 0;
  }
  .career_box_text_details th {
    width: 100px;
    height: 37px;
    font-weight: 400;
    vertical-align: top;
  }
  .career_box_text_details th div {
    padding: 5px;
    background-color: #c7b299;
  }
  .career_box_text_details td {
    font-size: 16px;
    vertical-align: top;
  }
  .career_box_text_details_td {
    width: 365px;
    padding: 0 20px 0 5px;
  }
  .career_box_title_contact {
    padding: 10px 0 10px 15px;
    margin: 60px 0 0;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    background-color: #004da0;
  }
  .career_box_text_company {
    float: left;
    width: 350px;
    padding: 30px 0;
    margin: 20px 40px 0 0;
    color: #fff;
    text-align: center;
    background-color: #004da0;
  }
  .career_freedial {
    float: left;
    margin: 40px 0 0;
    font-size: 18px;
  }
  .career_freedial_tantou {
    padding: 5px;
    margin: 10px 0 0;
    font-weight: 700;
    color: #fff;
    text-align: center;
    background-color: #f7931e;
  }
}
/* footer */
#footer {
  padding: 0;
  margin: 0;
}

.footer_line {
  height: 25px;
  margin: 0;
  font-size: 12px;
  line-height: 25px;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  background-color: #004d9c;
}

.footer_banner {
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
  box-sizing: border-box;
  margin-bottom: 48px;
}
.footer_banner a {
  display: block;
}
.footer_banner img {
  width: auto;
  display: block;
}
.footer_banner div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.footer_banner div + div {
  margin-top: 24px;
}
.footer_banner_app {
  gap: 16px;
}
.footer_banner_app img {
  max-height: 96px;
}
.footer_banner_epos {
  gap: 16px;
}
.footer_banner_epos img {
  border: 1px solid #494949;
}
.footer_banner_epos img {
  max-height: 128px;
}

@media (max-width: 768px) {
  .footer_contents {
    padding: 0;
    margin: 10px auto 0;
    font-size: 14px;
  }
  .footer_info {
    display: none;
  }
  .sp_footer_info {
    margin: 30px auto 25px;
  }
  .footer_site_info {
    margin: 0 0 60px;
    font-size: 28px !important;
  }
  .footer_site_info li {
    width: 100%;
    padding: 20px 0;
    margin: 10px 0;
    font-weight: 700;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    background-color: #004d9c;
  }
  .footer_site_info a {
    display: block;
    width: 100%;
  }
  .footer_site_info a:link,
  .footer_site_info a:visited,
  .footer_site_info a:active {
    color: #fff;
    text-decoration: none;
  }
  .footer_site_info a:hover {
    color: #ff8000;
    text-decoration: none;
  }
  .footer_company {
    margin: 0;
    text-align: center;
  }
  .footer_logo {
    margin: 0 0 30px;
  }
  .footer_contact_tel {
    margin: 0 0 30px;
    font-size: 21px;
  }
  .footer_company_telfax {
    margin: 0;
    text-align: center;
    letter-spacing: 2px;
  }
  .footer_company_telfax table {
    width: 280px;
    margin: 0 auto 30px;
  }
  .footer_company_telfax th {
    width: 50px;
    height: 30px;
    padding: 3px;
  }
  .footer_company_telfax th div {
    width: 50px;
    padding: 6px 5px 5px;
    color: #fff;
    text-align: center;
    background-color: #004d9c;
  }
  .footer_company_telfax td {
    font-size: 25px;
  }
  .footer_company_info2 {
    margin: 0 0 24px;
    letter-spacing: 2px;
  }
  .footer_company_info2 a:link,
  .footer_company_info2 a:active,
  .footer_company_info2 a:visited,
  .footer_company_info2 a:hover {
    color: #fff;
  }
  .footer_contact {
    width: 480px;
    margin: 40px auto 60px;
    text-align: center;
  }
  .footer_contact table {
    border-collapse: collapse;
  }
  .footer_contact td {
    border-spacing: 0;
  }
}
@media (min-width: 769px) {
  .footer_banner div {
    flex-flow: row nowrap;
  }
  .footer_contents {
    width: 980px;
    padding: 0;
    margin: 10px auto 0;
    font-size: 14px;
  }
  .sp_footer_info {
    display: none;
  }
  .footer_info {
    width: 980px;
    margin: 30px auto 25px;
  }
  .footer_company {
    float: left;
    width: 280px;
    margin: 0 20px 0 0;
  }
  .footer_logo {
    margin: 0 0 20px 10px;
  }
  .footer_company_telfax {
    margin: 0;
    letter-spacing: 2px;
  }
  .footer_company_telfax th {
    width: 50px;
    height: 30px;
    padding: 3px;
  }
  .footer_company_telfax th div {
    width: 50px;
    padding: 6px 5px 5px;
    color: #fff;
    text-align: center;
    background-color: #004d9c;
  }
  .footer_company_telfax td {
    font-size: 21px;
  }
  .footer_company_info2 {
    margin: 0 0 24px;
    letter-spacing: 2px;
  }
  .footer_company_info2 a:link,
  .footer_company_info2 a:active,
  .footer_company_info2 a:visited,
  .footer_company_info2 a:hover {
    color: #fff;
  }
  .footer_site_info {
    float: right;
    margin: 0 10px 0 0;
    font-size: 12px !important;
  }
  .footer_site_info li {
    float: left;
    padding: 0;
    margin: 0 18px 0 0;
    font-weight: 700;
    vertical-align: middle;
  }
  .footer_site_info a:link,
  .footer_site_info a:visited,
  .footer_site_info a:active {
    color: #004d9c;
    text-decoration: none;
  }
  .footer_site_info a:hover {
    color: #ff8000;
    text-decoration: none;
  }
  .footer_menu_arrow {
    float: left;
    width: 18px;
    height: 18px;
    padding: 0;
    margin: -2px 3px 0 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    background-color: #88c23f;
    border-radius: 50%;
  }
  .footer_contact {
    float: right;
    margin: 40px 20px 0 0;
  }
  .footer_contact_tel {
    float: left;
    margin: 35px 20px 0 0;
  }
  .footer_contact_mail {
    float: left;
    margin: 0;
  }
}
#footer_tekisei {
  padding: 0;
  margin: 0;
  border-top: 2px solid #f7931e;
}

@media (max-width: 768px) {
  .footer_info_tekisei {
    width: 768px;
    margin: 30px auto;
  }
  .footer_company_tekisei {
    width: 425px;
    margin: 30px auto;
  }
  .footer_logo_tekisei {
    display: none;
  }
  .sp_footer_logo_tekisei {
    margin: 20px 0;
    text-align: center;
  }
  .footer_contact_tekisei {
    margin: 0 auto;
    text-align: center;
  }
  .footer_contact_tel_tekisei {
    margin: 0 0 20px;
  }
  .footer_company_telfax_tekisei {
    width: 235px;
    margin: 0 auto 30px;
    text-align: center;
    letter-spacing: 2px;
  }
  .footer_company_telfax_tekisei th {
    width: 50px;
    height: 30px;
    padding: 3px;
  }
  .footer_company_telfax_tekisei th div {
    width: 50px;
    padding: 6px 5px 5px;
    color: #fff;
    text-align: center;
    background-color: #f7931e;
  }
  .footer_company_telfax_tekisei td {
    font-size: 21px;
  }
  .footer_contact_mail_tekisei {
    display: none;
  }
  .sp_footer_contact_mail_tekisei {
    width: 480px;
    margin: 0 auto;
  }
  .sp_footer_contact_mail_tekisei div {
    float: left;
  }
}
@media (min-width: 769px) {
  .footer_info_tekisei {
    width: 980px;
    margin: 30px auto;
  }
  .footer_company_tekisei {
    float: left;
    width: 280px;
    margin: 15px 0 0;
  }
  .footer_logo_tekisei {
    margin: 0 0 20px 10px;
  }
  .sp_footer_logo_tekisei {
    display: none;
  }
  .footer_contact_tekisei {
    float: right;
    margin: 0 10px 0 0;
  }
  .footer_contact_tel_tekisei {
    float: left;
    margin: 0 20px 0 0;
  }
  .footer_contact_tekisei ul {
    float: left;
  }
  .footer_company_telfax_tekisei {
    margin: 0;
    letter-spacing: 2px;
  }
  .footer_company_telfax_tekisei th {
    width: 50px;
    height: 30px;
    padding: 3px;
  }
  .footer_company_telfax_tekisei th div {
    width: 50px;
    padding: 6px 5px 5px;
    color: #fff;
    text-align: center;
    background-color: #f7931e;
  }
  .footer_company_telfax_tekisei td {
    font-size: 21px;
  }
  .sp_footer_contact_mail_tekisei {
    display: none;
  }
  .footer_contact_mail_tekisei {
    float: left;
    margin: 0;
  }
}
.footer_line_tekisei {
  height: 25px;
  margin: 0;
  font-size: 12px;
  line-height: 25px;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  background-color: #f7931e;
}

#footer_career {
  padding: 0;
  margin: 0;
  border-top: 2px solid #004da0;
}

@media (max-width: 768px) {
  .footer_info_career {
    width: 768px;
    margin: 0 auto;
  }
  .footer_company_career {
    margin: 30px 0 0;
    text-align: center;
  }
  .footer_contact_career {
    margin: 0;
  }
  .footer_contact_tel_career {
    margin: 0 0 40px;
    text-align: center;
  }
}
@media (min-width: 769px) {
  .footer_info_career {
    width: 980px;
    margin: 0 auto;
  }
  .footer_company_career {
    float: left;
    margin: 15px 0 0;
  }
  .footer_contact_career {
    float: right;
    margin: 0 10px 0 0;
  }
  .footer_contact_tel_career {
    margin: 60px 0 0;
  }
}
.footer_line_career {
  height: 25px;
  margin: 0;
  font-size: 12px;
  line-height: 25px;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  background-color: #004da0;
}

.pagetop {
  position: fixed;
  right: 15px;
  bottom: 30px;
  display: none;
}

.pagetop a {
  display: block;
  width: 80px;
  height: 60px;
  padding-top: 20px;
  font-size: 15px;
  line-height: 130%;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #fbb03b;
  filter: alpha(opacity=90);
  border-radius: 80px;
  -moz-opacity: 0.9;
  opacity: 0.9;
}

.pagetop a:hover {
  display: block;
  width: 80px;
  height: 60px;
  padding-top: 20px;
  font-size: 15px;
  line-height: 130%;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #b2d1fb;
  filter: alpha(opacity=90);
  border-radius: 80px;
  -moz-opacity: 0.9;
  opacity: 0.9;
}

.pagetop_arrow {
  margin-top: 20px;
  font-size: 24px;
}

.page_404 {
  width: 980px;
  margin: 0 auto;
}

.no_page {
  margin: 50px 0 30px 15px;
  clear: both;
  font-size: 16px;
  font-weight: 700;
  color: #fff !important;
}

p {
  padding: 0;
  margin: 0;
}

h1,
h2 {
  padding: 0;
  margin: 0;
  border: 0;
}

img {
  padding: 0;
  margin: 0;
  vertical-align: bottom;
  border: none;
}

a:link {
  text-decoration: none;
  /* color: #0077cc; */
}

a:visited {
  text-decoration: none;
  /* color: #333333; */
}

a:active {
  text-decoration: none;
  /* color: #333333; */
}

a:hover {
  text-decoration: none;
  /* color: #084995; */
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

div {
  padding: 0;
  margin: 0;
}

.marker {
  color: #ccc;
}

.red {
  color: #f00;
}

.blue {
  color: #182987;
}

.orange {
  color: #f05a24;
}

.green {
  color: #009844;
}

.white {
  color: #fff;
}

.back_c_eee {
  background-color: #eee;
}

.bold {
  font-weight: 700 !important;
}

.txcen {
  text-align: center !important;
}

.txrig {
  text-align: right !important;
}

.txlef {
  text-align: left !important;
}

.mrgn-t5 {
  margin-top: 5px !important;
}

.mrgn-t7 {
  margin-top: 7px !important;
}

.mrgn-t10 {
  margin-top: 10px !important;
}

.mrgn-t15 {
  margin-top: 15px !important;
}

.mrgn-t20 {
  margin-top: 20px !important;
}

.mrgn-t30 {
  margin-top: 30px !important;
}

.mrgn-t40 {
  margin-top: 40px !important;
}

.mrgn-t50 {
  margin-top: 50px !important;
}

.mrgn-t60 {
  margin-top: 60px !important;
}

.mrgn-t80 {
  margin-top: 80px !important;
}

.mrgn-b5 {
  margin-bottom: 5px !important;
}

.mrgn-b7 {
  margin-bottom: 7px !important;
}

.mrgn-b10 {
  margin-bottom: 10px !important;
}

.mrgn-b15 {
  margin-bottom: 15px !important;
}

.mrgn-b20 {
  margin-bottom: 20px !important;
}

.mrgn-b30 {
  margin-bottom: 30px !important;
}

.mrgn-b40 {
  margin-bottom: 40px !important;
}

.mrgn-b50 {
  margin-bottom: 50px !important;
}

.mrgn-b60 {
  margin-bottom: 60px !important;
}

.mrgn-b70 {
  margin-bottom: 70px !important;
}

.mrgn-b80 {
  margin-bottom: 80px !important;
}

.mrgn-b100 {
  margin-bottom: 100px !important;
}

.mrgn-b120 {
  margin-bottom: 120px !important;
}

.mrgn-l-none {
  margin-left: 0 !important;
}

.mrgn-l3 {
  margin-left: 3px !important;
}

.mrgn-l10 {
  margin-left: 10px !important;
}

.mrgn-l12 {
  margin-left: 12px !important;
}

.mrgn-l15 {
  margin-left: 15px !important;
}

.mrgn-l20 {
  margin-left: 20px !important;
}

.mrgn-l25 {
  margin-left: 25px !important;
}

.mrgn-r-none {
  margin-right: 0 !important;
}

.mrgn-r3 {
  margin-right: 3px !important;
}

.mrgn-r10 {
  margin-right: 10px !important;
}

.mrgn-r12 {
  margin-right: 12px !important;
}

.mrgn-r15 {
  margin-right: 15px !important;
}

.mrgn-r20 {
  margin-right: 20px !important;
}

.mrgn-r25 {
  margin-right: 25px !important;
}

.mrgn-r30 {
  margin-right: 30px !important;
}

.mrgn-r40 {
  margin-right: 40px !important;
}

.mrgn-r50 {
  margin-right: 50px !important;
}

.mrgn-r52 {
  margin-right: 52px !important;
}

.mrgn-r60 {
  margin-right: 60px !important;
}

.mrgn-r70 {
  margin-right: 70px !important;
}

.mrgn-r78 {
  margin-right: 78px !important;
}

.mrgn-r80 {
  margin-right: 80px !important;
}

.mrgn-r90 {
  margin-right: 90px !important;
}

.mrgn-r100 {
  margin-right: 100px !important;
}

.pad_t10 {
  padding-top: 10px !important;
}

.pad_t15 {
  padding-top: 15px !important;
}

.pad_t20 {
  padding-top: 20px !important;
}

.pad_b10 {
  padding-bottom: 10px !important;
}

.pad_b15 {
  padding-bottom: 15px !important;
}

.pad_b20 {
  padding-bottom: 20px !important;
}

.pad_b30 {
  padding-bottom: 30px !important;
}

.pad_b40 {
  padding-bottom: 40px !important;
}

.pad_b50 {
  padding-bottom: 50px !important;
}

.pad_l25 {
  padding-left: 25px !important;
}

.pad_l30 {
  padding-left: 30px !important;
}

.pad_l40 {
  padding-left: 40px !important;
}

.pad_r10 {
  padding-right: 10px !important;
}

.pad_r20 {
  padding-right: 20px !important;
}

.pad_r25 {
  padding-right: 25px !important;
}

.pad_r30 {
  padding-right: 30px !important;
}

.pad_r40 {
  padding-right: 40px !important;
}

.f-size10 {
  font-size: 10px !important;
}

.f-size11 {
  font-size: 11px !important;
}

.f-size12 {
  font-size: 12px !important;
}

.f-size13 {
  font-size: 13px !important;
}

.f-size14 {
  font-size: 14px !important;
}

.f-size15 {
  font-size: 15px !important;
}

.f-size16 {
  font-size: 16px !important;
}

.f-size17 {
  font-size: 17px !important;
}

.f-size18 {
  font-size: 18px !important;
}

.f-size20 {
  font-size: 20px !important;
}

.f-size21 {
  font-size: 21px !important;
}

.f-size22 {
  font-size: 22px !important;
}

.f-size24 {
  font-size: 24px !important;
}

.f-size26 {
  font-size: 26px !important;
}

.f-size28 {
  font-size: 28px !important;
}

.f-size36 {
  font-size: 36px !important;
}

.b-1 {
  border: 1px solid #333 !important;
}

.b_b1 {
  border-bottom: 1px solid #fff !important;
}

.bl_1 {
  border-left: 1px solid #fff !important;
}

.bl_none {
  border-left: 0 !important;
}

.br_none {
  border-right: 0 !important;
}

.bb_none {
  border-bottom: 0 !important;
}

.bl_dotted {
  border-left: 1px dotted #777 !important;
}

.bb_dashed {
  border-bottom: 1px dashed #796a55 !important;
}

.f_left {
  float: left !important;
}

.f_right {
  float: right !important;
}

.f-color1 {
  color: #a45773;
}

.line-h-1em {
  line-height: 1em !important;
}

.line-h-100 {
  line-height: 100% !important;
}

.line-h-110 {
  line-height: 110% !important;
}

.line-h-120 {
  line-height: 120% !important;
}

.line-h-130 {
  line-height: 130% !important;
}

.line-h-140 {
  line-height: 140% !important;
}

.line-h-150 {
  line-height: 150% !important;
}

.line-h-160 {
  line-height: 160% !important;
}

.line-h-170 {
  line-height: 170% !important;
}

.line-h-180 {
  line-height: 180% !important;
}

.line-h-200 {
  line-height: 200% !important;
}

a.link_no {
  display: block;
  width: 100%;
  pointer-events: none;
}

a img.filter {
  background: none !important;
}

a:hover img.filter {
  background: none !important;
  filter: "alpha( opacity=80 )";
  filter: alpha(opacity=80);
  opacity: 0.8;
}

iframe {
  padding: 0;
  margin: 0;
}

.shadow {
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 2, 0.2));
}

_:input-placeholder,
:root .shadow {
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 2, 0.1);
}

/* clearfix
------------------------------ */
.clearfix::after {
  display: block;
  clear: both;
  content: " ";
}

/* add(style_add.css対応していないページ用の追加) */
.machine_box_child {
  width: 680px;
  text-align: right;
}

/* covid19
------------------------------ */
.page_covid19 img {
  max-width: 100%;
}

.page_covid19 section {
  margin-bottom: 30px;
}

.page_covid19 .container {
  width: 980px;
  padding-bottom: 30px;
  margin: 0 auto;
}

.page_covid19 * img {
  max-width: 100%;
}

.page_covid19 .header_img,
.page_covid19 .covid19_prevention .subtitle,
.page_covid19 .covid19_prevention .covid.fig {
  padding: 20px 0;
  margin: 0 auto;
  text-align: center;
}

.page_covid19 .header_img p {
  max-width: 620px;
  padding: 2% 0;
  margin: 0 auto;
  font-size: 0.9em;
  font-weight: 900;
  text-align: left;
}

.covid19_prevention {
  padding: 3% 0;
  text-align: center;
  background: #4b68af;
}

.page_covid19 .covid19_prevention .covid.fig {
  width: 830px;
}

.page_covid19 .covid19_request {
  padding: 4%;
  border: 6px solid #d2ecfa;
}

.page_covid19 .covid19_request h4 {
  padding: 2% 0;
  margin: 0 auto;
  font-size: 1.5em;
  font-weight: 900;
  color: #4b68af;
  text-align: center;
}

.page_covid19 .covid19_request .covid19_request__list {
  position: relative;
  padding: 0 2em;
  margin: 0;
}

.page_covid19 .covid19_request .covid19_request__list li {
  padding-bottom: 1em;
  padding-left: 1.25em;
  margin: 0;
  font-size: 1em;
  line-height: 1.6;
  list-style: none;
  list-style-position: outside;
}

.page_covid19 .covid19_request .covid19_request__list li span {
  position: absolute;
  left: 1.5em;
  margin: 0;
}

.covid19_banner {
  display: block;
  width: 489px;
  margin: 0 auto 30px;
  background: #fff;
  border-bottom: solid 4px #dcdcdc;
  transition: 0.5s all;
}

.covid19_banner:hover {
  border-bottom: solid 4px #fff;
  transition: 0.5s all;
  transform: translateY(4px);
}

.covid19_banner a {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: 0.5s all;
}

.covid19_banner a:hover {
  background: rgb(255, 233, 233);
  transition: 0.5s all;
}

@media screen and (max-width: 767px) {
  .page_covid19 .container {
    width: 100%;
  }
  .page_covid19 .covid19_prevention .subtitle {
    box-sizing: border-box;
    padding-right: 2%;
    padding-left: 2%;
  }
  .page_covid19 .header_img p {
    font-size: 1.4em;
  }
  .page_covid19 .covid19_request h4 {
    font-size: 2.2em;
  }
  .page_covid19 .covid19_request .covid19_request__list li {
    font-size: 1.6em;
  }
  .page_covid19 .covid19_request .covid19_request__list li span {
    position: absolute;
    left: 1em;
    margin: 0;
  }
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

/* 変数 */
:root {
  --color-main: #5d9ab2;
  --color-accent: #bf6a7a;
  --color-dark: #2b5566;
  --color-text: #fff;
  --color-alt: #444;
  --color-lightgray: #606c76;
  --color-gray: #2c3338;
  --color-darkgray: #282e33;
  --color-orange: #e35422;
  --color-link: #5d93d8;
  --color-link-text: #fff;
  --color-link-hover: #ff963b;
  --color-link-hover-alt: #8544da;
  --font-alt: 200 6vw/1 "Spectral", serif;
}

/* テキスト */
.font-alt {
  color: var(--color-alt) !important;
}

.font-thin {
  font-weight: 100;
}

.font-normal {
  font-weight: 400;
}

.font-bold {
  font-weight: 700;
}

.width-600 {
  max-width: 600px;
}

/* 背景 */
.bg-white {
  background-color: #fff;
}

.bg-cream {
  background-color: #f3f1ec;
}

.bg-deepcream {
  background-color: #efeee6;
}

.bg-lightgray {
  background-color: var(--color-lightgray);
}

.bg-gray {
  background-color: var(--color-gray);
}

.bg-darkgray {
  background-color: var(--color-darkgray);
}

.bg-orange {
  background-color: #ff963b;
}

/*  リンク設定 */
a {
  transition: 0.2s !important;
}

a:hover,
a:focus {
  background: #fff;
  opacity: 0.7;
  transition: 0.4s !important;
}

a.no-white {
  opacity: 1;
}

a.no-white:hover,
a.no-white:focus {
  opacity: 1;
}

/* a:hover,
a:focus {
  color: #fff!important;
  background: rgb(6, 146, 123);
  transition: .4s!important;
} */
.telNoLink {
  pointer-events: none;
}

/*
a[target="_blank"]::after {
  font-family: 'FontAwesome';
  content: '\f08e';
  font-size: 90%;
  margin: 0 3px;
}
.no_icon{
    background-image: none!important;
}
*/
/* 文字指定 */
body {
  font-family: "Yu Gothic Medium", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-feature-settings: "palt" 1;
  color: var(--text-color);
}

.mincho {
  font-family: "Yu Mincho Medium", "游明朝 Medium", YuMincho, "游明朝体", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-feature-settings: "palt" 1;
}

.small {
  font-size: 0.75rem;
}

/* 基本設定 */
* {
  box-sizing: border-box;
}

body,
html {
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul li {
  list-style-type: none;
}

.flex {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-basis: auto;
}

h1,
h2,
h3,
h4 {
  letter-spacing: 0.2rem;
  word-wrap: break-word;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

/* fontawesome */
nav i {
  padding: 2px;
  margin: 0;
  font-size: 22px;
}

/* Fonts */
/* fontawesome */
[class*=fontawesome-]::before {
  font-family: FontAwesome, sans-serif;
}

/* shadow */
.shadow {
  filter: drop-shadow(0 2px 3px rgba(10, 10, 10, 0.1));
}

.shadow_l {
  filter: drop-shadow(2px 2px 3px rgba(126, 126, 126, 0.8));
}

.shadow_b {
  filter: drop-shadow(2px 2px 0 rgba(126, 126, 126, 0.8));
}

.zoom {
  overflow: hidden;
  background: #000;
}

.zoom img {
  display: block;
  transition: all 0.2s ease 0s;
}

.zoom img:hover {
  opacity: 0.6;
  transition: all 0.2s ease 0s;
  transform: scale(1.05);
}

/* clearfix
------------------------------ */
.clearfix::after {
  /* 新しい要素を作る */
  display: block;
  height: 0;
  /* ブロックレベル要素に */
  clear: both;
  visibility: hidden;
  content: ".";
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /* \ */
  /* /
  height: auto;
  overflow: hidden;
  /  **/
}

/* コンポーネント */
.center-box {
  margin: 0 auto;
}

.al-center {
  text-align: center;
}

.is-300x150 {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.no-round {
  border-radius: 0 !important;
}

.vl-bottom-p {
  position: relative;
}

.vl-bottom-c {
  position: absolute;
  bottom: 0;
}

.val-bottom {
  vertical-align: bottom;
}

.is-300x150 {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.no-round {
  border-radius: 0 !important;
}

img.limit-width {
  max-width: 95%;
  height: auto;
}

/* フッター */
footer {
  padding: 0 !important;
  margin: 0 !important;
  font-size: 1rem;
  color: var(--color-alt);
  background: var(--color-darkgray) !important;
}

footer .inner {
  padding: 2rem 1.5rem 0.5rem !important;
}

footer .logo img {
  width: 220px;
  margin-left: -10px;
}

.mobileButton {
  margin: 8px 0 0;
}

.horizontal ul {
  padding: 0;
  margin: 0;
}

.horizontal ul li {
  width: 100%;
  padding: 0 1rem;
  margin: 3px;
  line-height: 1.2rem;
  color: white;
  text-align: left;
  background: #2c2d30;
}

.horizontal ul li a {
  display: block;
  width: 100%;
  padding: 2px 30px;
  margin: 0;
  font-size: 1rem;
}

.horizontal ul li a:hover {
  color: #2c2d30;
  background: var(--color-alt);
}

.horizontal ul li:first-child {
  border: none;
}

.copyright {
  padding: 0 10px 5px;
  font-size: 0.75rem;
  color: var(--color-alt);
  text-align: right;
  background: #000 !important;
}

/* 総合トップ */
.portal .wrapper {
  width: 100%;
  /*   min-width: 475px; */
  overflow: hidden;
}

.portal .hero {
  /*   align-items: stretch;
  flex-direction: column;
  justify-content: space-between; */
}

.portal .hero .hero-body {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  min-height: 735px;
  max-height: 800px;
  background: url(img/bg_portal_sky.jpg) no-repeat center bottom;
  background-attachment: fixed;
  background-size: cover;
}

.portal .hero .hero-obi {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 100%;
  height: 112px;
  background: #01237a;
  opacity: 0.8;
  transform: translateY(-50%);
}

.portal .hero .hero-road {
  position: absolute;
  top: calc(50% - 163px);
  left: 50%;
  z-index: 3;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: url(img/logo_portal_layer3-5.svg) no-repeat center;
  transform: translateX(-50%);
}

.portal .hero .hero-body .container {
  position: absolute;
  top: 0;
  left: 0;
  left: 50%;
  z-index: 3;
  width: 100%;
  max-width: 980px;
  height: 100vh;
  min-height: 735px;
  max-height: 800px;
  transform: translateX(-50%);
}

.portal .hero .hero-body .container .box {
  position: relative;
  width: 100%;
  height: 100vh;
  /* background: #8544da; */
  min-height: 735px;
  max-height: 800px;
}

.portal .hero .hero-img1,
.portal .hero .hero-img2,
.portal .hero .hero-img3,
.portal .hero .hero-img4,
.portal .hero .hero-img5 {
  position: absolute;
}

.portal .hero .hero-img1 {
  top: 50%;
  left: 5%;
  z-index: 8;
  transform: translateY(-50%);
}

.portal .hero .hero-img1 img {
  width: 300px;
}

.portal .hero .hero-img2 {
  top: 54%;
  right: 16%;
  z-index: 5;
  transform: translateY(-66%);
}

.portal .hero .hero-img3 {
  top: 62%;
  right: 4%;
  z-index: 6;
  transform: translateY(-42%);
}

.portal .hero .hero-img4 {
  top: 33%;
  right: 7%;
  z-index: 7;
  transform: translateY(-66%);
}

.portal .hero .hero-img5 {
  bottom: 0 !important;
  left: 50%;
  z-index: 7;
  padding: 0;
  transform: translateX(-50%);
}

.portal .hero .hero-img5 img {
  max-width: 400px;
}

.portal .hero .hero-footer {
  min-height: 148px;
  padding-top: 10px;
  text-align: center;
  word-wrap: break-word;
}

.drawer {
  width: 100%;
  padding: 0;
  margin: 20px auto 40px;
}

.grid {
  padding: 0;
  margin: 0 auto;
  text-align: center;
  list-style: none;
}

.grid li {
  position: relative;
  display: inline-block;
  padding: 0;
  margin: 0 auto;
  text-align: left;
}

.grid figure {
  position: relative;
  margin: 0 auto;
}

.grid figure img {
  position: relative;
  display: block;
}

.grid figcaption {
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  padding: 20px;
  color: #ed4e6e;
  background: #2c3f52;
}

.grid figcaption.fig-img1 {
  background: url(img/ph_top-hover_01b.png) no-repeat;
}

.grid figcaption.fig-img2 {
  background: url(img/ph_top-hover_02b.png) no-repeat;
}

.grid figcaption h3 {
  padding: 0;
  margin: 0;
  color: #fff;
}

.grid figcaption a {
  display: inline-block;
  padding: 5px 10px;
  color: #fff;
  text-align: center;
  background: #ed4e6e;
  border-radius: 2px;
}

.grid_s {
  display: flex;
  flex-basis: auto;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 98%;
  padding: 10px auto 50px;
  margin: 0 auto;
  text-align: center;
  list-style: none;
}

.grid_s_outer {
  width: 100%;
  padding: 0 10px;
  margin: 0 auto;
}

.grid_s li:nth-child(3) {
  margin-left: 0;
}

@media screen and (min-width: 479px), print {
  /* 中間表示 */
  .grid_s {
    padding: 5% 10px 5% 0;
    margin: 0 auto;
  }
  .grid_s_outer {
    width: 479px;
    margin: 0 auto;
  }
  .grid_s li:nth-child(3) {
    margin-left: 0;
  }
}
@media screen and (min-width: 769px), print {
  /* PC表示 */
  .grid_s {
    display: flex;
    flex-basis: auto;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 850px;
    padding: 0 0 50px;
    margin: 0 auto;
    text-align: center;
    list-style: none;
  }
  .grid_s_outer {
    margin: 0 auto;
  }
}
@media screen and (min-width: 942px), print {
  /* PC表示 */
  .grid_s li:nth-child(3) {
    margin-left: 40px;
  }
}
.grid_s li {
  position: relative;
  display: inline-block;
  width: 198px;
  padding: 0 0 10px;
  margin: 0;
  text-align: left;
}

.grid_s figure {
  position: relative;
  width: 198px;
  margin: 0;
}

.grid_s figure img {
  position: relative;
  display: block;
  max-width: 100%;
}

.grid_s figcaption {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  color: #ed4e6e;
  background: #2c3f52;
}

.grid_s figcaption.fig-img3 {
  background: url(img/ph_top-hover_03b.png) no-repeat bottom;
}

.grid_s figcaption.fig-img4 {
  background: url(img/ph_top-hover_04b.png) no-repeat bottom;
}

.grid_s figcaption.fig-img5 {
  background: url(img/ph_top-hover_05b.png) no-repeat bottom;
}

.grid_s figcaption.fig-img6 {
  background: url(img/ph_top-hover_06b.png) no-repeat bottom;
}

.grid_s figcaption h3 {
  padding: 0;
  margin: 0;
  color: #fff;
}

.grid_s figcaption a {
  display: inline-block;
  padding: 5px 10px;
  color: #fff;
  text-align: center;
  background: #ed4e6e;
  border-radius: 2px;
}

/* Individual Caption Styles */
/* Caption Style 2 */
.cs-style-2 figure img {
  z-index: 10;
  transition: transform 0.4s;
}

.no-touch .cs-style-2 figure:hover img,
.cs-style-2 figure.cs-hover img {
  transform: translateY(-45px);
}

.cs-style-2 figcaption {
  top: auto;
  bottom: 0;
  width: 100%;
  height: 45px;
}

.cs-style-2 figcaption a {
  position: absolute;
  top: 15px;
  right: 10px;
}

/* Caption Style 6 */
.cs-style-6 figure img {
  z-index: 10;
  transition: transform 0.4s;
}

.no-touch .cs-style-6 figure:hover img,
.cs-style-6 figure.cs-hover img {
  transform: translateY(-50px) scale(0.5);
}

.cs-style-6 figcaption {
  width: 100%;
  height: 100%;
}

.cs-style-6 figcaption h3 {
  margin-top: 60%;
}

.cs-style-6 figcaption a {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.rotateY {
  transition: 0.5s;
  transform: rotateY(0deg);
}

.target:hover .rotateY {
  transform: rotateY(360deg);
}

.portal-footer {
  text-align: center;
}

.banner-box {
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px auto 40px;
}
.banner-box img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.banner-box a {
  display: block;
}
.banner-box li {
  margin: 0 auto 6px;
}
@media screen and (max-width: 999px) {
  .banner-box {
    max-width: 280px;
  }
}
@media screen and (min-width: 1000px) {
  .banner-box {
    flex-direction: row;
    flex-wrap: nowrap;
    max-width: 1000px;
  }
  .banner-box:not(:first-child) {
    margin-left: 10px;
  }
}

@media screen and (min-width: 479px), print {
  /* 中間表示 */
  .drawer {
    width: 100%;
  }
  .grid {
    align-items: center;
    width: 100%;
    padding: 0 20px;
    margin: 0;
    text-align: center;
    list-style: none;
    /* 子要素をflexboxにより中央に配置する */
  }
  .grid li {
    position: relative;
    display: inline-block;
    padding: 20px;
    margin: 0;
    text-align: left;
  }
  .portal .hero-body {
    padding-top: 18rem;
    padding-bottom: 18rem;
  }
  .portal .hero .hero-body .container .box {
    width: 100%;
  }
  .portal .hero .hero-img1 {
    top: 50%;
    z-index: 8;
    transform: translateY(-49%);
  }
  .portal .hero .hero-img1 img {
    width: 440px;
  }
  .portal .hero .hero-img2 {
    top: 53%;
    right: 298px;
    z-index: 5;
    transform: translateY(-66%);
  }
  .portal .hero .hero-img3 {
    top: 56%;
    right: 175px;
    z-index: 6;
    transform: translateY(-42%);
  }
  .portal .hero .hero-img4 {
    top: 54%;
    right: 10px;
    z-index: 7;
    transform: translateY(-66%);
  }
  .portal .hero .hero-img5 {
    left: 50%;
    z-index: 7;
    transform: translateX(-50%);
  }
  .portal .hero .hero-img5 img {
    max-width: 100%;
  }
  .drawer {
    width: 100%;
  }
}
.portal .read {
  display: table;
  flex-direction: row;
  width: 100%;
  max-width: 840px;
  margin: 20px auto;
}

.portal .read .catch {
  display: table-cell;
  width: 120px;
  min-width: 120px;
  height: 120px;
  margin-right: 6px;
  font-size: 22px;
  font-weight: 900;
  line-height: 32px;
  color: #fff;
  vertical-align: middle;
  background: #01237a;
  border-radius: 6px;
}

.portal .read .body {
  padding-left: 24px;
  text-align: left;
}

.portal .read .title {
  margin: 6px 0 12px;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
}

.portal .read .title span {
  font-weight: 900;
  color: #01237a;
}

.portal .read .subtitle {
  font-size: 1.1rem;
}

@media screen and (max-width: 767px), print {
  .portal .read {
    padding: 0 20px;
  }
}
@media screen and (max-width: 479px), print {
  .portal .read {
    flex-direction: column;
    padding: 0;
  }
  .portal .read .body {
    padding-left: 0;
    text-align: center;
  }
  .portal .read .catch {
    display: block;
    width: calc(100% - 28px);
    min-width: 120px;
    height: 2rem;
    margin: 6px 14px;
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 32px;
    color: #fff;
    vertical-align: middle;
    background: #01237a;
    border-radius: 3px;
  }
  .portal .read .title {
    letter-spacing: -1px;
  }
  .portal .read .subtitle {
    width: calc(100% - 28px);
    padding: 0.5rem 1.5rem;
    margin: 6px 14px;
    font-size: 1.2rem;
    text-align: left;
    border: 1px solid #01237a;
  }
}
/* スマホでは消えるbr */
@media screen and (max-width: 480px) {
  .pcbr {
    display: none;
  }
}
/* スマホのみ有効なbr */
@media screen and (min-width: 481px) {
  .spbr {
    display: none;
  }
}
/* ===========================================
common
全ページ共通のパーツ
=========================================== */
/* アコーディオン */
.c-accordion__navigation {
  display: block;
  width: 100%;
  padding: 20px 10px;
  transition: 0.3s all;
}
.c-accordion__navigation h3 {
  letter-spacing: 0.05em;
}
.c-accordion__navigation:hover {
  background: #f1f1f1;
  transition: 0.3s all;
}
.c-accordion__content {
  height: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s ease-out;
}
.c-accordion input[type=checkbox] {
  display: none;
}
.c-accordion input[type=checkbox]:checked + label + .c-accordion__content {
  height: 100%;
  visibility: visible;
  opacity: 1;
  transition: 0.5s ease-out;
}
.c-accordion input[type=checkbox]:checked + label::after {
  content: "\f068";
}
.c-accordion--round input[type=checkbox] + label {
  margin: 0;
  border-top: 1px solid #5396c0;
  border-right: 1px solid #5396c0;
  border-bottom: 1px solid #5396c0;
  border-left: 1px solid #5396c0;
  border-radius: 12px;
}
.c-accordion--round .c-accordion__content {
  border-top: none;
  border-right: 1px solid #5396c0;
  border-bottom: 1px solid #5396c0;
  border-left: 1px solid #5396c0;
  border-radius: 0 0 12px 12px;
}
.c-accordion--round input[type=checkbox]:checked + label {
  border-bottom-style: dotted;
  border-radius: 12px 12px 0 0;
}
.c-accordion--icon label {
  position: relative;
  padding-right: 36px;
}
.c-accordion--icon label::after {
  position: absolute;
  top: 50%;
  right: 0;
  box-sizing: border-box;
  display: block;
  height: 1em;
  padding: 10px 20px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  color: #5396c0;
  content: "\f067";
  transform: translateY(-100%);
}

.p-machine__news {
  width: 100%;
  max-width: 860px;
  font-size: 15px;
  line-height: 1.6;
}
.p-machine__news > div {
  padding: 12px;
}
.p-machine__news .c-accordion__content p {
  margin: 0 0 1.6em;
}

.p-signature {
  width: 100%;
  text-align: right;
}
.p-signature__company {
  font-size: 14px;
}
.p-signature__company span {
  letter-spacing: 0.5em;
}
.p-signature__name {
  font-size: 16px;
  font-weight: 600;
}