@charset "UTF-8";
/*===========================================================================
変数定義
===========================================================================*/
/*===========================================================================
メディアクエリ
===========================================================================*/
/*===========================================================================
コンテナ
===========================================================================*/
/*===========================================================================
マンガ
===========================================================================*/
/*===========================================================================
ヘッダー
===========================================================================*/
.svg-symbol {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 100vh;
  background-color: #fff;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.header-logo {
  padding: 3.2rem;
  text-align: center;
}

.header-logo__image {
  width: 90%;
}

.header-logo__image .cls-1 {
  fill: #276e44;
}

.header-logo__image .cls-2 {
  fill: #35357d;
}

.header-logo__image .cls-3 {
  fill: #ef2d31;
}

.header-nav {
  padding: 0 2.4rem;
}

.header-menu {
  list-style: none;
}

.header-menu__item a {
  display: block;
  padding: .8rem 1.6rem;
  text-align: center;
}

.header-menu__item a.--disabled {
  pointer-events: none;
}

.header-menu__item a.--disabled img {
  opacity: .5;
}

.header-menu__item:not(:last-of-type) {
  margin-bottom: .8rem;
}

.header-menu__item img {
  width: 100%;
  max-width: 100%;
  margin-bottom: .8rem;
}

.header-menu__item p {
  font-size: 1.4rem;
  font-weight: 700;
  color: #296b43;
}

.header-menu__item span {
  display: block;
  color: #333;
  font-size: 1.0rem;
}

.header-bars {
  padding: 2.4rem;
  position: relative;
  z-index: 1001;
  display: none;
}

.header-bars__trigger {
  position: relative;
  width: 30px;
  height: 22px;
  cursor: pointer;
}

.header-bars__trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #296b43;
}

.header-bars__trigger span:nth-of-type(1) {
  top: 0;
  -webkit-animation: menu-bar01 .75s forwards;
          animation: menu-bar01 .75s forwards;
}

.header-bars__trigger span:nth-of-type(2) {
  top: 10px;
  -webkit-transition: all .25s .25s;
  transition: all .25s .25s;
  opacity: 1;
}

.header-bars__trigger span:nth-of-type(3) {
  top: 20px;
  -webkit-animation: menu-bar03 .75s forwards;
          animation: menu-bar03 .75s forwards;
}

.--top .header-bars__trigger span {
  background-color: #296b43;
}

.--open .header-bars__trigger span {
  background-color: #fff;
}

.--open .header-bars__trigger span:nth-of-type(1) {
  -webkit-animation: active-menu-bar01 .75s forwards;
          animation: active-menu-bar01 .75s forwards;
}

.--open .header-bars__trigger span:nth-of-type(2) {
  opacity: 0;
}

.--open .header-bars__trigger span:nth-of-type(3) {
  -webkit-animation: active-menu-bar03 .75s forwards;
          animation: active-menu-bar03 .75s forwards;
}

.--scroll .header-bars__trigger span {
  background-color: #296b43;
}

.--open.--scroll .header-bars__trigger span {
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .header .sp {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .header {
    width: 160px;
  }
  .header-logo {
    padding: 3.2rem 1.6rem;
  }
  .header-menu__item a {
    padding: .8rem;
  }
  .header-menu__item p {
    font-size: 1.2rem;
  }
  .header-menu__item span {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .header {
    position: -webkit-sticky;
    position: sticky;
    background: rgba(255, 255, 255, 0.7);
    width: 100%;
    height: unset;
    -webkit-box-shadow: none;
            box-shadow: none;
    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-transition: .3s;
    transition: .3s;
  }
  .header-logo {
    max-width: 100px;
    padding: 1.6rem;
    margin-right: auto;
    -webkit-transition: .3s;
    transition: .3s;
  }
  .header-nav {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s ease-in;
    transition: opacity .3s ease-in;
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    background: #296b43;
    top: 0;
    left: 0;
    padding: 0;
    padding-top: 90px;
  }
  .header-menu {
    display: none;
  }
  .header-bars {
    display: block;
    -webkit-transition: .3s;
    transition: .3s;
  }
  .header.--scroll {
    opacity: 0;
    visibility: hidden;
  }
  .--scroll .header-logo,
  .--scroll .header-bars {
    opacity: 0;
    visibility: hidden;
  }
  .--open .header-logo {
    position: relative;
    z-index: 1001;
  }
  .--open .header-logo__image .cls-1,
  .--open .header-logo__image .cls-2,
  .--open .header-logo__image .cls-3 {
    fill: #fff;
  }
  .--open .header-nav {
    visibility: visible;
    opacity: 1;
  }
  .--open .header-menu {
    display: block;
    border-top: 1px solid #fff;
  }
  .--open .header-menu__item {
    border-bottom: 1px solid #fff;
  }
  .--open .header-menu__item a {
    padding: 1.6rem;
    color: #fff;
  }
  .--open .header-menu__item p {
    color: #fff;
    text-align: left;
  }
  .--open .header-menu__item p span {
    display: none;
  }
  .--open .header-menu__item img {
    display: none;
  }
  .header.--open.--scroll,
  .--open.--scroll .header-logo,
  .--open.--scroll .header-bars {
    opacity: 1;
    visibility: visible;
  }
}

/*===========================================================================
フッター
===========================================================================*/
.footer {
  width: calc(100% - $width--side);
  margin-left: 220px;
  position: relative;
  z-index: 0;
  padding: 6.4rem 0 3.2rem;
}

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

.footer-logo img {
  display: block;
  width: 120px;
  margin: 0 auto;
}

.footer-menu {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 2.4rem;
  list-style: none;
}

.footer-menu__item a {
  display: block;
  padding: .8rem 1.6rem;
  text-align: center;
  text-decoration: none;
  -webkit-transition: .3s;
  transition: .3s;
}

.footer-menu__item a:hover {
  opacity: .6;
}

.footer-menu__item:not(:last-of-type) {
  margin-bottom: .8rem;
}

.footer-menu__item img {
  max-height: 50px;
  margin-bottom: .8rem;
}

.footer-menu__item p {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.footer-menu__item span {
  display: block;
  color: #fff;
  font-size: 1.0rem;
}

.footer-copyright {
  text-align: center;
  margin-top: 2.4rem;
}

.footer-copyright small {
  font-size: 1.2rem;
  opacity: .8;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .footer {
    width: calc(100% - $width--side-lg);
    margin-left: 160px;
  }
}

@media screen and (max-width: 767px) {
  .footer {
    width: 100%;
    margin-left: unset;
  }
  .footer-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    grid-gap: unset;
  }
  .footer-menu__item {
    -webkit-flex-basis: calc((100% - 3.2rem) / 2);
        -ms-flex-preferred-size: calc((100% - 3.2rem) / 2);
            flex-basis: calc((100% - 3.2rem) / 2);
  }
  .footer-menu__item:nth-of-type(odd) {
    margin-right: 1.6rem;
  }
  .footer-menu__item:nth-of-type(even) {
    margin-left: 1.6rem;
  }
  .footer-menu__item:not(:last-of-type) {
    margin-bottom: 3.2rem;
  }
  .footer-menu__item a {
    padding: 0;
  }
  .footer-menu__item img {
    max-height: 35px;
  }
  .footer-copyright {
    margin-top: 1.6rem;
  }
}

.fixedbtn {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s;
  transition: .3s;
}

.fixedbtn__item {
  display: block;
  padding: 1.6rem;
  text-align: center;
  color: #fff;
  background-color: #00B900;
}

.fixedbtn.--active {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 768px) {
  .fixedbtn {
    display: none;
  }
}

/*===========================================================================
メイン
===========================================================================*/
.main {
  width: calc(100% - $width--side);
  margin-left: 220px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .main {
    width: calc(100% - $width--side-lg);
    margin-left: 160px;
  }
}

@media screen and (max-width: 767px) {
  .main {
    width: 100%;
    margin-left: unset;
  }
}

/*===========================================================================
トップページ
===========================================================================*/
/*======================================================
お知らせ
======================================================*/
.news-block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr auto;
      grid-template-columns: auto 1fr auto;
  grid-gap: 1.6rem;
  background: #eee;
  padding: .8rem;
  font-size: 1.2rem;
}

.news-block__ttl span {
  background: #fff;
  padding: .4rem 1.2rem;
  display: block;
  border-radius: 50px;
}

.news-block-detail {
  padding: .4rem 0;
}

.news-block-detail a {
  display: block;
}

.news-block-detail a:hover {
  text-decoration: underline;
}

.news-block-detail time {
  display: inline-block;
  margin-right: 1.6rem;
}

.news-block-archive {
  padding: .4rem 0;
}

.news-block-archive a {
  text-decoration: underline;
}

/*======================================================
メインビジュアル
======================================================*/
.mainvisual {
  position: relative;
  z-index: 0;
  background-color: #296b43;
}

.mainvisual-section01 {
  background-color: #fff;
  background-image: url("../images/mv-bg.svg");
  background-repeat: repeat-x;
  background-position: top;
  position: relative;
}

.mainvisual-section01:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #296b43;
  -webkit-clip-path: polygon(0 70%, 100% 100%, 100% 100%, 0% 100%);
          clip-path: polygon(0 70%, 100% 100%, 100% 100%, 0% 100%);
  top: 0;
  left: 0;
  z-index: 0;
}

