@charset "UTF-8";
/*
 Theme Name:   My Child Theme
 Template:     parent-theme-folder-name
*/
html #wpadminbar {
  display: none;
}

body {
  color: black;
  font-size: 16px;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W6", Yu Gothic Medium, Yu Gothic, "游ゴシック", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
}

li {
  list-style: none;
  height: 100%;
}

a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

img {
  max-width: 100%;
}

header {
  position: relative;
  z-index: 100;
}
header .header-inner {
  display: flex;
  justify-content: space-between;
  height: auto;
  height: calc(20 * (100vw - 2000px) / 1625 + 70px);
  background-color: #d9d9d9;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}
header .header-inner .logo {
  align-self: center;
  padding-left: calc(30 * (100vw - 2000px) / 1625 + 50px);
}
header .header-inner .logo img {
  max-width: calc(50 * (100vw - 2000px) / 1625 + 200px);
}
header .header-inner .gnav {
  display: flex;
}
header .header-inner .gnav ul {
  display: flex;
  gap: 2em;
  margin: 0;
}
@media (width <= 1200px) {
  header .header-inner .gnav ul {
    gap: 1em;
  }
}
header .header-inner .gnav ul li {
  align-self: start;
  height: 100%;
}
@media (width <= 768px) {
  header .header-inner .gnav ul li {
    border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  }
}
header .header-inner .gnav ul li a {
  height: 100%;
  display: flex;
  align-items: center;
}
@media (width <= 1200px) {
  header .header-inner .gnav ul li a {
    font-size: 14px;
  }
}
header .header-inner .gnav .contact {
  display: flex;
}
header .header-inner .contact {
  position: relative;
  z-index: 2;
  background-color: red;
  align-items: center;
  height: 90px;
  width: 200px;
  justify-content: center;
  border-radius: 0 0 0 20px;
  transition: width 0.4s;
  transition: height 0.4s;
}
@media (width <= 1200px) {
  header .header-inner .contact {
    max-width: 150px;
    height: 70px;
  }
}
@media (width <= 992px) {
  header .header-inner .contact {
    border-radius: 0;
  }
}
@media (width <= 768px) {
  header .header-inner .contact {
    padding: 5px;
  }
}
header .header-inner .contact:hover {
  height: 95px;
  width: 210px;
  transition: 0.2s linear;
}
header .header-inner .contact a {
  margin-right: 10px;
}
@media (width <= 1200px) {
  header .header-inner .contact a {
    font-size: 13px;
  }
}
header .header-inner .contact .contactIcon {
  align-self: center;
  display: flex;
}
header .header-inner .contact .contactIcon img {
  max-width: 20px;
}
@media (width <= 992px) {
  header .header-inner .gnav {
    position: fixed;
    width: 80%;
    height: 100dvh;
    top: calc(20 * (100vw - 2000px) / 1625 + 70px);
    right: -100%;
    transition: all 0.5s;
  }
  header .header-inner .gnav.open {
    display: block;
    right: 0;
  }
  header .header-inner .gnav ul {
    flex-direction: column;
    position: relative;
    background-color: white;
    padding: 100px 50px 100px 50px;
    height: 100dvh;
    box-shadow: inset 5px 5px 15px rgba(0, 0, 0, 0.2);
  }
}
header .is-scroll {
  background-color: rgb(217, 217, 217);
  transition: all 0.5s ease-in-out;
  box-shadow: 0px 22px 15px -15px rgba(0, 0, 0, 0.2);
}

/* ===============================================
ハンバーガーボタンのスタイリング
=============================================== */
.hamburger {
  display: none;
}
@media (width <= 992px) {
  .hamburger {
    display: block;
    width: 50px;
    height: calc(20 * (100vw - 2000px) / 1625 + 70px);
    position: relative;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: 0;
    padding: 0;
    margin: 0;
    background-color: red;
    position: absolute;
    right: 0;
    cursor: pointer;
  }
  .hamburger span {
    position: absolute;
    display: block;
    width: 80%;
    height: 2px;
    background-color: #fff;
    transition: all 0.5s;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
  }
  .hamburger span::before, .hamburger span::after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.5s;
  }
  .hamburger span::before {
    top: -10px;
  }
  .hamburger span::after {
    bottom: -10px;
  }
  .hamburger.open span {
    background-color: transparent;
  }
  .hamburger.open span::before {
    top: 0;
    transform: rotate(45deg);
  }
  .hamburger.open span::after {
    bottom: 0;
    transform: rotate(-45deg);
  }
}

footer {
  display: flex;
  padding: 100px 100px 50px 200px;
  gap: 20em;
  background-color: #d9d9d9;
}
@media (width <= 1200px) {
  footer {
    gap: 2em;
    justify-content: space-between;
    padding: 70px 50px 50px 100px;
  }
}
@media (width <= 768px) {
  footer {
    flex-direction: column;
    padding: 50px 20px 50px 20px;
  }
}
footer .footerLeft img {
  max-width: calc(50 * (100vw - 2000px) / 1625 + 200px);
}
footer .footerLeft .address {
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 2;
}
footer .footerLeft .googlemap {
  border-bottom: 2px solid rgba(51, 51, 51, 0.2);
  position: relative;
  max-width: 130px;
}
footer .footerLeft .googlemap::after {
  content: "";
  background-image: url(../image/link-icon.png);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}
footer .footerLeft .googlemap a {
  display: block;
  text-align: start;
  font-weight: normal;
}
footer .footerRight {
  display: flex;
  gap: 4em;
}
@media (width <= 1200px) {
  footer .footerRight {
    gap: 2em;
  }
}
@media (width <= 768px) {
  footer .footerRight {
    gap: 1.8em;
  }
}
footer .footerRight .leftgp,
footer .footerRight .middlegp,
footer .footerRight .rightgp {
  display: flex;
  flex-direction: column;
  line-height: 2;
  font-size: 13px;
}
footer .footerRight .leftgp p,
footer .footerRight .middlegp p,
footer .footerRight .rightgp p {
  font-weight: bold;
}
footer .footerRight .leftgp a,
footer .footerRight .middlegp a,
footer .footerRight .rightgp a {
  font-weight: normal;
}
footer .copyright {
  background-color: reb;
  position: absolute;
}

.copyright {
  background-color: red;
}
.copyright p {
  margin: 0;
  text-align: center;
  padding: 5px;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 5px;
}
@media (width <= 768px) {
  .copyright p {
    font-size: 10px;
  }
}

.pc-is-block {
  display: block !important;
}

.tab-is-block {
  display: none !important;
}

.sp-is-block {
  display: none !important;
}

@media (width <= 992px) {
  .pc-is-block {
    display: none !important;
  }
  .tab-is-block {
    display: block !important;
  }
  .sp-is-block {
    display: none !important;
  }
}
@media (width <= 768px) {
  .pc-is-block {
    display: none !important;
  }
  .tab-is-block {
    display: none !important;
  }
  .sp-is-block {
    display: block !important;
  }
}
section {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
section .sectionTitle h2 {
  font-size: calc(8 * (100vw - 2000px) / 1625 + 38px);
  line-height: 25px;
  letter-spacing: 5px;
}
section .sectionTitle h2 span {
  font-size: 13px;
  letter-spacing: 2px;
}

.button {
  border: 2px solid red;
  border-radius: 25px;
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
  margin-top: 50px;
  position: relative;
}
.button:hover {
  background-color: red;
  transition: 0.2s ease-in;
}
@media (width <= 768px) {
  .button {
    max-width: 80%;
    margin: 0 auto;
    margin-top: 50px;
  }
}
.button::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 12px;
  background-image: url("../image/Polygon.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}
.button a {
  display: block;
  padding: 5px;
}
.button a:hover {
  color: white;
}

section .sectionTitle-border {
  display: inline-block;
  text-align: center;
  font-size: calc(8 * (100vw - 2000px) / 1625 + 38px);
  margin-bottom: 0;
  letter-spacing: 5px;
  position: relative;
  z-index: 1;
}
section .sectionTitle-border::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: calc(4 * (100vw - 2000px) / 1625 + 12px);
  background-color: red;
  z-index: -1;
}
section .sectiontitleText {
  text-align: center;
  font-size: 13px;
  margin-top: 0;
  font-weight: bold;
}

.pageTitle {
  margin-top: calc(70 * (100vw - 2000px) / 1625 + 120px);
  margin-bottom: 50px;
  text-align: center;
}
.pageTitle .sectionTitle-border {
  display: inline-block;
  text-align: center;
  font-size: calc(8 * (100vw - 2000px) / 1625 + 38px);
  margin-bottom: 0;
  letter-spacing: calc(3 * (100vw - 2000px) / 1625 + 5px);
  position: relative;
  z-index: 1;
}
@media (width <= 768px) {
  .pageTitle .sectionTitle-border {
    margin-top: 0;
  }
}
.pageTitle .sectionTitle-border::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: calc(4 * (100vw - 2000px) / 1625 + 12px);
  background-color: red;
  z-index: -1;
}
.pageTitle .sectiontitleText {
  text-align: center;
  font-size: 13px;
  margin-top: 0;
  font-weight: bold;
}

.pagesection {
  max-width: 1080px;
  margin: 0 auto;
  padding-top: calc(60 * (100vw - 2000px) / 1625 + 70px);
}
@media (width <= 768px) {
  .pagesection {
    margin-top: 100px;
  }
}

.animate {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.animate-active {
  opacity: 1;
  transform: translateY(0);
}

.pagenation ul {
  display: flex;
  justify-content: center;
  gap: 2em;
  margin-top: 50px;
  padding: 0;
}
.pagenation ul li {
  font-size: 15px;
}

.toc_light_blue.no_bullets a {
  font-weight: normal;
}

.firstgrp .farstViewphot {
  position: relative;
  z-index: 0;
  max-width: 90%;
  margin-left: auto;
  overflow: hidden;
}
.firstgrp .farstViewphot img {
  max-width: 100%;
}
@media (width <= 1200px) {
  .firstgrp .farstViewphot {
    max-width: 95%;
  }
}
.firstgrp h1 {
  position: absolute;
  bottom: 40%;
  left: 20%;
  background-color: white;
  padding: 10px 50px;
  font-weight: normal;
  letter-spacing: 5px;
  font-size: 20px;
}
@media (width <= 992px) {
  .firstgrp h1 {
    bottom: 45%;
    left: 15%;
    font-size: 15px;
  }
}
@media (width <= 768px) {
  .firstgrp h1 {
    padding: 10px 0px 10px 20px;
    font-size: 15px;
    bottom: 60%;
    left: 5%;
  }
}

.sectionBg {
  background-image: url(../image/bacgroundImg-1.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: calc(350 * (100vw - 2000px) / 900 + 850px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: calc(-95 * (100vw - 2000px) / 900 - 215px);
}
@media (width <= 768px) {
  .sectionBg {
    background-image: url(../image/bacgroundImg-sp.png);
    margin-top: calc(-153 * (100vw - 768px) / 393 - 298px);
    height: 670px;
  }
}
.sectionBg #news {
  margin-top: calc(-178 * (100vw - 2000px) / 900 - 300px);
}
@media (width <= 1200px) {
  .sectionBg #news {
    max-width: 90%;
  }
}
@media (width <= 768px) {
  .sectionBg #news {
    margin-top: -230px;
  }
}
.sectionBg #news .newsContent .inner .flex {
  display: flex;
  gap: 2em;
  margin: 10px;
}
@media (width <= 992px) {
  .sectionBg #news .newsContent .inner .flex {
    flex-direction: column;
    gap: 8px;
  }
}
.sectionBg #news .newsContent .inner .flex .news-top {
  display: flex;
  align-items: center;
}
.sectionBg #news .newsContent .inner .flex .news-top .newsTitle {
  font-size: 13px;
  font-weight: bold;
  background-color: red;
  padding: 5px;
  letter-spacing: 3px;
  margin: 0;
  margin-right: 10px;
}
@media (width <= 992px) {
  .sectionBg #news .newsContent .inner .flex .news-top .newsTitle {
    font-size: 12px;
    padding: 3px 5px;
  }
}
.sectionBg #news .newsContent .inner .flex .news-top .newsDays {
  color: gray;
  margin: 0;
}
@media (width <= 992px) {
  .sectionBg #news .newsContent .inner .flex .news-top .newsDays {
    font-size: 13px;
  }
}
.sectionBg #news .newsContent .inner .flex .newsText {
  margin: 0;
}
@media (width <= 992px) {
  .sectionBg #news .newsContent .inner .flex .newsText {
    font-size: 13px;
  }
}

