@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

button {
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

input,
textarea,
select {
  font: inherit;
}

body {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  color: #333333;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
}

.l-container {
  width: 100%;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .l-container {
    padding-right: 40px;
    padding-left: 40px;
  }
}

.l-section {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.l-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.l-header--scrolled {
  background-color: rgba(10, 22, 38, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .l-header {
    background-color: #ffffff;
    box-shadow: 0 1px 0 #dddddd;
  }
  .l-header--scrolled {
    background-color: #ffffff;
  }
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    height: 80px;
  }
}
.l-header__logo {
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    font-size: 1.5rem;
    color: #333333;
  }
}
.l-header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header__nav {
    display: flex;
    align-items: center;
    gap: 36px;
  }
}
.l-header__nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}
.l-header__nav-link {
  font-size: 1.4rem;
  font-weight: 400;
  color: #ffffff;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .l-header__nav-link:hover {
    opacity: 0.7;
  }
}
.l-header__cta {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header__cta {
    display: inline-flex;
  }
}
.l-header__menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 768px) {
  .l-header__menu-btn {
    display: none;
  }
}
.l-header__menu-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333333;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.l-header__menu-btn.is-active .l-header__menu-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.l-header__menu-btn.is-active .l-header__menu-line:nth-child(2) {
  opacity: 0;
}
.l-header__menu-btn.is-active .l-header__menu-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.l-nav-drawer {
  position: fixed;
  top: 60px;
  right: 0;
  left: 0;
  z-index: 200;
  display: none;
  padding: 24px 20px 40px;
  background-color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.l-nav-drawer.is-open {
  display: block;
}
@media screen and (min-width: 768px) {
  .l-nav-drawer {
    display: none !important;
  }
}
.l-nav-drawer__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.l-nav-drawer__link {
  display: block;
  padding: 16px 0;
  font-size: 1.5rem;
  font-weight: 500;
  color: #333333;
  border-bottom: 1px solid #e8e6e1;
}
.l-nav-drawer__cta {
  margin-top: 24px;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 28px;
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  border: 1px solid transparent;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-btn {
    min-height: 52px;
    padding: 14px 36px;
    font-size: 1.5rem;
  }
}
.c-btn--gold {
  color: #ffffff;
  background-color: #c5a572;
  border-color: #c5a572;
}
@media (hover: hover) {
  .c-btn--gold:hover {
    background-color: #b89462;
    border-color: #b89462;
  }
}
.c-btn--outline-white {
  color: #ffffff;
  background-color: transparent;
  border-color: #ffffff;
}
@media (hover: hover) {
  .c-btn--outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
}
.c-btn--outline-gold {
  color: #c5a572;
  background-color: transparent;
  border-color: #c5a572;
}
@media (hover: hover) {
  .c-btn--outline-gold:hover {
    background-color: rgba(197, 165, 114, 0.1);
  }
}
.c-btn--outline-navy {
  color: #ffffff;
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.4);
}
@media (hover: hover) {
  .c-btn--outline-navy:hover {
    border-color: #ffffff;
  }
}
.c-btn--block {
  width: 100%;
}
.c-btn__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.c-section-label {
  display: block;
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c5a572;
}

.c-section-heading {
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .c-section-heading {
    font-size: 3.2rem;
  }
}

.c-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .c-section-header {
    margin-bottom: 50px;
  }
}
.c-section-header__left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  font-weight: 500;
  color: #c5a572;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .c-link-arrow:hover {
    opacity: 0.7;
  }
}
.c-link-arrow::after {
  content: "→";
  font-size: 1.4rem;
}

