html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #333;
  background-color: #fffcf2;
}
body.is-hidden {
  overflow: hidden;
}

.inner {
  max-width: calc(100% + 32px);
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .inner {
    max-width: 1060px;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}

.pc-hidden {
  display: block;
}
@media (min-width: 768px) {
  .pc-hidden {
    display: none;
  }
}

.section__title {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.section__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 1px;
  background-color: #d3803f;
}

.section__title-en {
  display: block;
  line-height: 1;
  font-size: 32px;
  font-weight: bold;
}

.section__title-ja {
  display: block;
  line-height: 1;
  margin-top: 10px;
}

/*==============================
header
==============================*/
.header {
  height: 70px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 2px solid #d3803f;
  z-index: 20;
}
@media (min-width: 768px) {
  .header {
    height: 100px;
  }
}

.header__inner {
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .header__inner {
    height: 100px;
  }
}

.header__logo a img {
  width: 120px;
}

@media (min-width: 768px) {
  .header__button {
    display: none;
  }
}

.drawer-button {
  width: 30px;
  height: 19px;
  position: relative;
}
.drawer-button.is-open .drawer-button__bar:nth-of-type(1) {
  top: 8px;
  transform: rotate(45deg);
}
.drawer-button.is-open .drawer-button__bar:nth-of-type(2) {
  display: none;
}
.drawer-button.is-open .drawer-button__bar:nth-of-type(3) {
  top: 8px;
  transform: rotate(-45deg);
}

.drawer-button__bar {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #d3803f;
  left: 0;
  border-radius: 10px;
  transition: all 0.5s ease;
}
.drawer-button__bar:nth-of-type(1) {
  top: 0;
}
.drawer-button__bar:nth-of-type(2) {
  top: 8px;
}
.drawer-button__bar:nth-of-type(3) {
  top: 16px;
}

.header__nav {
  display: none;
}
@media (min-width: 768px) {
  .header__nav {
    display: flex;
    gap: 40px;
  }
}

.header_nav-link {
  font-weight: bold;
}
@media (min-width: 768px) {
  .header_nav-link {
    position: relative;
  }
  .header_nav-link:hover::after {
    bottom: -5px;
    opacity: 1;
  }
  .header_nav-link::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 1px;
    background-color: #d3803f;
    left: 50%;
    bottom: 5px;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.5s ease;
  }
}

.drawer-contents {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: -100%;
  left: 0;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.97);
  transition: all ease 0.5s;
}
.drawer-contents.is-open {
  top: 70px;
}

.drawer-nav {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 60px;
}

.drawer-link {
  font-weight: bold;
}

/*==============================
fv
==============================*/
.fv {
  height: 600px;
  background-image: url(../img/sp/fv.png);
  background-size: cover;
  background-position: center center;
  margin-top: 70px;
}
@media (min-width: 768px) {
  .fv {
    height: 715px;
    background-image: url(../img/fv.png);
  }
}

.fv__contents {
  padding-top: 160px;
  padding-bottom: 235px;
  text-align: center;
}
@media (min-width: 768px) {
  .fv__contents {
    padding-top: 260px;
  }
}

.fv__main-text {
  color: #fff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .fv__main-text {
    font-size: 60px;
  }
}

.fv__items {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 40px;
}
@media (min-width: 768px) {
  .fv__items {
    margin-top: 90px;
    justify-content: center;
    gap: 100px;
  }
}

.fv__item {
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  background-color: #d3803f;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  padding-top: 20px;
}
@media (min-width: 768px) {
  .fv__item {
    width: 188px;
    height: 188px;
    font-size: 32px;
    padding-top: 35px;
  }
}