.mainvisual-section01 > .container {
  position: relative;
}

.mainvisual-section01__fukidashi {
  position: absolute;
  right: 30%;
}

.mainvisual-section01__image img {
  display: block;
  margin-left: auto;
}

.mainvisual-section01__txt {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 2;
}

.mainvisual-section01__txt img {
  display: block;
  width: 400px;
}

.mainvisual-section02 {
  color: #ccc;
  position: relative;
  z-index: 0;
}

.mainvisual-section02__txt {
  text-align: center;
}

.mainvisual-section02__txt p {
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
}

.mainvisual-section02__image {
  margin-top: 3.2rem;
  text-align: center;
  padding-bottom: 6.4rem;
}

.mainvisual-section03 {
  background-color: #fff;
  background-image: url("../images/mv-image03.png");
  background-size: cover;
  background-position: top;
  height: calc(100vw * .65);
  max-height: 1200px;
  margin-top: -300px;
  position: relative;
  z-index: -1;
  -webkit-clip-path: polygon(0% 0%, 50% 200px, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 50% 200px, 100% 0%, 100% 100%, 0% 100%);
}

.mainvisual-section03 > .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
  height: 100%;
}

.mainvisual-section03__image {
  margin-top: auto;
  width: 100%;
  text-align: center;
  padding-bottom: 6.4rem;
}

.mainvisual-section03__image img {
  width: 100%;
  max-width: 600px;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .mainvisual-section01__image img {
    max-width: 50%;
  }
  .mainvisual-section01__fukidashi {
    right: 40%;
  }
  .mainvisual-section03 {
    height: 900px;
  }
}

@media screen and (max-width: 767px) {
  .mainvisual-section01__fukidashi {
    top: 10%;
    right: unset;
    left: 10%;
  }
  .mainvisual-section01__fukidashi img {
    max-width: 180px;
  }
  .mainvisual-section01__image {
    padding-top: 8.4rem;
  }
  .mainvisual-section01__image img {
    max-width: 70%;
  }
  .mainvisual-section01__txt {
    top: 60%;
  }
  .mainvisual-section01__txt img {
    width: 230px;
  }
  .mainvisual-section02__txt p {
    font-size: 2.2rem;
  }
  .mainvisual-section02__image img {
    max-width: 100%;
  }
  .mainvisual-section03 {
    height: 450px;
    background-position: bottom;
    margin-top: -150px;
    -webkit-clip-path: polygon(0% 0%, 50% 60px, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 50% 60px, 100% 0%, 100% 100%, 0% 100%);
  }
  .mainvisual-section03__image img {
    max-width: 80%;
  }
}

/*======================================================
マンガ
======================================================*/
.manga {
  padding: 8rem 0;
}

.manga-inner {
  max-width: 880px;
  margin: 0 auto;
}

@media screen and (max-width: 1199px) {
  .manga-inner {
    margin: 0 2.4rem;
  }
}

.manga-inner img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
}

.manga-inner img:not(:first-of-type) {
  margin-top: 3.2rem;
}

.manga-03 img {
  max-width: 60%;
  margin: 0 auto 0 0;
}

.manga-03-image img {
  max-width: 80%;
  margin: -11.2rem 0 0 auto;
}

.manga-05 .flow__ttl {
  background-size: auto auto;
  background-color: rgba(255, 255, 255, 0);
  background-image: -webkit-repeating-linear-gradient(45deg, transparent, transparent 10px, #a9c4b4 10px, #a9c4b4 20px);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, #a9c4b4 10px, #a9c4b4 20px);
  padding: .8rem 1.6rem;
  display: inline-block;
  margin-bottom: 1.6rem;
}

.manga-05 .flow__ttl img {
  width: auto;
  height: 3.2rem;
  display: inline-block;
  margin-right: auto;
}

.manga-06 img {
  max-width: 60%;
}

@media screen and (max-width: 1023px) {
  .manga-03-image img {
    margin-right: -2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .manga .sp-none {
    display: none;
  }
  .manga-03 img {
    max-width: 80%;
  }
  .manga-03-image img {
    max-width: 100%;
    margin-top: 0;
  }
  .manga-06 img {
    max-width: 100%;
  }
}

/*======================================================
H.O.Sについて
======================================================*/
.about {
  position: relative;
}

.about:before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #296b43;
  -webkit-clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
  -webkit-animation: slideBg;
          animation: slideBg;
}

.about > .container {
  position: relative;
  padding-top: 8.4rem;
  padding-bottom: 8.4rem;
}

.about__point {
  position: absolute;
  right: 0;
  top: -4.8rem;
}

.about__point img {
  width: 400px;
}

.about__ttl {
  margin-top: 4.8rem;
  background-size: auto auto;
  background-color: rgba(255, 255, 255, 0);
  background-image: -webkit-repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.17) 10px, rgba(255, 255, 255, 0.17) 20px);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.17) 10px, rgba(255, 255, 255, 0.17) 20px);
  padding: .8rem 1.6rem;
  display: inline-block;
}

.about__ttl img {
  height: 3.2rem;
  display: inline-block;
  margin-right: auto;
}

.about__txt {
  color: #fff;
  max-width: 60%;
  margin-top: 1.6rem;
}

.about__txt p {
  line-height: 2;
}

.about__txt p + p {
  margin-top: 1.6rem;
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .about__point img {
    width: 300px;
  }
  .about__txt {
    max-width: 63%;
  }
}

@media screen and (max-width: 1023px) {
  .about > .container {
    padding-top: 2.4rem;
    padding-bottom: 4.8rem;
  }
  .about__point {
    position: static;
    margin-top: -4.8rem;
  }
  .about__point img {
    width: 300px;
    margin: 0 auto;
    display: block;
  }
  .about__ttl {
    margin-top: 0;
  }
  .about__txt {
    max-width: 100%;
  }
}

/*======================================================
見積もり
======================================================*/
.estimate {
  position: relative;
  margin-top: -16rem;
}

.estimate:before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #296b43;
  -webkit-clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
}

.estimate > .container {
  position: relative;
  padding-top: 8.4rem;
  padding-bottom: 8.4rem;
}

.estimate__point {
  position: absolute;
  right: 0;
  top: -4.8rem;
}

.estimate__point img {
  width: 400px;
}

.estimate__ttl {
  margin-top: 4.8rem;
  background-size: auto auto;
  background-color: rgba(255, 255, 255, 0);
  background-image: -webkit-repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.17) 10px, rgba(255, 255, 255, 0.17) 20px);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.17) 10px, rgba(255, 255, 255, 0.17) 20px);
  padding: .8rem 1.6rem;
  display: inline-block;
}

.estimate__ttl img {
  height: 3.2rem;
  display: inline-block;
  margin-right: auto;
}

.estimate__txt {
  color: #fff;
  max-width: 60%;
  margin-top: 1.6rem;
}

.estimate__txt p {
  line-height: 2;
}

.estimate__txt p + p {
  margin-top: 1.6rem;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .estimate__point img {
    width: 300px;
  }
  .estimate__txt {
    max-width: 63%;
  }
}

@media screen and (max-width: 1023px) {
  .estimate:before {
    -webkit-clip-path: polygon(0 0, 100% 15%, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 15%, 100% 100%, 0% 100%);
  }
  .estimate > .container {
    padding-top: 2.4rem;
    padding-bottom: 4.8rem;
  }
  .estimate__point {
    position: static;
    margin-top: -4.8rem;
  }
  .estimate__point img {
    width: 300px;
    margin: 0 auto;
    display: block;
  }
  .estimate__ttl {
    margin-top: 0;
  }
  .estimate__txt {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .estimate {
    margin-top: -12.4rem;
  }
  .estimate:before {
    -webkit-clip-path: polygon(0 10%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0 10%, 100% 0%, 100% 100%, 0% 100%);
  }
}

/*======================================================
特徴
======================================================*/
.price {
  position: relative;
}

.price:before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #296b43;
  -webkit-clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
}

.price > .container {
  position: relative;
  padding-top: 8.4rem;
  padding-bottom: 8.4rem;
}

.price__point {
  position: absolute;
  right: 0;
  top: -4.8rem;
}

.price__point img {
  width: 400px;
}

.price__ttl {
  margin-top: 4.8rem;
  background-size: auto auto;
  background-color: rgba(255, 255, 255, 0);
  background-image: -webkit-repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.17) 10px, rgba(255, 255, 255, 0.17) 20px);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.17) 10px, rgba(255, 255, 255, 0.17) 20px);
  padding: .8rem 1.6rem;
  display: inline-block;
}

.price__ttl img {
  height: 3.2rem;
  display: inline-block;
  margin-right: auto;
}

.price__txt {
  color: #fff;
  max-width: 60%;
  margin-top: 1.6rem;
}

.price__txt p {
  line-height: 2;
}

.price__txt p + p {
  margin-top: 1.6rem;
}

.price > .container:nth-of-type(2) .price__point {
  right: unset;
  left: 0;
}

.price > .container:nth-of-type(2) .price__txt {
  margin-left: auto;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .price:before {
    -webkit-clip-path: polygon(0 0, 100% 15%, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 15%, 100% 100%, 0% 100%);
  }
  .price__point img {
    width: 300px;
  }
  .price > .container:nth-of-type(2) .price__point {
    top: 0;
  }
  .price__txt {
    max-width: 63%;
  }
}

