body {
  margin: 0;
}

h1 {
  display: block;
  font-size: 1em;
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: normal;
  unicode-bidi: isolate;
}

h2 {
  display: block;
  font-size: 1em;
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: normal;
  unicode-bidi: isolate;
}

h3 {
  display: block;
  font-size: 1em;
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: normal;
  unicode-bidi: isolate;
}

ul {
  display: block;
  list-style-type: none;
  margin-block-start: 0em;
  margin-block-end: 0em;
  padding-inline-start: 0px;
  unicode-bidi: isolate;
}

p {
  display: block;
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  unicode-bidi: isolate;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #fafaf4;
  z-index: 1000;
  display: flex;
  align-items: center;
}
.header .header-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  .header .header-inner {
    padding: 12px 16px;
  }
}
.header .site-logo {
  margin-left: 40px;
  opacity: 1;
  transition: opacity 0.4s;
}
.header .site-logo:hover {
  opacity: 0.5;
  transition: opacity 0.5s;
}
@media (max-width: 1024px) {
  .header .site-logo {
    margin-left: 0;
  }
}
.header .site-logo img {
  width: 150px;
  height: auto;
  display: block;
}
@media (max-width: 1024px) {
  .header .site-logo img {
    width: 120px;
  }
}
.header .site-logo .site-name-text {
  display: none;
}
.header .pc-nav {
  display: flex;
  align-items: center;
}
.header .pc-nav .nav-menu {
  margin: 0;
  padding: 0;
}
.header .pc-nav .nav-menu ul {
  display: flex;
  gap: 48px;
}
.header .pc-nav .nav-menu li a {
  color: #4d3c2d;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.4s;
  letter-spacing: 0.1em;
}
.header .pc-nav .nav-menu li a:hover {
  opacity: 0.5;
  transition: opacity 0.5s;
}
@media (max-width: 1024px) {
  .header .pc-nav {
    display: none;
  }
}
.header .contact-btn {
  width: 240px;
  height: 80px;
  margin-left: 40px;
  padding-left: 40px;
  background: #59816d;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poiret One", cursive;
  position: relative;
  box-sizing: border-box;
  letter-spacing: 0.2em;
  opacity: 1;
  transition: opacity 0.4s;
}
.header .contact-btn:hover {
  opacity: 0.5;
  transition: opacity 0.5s;
}
.header .contact-btn::before {
  content: "";
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='currentColor' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5.625,6.75h18.9A2.25,2.25,0,0,1,26.775,9V22.5a2.25,2.25,0,0,1-2.25,2.25H5.625a2.25,2.25,0,0,1-2.25-2.25V9a2.25,2.25,0,0,1,2.25-2.25Z'/%3E%3Cpath d='M7.875,11.25l7.2,7.875,7.2-7.875' transform='translate(0 -1.385)'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='currentColor' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5.625,6.75h18.9A2.25,2.25,0,0,1,26.775,9V22.5a2.25,2.25,0,0,1-2.25,2.25H5.625a2.25,2.25,0,0,1-2.25-2.25V9a2.25,2.25,0,0,1,2.25-2.25Z'/%3E%3Cpath d='M7.875,11.25l7.2,7.875,7.2-7.875' transform='translate(0 -1.385)'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
}
.header .contact-btn.sp-only {
  display: none;
}
@media (max-width: 1024px) {
  .header .contact-btn.sp-only {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: 2rem;
  }
}
.header .contact-btn.pc-only {
  display: inline-flex;
}
@media (max-width: 1024px) {
  .header .contact-btn.pc-only {
    display: none;
  }
}
.header .hamburger-morph {
  display: none;
  position: relative;
  width: 48px;
  height: auto;
  border: none;
  background: none;
  z-index: 1100;
  cursor: pointer;
}
.header .hamburger-morph .bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #59816d;
  margin: 8px 0;
  transition: all 0.3s ease;
}
.header .hamburger-morph.active .bar {
  background: #fff;
}
.header .hamburger-morph.active .bar:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.header .hamburger-morph.active .bar:nth-child(2) {
  transform: translateY(-5px) rotate(-45deg);
}
@media (max-width: 1024px) {
  .header .hamburger-morph {
    display: block;
  }
}
.header .nav-morph {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #59816d;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 100;
}
.header .nav-morph.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.header .nav-morph__wrapper {
  text-align: center;
  width: 70%;
}
.header .nav-morph__wrapper .nav-morph__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header .nav-morph__wrapper .nav-morph__list li {
  margin: 20px 0;
}
.header .nav-morph__wrapper .nav-morph__list li a {
  color: #fff;
  text-decoration: none;
}
.header .nav-morph__wrapper .contact-btn.sp-only {
  margin: 40px auto 0;
  padding-left: 24px;
  width: 100%;
  height: 60px;
  background: #fff;
  color: #000;
}
@media (max-width: 1024px) {
  .header .nav-morph {
    display: flex;
  }
}
@media (max-width: 768px) {
  .header .nav-morph .nav-morph__wrapper .nav-morph__list li a {
    font-weight: 100;
  }
}