/*==============================
news
==============================*/
.news {
  padding-top: 80px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .news {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}

.news__items {
  display: flex;
  flex-direction: column;
}

.news__item {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f5ece5;
}
.news__item:first-child {
  padding-top: 0;
}

.news__text {
  margin-top: 5px;
  font-weight: bold;
  font-size: 16px;
}
.news__text a {
  color: #d3803f;
  border-bottom: 1px solid #d3803f;
  font-weight: bold;
}

/*==============================
sinyo
==============================*/
.sinyo {
  padding-top: 40px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .sinyo {
    padding-top: 160px;
    padding-bottom: 160px;
  }
}

@media (min-width: 768px) {
  .sinyo__cotents {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .sinyo__image {
    flex-grow: 0;
    width: 370px;
  }
}
@media (min-width: 768px) {
  .sinyo__image img {
    width: 370px;
  }
}

.sinyo__text-cntents {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .sinyo__text-cntents {
    flex-shrink: 1;
    width: 406px;
  }
}

.sinyo__title {
  font-size: 21px;
  font-weight: bold;
  color: #d3803f;
  text-align: center;
}
@media (min-width: 768px) {
  .sinyo__title {
    text-align: left;
    font-size: 32px;
  }
}

.sinyo__text {
  margin-top: 10px;
}

.sinyo__bg img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

/*==============================
facility
==============================*/
.facility {
  padding-top: 80px;
}
@media (min-width: 768px) {
  .facility {
    padding-top: 160px;
  }
}

.facility__inner {
  padding-right: 0;
}

.facility__contents {
  overflow-x: auto;
}
@media (min-width: 768px) {
  .facility__contents {
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .facility__contents {
    display: flex;
    flex-direction: row-reverse;
  }
}
.facility__contents table {
  min-width: 580px;
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border: 1px solid #d3803f;
  flex-shrink: 1;
  width: 580px;
}
.facility__contents thead {
  background: #d3803f;
  color: #fff;
  text-align: left;
  border: 1px solid #d3803f;
}
.facility__contents thead tr th {
  padding: 5px 5px 5px 10px;
}
.facility__contents thead tr th:nth-child(2n) {
  border-right: 1px solid #fff;
  width: 50px;
  text-align: center;
}
.facility__contents thead tr th:nth-child(odd) {
  width: 140px;
}
.facility__contents tbody {
  background: #fff;
}
.facility__contents tbody tr td {
  padding: 5px 4px;
}
.facility__contents tbody tr td:nth-child(odd) {
  border-left: 1px solid #d3803f;
}
.facility__contents tbody tr td:nth-child(2n) {
  text-align: center;
  border-right: 1px solid #d3803f;
}
@media (min-width: 768px) {
  .facility__contents tbody tr td {
    vertical-align: middle;
  }
}

.facility__image {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .facility__image {
    width: 370px;
    flex-grow: 0;
  }
}

/*==============================
products
==============================*/
.products {
  padding-top: 80px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .products {
    padding-top: 160px;
    padding-bottom: 80px;
  }
}

.products__items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.products__item {
  display: block;
  padding: 22px 29px;
  background-color: #fff;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
}
@media (min-width: 768px) {
  .products__item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 53px 50px;
    align-items: center;
  }
  .products__item:nth-child(2n) {
    flex-direction: row-reverse;
  }
}

@media (min-width: 768px) {
  .products__image {
    width: 368px;
    flex-shrink: 1;
  }
}

.products__text-contents {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .products__text-contents {
    width: 438px;
    flex-grow: 0;
  }
}

.products__title {
  font-weight: bold;
  letter-spacing: 0.1em;
}

.products__text {
  margin-top: 10px;
}

.products__item-button {
  margin-top: 15px;
  text-align: center;
}
@media (min-width: 768px) {
  .products__item-button {
    text-align: left;
  }
}

.prodcts-button {
  padding: 5px 50px;
  background-color: #fff;
  border: 1px solid #d3803f;
  border-radius: 50px;
  font-size: 14px;
  display: inline-block;
  transition: all 0.5s ease;
}
.prodcts-button.is-type2 {
  background-color: #d3803f;
  color: #fff;
  font-size: 21px;
}
@media (min-width: 768px) {
  .prodcts-button.is-type2:hover {
    background-color: #fff;
    color: #d3803f;
  }
}
@media (min-width: 768px) {
  .prodcts-button:hover {
    background-color: #d3803f;
    color: #fff;
  }
}

.prodcts__button {
  margin-top: 80px;
  text-align: center;
}

.top-lists .worls__item img:hover {
  transform: scale(1, 1);
}

/*==============================
company
==============================*/
.company {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .company {
    padding-top: 160px;
    padding-bottom: 80px;
  }
}

.company__contents table {
  width: 100%;
}
@media (min-width: 768px) {
  .company__contents table {
    width: 100%;
  }
}
.company__contents tr {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .company__contents tr {
    flex-direction: initial;
    vertical-align: middle;
  }
}
.company__contents th {
  text-align: left;
  padding: 13px 18px;
  background-color: #d3803f;
  border-top: 2px solid #693a14;
  color: #fff;
  font-weight: bold;
}
@media (min-width: 768px) {
  .company__contents th {
    width: 200px;
    border-top: 2px solid #fff;
    text-align: center;
  }
}
.company__contents td {
  padding: 13px 18px 25px 18px;
}
@media (min-width: 768px) {
  .company__contents td {
    background-color: #fff;
    border-top: 1px solid #d3803f;
    flex: 1;
    padding: 15px 18px;
  }
}

/*==============================
access
==============================*/
.access {
  padding-bottom: 160px;
}

.access__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 343/206;
}
@media (min-width: 768px) {
  .access__map iframe {
    width: 100%;
    aspect-ratio: 1000/370;
  }
}

.accsess__text-contents {
  margin-top: 15px;
}

/*==============================
footer
==============================*/
.footer {
  background-color: #d3803f;
}

.footer__copyrihjt {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 5px 0;
}

.copyright {
  font-size: 10px;
  color: #fff;
}

/*==============================
page__head
==============================*/
.page__head {
  margin-top: 70px;
  height: 125px;
  background-image: url(../img/sp/page-bg.png);
  background-size: cover;
  background-position: center center;
  position: relative;
}
@media (min-width: 768px) {
  .page__head {
    height: 399px;
  }
}

.page-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 21px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .page-title {
    font-size: 48px;
  }
}