#strength {
  margin-top: calc(-250 * (100vw - 2000px) / 900 - 400px);
  position: relative;
  z-index: 1;
}
@media (width <= 1200px) {
  #strength {
    max-width: 90%;
  }
}
@media (width <= 992px) {
  #strength {
    margin-top: -140px;
  }
}
@media (width <= 768px) {
  #strength {
    margin-top: -300px;
  }
}
#strength .sectionTitle {
  text-align: center;
  margin: 0;
}
#strength .sectionTitle h2 {
  font-size: calc(20 * (100vw - 2000px) / 1625 + 50px);
  background-image: linear-gradient(90deg, #ff2222 42%, #666666);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  justify-content: center;
  height: 80px;
  align-items: center;
  line-height: 1.5;
}
#strength .text {
  letter-spacing: 2.45px;
  text-align: center;
  line-height: 2;
}
@media (width <= 992px) {
  #strength .text {
    font-size: 13px;
  }
}

#achievements {
  margin-top: calc(100 * (100vw - 2000px) / 1625 + 150px);
  margin-bottom: calc(50 * (100vw - 2000px) / 1625 + 100px);
  text-align: center;
}
#achievements .caseInner {
  display: flex;
  justify-content: center;
  gap: 2em;
  margin-top: 70px;
  flex-wrap: wrap;
}
#achievements .caseInner .card {
  max-width: 230px;
}
@media (width <= 992px) {
  #achievements .caseInner .card {
    max-width: 280px;
  }
}
#achievements .caseInner .card img {
  max-width: 225px;
  max-height: 178px;
  -webkit-clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
          clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width <= 992px) {
  #achievements .caseInner .card img {
    max-width: 280px;
    max-height: 230px;
  }
}
#achievements .caseInner .card .days {
  color: gray;
  font-size: 13px;
  text-align: start;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 0;
}
#achievements .caseInner .card .cardTitle {
  text-align: start;
  margin-top: 0;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 0;
}
#achievements .caseInner .card .cardText {
  text-align: start;
  margin-top: 5px;
  margin-bottom: 0;
  font-size: 13px;
  position: relative;
  display: inline-block;
  padding-right: 24px;
  font-weight: normal;
}
#achievements .caseInner .card .cardText::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 10;
  transform: translateY(0%);
  width: 30px;
  height: 20px;
  background-image: url("../image/Vector1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}

.sectionBgright {
  background-color: red;
  position: relative;
}
.sectionBgright::before {
  content: "";
  background-color: #f5f5f5;
  display: block;
  width: 97vw;
  height: 98%;
  position: absolute;
  z-index: 1;
  top: 10px;
  padding-bottom: 50px;
}
.sectionBgright .company-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-top: 55px;
}
@media (width <= 992px) {
  .sectionBgright .company-inner {
    flex-direction: column;
    align-items: center;
  }
}
.sectionBgright .company-left,
.sectionBgright .company-right {
  width: 50%;
}
@media (width <= 992px) {
  .sectionBgright .company-left,
  .sectionBgright .company-right {
    max-width: 85%;
    width: 100%;
  }
}
.sectionBgright .company-text {
  line-height: 1.8;
  font-size: 14px;
}
.sectionBgright .company-table {
  width: 100%;
  font-size: 14px;
  border-collapse: collapse;
  line-height: 2;
}
.sectionBgright .company-table th {
  font-weight: bold;
  padding: 6px 0;
  width: 80px;
  text-align: left;
  border-bottom: 1px solid red;
}
.sectionBgright .company-table td {
  padding: 6px 0;
  border-bottom: 1px solid #ccc;
}
.sectionBgright .company-table tr:not(:last-child) td {
  border-bottom: 1px solid #ccc;
}

