@charset "UTF-8";
/*===============================================
# font-size
=================================================*/
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
  background-color: #fff;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

header {
  z-index: 15;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  appearance: button;
  border: none;
  box-sizing: border-box;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

input[type="submit"] {
  -webkit-appearance: none;
}

iframe {
  border: none;
}

/*===============================================
# common
=================================================*/
html {
  scroll-behavior: initial !important;
  font-size: 16px;
}

body {
  display: none;
  font-size: 16px;
  font-size: 1rem;
  color: #333333;
  font-family: 'ヒラギノ角ゴシック', 'Hiragino Sans', 'Noto Sans JP', serif;
  line-height: 1.75;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: #333333;
}

@media screen and (max-width: 560px) {
  body {
    font-size: 14px;
  }
}

* {
  padding: 0;
  margin: 0;
}

#wrap {
  overflow: hidden;
  width: 100%;
}

a:hover {
  opacity: 0.8;
}

img {
  width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media screen and (max-width: 1279px) {
  .container {
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .container {
    margin: 0 auto;
    padding: 0 15px;
  }
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

.is-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .is-sp {
    display: block;
  }
}

a {
  color: #333333;
}

a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .header-mt {
    margin-top: 55px;
  }
}

/* color
================================*/
.main-color {
  color: #28914E;
}

/* ロード画面
================================*/
.loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  position: fixed;
  background-color: #FFF;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}

.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.loading-animation {
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  transition: all 1s;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  position: relative;
}

.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}

.loading_logo {
  position: absolute;
  left: 50%;
  top: 25%;
  transform: translateX(-50%);
  width: 400px;
}

@media screen and (max-width: 767px) {
  .loading_logo {
    width: 250px;
    top: 35%;
  }
}

.loading_car {
  position: absolute;
  left: 20%;
  top: 57%;
  transform: translateY(-50%);
  width: 300px;
  animation-name: drive;
  animation-duration: 10s;
  animation-fill-mode: forwards;
  z-index: 5;
}

@media screen and (max-width: 767px) {
  .loading_car {
    width: 140px;
    left: 0px;
    top: 53.5%;
    animation-duration: 6s;
  }
}

@keyframes drive {
  from {
    left: 20%;
    @media screen and (max-width: 767px) {
      left: 15px;
    }
  }
  to {
    left: 65%;
    @media screen and (max-width: 767px) {
      right: 0px;
    }
  }
}

.loading_office {
  position: absolute;
  right: 20%;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  z-index: 3;
}

@media screen and (max-width: 767px) {
  .loading_office {
    width: 100px;
    right: 15px;
  }
}

/*===============================================
# section
=================================================*/
/* btn
================================*/
/*===============================================
# header
=================================================*/
.wrap {
  position: relative;
}

.header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 920px) {
  .header {
    padding: 10px 15px;
  }
}

.header_logo {
  width: 200px;
  margin-left: 15px;
}

@media screen and (max-width: 767px) {
  .header_logo {
    width: 150px;
    margin: auto;
  }
}

.header_menu {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .header_menu {
    flex-direction: column;
    padding: 50px 0;
  }
}

.header_menu_inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
}

@media screen and (max-width: 767px) {
  .header_menu_inner {
    flex-direction: column;
  }
}

.header_side a {
  display: block;
  color: #fff;
  background: #28914E;
  border: 1px solid #28914E;
  height: 86.95px;
  width: 150px;
  margin-left: 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s;
}

.header_side a:hover {
  background: #fff;
  color: #28914E;
  transition: all 0.3s;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .header_side a {
    width: initial;
    height: initial;
    color: #28914E;
    text-align: center;
    background-color: initial;
    margin: 0;
    margin-top: 15px;
    border: none;
  }
}

@media screen and (max-width: 920px) {
  .drawer-hamburger {
    background-color: #323232;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 0;
  }
  .drawer-hamburger,
  .drawer-hamburger:hover {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #28914E;
    margin-right: 25px;
  }
}

@media screen and (max-width: 920px) and (max-width: 560px) {
  .drawer-hamburger,
  .drawer-hamburger:hover {
    margin-right: 15px;
  }
}

@media screen and (max-width: 920px) {
  .drawer-hamburger-icon {
    background-color: #fff;
    width: 30px;
    height: 2px;
    top: -5px;
    left: 50%;
    transform: translate(-50%);
  }
  .drawer-hamburger-icon::before, .drawer-hamburger-icon::after {
    background-color: #fff;
    width: 30px;
    height: 2px;
  }
  .drawer-hamburger-icon::after {
    top: 8px;
  }
  .drawer-hamburger-icon::before {
    top: -8px;
  }
  .drawer--left.drawer-open .drawer-hamburger {
    position: absolute;
    z-index: 50;
  }
  .drawer-open .drawer-hamburger-icon {
    background: transparent;
  }
  .drawer-open .drawer-hamburger-icon:after,
  .drawer-open .drawer-hamburger-icon:before {
    position: absolute;
    background: #fff;
  }
  .drawer-nav {
    z-index: 30;
  }
}

@media screen and (max-width: 767px) {
  .drawer-hamburger {
    width: 50px;
    height: 50px;
  }
}

/*===============================================
# footer
=================================================*/
.footer {
  margin-top: 200px;
  padding-top: 70px;
  background: #28914E;
}

@media screen and (max-width: 767px) {
  .footer {
    margin-top: 100px;
  }
}

.footer_logo {
  width: 200px;
  margin: auto;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .footer_logo {
    width: 160px;
  }
}

.footer_copyright {
  margin-top: 50px;
  text-align: center;
  background: #28914E;
  padding: 10px 0;
}

.footer_copyright p {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
  color: #fff;
}

/*===============================================
# 採用ページ
=================================================*/
.recruit_mv {
  position: relative;
}

.recruit_mv_btn {
  position: absolute;
  width: 8.18%;
  bottom: 150px;
  right: 50px;
}

@media screen and (max-width: 1450px) {
  .recruit_mv_btn {
    bottom: 50px;
  }
}

@media screen and (max-width: 920px) {
  .recruit_mv_btn {
    width: 12%;
  }
}

