@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Sawarabi+Gothic&display=swap");
body {
  font-family: "Sawarabi Gothic", sans-serif;
}

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

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

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
  font-family: "Sawarabi Gothic", sans-serif;
  color: #3E4D64;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4545454545vw;
  }
}
@media (min-width: 1100px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.about__inner {
  margin-top: 58px;
  margin-top: 3.625rem;
}

@media screen and (min-width: 768px) {
  .about__wrapper {
    padding-top: 5.375rem;
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    padding-left: 3.3125rem;
    padding-right: 3.0625rem;
  }
}

.about__img {
  margin-top: 29px;
  margin-top: 1.8125rem;
  padding-top: 56%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about__img {
    padding-top: 66%;
    grid-column: 2/3;
    grid-row: 1/4;
    margin-top: 0.5625rem;
  }
}

.about__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .about__box {
    margin-top: 1rem;
  }
}

.about__text {
  margin-top: 26px;
  margin-top: 1.625rem;
  line-height: 1.62;
}
@media screen and (min-width: 768px) {
  .about__text {
    font-size: 1.25rem;
  }
}

.about__btn {
  margin-top: 38px;
  margin-top: 2.375rem;
}
@media screen and (min-width: 768px) {
  .about__btn {
    grid-column: 1/2;
    grid-row: 3/4;
    margin-top: 3.4375rem;
  }
}