.mainvisual {
  position: relative;
  width: 100%;
  aspect-ratio: 17/8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fafaf4;
}
@media (max-width: 1024px) {
  .mainvisual {
    aspect-ratio: auto;
    height: 100vh;
  }
}
.mainvisual__inner {
  width: 90%;
  height: 100%;
  position: relative;
}
.mainvisual__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.mainvisual__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.mainvisual__catch {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 0 20px;
  display: none;
}
.mainvisual__catch .mainvisual__title {
  font-size: 3rem;
  line-height: 1.4;
  font-family: "Poiret One", cursive;
}
@media (max-width: 768px) {
  .mainvisual__catch .mainvisual__title {
    font-size: 2rem;
  }
}
.mainvisual__catch .mainvisual__subtitle {
  font-size: 1.2rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .mainvisual__catch .mainvisual__subtitle {
    font-size: 1rem;
  }
}

.button {
  font-family: "Poiret One", cursive;
  font-size: 120%;
  letter-spacing: 0.1em;
  color: #59816d;
  font-weight: 400;
  text-align: center;
  max-width: 9em;
  margin: 40px auto 24px;
  padding: 4px 16px 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  display: block;
  position: relative;
  box-sizing: border-box;
  rotate: -6deg;
  transform: skewX(-6deg);
}
.button::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 9em;
  height: 1px;
  border-bottom: solid 1px #59816d;
  transition: all 0.3s;
}
.button:hover::after {
  animation: OutIn-Line 700ms;
}
@media (max-width: 1024px) {
  .button {
    font-size: 100%;
  }
}

@keyframes OutIn-Line {
  0% {
    transform: scale3d(1, 1, 1);
    transform-origin: 100% 0;
  }
  50% {
    transform: scale3d(0, 1, 1);
    transform-origin: 100% 0;
  }
  50.1% {
    transform: scale3d(0, 1, 1);
    transform-origin: 0 0;
  }
  100% {
    transform: scale3d(1, 1, 1);
    transform-origin: 0 0;
  }
}
.news-top h2.section-title {
  display: none;
}

.news-top {
  padding: 80px 20px;
  background: #fafaf4;
}
@media (max-width: 1024px) {
  .news-top {
    padding: 40px 24px;
  }
}
.news-top .news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.news-top .news-list .news-item {
  border-bottom: solid 1px rgba(77, 60, 45, 0.4);
  padding: 1.5em 0;
  opacity: 1;
  transition: opacity 0.4s;
}
.news-top .news-list .news-item:hover {
  opacity: 0.5;
  transition: opacity 0.5s;
}
.news-top .news-list .news-item a {
  text-decoration: none;
  color: #333;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1em;
}
@media (max-width: 1024px) {
  .news-top .news-list .news-item a {
    padding: 0 8px;
    gap: 8px;
  }
}
.news-top .news-list .news-item a time {
  width: 25%;
  font-family: "Poiret One", cursive;
  color: #59816d;
  letter-spacing: 0.1em;
  font-size: 100%;
  padding: 0 24px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .news-top .news-list .news-item a time {
    width: 100%;
    padding: 0;
  }
}
.news-top .news-list .news-item a .news-title {
  color: #4d3c2d;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-top .news-list .news-item:hover {
  background: rgba(255, 255, 255, 0.5);
  transition: 0.6s;
}

a.button {
  margin: 40px 0 0 auto;
}
@media (max-width: 1024px) {
  a.button {
    margin: 24px 0 0 auto;
  }
}

.section-about {
  padding: 80px 20px;
  background: #e3decc;
}
@media (max-width: 1024px) {
  .section-about {
    padding: 40px 24px;
  }
}
.section-about .section-title {
  color: #3a4a42;
}
.section-about .about-content {
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .section-about .about-content {
    flex-direction: column;
    gap: 40px;
  }
}
.section-about .about-content .about-image {
  flex: 0 0 40%;
}
.section-about .about-content .about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 16px;
}