@media screen and (max-width: 1023px) {
  .price > .container {
    padding-top: 2.4rem;
    padding-bottom: 4.8rem;
  }
  .price__point {
    position: static;
    margin-top: -4.8rem;
  }
  .price__point img {
    width: 300px;
    margin: 0 auto;
    display: block;
  }
  .price__ttl {
    margin-top: 0;
  }
  .price__txt {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .price:before {
    -webkit-clip-path: polygon(0 0, 100% 100px, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 100px, 100% 100%, 0% 100%);
  }
}

/*======================================================
スタッフ教育
======================================================*/
.staff {
  position: relative;
}

.staff:before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #296b43;
  -webkit-clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
}

.staff > .container {
  position: relative;
  padding-top: 12.8rem;
  padding-bottom: 12.8rem;
}

.staff__point {
  position: absolute;
  right: 0;
  top: -4.8rem;
}

.staff__point img {
  width: 400px;
}

.staff__txt {
  color: #fff;
  max-width: 60%;
  margin-top: 1.6rem;
}

.staff__txt p {
  line-height: 2;
}

.staff__txt p + p {
  margin-top: 1.6rem;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .staff__point img {
    width: 300px;
  }
  .staff__txt {
    max-width: 63%;
  }
}

@media screen and (max-width: 1023px) {
  .staff > .container {
    padding-top: 2.4rem;
    padding-bottom: 4.8rem;
  }
  .staff__point {
    position: static;
    margin-top: -4.8rem;
  }
  .staff__point img {
    width: 300px;
    margin: 0 auto;
    display: block;
  }
  .staff__ttl {
    margin-top: 0;
  }
  .staff__txt {
    max-width: 100%;
  }
}

/*======================================================
施工後
======================================================*/
.after {
  min-height: 1000px;
  background-image: url("../images/after-bg.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.after__fukidashi {
  padding-top: 4.8rem;
  position: relative;
  z-index: 1;
}

.after__fukidashi img {
  width: 50%;
  display: block;
  margin: 0 auto;
}

.after__image {
  margin-top: -8.4rem;
  position: relative;
  z-index: 0;
}

.after__image img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .after {
    min-height: unset;
  }
}

@media screen and (max-width: 767px) {
  .after {
    min-height: unset;
  }
  .after__fukidashi img {
    width: 90%;
  }
  .after__image {
    margin-top: -2.4rem;
  }
}

/*======================================================
対応幅
======================================================*/
.range {
  position: relative;
}

.range:before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #296b43;
  -webkit-clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
}

.range > .container {
  position: relative;
  padding-top: 12.8rem;
  padding-bottom: 12.8rem;
}

.range__point {
  position: absolute;
  right: 0;
  top: -4.8rem;
}

.range__point img {
  width: 400px;
}

.range__txt {
  color: #fff;
  max-width: 60%;
  margin-top: 1.6rem;
}

.range__txt p {
  line-height: 2;
}

.range__txt p + p {
  margin-top: 1.6rem;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .range__point img {
    width: 300px;
  }
  .range__txt {
    max-width: 63%;
  }
}

@media screen and (max-width: 1023px) {
  .range > .container {
    padding-top: 2.4rem;
    padding-bottom: 4.8rem;
  }
  .range__point {
    position: static;
    margin-top: -4.8rem;
  }
  .range__point img {
    width: 300px;
    margin: 0 auto;
    display: block;
  }
  .range__ttl {
    margin-top: 0;
  }
  .range__txt {
    max-width: 100%;
  }
}

/*======================================================
会社概要
======================================================*/
.company {
  padding: 8.4rem 0;
}

.company__ttl img {
  width: 50%;
  max-width: 400px;
  display: block;
  margin: 0 auto;
}

.company__table {
  max-width: 800px;
  width: 100%;
  margin: 3.2rem auto 0;
  border-top: 1px solid #333;
}

.company__table th {
  font-weight: 700;
}

.company__table td {
  border-bottom: 1px solid #333;
}

.company__table th, .company__table td {
  padding: 1.6rem;
  border-bottom: 1px solid #333;
}

@media screen and (max-width: 767px) {
  .company__ttl img {
    width: 90%;
  }
  .company__table th, .company__table td {
    display: block;
  }
  .company__table th {
    border-bottom: 0;
    padding-bottom: 0;
    padding-left: 0;
  }
}

/*======================================================
googlemap
======================================================*/
.map iframe {
  width: 100%;
}

/*======================================================
googlemap
======================================================*/
.line {
  margin-top: 4.8rem;
}

.line img {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  display: block;
  -webkit-transition: .3s;
  transition: .3s;
}

.line a:hover img {
  opacity: .7;
}

/*======================================================
cta
======================================================*/
.cta {
  padding: 11.2rem 0 4.8rem;
}

.cta > .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-gap: 3.2rem;
}