.p-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 60px;
  color: #ffffff;
  background-color: #0a1626;
}
@media screen and (min-width: 768px) {
  .p-hero {
    padding-top: 80px;
  }
}
.p-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 22, 38, 0.75) 0%, rgba(10, 22, 38, 0.35) 60%, rgba(10, 22, 38, 0.2) 100%);
}
.p-hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  padding: 80px 20px 100px;
}
@media screen and (min-width: 768px) {
  .p-hero__inner {
    padding: 120px 40px 140px;
  }
}
.p-hero__title {
  margin-bottom: 20px;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", serif;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-hero__title {
    margin-bottom: 24px;
    font-size: 5.6rem;
  }
}
.p-hero__subtitle {
  margin-bottom: 40px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.8;
  opacity: 0.95;
}
@media screen and (min-width: 768px) {
  .p-hero__subtitle {
    margin-bottom: 48px;
    font-size: 1.8rem;
  }
}
.p-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 320px;
}
@media screen and (min-width: 768px) {
  .p-hero__actions {
    flex-direction: row;
    gap: 20px;
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__actions .c-btn--outline-white,
  .p-hero__actions .p-hero__btn-works {
    order: 2;
    color: #ffffff;
    background-color: transparent;
    border-color: #ffffff;
  }
}
@media screen and (min-width: 768px) {
  .p-hero__actions .c-btn--outline-white,
  .p-hero__actions .p-hero__btn-works {
    order: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__actions .c-btn--gold,
  .p-hero__actions .p-hero__btn-contact {
    order: 1;
  }
}
@media screen and (min-width: 768px) {
  .p-hero__actions .c-btn--gold,
  .p-hero__actions .p-hero__btn-contact {
    order: 2;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__actions .p-hero__btn-works {
    color: #ffffff;
    background-color: #c5a572;
    border-color: #c5a572;
  }
}
@media screen and (min-width: 768px) {
  .p-hero__actions .p-hero__btn-works {
    color: #ffffff;
    background-color: transparent;
    border-color: #ffffff;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__actions .p-hero__btn-contact {
    color: #ffffff;
    background-color: transparent;
    border-color: #ffffff;
  }
}
@media screen and (min-width: 768px) {
  .p-hero__actions .p-hero__btn-contact {
    color: #ffffff;
    background-color: #c5a572;
    border-color: #c5a572;
  }
}

.p-about {
  background-color: #ffffff;
}
.p-about__inner {
  display: grid;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-about__inner {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
}
.p-about__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-about__label {
  margin-bottom: -8px;
}
.p-about__heading {
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .p-about__heading {
    font-size: 3.2rem;
  }
}
.p-about__text {
  font-size: 1.4rem;
  line-height: 2;
  color: #666666;
}
.p-about__link {
  align-self: flex-start;
}
.p-about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 32px;
  border-top: 1px solid #e8e6e1;
}
@media screen and (min-width: 768px) {
  .p-about__stats {
    padding-top: 40px;
  }
}
.p-about__stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 12px;
  text-align: center;
}
.p-about__stats-item:not(:last-child) {
  border-right: 1px solid #e8e6e1;
}
.p-about__stats-number {
  margin-bottom: 4px;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", serif;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.2;
  color: #c5a572;
}
@media screen and (min-width: 768px) {
  .p-about__stats-number {
    font-size: 3.6rem;
  }
}
.p-about__stats-label {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #666666;
}
@media screen and (min-width: 768px) {
  .p-about__stats-label {
    font-size: 1.3rem;
  }
}
.p-about__visual {
  position: relative;
  padding-bottom: 40px;
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .p-about__visual {
    padding-bottom: 24px;
    padding-left: 24px;
  }
}
.p-about__visual-deco {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 70%;
  height: 70%;
  background-color: #f9f7f2;
}
.p-about__visual-image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.p-service {
  background-color: #f9f7f2;
}
.p-service__header {
  margin-bottom: 48px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-service__header {
    margin-bottom: 32px;
    text-align: left;
  }
}
.p-service__header-label {
  margin-bottom: 16px;
}
.p-service__header-text {
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .p-service__header-text {
    font-size: 2.4rem;
  }
}
.p-service__header-title {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-service__header-title {
    display: block;
    margin-top: 8px;
    font-family: "Noto Serif JP", "Yu Mincho", "游明朝", serif;
    font-size: 2.4rem;
    font-weight: 500;
    color: #333333;
  }
}
.p-service__grid {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-service__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.p-service__card {
  display: flex;
  flex-direction: column;
  padding: 40px 32px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  transition: box-shadow 0.3s ease;
}
@media (hover: hover) {
  .p-service__card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  }
}
.p-service__card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: #c5a572;
}
.p-service__card-title {
  margin-bottom: 16px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #333333;
}
.p-service__card-text {
  flex: 1;
  margin-bottom: 24px;
  font-size: 1.4rem;
  line-height: 1.9;
  color: #666666;
}
.p-service__card-arrow {
  align-self: flex-end;
  color: #c5a572;
}
.p-service__list {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-service__list {
    display: none;
  }
}
.p-service__list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid #dddddd;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .p-service__list-item:hover {
    opacity: 0.7;
  }
}
.p-service__list-item:first-child {
  border-top: 1px solid #dddddd;
}
.p-service__list-thumb {
  flex-shrink: 0;
  width: 100px;
  height: 72px;
  object-fit: cover;
}
.p-service__list-body {
  flex: 1;
  min-width: 0;
}
.p-service__list-title {
  margin-bottom: 6px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #333333;
}
.p-service__list-text {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #666666;
}
.p-service__list-arrow {
  flex-shrink: 0;
  color: #c5a572;
  font-size: 1.4rem;
}

.p-works {
  background-color: #ffffff;
}
.p-works__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-works__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 50px;
  }
}
.p-works__header-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-works__header-title {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-works__header-title {
    display: block;
    font-family: "Noto Serif JP", "Yu Mincho", "游明朝", serif;
    font-size: 2.4rem;
    font-weight: 500;
    color: #333333;
  }
}
.p-works__grid {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-works__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.p-works__grid-item {
  position: relative;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .p-works__grid-item:hover {
    opacity: 0.85;
  }
}
.p-works__grid-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.p-works__grid-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.p-works__grid-item:hover .p-works__grid-image {
  transform: scale(1.05);
}
.p-works__grid-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
  background-color: rgba(10, 22, 38, 0.85);
}
.p-works__grid-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 12px 16px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}
.p-works__list {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-works__list {
    display: none;
  }
}
.p-works__list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid #dddddd;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .p-works__list-item:hover {
    opacity: 0.7;
  }
}
.p-works__list-item:first-child {
  border-top: 1px solid #dddddd;
}
.p-works__list-thumb {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  object-fit: cover;
}
.p-works__list-body {
  flex: 1;
  min-width: 0;
}
.p-works__list-title {
  margin-bottom: 8px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #333333;
}
.p-works__list-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.p-works__list-tag {
  padding: 2px 10px;
  font-size: 1.1rem;
  color: #666666;
  background-color: #f9f7f2;
}
.p-works__list-arrow {
  flex-shrink: 0;
  color: #c5a572;
  font-size: 1.4rem;
}

.p-news {
  background-color: #ffffff;
}
.p-news__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-news__header {
    align-items: flex-start;
    margin-bottom: 8px;
  }
}
.p-news__header-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-news__header-title {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-news__header-title {
    display: block;
    font-family: "Noto Serif JP", "Yu Mincho", "游明朝", serif;
    font-size: 2.4rem;
    font-weight: 500;
    color: #333333;
  }
}
@media screen and (max-width: 767px) {
  .p-news__header-link {
    font-size: 1.2rem;
  }
}
.p-news__list {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-news__list {
    margin-top: 0;
  }
}
.p-news__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #dddddd;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-news__item {
    grid-template-columns: 110px 100px 1fr auto;
    gap: 24px;
    padding: 24px 0;
  }
}
@media (hover: hover) {
  .p-news__item:hover {
    opacity: 0.7;
  }
}
.p-news__item:first-child {
  border-top: 1px solid #dddddd;
}
.p-news__date {
  font-size: 1.3rem;
  color: #666666;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-news__date {
    grid-column: 1;
  }
}
.p-news__category {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-news__category {
    display: inline-block;
    padding: 4px 12px;
    font-size: 1.2rem;
    color: #c5a572;
    text-align: center;
    background-color: #f9f7f2;
  }
}
.p-news__title {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .p-news__title {
    grid-column: 1/-2;
  }
}
@media screen and (min-width: 768px) {
  .p-news__title {
    font-size: 1.5rem;
  }
}
.p-news__arrow {
  color: #c5a572;
  font-size: 1.4rem;
}