.section-service {
  padding: 80px 20px;
  background: #fafaf4;
}
@media (max-width: 1024px) {
  .section-service {
    padding: 40px 24px;
  }
}
.section-service .section-title {
  color: #3a4a42;
}
.section-service .services-list {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .section-service .services-list {
    flex-direction: column;
    gap: 24px;
  }
}
.section-service .service-item {
  flex: 1;
  background: #fff;
  padding: 24px;
  text-align: center;
  border-radius: 16px;
}
.section-service .service-item img {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}
.section-service .service-item .service-title {
  width: 90%;
  margin: 0 auto 16px;
  font-size: 180%;
  font-family: "Poiret One", cursive;
  color: #59816d;
  letter-spacing: 0.1em;
  text-align: left;
}
.section-service .service-item .service-desc {
  width: 90%;
  margin: 0 auto 16px;
  text-align: justify;
}
.section-service .service-item .button {
  margin-top: auto;
}

.section-imgtxt {
  padding: 80px 0;
  background: #fff;
}
.section-imgtxt .imgtxt__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 768px) {
  .section-imgtxt .imgtxt__container {
    flex-direction: column;
  }
}
.section-imgtxt .imgtxt__image {
  flex: 1;
}
.section-imgtxt .imgtxt__image img {
  width: 100%;
  height: auto;
  display: block;
}
.section-imgtxt .imgtxt__text {
  flex: 1;
}
.section-imgtxt .imgtxt__text .section-title {
  margin-bottom: 20px;
}
.section-imgtxt .imgtxt__text .section-title .en {
  display: block;
  color: #59816d;
  margin-bottom: 8px;
}
.section-imgtxt .imgtxt__text .section-title .ja {
  display: block;
  color: #4d3c2d;
}
.section-imgtxt .imgtxt__text .lead {
  margin-bottom: 24px;
}
.section-imgtxt .imgtxt__text .button {
  margin-top: auto;
}

.imgtxt__container.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .imgtxt__container.reverse {
    flex-direction: column;
  }
}

.section-imgtxt_full {
  padding: 0px 0;
  background: #fafaf4;
}
.section-imgtxt_full .imgtxt__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 768px) {
  .section-imgtxt_full .imgtxt__container {
    flex-direction: column;
  }
}
.section-imgtxt_full .imgtxt__image {
  width: 50%;
}
.section-imgtxt_full .imgtxt__image img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .section-imgtxt_full .imgtxt__image {
    width: 100%;
  }
}
.section-imgtxt_full .imgtxt__text {
  flex: 1;
  max-width: 600px;
  margin: 0 auto;
}
.section-imgtxt_full .imgtxt__text .section-title {
  margin-bottom: 20px;
}
.section-imgtxt_full .imgtxt__text .section-title .en {
  display: block;
  color: #59816d;
  margin-bottom: 8px;
}
.section-imgtxt_full .imgtxt__text .section-title .ja {
  display: block;
  color: #4d3c2d;
}
.section-imgtxt_full .imgtxt__text .lead {
  margin-bottom: 24px;
}
.section-imgtxt_full .imgtxt__text .button {
  margin-top: auto;
}
@media (max-width: 768px) {
  .section-imgtxt_full .imgtxt__text {
    width: 90%;
  }
}

.imgtxt__container.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .imgtxt__container.reverse {
    flex-direction: column;
  }
}

.section-works {
  padding: 80px 0;
  background: #fff;
}
.section-works .swiper {
  overflow: hidden;
}
.section-works .swiper-slide {
  width: auto;
  max-width: 100%;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.section-works .swiper-slide:hover {
  transform: translateY(-5px);
}
.section-works .swiper-slide .works-swiper-wrap {
  position: relative;
}
.section-works .work-thumb img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}
.section-works .work-title {
  font-size: 1.2rem;
  margin-top: 12px;
  color: #4d3c2d;
}
.section-works .work-excerpt {
  font-size: 0.95rem;
  color: #4d3c2d;
  margin-top: 8px;
}
.section-works .swiper-button-prev,
.section-works .swiper-button-next {
  color: #59816d;
}
.section-works .swiper-pagination-bullet-active {
  background-color: #59816d;
}
@media (max-width: 768px) {
  .section-works .swiper-slide {
    width: 80%;
  }
}

body {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #4d3c2d;
  line-height: 2;
}

#wpadminbar {
  display: none;
}

.contents--inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.contents--inner_min {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
}

.contents--inner_wid {
  width: 100%;
  margin: 0 auto;
}

.section-title {
  width: auto;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

.section-title .en {
  width: 100%;
  font-family: "Poiret One", cursive;
  margin-bottom: 16px;
  font-size: 240%;
}
@media (max-width: 1024px) {
  .section-title .en {
    font-size: 160%;
    margin-bottom: 8px;
  }
}

.section-title .ja {
  width: 100%;
  margin: 0 auto 40px;
  font-size: 90%;
}
@media (max-width: 1024px) {
  .section-title .ja {
    margin: 0 auto 32px;
  }
}

p.p_text {
  line-height: 2.2;
  letter-spacing: 0.1em;
  color: #4d3c2d;
}

/*# sourceMappingURL=style.css.map */