.cta-inner {
  border: 2px solid #333;
  padding: 1.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.cta-inner__ttl {
  margin: -8.4rem auto 0;
}

.cta-inner__ttl img {
  width: 100%;
  max-width: 300px;
  display: block;
  margin: 0 auto;
}

.cta-inner__txt {
  margin-top: 1.6rem;
  text-align: center;
}

.cta-inner__btn {
  margin-top: auto;
  padding-top: 1.6rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .cta > .container {
    display: block;
  }
  .cta-inner:nth-of-type(2) {
    margin-top: 8.4rem;
  }
}

/*======================================================
オープニングアニメーション
======================================================*/
.opening {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  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: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-animation: openingClose forwards 2s 2s;
          animation: openingClose forwards 2s 2s;
}

.opening__logo svg {
  width: 200px;
}

@-webkit-keyframes openingClose {
  0% {
    opacity: 1;
    visibility: visible;
  }
  50% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes openingClose {
  0% {
    opacity: 1;
    visibility: visible;
  }
  50% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

/***************************************************
 * Generated by SVG Artista on 2/24/2021, 7:30:25 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/
@-webkit-keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 1105.8648681640625px;
    stroke-dasharray: 1105.8648681640625px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 1105.8648681640625px;
    stroke-dasharray: 1105.8648681640625px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #35357d;
  }
}

@keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #35357d;
  }
}

.svg-elem-1 {
  -webkit-animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both, animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
  animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both, animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
}

@-webkit-keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 1100.910400390625px;
    stroke-dasharray: 1100.910400390625px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 1100.910400390625px;
    stroke-dasharray: 1100.910400390625px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #35357d;
  }
}

@keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #35357d;
  }
}

.svg-elem-2 {
  -webkit-animation: animate-svg-stroke-2 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s both, animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
  animation: animate-svg-stroke-2 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s both, animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
}

@-webkit-keyframes animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 928.990478515625px;
    stroke-dasharray: 928.990478515625px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 928.990478515625px;
    stroke-dasharray: 928.990478515625px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #276e44;
  }
}

@keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #276e44;
  }
}

.svg-elem-3 {
  -webkit-animation: animate-svg-stroke-3 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s both, animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
  animation: animate-svg-stroke-3 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s both, animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}

@-webkit-keyframes animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 1856.53173828125px;
    stroke-dasharray: 1856.53173828125px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 1856.53173828125px;
    stroke-dasharray: 1856.53173828125px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #276e44;
  }
}

@keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #276e44;
  }
}

.svg-elem-4 {
  -webkit-animation: animate-svg-stroke-4 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s both, animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
  animation: animate-svg-stroke-4 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s both, animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
}

@-webkit-keyframes animate-svg-stroke-5 {
  0% {
    stroke-dashoffset: 961.1581420898438px;
    stroke-dasharray: 961.1581420898438px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes animate-svg-stroke-5 {
  0% {
    stroke-dashoffset: 961.1581420898438px;
    stroke-dasharray: 961.1581420898438px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #276e44;
  }
}

@keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #276e44;
  }
}

.svg-elem-5 {
  -webkit-animation: animate-svg-stroke-5 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s both, animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both;
  animation: animate-svg-stroke-5 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s both, animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both;
}

@-webkit-keyframes animate-svg-stroke-6 {
  0% {
    stroke-dashoffset: 1920.3046875px;
    stroke-dasharray: 1920.3046875px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes animate-svg-stroke-6 {
  0% {
    stroke-dashoffset: 1920.3046875px;
    stroke-dasharray: 1920.3046875px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #276e44;
  }
}

@keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #276e44;
  }
}

.svg-elem-6 {
  -webkit-animation: animate-svg-stroke-6 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both, animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
  animation: animate-svg-stroke-6 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both, animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
}

@-webkit-keyframes animate-svg-stroke-7 {
  0% {
    stroke-dashoffset: 876.1328125px;
    stroke-dasharray: 876.1328125px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes animate-svg-stroke-7 {
  0% {
    stroke-dashoffset: 876.1328125px;
    stroke-dasharray: 876.1328125px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #276e44;
  }
}

@keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #276e44;
  }
}

.svg-elem-7 {
  -webkit-animation: animate-svg-stroke-7 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s both, animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s both;
  animation: animate-svg-stroke-7 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s both, animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s both;
}

@-webkit-keyframes animate-svg-stroke-8 {
  0% {
    stroke-dashoffset: 1751.9246826171875px;
    stroke-dasharray: 1751.9246826171875px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes animate-svg-stroke-8 {
  0% {
    stroke-dashoffset: 1751.9246826171875px;
    stroke-dasharray: 1751.9246826171875px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #276e44;
  }
}

@keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #276e44;
  }
}

.svg-elem-8 {
  -webkit-animation: animate-svg-stroke-8 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s both, animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
  animation: animate-svg-stroke-8 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s both, animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
}

@-webkit-keyframes animate-svg-stroke-9 {
  0% {
    stroke-dashoffset: 49.36455154418945px;
    stroke-dasharray: 49.36455154418945px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes animate-svg-stroke-9 {
  0% {
    stroke-dashoffset: 49.36455154418945px;
    stroke-dasharray: 49.36455154418945px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #276e44;
  }
}

@keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #276e44;
  }
}

.svg-elem-9 {
  -webkit-animation: animate-svg-stroke-9 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s both, animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
  animation: animate-svg-stroke-9 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s both, animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
}

@-webkit-keyframes animate-svg-stroke-10 {
  0% {
    stroke-dashoffset: 96.70634460449219px;
    stroke-dasharray: 96.70634460449219px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes animate-svg-stroke-10 {
  0% {
    stroke-dashoffset: 96.70634460449219px;
    stroke-dasharray: 96.70634460449219px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #276e44;
  }
}

@keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #276e44;
  }
}

.svg-elem-10 {
  -webkit-animation: animate-svg-stroke-10 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.08s both, animate-svg-fill-10 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s both;
  animation: animate-svg-stroke-10 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.08s both, animate-svg-fill-10 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s both;
}

@-webkit-keyframes animate-svg-stroke-11 {
  0% {
    stroke-dashoffset: 49.16220474243164px;
    stroke-dasharray: 49.16220474243164px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes animate-svg-stroke-11 {
  0% {
    stroke-dashoffset: 49.16220474243164px;
    stroke-dasharray: 49.16220474243164px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes animate-svg-fill-11 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #276e44;
  }
}

@keyframes animate-svg-fill-11 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #276e44;
  }
}

.svg-elem-11 {
  -webkit-animation: animate-svg-stroke-11 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both, animate-svg-fill-11 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both;
  animation: animate-svg-stroke-11 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both, animate-svg-fill-11 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both;
}

@-webkit-keyframes animate-svg-stroke-12 {
  0% {
    stroke-dashoffset: 96.25909423828125px;
    stroke-dasharray: 96.25909423828125px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes animate-svg-stroke-12 {
  0% {
    stroke-dashoffset: 96.25909423828125px;
    stroke-dasharray: 96.25909423828125px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes animate-svg-fill-12 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #276e44;
  }
}

@keyframes animate-svg-fill-12 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #276e44;
  }
}

.svg-elem-12 {
  -webkit-animation: animate-svg-stroke-12 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.32s both, animate-svg-fill-12 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9s both;
  animation: animate-svg-stroke-12 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.32s both, animate-svg-fill-12 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9s both;
}

@-webkit-keyframes animate-svg-stroke-13 {
  0% {
    stroke-dashoffset: 254.1206817626953px;
    stroke-dasharray: 254.1206817626953px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes animate-svg-stroke-13 {
  0% {
    stroke-dashoffset: 254.1206817626953px;
    stroke-dasharray: 254.1206817626953px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes animate-svg-fill-13 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #ef2d31;
  }
}

@keyframes animate-svg-fill-13 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #ef2d31;
  }
}

.svg-elem-13 {
  -webkit-animation: animate-svg-stroke-13 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.44s both, animate-svg-fill-13 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-stroke-13 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.44s both, animate-svg-fill-13 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

/*===========================================================================
サイドナビ
===========================================================================*/
.side {
  position: fixed;
  top: 10%;
  right: 0;
}

.side__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
      grid-template-columns: auto 1fr;
  border-radius: 10px 0 0 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-transition: 1s ease;
  transition: 1s ease;
  background: #fff;
}

.side__item + .side__item {
  margin-top: 1.6rem;
}

.side__item--line {
  background-color: #00B900;
}

.side__item--tel {
  background-color: #35357D;
}

.side__item--mail {
  background-color: #276E44;
}

.side__icon {
  padding: 1.6rem .8rem;
  width: 40px;
  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: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.side__icon i {
  color: #fff;
  line-height: 0;
}

.side__body {
  padding: 1.6rem;
  background: #fff;
  font-size: 1.2rem;
  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;
}

.side__item--line .side__icon {
  width: 80px;
  padding: 3.2rem 1.6rem;
}

.side__item--line .side__icon i {
  font-size: 3.8rem;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .side {
    display: none;
  }
}

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

/*===========================================================================
中ページ
===========================================================================*/
/*======================================================
タイトル
======================================================*/
.title {
  background: #CCEAE3;
  background-size: cover;
  background-position: center bottom;
  height: 400px;
  position: relative;
  z-index: 0;
}

.title:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #333;
  opacity: .7;
  z-index: -1;
}

.title > .container {
  position: relative;
  height: 100%;
}

.title__ttl {
  position: absolute;
  bottom: 6.4rem;
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width: 767px) {
  .title {
    height: 400px;
  }
  .title__ttl {
    max-width: calc(100% - 4.8rem);
    bottom: 3.2rem;
  }
  .title__ttl p:nth-last-of-type(1) {
    font-size: 2.1rem;
  }
}

/*======================================================
パンくず
======================================================*/
.breadcrumb {
  line-height: 1;
  border-bottom: 1px solid #ccc;
  padding: .8rem;
  font-size: 1.2rem;
}

.breadcrumb-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.breadcrumb-list__item {
  padding: .8rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  max-width: 100%;
}

.breadcrumb-list__item:first-of-type {
  padding-left: 0;
}

.breadcrumb-list__item:first-of-type:before {
  content: "\f015";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 0.25rem;
  vertical-align: middle;
}

.breadcrumb-list__item:not(:last-of-type):after {
  content: "\f054";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 1.2rem;
  margin-left: 1.2rem;
  vertical-align: middle;
}

.breadcrumb-list__item.--active span {
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .breadcrumb > .container {
    margin: 0;
  }
  .breadcrumb-list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding-bottom: .5rem;
  }
  .breadcrumb-list__item {
    padding-bottom: 0;
  }
}

/*======================================================
パンくず
======================================================*/
.animate__animated {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.animate__originalFadeIn {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.animate__originalFadeIn.--on {
  -webkit-animation-name: originalFadeIn;
          animation-name: originalFadeIn;
}

.animate__originalScrollIn {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.animate__originalScrollIn.--on {
  -webkit-animation-name: originalScrollIn;
          animation-name: originalScrollIn;
}

.animate__animated.--on {
  visibility: visible;
  opacity: 1;
}

@-webkit-keyframes originalFadeIn {
  from {
    -webkit-transform: translateY(25%);
            transform: translateY(25%);
    opacity: 0;
  }
}

@keyframes originalFadeIn {
  from {
    -webkit-transform: translateY(25%);
            transform: translateY(25%);
    opacity: 0;
  }
}

@-webkit-keyframes originalScrollIn {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 60px) scale(1.1);
            transform: translate(0, 60px) scale(1.1);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
  }
}

@keyframes originalScrollIn {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 60px) scale(1.1);
            transform: translate(0, 60px) scale(1.1);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
  }
}

/*======================================================
お知らせ一覧
======================================================*/
.archive {
  padding: 8rem 0;
}

.archive__ttl {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #296b43;
  position: relative;
}

.archive__ttl:before {
  content: "";
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 28px;
  height: 31px;
  background-image: url("../images/mark-news.svg");
  background-repeat: no-repeat;
  display: block;
}

.archive__ttl span {
  display: block;
  color: #999;
  font-size: 1.4rem;
}

.archive-list {
  margin-top: 4.8rem;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
}

.archive-list__item a {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: max-content 1fr;
      grid-template-columns: -webkit-max-content 1fr;
      grid-template-columns: max-content 1fr;
  grid-gap: 1.6rem;
  position: relative;
  font-size: 1.4rem;
  padding: 1.6rem;
  -webkit-transition: ease .3s;
  transition: ease .3s;
}

.archive-list__item a:after {
  position: absolute;
  top: 50%;
  right: 1.6rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "\f061";
  font-family: "font awesome 5 free";
  font-weight: 900;
  font-size: 1.4rem;
  -webkit-transition: ease .3s;
  transition: ease .3s;
}

.archive-list__item a:hover:after {
  right: 0;
}

.archive-list__item:not(:last-of-type) {
  border-bottom: 1px solid #999;
}

.archive .btn-box {
  text-align: center;
  margin-top: 4.8rem;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .archive-list {
    margin-top: 3.2rem;
  }
  .archive-list__item a {
    display: block;
  }
  .archive-list__item a:after {
    right: 0;
  }
  .archive-list__time {
    font-size: 1.2rem;
  }
}

/*======================================================
ページネーション
======================================================*/
.pagination {
  display: block;
  list-style: none;
  text-align: center;
}

.pagination-box {
  margin-top: 6.4rem;
  text-align: center;
}

.pagination-item {
  display: inline;
  margin: 0 1.6rem;
  border: 1px solid #ccc;
  display: inline-block;
  text-align: center;
  position: relative;
}