/*==================================================
シャッ（背景色が伸びて出現）
===================================*/
/*背景色が伸びて出現（共通）*/
.bgextend {
  -webkit-animation-name: bgextendAnimeBase;
          animation-name: bgextendAnimeBase;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  -webkit-animation-name: bgextendAnimeSecond;
          animation-name: bgextendAnimeSecond;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*左から*/
.bgLRextend::before {
  -webkit-animation-name: bgLRextendAnime;
          animation-name: bgLRextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #69A673;
  /*伸びる背景色の設定*/
  top: 0;
}

@-webkit-keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
/*右から*/
.bgRLextend::before {
  -webkit-animation-name: bgRLextendAnime;
          animation-name: bgRLextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #69A673;
  /*伸びる背景色の設定*/
  top: 0;
}

@-webkit-keyframes bgRLextendAnime {
  0% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  100% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes bgRLextendAnime {
  0% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  100% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
/*下から*/
.bgDUextend::before {
  -webkit-animation-name: bgDUextendAnime;
          animation-name: bgDUextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666;
  /*伸びる背景色の設定*/
}

@-webkit-keyframes bgDUextendAnime {
  0% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  50% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  50.001% {
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  100% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}

@keyframes bgDUextendAnime {
  0% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  50% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  50.001% {
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  100% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}
/*上から*/
.bgUDextend::before {
  -webkit-animation-name: bgUDextendAnime;
          animation-name: bgUDextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666;
  /*伸びる背景色の設定*/
}

@-webkit-keyframes bgUDextendAnime {
  0% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  50% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  50.001% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}

@keyframes bgUDextendAnime {
  0% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  50% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  50.001% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgUDextendTrigger,
.bgDUextendTrigger,
.bgRLextendTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

.brand {
  position: relative;
}

@media screen and (min-width: 768px) {
  .brand::before {
    content: "";
    position: absolute;
    background: #69A673;
    left: 0;
    height: 117%;
    width: 40%;
    z-index: -1;
    top: -10%;
  }
}

.brand__inner {
  margin-top: 58px;
  margin-top: 3.625rem;
}
@media screen and (min-width: 768px) {
  .brand__inner {
    margin-top: 8.75rem;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    position: relative;
  }
}

.brand__title {
  grid-column: 2/3;
}
@media screen and (min-width: 768px) {
  .brand__title {
    margin-left: 2.25rem;
  }
}

.brand__img {
  margin-top: 95px;
  margin-top: 5.9375rem;
  margin: 5.9375rem calc(50% - 50vw) 0;
  aspect-ratio: 375/290;
}
@media screen and (min-width: 768px) {
  .brand__img {
    position: relative;
    aspect-ratio: 630/482;
    margin: 0;
    padding-left: 3.0625rem;
    padding-right: 0.5625rem;
    grid-row: 1/5;
    padding: 0.5625rem 0rem 1.6875rem 3.0625rem;
  }
}

.brand__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.brand__logo {
  margin-top: 54px;
  margin-top: 3.375rem;
}
@media screen and (min-width: 768px) {
  .brand__logo {
    margin-top: -1.75rem;
    width: 82%;
    padding-left: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .brand__textbox {
    grid-column: 2/3;
    padding: 0 4.1875rem 0 1.6875rem;
  }
}

.brand__text {
  padding: 0 10px;
  padding: 0 0.625rem;
  line-height: 1.62;
}
@media screen and (min-width: 768px) {
  .brand__text {
    font-size: 1.0625rem;
  }
}

.brand__btn {
  text-align: center;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .brand__btn {
    grid-column: 2/3;
    text-align: left;
    padding-left: 2.5625rem;
  }
}

.btn {
  display: inline-block;
  background: #69A673;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 500;
  padding: 10px 50px 9px 20px;
  padding: 0.625rem 3.125rem 0.5625rem 1.25rem;
  border-radius: 1.5625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .btn {
    letter-spacing: 0.04em;
    font-size: 1.5rem;
    border-radius: 2.5625rem;
    padding: 1.125rem 4rem 1.125rem 1.5625rem;
  }
}

.btn::before {
  /* くの字の表示設定 */
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 23px;
  right: 1.4375rem;
  width: 12px;
  width: 0.75rem;
  /* くの字を山なりに見た時、左側の長さ */
  height: 12px;
  height: 0.75rem;
  /* くの字を山なりに見た時、右側の長さ */
  border-top: 2px solid #fff;
  border-top: 0.125rem solid #fff;
  /* くの字を山なりに見た時、左側の太さと色 */
  border-right: 2px solid #fff;
  border-right: 0.125rem solid #fff;
  /* くの字を山なりに見た時、右側の太さと色 */
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  /* くの字の向き */
}

.btn-store {
  border: 1px solid #fff;
  border: 0.0625rem solid #fff;
  padding: 7px 43px 8px 25px;
  padding: 0.4375rem 2.6875rem 0.5rem 1.5625rem;
  letter-spacing: 0.035em;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .btn-store {
    font-size: 1.125rem;
    padding: 0.4375rem 2.6875rem 0.5rem 2.0625rem;
  }
}

@media screen and (min-width: 768px) {
  .btn-news {
    padding: 0.5rem 1.25rem 0.5rem 0rem;
    width: 10rem;
    font-size: 1.25rem;
  }
}

.btn-store--blue {
  background: none;
  padding: 7px 0 7px 25px;
  padding: 0.4375rem 0 0.4375rem 1.5625rem;
  border: solid;
  width: 225px;
  width: 14.0625rem;
}

.btn-store--blue::before {
  /* くの字の表示設定 */
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 23px;
  right: 1.4375rem;
  width: 12px;
  width: 0.75rem;
  /* くの字を山なりに見た時、左側の長さ */
  height: 12px;
  height: 0.75rem;
  /* くの字を山なりに見た時、右側の長さ */
  border-top: 2px solid #3E4D64;
  border-top: 0.125rem solid #3E4D64;
  /* くの字を山なりに見た時、左側の太さと色 */
  border-right: 2px solid #3E4D64;
  border-right: 0.125rem solid #3E4D64;
  /* くの字を山なりに見た時、右側の太さと色 */
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  /* くの字の向き */
}

.footer {
  background: #69A673;
  color: #fff;
}

.footer__inner {
  margin-top: 69px;
  margin-top: 4.3125rem;
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding: 0 1.5625rem;
    margin: 8.125rem auto 0;
  }
}

.footer-container {
  display: grid;
  grid-template-columns: 3fr 1fr;
}
@media screen and (min-width: 768px) {
  .footer-container {
    grid-template-columns: 0.365fr 1fr;
  }
}

.footer-container__title {
  width: 78%;
  padding-top: 10px;
  padding-top: 0.625rem;
  margin-left: -14px;
  margin-left: -0.875rem;
}
@media screen and (min-width: 768px) {
  .footer-container__title {
    width: 17rem;
    padding-top: 0.9375rem;
    padding-left: 0.625rem;
  }
}

.footer-container__nav {
  margin-top: 4px;
  margin-top: 0.25rem;
  grid-column: 1/2;
  grid-row: 2/3;
}
@media screen and (min-width: 768px) {
  .footer-container__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-column: 2/3;
    grid-row: 1/2;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: -0.875rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer-container__nav-list {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .footer-container__nav-list {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .footer-container__nav-list + .footer-container__nav-list {
    margin-right: -0.1875rem;
  }
}

.footer-container__nav-list:last-child {
  margin-top: 29px;
  margin-top: 1.8125rem;
}
@media screen and (min-width: 768px) {
  .footer-container__nav-list:last-child {
    margin-top: 0;
  }
}

.footer-copyright {
  grid-column: 1/2;
  grid-row: 3/4;
  font-size: 10px;
  font-size: 0.625rem;
  margin-top: 31px;
  margin-top: 1.9375rem;
  padding-bottom: 14px;
  padding-bottom: 0.875rem;
}
@media screen and (min-width: 768px) {
  .footer-copyright {
    grid-row: 3/4;
    grid-column: 1/3;
    font-size: 1rem;
    text-align: center;
    margin-top: 1.75rem;
  }
}

.footer__box {
  padding-left: 13px;
  padding-left: 0.8125rem;
  white-space: nowrap;
  margin-top: 28px;
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .footer__box {
    grid-column: 2/3;
    margin-top: -27px;
    justify-self: end;
    padding-right: 1.875rem;
    padding-left: 0;
  }
}

.footer__box-text {
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__box-text {
    font-size: 1rem;
  }
}

.footer__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 6px;
  margin-top: 0.375rem;
  margin-left: -5px;
  margin-left: -0.3125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__icon {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

.footer__icon + .footer__icon {
  text-align: right;
}

.fa-brands {
  font-size: 22px;
  font-size: 1.375rem;
}

.fa-instagram {
  font-size: 25px;
  font-size: 1.5625rem;
  padding-right: 2px;
  padding-right: 0.125rem;
}

/* ナビメニュー内 */
.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  color: #fff;
  background: url(../../images/common/drawer1.jpg) center center no-repeat;
  text-align: center;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 100%;
  height: 100%;
  visibility: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  padding-top: 50px;
}

.globalMenuSp__cover {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: #fff;
  display: block;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  padding-top: 50px;
}

.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.globalMenuSp__link {
  list-style-type: none;
  padding: 0;
  width: 100%;
}

.globalMenuSp__link + .globalMenuSp__link {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.globalMenuSp__link:last-child {
  padding-bottom: 0;
  border-bottom: none;
  margin-top: 44px;
  margin-top: 2.75rem;
  letter-spacing: 0.03em;
}

.globalMenuSp__link a {
  display: block;
  color: #3E4D64;
  text-decoration: none;
  opacity: 1;
}

/* ハンバーガーメニュー押してactiveクラスを付いたら表示する */
.globalMenuSp.active {
  -webkit-transform: translateX(24%);
          transform: translateX(24%);
  visibility: visible;
}

.globalMenuSp__cover.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  visibility: visible;
  opacity: 0.7;
}

.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 12px;
  right: 0.75rem;
  top: 1px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 23px;
  width: 1.4375rem;
  height: 2px;
  left: 6px;
  background: #69A673;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 18px;
  top: 1.125rem;
}

.hamburger span:nth-child(3) {
  top: 26px;
  top: 1.625rem;
}

/* ナビ開いてる時のバツボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  background: #69A673;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background: #69A673;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header {
  width: 100%;
  height: 40px;
  height: 2.5rem;
  position: fixed;
  z-index: 3;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .header {
    height: 5rem;
  }
}

.header__inner {
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: inherit;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.header__logo {
  width: 86px;
  width: 5.375rem;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 12.9%;
  }
}

@media screen and (min-width: 768px) {
  .header__nav-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__nav-item + .header__nav-item {
  margin-left: 27px;
  margin-left: 1.6875rem;
}

.header__nav-item:last-child {
  padding-right: 1px;
  margin-left: 33px;
  margin-left: 2.0625rem;
}

.icon-box {
  text-align: left;
  margin-top: 36px;
  margin-top: 2.25rem;
  padding-left: 38px;
  padding-left: 2.375rem;
}

.icon-box__text {
  color: #3E4D64;
}

.icon-box__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 17px;
  margin-top: 1.0625rem;
  padding-left: 2px;
  padding-left: 0.125rem;
}

.icon-box__icon + .icon-box__icon {
  margin-left: 26px;
  margin-left: 1.625rem;
}

.icon-box--icon {
  font-size: 24px;
  font-size: 1.5rem;
  color: #3E4D64;
}

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1150px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.join__inner {
  margin-top: 58px;
  margin-top: 3.625rem;
}

@media screen and (min-width: 768px) {
  .join__wrapper {
    padding-top: 3.4375rem;
    padding-left: 3.25rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
  }
}

@media screen and (min-width: 768px) {
  .join__title {
    grid-column: 2/3;
    padding-left: 1.5625rem;
  }
}

.join__img {
  margin-top: 28px;
  margin-top: 1.75rem;
  padding-top: 56%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .join__img {
    grid-row: 1/4;
    margin-top: 0.625rem;
    padding-top: 62.5%;
  }
}

.join__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.join__box {
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .join__text {
    font-size: 1.25rem;
    margin-top: 2.0625rem;
    padding: 0 4.875rem 0 1.5625rem;
  }
}

.join__btn {
  margin-top: 33px;
  margin-top: 2.0625rem;
}
@media screen and (min-width: 768px) {
  .join__btn {
    grid-column: 2/3;
    padding-left: 1.5625rem;
  }
}

#menu {
  text-align: left;
  padding: 60px 0 0 35px;
  padding: 3.75rem 0 0 2.1875rem;
}

@media screen and (min-width: 768px) {
  .news__inner {
    display: grid;
    grid-template-columns: 1fr 2.4fr;
  }
}

.news__title {
  font-size: 30px;
  font-size: 1.875rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .news__title {
    padding-left: 3.1875rem;
    padding-top: 0.1875rem;
  }
}

.news__subtitle {
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.section-header__title {
  font-size: 30px;
  font-size: 1.875rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .section-header__title {
    font-size: 2.75rem;
    font-weight: 600;
  }
}

.section-header__title::after {
  content: "";
  display: block;
  width: 20%;
  border-bottom: 4px solid #3E4D64;
  position: absolute;
  margin-top: 2px;
  margin-top: 0.125rem;
}
@media screen and (min-width: 768px) {
  .section-header__title::after {
    width: 5.1%;
  }
}

.section-header__subtitle {
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .section-header__subtitle {
    font-size: 1.75rem;
    margin-top: 1.125rem;
  }
}

.section-header__title--news {
  font-size: 30px;
  font-size: 1.875rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .section-header__title--news {
    font-size: 2.75rem;
    font-weight: 600;
  }
}

.section-header__title--news::after {
  content: "";
  display: block;
  width: 20%;
  border-bottom: 4px solid #3E4D64;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .section-header__title--news::after {
    width: 5.1%;
  }
}

.section-header__subtitle--news {
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 10px;
  margin-top: 0.625rem;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .section-header__subtitle--news {
    font-size: 1.75rem;
    margin-top: 1.125rem;
  }
}

/*========= 流れるテキスト ===============*/
/*全共通*/
.slide-in {
  overflow: hidden;
  display: inline-block;
  width: 100%;
}

.slide-in_inner {
  display: inline-block;
}

/*左右のアニメーション*/
.leftAnime {
  opacity: 0;
  /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  -webkit-animation-name: slideTextX100;
          animation-name: slideTextX100;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  position: absolute;
  height: 37%;
  top: 13%;
}
@media screen and (min-width: 768px) {
  .slideAnimeLeftRight {
    top: auto;
    top: initial;
  }
}

@-webkit-keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  -webkit-animation-name: slideTextX-100;
          animation-name: slideTextX-100;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.test {
  font-size: 20px;
  font-size: 1.25rem;
  background-color: #111;
  color: #fff;
}

.main-top {
  padding-top: 40px;
  padding-top: 2.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .main-top {
    padding-top: 9.625rem;
  }
}

.main-top::after {
  content: "";
  display: block;
  width: 49.5%;
  border-bottom: 4px solid #69A673;
  position: absolute;
  bottom: 49.7%;
}
@media screen and (min-width: 768px) {
  .main-top::after {
    width: 33%;
    border-bottom: 9px solid #69A673;
    bottom: 33%;
  }
}

.main-top__sub-img {
  padding-top: 77.078125%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .main-top__sub-img {
    display: none;
  }
}

.main-top__sub-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-top__texts {
  position: relative;
  color: #3E4D64;
  white-space: nowrap;
}

.main-top__title {
  color: #3E4D64;
  white-space: nowrap;
  font-size: 32px;
  font-size: 2rem;
  position: absolute;
  top: 30%;
  left: 23%;
}
@media screen and (min-width: 768px) {
  .main-top__title {
    z-index: 1;
    font-size: 3.375rem;
    top: 38%;
    left: 15%;
    -webkit-transform: translateX(0.4375rem);
            transform: translateX(0.4375rem);
  }
}

.main-top__text {
  color: #3E4D64;
  white-space: nowrap;
  font-size: 20px;
  font-size: 1.25rem;
  position: absolute;
  top: 77%;
  left: 23%;
}
@media screen and (min-width: 768px) {
  .main-top__text {
    font-size: 1.5625rem;
    z-index: 1;
    top: 74%;
    left: 15%;
    -webkit-transform: translate(0.4375rem, 0.0625rem);
            transform: translate(0.4375rem, 0.0625rem);
  }
}

.main-top__img {
  padding-top: 60%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .main-top__img {
    padding-top: 34.027778%;
  }
}

.main-top__img img {
  position: absolute;
  top: 35%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.news {
  margin-top: -10px;
  margin-top: -0.625rem;
}

.top-news__blocks {
  margin-top: 39px;
  margin-top: 2.4375rem;
}
@media screen and (min-width: 768px) {
  .top-news__blocks {
    grid-column: 2/3;
    grid-row: 1/3;
    margin-top: 0.8125rem;
  }
}

.top-news__block {
  border-bottom: 1px solid #E5E5E5;
  border-bottom: 0.0625rem solid #E5E5E5;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

.top-news__block + .top-news__block {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .top-news__block + .top-news__block {
    margin-top: 0.8125rem;
  }
}

.top-news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .top-news__item {
    font-size: 0.9375rem;
  }
}

.top-news__label {
  margin-left: 36px;
  margin-left: 2.25rem;
  background-color: rgba(105, 166, 115, .15);
  padding: 0 6px;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .top-news__label {
    margin-left: 3.25rem;
  }
}

.top-news__title {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .top-news__title {
    font-size: 1rem;
  }
}

.top-news__btn {
  margin-top: 23px;
  margin-top: 1.4375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-news__btn {
    margin-top: -1.4375rem;
    padding-right: 4rem;
  }
}
/*# sourceMappingURL=styles.css.map */
