@charset "UTF-8";
/* ブレークポイント変数
-------------------------------------------*/
/* カラー変数
-------------------------------------------*/
/* font-family
-------------------------------------------*/
/* font-weight
-------------------------------------------*/
html {
  font-size: 16px;
}

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

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

/* リセットCSS
===================================== */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

ol,
ul {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  width: 100%;
}

article > * + * {
  margin-top: 1rem;
}

input,
button,
textarea,
select {
  font: inherit;
}

img:not([alt]) {
  -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;
}

/* header
-------------------------------------------*/
.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 74px;
  background-color: #F7F7EE;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  padding: 0 120px;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    padding: 0 25px;
  }
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 0 15px;
  }
}

.header__logo {
  font-size: 26px;
  font-weight: 500;
  color: #2B3F2F;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .header__logo {
    font-size: 24px;
  }
}

.header__nav {
  margin-left: auto;
  height: inherit;
}

.header__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.header__item {
  height: inherit;
}

.header__item + .header__item {
  margin-left: 66px;
}

.header__link {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #2B3F2F;
  height: inherit;
}

.header__contact {
  margin-left: 66px;
}

/* ハンバーガー
-------------------------------------------*/
.hamburger {
  position: fixed;
  z-index: 9999;
  top: 30px;
  right: 15px;
  width: 25px;
  height: 16px;
  cursor: pointer;
}

.hamburger.is-active {
  right: 20px;
}

.hamburger span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #2B3F2F;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.hamburger span:first-child {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.is-active span:first-child {
  top: 15px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* ドロワー
-------------------------------------------*/
.drawer-menu {
  position: absolute;
  z-index: 5000;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background-color: #F7F7EE;
}

.drawer-menu__inner {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: inherit;
}

.drawer-menu__items {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.drawer-menu__item {
  display: inline-block;
}

.drawer-menu__item:not(:first-child) {
  margin-top: 50px;
}

.drawer-menu__link {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.875;
  color: #2B3F2F;
  font-weight: 500;
}

.drawer-menu__contact {
  margin-top: 48px;
}

/* メインビュー
-------------------------------------------*/
.mv {
  width: 100%;
  height: 100vh;
  background-image: url(/img/fv-bgi.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.mv__inner {
  position: relative;
  width: 100%;
  height: inherit;
}

.mv__title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  font-size: 48px;
  line-height: 1.375;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .mv__title {
    font-size: 30px;
    line-height: 1.467;
  }
}

/* vision
-------------------------------------------*/
.vision {
  padding: 105px 0 91px;
}
@media screen and (max-width: 768px) {
  .vision {
    padding-bottom: 100px;
  }
}

.vision__title {
  margin-top: 50px;
}

.vision__text {
  margin-top: 30px;
}

/* service
-------------------------------------------*/
.service {
  padding: 105px 0 100px;
  background-color: #F7F7EE;
}

.service__cards {
  margin-top: 50px;
  display: grid;
  -webkit-column-gap: 35px;
     -moz-column-gap: 35px;
          column-gap: 35px;
  row-gap: 46px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
@media screen and (max-width: 768px) {
  .service__cards {
    padding: 0 12.5px;
  }
}

.card__img {
  aspect-ratio: 4/3;
}

.card__title {
  font-size: 16px;
  margin-top: 20px;
  text-align: center;
  color: #2B3F2F;
  line-height: 1.562;
}
@media screen and (max-width: 768px) {
  .card__title {
    margin-top: 15px;
  }
}

/* news
-------------------------------------------*/
.news {
  padding: 101px 0 100px;
}
@media screen and (max-width: 768px) {
  .news {
    padding: 111px 0 90px;
  }
}

.news__items {
  margin-top: 50px;
}

.news__item:not(:first-child) {
  margin-top: 30px;
}

.news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 25px;
  border-bottom: 1px solid #E7E7DB;
}
@media screen and (max-width: 768px) {
  .news__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 20px;
  }
}

.news-item__date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.786;
}

.news-item__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 1.667;
  margin-left: 40px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 768px) {
  .news-item__title {
    margin-left: 0;
  }
}

.news-item__date,
.news-item__title {
  color: #2B3F2F;
}

/* contact
-------------------------------------------*/
.contact {
  width: 100%;
  height: 340px;
  background-image: url(/img/contact-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .contact {
    background-image: url(/img/contact-bg-sp.jpg);
  }
}

.contact__inner {
  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;
  height: inherit;
  width: 100%;
}

/* footer
-------------------------------------------*/
.footer {
  padding: 29px 25px;
  background-color: #2B2B21;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 19.5px 15px;
  }
}

.footer__copyright {
  font-size: 14px;
  display: block;
  text-align: center;
  letter-spacing: 0.05em;
  color: #fff;
}

/* 共通パーツ
-------------------------------------------*/
.inner {
  width: 100%;
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 25px;
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.heading {
  position: relative;
  font-size: 36px;
  font-weight: 500;
  padding-bottom: 17px;
  letter-spacing: 0.05em;
  color: #2B3F2F;
}

.heading.heading--center {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .heading.heading--center {
    text-align: left;
  }
}

.heading.heading--center::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .heading.heading--center::after {
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 34px;
  height: 4px;
  border-radius: 2px;
  background-color: #2B3F2F;
}

.text {
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1.875;
  color: #2B3F2F;
}

.text.text--large {
  font-size: 24px;
  line-height: 1.833;
}
@media screen and (max-width: 768px) {
  .text.text--large {
    font-size: 20px;
  }
}

.contact-button {
  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: 130px;
  padding: 15px;
  letter-spacing: 0.05em;
  color: #fff;
  border-radius: 4px;
  background-color: #2B3F2F;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.contact-button:hover {
  opacity: 1;
  background-color: #4D6452;
}

.contact-button.contact-button--wide {
  font-size: 20px;
  width: 220px;
}
@media screen and (max-width: 768px) {
  .contact-button.contact-button--wide {
    font-size: 16px;
  }
}

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

.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}

.js-fadeIn {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}/*# sourceMappingURL=style.css.map */