.pagination-item.active {
  background: #ccc;
  color: #333;
  padding: .8rem 1.6rem;
}

.pagination-item a {
  display: block;
  padding: .8rem 1.6rem;
  text-decoration: none;
  -webkit-transition: .3s;
  transition: .3s;
}

.pagination-item a:hover {
  background: #296b43;
  color: #fff;
}

.pagination_btn {
  padding: .8rem 1.6rem;
  border: 1px solid #296b43;
  background-color: #fff;
  color: #296b43;
  border-radius: 5px;
  -webkit-transition: .3s;
  transition: .3s;
}

.pagination_btn:hover {
  background-color: #296b43;
  color: #fff;
  cursor: pointer;
}

.pagination_btn:disabled {
  background-color: #296b43;
  color: #fff;
  cursor: default;
}

/*======================================================
お知らせ個別ページ
======================================================*/
.post {
  padding: 8rem 0;
}

.post .container {
  max-width: 800px;
}

.post-body {
  margin-top: 1.6rem;
}

.post-body p {
  line-height: 2;
}

.post-body p + * {
  margin-top: 1.6rem;
}

.post__image img {
  width: 100%;
  max-width: 100%;
}

.post__ttl {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.post__date {
  font-size: 1.4rem;
  margin-bottom: .8rem;
}

.post .btn-box {
  text-align: center;
  margin-top: 4.8rem;
}

.post .btn-box .btn {
  font-size: 1.4rem;
  display: inline-block;
}

.post .btn-box .btn + .btn {
  margin-left: 1.6rem;
}

@media screen and (max-width: 479px) {
  .post__ttl {
    font-size: 2rem;
  }
  .post .btn-box .btn + .btn {
    margin-left: unset;
    margin-top: 1.6rem;
  }
}

/*======================================================
form
======================================================*/
.form {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 4.8rem;
}

.form-block + .form-block {
  margin-top: 1.6rem;
}

.form-block .--required {
  font-size: 1rem;
  background: #c33;
  color: #fff;
  padding: .2rem .4rem;
  margin-left: .4rem;
}

.form-block input[type="text"],
.form-block input[type="email"],
.form-block input[type="tel"],
.form-block textarea {
  display: block;
  width: 100%;
  border: 1px solid #ccc;
  padding: 1.2rem;
  background: #fff;
}

.form-block__body {
  margin-top: .8rem;
}

.form-btn {
  margin-top: 4.8rem;
  text-align: center;
}

.form-btn .btn {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .form-block {
    display: block;
  }
  .form-block__body {
    margin-top: .4rem;
  }
  .form-btn .btn {
    width: 100%;
  }
}

/*======================================================
404
======================================================*/
.error {
  padding: 8rem 0;
  text-align: center;
}

.error__ttl {
  font-size: 2.4rem;
  font-weight: 700;
}

.error__txt {
  margin-top: 3.2rem;
}

.error__txt p + p {
  margin-top: 1.6rem;
}

.error .btn-box {
  margin-top: 3.2rem;
}

/*======================================================
wordpress hack
======================================================*/
.wp-block-image {
  overflow: hidden;
  zoom: 1;
}

.wp-block-image:after {
  content: "";
  display: block;
  clear: both;
}

/*======================================================
recruit
======================================================*/
.recruit-mv {
  position: relative;
  height: 900px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16rem), 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16rem), 0% 100%);
  overflow-x: hidden;
  z-index: 2;
}

.recruit-mv:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../images/recruit/mv-bg.png");
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.recruit-mv:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(41, 107, 67, 0.85);
  z-index: -1;
}

.recruit-mv__chara {
  z-index: 0;
}

.recruit-mv__chara img {
  position: absolute;
  max-width: 100%;
}

.recruit-mv__ttl {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 8rem;
  margin-left: 8rem;
}

@media screen and (max-width: 1199px) {
  .recruit-mv__ttl {
    margin: 0 2.4rem;
  }
}

@media screen and (min-width: 1200px) {
  .recruit-mv__ttl {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }
}

.recruit-mv__ttl img {
  max-width: 98%;
}

.recruit-mv__txt {
  position: absolute;
  top: 2.4rem;
  right: 2.4rem;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
}

@media screen and (max-width: 1549px) {
  .recruit-mv__chara img:nth-of-type(2) {
    width: 550px;
  }
}

@media screen and (min-width: 768px) {
  .recruit-mv__chara img:nth-of-type(1) {
    left: 0;
    bottom: 0;
  }
  .recruit-mv__chara img:nth-of-type(2) {
    right: -8rem;
    bottom: 10rem;
  }
}

@media screen and (max-width: 767px) {
  .recruit-mv__chara img:nth-of-type(2) {
    right: 0rem;
    bottom: 6rem;
  }
}

.recruit-story {
  margin-top: -16rem;
  padding-bottom: 8rem;
  z-index: 3;
  position: relative;
}

.recruit-story:before {
  content: "";
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 16rem, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 16rem, 100% 0, 100% 100%, 0% 100%);
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  background-image: url("../images/recruit/story-bg.png");
  background-repeat: repeat;
  z-index: 2;
}

.recruit-story > .container {
  position: relative;
  z-index: 4;
}

.recruit-story__ttl {
  padding-top: 4rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.recruit-story__ttl img {
  width: 300px;
}

.recruit-story__txt {
  margin-top: 4.8rem;
}

.recruit-story__txt p {
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
}

.recruit-story__txt p + p {
  margin-top: 1.6rem;
}

.recruit-story__txt em {
  font-style: normal;
  font-size: 1.5em;
}

@media screen and (max-width: 767px) {
  .recruit-story__txt p {
    font-size: 1.4rem;
  }
}

.recruit-story__image {
  margin-top: 4.8rem;
  text-align: center;
}

.recruit-story__image img {
  max-width: 600px;
}

.recruit-person {
  background-color: #BF0027;
  background-image: url("../images/recruit/person-bg.png");
  padding: 8rem 0 20rem;
}

.recruit-person img {
  width: 100%;
  max-width: 100%;
}

.recruit-epi01 {
  position: relative;
  z-index: 1;
  min-height: 1000px;
}

.recruit-epi01:before {
  content: "";
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 16rem, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 16rem, 100% 0, 100% 100%, 0% 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.recruit-epi01:after {
  content: "";
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 16rem, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 16rem, 100% 0, 100% 100%, 0% 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.recruit-epi01 > .container {
  position: relative;
  z-index: 4;
}

.recruit-epi01__btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.6rem 4.8rem;
  font-weight: 700;
  text-align: center;
  background: #000;
  color: #fff;
  border-radius: 100px;
  margin: 4.8rem auto 0;
}

.recruit-epi01__ttl img {
  width: 100%;
}

.recruit-epi01__txt p {
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
}

.recruit-epi01__txt p + p {
  margin-top: 1.6rem;
}

.recruit-epi01__txt em {
  font-style: normal;
  font-size: 1.5em;
}

@media screen and (max-width: 767px) {
  .recruit-epi01__txt p {
    font-size: 1.4rem;
  }
}

.recruit-epi01__txt p {
  line-height: 2;
}

.recruit-epi01__image img {
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .recruit-epi01 {
    margin-top: -16rem;
    padding-bottom: 16rem;
  }
  .recruit-epi01__ttl {
    width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .recruit-epi01 {
    margin-top: -8rem;
    padding-bottom: 16rem;
  }
  .recruit-epi01__ttl {
    width: 100px;
    margin: 0 auto;
  }
}

.recruit-epi01:before {
  background-color: #fff;
  background-image: url("../images/recruit/epi01-bg.png");
}

.recruit-epi01:after {
  background-color: #fff;
  opacity: .95;
}

@media screen and (min-width: 768px) {
  .recruit-epi01__txt:nth-of-type(1) {
    margin-top: -30rem;
  }
  .recruit-epi01__txt:nth-of-type(2) {
    margin-top: 20rem;
  }
  .recruit-epi01__txt:nth-of-type(3) {
    margin-top: 4.8rem;
  }
  .recruit-epi01__image:nth-of-type(1) {
    margin-top: 4.8rem;
    text-align: right;
  }
  .recruit-epi01__image:nth-of-type(1) img {
    max-width: 800px;
  }
  .recruit-epi01__image:nth-of-type(2) {
    margin-top: 4.8rem;
    float: left;
  }
  .recruit-epi01__image:nth-of-type(2) img {
    max-width: 300px;
  }
  .recruit-epi01__image:nth-of-type(3) {
    clear: left;
    padding-top: 4.8rem;
    text-align: center;
    position: relative;
  }
  .recruit-epi01__image:nth-of-type(3) img:nth-of-type(1) {
    max-width: 600px;
  }
  .recruit-epi01__image:nth-of-type(3) img:nth-of-type(2) {
    position: absolute;
    top: -7rem;
    left: 50%;
    width: 300px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .recruit-epi01__image:nth-of-type(4) {
    margin-top: 4.8rem;
    text-align: center;
  }
  .recruit-epi01__image:nth-of-type(4) img {
    max-width: 400px;
  }
}

@media screen and (max-width: 767px) {
  .recruit-epi01 {
    margin-top: -16rem;
  }
  .recruit-epi01__txt {
    margin-top: 2.4rem;
  }
  .recruit-epi01__image {
    margin-top: 2.4rem;
  }
  .recruit-epi01__image:nth-of-type(2) {
    max-width: 60%;
  }
  .recruit-epi01__image:nth-of-type(3) {
    position: relative;
    margin-top: 8rem;
  }
  .recruit-epi01__image:nth-of-type(3) img:nth-of-type(2) {
    position: absolute;
    top: -7rem;
    left: 50%;
    width: 200px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .recruit-epi01__image:nth-of-type(4) {
    max-width: 70%;
    margin: 2.4rem auto 0;
  }
}

.recruit-epi02 {
  position: relative;
  z-index: 1;
  min-height: 1000px;
}

.recruit-epi02:before {
  content: "";
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 16rem, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 16rem, 100% 0, 100% 100%, 0% 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.recruit-epi02:after {
  content: "";
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 16rem, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 16rem, 100% 0, 100% 100%, 0% 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.recruit-epi02 > .container {
  position: relative;
  z-index: 4;
}

.recruit-epi02__btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.6rem 4.8rem;
  font-weight: 700;
  text-align: center;
  background: #000;
  color: #fff;
  border-radius: 100px;
  margin: 4.8rem auto 0;
}

.recruit-epi02__ttl img {
  width: 100%;
}

.recruit-epi02__txt p {
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
}

.recruit-epi02__txt p + p {
  margin-top: 1.6rem;
}

.recruit-epi02__txt em {
  font-style: normal;
  font-size: 1.5em;
}

@media screen and (max-width: 767px) {
  .recruit-epi02__txt p {
    font-size: 1.4rem;
  }
}

.recruit-epi02__txt p {
  line-height: 2;
}

.recruit-epi02__image img {
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .recruit-epi02 {
    margin-top: -16rem;
    padding-bottom: 16rem;
  }
  .recruit-epi02__ttl {
    width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .recruit-epi02 {
    margin-top: -8rem;
    padding-bottom: 16rem;
  }
  .recruit-epi02__ttl {
    width: 100px;
    margin: 0 auto;
  }
}

.recruit-epi02:before {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#595959+0,474747+39,000000+100 */
  background: #595959;
  /* Old browsers */
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, #595959 0%, #474747 39%, black 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-linear-gradient(315deg, #595959 0%, #474747 39%, black 100%);
  background: linear-gradient(135deg, #595959 0%, #474747 39%, black 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#595959', endColorstr='#000000',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
}

.recruit-epi02:after {
  background-size: auto auto;
  background-image: -webkit-repeating-linear-gradient(135deg, transparent, transparent 30px, rgba(255, 255, 255, 0.1) 30px, rgba(255, 255, 255, 0.1) 50px);
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(255, 255, 255, 0.1) 30px, rgba(255, 255, 255, 0.1) 50px);
}

.recruit-epi02__txt {
  color: #fff;
}

.recruit-epi02__image {
  text-align: center;
}

.recruit-epi02__btn {
  background-color: #fff;
  color: #000;
}

@media screen and (min-width: 768px) {
  .recruit-epi02__txt:nth-of-type(1) {
    margin-top: -45rem;
  }
  .recruit-epi02__txt:nth-of-type(2) {
    margin-top: 6.4rem;
  }
  .recruit-epi02__txt:nth-of-type(3) {
    margin-top: 4.8rem;
  }
  .recruit-epi02__image:nth-of-type(1) {
    margin-top: 6.4rem;
  }
  .recruit-epi02__image:nth-of-type(1) img {
    max-width: 300px;
  }
  .recruit-epi02__image:nth-of-type(2) {
    margin-top: 2.4rem;
  }
  .recruit-epi02__image:nth-of-type(2) img {
    max-width: 400px;
  }
  .recruit-epi02__image:nth-of-type(3) {
    margin-top: 6.4rem;
  }
  .recruit-epi02__image:nth-of-type(3) img {
    max-width: 400px;
  }
}

@media screen and (max-width: 767px) {
  .recruit-epi02 {
    padding-bottom: 24rem;
  }
  .recruit-epi02__txt {
    margin-top: 2.4rem;
  }
  .recruit-epi02__image {
    margin-top: 2.4rem;
  }
  .recruit-epi02__image:nth-of-type(1) {
    max-width: 60%;
    margin: 2.4rem auto 0;
  }
  .recruit-epi02__image:nth-of-type(2) {
    max-width: 70%;
    margin: 2.4rem auto 0;
  }
}

.recruit-epi03 {
  position: relative;
  z-index: 1;
  min-height: 1000px;
}

.recruit-epi03:before {
  content: "";
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 16rem, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 16rem, 100% 0, 100% 100%, 0% 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.recruit-epi03:after {
  content: "";
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 16rem, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 16rem, 100% 0, 100% 100%, 0% 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.recruit-epi03 > .container {
  position: relative;
  z-index: 4;
}

.recruit-epi03__btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.6rem 4.8rem;
  font-weight: 700;
  text-align: center;
  background: #000;
  color: #fff;
  border-radius: 100px;
  margin: 4.8rem auto 0;
}

.recruit-epi03__ttl img {
  width: 100%;
}

.recruit-epi03__txt p {
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
}

.recruit-epi03__txt p + p {
  margin-top: 1.6rem;
}

.recruit-epi03__txt em {
  font-style: normal;
  font-size: 1.5em;
}

@media screen and (max-width: 767px) {
  .recruit-epi03__txt p {
    font-size: 1.4rem;
  }
}

.recruit-epi03__txt p {
  line-height: 2;
}

.recruit-epi03__image img {
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .recruit-epi03 {
    margin-top: -16rem;
    padding-bottom: 16rem;
  }
  .recruit-epi03__ttl {
    width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .recruit-epi03 {
    margin-top: -8rem;
    padding-bottom: 16rem;
  }
  .recruit-epi03__ttl {
    width: 100px;
    margin: 0 auto;
  }
}

.recruit-epi03:before {
  background-color: #fff;
  background-image: url("../images/recruit/epi03-bg.png");
}

.recruit-epi03:after {
  background-color: #fff;
  opacity: .95;
}

@media screen and (min-width: 768px) {
  .recruit-epi03__txt:nth-of-type(1) {
    margin-top: 4.8rem;
  }
  .recruit-epi03__txt:nth-of-type(2) {
    margin-top: 6.4rem;
  }
  .recruit-epi03__txt:nth-of-type(3) {
    margin-top: 6.4rem;
  }
  .recruit-epi03__txt:nth-of-type(4) {
    margin-top: 6.4rem;
  }
  .recruit-epi03__image:nth-of-type(1) {
    margin-top: -30rem;
    text-align: center;
  }
  .recruit-epi03__image:nth-of-type(1) img {
    max-width: 300px;
  }
  .recruit-epi03__image:nth-of-type(2) {
    margin-top: 6.4rem;
    text-align: center;
  }
  .recruit-epi03__image:nth-of-type(2) img {
    max-width: 250px;
  }
  .recruit-epi03__image:nth-of-type(3) {
    margin-top: 6.4rem;
    text-align: center;
  }
  .recruit-epi03__image:nth-of-type(3) img {
    max-width: 500px;
  }
  .recruit-epi03__image:nth-of-type(4) {
    margin-top: 11.2rem;
    text-align: center;
    position: relative;
  }
  .recruit-epi03__image:nth-of-type(4) img:nth-of-type(1) {
    max-width: 700px;
  }
  .recruit-epi03__image:nth-of-type(4) img:nth-of-type(2) {
    position: absolute;
    top: -8rem;
    left: 50%;
    width: 800px;
    max-width: 100%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media screen and (max-width: 767px) {
  .recruit-epi03 {
    margin-top: -16rem;
  }
  .recruit-epi03__txt {
    margin-top: 2.4rem;
  }
  .recruit-epi03__image {
    margin-top: 2.4rem;
  }
  .recruit-epi03__image:nth-of-type(1) {
    max-width: 60%;
    margin: 2.4rem auto 0;
  }
  .recruit-epi03__image:nth-of-type(2) {
    max-width: 60%;
    margin: 2.4rem auto 0;
  }
  .recruit-epi03__image:nth-of-type(4) {
    margin-top: 6.4rem;
    text-align: center;
    position: relative;
  }
  .recruit-epi03__image:nth-of-type(4) img:nth-of-type(2) {
    position: absolute;
    top: -4rem;
    left: 50%;
    max-width: 100%;
    width: 100%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.recruit-epi04 {
  position: relative;
  z-index: 1;
  min-height: 1000px;
}

.recruit-epi04:before {
  content: "";
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 16rem, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 16rem, 100% 0, 100% 100%, 0% 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.recruit-epi04:after {
  content: "";
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 16rem, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 16rem, 100% 0, 100% 100%, 0% 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.recruit-epi04 > .container {
  position: relative;
  z-index: 4;
}

.recruit-epi04__btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.6rem 4.8rem;
  font-weight: 700;
  text-align: center;
  background: #000;
  color: #fff;
  border-radius: 100px;
  margin: 4.8rem auto 0;
}

.recruit-epi04__ttl img {
  width: 100%;
}

.recruit-epi04__txt p {
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
}

.recruit-epi04__txt p + p {
  margin-top: 1.6rem;
}

.recruit-epi04__txt em {
  font-style: normal;
  font-size: 1.5em;
}

@media screen and (max-width: 767px) {
  .recruit-epi04__txt p {
    font-size: 1.4rem;
  }
}

.recruit-epi04__txt p {
  line-height: 2;
}

.recruit-epi04__image img {
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .recruit-epi04 {
    margin-top: -16rem;
    padding-bottom: 16rem;
  }
  .recruit-epi04__ttl {
    width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .recruit-epi04 {
    margin-top: -8rem;
    padding-bottom: 16rem;
  }
  .recruit-epi04__ttl {
    width: 100px;
    margin: 0 auto;
  }
}

.recruit-epi04:before {
  background-color: #fff;
  background-image: url("../images/recruit/epi04-bg.png");
}

.recruit-epi04:after {
  content: none;
}

.recruit-epi04__txt {
  color: #fff;
}

.recruit-epi04__btn {
  background-color: #fff;
  color: #000;
}

@media screen and (min-width: 768px) {
  .recruit-epi04__txt:nth-of-type(1) {
    margin-top: -45rem;
  }
  .recruit-epi04__txt:nth-of-type(2) {
    margin-top: 20rem;
  }
  .recruit-epi04__txt:nth-of-type(3) {
    margin-top: 4.8rem;
  }
  .recruit-epi04__image:nth-of-type(1) {
    margin-top: 4.8rem;
    text-align: right;
  }
  .recruit-epi04__image:nth-of-type(1) img {
    max-width: 700px;
  }
  .recruit-epi04__image:nth-of-type(2) {
    margin-top: 4.8rem;
    float: left;
  }
  .recruit-epi04__image:nth-of-type(2) img {
    max-width: 300px;
  }
  .recruit-epi04__image:nth-of-type(3) {
    clear: left;
    padding-top: 11.2rem;
    text-align: center;
    position: relative;
  }
  .recruit-epi04__image:nth-of-type(3) img:nth-of-type(1) {
    max-width: 700px;
  }
  .recruit-epi04__image:nth-of-type(3) img:nth-of-type(2) {
    position: absolute;
    top: 50%;
    left: 0;
    width: 350px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .recruit-epi04__image:nth-of-type(4) {
    margin-top: 1.2rem;
    text-align: center;
  }
  .recruit-epi04__image:nth-of-type(4) img {
    max-width: 400px;
  }
}

@media screen and (max-width: 767px) {
  .recruit-epi04 {
    padding-bottom: 24rem;
  }
  .recruit-epi04__txt {
    margin-top: 2.4rem;
  }
  .recruit-epi04__image {
    margin-top: 2.4rem;
  }
  .recruit-epi04__image:nth-of-type(2) {
    max-width: 50%;
    margin: 2.4rem auto 0;
  }
  .recruit-epi04__image:nth-of-type(3) {
    margin-top: 4.8rem;
    text-align: center;
    position: relative;
  }
  .recruit-epi04__image:nth-of-type(3) img:nth-of-type(2) {
    position: absolute;
    left: 0;
    top: -2.4rem;
    width: 160px;
  }
  .recruit-epi04__image:nth-of-type(4) {
    max-width: 80%;
    margin: 2.4rem auto 0;
  }
}

.recruit-epi05 {
  position: relative;
  z-index: 1;
  min-height: 1000px;
}

.recruit-epi05:before {
  content: "";
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 16rem, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 16rem, 100% 0, 100% 100%, 0% 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.recruit-epi05:after {
  content: "";
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 16rem, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 16rem, 100% 0, 100% 100%, 0% 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.recruit-epi05 > .container {
  position: relative;
  z-index: 4;
}

.recruit-epi05__btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.6rem 4.8rem;
  font-weight: 700;
  text-align: center;
  background: #000;
  color: #fff;
  border-radius: 100px;
  margin: 4.8rem auto 0;
}

.recruit-epi05__ttl img {
  width: 100%;
}

.recruit-epi05__txt p {
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
}

.recruit-epi05__txt p + p {
  margin-top: 1.6rem;
}

.recruit-epi05__txt em {
  font-style: normal;
  font-size: 1.5em;
}

@media screen and (max-width: 767px) {
  .recruit-epi05__txt p {
    font-size: 1.4rem;
  }
}

.recruit-epi05__txt p {
  line-height: 2;
}

.recruit-epi05__image img {
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .recruit-epi05 {
    margin-top: -16rem;
    padding-bottom: 16rem;
  }
  .recruit-epi05__ttl {
    width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .recruit-epi05 {
    margin-top: -8rem;
    padding-bottom: 16rem;
  }
  .recruit-epi05__ttl {
    width: 100px;
    margin: 0 auto;
  }
}

.recruit-epi05:before {
  background-color: #fff;
  background-image: url("../images/recruit/epi05-bg.png");
}

.recruit-epi05:after {
  background-color: #fff;
  opacity: .95;
}

.recruit-epi05__btn {
  margin-top: 4.8rem;
}

@media screen and (min-width: 768px) {
  .recruit-epi05__txt:nth-of-type(1) {
    margin-top: -50rem;
  }
  .recruit-epi05__txt:nth-of-type(2) {
    margin-top: 6.4rem;
  }
  .recruit-epi05__txt:nth-of-type(3) {
    margin-top: 4.8rem;
  }
  .recruit-epi05__txt:nth-of-type(4) {
    margin-top: 16rem;
  }
  .recruit-epi05__image:nth-of-type(1) {
    margin-top: 4.8rem;
    text-align: center;
  }
  .recruit-epi05__image:nth-of-type(1) img {
    max-width: 400px;
  }
  .recruit-epi05__image:nth-of-type(2) {
    margin-top: 6.4rem;
    text-align: center;
  }
  .recruit-epi05__image:nth-of-type(2) img {
    max-width: 650px;
  }
  .recruit-epi05__image:nth-of-type(3) {
    margin-top: 6.4rem;
    text-align: center;
  }
  .recruit-epi05__image:nth-of-type(3) img {
    max-width: 300px;
  }
  .recruit-epi05__image:nth-of-type(4) {
    margin-top: 6.4rem;
    text-align: center;
  }
  .recruit-epi05__image:nth-of-type(4) img {
    max-width: 300px;
  }
  .recruit-epi05__image:nth-of-type(5) {
    padding-top: 11.2rem;
    text-align: center;
    position: relative;
  }
  .recruit-epi05__image:nth-of-type(5) img:nth-of-type(1) {
    max-width: 700px;
  }
  .recruit-epi05__image:nth-of-type(5) img:nth-of-type(2) {
    position: absolute;
    top: 8rem;
    left: 0;
    width: 350px;
  }
  .recruit-epi05__image:nth-of-type(5) img:nth-of-type(3) {
    position: absolute;
    bottom: -12rem;
    right: 20%;
    width: 450px;
  }
}

@media screen and (max-width: 767px) {
  .recruit-epi05 {
    margin-top: -16rem;
    padding-bottom: 8rem;
  }
  .recruit-epi05__txt {
    margin-top: 2.4rem;
  }
  .recruit-epi05__txt:nth-of-type(4) {
    margin-top: 6.4rem;
  }
  .recruit-epi05__image {
    margin-top: 2.4rem;
  }
  .recruit-epi05__image:nth-of-type(1) {
    max-width: 70%;
    margin: 2.4rem auto 0;
  }
  .recruit-epi05__image:nth-of-type(3) {
    max-width: 80%;
    margin: 2.4rem auto 0;
  }
  .recruit-epi05__image:nth-of-type(4) {
    max-width: 60%;
    margin: 2.4rem auto 0;
  }
  .recruit-epi05__image:nth-of-type(5) {
    padding-top: 6.4rem;
    text-align: center;
    position: relative;
  }
  .recruit-epi05__image:nth-of-type(5) img:nth-of-type(2) {
    position: absolute;
    top: 2rem;
    left: 0;
    width: 150px;
  }
  .recruit-epi05__image:nth-of-type(5) img:nth-of-type(3) {
    position: absolute;
    bottom: -4rem;
    right: 15%;
    width: 190px;
  }
}

.recruit-point {
  background-image: url("../images/recruit/point-bg.png");
  background-size: cover;
  color: #fff;
}

.recruit-point__ttl {
  font-weight: 700;
  font-family: "Noto Serif JP";
  text-align: center;
  text-shadow: 10px 10px 5px rgba(255, 255, 255, 0.3);
}

.recruit-point__txt {
  max-width: 800px;
  margin: 4.8rem auto 0;
}

.recruit-point__txt em {
  font-size: 2em;
  font-weight: 700;
  font-style: normal;
  display: block;
}

.recruit-point__txt p + p {
  margin-top: 2.4rem;
}

.recruit-point-list__ttl {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.recruit-point-list__ttl img:first-child {
  position: absolute;
}

.recruit-point-list-items {
  display: -ms-grid;
  display: grid;
}

.recruit-point-list-items__point {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}

.recruit-point-list-items__point02 {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: -.4rem auto 0;
  border-bottom: 1px solid #fff;
}

.recruit-point-list-items__ttl {
  margin-top: 2.4rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
}

.recruit-point-list-items__txt {
  margin-top: .8rem;
}

@media screen and (min-width: 768px) {
  .recruit-point {
    padding: 16rem 0 32rem;
  }
  .recruit-point__ttl {
    font-size: 4.8rem;
  }
  .recruit-point-list {
    margin-top: 11.2rem;
  }
  .recruit-point-list__ttl img:first-child {
    top: -60px;
    left: -120px;
    height: 170px;
  }
  .recruit-point-list__ttl img:last-child {
    height: 120px;
  }
  .recruit-point-list-items {
    margin-top: 4.8rem;
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 3.2rem;
            column-gap: 3.2rem;
    row-gap: 6.4rem;
  }
}

@media screen and (max-width: 767px) {
  .recruit-point {
    padding: 8rem 0 30rem;
  }
  .recruit-point__ttl {
    font-size: 2.2rem;
  }
  .recruit-point__txt {
    font-size: 1.4rem;
  }
  .recruit-point-list {
    margin-top: 11.2rem;
  }
  .recruit-point-list__ttl {
    width: 100%;
    text-align: center;
  }
  .recruit-point-list__ttl img:first-child {
    top: -90px;
    left: 0;
    height: 140px;
    z-index: -1;
  }
  .recruit-point-list__ttl img:last-child {
    height: 80px;
  }
  .recruit-point-list-items {
    margin-top: 2.4rem;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 2.4rem;
            column-gap: 2.4rem;
    row-gap: 4.8rem;
  }
  .recruit-point-list-items__ttl {
    font-size: 1.6rem;
  }
  .recruit-point-list-items__txt {
    font-size: 1.4rem;
  }
}

.recruit-epi06 {
  position: relative;
  position: relative;
  z-index: 1;
  min-height: 1000px;
}

.recruit-epi06:before {
  content: "";
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 16rem, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 16rem, 100% 0, 100% 100%, 0% 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.recruit-epi06:after {
  content: "";
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 16rem, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 16rem, 100% 0, 100% 100%, 0% 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.recruit-epi06 > .container {
  position: relative;
  z-index: 4;
}

.recruit-epi06__btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.6rem 4.8rem;
  font-weight: 700;
  text-align: center;
  background: #000;
  color: #fff;
  border-radius: 100px;
  margin: 4.8rem auto 0;
}

.recruit-epi06__ttl img {
  width: 100%;
}

.recruit-epi06__txt p {
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
}

.recruit-epi06__txt p + p {
  margin-top: 1.6rem;
}

.recruit-epi06__txt em {
  font-style: normal;
  font-size: 1.5em;
}

@media screen and (max-width: 767px) {
  .recruit-epi06__txt p {
    font-size: 1.4rem;
  }
}

.recruit-epi06__txt p {
  line-height: 2;
}

.recruit-epi06__image img {
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .recruit-epi06 {
    margin-top: -16rem;
    padding-bottom: 16rem;
  }
  .recruit-epi06__ttl {
    width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .recruit-epi06 {
    margin-top: -8rem;
    padding-bottom: 16rem;
  }
  .recruit-epi06__ttl {
    width: 100px;
    margin: 0 auto;
  }
}

.recruit-epi06:before {
  background: #296b43;
  height: calc(100% - 6.4rem);
  top: 6.4rem;
}

.recruit-epi06:after {
  content: none;
}

.recruit-epi06__image:nth-of-type(1) {
  text-align: right;
}

.recruit-epi06__image:nth-of-type(2) {
  margin-top: 4.8rem;
  text-align: center;
  position: relative;
}

.recruit-epi06__image:nth-of-type(2) img:nth-of-type(2) {
  position: absolute;
}

@media screen and (min-width: 768px) {
  .recruit-epi06 {
    margin-top: -22.4rem;
  }
  .recruit-epi06__image:nth-of-type(1) img {
    max-width: 250px;
  }
  .recruit-epi06__image:nth-of-type(2) img:nth-of-type(1) {
    max-width: 800px;
  }
  .recruit-epi06__image:nth-of-type(2) img:nth-of-type(2) {
    top: -15rem;
    left: 0rem;
    width: 600px;
  }
}

@media screen and (max-width: 767px) {
  .recruit-epi06 {
    margin-top: -24rem;
    padding-bottom: 8rem;
    min-height: unset;
  }
  .recruit-epi06__image:nth-of-type(1) img {
    max-width: 150px;
  }
  .recruit-epi06__image:nth-of-type(2) img:nth-of-type(2) {
    top: -4rem;
    left: -1rem;
    width: 250px;
  }
}

.recruit-detail {
  margin-top: -1px;
  background: #296b43;
  padding: 0 0 8rem;
}

.recruit-detail__ttl {
  position: relative;
  text-align: center;
  z-index: 1;
}

.recruit-detail__ttl img {
  width: 100%;
  max-width: 300px;
  display: block;
  margin: 0 auto;
}

.recruit-detail-info {
  position: relative;
  margin-top: -3.2rem;
  background: #fff;
  padding: 4.8rem;
  z-index: 0;
}

.recruit-detail-info p + p {
  margin-top: 1.6rem;
}

.recruit-detail-info__ttl {
  background: #ccc;
  padding: 1.6rem;
  font-weight: 700;
  font-size: 2rem;
}

.recruit-detail-info__table dt {
  font-weight: 700;
  padding: 1.6rem;
  border-bottom: 2px solid #999;
}

.recruit-detail-info__table dd {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 1.6rem;
  border-bottom: 1px solid #ccc;
}

@media screen and (min-width: 768px) {
  .recruit-detail-info__table > div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .recruit-detail-info__table dt {
    -webkit-flex-basis: 150px;
        -ms-flex-preferred-size: 150px;
            flex-basis: 150px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
}

@media screen and (max-width: 767px) {
  .recruit-detail-info {
    padding: 2.4rem;
  }
  .recruit-detail-info__ttl {
    font-size: 1.6rem;
  }
  .recruit-detail-info__table dt {
    padding-bottom: 0;
    border-bottom: 0;
    font-size: 1.4rem;
  }
  .recruit-detail-info__table dd {
    padding-top: .8rem;
    font-size: 1.4rem;
  }
}

.recruit-application {
  background: #296b43;
  padding: 0 0 8rem;
}

.recruit-application__ttl {
  position: relative;
  text-align: center;
  z-index: 1;
}

.recruit-application__ttl img {
  width: 100%;
  max-width: 300px;
  display: block;
  margin: 0 auto;
}

.recruit-application__inner {
  position: relative;
  margin-top: -3.2rem;
  z-index: 0;
}

.recruit-application-btn {
  background: #fff;
  padding: 4.8rem;
}

.recruit-application-btn__ttl {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.recruit-application-btn .btn {
  width: 100%;
  padding: 1.6rem 2.4rem;
  text-align: center;
}

.recruit-application-btn .btn--green {
  background-color: #296b43;
  color: #fff;
}

.recruit-application-btn .btn--green:hover {
  background: #fff;
  color: #296b43;
}

.recruit-application-btn .btn--line {
  background-color: #00B900;
  color: #fff;
  border: 1px solid #00B900;
  position: relative;
}

.recruit-application-btn .btn--line:hover {
  background: #fff;
  color: #00B900;
}

@media screen and (min-width: 768px) {
  .recruit-application__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 3.2rem;
            column-gap: 3.2rem;
  }
  .recruit-application-btn .btn--line i {
    font-size: 3.2rem;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 3.2rem;
  }
}

@media screen and (max-width: 767px) {
  .recruit-application-btn {
    padding: 3.2rem 1.6rem;
  }
  .recruit-application-btn__ttl {
    font-size: 1.6rem;
  }
  .recruit-application-btn .btn {
    padding: 1.6rem;
  }
  .recruit-application-btn .btn--line {
    line-height: 1;
  }
  .recruit-application-btn .btn--line i {
    vertical-align: middle;
    position: relative;
    font-size: 2.4rem;
    margin-right: .8rem;
  }
  .recruit-application-btn + .recruit-application-btn {
    padding-top: 0;
  }
}

/*===========================================================================
アニメーション
===========================================================================*/
/*======================================================
背景
======================================================*/
@-webkit-keyframes slideBg {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@keyframes slideBg {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

/*======================================================
ハンバーガーメニューのアニメーション
======================================================*/
@-webkit-keyframes menu-bar01 {
  0% {
    -webkit-transform: translateY(10px) rotate(45deg);
            transform: translateY(10px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(10px) rotate(0);
            transform: translateY(10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar01 {
  0% {
    -webkit-transform: translateY(10px) rotate(45deg);
            transform: translateY(10px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(10px) rotate(0);
            transform: translateY(10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}

@-webkit-keyframes menu-bar03 {
  0% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
            transform: translateY(-10px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-10px) rotate(0);
            transform: translateY(-10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}

@keyframes menu-bar03 {
  0% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
            transform: translateY(-10px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-10px) rotate(0);
            transform: translateY(-10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}

@-webkit-keyframes active-menu-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(10px) rotate(0);
            transform: translateY(10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(10px) rotate(45deg);
            transform: translateY(10px) rotate(45deg);
  }
}

@keyframes active-menu-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(10px) rotate(0);
            transform: translateY(10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(10px) rotate(45deg);
            transform: translateY(10px) rotate(45deg);
  }
}

@-webkit-keyframes active-menu-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-10px) rotate(0);
            transform: translateY(-10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
            transform: translateY(-10px) rotate(-45deg);
  }
}

@keyframes active-menu-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-10px) rotate(0);
            transform: translateY(-10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
            transform: translateY(-10px) rotate(-45deg);
  }
}
/*# sourceMappingURL=layout.css.map */