#business {
  text-align: center;
  margin-top: 100px;
}
@media (width <= 992px) {
  #business {
    max-width: 90%;
    margin: 0 auto;
    margin-top: 100px;
  }
}
#business .business-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4em;
  margin-top: 70px;
  margin-bottom: 50px;
}
@media (width <= 992px) {
  #business .business-top {
    justify-content: center;
  }
}
#business .business-top .businessCard {
  max-width: 500px;
  width: 100%;
}
@media (width <= 1200px) {
  #business .business-top .businessCard {
    max-width: 450px;
  }
}
@media (width <= 992px) {
  #business .business-top .businessCard {
    max-width: 100%;
  }
}
#business .business-top .businessCard .cardText {
  margin-bottom: 30px;
  font-size: 14px;
  text-align: start;
  line-height: 2;
  letter-spacing: 1.5px;
  font-weight: normal;
}
#business .business-top .businessCard .businessButton {
  border: 2px solid red;
  border-radius: 40px;
  max-width: 210px;
  height: 40px;
  margin: 0 auto;
  position: relative;
}
#business .business-top .businessCard .businessButton:hover {
  background-color: red;
  transition: 0.2s ease-in;
}
#business .business-top .businessCard .businessButton a {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  display: block;
  align-self: center;
  padding: 5px;
}
#business .business-top .businessCard .businessButton a:hover {
  color: white;
}
#business .business-top .businessCard .businessButton a::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 12px;
  background-image: url("../image/Polygon.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}
#business .business-bottom {
  max-width: 100%;
}
#business .business-bottom .businessCard img {
  max-width: 100%;
  height: 107px;
  width: 100%;
}
@media (width <= 992px) {
  #business .business-bottom .businessCard img {
    height: initial;
  }
}
#business .business-bottom .businessCard .cardText {
  margin-bottom: 30px;
  font-size: 14px;
  text-align: start;
  line-height: 2;
  letter-spacing: 1.5px;
  font-weight: normal;
}
#business .business-bottom .businessCard .businessButton {
  border: 2px solid red;
  border-radius: 40px;
  max-width: 210px;
  height: 40px;
  margin: 0 auto;
  position: relative;
}
#business .business-bottom .businessCard .businessButton:hover {
  background-color: red;
  transition: 0.2s ease-in;
}
#business .business-bottom .businessCard .businessButton a {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  display: block;
  align-self: center;
  padding: 5px;
}
#business .business-bottom .businessCard .businessButton a:hover {
  color: white;
}
#business .business-bottom .businessCard .businessButton a::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 12px;
  background-image: url("../image/Polygon.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}

#staffcolumn {
  margin-top: calc(100 * (100vw - 2000px) / 1625 + 150px);
  margin-bottom: calc(50 * (100vw - 2000px) / 1625 + 100px);
  text-align: center;
}
#staffcolumn .caseInner {
  display: flex;
  justify-content: center;
  gap: 2em;
  margin-top: 70px;
  flex-wrap: wrap;
}
@media (width <= 768px) {
  #staffcolumn .caseInner a {
    max-width: 90%;
    margin: 0 auto;
  }
}
#staffcolumn .caseInner a .card {
  max-width: 230px;
}
@media (width <= 992px) {
  #staffcolumn .caseInner a .card {
    max-width: 280px;
  }
}
@media (width <= 768px) {
  #staffcolumn .caseInner a .card {
    display: flex;
    justify-content: center;
    gap: 1em;
    border: 2px solid rgba(51, 51, 51, 0.2);
    border-bottom: 2px solid red;
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
    padding: 10px 5px;
    max-width: 100%;
  }
}
#staffcolumn .caseInner a .card img {
  max-width: 225px;
  max-height: 178px;
  -webkit-clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
          clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width <= 992px) {
  #staffcolumn .caseInner a .card img {
    max-width: 280px;
    max-height: 230px;
  }
}
@media (width <= 768px) {
  #staffcolumn .caseInner a .card img {
    max-width: calc(50 * (100vw - 768px) / 393 + 200px);
    max-height: 150px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#staffcolumn .caseInner a .card .days {
  color: gray;
  font-size: 13px;
  text-align: start;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 0;
}
#staffcolumn .caseInner a .card .cardTitle {
  text-align: start;
  margin-top: 0;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 0;
}
@media (width <= 768px) {
  #staffcolumn .caseInner a .card .cardTitle {
    font-size: 15px;
  }
}
#staffcolumn .caseInner a .card .cardText {
  text-align: start;
  margin-top: 5px;
  margin-bottom: 0;
  font-size: 13px;
  position: relative;
  display: inline-block;
  padding-right: 24px;
  font-weight: normal;
}
#staffcolumn .caseInner a .card .cardText::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(0%);
  width: 30px;
  height: 20px;
  background-image: url("../image/Vector1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}

.sectionBgleft {
  background-color: red;
  position: relative;
}
.sectionBgleft::before {
  content: "";
  background-color: #f5f5f5;
  display: block;
  width: 97vw;
  height: 105%;
  margin-left: 0 auto;
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 0;
}
.sectionBgleft #contact {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding-top: 70px;
  padding-bottom: 20px;
}
@media (width <= 1200px) {
  .sectionBgleft #contact {
    max-width: 90%;
  }
}
@media (width <= 768px) {
  .sectionBgleft #contact {
    flex-direction: column;
  }
}
.sectionBgleft #contact .contactLeft {
  align-self: center;
}
@media (width <= 768px) {
  .sectionBgleft #contact .contactLeft {
    margin-bottom: 30px;
  }
}
.sectionBgleft #contact .contactRight {
  display: flex;
  gap: 4em;
}
@media (width <= 768px) {
  .sectionBgleft #contact .contactRight {
    gap: 2em;
    justify-content: center;
    flex-direction: column;
  }
}
.sectionBgleft #contact .contactRight a {
  text-align: center;
}
.sectionBgleft #contact .contactRight a img {
  max-width: 180px;
  transition: max-width 0.2s;
}
.sectionBgleft #contact .contactRight a img:hover {
  max-width: 185px;
  transition: 0.2s ease-in;
}
@media (width <= 768px) {
  .sectionBgleft #contact .contactRight a img:hover {
    transition: none;
    max-width: 80%;
  }
}
@media (width <= 1200px) {
  .sectionBgleft #contact .contactRight a img {
    max-width: 150px;
  }
}
@media (width <= 768px) {
  .sectionBgleft #contact .contactRight a img {
    max-width: 80%;
  }
}

