@charset "utf-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0
}
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: #343434;
  font-size: 20px;
}
h1 {
  line-height: 0;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}
ul {
  list-style: none;
}
.header-inner {
  width: 100%;
  position: absolute;
  z-index: 99;
  display: flex;
}
.logo {
  margin: 2% 5%;
}
.drawer {
  max-width: 900px;
  width: 100%;
  height: 100vh;
  -webkit-transform: translateX(300px);
  -ms-transform: translateX(300px);
  transform: translateX(300px);
  -webkit-transition: .3s;
  transition: .3s;
  background-color: #ffffff;
  z-index: 15;
  overflow: auto;
  overscroll-behavior-y: contain;
  visibility: hidden
}
.drawer[aria-hidden=false] {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  visibility: visible
}
.drawer_position {
  position: fixed;
  top: 0;
  right: 0
}
.drawer__inner {
  padding-bottom: 100px;
  background-color: #303435;
}
.drawer__top {
  width: 100%;
  height: 150px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: var(--base);
  z-index: 1
}
.drawer__btn {
  max-width: 395px;
  width: 90%;
  margin: 60px auto 0;
}
.drawer__link {
  height: 85px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-weight: bold;
  font-size: 40px;
  padding: 0 10%;
  color: #ffffff;
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
}
.drawer__link_sub {
  padding-left: 40px
}
.drawer__link .line {
  display: flex;
  align-items: center;
  width: 65%;
  font-size: 20px;
}
.drawer__link .line::before {
  content: "";
  width: 50%;
  height: 1px;
  background-color: #ffffff;
  display: block;
  margin-right: 30px;
}
.drawer__button-wrapper {
  max-width: 260px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  margin: 30px auto 0
}
.is-drawer-active {
  overflow: hidden
}
@media(hover: hover)and (pointer: fine) {
  .drawer__link {
    -webkit-transition: background-color .4s, color .4s;
    transition: background-color .4s, color .4s
  }
  .drawer__link:hover, .drawer__link:focus {
    opacity: 0.8;
  }
}
.drawer-bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background-color: #000;
  visibility: hidden;
  opacity: 0;
  z-index: 5
}
.is-drawer-active {
  height: 100%;
  overflow: hidden
}
.is-drawer-active .drawer-bg {
  visibility: visible;
  opacity: .8;
  -webkit-transition: .3s;
  transition: .3s
}
.hamburger {
  width: 124px;
  height: 124px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  z-index: 30;
  background-color: #303435;
  padding-bottom: clamp(.875rem, .4088263822rem + .9699321048vw, 1.5rem);
  position: fixed;
  top: 40px;
  right: 40px;
  border: none;
}
.hamburger[aria-expanded=true] .hamburger__line {
  background-color: rgba(0, 0, 0, 0)
}
.hamburger[aria-expanded=true] .hamburger__line::before {
  -webkit-transform: translateY(calc(clamp(1.2rem, 0.2202958293rem + 0.5819592629vw, 0.875rem) * -1)) rotate(150deg);
  -ms-transform: translateY(calc(clamp(1.2rem, 0.2202958293rem + 0.5819592629vw, 0.875rem) * -1)) rotate(150deg);
  transform: translateY(calc(clamp(1.2rem, 0.2202958293rem + 0.5819592629vw, 0.875rem) * -1)) rotate(150deg)
}
.hamburger[aria-expanded=true] .hamburger__line::after {
  -webkit-transform: translateY(clamp(1.2rem, 0.2669131911rem + 0.4849660524vw, 0.8125rem)) rotate(-150deg);
  -ms-transform: translateY(clamp(1.2rem, 0.2669131911rem + 0.4849660524vw, 0.8125rem)) rotate(-150deg);
  transform: translateY(clamp(1.2rem, 0.2669131911rem + 0.4849660524vw, 0.8125rem)) rotate(-150deg)
}
.hamburger__line {
  width: 70px;
  height: 6px;
  display: inline-block;
  position: absolute;
  top: calc(60% - clamp(.4375rem, .1111784675rem + .6789524733vw, .875rem));
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: .5s all;
  transition: .5s all;
  background-color: #ffffff;
}
.hamburger__line::before {
  content: "";
  width: 100%;
  height: 6px;
  display: inline-block;
  position: absolute;
  top: clamp(1.2rem, .2202958293rem + .5819592629vw, .875rem);
  left: 0;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  background-color: #ffffff;
}
.hamburger__line::after {
  content: "";
  width: 100%;
  height: 6px;
  display: inline-block;
  position: absolute;
  bottom: clamp(1.2rem, .2202958293rem + .5819592629vw, .875rem);
  left: 0;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  background-color: #ffffff;
}
@media(hover: hover)and (pointer: fine) {
  .hamburger:hover {
    opacity: 0.9;
  }
}
.main {
  line-height: 0;
}
.about {
  margin: 100px 0;
}
.about-inner {
  max-width: 1690px;
  width: 95%;
  margin: 0 auto;
}
.h2-ttl {
  font-size: max(6vw, 50px);
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
}
.h2-ttl span {
  display: block;
  font-size: 20px;
}
.about-flex {
  display: flex;
  align-items: center;
}
.about-left {
  width: 40%;
  text-align: center;
  border-right: solid 1px #343434;
  padding: 9% 0;
}
.about-right {
  width: 53%;
  padding-left: 7%;
  line-height: 2;
}
.business {
  background-color: #1F2426;
  position: relative;
  color: #ffffff;
  padding: 100px 0;
}
.business::before {
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  top: 15px;
  left: 0;
  background-color: #ffffff;
}
.business .h2-ttl {
  text-align: center;
}
.business-flex {
  display: flex;
  justify-content: space-between;
  max-width: 1690px;
  width: 95%;
  margin: 130px auto 0;
}
.business-reverse {
  flex-direction: row-reverse;
}
.business-left {
  width: 48%;
}
.business-left .lead {
  font-size: 38px;
  margin-bottom: 30px;
}
.business-left .lead span {
  font-size: 24px;
  margin-left: 30px;
}
.business-left .text {
  line-height: 2;
}
.business-right {
  width: auto;
}
.merit {
  text-align: center;
  margin-top: 150px;
}
.merit .h2-ttl {
  margin-bottom: 80px;
}
.recruit {
  text-align: center;
  margin: 150px 0;
}
.tbl {
  width: 70%;
  margin: 80px auto 0;
  border-collapse: collapse;
}
.tbl th {
  background: #ECECEC;
  border-bottom: solid 2px #1F2426;
  color: #1F2426;
  padding: 20px;
  width: 30%;
  font-weight: normal;
}
.tbl td {
  text-align: left;
  border-bottom: solid 2px #9D9FA0;
  padding: 20px 0 20px 120px;
  background: #ffffff;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .last td:last-child {
    border-bottom: solid 1px #ccc;
    width: 100%;
  }
  .tbl {
    width: 90%;
  }
  .tbl th, .tbl td {
    border-bottom: none;
    display: block;
    width: 100%;
  }
}
.company {
  padding: 150px 0 100px;
  text-align: center;
}
.contact {
  background-color: #35393B;
  position: relative;
  color: #ffffff;
  text-align: center;
  padding: 15px;
}
.contact-inner {
  padding: 100px 0;
  border: solid 1px #ffffff;
}
.contact-flex {
  max-width: 1200px;
  width: 90%;
  margin: 80px auto 0;
  display: flex;
  justify-content: space-between;
}
.map {
  height: 790px;
}
.contact-form {
  padding: 150px 0 100px;
  ;
  text-align: center;
}
.box_con {
  width: 60%;
  margin: 120px auto 0;
}
.box_con-text {
  text-align: left;
  line-height: 2;
  margin-bottom: 120px;
}
.box_con-text span {
  color: #ff0000;
}
@media only screen and (max-width: 768px) {
  .box_con {
    width: 95%;
  }
}
.box_con form {
  width: 100%;
}
.box_con form table {
  width: 100%;
}
.box_con form table tr {
  position: relative;
}
.box_con form table tr:after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 1px;
  border-bottom: dotted #cdcdcd 1px;
}
.box_con form table tr th {
  width: 90%;
  font-weight: normal;
  padding: 1em .5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between
}
@media only screen and (max-width: 768px) {
  .box_con form table tr th {
    text-align: center;
    width: 100%;
    display: flex;
    background: #303435;
    padding: .8em 2em;
    color: #fff;
  }
}
.box_con form table tr th span {
  background: #FF0000;
  padding: 0 2em;
  color: #fff;
  margin-left: .5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.box_con form table tr td {
  text-align: left;
  padding: 1em .5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .box_con form table tr td {
    padding: 1.5em .5em;
    display: block;
    width: 100%;
  }
}
.box_con form table tr select {
  border: 1px solid #97ae88;
}
.box_con form table tr label input {
  cursor: pointer;
  vertical-align: middle;
}
.box_con form table tr select, .box_con form table tr input, .box_con form table tr textarea {
  width: 100%;
  height: 3em;
  padding: .5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.box_con form table tr .radio02-input {
  width: 10%;
  height: 1.6em;
}
.box_con form table tr textarea {
  height: 10em;
}
/*プライバシーのデザインcss↓*/
.con_pri {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .con_pri {
    width: 95%;
  }
}
.con_pri .box_pri {
  height: 300px;
  overflow-y: scroll;
  border: 1px solid #cdcdcd;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 20px;
  padding: 20px 55px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri {
    margin-top: 4%;
    padding: 3%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .con_pri .box_pri {
    padding: 4%;
  }
}
.con_pri .box_pri .box_tori {
  text-align: left;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori {
    margin-top: 4%;
  }
}
.con_pri .box_pri .box_tori h4 {
  margin-bottom: 30px;
  font-size: 30px;
}
.con_pri .box_pri .box_num h5 {
  margin-bottom: 30px;
  font-size: 20px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori h4 {
    margin-bottom: 4%;
  }
}
.con_pri .box_pri .box_tori .txt {
  padding: 0 20px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori .txt {
    padding: 0;
  }
}
.con_pri .box_pri .box_num {
  margin-top: 30px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_num {
    margin-top: 5%;
  }
}
.con_pri .box_pri .box_num h4 {
  font-weight: normal;
  font-size: 113%;
}
.con_pri .box_pri .box_num .txt {
  padding: 10px 0 0 20px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_num .txt {
    padding: 3% 0 0 3%;
  }
}
.box_check {
  text-align: center;
  margin: 1em auto;
}
.box_check label {
  display: inline-block;
}
.box_check label span {
  margin-left: .3em;
}
.btn {
  text-align: center;
}
.btn input {
  display: inline-block;
  background: #303435;
  padding: 1em 4em;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  border: none;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  font-size: 20px;
}
.btn input:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}
#page_top {
  position: fixed;
  right: 35px;
  bottom: 20%;
  z-index: 999;
}
#page_top a {
  position: relative;
  display: block;
}
.copyright {
  background-color: #343434;
  color: #ffffff;
  padding: 50px 0;
  text-align: center;
}
.sp {
  display: none;
}
/*==================================================
レスポンシブ用デザイン
===================================*/
@media (max-width: 1024px) {
  body {
    font-size: 18px;
  }
  .logo {
    margin: 0;
  }
  .hamburger {
    width: 100px;
    height: 100px;
    top: 20px;
    right: 20px;
  }
  .contact-tel {
    margin-right: 20px;
  }
  .tbl {
    width: 95%;
  }
  .tbl td {
    padding-left: 50px;
  }
  .business-right {
    width: 50%;
  }
  .box_con {
    width: 90%;
  }
  .map {
    height: 450px;
  }
  #page_top {
    right: 20px;
  }
}
@media (max-width: 820px) {
  .business-flex {
    flex-wrap: wrap;
  }
  .business-left {
    width: 95%;
    margin: 0 auto;
  }
  .business-right {
    width: 95%;
    margin: 50px auto 0;
  }
}
@media (max-width: 428px) {
  body {
    font-size: 16px;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}