@media screen and (max-width: 767px) {
  .recruit_mv_btn {
    width: 15%;
    bottom: 140px;
    right: 15px;
  }
}

@media screen and (max-width: 560px) {
  .recruit_mv_btn {
    width: 20%;
  }
}

/* galery
================================*/
.recruit_gallery {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.recruit_gallery .recruit_gallery_inner {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: scrollLeft 90s linear infinite;
}

.recruit_gallery .recruit_gallery_inner img {
  height: 350px;
  width: auto;
}

@media screen and (max-width: 767px) {
  .recruit_gallery .recruit_gallery_inner img {
    height: 170px;
  }
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* recruit_title
================================*/
.recruit_title {
  position: relative;
}

.recruit_title._center {
  text-align: center;
}

.recruit_title h2 {
  position: relative;
  font-size: 65px;
  font-size: 4.0625rem;
  color: #28914E;
  font-weight: 600;
  letter-spacing: 0;
  z-index: 5;
}

@media screen and (max-width: 1023px) {
  .recruit_title h2 {
    font-size: 55px;
    font-size: 3.4375rem;
  }
}

@media screen and (max-width: 767px) {
  .recruit_title h2 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 560px) {
  .recruit_title h2 {
    font-size: 34px;
    font-size: 2.125rem;
  }
}

.recruit_title p {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  font-family: "din-2014", sans-serif;
  font-size: 150px;
  font-size: 9.375rem;
  line-height: 1;
  font-weight: bold;
  color: #D3E5D2;
  opacity: 0.5;
  letter-spacing: 0;
  z-index: 3;
}

@media screen and (max-width: 767px) {
  .recruit_title p {
    font-size: 86px;
    font-size: 5.375rem;
    bottom: 15px;
  }
}

.recruit_title._white h2, .recruit_title._white p {
  color: #fff;
}

.recruit_title._white p {
  opacity: 0.5;
}

/* recruit_message
================================*/
.recruit_message {
  padding-top: 60px;
  padding-bottom: 140px;
}

@media screen and (max-width: 767px) {
  .recruit_message {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}

.recruit_message_inner {
  display: grid;
  grid-template-columns: 44% auto;
  align-items: center;
  gap: 70px;
}

@media screen and (max-width: 767px) {
  .recruit_message_inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

.recruit_message_text .text {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0;
  line-height: 1.7;
}

@media screen and (max-width: 1023px) {
  .recruit_message_text .text {
    font-size: 16px;
    font-size: 1rem;
  }
}

.recruit_message_text .shomei {
  text-align: right;
  margin-top: 50px;
  font-size: 35px;
  font-size: 2.1875rem;
  letter-spacing: 0.03em;
  line-height: 1.45;
}

@media screen and (max-width: 1023px) {
  .recruit_message_text .shomei {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

@media screen and (max-width: 767px) {
  .recruit_message_text .shomei {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

.recruit_message_text .shomei span {
  padding-right: 25px;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1023px) {
  .recruit_message_text .shomei span {
    font-size: 16px;
    font-size: 1rem;
  }
}

/* recruit_about
================================*/
.recruit_about {
  position: relative;
  padding-top: 100px;
  padding-bottom: 150px;
}

@media screen and (max-width: 767px) {
  .recruit_about {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}

.recruit_about_text {
  position: absolute;
  left: 0;
  top: 283px;
  width: 190px;
}

@media screen and (max-width: 1450px) {
  .recruit_about_text {
    width: 150px;
  }
}

@media screen and (max-width: 1279px) {
  .recruit_about_text {
    display: none;
  }
}

p.recruit_about_title_sub {
  display: none;
}

@media screen and (max-width: 1279px) {
  p.recruit_about_title_sub {
    display: block;
    font-size: 120px;
    font-size: 7.5rem;
  }
}

@media screen and (max-width: 767px) {
  p.recruit_about_title_sub {
    font-size: 90px;
    font-size: 5.625rem;
  }
}

@media screen and (max-width: 560px) {
  p.recruit_about_title_sub {
    font-size: 70px;
    font-size: 4.375rem;
  }
}

.recruit_about_list {
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .recruit_about_list {
    margin-top: 60px;
  }
}

@media screen and (max-width: 560px) {
  .recruit_about_list {
    margin-top: 50px;
  }
}

.recruit_about_list dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
}

.recruit_about_item {
  display: grid;
  grid-template-columns: 170px auto;
  gap: 10px;
}

@media screen and (max-width: 767px) {
  .recruit_about_item {
    grid-template-columns: 110px auto;
  }
}

@media screen and (max-width: 560px) {
  .recruit_about_item {
    grid-template-columns: 100px auto;
  }
}

.recruit_about_item dt {
  background: #80C148;
  padding: 17px 25px;
  border-radius: 2px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .recruit_about_item dt {
    padding: 13px 15px;
  }
}

.recruit_about_item dt p {
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.recruit_about_item dd {
  border-bottom: 1px dotted #707070;
  padding: 17px 25px;
}

@media screen and (max-width: 767px) {
  .recruit_about_item dd {
    padding: 13px 10px;
  }
}

.recruit_about_item dd .big {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  line-height: 1.45;
}

@media screen and (max-width: 1023px) {
  .recruit_about_item dd .big {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 767px) {
  .recruit_about_item dd .big {
    font-size: 16px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 560px) {
  .recruit_about_item dd .big {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

.recruit_about_item dd .small {
  padding-left: 20px;
  padding-top: 5px;
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  .recruit_about_item dd .small {
    padding-left: 13px;
  }
}

/* recruit_job
================================*/
.recruit_job {
  position: relative;
  padding-top: 200px;
  padding-bottom: 145px;
}

@media screen and (max-width: 767px) {
  .recruit_job {
    padding-top: 100px;
  }
}

@media screen and (max-width: 560px) {
  .recruit_job {
    padding-bottom: 100px;
  }
}

.recruit_job_bg {
  width: 66.5%;
  right: 0;
  top: 55px;
}

@media screen and (max-width: 767px) {
  .recruit_job_bg {
    width: 90%;
  }
}

.recruit_job_wrap {
  margin-top: 200px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 150px;
}

@media screen and (max-width: 767px) {
  .recruit_job_wrap {
    gap: 60px;
    margin-top: 80px;
  }
}

.recruit_job_item {
  position: relative;
}

.recruit_job_item_img {
  position: absolute;
  width: 41%;
  max-width: 665px;
}

@media screen and (max-width: 767px) {
  .recruit_job_item_img {
    width: 90%;
    position: static;
  }
}

.recruit_job_item_content {
  width: 58%;
}

@media screen and (max-width: 767px) {
  .recruit_job_item_content {
    width: 100%;
  }
}

.recruit_job_item_content h3 {
  text-align: center;
  font-size: 32px;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.68;
}

@media screen and (max-width: 767px) {
  .recruit_job_item_content h3 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 560px) {
  .recruit_job_item_content h3 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

.recruit_job_item_content p {
  margin-top: 50px;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .recruit_job_item_content p {
    font-size: 16px;
    font-size: 1rem;
    margin-top: 20px;
  }
}

.recruit_job_item01 .recruit_job_item_content {
  margin-left: auto;
}

.recruit_job_item01 .recruit_job_item_content h3 {
  color: #80C148;
}

@media screen and (max-width: 767px) {
  .recruit_job_item01 .recruit_job_item_content h3 {
    border-bottom: 2px solid #80C148;
  }
}

.recruit_job_item01 .recruit_job_item_img {
  top: 0;
  left: 0;
}

@media screen and (min-width: 1900px) {
  .recruit_job_item01 .recruit_job_item_img {
    left: calc(25%);
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 767px) {
  .recruit_job_item01 .recruit_job_item_img {
    margin-right: auto;
    margin-top: 40px;
  }
}

.recruit_job_item02 .recruit_job_item_content {
  margin-right: auto;
}

.recruit_job_item02 .recruit_job_item_content h3 {
  color: #28914E;
}

@media screen and (max-width: 767px) {
  .recruit_job_item02 .recruit_job_item_content h3 {
    border-bottom: 2px solid #28914E;
  }
}

.recruit_job_item02 .recruit_job_item_img {
  top: 0;
  right: 0;
}

@media screen and (min-width: 1900px) {
  .recruit_job_item02 .recruit_job_item_img {
    right: calc(25%);
    transform: translateX(50%);
  }
}

@media screen and (max-width: 767px) {
  .recruit_job_item02 .recruit_job_item_img {
    margin-left: auto;
    margin-top: 40px;
  }
}

/* recruit_merit
================================*/
.recruit_merit {
  padding-top: 150px;
  padding-bottom: 150px;
}

@media screen and (max-width: 767px) {
  .recruit_merit {
    padding-top: 0px;
    padding-bottom: 50px;
  }
}

.recruit_merit_wrap {
  margin-top: 150px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 160px;
}

@media screen and (max-width: 767px) {
  .recruit_merit_wrap {
    gap: 80px;
    margin-top: 60px;
  }
}

.recruit_merit_item {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .recruit_merit_item {
    flex-direction: column;
  }
}

.recruit_merit_item_content {
  display: flex;
  align-items: center;
  width: 41%;
}

@media screen and (max-width: 1279px) {
  .recruit_merit_item_content {
    width: 45%;
  }
}

@media screen and (max-width: 767px) {
  .recruit_merit_item_content {
    width: 100%;
    order: -1;
  }
}

.recruit_merit_item_content .merit {
  text-align: center;
  width: 70px;
  font-family: "din-2014", sans-serif;
  font-size: 70px;
  font-size: 4.375rem;
  letter-spacing: 0;
  line-height: 1.2;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .recruit_merit_item_content .merit {
    font-size: 55px;
    font-size: 3.4375rem;
  }
}

.recruit_merit_item_content .merit span {
  display: block;
  font-size: 26px;
  font-size: 1.625rem;
  letter-spacing: 0;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: -15px;
}

@media screen and (max-width: 767px) {
  .recruit_merit_item_content .merit span {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

.recruit_merit_item_content .contents {
  width: calc(100% - 70px);
  padding-left: 20px;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  line-height: 1.75;
}

@media screen and (max-width: 1279px) {
  .recruit_merit_item_content .contents {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 767px) {
  .recruit_merit_item_content .contents {
    font-size: 16px;
    font-size: 1rem;
  }
}

.recruit_merit_img {
  width: 52%;
}

@media screen and (max-width: 767px) {
  .recruit_merit_img {
    width: 100%;
    margin-top: 20px;
  }
}

.recruit_merit_item01 {
  border-bottom: solid 8px #28914E;
}

.recruit_merit_item01 .merit {
  color: #28914E;
}

.recruit_merit_item02 {
  border-bottom: solid 8px #80C148;
}

.recruit_merit_item02 .merit {
  color: #80C148;
}

/* recruit_flow
================================*/
.recruit_flow {
  padding-top: 300px;
}

@media screen and (max-width: 767px) {
  .recruit_flow {
    padding-top: 120px;
  }
}

.recruit_flow_item {
  margin-top: 30px;
}

/* recruit_welfare
================================*/
.recruit_welfare {
  padding-top: 90px;
  padding-bottom: 70px;
  background: #28914E;
  position: relative;
}

@media screen and (max-width: 767px) {
  .recruit_welfare {
    padding-bottom: 50px;
  }
}

.recruit_welfare_wrap {
  margin: auto;
  max-width: 915px;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

@media screen and (max-width: 767px) {
  .recruit_welfare_wrap {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 80px;
  }
}

@media screen and (max-width: 560px) {
  .recruit_welfare_wrap {
    margin-top: 60px;
  }
}

.recruit_welfare_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.recruit_welfare_item {
  background-color: #fff;
  padding: 17px 70px;
}

.recruit_welfare_item p {
  line-height: 1;
  letter-spacing: 0;
}

/* recruit_skill
================================*/
.recruit_skill {
  padding: 200px 0;
}

@media screen and (max-width: 767px) {
  .recruit_skill {
    padding: 100px 0;
  }
}

@media screen and (max-width: 560px) {
  .recruit_skill {
    padding: 80px 0;
  }
}

.recruit_skill_wrap {
  margin: auto;
  margin-top: 100px;
  max-width: 940px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

@media screen and (max-width: 1023px) {
  .recruit_skill_wrap {
    gap: 35px;
  }
}

@media screen and (max-width: 767px) {
  .recruit_skill_wrap {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }
}

.recruit_skill_item_title {
  text-align: center;
  padding: 16px 0;
}

.recruit_skill_item_title h3 {
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 1.7;
}

.recruit_skill_item_title._r {
  background-color: #80C148;
}

.recruit_skill_item_title._b {
  background-color: #28914E;
}

.recruit_skill_item_text {
  background-color: #F9F9F9;
  padding: 55px 5px;
}

.recruit_skill_item_text p {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0;
  line-height: 1.7;
}

/* recruit_interview
================================*/
.recruit_interview {
  background: url(../img/lp/interview_bg.png) center center/cover no-repeat;
  padding-top: 230px;
  padding-bottom: 250px;
}

@media screen and (max-width: 767px) {
  .recruit_interview {
    padding-top: 130px;
    padding-bottom: 180px;
  }
}

.recruit_interview_body {
  margin-top: 120px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .recruit_interview_body {
    margin-top: 40px;
  }
}

.recruit_interview_body + .recruit_interview_body {
  margin-top: 260px;
}

@media screen and (max-width: 767px) {
  .recruit_interview_body + .recruit_interview_body {
    margin-top: 150px;
  }
}

.recruit_interview_body_img {
  position: absolute;
  top: 0;
  right: calc(50% + 50px);
  width: 44%;
  max-width: 560px;
}

@media screen and (max-width: 1023px) {
  .recruit_interview_body_img {
    width: 60%;
    margin: auto;
    position: static;
  }
}

@media screen and (max-width: 767px) {
  .recruit_interview_body_img {
    width: 100%;
  }
}

.recruit_interview_body_img p {
  background-color: #28914E;
  padding: 10px 0;
  text-align: center;
  color: #fff;
}

.recruit_interview_contents {
  margin-top: 70px;
}

@media screen and (max-width: 767px) {
  .recruit_interview_contents {
    margin-top: 50px;
  }
}

.recruit_interview_contents h3 {
  color: #28914E;
  font-size: 42px;
  font-size: 2.625rem;
  font-weight: 500;
}

@media screen and (max-width: 1279px) {
  .recruit_interview_contents h3 {
    font-size: 34px;
    font-size: 2.125rem;
  }
}

@media screen and (max-width: 767px) {
  .recruit_interview_contents h3 {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

.recruit_interview_contents p {
  margin-top: 20px;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .recruit_interview_contents p {
    font-size: 16px;
    font-size: 1rem;
  }
}

.recruit_interview_contents._top {
  margin-left: auto;
  padding-top: 120px;
  width: 49%;
}

@media screen and (max-width: 1023px) {
  .recruit_interview_contents._top {
    width: 100%;
    padding-top: 80px;
  }
}

@media screen and (max-width: 767px) {
  .recruit_interview_contents._top {
    padding-top: 0px;
  }
}

/* recruit_flow
================================*/
.recruit_entry {
  padding-top: 300px;
  padding-bottom: 125px;
  background: #FCFCFC;
}

@media screen and (max-width: 767px) {
  .recruit_entry {
    padding-top: 150px;
    padding-bottom: 100px;
  }
}

.recruit_entry_body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 110px;
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .recruit_entry_body {
    margin: auto;
    max-width: 400px;
    margin-top: 50px;
    grid-template-columns: 1fr;
    align-items: center;
  }
}

@media screen and (max-width: 560px) {
  .recruit_entry_body {
    max-width: 200px;
    gap: 70px;
  }
}

.recruit_entry_item {
  position: relative;
}

.recruit_entry_item .num {
  width: 108px;
}

@media screen and (max-width: 1023px) {
  .recruit_entry_item .num {
    width: 70px;
  }
}

@media screen and (max-width: 767px) {
  .recruit_entry_item .num {
    width: 50px;
  }
}

.recruit_entry_item p {
  font-size: 46px;
  font-size: 2.875rem;
  letter-spacing: 0.15em;
  line-height: 1;
  font-weight: 500;
}

@media screen and (max-width: 1023px) {
  .recruit_entry_item p {
    font-size: 34px;
    font-size: 2.125rem;
  }
}

@media screen and (max-width: 767px) {
  .recruit_entry_item p {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

.recruit_entry_item:first-child::after {
  position: absolute;
  content: "";
  background: url(../img/lp/entry_arrow.svg) center center/contain no-repeat;
  bottom: 130px;
  right: -70px;
  width: 52px;
  height: 35px;
}

@media screen and (max-width: 1023px) {
  .recruit_entry_item:first-child::after {
    bottom: 60px;
  }
}

@media screen and (max-width: 767px) {
  .recruit_entry_item:first-child::after {
    transform: rotate(90deg) translateX(-50%);
    bottom: -70px;
    left: 50%;
    width: 70px;
    height: 40px;
  }
}

@media screen and (max-width: 560px) {
  .recruit_entry_item:first-child::after {
    width: 52px;
    height: 35px;
    left: 41%;
  }
}

.recruit_entry_item:nth-child(2)::after {
  position: absolute;
  content: "";
  background: url(../img/lp/entry_arrow.svg) center center/contain no-repeat;
  bottom: 130px;
  right: -70px;
  width: 52px;
  height: 35px;
}

@media screen and (max-width: 1023px) {
  .recruit_entry_item:nth-child(2)::after {
    bottom: 60px;
  }
}

@media screen and (max-width: 767px) {
  .recruit_entry_item:nth-child(2)::after {
    transform: rotate(90deg) translateX(-50%);
    bottom: -70px;
    left: 50%;
    width: 70px;
    height: 40px;
  }
}

@media screen and (max-width: 560px) {
  .recruit_entry_item:nth-child(2)::after {
    width: 52px;
    height: 35px;
    left: 41%;
  }
}

/* recruit_faq
================================*/
.recruit_faq {
  margin-top: 300px;
}

@media screen and (max-width: 767px) {
  .recruit_faq {
    margin-top: 130px;
  }
}

.recruit_faq_wrap {
  margin-top: 50px;
}

.recruit_faq_item {
  background: #F5FFF5;
  padding: 40px 30px;
}

@media screen and (max-width: 767px) {
  .recruit_faq_item {
    padding: 30px 15px;
  }
}

.recruit_faq_item:nth-child(2n) {
  background: #FCFCFC;
}

.recruit_faq_item dt, .recruit_faq_item dd {
  position: relative;
  padding-left: 65px;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.44;
}

@media screen and (max-width: 1023px) {
  .recruit_faq_item dt, .recruit_faq_item dd {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .recruit_faq_item dt, .recruit_faq_item dd {
    font-size: 18px;
    font-size: 1.125rem;
    padding-left: 50px;
  }
}

@media screen and (max-width: 560px) {
  .recruit_faq_item dt, .recruit_faq_item dd {
    font-size: 16px;
    font-size: 1rem;
  }
}

.recruit_faq_item dt::before, .recruit_faq_item dd::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  left: 0;
  top: -10px;
}

@media screen and (max-width: 1023px) {
  .recruit_faq_item dt::before, .recruit_faq_item dd::before {
    width: 45px;
    height: 45px;
  }
}

@media screen and (max-width: 767px) {
  .recruit_faq_item dt::before, .recruit_faq_item dd::before {
    width: 42px;
    height: 42px;
  }
}

@media screen and (max-width: 560px) {
  .recruit_faq_item dt::before, .recruit_faq_item dd::before {
    width: 35px;
    height: 35px;
    top: -6px;
  }
}

.recruit_faq_item dt::before {
  background: url(../img/lp/Q.svg) center center/contain no-repeat;
}

.recruit_faq_item dd {
  margin-top: 45px;
}

.recruit_faq_item dd::before {
  background: url(../img/lp/A.svg) center center/contain no-repeat;
}

/* recruit_person
================================*/
.recruit_person {
  background-color: #F9F9F9;
  padding-top: 230px;
  padding-bottom: 150px;
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 1279px) {
  .recruit_person {
    padding-bottom: 200px;
  }
}

@media screen and (max-width: 767px) {
  .recruit_person {
    padding-top: 120px;
    padding-bottom: 180px;
  }
}

.recruit_person_point1 {
  position: absolute;
  top: 60px;
  left: -180px;
  width: 350px;
}

@media screen and (max-width: 1450px) {
  .recruit_person_point1 {
    top: 0;
    width: 25%;
  }
}

@media screen and (max-width: 1023px) {
  .recruit_person_point1 {
    top: -30px;
    left: -100px;
  }
}

@media screen and (max-width: 767px) {
  .recruit_person_point1 {
    left: -70px;
    top: -50px;
    width: 40%;
  }
}

.recruit_person_point2 {
  position: absolute;
  bottom: 50px;
  right: 0;
}

@media screen and (max-width: 1279px) {
  .recruit_person_point2 {
    bottom: 0;
  }
}

@media screen and (max-width: 1023px) {
  .recruit_person_point2 {
    width: 150px;
  }
}

@media screen and (max-width: 767px) {
  .recruit_person_point2 {
    width: 100px;
  }
}

.recruit_person_wrap {
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .recruit_person_wrap {
    margin-top: 50px;
  }
}

.recruit_person_wrap ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.recruit_person_wrap ul li {
  position: relative;
  padding-left: 35px;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.4;
}

@media screen and (max-width: 1023px) {
  .recruit_person_wrap ul li {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .recruit_person_wrap ul li {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

@media screen and (max-width: 560px) {
  .recruit_person_wrap ul li {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.recruit_person_wrap ul li::before {
  position: absolute;
  content: "";
  background: #28914E;
  width: 20px;
  height: 20px;
  left: 0;
  top: 8px;
  border-radius: 50%;
}

@media screen and (max-width: 1023px) {
  .recruit_person_wrap ul li::before {
    top: 6px;
  }
}

/* recruit_form
================================*/
.recruit_form {
  margin-top: 350px;
}

@media screen and (max-width: 767px) {
  .recruit_form {
    margin-top: 200px;
  }
}

.recruit_form_body {
  margin: auto;
  margin-top: 60px;
  max-width: 885px;
}

@media screen and (max-width: 767px) {
  .recruit_form_body {
    margin-top: 50px;
  }
}

.recruit_form_body_intro {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .recruit_form_body_intro {
    font-size: 16px;
    font-size: 1rem;
    text-align: left;
  }
}

.recruit_form_inner {
  margin-top: 60px;
}

/*===============================================
# ビジネスパートナー
=================================================*/
.bp_mv {
  background: url(../img/bp/mv.png) center center/cover no-repeat;
  padding-top: 120px;
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .bp_mv {
    padding-top: 70px;
    padding-bottom: 50px;
  }
}

.bp_mv p {
  font-size: 30px;
  font-size: 1.875rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .bp_mv p {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.bp_mv h1 {
  text-align: center;
  color: #28914E;
  font-size: 38px;
  font-size: 2.375rem;
}

@media screen and (max-width: 767px) {
  .bp_mv h1 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

.bp_intro {
  text-align: center;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .bp_intro {
    margin-top: 50px;
  }
}

.bp_intro p {
  text-align: center;
  color: #28914E;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
}

@media screen and (max-width: 767px) {
  .bp_intro p {
    font-size: 16px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 560px) {
  .bp_intro p {
    text-align: left;
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.apply_btn {
  margin-top: 120px;
}

@media screen and (max-width: 767px) {
  .apply_btn {
    margin-top: 70px;
  }
}

.apply_btn a {
  display: block;
  width: 300px;
  background: #28914E;
  margin: auto;
  padding: 16px 0;
  text-align: center;
  color: #fff;
}

/*===============================================
# page_common
=================================================*/
.page_wrap {
  position: relative;
  margin-top: 115px;
}

@media screen and (max-width: 1279px) {
  .page_wrap {
    margin-top: 93px;
  }
}

@media screen and (max-width: 1150px) {
  .page_wrap {
    margin-top: 62px;
  }
}

@media screen and (max-width: 767px) {
  .page_wrap {
    margin-top: 50px;
  }
}

/* page_title
================================*/
/* section_title
================================*/
.section_title01 {
  color: #fff;
}

.section_title01 p {
  position: relative;
  font-family: "din-2014", sans-serif;
  letter-spacing: 0.2em;
  line-height: 1.25;
  font-size: 20px;
  font-size: 1.25rem;
  padding-left: 25px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .section_title01 p {
    font-size: 16px;
    font-size: 1rem;
  }
}

.section_title01 p::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #80C148;
  width: 18px;
  height: 2px;
}

.section_title01 h2 {
  font-size: 40px;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  line-height: 1.7;
  font-weight: bold;
}

@media screen and (max-width: 1279px) {
  .section_title01 h2 {
    font-size: 36px;
    font-size: 2.25rem;
  }
}

@media screen and (max-width: 1023px) {
  .section_title01 h2 {
    font-size: 32px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .section_title01 h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

@media screen and (max-width: 560px) {
  .section_title01 h2 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

.section_title02 {
  color: #28914E;
}

.section_title02 p {
  position: relative;
  font-family: "din-2014", sans-serif;
  letter-spacing: 0.2em;
  line-height: 1.25;
  font-size: 20px;
  font-size: 1.25rem;
  padding-left: 25px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .section_title02 p {
    font-size: 16px;
    font-size: 1rem;
  }
}

.section_title02 p::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #80C148;
  width: 18px;
  height: 2px;
}

.section_title02 h2 {
  font-size: 40px;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  line-height: 1.7;
  font-weight: bold;
}

@media screen and (max-width: 1279px) {
  .section_title02 h2 {
    font-size: 36px;
    font-size: 2.25rem;
  }
}

@media screen and (max-width: 1023px) {
  .section_title02 h2 {
    font-size: 32px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .section_title02 h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

@media screen and (max-width: 560px) {
  .section_title02 h2 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

.section_title03 {
  color: #000;
}

.section_title03 p {
  position: relative;
  font-family: "din-2014", sans-serif;
  letter-spacing: 0.2em;
  line-height: 1.25;
  font-size: 20px;
  font-size: 1.25rem;
  padding-left: 25px;
  color: #28914E;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .section_title03 p {
    font-size: 16px;
    font-size: 1rem;
  }
}

.section_title03 p::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #80C148;
  width: 18px;
  height: 2px;
}

.section_title03 h2 {
  font-size: 40px;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  line-height: 1.7;
  font-weight: bold;
  margin-top: 10px;
}

@media screen and (max-width: 1279px) {
  .section_title03 h2 {
    font-size: 36px;
    font-size: 2.25rem;
  }
}

@media screen and (max-width: 1023px) {
  .section_title03 h2 {
    font-size: 32px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .section_title03 h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

@media screen and (max-width: 560px) {
  .section_title03 h2 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

/* breadcrumb_container
================================*/
.breadcrumb_container {
  margin-left: 85px;
}

@media screen and (max-width: 767px) {
  .breadcrumb_container {
    margin-left: 20px;
  }
}

.breadcrumb {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0;
  line-height: 1.6;
}

@media screen and (max-width: 560px) {
  .breadcrumb {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.breadcrumb a, .breadcrumb span {
  color: #333333;
}

/* page-mv
================================*/
.page_mv {
  background: url(../img/common/page_mv.png) center center/cover no-repeat;
  padding-top: 12px;
  padding-bottom: 170px;
}

@media screen and (max-width: 1023px) {
  .page_mv {
    padding-bottom: 130px;
  }
}

@media screen and (max-width: 767px) {
  .page_mv {
    padding-bottom: 80px;
  }
}

.page_title {
  margin-top: 70px;
}

@media screen and (max-width: 1023px) {
  .page_title {
    margin-top: 50px;
  }
}

.page_title h1 {
  display: inline-block;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: bold;
  border-bottom: 2px solid #80C148;
  padding: 0 25px 6px 0;
}

@media screen and (max-width: 1279px) {
  .page_title h1 {
    font-size: 36px;
    font-size: 2.25rem;
  }
}

@media screen and (max-width: 1023px) {
  .page_title h1 {
    font-size: 34px;
    font-size: 2.125rem;
  }
}

@media screen and (max-width: 767px) {
  .page_title h1 {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

/* page_section_title
================================*/
.page_section_title {
  text-align: center;
}

.page_section_title p {
  display: inline-block;
  position: relative;
  color: #28914E;
  font-family: "din-2014", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  line-height: 1;
  padding: 0 30px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .page_section_title p {
    font-size: 18px;
    font-size: 1.125rem;
    padding: 0 26px;
  }
}

.page_section_title p::after {
  position: absolute;
  content: "";
  background: #80C148;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
}

@media screen and (max-width: 767px) {
  .page_section_title p::after {
    width: 16px;
  }
}

.page_section_title p::before {
  position: absolute;
  content: "";
  background: #80C148;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
}

@media screen and (max-width: 767px) {
  .page_section_title p::before {
    width: 16px;
  }
}

.page_section_title h2 {
  margin-top: 15px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: bold;
}

@media screen and (max-width: 1023px) {
  .page_section_title h2 {
    font-size: 34px;
    font-size: 2.125rem;
  }
}

@media screen and (max-width: 767px) {
  .page_section_title h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

.page_section_title02 {
  text-align: left;
}

.page_section_title02 p {
  display: inline-block;
  position: relative;
  color: #28914E;
  font-family: "din-2014", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  line-height: 1;
  padding: 0 30px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .page_section_title02 p {
    font-size: 18px;
    font-size: 1.125rem;
    padding: 0 26px;
  }
}

.page_section_title02 p::before {
  position: absolute;
  content: "";
  background: #80C148;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
}

@media screen and (max-width: 767px) {
  .page_section_title02 p::before {
    width: 16px;
  }
}

.page_section_title02 h2 {
  margin-top: 15px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: bold;
}

@media screen and (max-width: 1023px) {
  .page_section_title02 h2 {
    font-size: 34px;
    font-size: 2.125rem;
  }
}

@media screen and (max-width: 767px) {
  .page_section_title02 h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

/*===============================================
# contact
=================================================*/
.contact {
  margin-top: 130px;
}

@media screen and (max-width: 767px) {
  .contact {
    margin-top: 80px;
  }
}

.contact_intro {
  max-width: 675px;
  margin: auto;
}

/* mail
================================*/
.contact_mail {
  margin-top: 100px;
  padding-bottom: 150px;
}

@media screen and (max-width: 1023px) {
  .contact_mail {
    margin-top: 80px;
    padding-bottom: 110px;
  }
}

@media screen and (max-width: 767px) {
  .contact_mail {
    margin-top: 60px;
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 560px) {
  .contact_mail {
    margin-top: 60px;
  }
}

.contact_form {
  max-width: 885px;
  margin: auto;
}

.contact_title {
  display: flex;
  align-items: center;
}

.contact_title h2 {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
  padding-right: 25px;
  border-right: 2px solid #28914E;
}

@media screen and (max-width: 767px) {
  .contact_title h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

.contact_title p {
  padding-left: 20px;
  line-height: 1;
  font-weight: 500;
}

.contact_text {
  margin-top: 35px;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .contact_text {
    margin-top: 25px;
    line-height: 1.5;
  }
}

.contact_item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 11px;
}

.contact_item + .contact_item {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .contact_item + .contact_item {
    margin-top: 25px;
  }
}

@media screen and (max-width: 767px) {
  .contact_item {
    margin: 0 0px;
    gap: 0px;
  }
}

.contact_item.-recruit {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .contact_item.-recruit {
    margin-top: 15px;
  }
}

.contact_item_title {
  width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .contact_item_title {
    text-align: left;
    width: 100%;
    font-size: 16px;
    font-size: 1rem;
  }
}

.contact_item_title_inline {
  width: 45px;
  background-color: #D55454;
  text-align: center;
  color: #fff;
  padding: 4px 11px;
  vertical-align: middle;
  border-radius: 0px;
  line-height: 1;
  font-size: 12px;
  font-size: 0.75rem;
  margin-left: 15px;
}

@media screen and (max-width: 767px) {
  .contact_item_title_inline {
    margin-left: 15px;
    font-size: 11px;
    font-size: 0.6875rem;
  }
}

@media screen and (max-width: 767px) {
  .contact_item_input {
    width: 100%;
    padding: 0;
    margin-top: 10px;
  }
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  border: 0;
  font-size: 18px;
  font-size: 1.125rem;
  width: 100%;
  border: 1px solid #DBDDE0;
}

@media screen and (max-width: 767px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select,
  textarea {
    font-size: 16px;
    font-size: 1rem;
  }
}

input[type="text"],
input[type="email"],
select,
input[type="tel"] {
  padding: 12px 10px;
}

textarea {
  min-height: 190px;
  resize: vertical;
  padding: 5px 5px;
}

.contact_item_input_file {
  margin-bottom: 10px;
}

.contact_item_input_select {
  position: relative;
  width: 250px;
}

.contact_item_input_select::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: #414141 transparent transparent transparent;
  right: 15px;
  top: 20px;
  pointer-events: none;
}

.contact_item_input_select select {
  appearance: none;
  padding-left: 10px;
}

.wpcf7-radio .wpcf7-list-item {
  display: block;
  margin-bottom: 10px;
}

.contact_item_check {
  margin-bottom: 100px;
}

@media screen and (max-width: 1023px) {
  .contact_item_check {
    margin-bottom: 70px;
  }
}

@media screen and (max-width: 767px) {
  .contact_item_check {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 560px) {
  .contact_item_check {
    margin-bottom: 35px;
  }
}

.contact_footer {
  margin-top: 50px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contact_footer {
    margin-top: 30px;
  }
}

.contact_footer-text {
  font-size: 16px;
  line-height: 1;
}

.contact_footer_text {
  display: flex;
  margin-top: 40px;
  font-weight: bold;
}

.wpcf7-form-control-wrap {
  display: block;
}

span.wpcf7-list-item {
  position: relative;
  display: block;
  margin: 0;
}

@media screen and (max-width: 767px) {
  span.wpcf7-list-item {
    margin: 0;
  }
}

.wpcf7-list-item-label {
  position: relative;
}

input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.wpcf7-list-item-label::before {
  content: "";
  border: 2px solid #b5b5b5;
  border-radius: 2px;
  display: inline-block;
  top: -2px;
  left: 0;
  width: 17px;
  height: 17px;
  cursor: pointer;
  position: relative;
  margin-right: 12px;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .wpcf7-list-item-label::before {
    margin-right: 7px;
    width: 14px;
    height: 14px;
  }
}

input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  /*チェックアイコン*/
  position: absolute;
  content: "";
  width: 8px;
  height: 15px;
  border: 2px solid #28914E;
  border-top: 0;
  border-left: 0;
  transform: rotate(40deg);
  top: -4px;
  left: 6px;
  cursor: pointer;
  transition: opacity 0.3s ease 0s;
}

@media screen and (max-width: 767px) {
  input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
    left: 5px;
    top: -4px;
    width: 7px;
    height: 13px;
  }
}

.contact_privacy {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .contact_privacy {
    margin-top: 25px;
  }
}

.contact_privacy a {
  color: #2460C1;
  text-decoration: underline;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
}

.contact_privacy_link {
  margin-top: 10px;
  font-size: 14px;
  font-size: 0.875rem;
}

.contact_privacy_link a {
  color: #0B3E8F;
  text-decoration: underline;
  padding-bottom: 2px;
}

.contact_footer_submit {
  margin-top: 50px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .contact_footer_submit {
    margin-top: 40px;
  }
}

.contact_link {
  position: relative;
  margin: auto;
}

.wpcf7 input[type="submit"] {
  cursor: pointer;
  display: block;
  margin: auto;
  width: 420px;
  padding: 12px 0;
  background-color: #28914E;
  text-align: center;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .wpcf7 input[type="submit"] {
    width: 300px;
  }
}

.attend-box {
  margin: 0 auto;
  margin-top: 40px;
  width: 86.5%;
  height: 205px;
  overflow-y: scroll;
  text-align: left;
  padding: 30px 35px;
  padding-top: 0;
  border: 1px solid #b5b5b5;
}

@media screen and (max-width: 767px) {
  .attend-box {
    padding: 15px 18px;
    padding-top: 0;
    width: 95%;
    margin-top: 10px;
  }
}

.attend-box p {
  font-size: 14px;
  line-height: 18px;
  color: #333333;
}

@media screen and (max-width: 767px) {
  .attend-box p {
    font-size: 12px;
  }
}

#scroll::-webkit-scrollbar {
  width: 20px;
}

#scroll::-webkit-scrollbar-track {
  background: #f2f2f2;
  border-left: solid 1px #ececec;
}

#scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
  box-shadow: inset 0 0 0 2px #fff;
  border: 3px solid #f2f2f2;
}

.contact_radio {
  margin-bottom: 5px;
}

.wpcf7-radio .wpcf7-list-item {
  display: block;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .wpcf7-radio .wpcf7-list-item {
    margin-left: 0;
  }
}

.contact_radio_wrap {
  margin-top: -5px;
}

.contact_radio_wrap_top {
  margin-top: -35px;
}

@media screen and (max-width: 767px) {
  .contact_radio_wrap_top {
    margin-top: -20px;
  }
}

/* tel
================================*/
.contact_tel {
  background: url(../img/contact/tel_bg.png) center center/cover no-repeat;
  padding: 200px 0;
}

@media screen and (max-width: 767px) {
  .contact_tel {
    padding: 120px 0;
  }
}

@media screen and (max-width: 560px) {
  .contact_tel {
    padding: 80px 0;
  }
}

.contact_body {
  margin: auto;
  max-width: 680px;
}

.contact_tel_title {
  text-align: center;
}

.contact_tel_title h2 {
  font-size: 47px;
  font-size: 2.9375rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

@media screen and (max-width: 1279px) {
  .contact_tel_title h2 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 1023px) {
  .contact_tel_title h2 {
    font-size: 38px;
    font-size: 2.375rem;
  }
}

@media screen and (max-width: 767px) {
  .contact_tel_title h2 {
    font-size: 34px;
    font-size: 2.125rem;
  }
}

@media screen and (max-width: 560px) {
  .contact_tel_title h2 {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

.contact_tel_wrap {
  margin-top: 0px;
  text-align: center;
}

.contact_tel_wrap a {
  font-family: "Oswald", sans-serif;
  font-size: 100px;
  font-size: 6.25rem;
  font-weight: 400;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  line-height: 1;
}

@media screen and (max-width: 1279px) {
  .contact_tel_wrap a {
    font-size: 80px;
    font-size: 5rem;
  }
}

@media screen and (max-width: 1023px) {
  .contact_tel_wrap a {
    font-size: 70px;
    font-size: 4.375rem;
  }
}

@media screen and (max-width: 767px) {
  .contact_tel_wrap a {
    font-size: 58px;
    font-size: 3.625rem;
  }
}

@media screen and (max-width: 560px) {
  .contact_tel_wrap a {
    font-size: 55px;
    font-size: 3.4375rem;
  }
}

.contact_tel_wrap p {
  margin-top: 30px;
  font-weight: bold;
  font-size: 40px;
  font-size: 2.5rem;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  line-height: 1;
}

@media screen and (max-width: 1023px) {
  .contact_tel_wrap p {
    font-size: 35px;
    font-size: 2.1875rem;
  }
}

@media screen and (max-width: 767px) {
  .contact_tel_wrap p {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

@media screen and (max-width: 560px) {
  .contact_tel_wrap p {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

/* recruit
================================*/
.contact_item_input_file {
  display: flex;
}

@media screen and (max-width: 767px) {
  .contact_item_input_file {
    margin-top: 20px;
    flex-direction: column;
    gap: 5px;
  }
}

.contact_item_input_file_bottom {
  font-size: 14px;
  font-size: 0.875rem;
}

@media screen and (max-width: 767px) {
  .contact_item_input_file_bottom {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/* thanks
================================*/
.thanks-btn {
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .thanks-btn {
    margin-top: 60px;
  }
}

.thanks-btn a {
  margin: auto;
}

/*===============================================
# recaptcha
=================================================*/
.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha {
  margin-top: 10px;
  font-size: 12px;
  font-size: 0.75rem;
}

.attend_send {
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: 10px;
  color: #D55454;
}

/*===============================================
# 404
=================================================*/
#content > .inner {
  display: block;
  padding-top: 40px;
  background: url(../img/common/bg03.png) center center/cover no-repeat;
}

.entry-404 {
  padding-bottom: 85px;
  text-align: center;
  margin-top: 160px;
}

.entry-404-head {
  color: #28914E;
  font-family: "Lato", sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 36px;
}

@media screen and (max-width: 767px) {
  .entry-404-head {
    font-size: 45px;
    font-size: 2.8125rem;
  }
}

.entry-404-head span::after {
  content: " ";
}

.entry-404-lead {
  color: #808080;
  font-family: "HiraKakuPro-W6", "ヒラギノ角ゴ Pro W6", "Meiryo", "Meiryo", "Noto Sans Japanese", sans-serif;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
  .entry-404-lead {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.entry-404-lead .m_sp {
  display: none;
}

.entry-404-content {
  color: #808080;
}

.entry-404-btn {
  margin-top: 58px;
}

.entry-404-btn a {
  margin: auto;
}

.entry-404-btn .btn {
  background: #ebebeb;
  color: #8d8d8d;
}

.entry-404-btn .btn:hover {
  background: #ccc;
  opacity: 1;
}
/*# sourceMappingURL=style.css.map */