.p-contact {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
  color: #ffffff;
  background-color: #0a1626;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.p-contact__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.15;
}
@media screen and (max-width: 767px) {
  .p-contact__bg {
    display: block;
  }
}
.p-contact__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-contact__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact__inner {
    flex-direction: row;
    gap: 60px;
    align-items: center;
    text-align: left;
  }
}
.p-contact__content {
  flex: 1;
}
.p-contact__heading {
  margin-bottom: 16px;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-contact__heading {
    font-size: 2.8rem;
  }
}
.p-contact__text {
  font-size: 1.4rem;
  line-height: 1.8;
  opacity: 0.85;
}
.p-contact__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-contact__actions {
    flex-direction: row;
    gap: 20px;
    width: auto;
    flex-shrink: 0;
  }
}
.p-contact__btn-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 240px;
  padding: 20px 32px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-contact__btn-tel {
    color: #ffffff;
    background-color: #c5a572;
    border-color: #c5a572;
  }
}
@media screen and (max-width: 767px) and (hover: hover) {
  .p-contact__btn-tel:hover {
    background-color: #b89462;
    border-color: #b89462;
  }
}
@media screen and (min-width: 768px) {
  .p-contact__btn-tel {
    align-items: flex-start;
    text-align: left;
  }
}
@media screen and (min-width: 768px) and (hover: hover) {
  .p-contact__btn-tel:hover {
    border-color: #ffffff;
  }
}
.p-contact__btn-tel-number {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.p-contact__btn-tel-hours {
  font-size: 1.2rem;
  opacity: 0.7;
}
.p-contact__btn-mail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 240px;
  padding: 20px 32px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  background-color: #c5a572;
  border: 1px solid #c5a572;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-contact__btn-mail {
    color: #c5a572;
    background-color: transparent;
  }
}
@media screen and (max-width: 767px) and (hover: hover) {
  .p-contact__btn-mail:hover {
    background-color: rgba(197, 165, 114, 0.1);
  }
}
@media screen and (min-width: 768px) and (hover: hover) {
  .p-contact__btn-mail:hover {
    background-color: #b89462;
    border-color: #b89462;
  }
}

.p-footer {
  padding-top: 60px;
  padding-bottom: 24px;
  color: #ffffff;
  background-color: #0a1626;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding-top: 80px;
    padding-bottom: 32px;
  }
}
.p-footer__top {
  display: grid;
  gap: 40px;
  padding-bottom: 48px;
}
@media screen and (min-width: 768px) {
  .p-footer__top {
    grid-template-columns: 1.2fr 2fr 0.8fr;
    gap: 60px;
    padding-bottom: 60px;
  }
}
.p-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-footer__logo {
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.p-footer__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1.3rem;
  line-height: 1.8;
  opacity: 0.8;
}
.p-footer__info-item {
  display: block;
}
.p-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
}
@media screen and (min-width: 768px) {
  .p-footer__nav {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
.p-footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-footer__nav-title {
  margin-bottom: 4px;
  font-size: 1.3rem;
  font-weight: 600;
  color: #c5a572;
}
.p-footer__nav-link {
  font-size: 1.3rem;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .p-footer__nav-link:hover {
    opacity: 1;
  }
}
.p-footer__social {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-footer__social-label {
  font-size: 1.3rem;
  font-weight: 600;
  color: #c5a572;
}
.p-footer__social-list {
  display: flex;
  gap: 12px;
}
.p-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
@media (hover: hover) {
  .p-footer__social-link:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
  }
}
.p-footer__social-icon {
  width: 18px;
  height: 18px;
}
.p-footer__copyright {
  padding-top: 24px;
  font-size: 1.2rem;
  text-align: center;
  opacity: 0.5;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    text-align: left;
  }
}
.p-footer__copyright-sp {
  display: block;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright-sp {
    display: none;
  }
}

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