@charset "UTF-8";
/* 除算math.divを使うのに必要な記述 */
/*-------------------------------------------
base
-------------------------------------------*/
html {
  font-size: 62.5%;
  line-height: 1;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  font-family: "Noto Sans JP";
  color: #222;
}

a {
  text-decoration: none;
  color: #222;
}

img, svg {
  max-width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

.btn {
  position: relative;
  display: inline-block;
  width: 355px;
  max-width: 100%;
  padding: 30px 10px;
  font-size: clamp(1.6rem, 1.4591549296rem + 0.3755868545vw, 2rem);
  font-weight: 700;
  text-align: center;
  background: #fff;
  border: 1px solid #222;
  color: #222;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.btn:focus {
  background: #222;
  border-color: currentColor;
  color: #fff;
}

.btn:hover {
  background: #222;
  border-color: currentColor;
  color: #fff;
}

.btn__fa {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 30px;
  font-weight: 900;
}

.section__inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 34px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.section__title {
  display: inline-block;
  position: relative;
  font-size: clamp(3.2rem, 2.4957746479rem + 1.8779342723vw, 5.2rem);
  font-weight: 700;
  margin-bottom: 52px;
}

.section__title::before {
  font-weight: normal;
  color: rgba(151, 151, 151, 0.1019607843);
  font-family: "Poppins", serif;
  font-size: clamp(8rem, 6.0281690141rem + 5.2582159624vw, 13.6rem);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.section__title > span {
  border-bottom: 3px solid #222;
}

.circle-arrow-button-box {
  width: 70px;
  height: 70px;
  position: relative;
}

.circle-arrow-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid #222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.circle-arrow-button:focus, .circle-arrow-button:hover {
  width: 70px;
  height: 70px;
}

.circle-arrow-button--black {
  background: #222;
  color: #fff;
}

/*-------------------------------------------
.header
-------------------------------------------*/
.header {
  background: transparent;
  padding-top: 26px;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

.header .header-logo__img--black {
  display: none;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 30px;
}

.nav, .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__menu {
  margin-right: 32px;
}

.menu__item {
  text-align: center;
  border: 1px solid #AFA86F;
  padding: 14px 10px !important;
  width: 248px;
  max-width: 100%;
  background: #AFA86F;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.menu__item:focus, .menu__item:hover {
  background: #988C2C;
}

.menu__item--short {
  width: 126px;
}

.menu__item--black {
  border: 1px solid #222;
  background: #222;
}

.menu__item--black:focus, .menu__item--black:hover {
  background: #fff;
}

.menu__item--black:focus, .menu__item--black:hover > .menu__text {
  color: #222;
}

.menu__item--mr22 {
  margin-right: 22px;
}

.menu__text {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  vertical-align: top;
}

.drawer-toggle {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  width: 60px;
  height: 60px;
  text-align: center;
}

.drawer-toggle span {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: inline-block;
  width: 52px;
  height: 2px;
  background-color: #fff;
  vertical-align: top;
}

.drawer-toggle span:nth-child(1) {
  top: 0;
}

.drawer-toggle span:nth-child(2) {
  top: 15px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.drawer-toggle span:nth-child(3) {
  bottom: 30px;
}

.drawer-toggle::after {
  content: "MENU";
  display: block;
  margin-top: 24px;
  color: #fff;
  font-size: clamp(1rem, 0.9295774648rem + 0.1877934272vw, 1.2rem);
}

.nav__drawer-toggle {
  z-index: 200;
  position: relative;
}

.drawer-toggle__text {
  color: #fff;
}

.header--sticky {
  position: fixed;
  background: #fff;
  padding-bottom: 26px;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  visibility: visible;
  -webkit-animation: slideDown 0.3s ease-in-out;
  animation: slideDown 0.3s ease-in-out;
}

.header--sticky .header-logo__img--black {
  display: block;
}

.header--sticky .header-logo__img--white {
  display: none;
}

.header--sticky .drawer-toggle span {
  background-color: #222;
}

.header--sticky .drawer-toggle::after {
  color: #222;
}

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
/*-------------------------------------------
.modal
-------------------------------------------*/
#modal-1 {
  display: none;
}

#modal-1.is-open {
  display: block;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal-container {
  background-color: #FAF7F1;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  text-align: center;
  padding-top: 118px;
}

.modal__logo {
  padding-right: 63px;
  text-align: right;
  display: inline-block;
  width: 50%;
  font-size: 2.4rem;
}

.modal__header {
  background: #FAF7F1;
}
.modal__header .header-logo__img--white {
  display: none;
}
.modal__header .header-logo__img--black {
  display: block;
}

.modal-close {
  z-index: 200;
  position: relative;
  width: 60px;
  height: 60px;
}
.modal-close:before, .modal-close:after {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #222;
}
.modal-close:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.modal-close::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.modal-content {
  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;
  padding-top: 90px;
}

.modal-nav {
  width: 50%;
}

.modal-nav__list {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 63px;
  border-left: 1px solid #AFA86F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 30px;
}

.modal-nav__item {
  width: 38%;
  text-align: left;
  display: inline-block;
  border-top: 1px solid #AFA86F;
  padding: 20px 0;
}
.modal-nav__item:nth-child(n+5) {
  border-bottom: 1px solid #AFA86F;
  margin-bottom: 50px;
}
.modal-nav__item.menu__item {
  text-align: center;
  margin-bottom: 0;
}

.modal-nav__text {
  font-family: "Viga", serif;
  font-size: clamp(1.8rem, 1.3070422535rem + 1.3145539906vw, 3.2rem);
  display: inline-block;
}
.modal-nav__text span {
  display: inline-block;
  font-family: "Noto Sans JP";
  font-size: clamp(1.2rem, 1.0591549296rem + 0.3755868545vw, 1.6rem);
  font-weight: 700;
}

/*-------------------------------------------
.hero
-------------------------------------------*/
@-webkit-keyframes slider-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  6.25% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  56.25% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
  }
}
@keyframes slider-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  6.25% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  56.25% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
  }
}
.hero {
  position: relative;
}

