*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          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: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

:root {
  --color-bg-primary: #31452d;
  --color-bg-black: #333333;
  --color-bg-white: #ffffff;
}

:root {
  --color-font-base: #000000;
  --color-font-white: #ffffff;
  --color-font-accent: #b69b04;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  color: var(--color-bg-black);
  text-decoration: none;
  list-style: none;
}

a {
  color: var(--color-bg-black);
  text-decoration: none;
}

address {
  font-style: normal;
}

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-header {
  width: 100%;
  height: 5rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1002;
  background-color: rgba(255, 255, 255, 0.8);
  padding-inline: 1.25rem;
}
@media screen and (max-width: 1024px) {
  .l-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.l-header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .l-header-inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.inner {
  max-width: 1040px;
  width: 100%;
  margin-inline: auto;
}

.l-header-logo img {
  max-width: 140px;
  height: auto;
  margin-right: 2rem;
}

.l-header-nav {
  display: block;
}
@media screen and (max-width: 1024px) {
  .l-header-nav {
    display: none;
  }
}

.l-header-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-header-nav-item {
  position: relative;
  padding-inline: clamp(1.5rem, 2vw, 2rem);
}
.l-header-nav-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.0625rem;
  height: 2.25rem;
  background-color: var(--color-bg-black);
}

.l-header-nav-link {
  font-size: 1rem;
  text-decoration: none;
  line-height: 1;
  color: var(--color-text-black);
  font-family: "Noto Serif JP", serif;
}
.l-header-nav-link span {
  font-size: 0.75rem;
  display: block;
  margin-top: 0.5rem;
  text-decoration: none;
  line-height: 1;
  text-align: center;
  font-family: "Lora", serif;
  color: var(--color-font-accent);
}

.l-header-nav-contact {
  background-color: var(--color-bg-primary);
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-inline: 2rem;
  text-decoration: none;
  line-height: 1;
  color: var(--color-font-white);
}

.l-header-hamburger {
  display: none;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .l-header-hamburger {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
    cursor: pointer;
    z-index: 1000;
  }
}

@media screen and (max-width: 1024px) {
  .l-header-hamburger-line {
    position: absolute;
    width: 1.25rem;
    height: 0.0625rem;
    background-color: var(--color-bg-black);
    left: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 1001;
  }
  .l-header-hamburger-line:nth-child(1) {
    top: 0;
  }
  .l-header-hamburger-line:nth-child(2) {
    top: 40%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .l-header-hamburger-line:nth-child(3) {
    bottom: 20%;
  }
}

.l-header-hamburger.active .l-header-hamburger-line:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.l-header-hamburger.active .l-header-hamburger-line:nth-child(2) {
  opacity: 0;
}
.l-header-hamburger.active .l-header-hamburger-line:nth-child(3) {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
          transform: translateY(50%) rotate(-45deg);
}

.l-header-overlay {
  display: none;
}
@media screen and (max-width: 1024px) {
  .l-header-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .l-header-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

.l-header-sp-nav {
  display: none;
}
@media screen and (max-width: 1024px) {
  .l-header-sp-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 20rem;
    position: fixed;
    top: 0;
    right: -20rem;
    height: 100svh;
    background: #fff;
    z-index: 999;
    -webkit-transition: right 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: right 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 1;
    overflow-y: auto;
    -webkit-box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .l-header-sp-nav::-webkit-scrollbar {
    display: none;
  }
  .l-header-sp-nav.active {
    right: 0;
  }
}

.l-header-sp-nav-inner {
  padding-inline: 1.25rem;
}

.l-header-sp-nav-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
}

.l-header-sp-nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--color-font-black);
  font-family: "Noto Serif JP", serif;
  text-decoration: none;
  line-height: 1;
  color: var(--color-text-black);
  font-family: "Noto Serif JP", serif;
}
.l-header-sp-nav-link span {
  font-size: 0.75rem;
  display: block;
  text-decoration: none;
  line-height: 1;
  text-align: center;
  font-family: "Lora", serif;
  color: var(--color-font-accent);
}

.l-footer {
  padding-block: 5rem 2.25rem;
  background-color: var(--color-bg-primary);
}

.l-footer-img-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
.l-footer-img-wrapper img {
  width: 5.125rem;
  height: 5.625rem;
}

