@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  font-size: 14.4px;
  color: #121212;
  font-family: Meiryo;
}

img {
  vertical-align: bottom;
}

/* ========================================
共通（ベースルール）
======================================== */
a {
  text-decoration: none;
  color: inherit;
}

/* ========================================
共通（モジュール）
======================================== */
.lv2-heading {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .lv2-heading {
    font-size: 36px;
    margin-bottom: 30px;
  }
}
.card {
  box-shadow: 0px 0px 8px #00000010;
}
.card__img-wrapper {
  width: 100%;
}
.card__img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__body {
  padding: 16px;
  border: 1px solid #ccc;
}
.card__title {
  font-size: 12px;
  margin-bottom: 20px;
}
.card__text {
  margin-bottom: 27px;
}
.card__date {
  text-align: right;
}

.slider__item {
  padding: 0 10px;
}

@media screen and (min-width: 768px) {
  .slider__item {
    padding: 0 30px;
  }
}
.is-fadein {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

/* ========================================
ヘッダー
======================================== */
.header {
  position: fixed;
  z-index: 1;
  height: 80px;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 40px;
  background: #fff;
}
.header__title {
  font-size: 24px;
}
.header__btn {
  position: relative;
  z-index: 1000;
  margin-left: auto;
  width: 30px;
  height: 20px;
}
.header__btn:before, .header__btn:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  background: currentColor;
  transform: translateY(10px);
  transition: 0.3s;
}
.header__btn:before {
  transform: translateY(-10px);
  box-shadow: 0 10px currentColor;
}
.header.is-active .header__btn {
  color: #fff;
}
.header.is-active .header__btn:before, .header.is-active .header__btn:after {
  transform: rotate(-45deg);
}
.header.is-active .header__btn:before {
  transform: rotate(45deg);
  box-shadow: none;
}
.header.is-active .nav {
  left: 0;
}
.header.is-active .mask {
  display: block;
}

/* ========================================
ナビゲーション
======================================== */
.nav {
  position: fixed;
  z-index: 10;
  left: -300px;
  top: 0;
  height: 100%;
  width: 300px;
  background: #121212;
  color: #fff;
  padding: 60px 25px;
  transition: 0.3s;
}
.nav__item {
  padding: 20px 0;
  border-top: 1px solid #fff;
}
.nav__item:last-child {
  border-bottom: 1px solid #fff;
}
.nav__sns-list {
  margin-top: 90px;
}
.nav__sns-item {
  margin-bottom: 10px;
}

/* ========================================
マスク
======================================== */
.mask {
  display: none;
  position: fixed;
  background: #12121299;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ========================================
ヒーロー
======================================== */
.hiro {
  margin-top: 80px;
}
.hiro__img-wrapper {
  width: 100%;
  height: calc(100vh - 80px);
  overflow: hidden;
}
.hiro__item {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: -1;
}

/* ========================================
PICK UP
======================================== */
.pickup__head {
  margin-top: 80px;
}
.pickup__slider {
  width: 100%;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .pickup__head {
    margin-top: 100px;
  }
}
/* ========================================
FEATURE
======================================== */
.feature {
  max-width: 1240px;
  padding: 0 16px;
  margin: 0 auto;
}
.feature__title {
  margin-top: 100px;
}
.feature__body {
  padding: 0 16px;
}
.feature__item {
  margin-bottom: 26px;
  box-shadow: 0 0 8px 4px #ccc;
}
.feature__img {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

@media screen and (min-width: 768px) {
  .feature__body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 26px;
  }
}
/* ========================================
CONTACT
======================================== */
.contact {
  margin-top: 90px;
  background: #121212;
  color: #fff;
}
.contact__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 90px 16px;
}
.contact__label {
  display: block;
}
.contact__text {
  margin-bottom: 30px;
}
.contact__input {
  display: block;
  margin-bottom: 30px;
  height: 44px;
  width: 100%;
}
.contact__inputarea {
  margin-bottom: 30px;
  height: 68px;
  width: 100%;
  resize: vertical;
}
.contact__btn {
  width: 100%;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  background: #121212;
  color: #fff;
}
.contact__btn:hover {
  color: #121212;
  background: #fff;
}

@media screen and (min-width: 768px) {
  .contact {
    margin-top: 50px;
  }
  .contact__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 131px;
  }
  .contact__btn {
    width: 200px;
  }
}
/* ========================================
フッター
======================================== */
.footer {
  background: #121212;
  color: #fff;
  padding-bottom: 10px;
}
.footer__text {
  text-align: center;
  font-size: 12px;
}
/*# sourceMappingURL=style.css.map */