.slide {
  height: 823px;
  overflow: hidden;
}

.hero__slide {
  position: relative;
}

.slide__image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-animation: slider-1 16s linear infinite;
  animation: slider-1 16s linear infinite;
}

.slide__image:nth-child(1) {
  background-image: url("../img/fv01.png");
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.slide__image:nth-child(2) {
  background-image: url("../img/fv02.png");
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}

.fv-content {
  width: 100%;
}

.hero__fv-content {
  position: absolute;
  bottom: 0;
}

.fv-content__title {
  font-family: "Viga", serif;
  font-size: clamp(4.8rem, 3.1098591549rem + 4.5070422535vw, 9.6rem);
  color: #fff;
  line-height: 1.2;
  padding: 16px 8px 8px;
  margin-bottom: 76px;
  margin-left: 4%;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.2509803922);
}

.fv-content__subtitle {
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.2rem, 0.7774647887rem + 1.1267605634vw, 2.4rem);
  padding: 17px 66px;
  margin-bottom: 63px;
  background-image: url(../img/Rectangle\ 4.png);
  background-position: right;
  background-size: cover;
  display: inline-block;
}

.fv-news__wrapper {
  padding: 0 15px;
}

.fv-news {
  max-width: 1263px;
  background: #fff;
  border-radius: 50px;
  border: 1px solid #222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.fv-content__fv-news {
  margin-left: 54px;
  margin-bottom: 38px;
  position: relative;
}

.fv-news__label {
  text-align: center;
  background: #222;
  color: #fff;
  font-size: clamp(1rem, 0.5070422535rem + 1.3145539906vw, 2.4rem);
  width: 14.8%;
  display: inline-block;
  padding: 19px 0;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

.fv-news__link {
  font-size: clamp(1.2rem, 1.0591549296rem + 0.3755868545vw, 1.6rem);
  vertical-align: top;
  padding-left: 90px;
}

.fv-news__cta {
  font-size: 1.4rem;
  position: absolute;
  right: 0;
  padding-right: 47px;
  margin-right: 6px;
}

.fv-news__fa {
  margin-left: 6px;
}

/*-------------------------------------------
.about
-------------------------------------------*/
.about-swiper {
  margin-top: 101px;
}

.about-swiper__wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  position: relative;
}