.l-footer-company-info {
  color: var(--color-font-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  text-decoration: none;
}

.l-footer-company-info-content {
  margin-top: 1.5rem;
}

.l-footer-company-info-content-text {
  margin-top: 1rem;
}

.l-footer-company-info-content-tel,
.l-footer-company-info-content-mail {
  margin-top: 1rem;
  font-family: "Lora", serif;
}

.l-footer-nav {
  margin-top: 3.5rem;
}

.l-footer-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: min(50rem + 40px, 100%);
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .l-footer-nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-footer-nav-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .l-footer-nav-item {
    border-bottom: 1px solid var(--color-font-white);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-block: 1.5rem;
  }
  .l-footer-nav-item:last-child {
    border-bottom: none;
  }
}

.l-footer-nav-item:not(:last-child)::after {
  content: "|";
  display: inline-block;
  width: 0.0625rem;
  height: 1rem;
  background-color: var(--color-font-white);
  margin-inline: 1.875rem;
}
@media screen and (max-width: 768px) {
  .l-footer-nav-item:not(:last-child)::after {
    display: none;
  }
}

.l-footer-nav-link {
  color: var(--color-font-white);
}

.l-footer-copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--color-bg-black);
  padding-block: 1.0625rem;
}

.l-footer-copyright-inner {
  width: min(65rem + 40px, 100%);
  padding-inline: 20px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .l-footer-copyright-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2.5rem;
  }
}

.l-footer-copyright-link {
  color: var(--color-font-white);
}
@media screen and (max-width: 480px) {
  .l-footer-copyright-link {
    font-size: 0.875rem;
  }
}

.l-footer-copyright-link:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 0.0625rem;
  height: 1rem;
  background-color: var(--color-font-white);
  margin-inline: 2.0625rem;
}
@media screen and (max-width: 480px) {
  .l-footer-copyright-link:not(:last-child)::after {
    margin-inline: 1.25rem;
  }
}

.l-footer-copyright-text {
  color: var(--color-font-white);
  font-size: 0.75rem;
}

.c-section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
}

.c-section-title-ja {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  line-height: 1;
}

.c-section-title-en {
  font-family: "Lora", serif;
  font-size: 1rem;
  line-height: 1;
  text-decoration-line: underline;
  text-underline-offset: 1rem;
  text-decoration-thickness: 0.125rem;
  text-decoration-color: var(--color-font-accent);
}

.p-mainvisual {
  width: 100%;
  height: 100vh;
  background: transparent url(../img/top-image@2x.jpg) no-repeat center center/cover;
  overflow: hidden;
  position: relative;
}

.p-mainvisual::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: inherit;
  background-size: cover;
  background-position: center;
  -webkit-animation: kenburns-bg 15s ease-in-out infinite alternate;
          animation: kenburns-bg 15s ease-in-out infinite alternate;
  z-index: 1;
}

@-webkit-keyframes kenburns-bg {
  0% {
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
  }
  100% {
    -webkit-transform: scale(1.1) translate(-2%, -1%);
            transform: scale(1.1) translate(-2%, -1%);
  }
}

@keyframes kenburns-bg {
  0% {
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
  }
  100% {
    -webkit-transform: scale(1.1) translate(-2%, -1%);
            transform: scale(1.1) translate(-2%, -1%);
  }
}
.p-mainvisual-inner {
  position: relative;
  width: 100%;
  height: inherit;
  z-index: 2;
}

.p-mainvisual-img-pc {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 58.75rem;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-mainvisual-img-pc {
    display: none;
  }
}

.p-mainvisual-img-sp {
  display: none;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .p-mainvisual-img-sp {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    max-width: 23.4375rem;
    width: 100%;
    height: auto;
  }
}

.p-concept {
  padding-top: 7.5rem;
  max-width: 90rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-concept {
    padding-top: 5rem;
  }
}

.p-concept-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 3rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-concept-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.p-concept-content-item {
  max-width: 40rem;
  height: auto;
  background: var(--color-bg-primary);
  padding: 4rem 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  bottom: -31px;
  z-index: 2;
  opacity: 0;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  -webkit-transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (max-width: 1024px) {
  .p-concept-content-item {
    position: static;
    max-width: 100%;
    padding: 3.5rem 1.25rem;
  }
}

.p-concept-content-item-title {
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--color-font-white);
}
@media screen and (max-width: 375px) {
  .p-concept-content-item-title {
    font-size: 1.25rem;
  }
}

.p-concept-content-item-text {
  font-size: 1rem;
  line-height: 2.2;
  color: var(--color-font-white);
  margin-top: 1.125rem;
}
@media screen and (max-width: 375px) {
  .p-concept-content-item-text {
    line-height: 1.8;
  }
}

