@charset "UTF-8";

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 16px;
}

* {
  font-family: "Noto Sans JP", sans-serif;
  color: #3e3e3e;
  letter-spacing: 0;
}

main {
  max-width: 1440px;
  margin: 0 auto;
}

img {
  width: 100%;
  height: auto;
}

.footer {
  background-color: #31452d;
  padding: 80px 0 120px 0;
}

.footer__logo {
  width: 82px;
  margin: 0 auto;
}

.footer__wrap {
  text-align: center;
}

.footer__wrap p {
  color: #fff;
  margin-top: 12px;
}

.footer__wrap p span {
  color: #fff;
  margin-left: 5px;
}

.address {
  font-family: "Lora", serif;
}

.tell {
  font-family: "Lora", serif;
}

.mail {
  font-family: "Lora", serif;
}

.footer__nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 60px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__nav li {
  color: #fff;
  padding: 0 20px;
}

.footer__nav li:not(:first-child) {
  border-left: 1px solid #fff;
}

.footer__nav li:hover {
  background-color: #fff;
  color: #31452d;
}

.header {
  background-color: rgba(255, 255, 255, 0.7);
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
}

.header__inner {
  position: relative;
  max-width: 1040px;
  width: 80%;
  height: 80px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.header__nav li {
  padding-right: 2vw;
  padding-left: 2vw;
  border-left: 1px solid #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header__nav li:hover {
  background-color: #fff;
}

.header__nav li a span {
  display: block;
  font-size: 12px;
  color: #b69b04;
  text-align: center;
}

.header__nav li:first-of-type {
  margin-left: 2vw;
}

.header__contact {
  margin-left: 60px;
  color: #fff;
  background-color: #31452d;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__contact:hover {
  opacity: 0.7;
}

.header__contact a {
  display: inline-block;
  padding: 10px;
}

.header__contact a span {
  display: block;
  font-size: 12px;
  color: #b69b04;
  text-align: center;
}

.hamburger {
  display: none;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #3e3e3e;
}

.hamburger span:first-of-type {
  /* ハンバーガーメニューの1番目の線 */
  top: 0;
}

.hamburger span:nth-of-type(2) {
  /* ハンバーガーメニューの2番目の線 */
  top: 50%;
}

.hamburger span:last-of-type {
  /* ハンバーガーメニューの3番目の線 */
  top: 100%;
}

.hamburger__menu {
  display: none;
}

.hamburger__menu li a {
  display: inline-block;
  padding: 10px 20px;
}

.hamburger__menu li a:hover {
  background-color: #fff;
}

.hamburger__menu li + li {
  margin-top: 40px;
}

.hamburger__menu.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.main-visual {
  width: 100%;
  height: 900px;
  background-image: url(../img/top-image.webp);
  background-size: cover;
  -webkit-animation: fadeIn 1s;
          animation: fadeIn 1s;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.main-visual__inner {
  max-width: 1040px;
  margin: 0 auto;
  height: inherit;
  position: relative;
}

.main-visual__text {
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 3.5rem;
  color: #fff;
  background-color: rgba(51, 51, 51, 0.2);
  -webkit-animation-name: slideInRight;
          animation-name: slideInRight;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

.main-visual__text span {
  display: block;
  font-size: 2.25rem;
  color: #fff;
  padding: 16px 0;
  border-bottom: 1px solid #fff;
}

@-webkit-keyframes slideInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(150px);
            transform: translateX(150px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(150px);
            transform: translateX(150px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.concept {
  padding-top: 119px;
}

.concept__inner {
  position: relative;
}

.title {
  font-size: 2rem;
  text-align: center;
}

.title-en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 15px;
  font-size: 1rem;
  border-bottom: 1px solid #b69b04;
}

.concept__img {
  margin-top: 32px;
  width: 77.7%;
  margin-left: auto;
}

.concept__text {
  width: 44.4%;
  background-color: #31452d;
  color: #fff;
  padding: 3.4vw;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(10%);
          transform: translateY(10%);
  line-height: 2.5;
}

.concept__text h3 {
  color: #fff;
  font-size: 1.5rem;
}

.concept__text p {
  color: #fff;
}

.concept__text-link {
  text-align: end;
  padding-right: 20px;
  position: relative;
}

.concept__text-link a {
  color: #fff;
  display: inline-block;
}

.concept__text-link::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 50%;
  background-image: url(../img/arrow-w-icon.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

.works {
  padding-top: 150px;
  padding-bottom: 120px;
  position: relative;
}

.works__inner {
  max-width: 1040px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.card__wrap {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.card__wrap::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  -webkit-transform: translateY(15%);
          transform: translateY(15%);
  width: 70%;
  height: 53%;
  background-color: #eeead0;
  z-index: -1;
}

.card__body {
  padding: 24px 24px 0;
  position: relative;
}

.card__body::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 10px;
  width: 1px;
  height: 160px;
  background-color: #3e3e3e;
}

.card__title {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.card__link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.card__link:hover {
  background-color: gainsboro;
}

.card__link span {
  display: inline-block;
  margin-left: 6px;
}

.btn__area {
  text-align: center;
}

.btn__area a {
  display: inline-block;
  color: #31452d;
  border: 1px solid #31452d;
  padding: 10px 30px;
}

.btn__area a:hover {
  background-color: gainsboro;
}

.news__inner {
  max-width: 1040px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.news__wrap {
  margin-top: 40px;
  padding-bottom: 40px;
}

.news__wrap li:not(:first-child) {
  margin-top: 40px;
}

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

.news__item span {
  font-family: "Lora", serif;
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12%;
          flex: 0 0 12%;
  border-right: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
}

.news__date {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  text-align: center;
  font-family: "Lora", serif;
}

.news__item-text {
  margin-left: 25px;
}

.contact {
  background-color: #eeead0;
  padding: 120px 0;
}

.contact__items {
  max-width: 70%;
  margin: 40px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact__item {
  width: 33.3%;
  text-align: center;
  padding: 20px 0;
}

.contact__item:nth-of-type(2) {
  border-right: 1px solid #3e3e3e;
  border-left: 1px solid #3e3e3e;
}

.contact__item-img {
  width: 7%;
  height: 20px;
  margin: 0 auto;
}

.contact__item-text {
  margin-top: 18px;
  font-size: 1.25rem;
}

.contact__item-btn {
  margin-top: 23px;
}

.contact__item-btn:hover {
  opacity: 0.7;
}

.contact__item-btn a {
  display: inline-block;
  padding: 20px 30px;
}

.yellow {
  background-color: #b69b04;
  color: #fff;
}

.green {
  background-color: #31452d;
  color: #fff;
}

.contact__item-tell {
  font-size: 1.5rem;
  margin-top: 23px;
}

.contact__item-tell a {
  font-family: "Lora", serif;
}

.contact__item-tell span {
  margin-top: 3px;
  display: block;
  font-size: 0.75rem;
}

@media screen and (max-width: 1366px) {
  html {
    font-size: 1.1713030747vw;
  }
}

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

  .header__contact {
    display: none;
  }

  .hamburger {
    display: block;
    position: absolute;
    width: 40px;
    height: 25px;
    top: 25px;
    right: 20px;
  }

  .hamburger__menu {
    display: block;
    top: 80px;
    width: 100%;
    height: 100vh;
    text-align: center;
    background-color: darkgrey;
    padding: 60px 0;
    -webkit-transform: translateX(101%);
            transform: translateX(101%);
    position: fixed;
    z-index: 10;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 4.2666666667vw;
  }

  .footer__nav {
    display: block;
    text-align: center;
    width: 90%;
  }

  .footer__nav li {
    padding: 20px 0;
  }

  .footer__nav li:not(:first-child) {
    border-left: none;
    border-top: 1px solid #fff;
  }

  .main-visual {
    background-image: url(../img/top-image-sp.webp);
    background-repeat: no-repeat;
  }

  .main-visual__text {
    font-size: 2rem;
  }

  .main-visual__text span {
    font-size: 1.5rem;
  }

  .concept__img {
    width: 100%;
    height: auto;
  }

  .concept__text {
    position: initial;
    width: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  .card__wrap {
    width: 90%;
    margin: 32px auto 0;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .card__wrap::after {
    -webkit-transform: translateY(28%);
            transform: translateY(28%);
  }

  .news__inner {
    width: 90%;
  }

  .news__item {
    display: block;
  }

  .news__item span {
    border: none;
    width: 15%;
  }

  .news__item + .news__item {
    border-top: 1px solid #000;
    padding-top: 12px;
  }

  .news__date {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .news__item-text {
    margin-top: 12px;
    margin-left: 0;
  }

  .contact__items {
    display: block;
  }

  .contact__item {
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */