@charset "UTF-8";
html {
  font-size: 16px;
}

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

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

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

*,
*::before,
*::after {
  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]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* 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: 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 {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 74px;
  background-color: #F7F7EE;
}

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

.header__name {
  font-size: 26px;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin-right: auto;
  color: #2B3F2F;
  height: inherit;
}
@media screen and (max-width: 768px) {
  .header__name {
    font-size: 24px;
  }
}

.header__nav {
  height: inherit;
}

.header__items {
  display: flex;
  align-items: center;
  height: inherit;
}

.header__item {
  height: inherit;
}

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

.header__item--contact {
  padding-top: 10px;
  margin-left: 35px;
}

.hamburger {
  position: relative;
  z-index: 9999;
  top: 30px;
  right: 15px;
  width: 25px;
  height: inherit;
  cursor: pointer;
}

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

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

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

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

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

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

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

.hamburger.is-active span:nth-child(3) {
  top: 15px;
  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: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: inherit;
}

.drawer-menu__items {
  display: flex;
  flex-direction: column;
  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: 0.875;
  color: #2B3F2F;
  font-weight: 500;
  padding: 25px 50px 25px;
}

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

.mv {
  width: 100%;
  height: 100vh;
  background-image: url(./../images/fv.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: -74px;
}

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

.mv__title {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 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 {
  padding: 125px 0 115px;
}
@media screen and (max-width: 768px) {
  .vision {
    padding: 120px 0 133px;
  }
}

.vision__title {
  margin-top: 50px;
}

.vision__text {
  margin-top: 30px;
}

.service {
  padding: 90px 0 100px;
  background-color: #F7F7EE;
}

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

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

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

.news {
  padding: 80px 0 109px;
}
@media screen and (max-width: 768px) {
  .news {
    padding: 85px 0 90px;
  }
}

.news__items {
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  .news__items {
    margin-top: 50px;
  }
}

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

.news-item {
  display: flex;
  padding-bottom: 25px;
  border-bottom: 1px solid #F7F7DB;
}
@media screen and (max-width: 768px) {
  .news-item {
    flex-direction: column;
    padding-bottom: 20px;
  }
}

.news-item a {
  flex-direction: row;
  width: 100%;
  height: 100%;
  color: #2B3F2F;
}

.news-item a:hover {
  opacity: 0.7;
}

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

.news-item__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  letter-spacing: 0.07em;
  margin-left: 50px;
  line-height: 1.667;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 768px) {
  .news-item__title {
    padding-top: 10px;
  }
}
.news-item__title a {
  color: #2B3F2F;
}
@media screen and (max-width: 768px) {
  .news-item__title {
    margin-left: 0;
  }
}

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

.contact {
  width: 100%;
  max-width: 100%;
  padding-top: 140px;
  padding-bottom: 140px;
  background-image: url(./../images/bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .contact {
    background-image: url(./../images/bg-sp.jpg);
  }
}

.contact__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

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

.footer__copyright {
  font-size: 14px;
  letter-spacing: 0.05em;
  display: block;
  text-align: center;
  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-left: 15px;
    padding-right: 15px;
  }
}

.heading {
  position: relative;
  font-size: 36px;
  font-weight: 500;
  padding-bottom: 17px;
  letter-spacing: 0.05em;
  color: #2B3F2F;
}
@media screen and (max-width: 768px) {
  .heading {
    padding-bottom: 13px;
  }
}

.heading::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 34px;
  height: 4px;
  border-radius: 2px;
  background-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%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .heading.heading--center::after {
    left: 0;
    transform: translateX(0);
  }
}

.text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  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: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  padding: 15px;
  letter-spacing: 0.05em;
  color: #fff;
  border-radius: 4px;
  background-color: #2B3F2F;
  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;
  }
}/*# sourceMappingURL=style.css.map */