.p-concept-content-item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  line-height: 0.88;
  color: var(--color-font-white);
  margin-top: 1.125rem;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.p-concept-content-item-link::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--color-font-white);
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='16' height='16' rx='8' fill='%23fff'/%3E%3Cpath d='M10 8.165 6.25 10.33V6L10 8.165z' fill='%23333'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-concept-content-img-wrapper {
  max-width: 70rem;
  width: 100%;
  height: 100%;
  aspect-ratio: 1120/480;
  overflow: hidden;
  margin-left: auto;
  background: transparent url(../img/concept-visual@2x.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  -webkit-transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (max-width: 1024px) {
  .p-concept-content-img-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 375/360;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
}

.p-concept.animate .p-concept-content-item {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (max-width: 1024px) {
  .p-concept.animate .p-concept-content-item {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-concept.animate .p-concept-content-img-wrapper {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (max-width: 1024px) {
  .p-concept.animate .p-concept-content-img-wrapper {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.p-concept-content-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-works {
  padding-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-works {
    padding-top: 5rem;
  }
}

.p-works-content {
  position: relative;
  margin-bottom: 3rem;
}
.p-works-content::before {
  content: "";
  position: absolute;
  bottom: -2.875rem;
  right: max(0px, (100vw - 1440px) / 2);
  max-width: 61.625rem;
  width: 100%;
  height: auto;
  aspect-ratio: 986/638;
  background-color: #eeead0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-works-content::before {
    bottom: -2.875rem;
    right: 0;
    max-width: 17.5rem;
    width: 100%;
    aspect-ratio: 280/508;
  }
}

.p-works-inner {
  width: min(65rem + 40px, 100%);
  padding-inline: 20px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.p-works-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
  row-gap: 4rem;
  margin-top: 3rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-works-list {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 0.9375rem;
       -moz-column-gap: 0.9375rem;
            column-gap: 0.9375rem;
    row-gap: 2.5rem;
    margin-top: 2rem;
  }
}

.p-works-item {
  opacity: 0;
  -webkit-transform: translateY(50px) scale(0.9);
          transform: translateY(50px) scale(0.9);
}

.p-works-link {
  display: block;
  text-decoration: none;
}

.p-works-img {
  width: 100%;
  height: auto;
  aspect-ratio: 320/240;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-works-item-content {
  position: relative;
  margin-left: 2rem;
  padding-left: 1rem;
}
@media screen and (max-width: 768px) {
  .p-works-item-content {
    margin-left: 0.5rem;
    padding-left: 0.5rem;
  }
}

.p-works-item-title {
  font-size: 1.5rem;
  line-height: 1;
  margin-top: 1.5rem;
  color: var(--color-bg-black);
}
@media screen and (max-width: 768px) {
  .p-works-item-title {
    font-size: 1.25rem;
    margin-top: 1rem;
  }
}
.p-works-item-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 0.0625rem;
  height: 9rem;
  background-color: var(--color-bg-black);
}

.p-works-item-detail {
  font-size: 1rem;
  line-height: 0.88;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin-top: 1.4375rem;
  color: var(--color-bg-black);
}
@media screen and (max-width: 768px) {
  .p-works-item-detail {
    margin-top: 1rem;
  }
}
.p-works-item-detail::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='16' height='16' rx='8' fill='%23333'/%3e%3cpath d='M10 8.165 6.25 10.33V6L10 8.165z' fill='%23fff'/%3e%3c/svg%3e");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-works-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-works-more-btn {
  text-decoration: none;
  padding: 1rem 3.875rem;
  border: solid 1px #31452d;
  margin-top: 2.5rem;
  color: var(--color-bg-black);
  position: relative;
  overflow: hidden;
  background: transparent;
  -webkit-transition: color 0.6s ease;
  transition: color 0.6s ease;
}
.p-works-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--color-bg-primary);
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
  z-index: -1;
}
.p-works-more-btn:hover {
  color: white;
}
.p-works-more-btn:hover::before {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-works-more-btn {
    margin-top: 1.5rem;
    padding: 1rem 2.4375rem;
  }
  .p-works-more-btn:hover {
    color: var(--color-bg-black);
  }
  .p-works-more-btn:hover::before {
    width: 0;
  }
}

.p-news {
  padding-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-news {
    padding-top: 5rem;
  }
}

.p-news-content-inner {
  width: min(65rem + 40px, 100%);
  padding-inline: 20px;
  margin-inline: auto;
}

.p-news-list {
  list-style: none;
  margin-top: 3rem;
}

.p-news-item {
  position: relative;
  padding-block: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-news-item {
    padding-block: 1rem;
    border-bottom: 1px solid #e5e5e5;
  }
}

.p-news-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1;
  font-family: "Lora", serif;
  color: inherit;
}
@media screen and (max-width: 768px) {
  .p-news-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-news-date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 7.5rem;
  margin-inline: 2.5rem 3rem;
  position: relative;
  text-align: center;
}
.p-news-date::after {
  content: "";
  position: absolute;
  right: -3rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 3.5rem;
  background-color: #e5e5e5;
}
@media screen and (max-width: 768px) {
  .p-news-date::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .p-news-date {
    min-width: auto;
    margin-inline: 0;
  }
}

.p-news-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-news-item-content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-news-category {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0.25rem 0.75rem;
  border-radius: 0.9375rem;
  font-size: 0.875rem;
  font-weight: 500;
  min-width: 3.75rem;
  text-align: center;
  white-space: nowrap;
  position: relative;
  margin-inline: 3rem;
}
.p-news-category::after {
  content: "";
  position: absolute;
  right: -3rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 3.5rem;
  background-color: #e5e5e5;
}
@media screen and (max-width: 768px) {
  .p-news-category::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .p-news-category {
    margin-inline: 0;
  }
}

.p-category-news {
  color: #b69b04;
}

.p-news-text {
  margin-left: 3rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-news-text {
    margin-left: 0;
    margin-top: 1rem;
  }
}

.p-contact {
  padding-block: 7.5rem;
  margin-top: 7.5rem;
  background: #eeead0;
}
@media screen and (max-width: 768px) {
  .p-contact {
    padding-top: 5rem;
  }
}

.p-contact-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3rem;
}

.p-contact-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 3rem;
  width: min(65rem + 40px, 100%);
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-contact-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.p-contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  justify-self: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .p-contact-item {
    border-bottom: 1px solid var(--color-bg-black);
    padding-block: 2rem;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .p-contact-item-inner {
    display: grid;
    grid-template-columns: 5rem 7.5rem minmax(auto, 12.5rem);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3.46%;
  }
}
@media screen and (max-width: 480px) {
  .p-contact-item-inner {
    grid-template-columns: 2rem 5.625rem minmax(auto, 12.5rem);
  }
}

@media screen and (max-width: 768px) {
  .p-contact-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@media screen and (max-width: 768px) {
  .p-contact-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    word-break: keep-all;
  }
}

.p-contact-label {
  font-size: 1.25rem;
  line-height: 1;
  margin-top: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-contact-label {
    margin-top: 0;
    font-size: 1rem;
    line-height: 1.5;
  }
}

@media screen and (max-width: 768px) {
  .p-contact-action {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.p-contact-btn--primary {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #b69b04;
  color: var(--color-font-white);
  margin-top: 1.4375rem;
}
@media screen and (max-width: 768px) {
  .p-contact-btn--primary {
    margin-top: 0;
    padding: 1rem 1.5rem;
    width: 140px;
    word-break: keep-all;
  }
}

.p-contact-line {
  display: block;
  width: 1px;
  height: 11.9375rem;
  margin-inline: 3.46%;
  background-color: var(--color-bg-black);
}
@media screen and (max-width: 768px) {
  .p-contact-line {
    display: none;
  }
}

.p-contact-btn-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--color-bg-primary);
  color: var(--color-font-white);
  margin-top: 1.4375rem;
  word-break: keep-all;
}
@media screen and (max-width: 768px) {
  .p-contact-btn-secondary {
    margin-top: 0;
    padding: 1rem 1.5rem;
    width: 140px;
  }
}

.p-contact-item--phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-contact-phone-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
}

.p-contact-btn-text--primary {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-bg-primary);
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-contact-btn-text--primary {
    margin-top: 0;
    display: none;
  }
}

.p-contact-btn-text--secondary {
  font-size: 0.75rem;
  line-height: 1;
  color: var(--color-bg-primary);
  margin-top: 8px;
}
@media screen and (max-width: 480px) {
  .p-contact-btn-text--secondary {
    display: inline-block;
    margin-left: auto;
  }
}

.p-contact-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}

.p-contact-phone-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 480px) {
  .p-contact-phone-info {
    width: 100%;
  }
}

.p-contact-btn-text--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-contact-btn-text--sp {
    display: block;
    width: 140px;
    padding: 1rem 1.5rem;
    background-color: var(--color-bg-primary);
    color: var(--color-font-white);
    margin-top: 1.4375rem;
  }
}

.p-contact-action--phone {
  width: 100%;
}

.p-contact-label-br {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-contact-label-br {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */