@import url("https://fonts.googleapis.com/css2?family=Lora&family=Noto+Serif+JP:wght@300;400;500&display=swap");
@media (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
@media (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

body {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  background: #fff;
}

img {
  width: 100%;
  vertical-align: bottom;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-head {
  text-align: center;
  padding-bottom: 14px;
  position: relative;
  margin-top: 120px;
}
@media (max-width: 767px) {
  .section-head {
    margin-top: 80px;
  }
}
.section-head::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 1px;
  background: #b69b04;
}
.section-head .section-head__text {
  font-size: 32px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 6px;
}
@media (max-width: 767px) {
  .section-head .section-head__text {
    font-size: 24px;
    font-weight: 400;
  }
}
.section-head .section-head__sub {
  line-height: 1;
  font-family: "Lora", serif;
  color: #31452d;
  display: block;
}
@media (max-width: 767px) {
  .section-head .section-head__sub {
    font-size: 14px;
  }
}

.more-info {
  width: 108px;
  display: block;
  position: relative;
  transition: 0.3s;
}
.more-info::after {
  position: absolute;
  content: "";
  top: 53%;
  left: 85px;
  transform: translateY(-50%);
  background: url(../img/arrow-w-icon@2x.svg) no-repeat center center/cover;
  width: 16px;
  height: 16px;
}
@media (min-width: 1080px) {
  .more-info:hover {
    opacity: 0.7;
  }
}

.util-button a {
  display: block;
  width: 200px;
  height: 48px;
  border: solid 1px #31452d;
  text-align: center;
  line-height: 48px;
  margin: 0 auto;
}
@media (min-width: 1080px) {
  .util-button a {
    transition: 0.3s;
  }
  .util-button a:hover {
    background: #31452d;
    color: #fff;
  }
}
@media (max-width: 767px) {
  .util-button a {
    width: 152px;
  }
}

.header {
  position: fixed;
  width: 100%;
  height: 80px;
  z-index: 20;
  background: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .header {
    height: 64px;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
}
@media (max-width: 1079px) {
  .header-inner {
    justify-content: space-between;
  }
}

.header-logo {
  width: 140px;
}
@media (max-width: 767px) {
  .header-logo {
    width: 114px;
  }
}
.header-logo a {
  display: block;
  height: inherit;
}

@media (max-width: 1079px) {
  .header-nav {
    display: none;
  }
}

.header-nav__lists {
  display: flex;
  margin-left: 31px;
}

.header-nav__list {
  text-align: center;
  padding-top: 24px;
  padding-bottom: 24px;
  height: 80px;
  transition: 0.3s;
}
.header-nav__list:not(:last-child) {
  padding-right: 31px;
  padding-left: 31px;
  position: relative;
}
.header-nav__list:not(:last-child)::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 38px;
  background: #333;
}
.header-nav__list:nth-child(5) {
  padding-right: 51px;
}
.header-nav__list:nth-child(6) {
  padding-right: 35px;
  padding-left: 35px;
  color: #fff;
  background: #31452d;
}
.header-nav__list a {
  display: block;
  line-height: 1;
}
.header-nav__list span {
  display: block;
  font-size: 12px;
  color: #b69b04;
  font-family: "Lora", serif;
  line-height: 1;
  margin-top: 7px;
}
@media (min-width: 1080px) {
  .header-nav__list:hover {
    opacity: 0.6;
  }
}

.drawer-icon {
  position: fixed;
  z-index: 9999;
  top: 25px;
  right: 20px;
  display: none;
  transition: transform 0.5s ease 0s;
  cursor: pointer;
}
@media (max-width: 1079px) {
  .drawer-icon {
    display: block;
  }
}
@media (max-width: 767px) {
  .drawer-icon {
    top: 22px;
  }
}
.drawer-icon.is-active {
  transform: translateX(-200px);
  right: -178px;
}
.drawer-icon.is-active .drawer-icon__bars1 {
  top: 8px;
  transform: rotate(-45deg);
}
.drawer-icon.is-active .drawer-icon__bars1 {
  background: #fff;
}
.drawer-icon.is-active .drawer-icon__bars2 {
  top: 8px;
  display: none;
}
.drawer-icon.is-active .drawer-icon__bars3 {
  top: 8px;
  transform: rotate(45deg);
  color: #fff;
  background: #fff;
}

.drawer-icon__bars {
  width: 36px;
  height: 30px;
  display: block;
  position: relative;
}
@media (max-width: 767px) {
  .drawer-icon__bars {
    height: 20px;
    width: 24px;
  }
}

.drawer-icon__bars1,
.drawer-icon__bars2,
.drawer-icon__bars3 {
  width: 34px;
  height: 2px;
  top: 0;
  left: 0;
  position: absolute;
  background: #31452d;
}
@media (max-width: 767px) {
  .drawer-icon__bars1,
.drawer-icon__bars2,
.drawer-icon__bars3 {
    width: 24px;
    height: 2px;
  }
}

.drawer-icon__bars1 {
  top: 0;
}

.drawer-icon__bars2 {
  top: 14px;
}
@media (max-width: 767px) {
  .drawer-icon__bars2 {
    top: 9px;
  }
}

.drawer-icon__bars3 {
  top: 28px;
}
@media (max-width: 767px) {
  .drawer-icon__bars3 {
    top: 18px;
  }
}

.drawer-content {
  width: 50%;
  height: 100%;
  background: #31452d;
  color: #fff;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 299;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
}
.drawer-content.is-active {
  transform: translateX(0);
}

@media (min-width: 768px) and (max-width: 1079px) {
  .drawer-content__items {
    padding: 120px 60px 171px;
  }
}
@media (max-width: 767px) {
  .drawer-content__items {
    padding: 100px 30px 171px;
  }
}

.drawer-content__item {
  border-bottom: 1px dotted #fff;
}
.drawer-content__item a {
  display: block;
  color: #fff;
  padding: 18px 0;
  position: relative;
}
.drawer-content__item a img {
  width: 24px;
  margin-right: 14px;
}
.drawer-content__item a::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.main-visual {
  height: 900px;
  background: url(../img/top-image@2x.jpg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .main-visual {
    background: url(../img/top-image-sp@2x.jpg) no-repeat center center/cover;
  }
}

.main-visual__inner {
  position: relative;
  height: inherit;
}

.main-visual__text {
  position: absolute;
  content: "";
  top: 54%;
  left: 0;
  transform: translateY(-48%);
}
.main-visual__text img {
  max-width: 960px;
}

.concept {
  position: relative;
}

.concept-image {
  margin-top: 32px;
}
.concept-image img {
  width: 77.778%;
  display: block;
  margin-left: auto;
}
@media (max-width: 767px) {
  .concept-image img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .concept-image {
    margin-top: 24px;
  }
}

.concept-body {
  position: absolute;
  content: "";
  bottom: -31px;
  left: 0;
  width: 44.444%;
  height: 56.379%;
  min-width: 640px;
  min-height: 327px;
  color: #fff;
  background: #31452d;
  padding: 4.444% 3.333%;
}
@media (max-width: 1079px) {
  .concept-body {
    position: static;
  }
}
@media (max-width: 767px) {
  .concept-body {
    min-width: auto;
    width: 100%;
    padding: 56px 20px;
  }
}
.concept-body .concept-body__title {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 22px;
}
@media (max-width: 767px) {
  .concept-body .concept-body__title {
    font-size: 20px;
    line-height: 1;
  }
}
.concept-body p {
  line-height: 2.5;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .concept-body p {
    line-height: 2;
  }
}
.concept-body .concept-more-info {
  margin-left: auto;
}

.works {
  position: relative;
  height: 100%;
}

.works-bg {
  position: absolute;
  content: "";
  top: 224px;
  right: 0;
  width: 68.472%;
  height: 67.371%;
  background: #eeead0;
}
@media (max-width: 767px) {
  .works-bg {
    top: 218px;
    width: 74.5%;
    height: 64%;
  }
}

.works-head {
  margin-top: 150px;
}
@media (max-width: 767px) {
  .works-head {
    margin-top: 80px;
  }
}

.works-items {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .works-items {
    margin-top: 24px;
  }
}

.works-item {
  width: 30.77%;
}
@media (max-width: 1079px) {
  .works-item {
    width: 47.761%;
  }
}

.works-item__image {
  position: relative;
}

.works-item__body {
  margin: 23px 23px 66px 31px;
  position: relative;
}
.works-item__body::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: -8px;
  width: 1px;
  height: 144px;
  background: #333333;
}
@media (max-width: 767px) {
  .works-item__body {
    margin: 17px 17px 40px 16px;
  }
  .works-item__body::before {
    height: 96px;
  }
}

.works-item__title {
  font-size: 24px;
  line-height: 1;
}
@media (max-width: 767px) {
  .works-item__title {
    font-size: 20px;
  }
}

.works-more-info {
  margin-top: 18px;
}
@media (max-width: 767px) {
  .works-more-info {
    margin-top: 10px;
  }
}
.works-more-info::after {
  background: url(../img/arrow-b-icon@2x.svg) no-repeat center center/cover;
}

.works-button {
  margin-top: 14px;
}
@media (max-width: 767px) {
  .works-button {
    margin-top: 30px;
  }
}

.news-lists {
  margin-top: 32px;
}
@media (max-width: 767px) {
  .news-lists {
    margin-top: 24px;
  }
}

.news-list {
  display: flex;
  height: 56px;
  align-items: center;
}
@media (max-width: 767px) {
  .news-list {
    display: block;
    height: auto;
  }
}
.news-list:not(:first-child) {
  margin-top: 24px;
}
@media (max-width: 767px) {
  .news-list:not(:first-child) {
    margin-top: 0;
    padding-top: 20px;
    margin-top: 20px;
    border-top: solid 1px #e5e5e5;
  }
}

.news-list__date {
  max-width: 156px;
  width: 100%;
  padding-left: 38px;
  height: inherit;
  border-right: solid 1px #e5e5e5;
  line-height: 56px;
  font-family: "Lora", serif;
}
@media (max-width: 767px) {
  .news-list__date {
    height: auto;
    line-height: 1;
    padding-left: 0;
  }
}

.news-list__category {
  max-width: 138px;
  width: 100%;
  padding-left: 48px;
  height: inherit;
  border-right: solid 1px #e5e5e5;
  line-height: 56px;
  font-family: "Lora", serif;
}
@media (max-width: 767px) {
  .news-list__category {
    height: auto;
    line-height: 1;
    display: inline-block;
    padding-left: 22px;
  }
}
.news-list__category.is-accent {
  color: #b69b04;
}

.news-list__text {
  width: calc(100% - 296px);
  padding-left: 40px;
}
.news-list__text a {
  display: inline-block;
  transition: 0.3s;
}
@media (min-width: 1080px) {
  .news-list__text a:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .news-list__text {
    width: 100%;
    margin-top: 12px;
    padding-left: 0;
  }
}

.news-button {
  margin-top: 40px;
}

.contact {
  margin-top: 120px;
  padding-top: 120px;
  padding-bottom: 120px;
  background: #eeead0;
}
@media (max-width: 767px) {
  .contact {
    margin-top: 80px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.contact-head {
  margin-top: 0;
}

.contact-items {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .contact-items {
    display: block;
    margin-top: 24px;
  }
}

.contact-item {
  height: 191px;
  text-align: center;
}
@media (max-width: 767px) {
  .contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
  }
}
.contact-item:nth-child(1) {
  padding: 24px 61px;
}
@media (max-width: 767px) {
  .contact-item:nth-child(1) {
    padding: 0 16px 32px 10px;
  }
}
.contact-item:nth-child(1) img {
  width: 27px;
  margin-bottom: 14px;
}
@media (max-width: 767px) {
  .contact-item:nth-child(1) img {
    margin-bottom: 0;
  }
}
.contact-item:nth-child(2) {
  padding: 28px 32px;
}
@media (max-width: 767px) {
  .contact-item:nth-child(2) {
    padding: 32px 16px 32px 10px;
  }
}
.contact-item:nth-child(2) img {
  width: 32px;
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  .contact-item:nth-child(2) img {
    margin-bottom: 0;
  }
}
.contact-item:nth-child(3) {
  padding: 25px 32px;
}
@media (max-width: 767px) {
  .contact-item:nth-child(3) {
    padding: 32px 10px 0 18px;
    align-items: normal;
  }
}
.contact-item:nth-child(3) img {
  width: 22px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .contact-item:nth-child(3) img {
    margin-bottom: 0;
    padding-top: 6px;
  }
}
.contact-item:not(:last-child) {
  border-right: solid 1px #333333;
}
@media (max-width: 767px) {
  .contact-item:not(:last-child) {
    border-right: none;
    border-bottom: solid 1px #333333;
  }
}

.contact-item__title {
  font-size: 20px;
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  .contact-item__title {
    font-size: 16px;
    margin-bottom: 0;
  }
}

.contact-item__button-block {
  text-align: center;
}

.contact-item__button {
  width: 160px;
  margin: 0 auto;
}
@media (min-width: 1080px) {
  .contact-item__button {
    transition: 0.3s;
  }
  .contact-item__button:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .contact-item__button {
    margin: 0;
    width: 152px;
  }
}
.contact-item__button.is-accent {
  background: #b69b04;
}
.contact-item__button.is-main {
  background: #31452d;
}
.contact-item__button a {
  display: block;
  color: #fff;
  width: inherit;
  height: 48px;
  line-height: 48px;
}

.contact-item__number {
  font-size: 24px;
  line-height: 1;
  font-family: "Lora", serif;
}

.contact-item__business-hours {
  font-size: 12px;
}

.contact-item__button-block .contact-item__button {
  margin: 0 auto;
}

.footer {
  color: #fff;
  height: 543px;
  background: #31452d;
  padding-top: 78px;
}
@media (max-width: 767px) {
  .footer {
    padding-top: 40px;
    height: 636px;
  }
}

.footer-logo {
  margin-bottom: 20px;
}
.footer-logo img {
  max-width: 82px;
  display: block;
  margin: 0 auto;
}

.footer-content {
  line-height: 1;
  margin-bottom: 56px;
  text-align: center;
}

.footer-title {
  margin-bottom: 16px;
}

.footer-post-code {
  display: inline-block;
  margin-right: 12px;
}

.footer-address {
  display: inline-block;
}

.footer-number {
  font-family: "Lora", serif;
  margin-top: 16px;
  margin-bottom: 16px;
}

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

.footer-nav__lists {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .footer-nav__lists {
    display: block;
  }
}

@media (max-width: 767px) {
  .footer-nav__list {
    text-align: center;
  }
}
.footer-nav__list:last-child {
  padding-right: 12px;
}
.footer-nav__list:not(:last-child) {
  padding-right: 32px;
  margin-right: 32px;
  border-right: solid 1px #fff;
}
@media (max-width: 767px) {
  .footer-nav__list:not(:last-child) {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
    border-bottom: solid 1px #fff;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1080px) {
  .footer-nav__list a {
    transition: 0.3s;
  }
  .footer-nav__list a:hover {
    opacity: 0.7;
  }
}

.footer-footer {
  height: 48px;
  line-height: 48px;
  background: #333333;
  color: #fff;
  border-top: solid 1px #fff;
  margin-top: 114px;
}
@media (max-width: 767px) {
  .footer-footer {
    height: 114px;
    margin-top: 39px;
    padding-top: 32px;
    line-height: 1;
  }
}

.footer-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .footer-footer__inner {
    display: block;
  }
}

.footer-footer__lists {
  display: flex;
}
@media (max-width: 767px) {
  .footer-footer__lists {
    font-size: 14px;
    justify-content: center;
    padding-bottom: 36px;
  }
}

.footer-footer__list {
  line-height: 23px;
}
.footer-footer__list:not(:last-child) {
  padding-right: 32px;
  margin-right: 32px;
  border-right: solid 1px #fff;
}
@media (min-width: 1080px) {
  .footer-footer__list a {
    transition: 0.3s;
  }
  .footer-footer__list a:hover {
    opacity: 0.7;
  }
}

@media (max-width: 767px) {
  .footer-footer__right {
    text-align: center;
    font-size: 12px;
  }
}