.pagesection.news {
  padding-top: 0;
}
.pagesection.news .newswarp {
  border-top: 1px solid gray;
  border-bottom: 1px solid gray;
  margin-bottom: 100px;
  max-width: 90%;
  margin: 0 auto;
}
.pagesection.news .newswarp .newsinner {
  display: flex;
  gap: 2em;
}
@media (width <= 768px) {
  .pagesection.news .newswarp .newsinner {
    flex-direction: column;
    gap: 1px;
  }
}
.pagesection.news .newswarp .newsinner .left {
  display: flex;
}
.pagesection.news .newswarp .newsinner .left .tag {
  background-color: gray;
  padding: 5px;
  font-size: 13px;
  font-weight: bold;
  margin-right: 30px;
}
@media (width <= 768px) {
  .pagesection.news .newswarp .newsinner .left .tag {
    margin-right: 10px;
    font-weight: normal;
    padding: 2px 5px;
  }
}
.pagesection.news .newswarp .newsinner .left .tag.case {
  background-color: red;
  padding: 5px;
  font-size: 13px;
  font-weight: bold;
}
.pagesection.news .newswarp .newsinner .left .days {
  font-size: 16px;
  font-weight: bold;
  align-self: center;
}
@media (width <= 768px) {
  .pagesection.news .newswarp .newsinner .left .days {
    font-size: 13px;
  }
}
.pagesection.news .newswarp .newsinner .right .newstext {
  font-size: 16px;
  margin-left: 150px;
}
@media (width <= 768px) {
  .pagesection.news .newswarp .newsinner .right .newstext {
    margin-left: 0;
    text-align: start;
    margin-top: 0;
    font-size: 15px;
  }
}

.strengthwarp h3 {
  font-size: 15px;
  font-weight: normal;
  margin-bottom: 30px;
}

.pagesection {
  margin-top: 50px;
  text-align: center;
  margin-bottom: 100px;
}
.pagesection .categoryTitle {
  margin-bottom: 50px;
}
.pagesection .categoryTitle h1 {
  font-size: 20px;
}
.pagesection .categoryTitle h1 span {
  background-color: red;
  padding: 5px;
  color: white;
}
.pagesection .case-category-buttons {
  display: flex;
  justify-content: center;
  gap: 4em;
  margin-bottom: 100px;
}
@media (width <= 768px) {
  .pagesection .case-category-buttons {
    gap: 2em;
  }
}
.pagesection .case-category-buttons .case-cat-button {
  border: 2px solid red;
  padding: 15px 30px;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}
@media (width <= 768px) {
  .pagesection .case-category-buttons .case-cat-button {
    padding: 5px 20px;
  }
}
.pagesection .case-category-buttons .case-cat-button:hover {
  background-color: red;
  transition: 0.3s ease-in;
}
.pagesection .category {
  display: flex;
  justify-content: center;
  gap: 4em;
  margin-bottom: 100px;
}
.pagesection .caseInner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2em;
}
@media (width <= 992px) {
  .pagesection .caseInner {
    justify-content: center;
  }
}
@media (width <= 768px) {
  .pagesection .caseInner {
    display: block;
    max-width: 90%;
    margin: 0 auto;
  }
}
.pagesection .caseInner::before {
  content: "";
  display: block;
  max-width: 230px;
  width: 100%;
  order: 1;
}
.pagesection .caseInner::after {
  content: "";
  display: block;
  max-width: 230px;
  width: 100%;
}
.pagesection .caseInner .card {
  max-width: 230px;
}
@media (width <= 768px) {
  .pagesection .caseInner .card {
    display: flex;
    justify-content: center;
    max-width: 100%;
    margin-bottom: 40px;
    padding: 10px 5px;
    border: 2px solid rgba(51, 51, 51, 0.2);
    border-bottom: solid 2px red;
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
  }
}
@media (width <= 768px) {
  .pagesection .caseInner .card a {
    display: flex;
    gap: 1em;
  }
}
.pagesection .caseInner .card img {
  max-width: 225px;
  max-height: 178px;
  -webkit-clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
          clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}
@media (width <= 768px) {
  .pagesection .caseInner .card img {
    max-width: calc(50 * (100vw - 768px) / 393 + 200px);
    max-height: 150px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.pagesection .caseInner .card .days {
  color: gray;
  font-size: 13px;
  text-align: start;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 0;
}
.pagesection .caseInner .card .cardTitle {
  text-align: start;
  margin-top: 0;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 0;
}
.pagesection .caseInner .card .cardText {
  text-align: start;
  margin-top: 5px;
  margin-bottom: 0;
  font-size: 13px;
  position: relative;
  display: inline-block;
  padding-right: 24px;
  font-weight: normal;
}
.pagesection .caseInner .card .cardText::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 100;
  transform: translateY(0%);
  width: 30px;
  height: 20px;
  background-image: url("../image/Vector1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  z-index: 0;
}

.case {
  max-width: 720px;
  width: 100%;
}
@media (width <= 992px) {
  .case {
    max-width: 90%;
  }
}
.case .caseName h2 {
  font-size: calc(10 * (100vw - 2000px) / 1625 + 30px);
  letter-spacing: 1.5px;
}
@media (width <= 768px) {
  .case .caseName h2 {
    margin-top: 100px;
  }
}
.case .caseDays {
  display: flex;
}
.case .caseDays .tag {
  background-color: red;
  padding: 2px 5px;
  margin-right: 20px;
  font-size: 15px;
}
@media (width <= 768px) {
  .case .caseDays .tag {
    font-size: 13px;
  }
}
.case .caseDays .days {
  align-self: center;
  font-weight: bold;
  font-size: 13px;
}
.case .casePhot img {
  max-width: 720px;
  width: 100%;
  height: 450px;
}
.case .caseInfo .company-table {
  width: 100%;
  font-size: 14px;
  border-collapse: collapse;
  line-height: 3;
}
.case .caseInfo .company-table .tr {
  display: flex;
}
@media (width <= 768px) {
  .case .caseInfo .company-table .sp-commentcolumn {
    display: block;
  }
}
.case .caseInfo .company-table .sp-commentcolumn .td {
  padding-left: 0;
}
.case .caseInfo .company-table .th {
  font-weight: bold;
  padding: 6px 0;
  width: 150px;
  text-align: left;
  border-bottom: 1px solid red;
}
@media (width <= 768px) {
  .case .caseInfo .company-table .md {
    border: initial;
  }
}
.case .caseInfo .company-table .td {
  display: flex;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid #ccc;
  text-align: start;
  padding-left: 50px;
  line-height: 1.5;
  width: 100%;
}
.case .caseInfo .company-table p {
  padding-left: 50px;
}
@media (width <= 992px) {
  .case .caseInfo .company-table p {
    padding-left: 0;
  }
}
.case .caseInfo .company-table .tr:not(:last-child) td {
  border-bottom: 1px solid #ccc;
}

.pagesection.business {
  padding-top: 0;
  margin-bottom: 50px;
}
.pagesection.business .businesswarp {
  max-width: 90%;
  margin: 0 auto;
}
.pagesection.business .businesswarp h3 {
  font-size: 15px;
  font-weight: normal;
  line-height: 2;
  margin-bottom: 50px;
}
@media (width <= 992px) {
  .pagesection.business .businesswarp h3 {
    font-size: 13px;
  }
}

.leftgrp {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  gap: 5em;
  max-width: 90%;
  margin: 0 auto;
  margin-bottom: 50px;
}
@media (width <= 992px) {
  .leftgrp {
    flex-direction: column;
    gap: 1.5px;
  }
}
.leftgrp img {
  max-width: calc(100 * (100vw - 2000px) / 1000 + 580px);
  width: 100%;
  max-height: 380px;
  height: 100%;
  margin-right: 50px;
}
@media (width <= 992px) {
  .leftgrp img {
    margin-right: 0;
    max-width: 580px;
  }
}
.leftgrp .textgrp {
  max-width: 600px;
}
.leftgrp .textgrp .title {
  border-left: 10px solid red;
  border-bottom: 1px solid gray;
  padding-bottom: 10px;
  padding-left: 20px;
  font-size: 24px;
  font-weight: bold;
}
@media (width <= 992px) {
  .leftgrp .textgrp .title {
    padding-left: 10px;
    padding-bottom: 5px;
    font-size: 20px;
    border-left: 5px solid red;
  }
}
.leftgrp .textgrp .text {
  font-size: 15px;
  line-height: 2;
}
.leftgrp .textgrp .point {
  background-color: #d9d9d9;
  padding: 5px 10px;
}
.leftgrp .textgrp .point .pointName {
  font-weight: bold;
  font-size: 18px;
}
@media (width <= 992px) {
  .leftgrp .textgrp .point .pointName {
    font-size: 15px;
  }
}
.leftgrp .textgrp .point .pointText {
  font-size: 13px;
}

.rightgrp {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  gap: 5em;
  max-width: 90%;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media (width <= 992px) {
  .rightgrp {
    flex-direction: column;
    gap: 1.5px;
  }
}
.rightgrp img {
  max-width: calc(100 * (100vw - 2000px) / 1000 + 580px);
  width: 100%;
  max-height: 380px;
  height: 100%;
  margin-left: 50px;
}
@media (width <= 992px) {
  .rightgrp img {
    margin-left: 0;
    max-width: 580px;
  }
}
.rightgrp .textgrp {
  max-width: 600px;
}
.rightgrp .textgrp .title {
  border-left: 10px solid red;
  border-bottom: 1px solid gray;
  padding-bottom: 10px;
  padding-left: 20px;
  font-size: 24px;
  font-weight: bold;
}
@media (width <= 992px) {
  .rightgrp .textgrp .title {
    padding-left: 10px;
    padding-bottom: 5px;
    font-size: 20px;
    border-left: 5px solid red;
  }
}
.rightgrp .textgrp .text {
  font-size: 15px;
  line-height: 2;
}
.rightgrp .textgrp .point {
  background-color: #d9d9d9;
  padding: 5px 10px;
}
.rightgrp .textgrp .point .pointName {
  font-weight: bold;
  font-size: 18px;
}
@media (width <= 992px) {
  .rightgrp .textgrp .point .pointName {
    font-size: 15px;
  }
}
.rightgrp .textgrp .point .pointText {
  font-size: 13px;
}

.pagesection {
  margin-top: calc(30 * (100vw - 2000px) / 1625 + 50px);
  text-align: center;
  margin-bottom: calc(40 * (100vw - 2000px) / 1625 + 100px);
}
.pagesection .columnInner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (width <= 992px) {
  .pagesection .columnInner {
    max-width: 90%;
    margin: 0 auto;
  }
}
@media (width <= 768px) {
  .pagesection .columnInner {
    display: block;
    max-width: 90%;
    margin: 0 auto;
  }
}
.pagesection .columnInner::before {
  content: "";
  display: block;
  max-width: 230px;
  width: 100%;
  order: 1;
}
.pagesection .columnInner::after {
  content: "";
  display: block;
  max-width: 230px;
  width: 100%;
}
.pagesection .columnInner .card {
  max-width: 230px;
  margin-bottom: 30px;
}
@media (width <= 768px) {
  .pagesection .columnInner .card {
    display: flex;
    justify-content: center;
    gap: 1em;
    max-width: 100%;
    margin-bottom: 20px;
    padding: 10px 5px;
    border: 2px solid rgba(51, 51, 51, 0.2);
    border-bottom: solid 2px red;
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
  }
}
.pagesection .columnInner .card img {
  max-width: 225px;
  max-height: 178px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width <= 768px) {
  .pagesection .columnInner .card img {
    max-width: calc(50 * (100vw - 768px) / 393 + 200px);
    max-height: 150px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.pagesection .columnInner .card .days {
  color: gray;
  font-size: 13px;
  text-align: start;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 0;
}
.pagesection .columnInner .card .cardTitle {
  text-align: start;
  margin-top: 0;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 0;
}
@media (width <= 768px) {
  .pagesection .columnInner .card .cardTitle {
    font-size: 15px;
  }
}
.pagesection .columnInner .card .cardText {
  text-align: start;
  margin-top: 5px;
  margin-bottom: 0;
  font-size: 13px;
  position: relative;
  display: inline-block;
  padding-right: 24px;
  font-weight: normal;
}
.pagesection .columnInner .card .cardText::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 100;
  transform: translateY(0%);
  width: 30px;
  height: 20px;
  background-image: url("../image/Vector1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}

.warp {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 50px;
  padding: 3%;
}
@media (width <= 1200px) {
  .warp {
    display: block;
  }
}
.warp .columnwarp {
  margin-top: 100px;
  font-size: 15px;
  line-height: 1.5;
  max-width: 78%;
}
@media (width <= 1200px) {
  .warp .columnwarp {
    max-width: 100vw;
  }
}
.warp .columnwarp h1 {
  border-top: 2px solid red;
  border-bottom: 2px solid red;
  padding: 30px 0 30px 0;
}
.warp .columnwarp h2 {
  position: relative;
  padding: 0.5em 0.7em;
  background-color: red;
  color: #fff;
  margin-top: 100px;
}
.warp .columnwarp h2::before {
  position: absolute;
  top: 100%;
  left: 0;
  border-bottom: solid 10px transparent;
  border-right: solid 20px rgb(123, 4, 4);
  content: "";
}
.warp .columnwarp h3 {
  font-size: 18px; /* フォントサイズ */
  font-weight: bold; /* フォント太さ */
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  margin-bottom: 2em;
  position: relative;
  margin: 3em 0 1em;
  color: black; /* フォント色 */
}
.warp .columnwarp h3::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(90deg, red 0%, rgba(255, 255, 255, 0) 100%);
  bottom: 0;
  left: 0;
  z-index: 0;
}
.warp .columnwarp h4 {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  color: #333333;
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 0;
}
.warp .columnwarp h4::before {
  width: 0.8em;
  height: 0.4em;
  border-bottom: 4px solid red;
  border-left: 4px solid red;
  transform: rotate(-45deg) translate(2px, -2px);
  content: "";
}
.warp .columnwarp p {
  line-height: 1.85;
  font-size: 16px;
}
.warp .columnwarp .button {
  margin-top: 100px;
  margin-bottom: 100px;
}
.warp .sidecontents {
  margin-top: 150px;
  max-width: 21.66%;
  margin: 0 auto;
  margin-top: 150px;
  margin-left: 3.33%;
}
@media (width <= 1200px) {
  .warp .sidecontents {
    max-width: 100vw;
  }
}
.warp .sidecontents .sideTitle {
  font-size: 16px;
  background-color: red;
  padding: 2px 10px;
}
.warp .sidecontents .caseInner a .card {
  max-width: 230px;
  margin-bottom: 30px;
}
@media (width <= 1200px) {
  .warp .sidecontents .caseInner a .card {
    display: flex;
    max-width: 100%;
    gap: 2em;
    border: 2px solid rgba(51, 51, 51, 0.2);
    padding: 5px 10px;
  }
}
@media (width <= 1200px) and (width <= 768px) {
  .warp .sidecontents .caseInner a .card {
    gap: 1em;
  }
}
.warp .sidecontents .caseInner a .card img {
  max-width: 200px;
  max-height: 120px;
  max-width: calc(70 * (100vw - 1200px) / 825 + 200px);
  max-height: calc(20 * (100vw - 1200px) / 825 + 120px);
  -o-object-fit: cover;
     object-fit: cover;
}
.warp .sidecontents .caseInner a .card .days {
  font-size: 13px;
  color: gray;
  margin-bottom: 0;
  margin-top: 0;
}
.warp .sidecontents .caseInner a .card .cardTitle {
  font-size: 15px;
  margin: 0;
}
.warp .sidecontents .caseInner a .card .cardText {
  font-size: 13px;
  font-weight: normal;
}
@media (width <= 768px) {
  .warp .sidecontents .caseInner .contactButton {
    text-align: center;
  }
}
.warp .sidecontents .caseInner .contactButton img {
  max-width: 300px;
  width: 100%;
  height: 400px;
}

.pagesection.contact {
  padding-top: 0;
  margin-top: 0;
  max-width: 750px;
}
.pagesection.contact .contactwarp {
  max-width: 90%;
  margin: 0 auto;
}
.pagesection.contact .contactwarp h3 {
  font-size: calc(2 * (100vw - 2000px) / 1625 + 15px);
  font-weight: normal;
  margin-bottom: calc(15 * (100vw - 2000px) / 1625 + 30px);
}
.pagesection.contact .contactwarp .openTime {
  font-weight: bold;
  font-size: calc(2 * (100vw - 2000px) / 1625 + 16px);
}
.pagesection.contact .contactwarp .telText {
  background-color: red;
  max-width: 300px;
  margin: 0 auto;
}
.pagesection.contact .contactwarp .telText .text {
  font-size: 16px;
  color: white;
}
.pagesection.contact .contactwarp .telNumber {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
.pagesection.contact .contactwarp .telNumber img {
  max-width: calc(5 * (100vw - 2000px) / 1625 + 30px);
}
.pagesection.contact .contactwarp .telNumber a {
  font-size: calc(10 * (100vw - 2000px) / 1625 + 30px);
}
.pagesection.contact .contactwarp .contact-form {
  max-width: 500px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 50px;
}
.pagesection.contact .contactwarp .contact-form .form-group {
  margin-bottom: 24px;
}
.pagesection.contact .contactwarp .contact-form .form-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
  text-align: start;
}
.pagesection.contact .contactwarp .contact-form .form-group input,
.pagesection.contact .contactwarp .contact-form .form-group textarea {
  font-size: 16px;
  width: 95%;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 5%;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
@media (width <= 768px) {
  .pagesection.contact .contactwarp .contact-form .form-group input,
  .pagesection.contact .contactwarp .contact-form .form-group textarea {
    padding-left: 3px;
  }
}
.pagesection.contact .contactwarp .contact-form .checkbox-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.pagesection.contact .contactwarp .contact-form .checkbox-group label {
  font-weight: normal;
  text-align: start;
  display: flex;
  flex-direction: row;
}
.pagesection.contact .contactwarp .contact-form .checkbox-group label input {
  margin-right: 4px;
  border-radius: 4px;
  box-shadow: initial;
  width: 20px;
}
.pagesection.contact .contactwarp .contact-form .label-required,
.pagesection.contact .contactwarp .contact-form .label-optional {
  display: inline-block;
  padding: 2px 6px;
  font-size: 12px;
  border-radius: 4px;
  color: #fff;
  margin-right: 6px;
}
.pagesection.contact .contactwarp .contact-form .label-required {
  background-color: #e60012;
}
.pagesection.contact .contactwarp .contact-form .label-optional {
  background-color: #666;
}
.pagesection.contact .contactwarp .contact-form .form-submit {
  text-align: center;
  margin-top: 32px;
}
.pagesection.contact .contactwarp .contact-form .form-submit input {
  margin-top: 0;
}
.pagesection.contact .contactwarp .contact-form .form-submit .button {
  background-color: #e60012;
  color: #fff;
  border: none;
  padding: 10px 30px;
  font-weight: bold;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
}

.mw_wp_form .error {
  text-align: start;
}

.pagesection.thanks {
  padding-top: 0;
  margin-top: 0;
  max-width: 750px;
}
.pagesection.thanks .thankswarp h3 {
  font-size: 15px;
  font-weight: normal;
  margin-bottom: 30px;
}
.pagesection.thanks .thankswarp .openTime {
  font-weight: bold;
}
.pagesection.thanks .thankswarp .telText {
  background-color: red;
  max-width: 300px;
  margin: 0 auto;
}
.pagesection.thanks .thankswarp .telText .text {
  font-size: 16px;
  color: white;
}
.pagesection.thanks .thankswarp .telNumber {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
.pagesection.thanks .thankswarp .telNumber img {
  max-width: 30px;
}
.pagesection.thanks .thankswarp .telNumber a {
  font-size: 30px;
}

.recruit-section {
  max-width: 700px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
}
@media (width <= 992px) {
  .recruit-section {
    padding: 0;
    max-width: 90%;
    margin: 0 auto;
  }
}
.recruit-section .section-title {
  color: #e60012;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 20px;
}
.recruit-section .recruit-box {
  border: 1px solid #ccc;
  margin-bottom: 30px;
  padding: 20px;
  background: #fff;
}
.recruit-section .recruit-box .recruit-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.recruit-section .recruit-box .recruit-header .label {
  background: #e60012;
  color: #fff;
  padding: 3px 10px;
  font-size: 13px;
  margin-right: 10px;
  border-radius: 3px;
}
.recruit-section .recruit-box .recruit-header h3 {
  font-size: 16px;
  font-weight: bold;
}
.recruit-section .recruit-box table {
  width: 100%;
  border-collapse: collapse;
}
.recruit-section .recruit-box table th {
  text-align: left;
  padding: 8px;
  width: 25%;
  background: #f8f8f8;
  font-weight: bold;
  vertical-align: top;
  border: 1px solid #ccc;
}
@media (width <= 768px) {
  .recruit-section .recruit-box table th {
    font-size: 13px;
  }
}
.recruit-section .recruit-box table td {
  padding: 8px;
  border: 1px solid #ccc;
  line-height: 1.6;
}
@media (width <= 768px) {
  .recruit-section .recruit-box table td {
    font-size: 14px;
  }
}
.recruit-section .entry-button {
  text-align: center;
  margin-bottom: 50px;
}
.recruit-section .entry-button button {
  background: #e60012;
  color: #fff;
  padding: 10px 30px;
  font-weight: bold;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}/*# sourceMappingURL=style.css.map */