/*==============================
works
==============================*/
.works {
  margin-top: 100px;
  padding-bottom: 180px;
}

.works__contents {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.works__items-title {
  font-size: 21px;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
}
.works__items-title::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 1px;
  background: #d3803f;
  left: 0;
  bottom: 0;
}

.works__lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .works__lists {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

.worls__item {
  overflow: hidden;
  box-shadow: 3px 4px 6px rgba(0, 0, 0, 0.25);
}
.worls__item img {
  transition: all 0.4s ease;
}
.worls__item img:hover {
  transform: scale(1.2, 1.2);
}

/*==============================
single
==============================*/
.single {
  margin-top: 100px;
  padding-bottom: 180px;
}

@media (min-width: 768px) {
  .single__item {
    display: flex;
    flex-direction: row;
    gap: 60px;
  }
}

@media (min-width: 768px) {
  .single__image {
    width: 50%;
  }
}
.single__texts {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .single__texts {
    width: 50%;
  }
}

.single__heading {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.single__title {
  color: #d3803f;
  font-weight: bold;
}
@media (min-width: 768px) {
  .single__title {
    font-size: 21px;
  }
}

.single__tag {
  padding: 5px 16px;
  color: #fff;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  font-weight: bold;
}
.single__tag.is-office {
  background-color: #bb5554;
}

.single__date {
  margin-top: 5px;
}

.single__text {
  margin-top: 10px;
}

.single__gallery {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 50px;
}
@media (min-width: 768px) {
  .single__gallery {
    margin-top: 100px;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}

.modal__image img {
  width: 100%;
}

.modal__texts {
  text-align: center;
  margin-top: 20px;
}

.modal__title {
  font-size: 21px;
  color: #d3803f;
  font-weight: bold;
}

.modal__text {
  margin-top: 10px;
}

.modal__button {
  margin-top: 20px;
}

.modal-button {
  padding: 10px 100px;
  color: #d3803f;
  border: 1px solid currentColor;
  border-radius: 60px;
  transition: all 0.5s ease;
}
@media (min-width: 768px) {
  .modal-button:hover {
    color: #fff;
    background-color: #d3803f;
    border-color: currentColor;
  }
}

/*==============================
sdgs
==============================*/
.sdgs {
  padding-top: 100px;
}

.sdgs__contents {
  text-align: center;
}
@media (min-width: 768px) {
  .sdgs__contents a {
    transition: all 0.5s ease;
  }
  .sdgs__contents a:hover {
    opacity: 0.7;
  }
}
@media (min-width: 768px) {
  .sdgs__contents a img {
    width: 500px;
  }
}/*# sourceMappingURL=style.css.map */