.about-swiper__slide {
  text-align: center;
  width: 506px !important;
}

.about-swiper__slide:nth-child(even) {
  padding-top: 36px;
}

.about-swiper__img {
  height: 393px;
  border-radius: 60px;
  -o-object-fit: cover;
  object-fit: cover;
}

.about-swiper__heading-box {
  position: absolute;
  bottom: 9px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}

.about-swiper__heading {
  display: inline-block;
  font-weight: bold;
  padding: 7px 11px;
  font-size: clamp(2.4rem, 1.8366197183rem + 1.5023474178vw, 4rem);
  line-height: 1.44;
  background: #fff;
  text-align: center;
}

.about-swiper__heading:first-child {
  margin-bottom: 7px;
}

.about__content {
  padding: 100px 0 76px;
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.about__description-box {
  background-image: url(../img/map\ 1.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.about__description {
  text-align: center;
  font-size: clamp(1.8rem, 1.1661971831rem + 1.6901408451vw, 3.6rem);
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 52px;
}

/*-------------------------------------------
.members
-------------------------------------------*/
.members-top {
  padding-top: 87px;
}

.members-bottom {
  padding-bottom: 63px;
}

.members__title::before {
  content: "MEMBER";
}

.members__text {
  line-height: 1.5;
}

.members__wrapper {
  padding: 52px 0 80px 242px;
}

.members__slide {
  width: 300px !important;
}

.members__slide:nth-child(even) {
  padding-top: 36px;
}

.members__img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.members__img--radius {
  border-radius: 30px;
}

.members__heading-box {
  width: 100%;
  margin-bottom: 16px;
  margin-top: -48px;
}

.members__heading {
  font-weight: bold;
  display: inline-block;
  padding: 5px 7px;
  font-size: clamp(1.6rem, 1.4591549296rem + 0.3755868545vw, 2rem);
  background: #AFA86F;
  text-align: left;
}

.members__heading:first-child {
  margin-bottom: 6px;
}

.members__job {
  font-size: clamp(1.2rem, 1.0591549296rem + 0.3755868545vw, 1.6rem);
  margin-bottom: 16px;
  font-weight: 700;
}

.members__name {
  font-size: clamp(2rem, 1.859rem + 0.6vw, 2.4rem);
  font-size: clamp(2rem, 1.8591549296rem + 0.3755868545vw, 2.4rem);
  font-weight: 700;
}

.members__btn-wrapper {
  text-align: center;
  position: relative;
}

.swiper__button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  position: absolute;
  right: -20px;
  bottom: 8px;
}

/*-------------------------------------------
.benefits
-------------------------------------------*/
.benefits {
  padding: 87px 0 107px;
  text-align: center;
}

.benefits__title {
  margin-bottom: 46px;
}

.benefits__title::before {
  content: "BENEFITS";
}

.benefits__text {
  line-height: 1.5;
  margin-bottom: 114px;
}

.benefits__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 94px;
}

.benefits-card {
  width: 47%;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.benefits-card:hover {
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}

.benefits-card__img-wrapper {
  position: relative;
  margin-bottom: -138px;
  padding-top: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background: #FAF7F1;
  border-radius: 50%;
  z-index: -1;
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
}

.benefits-card__img-wrapper-1 {
  background-image: url(../img/career\ 1.svg);
}

.benefits-card__img-wrapper-2 {
  background-image: url(../img/welfare\ 1.svg);
}

.benefits-card__btn-box {
  margin-left: auto;
  margin-bottom: 12px;
  margin-right: 14px;
}

.benefits-card__vertical-text {
  position: absolute;
  top: 0;
  right: 20px;
  font-family: "Viga", serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.0478873239rem + 0.9389671362vw, 2.4rem);
  letter-spacing: 4px;
  font-style: normal;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.benefits-card__title-box {
  margin-bottom: 41px;
  text-align: center;
}

.benefits-card__title {
  font-weight: 700;
  padding: 5px 7px;
  background: #AFA86F;
  display: inline-block;
  font-size: clamp(2.4rem, 2.1183098592rem + 0.7511737089vw, 3.2rem);
}

.benefits-card__description {
  text-align: left;
  line-height: 1.5;
}

/*-------------------------------------------
.blog
-------------------------------------------*/
.blog {
  padding: 87px 0 80px;
  background: #FAF7F1;
}

.blog__inner {
  position: relative;
}

.view-more-box {
  position: absolute;
  top: -14px;
  right: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog__circle-arrow-button-box {
  margin-right: 8px;
}

.view-more-box__text {
  font-family: "Viga", serif;
  font-weight: 400;
  border-bottom: 1px solid #222;
}

.blog__title::before {
  content: "BLOG";
}

.blog__text {
  line-height: 1.5;
  margin-bottom: 76px;
}

.blog-media__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 23px;
}

.blog-media-container {
  width: 47%;
  border-radius: 10px;
}

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

.blog-media__img {
  width: 35%;
  height: 180px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-media__content {
  width: 65%;
  padding: 20px 23px;
  background: #fff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  position: relative;
}

.blog-media__tag {
  font-size: clamp(1.2rem, 1.1295774648rem + 0.1877934272vw, 1.4rem);
  margin-bottom: 23px;
  display: inline-block;
}

.blog-media__tag-img {
  margin-right: 4px;
}

.blog-media__title {
  font-size: clamp(1.4rem, 1.2591549296rem + 0.3755868545vw, 1.8rem);
  font-weight: 700;
  line-height: 1.5;
  text-decoration: underline;
}

.blog-media__time {
  position: absolute;
  left: 23px;
  bottom: 20px;
  font-size: 1.2rem;
}

/*-------------------------------------------
.recruitment
-------------------------------------------*/
.recruitment {
  padding: 87px 0 139px;
  background: #FAF7F1;
  text-align: center;
}

.recruitment__title::before {
  content: "RECRUIT";
}

.recruitment__text {
  line-height: 1.5;
  margin-bottom: 52px;
}

.recruitment__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.recruitment__btn {
  padding: 50px 10px;
  font-size: 2rem;
}

.recruitment__btn:last-child {
  margin-top: 21px;
}

.btn--border-white {
  border: 1px solid #fff;
}

.btn--short {
  width: 49%;
}

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

/*-------------------------------------------
.cta
-------------------------------------------*/
.cta__bg {
  width: 100%;
}

.cta__inner {
  position: relative;
}

.cta__content {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  background: #fff;
  max-width: 956px;
  width: 100%;
  padding: 50px 0;
  border-radius: 20px;
}

.cta__text {
  font-size: clamp(1.4rem, 1.3295774648rem + 0.1877934272vw, 1.6rem);
  font-weight: 700;
  line-height: 1.5;
}

.cta__btn {
  font-size: clamp(1.4rem, 1.3295774648rem + 0.1877934272vw, 1.6rem);
  margin-top: 31px;
  width: 58%;
}

.btn--important {
  border: 1px solid #AFA86F;
  background: #AFA86F;
}

/*-------------------------------------------
.footer
-------------------------------------------*/
.footer {
  padding-bottom: 64px;
}

.footer__wrapper {
  max-width: 1312px;
  margin: 0 auto;
  padding: 198px 0 61px;
  background: #FAF7F1;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.footer__inner {
  position: relative;
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 73px;
}

.footer__logo {
  display: inline-block;
}

.footer-nav {
  padding-top: 25px;
  width: 63%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 41px 22px;
}

.footer-nav__item {
  font-size: clamp(1.4rem, 1.3295774648rem + 0.1877934272vw, 1.6rem);
  font-weight: 700;
}

.icon-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 34px;
  bottom: 0;
  gap: 16px;
}

.footer__copy-right {
  font-size: 1.2rem;
  font-family: "Viga", serif;
  font-weight: 400;
  color: #999999;
}

@media screen and (max-width: 1240px) {
  .members__title::before {
    left: 100%;
    padding-left: 34px;
  }
}
@media screen and (max-width: 1128px) {
  .members__wrapper {
    padding-left: 17px;
    padding-bottom: 64px;
    overflow-x: auto;
  }
  .members__wrapper::-webkit-scrollbar {
    display: none;
  }
  .swiper__button-wrapper {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  /*-------------------------------------------
  .hero
  -------------------------------------------*/
  .fv-content__fv-news {
    margin-left: auto;
    margin-right: auto;
  }
  /*-------------------------------------------
  .blog
  -------------------------------------------*/
  .blog-media__content {
    padding: 12px 16px;
  }
  /*-------------------------------------------
  .cta
  -------------------------------------------*/
  .cta__content {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  /*-------------------------------------------
  .base
  -------------------------------------------*/
  .section__inner {
    padding: 0 17px;
  }
  .section__title {
    margin-bottom: 43px;
  }
  .section__title::before {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
  }
  .circle-arrow-button {
    width: 42px;
    height: 42px;
  }
  .btn {
    width: 277px;
    max-width: 100%;
    padding: 23px 10px;
  }
  /*-------------------------------------------
  .modal
  -------------------------------------------*/
  .modal-close {
    width: 32px;
  }
  .modal-close:before, .modal-close:after {
    top: 14px;
  }
  .modal-content {
    padding: 0 12px;
  }
  .modal__logo {
    display: none;
  }
  .modal-nav {
    width: 100%;
  }
  .modal-nav__list {
    border-left: none;
    padding-left: 0;
    text-align: left;
    display: block;
  }
  .modal-nav__item {
    display: block;
    width: 100%;
    padding: 13px 0;
  }
  .modal-nav__item:nth-child(odd) {
    margin-right: 0;
  }
  .modal-nav__item:nth-child(n+5) {
    border-bottom: none;
    margin-bottom: 0;
  }
  .modal-nav__item:nth-child(6) {
    margin-bottom: 53px;
    border-bottom: 1px solid #AFA86F;
  }
  .modal-nav__item:nth-child(7) {
    margin-bottom: 13px;
  }
  .modal-nav__item.menu__item {
    width: 248px;
  }
  .modal-nav__text span {
    margin-top: 9px;
  }
  /*-------------------------------------------
  .header
  -------------------------------------------*/
  .header {
    padding: 8px 0;
  }
  .header__inner {
    padding: 0 12px;
  }
  .header-logo {
    width: 151px;
  }
  .header__menu {
    display: none;
  }
  .drawer-toggle {
    width: 32px;
    height: 32px;
  }
  .drawer-toggle > span {
    width: 32px;
  }
  .drawer-toggle > span:nth-child(2) {
    top: 9px;
  }
  .drawer-toggle > span:nth-child(3) {
    bottom: 14px;
  }
  /*-------------------------------------------
  .hero
  -------------------------------------------*/
  .slide {
    max-height: 667px;
  }
  .fv-content__title {
    margin-bottom: 8px;
  }
  .fv-content__subtitle {
    padding: 9px 24px 9px 12px;
    margin-bottom: 31px;
  }
  .fv-content__fv-news {
    margin-bottom: 10px;
  }
  .fv-news__link {
    padding: 0 10px;
    line-height: 1.44;
  }
  .fv-news__cta {
    display: none;
  }
  /*-------------------------------------------
  .about
  -------------------------------------------*/
  .about__content {
    padding: 54px 0 35px;
  }
  .about-swiper {
    margin-top: 31px;
    padding-bottom: 24px;
  }
  .about-swiper__slide {
    width: 271px !important;
  }
  .about-swiper__img {
    height: 210px;
  }
  .about-swiper__heading {
    font-size: 2.4rem;
  }
  .about__content {
    padding: 54px 0 35px;
  }
  .about__description {
    line-height: 2.5;
    margin-bottom: 40px;
  }
  /*-------------------------------------------
  .members
  -------------------------------------------*/
  .members__title::before {
    padding-left: 0;
  }
  .members__slide {
    width: 246px !important;
  }
  .swiper__button-wrapper {
    display: none;
  }
  .members__slide:nth-child(even) {
    padding-top: 24px;
  }
  .members-top {
    padding-top: 58px;
  }
  .members__wrapper {
    padding-left: 26px;
    padding-bottom: 64px;
    overflow-x: auto;
  }
  .members-bottom {
    padding-bottom: 59px;
  }
  /*-------------------------------------------
  .benefits
  -------------------------------------------*/
  .benefits {
    padding: 36px 0 78px;
    text-align: left;
  }
  .benefits__text {
    text-align: left;
    margin-bottom: 40px;
  }
  .benefits__cards {
    display: block;
    padding: 0;
  }
  .benefits-card {
    width: 100%;
  }
  .benefits-card:first-child {
    margin-bottom: 36px;
  }
  .benefits-card__img-wrapper {
    width: 75%;
    padding-top: 75%;
    margin: 0 auto -100px;
  }
  .benefits-card__title-box {
    margin-bottom: 21px;
  }
  .benefits-card__btn-box {
    margin-right: 44px;
  }
  .benefits-card__vertical-text {
    letter-spacing: 2px;
    top: 11px;
  }
  /*-------------------------------------------
  .blog 
  -------------------------------------------*/
  .blog {
    padding: 78px 0 34px;
  }
  .blog__title {
    padding: 0;
  }
  .blog-media__wrapper {
    display: block;
    margin-bottom: 52px;
  }
  .blog-media-container {
    width: 100%;
    margin-bottom: 9px;
  }
  .blog-media-container:last-of-type {
    margin-bottom: 0;
  }
  .blog-media {
    width: 100%;
  }
  .blog-media__img {
    height: 121px;
  }
  .blog-media__content {
    padding: 9px 18px;
  }
  .blog-media__tag {
    margin-bottom: 8px;
  }
  .blog-media__title {
    margin-bottom: 0;
  }
  .blog-media__time {
    left: 18px;
    bottom: 5px;
  }
  .blog__text {
    margin-bottom: 42px;
  }
  .view-more-box {
    position: static;
  }
  .view-more-box .circle-arrow-button {
    width: 58px;
    height: 58px;
  }
  /*-------------------------------------------
  .recruitment
  -------------------------------------------*/
  .recruitment {
    padding: 45px 0 82px;
    text-align: left;
  }
  .recruitment__text {
    margin-bottom: 28px;
  }
  .recruitment__content {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }
  .recruitment__btn {
    width: 341px;
    padding: 33px 10px;
    margin: 0 auto 19px;
  }
  .recruitment__btn:last-child {
    margin-top: 0;
    margin-bottom: 0;
  }
  /*-------------------------------------------
  .cta
  -------------------------------------------*/
  .cta__bg {
    height: 250px;
  }
  .cta__content {
    padding: 24px 0 29px;
    width: 90%;
  }
  .cta__text {
    line-height: 2.5;
  }
  .cta__btn {
    padding: 20px 10px;
    width: 200px;
  }
  /*-------------------------------------------
  .footer
  -------------------------------------------*/
  .footer {
    padding-bottom: 0;
  }
  .footer__wrapper {
    padding: 144px 0 24px;
    border-radius: 0;
  }
  .footer__content {
    display: block;
    text-align: center;
    margin-bottom: 44px;
  }
  .footer-nav {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 55px;
  }
  .footer-nav__item {
    margin-bottom: 20px;
  }
  .footer-nav__item:last-child {
    margin-bottom: 0;
  }
  .icon-box {
    position: static;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 29px;
  }
  .footer__copy-right {
    text-align: center;
  }
}