@charset "UTF-8";
/*共通の要素---------------------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  background-color: #fefff7;
}

a {
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

a:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0.7;
}

img {
  width: 100%;
  height: auto;
}

main {
  overflow: hidden;
}

*:focus {
  outline: none;
}

* {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #333;
}

.hamburger-btn {
  position: fixed;
  z-index: 20;
  top: 23px;
  right: -3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 20px;
  padding: 0;
  cursor: pointer;
  opacity: 1;
  border: none;
  outline: none;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.hamburger-btn__bar--top, .hamburger-btn__bar--middle, .hamburger-btn__bar--bottom {
  display: block;
  width: 17px;
  height: 2px;
  background-color: white;
}

.hamburger-btn__bar--top {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.hamburger-btn__bar--bottom {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}

.hamburger-btn__bg {
  display: none;
}

@media screen and (max-width: 1024px) {
  .hamburger-btn__bg {
    display: block;
    width: 100%;
    max-width: 54px;
    height: 54px;
    background-color: #afc500;
    position: relative;
    z-index: 30;
  }
}

.hamburger-btn__musk {
  position: fixed;
  background-color: rgba(51, 51, 51, 0.67);
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  display: none;
  z-index: 2;
}

.slide-nav {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  display: none;
  height: 100vh;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translateX(300px);
          transform: translateX(300px);
  background-color: #fefff7;
  background-position: bottom right;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1024px) {
  .slide-nav {
    display: block;
    width: 300px;
  }
}

.slide-nav__logo {
  width: 100px;
  padding-top: 10px;
  padding-left: 12px;
}

.slide-nav__title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #839400;
  margin-left: 20px;
  margin-top: 22px;
}

.slide-nav__list {
  padding: 20px 0 0 32px;
}

.slide-nav__list--item {
  font-size: 1.4rem;
  position: relative;
  margin-bottom: 18px;
}

.slide-nav__list--item::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -10px;
  display: block;
  width: 5px;
  height: 9px;
  margin: auto;
  content: "";
  background-image: url(../img/green-arrow.svg);
  background-size: cover;
}

.slide-nav__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 222px;
  background-color: #fff700;
  border-radius: 70px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 30px;
  color: #444d03;
  font-weight: bold;
  margin: 30px auto 0;
}

.slide-nav__btn-icon {
  width: 18px;
  margin-right: 4px;
}

.slide-nav__copyright {
  color: #afc500;
  font-size: 1.2rem;
  font-weight: bold;
  max-width: 267px;
  border-top: 1px solid #afc500;
  text-align: center;
  margin: 32px auto 0;
  padding-top: 20px;
}

.slide-nav.slide {
  overflow-y: scroll;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.cross.bar.hamburger-btn__bar--top {
  -webkit-transform: translateY(2px) rotate(45deg);
          transform: translateY(2px) rotate(45deg);
  background-color: white;
}

.cross.bar.hamburger-btn__bar--middle {
  opacity: 0;
}

.cross.bar.hamburger-btn__bar--bottom {
  -webkit-transform: translateY(-2px) rotate(-45deg);
          transform: translateY(-2px) rotate(-45deg);
  background-color: white;
}

.stop {
  overflow: hidden;
}

.header {
  position: fixed;
  z-index: 3;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 90px;
  padding-right: 25px;
  padding-left: 30px;
  background-color: rgba(255, 255, 255, 0.4);
}

.header.white {
  background-color: #FFFFFF;
}

@media screen and (max-width: 1024px) {
  .header {
    height: 54px;
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .header {
    padding-left: 8px;
  }
}

.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__left-logo {
  max-width: 137px;
}

@media screen and (max-width: 1024px) {
  .header__left-logo {
    max-width: 87px;
  }
}

.header__left-name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  margin-left: 25px;
  color: #444d03;
}

@media screen and (max-width: 1024px) {
  .header__left-name {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 767px) {
  .header__left-name {
    font-size: 1.3rem;
    margin-left: 7px;
    white-space: nowrap;
  }
}

.header__left-name br {
  display: none;
}

@media screen and (max-width: 1280px) {
  .header__left-name br {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .header__left-name br {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .header__left-name br {
    display: block;
  }
}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 816px;
}

@media screen and (max-width: 1024px) {
  .header__right {
    max-width: 134px;
  }
}

.header__right-link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333;
  text-shadow: -1px 0 0 #fff;
}

@media screen and (max-width: 1024px) {
  .header__right-link {
    display: none;
  }
}

.header__right-link--contact {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 222px;
  height: 48px;
  color: #444d03;
  border-radius: 24px;
  background: #fff700;
}

@media screen and (max-width: 1024px) {
  .header__right-link--contact {
    font-size: 1.2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 80px;
    height: 54px;
    padding: 3px 4px;
    text-align: center;
    border-radius: 0;
  }
  .header__right-link--contact br {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .header__right-link--contact {
    font-size: 1rem;
  }
}

.header__right-link--contact br {
  display: none;
}

@media screen and (max-width: 1024px) {
  .header__right-link--contact br {
    display: block;
  }
}

.header__right-arrow {
  max-width: 5px;
  margin-right: 4px;
}

.header__right-comment {
  max-width: 18px;
  margin-right: 4px;
}

.hero__header {
  position: relative;
  padding-bottom: 100px;
}

.hero__header-catch {
  position: absolute;
  bottom: 50px;
  left: 100px;
  max-width: 400px;
  z-index: 1;
}

@media screen and (max-width: 1024px) {
  .hero__header-catch {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: -30px;
    margin-left: 32px;
  }
}

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

.about__top {
  position: relative;
}

@media screen and (max-width: 1024px) {
  .about__top {
    position: static;
  }
}

.about__title {
  position: absolute;
  right: calc(70vw + 115px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 202px;
  padding-left: 15px;
}

@media screen and (max-width: 1024px) {
  .about__title {
    position: static;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto 30px;
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .about__title {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
}

@media screen and (max-width: 767px) {
  .about__title--left {
    width: 27px;
  }
}

.about__title--center {
  margin-top: 9px;
  margin-left: 22px;
}

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

.about__title--right {
  margin-top: 5px;
  margin-left: 32px;
}

@media screen and (max-width: 767px) {
  .about__title--right {
    width: 22px;
    margin-left: 10px;
  }
}

.about__img {
  display: block;
  max-width: 70vw;
  margin-left: auto;
}

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

.about__center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1200px;
  margin: 100px auto 161px;
  padding: 0 15px;
}

@media screen and (max-width: 1024px) {
  .about__center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .about__center {
    margin-top: 44px;
    margin-bottom: 52px;
    padding: 0 32px;
  }
}

.about__center-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 2;
  max-width: 600px;
  margin-left: 80px;
}

@media screen and (max-width: 1024px) {
  .about__center-text {
    margin-right: 0;
    margin-left: 0;
  }
}

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

.about__center-img {
  max-width: 455px;
}

.about__bottom {
  max-width: 78vw;
  padding-bottom: 110px;
}

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

.about__bottom--sp {
  display: none;
}

@media screen and (max-width: 1024px) {
  .about__bottom--sp {
    display: block;
    margin-top: 36px;
  }
}

.service__top-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  max-width: 1040px;
  margin: 0 auto 50px;
}

@media screen and (max-width: 1024px) {
  .service__top-container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 1024px) {
  .service__top-right {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .service__top-right {
    padding: 0 32px;
  }
}

.service__top-right--text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 2;
  max-width: 571px;
  padding-right: 15px;
}

@media screen and (max-width: 1024px) {
  .service__top-right--text {
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .service__top-right--text {
    font-size: 1.4rem;
  }
}

.service__top-right--text.sec {
  max-width: 430px;
  padding-right: 0;
}

.service__top-right--title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.8rem;
  margin-bottom: 33px;
  color: #afc500;
}

@media screen and (max-width: 767px) {
  .service__top-right--title {
    font-size: 2rem;
    margin-bottom: 16px;
  }
}

.service__top-right--important {
  font-size: 1.4rem;
  line-height: 1.71;
  max-width: 430px;
  margin-top: 16px;
  color: #839400;
}

.service__top-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 1040px;
  margin: 0 auto 55px;
}

@media screen and (max-width: 1024px) {
  .service__top-box {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.service__top-img {
  max-width: 460px;
  margin-right: 50px;
}

@media screen and (max-width: 1024px) {
  .service__top-img {
    margin-right: 0;
  }
}

.service__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-right: 135px;
}

@media screen and (max-width: 1024px) {
  .service__title {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .service__title {
    -webkit-transform: translateX(-12px);
            transform: translateX(-12px);
  }
}

@media screen and (max-width: 767px) {
  .service__title--right {
    width: 23px;
  }
}

.service__title--left {
  margin-right: 18px;
}

@media screen and (max-width: 767px) {
  .service__title--left {
    width: 27px;
    margin-right: 8px;
  }
}

.service__bottom {
  max-width: 1200px;
  margin: 0 auto;
}

.service__bottom-left {
  margin-right: 50px;
}

@media screen and (max-width: 1024px) {
  .service__bottom-left {
    margin: 40px auto 0;
  }
}

@media screen and (max-width: 767px) {
  .service__bottom-left {
    padding: 0 32px;
  }
}

.service__bottom-left.sec {
  margin-right: 0;
  margin-left: 50px;
}

@media screen and (max-width: 1024px) {
  .service__bottom-left.sec {
    margin: 40px auto 0;
  }
}

.service__bottom-text {
  font-size: 1.6rem;
  line-height: 2;
  max-width: 430px;
}

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

.service__bottom-text--important {
  font-size: 1.4rem;
  line-height: 1.71;
  max-width: 430px;
  margin-top: 16px;
  color: #839400;
}

.service__bottom-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.8rem;
  margin-bottom: 30px;
  color: #afc500;
}

@media screen and (max-width: 767px) {
  .service__bottom-title {
    font-size: 2rem;
    margin-bottom: 16px;
  }
}

.service__bottom--img {
  max-width: 460px;
}

.service__bottom--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 940px;
  margin-bottom: 55px;
  margin-left: auto;
}

@media screen and (max-width: 1024px) {
  .service__bottom--box {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-right: auto;
  }
}

.service__bottom--box:last-of-type {
  margin-right: auto;
  margin-bottom: 100px;
  margin-left: 0;
}

@media screen and (max-width: 1024px) {
  .service__bottom--box:last-of-type {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: auto;
  }
}

.staff {
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .staff {
    position: relative;
    margin-top: 400px;
  }
}

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

.staff__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 1135px) {
  .staff__title {
    padding-left: 15px;
  }
}

@media screen and (max-width: 1024px) {
  .staff__title {
    position: absolute;
    top: -290px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media screen and (max-width: 767px) {
  .staff__title {
    top: -170px;
    -webkit-transform: translateX(calc(-50% - 20px));
            transform: translateX(calc(-50% - 20px));
  }
}

.staff__title--left {
  margin-right: 22px;
}

@media screen and (max-width: 767px) {
  .staff__title--left {
    width: 27px;
    margin-right: 8px;
  }
}

@media screen and (max-width: 767px) {
  .staff__title--right {
    width: 23px;
  }
}

.staff__img {
  max-width: 700px;
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .staff__img {
    margin-top: 0;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}

.staff__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1120px;
  margin-bottom: 60px;
  margin-left: auto;
}

@media screen and (max-width: 1024px) {
  .staff__container {
    position: static;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

@media screen and (max-width: 1024px) {
  .staff__container:nth-of-type(1) .staff__prof {
    margin-top: -238px;
  }
}

@media screen and (max-width: 767px) {
  .staff__container:nth-of-type(1) .staff__prof {
    margin-top: -68px;
  }
}

@media screen and (max-width: 1024px) {
  .staff__container:nth-of-type(2) .staff__prof {
    margin-top: -181px;
  }
}

@media screen and (max-width: 767px) {
  .staff__container:nth-of-type(2) .staff__prof {
    margin-top: -68px;
  }
}

@media screen and (max-width: 1024px) {
  .staff__container:nth-of-type(3) .staff__prof {
    margin-top: -181px;
  }
}

@media screen and (max-width: 767px) {
  .staff__container:nth-of-type(3) .staff__prof {
    margin-top: -59px;
  }
}

@media screen and (max-width: 1024px) {
  .staff__container:nth-of-type(4) .staff__prof {
    margin-top: -90px;
  }
}

@media screen and (max-width: 767px) {
  .staff__container:nth-of-type(4) .staff__prof {
    margin-top: -74px;
  }
}

.staff__container.left {
  margin-right: auto;
  margin-left: 0;
}

.staff__container.right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.staff__prof {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  max-width: 256px;
  margin: 0 auto;
  padding: 32px;
  -webkit-transform: translateX(-130px);
          transform: translateX(-130px);
  text-align: center;
  background-color: #afc500;
}

@media screen and (max-width: 1024px) {
  .staff__prof {
    position: static;
    margin-right: 10vw;
    margin-left: auto;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@media screen and (max-width: 767px) {
  .staff__prof {
    margin-right: 16px;
  }
}

.staff__prof.sec {
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
}

@media screen and (max-width: 1024px) {
  .staff__prof.sec {
    margin-right: auto;
    margin-left: 10vw;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@media screen and (max-width: 767px) {
  .staff__prof.sec {
    margin-left: 16px;
  }
}

.staff__prof-duty {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 6px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .staff__prof-duty {
    font-size: 1.2rem;
  }
}

.staff__prof-name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .staff__prof-name {
    font-size: 1.6rem;
  }
}

.staff__prof-name--sec {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 24px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .staff__prof-name--sec {
    font-size: 1.2rem;
  }
}

.staff__prof-name--last {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .staff__prof-name--last {
    font-size: 1.2rem;
  }
}

.staff__prof-career {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 6px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .staff__prof-career {
    font-size: 1.2rem;
  }
}

.staff__prof-career--text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  font-weight: bold;
  line-height: 1.56;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .staff__prof-career--text {
    font-size: 1.1rem;
  }
}

.staff__text {
  font-size: 1.6rem;
  line-height: 2;
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 576px;
  padding: 30px;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  background-color: #edf2ce;
}

@media screen and (max-width: 1024px) {
  .staff__text {
    position: static;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@media screen and (max-width: 767px) {
  .staff__text {
    font-size: 1.4rem;
    padding: 25px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 520px) {
  .staff__text {
    max-width: calc(100% - 64px);
  }
}

.staff__text.third {
  left: 0;
}

.company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1070px;
  margin: 0 auto;
  padding: 0 16px;
  padding-bottom: 65px;
}

@media screen and (max-width: 1024px) {
  .company {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.company__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

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

.company__title--left {
  margin-right: 22px;
}

.company__container {
  max-width: 770px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 30px 35px 30px 40px;
  border: 1px solid #afc500;
}

@media screen and (max-width: 767px) {
  .company__container {
    padding: 14px 20px;
  }
}

.company__dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 2px dotted #839400;
}

@media screen and (max-width: 767px) {
  .company__dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.company__dl:last-of-type {
  margin: 0;
  border-bottom: none;
}

.company__dt {
  font-size: 1.6rem;
  font-weight: bold;
  width: 126px;
  color: #839400;
}

.company__dd {
  font-size: 1.6rem;
}

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

.company__dd br {
  display: none;
}

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

.contact {
  width: 100%;
  max-width: 1040px;
  margin: 86px auto 73px;
  padding: 36px 100px;
  border-radius: 32px;
  background-color: #e0d800;
}

@media screen and (max-width: 1070px) {
  .contact {
    max-width: calc(100% - 30px);
  }
}

@media screen and (max-width: 900px) {
  .contact {
    padding: 36px 15px;
  }
}

.contact__message-icon {
  max-width: 30px;
}

.contact__message-icon--form {
  max-width: 18px;
  margin-right: 10px;
}

.contact__arrow {
  max-width: 7px;
  margin-right: 8px;
}

.contact__tel-icon {
  max-width: 23px;
  margin-right: 13px;
}

@media screen and (max-width: 767px) {
  .contact__tel-icon {
    max-width: 21px;
    margin-right: 10px;
  }
}

.contact__top-text {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: #444d03;
}

.contact__top-text br {
  display: none;
}

@media screen and (max-width: 900px) {
  .contact__top-text {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .contact__top-text br {
    display: block;
  }
}

.contact__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 840px;
}

@media screen and (max-width: 900px) {
  .contact__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.contact__left {
  text-align: center;
}

.contact__left-top {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #444d03;
}

@media screen and (max-width: 767px) {
  .contact__left-top {
    font-size: 1.8rem;
  }
}

.contact__left-center {
  font-size: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 320px;
  height: 70px;
  color: #444d03;
  border-radius: 60px;
  background-color: #edf2ce;
}

@media screen and (max-width: 767px) {
  .contact__left-center {
    font-size: 2.1rem;
    width: 270px;
    height: 50px;
  }
}

.contact__left-bottom {
  font-size: 2.4rem;
  margin-top: 13px;
  color: #444d03;
}

@media screen and (max-width: 767px) {
  .contact__left-bottom {
    font-size: 1.8rem;
  }
}

.contact__right {
  text-align: center;
}

.contact__right-top {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .contact__right-top {
    font-size: 1.8rem;
  }
}

.contact__right-btn {
  font-size: 3.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 320px;
  height: 70px;
  color: #444d03;
  border-radius: 60px;
  background-color: #edf2ce;
}

@media screen and (max-width: 767px) {
  .contact__right-btn {
    width: 270px;
    height: 50px;
    font-size: 2.1rem;
  }
}

.contact__right-btn img {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.contact__right-center {
  font-size: 1.8rem;
  margin-top: 10px;
  color: #444d03;
}

@media screen and (max-width: 767px) {
  .contact__right-center {
    font-size: 1.6rem;
  }
}

.contact__right-center span {
  font-size: 2.4rem;
}

@media screen and (max-width: 767px) {
  .contact__right-center span {
    font-size: 1.8rem;
  }
}

.contact__right-bottom {
  margin-top: 10px;
  color: #444d03;
}

.contact__line {
  width: 1px;
  height: 173px;
  background-color: #707070;
}

@media screen and (max-width: 900px) {
  .contact__line {
    max-width: 600px;
    width: 100%;
    height: 1px;
    margin: 30px auto;
  }
}

.contact__wrap {
  max-width: 700px;
  margin: 140px auto 0;
}

.contact__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 52px;
  color: #444d03;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contact__title {
    font-size: 1.8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 21px;
  }
}

.contact__text {
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 32px;
}

.contact__bg {
  max-width: 700px;
  margin: 0 auto 60px;
  background-color: #ffffff;
  height: auto;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  padding: 20px;
}

.contact__form {
  padding: 0 15px;
}

.office {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .office {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.office__img {
  max-width: 25%;
}

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

.footer {
  padding: 41px 15px 25px;
  background-color: #edf2ce;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 38px 32px;
  }
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 555px;
  margin: 0 auto;
}

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

.footer__top-arrow {
  max-width: 5px;
  margin-right: 4px;
}

.footer__top-link {
  font-family: "Noto Sans CJK JP";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  text-shadow: -1px 0 0 #fff;
}

.footer__logo {
  max-width: 167px;
}

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

.footer__center {
  max-width: 555px;
  margin: 30px auto 0;
  text-align: center;
}

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

.footer__center-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__name {
  font-size: 2.9rem;
  font-weight: bold;
  margin-left: 35px;
  color: #839400;
}

@media screen and (max-width: 767px) {
  .footer__name {
    font-size: 1.6rem;
    margin-left: 0;
  }
}

.footer__address {
  font-size: 1.6rem;
  margin: 13px 0;
}

@media screen and (max-width: 767px) {
  .footer__address {
    line-height: 1.5;
  }
}

.footer__address br {
  display: none;
}

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

.footer__tel {
  font-size: 2.9rem;
  font-weight: bold;
}

.footer__tel span {
  font-size: 2.1rem;
  font-weight: bold;
  margin-right: 4px;
}

.footer__fax {
  font-size: 2.9rem;
  font-weight: bold;
}

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

.footer__fax span {
  font-size: 2.1rem;
  font-weight: bold;
  margin-right: 4px;
}

.footer__time {
  font-size: 1.6rem;
}

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

.footer__time span {
  font-size: 2.2rem;
  margin-left: 11px;
}

.footer__week {
  font-size: 1.6rem;
  margin-top: 11px;
}

.footer__bottom {
  padding: 25px 15px;
  text-align: center;
  background-color: #afc500;
}

.footer__copyright {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
}

.map iframe {
  width: 100%;
  margin-top: 80px;
}

.map iframe,
.map object,
.map embed {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

.slider {
  position: relative;
  width: 100%;
  height: calc(100vh - 100px);
}

@media screen and (max-width: 1024px) {
  .slider {
    height: 600px;
  }
}

@media screen and (max-width: 767px) {
  .slider {
    height: 420px;
  }
}

.slider-img {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: bottom center;
  background-size: cover;
}

.slider-img--01 {
  background-image: url(../img/top-view01.png);
}

@media screen and (max-width: 767px) {
  .slider-img--01 {
    background-image: url(../img/top-view01-sp.png);
  }
}

.slider-img--01.zoom {
  -webkit-animation: zoomOut 4s infinite;
          animation: zoomOut 4s infinite;
  z-index: 1;
}

.slider-img--02 {
  background-image: url(../img/top-view02.png);
}

@media screen and (max-width: 767px) {
  .slider-img--02 {
    background-image: url(../img/top-view02-sp.png);
  }
}

.slider-img--02.zoom {
  -webkit-animation: zoomOut 4s infinite;
          animation: zoomOut 4s infinite;
  z-index: 1;
}

.slider__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 48px;
  position: absolute;
  bottom: 56px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.slider__nav--bullet {
  width: 16px;
  height: 16px;
  background-color: #edf2ce;
  border-radius: 100%;
}

.slider__nav--bullet.active {
  background-color: #afc500;
}

@-webkit-keyframes zoomOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0;
  }
}
/*# sourceMappingURL=style.css.map */