@charset "UTF-8";
/* CSS Document */
html {
  height: 100%;
}

body {
  font-family: "YakuHanJP", "Lato", "Noto Sans JP", "游ゴシック Medium", 游ゴシック体, "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  width: 100%;
  height: 100%;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin: 0 auto;
  background: #fff;
}

.cut {
  overflow: hidden;
  zoom: 1;
}

.sentence p + p {
  margin-top: 20px;
}

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

.ggmap {
  width: 100%;
  height: 350px;
}

input, select {
  vertical-align: middle;
  margin-bottom: 3px;
  margin-right: 5px;
}

.phone {
  display: none;
}

.pc {
  display: block;
}

.tcen {
  text-align: center;
}

@media screen and (max-width: 800px) {
  .tcen {
    text-align: left;
  }
  body {
    font-size: 12px; /* 13px -> 12px に調整 */
    line-height: 1.5;
  }
  .phone {
    display: block;
  }
  .pc {
    display: none !important;
  }
}
#page-top {
  position: fixed;
  bottom: 65px;
  right: 5px;
  font-size: 12px;
  font-weight: bold;
  z-index: 9999;
}
#page-top a {
  color: #fff;
  font-size: 25px;
  text-decoration: none;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  display: block;
  border-radius: 45px;
  background: #5c4233;
  box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
}
#page-top a:hover {
  opacity: 0.6;
  text-decoration: none;
}

.mtext1 {
  font-size: 2rem;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.mtext1.type1 {
  margin-bottom: 25px;
  text-align: center;
}
.mtext1.type1 br {
  display: none;
}

@media all and (max-width: 896px) {
  .mtext1 {
    font-size: 1.6rem; /* 1.8rem -> 1.6rem に調整 */
  }
}
@media all and (max-width: 639px) {
  .mtext1 {
    font-size: 1.4rem; /* 1.6rem -> 1.4rem に調整 */
    line-height: 1.6;
  }
  .mtext1.type1 {
    margin-bottom: 20px;
  }
  .mtext1.type1 br {
    display: block;
  }
}
.mtext2 {
  font-size: 2.4rem;
  line-height: 1.6;
}
.mtext2.type1 {
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 30px;
}

@media all and (max-width: 896px) {
  .mtext2 {
    font-size: 2rem; /* 2.2rem -> 2rem に調整 */
  }
}
@media all and (max-width: 639px) {
  .mtext2 {
    font-size: 1.8rem; /* 2rem -> 1.8rem に調整 */
  }
  .mtext2.type1 {
    margin-bottom: 25px;
  }
}
.mtext3 {
  font-size: 4rem;
  line-height: 1.6;
  text-align: center;
}

@media all and (max-width: 896px) {
  .mtext3 {
    font-size: 2.6rem; /* 3rem -> 2.6rem に調整 */
  }
}
@media all and (max-width: 639px) {
  .mtext3 {
    font-size: 2.1rem; /* 2.4rem -> 2.1rem に調整 */
  }
}
.loader {
  align-items: center;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28464/bg-main.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
.loader.off {
  display: none;
}
@keyframes loader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#page {
  opacity: 0; /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #page {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ==========================================================================
   Variables & Base Settings
   ========================================================================== */
/* CSS Custom Properties (保持用) */
:root {
  --color-bg-black: #0a0a0a;
  --color-bg-dark: #121212;
  --color-bg-card: #181818;
  --color-text-main: #f5f5f4;
  --color-text-sub: #a1a1aa;
  --color-text-muted: #71717a;
  --color-border: rgba(255, 255, 255, 0.12);
  --color-border-strong: rgba(255, 255, 255, 0.35);
  --font-sans: Noto Sans JP, Jost, sans-serif;
  --font-serif: Shippori Mincho, Cormorant Garamond, serif;
  --font-en: Jost, sans-serif;
  --font-en-serif: Cormorant Garamond, serif;
}

/* Base Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--color-bg-black);
  color: var(--color-text-main);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  /* レスポンシブ時に全体のrem基準を一括縮小（モバイル用） */
}
@media (max-width: 767px) {
  html {
    font-size: 14px;
  }
}

/* Utility Fonts */
.u-font-serif {
  font-family: var(--font-serif);
}

.u-font-en {
  font-family: var(--font-en);
}

.u-font-en-serif {
  font-family: var(--font-en-serif);
}

/* SPA Page View Switcher */
.page-view {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
.page-view.is-active {
  display: block;
  opacity: 1;
}

/* Keyframes */
@keyframes anim-scroll {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
/* ==========================================================================
   Header Navigation Component
   ========================================================================== */
.c-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.4));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
@media (min-width: 768px) {
  .c-header {
    padding: 2rem 4rem;
  }
}
.c-header__logo {
  font-family: var(--font-en);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 1rem; /* 1.2rem -> 1rem に調整 */
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
}
@media (min-width: 768px) {
  .c-header__logo {
    font-size: 1.5rem;
  }
}

.c-nav {
  display: none;
  align-items: center;
  gap: 3rem;
  font-size: 0.9375rem;
  letter-spacing: 0.25em;
  font-family: var(--font-en);
  font-weight: 300;
}
@media (min-width: 768px) {
  .c-nav {
    display: flex;
  }
}
.c-nav__item {
  position: relative;
  padding: 0.25rem 0;
  color: var(--color-text-sub);
  transition: color 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
.c-nav__item:hover, .c-nav__item.is-current {
  color: #ffffff;
}
.c-nav__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}
.c-nav__item:hover::after, .c-nav__item.is-current::after {
  width: 100%;
}

.c-menu-toggle {
  display: block;
  position: fixed;
  top: 1.75rem;
  right: 2rem;
  z-index: 9999;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem; /* 1.875rem -> 1.5rem に調整 */
  cursor: pointer;
  line-height: 1;
}
@media (min-width: 768px) {
  .c-menu-toggle {
    display: none;
  }
}

.c-mobile-menu {
  position: fixed;
  inset: 0;
  background-color: var(--color-bg-dark);
  z-index: 105;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.c-mobile-menu.is-active {
  opacity: 1;
  pointer-events: auto;
}

.c-mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  font-size: 1.25rem; /* 1.5rem -> 1.25rem に調整 */
  font-family: var(--font-en);
  letter-spacing: 0.25em;
}
.c-mobile-nav__item {
  color: var(--color-text-sub);
  cursor: pointer;
  text-decoration: none;
}
.c-mobile-nav__item:hover, .c-mobile-nav__item.is-current {
  color: #ffffff;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.p-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.p-hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1.5s ease-in-out;
  opacity: 0;
}
.p-hero__slide.is-active {
  opacity: 1;
}
.p-hero__slide--1 {
  background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=2000&auto=format&fit=crop");
}
.p-hero__slide--2 {
  background-image: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?q=80&w=2000&auto=format&fit=crop");
}
.p-hero__slide--3 {
  background-image: url("https://images.unsplash.com/photo-1512917774080-9991f1c4c750?q=80&w=2000&auto=format&fit=crop");
}
.p-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
}
.p-hero__content {
  position: relative;
  z-index: 10;
  padding-top: 80%;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 80rem;
}
@media (min-width: 768px) {
  .p-hero__content {
    padding-top: 20%;
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
.p-hero__title {
  font-family: var(--font-en-serif);
  font-weight: 300;
  font-size: 2.25rem; /* 3rem -> 2.25rem に調整 */
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .p-hero__title {
    font-size: 5.25rem;
  }
}
.p-hero__subtitle {
  margin-top: 1rem;
  font-size: 0.8125rem; /* 0.9375rem -> 0.8125rem に調整 */
  font-family: var(--font-en);
  letter-spacing: 0.3em;
  color: var(--color-text-sub);
}
.p-hero__scroll {
  position: relative;
  z-index: 10;
  padding-bottom: 3rem;
  padding-right: 2rem;
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .p-hero__scroll {
    padding-right: 4rem;
  }
}

.c-scroll-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-text-sub);
  cursor: pointer;
  text-decoration: none;
}
.c-scroll-btn__text {
  font-size: 0.75rem; /* 0.8125rem -> 0.75rem に調整 */
  font-family: var(--font-en);
  letter-spacing: 0.35em;
  margin-bottom: 0.75rem;
}
.c-scroll-btn__line {
  width: 1px;
  height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.c-scroll-btn__bar {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  animation: anim-scroll 1.6s infinite;
}

/* ==========================================================================
   Statement Section
   ========================================================================== */
.p-statement {
  position: relative;
  padding: 8rem 2rem;
  background-color: var(--color-bg-dark);
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-statement {
    padding: 12rem 4rem;
  }
}
.p-statement__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28464/p-statement_bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  filter: grayscale(100%);
  pointer-events: none;
}
.p-statement__inner {
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.p-statement__heading {
  font-family: var(--font-serif);
  font-size: 1.5rem; /* 1.875rem -> 1.5rem に調整 */
  line-height: 2.1;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .p-statement__heading {
    font-size: 2.75rem;
  }
}
.p-statement__text {
  font-size: 0.9375rem; /* 1.0625rem -> 0.9375rem に調整 */
  color: var(--color-text-sub);
  line-height: 2.2;
  border-top: 1px solid var(--color-border);
  padding-top: 2.5rem;
}

/* ==========================================================================
   Top Page Banner Section
   ========================================================================== */
.p-top-about {
  padding: 8rem 2rem;
  background-color: var(--color-bg-black);
  border-top: 1px solid var(--color-border);
}
@media (min-width: 768px) {
  .p-top-about {
    padding: 8rem 4rem;
  }
}
.p-top-about__grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .p-top-about__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-banner-card {
  position: relative;
  overflow: hidden;
  display: block;
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-card);
  padding: 2.5rem 2rem;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.4s ease;
}
.c-banner-card:hover {
  border-color: var(--color-border-strong);
}
.c-banner-card:hover .c-banner-card__img {
  transform: scale(1.08);
  filter: grayscale(100%) brightness(50%);
}
.c-banner-card:hover .c-banner-card__footer {
  color: #ffffff;
}
.c-banner-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.c-banner-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%) brightness(35%);
  transition: transform 0.7s ease, filter 0.5s ease;
}
.c-banner-card__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 13rem;
}
.c-banner-card__label {
  font-size: 0.75rem; /* 0.8125rem -> 0.75rem に調整 */
  font-family: var(--font-en);
  letter-spacing: 0.25em;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 0.5rem;
}
.c-banner-card__title {
  font-size: 1.125rem; /* 1.375rem -> 1.125rem に調整 */
  font-family: var(--font-serif);
  color: #ffffff;
  line-height: 1.5;
}
.c-banner-card__subjp {
  display: block;
  font-size: 0.8125rem; /* 0.9375rem -> 0.8125rem に調整 */
  font-family: var(--font-sans);
  color: var(--color-text-sub);
  margin-top: 0.25rem;
}
.c-banner-card__footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem; /* 0.9375rem -> 0.8125rem に調整 */
  font-family: var(--font-en);
  color: var(--color-text-sub);
  margin-top: 2rem;
  transition: color 0.3s ease;
}

/* ==========================================================================
   Common Utilities (Section & Page Headers)
   ========================================================================== */
.c-section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.c-section-header__title {
  font-family: var(--font-serif);
  font-size: 1.75rem; /* 2.125rem -> 1.75rem に調整 */
  color: #ffffff;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .c-section-header__title {
    font-size: 2.75rem;
  }
}
.c-section-header__subtitle {
  font-size: 0.8125rem; /* 0.9375rem -> 0.8125rem に調整 */
  font-family: var(--font-en);
  letter-spacing: 0.35em;
  color: var(--color-text-muted);
  text-transform: uppercase;
  display: block;
  margin-top: 0.5rem;
}

.p-page-header {
  position: relative;
  padding: 12rem 2rem 6rem;
  background-color: var(--color-bg-dark);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}
@media (min-width: 768px) {
  .p-page-header {
    padding: 14rem 4rem 7rem;
  }
}
.p-page-header__title {
  font-family: var(--font-en-serif);
  font-size: 2.75rem; /* 3.5rem -> 2.75rem に調整 */
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #ffffff;
}
@media (min-width: 768px) {
  .p-page-header__title {
    font-size: 5.25rem;
  }
}
.p-page-header__sub {
  font-size: 0.9375rem; /* 1.0625rem -> 0.9375rem に調整 */
  font-family: var(--font-serif);
  color: var(--color-text-sub);
  margin-top: 1rem;
  letter-spacing: 0.15em;
}

/* ==========================================================================
   Topics Section
   ========================================================================== */
.p-topics {
  padding: 8rem 2rem;
  background-color: var(--color-bg-dark);
  border-top: 1px solid var(--color-border);
}
@media (min-width: 768px) {
  .p-topics {
    padding: 8rem 4rem;
  }
}
.p-topics__list {
  max-width: 64rem;
  margin: 0 auto;
  border-top: 1px solid var(--color-border);
}

.c-topic-item {
  padding: 1.75rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  color: inherit;
}
@media (min-width: 768px) {
  .c-topic-item {
    grid-template-columns: 10rem 7.5rem 1fr;
    gap: 1.5rem;
  }
}
.c-topic-item__date {
  font-size: 0.8125rem; /* 0.9375rem -> 0.8125rem に調整 */
  font-family: var(--font-en);
  color: var(--color-text-muted);
}
.c-topic-item__tag {
  display: inline-block;
  padding: 0.15rem 0.6rem;
  border: 1px solid var(--color-border-strong);
  font-size: 0.6875rem; /* 0.75rem -> 0.6875rem に調整 */
  font-family: var(--font-en);
  color: var(--color-text-sub);
  width: -moz-fit-content;
  width: fit-content;
}
.c-topic-item__title {
  font-size: 0.9375rem; /* 1.0625rem -> 0.9375rem に調整 */
  font-family: var(--font-serif);
  color: var(--color-text-main);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ==========================================================================
   ABOUT Page Specifics
   ========================================================================== */
.p-about-philosophy {
  padding: 8rem 2rem;
  background-color: var(--color-bg-black);
}
@media (min-width: 768px) {
  .p-about-philosophy {
    padding: 10rem 4rem;
  }
}
.p-about-philosophy__inner {
  max-width: 68rem;
  margin: 0 auto;
}
.p-about-philosophy__lead {
  font-family: var(--font-serif);
  font-size: 1.5rem; /* 1.875rem -> 1.5rem に調整 */
  line-height: 1.9;
  color: #ffffff;
  margin-bottom: 3.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}
@media (min-width: 768px) {
  .p-about-philosophy__lead {
    font-size: 2.5rem;
  }
}
.p-about-philosophy__body {
  font-size: 1rem; /* 1.125rem -> 1rem に調整 */
  color: var(--color-text-sub);
  line-height: 2.2;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.p-about-service {
  padding: 8rem 2rem;
  background-color: var(--color-bg-dark);
  border-top: 1px solid var(--color-border);
}
@media (min-width: 768px) {
  .p-about-service {
    padding: 10rem 4rem;
  }
}
.p-about-service__inner {
  max-width: 68rem;
  margin: 0 auto;
}
.p-about-service__intro {
  font-size: 0.9375rem; /* 1.0625rem -> 0.9375rem に調整 */
  color: var(--color-text-sub);
  margin: 0 auto 4rem;
  line-height: 2;
}
.p-about-service__lead {
  font-family: var(--font-serif);
  font-size: 1.375rem; /* 1.625rem -> 1.375rem に調整 */
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 4rem;
  text-align: center;
}
@media (min-width: 768px) {
  .p-about-service__lead {
    font-size: 2.25rem;
  }
}
.p-about-service__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.c-service-item {
  padding: 3rem 2rem;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
}
@media (min-width: 768px) {
  .c-service-item {
    padding: 3.5rem 3rem;
  }
}
.c-service-item__title {
  font-family: var(--font-serif);
  font-size: 1.25rem; /* 1.5rem -> 1.25rem に調整 */
  color: #ffffff;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .c-service-item__title {
    font-size: 1.75rem;
  }
}
.c-service-item__desc {
  font-size: 0.9375rem; /* 1.0625rem -> 0.9375rem に調整 */
  color: var(--color-text-sub);
  line-height: 2.1;
}

.p-about-office {
  padding: 8rem 2rem;
  background-color: var(--color-bg-black);
  border-top: 1px solid var(--color-border);
}
@media (min-width: 768px) {
  .p-about-office {
    padding: 10rem 4rem;
  }
}
.p-about-office__inner {
  max-width: 60rem;
  margin: 0 auto;
}

.c-profile-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem; /* 1.0625rem -> 0.9375rem に調整 */
  margin-bottom: 4rem;
}
.c-profile-table tr {
  border-bottom: 1px solid var(--color-border);
}
.c-profile-table th {
  padding: 1.5rem 1rem 1.5rem 0;
  text-align: left;
  font-family: var(--font-serif);
  color: #ffffff;
  font-weight: 400;
  width: 30%;
  vertical-align: top;
}
.c-profile-table td {
  padding: 1.5rem 0 1.5rem 1rem;
  color: var(--color-text-sub);
  vertical-align: top;
  line-height: 1.9;
}

.c-map-container {
  width: 100%;
  height: 24rem;
  border: 1px solid var(--color-border);
  filter: grayscale(100%) invert(90%) contrast(120%);
}
.c-map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   WORKS Page & Detail Specifics
   ========================================================================== */
.p-works-hero {
  padding: 6rem 2rem;
  margin: 0 auto;
  text-align: center;
  background-color: var(--color-bg-black);
}
@media (min-width: 768px) {
  .p-works-hero {
    padding: 8rem 4rem;
  }
}
.p-works-hero__lead {
  font-family: var(--font-serif);
  font-size: 1.25rem; /* 1.5rem -> 1.25rem に調整 */
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #ffffff;
}
@media (min-width: 768px) {
  .p-works-hero__lead {
    font-size: 1.875rem;
  }
}
.p-works-hero__desc {
  font-size: 0.9375rem; /* 1.0625rem -> 0.9375rem に調整 */
  color: var(--color-text-sub);
  line-height: 2.2;
  margin: 0 auto;
}

.p-works-list {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 2rem 8rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem 2rem;
}
@media (min-width: 768px) {
  .p-works-list {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 4rem 10rem;
  }
}
@media (min-width: 1024px) {
  .p-works-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-work-card {
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.c-work-card:hover .c-work-card__img {
  transform: scale(1.06);
}
.c-work-card:hover .c-work-card__title {
  color: #ffffff;
}
.c-work-card__thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: var(--color-bg-card);
  margin-bottom: 1.25rem;
  border: 1px solid var(--color-border);
}
.c-work-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.c-work-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.c-work-card__date {
  font-size: 0.8125rem; /* 0.9375rem -> 0.8125rem に調整 */
  font-family: var(--font-en);
  color: var(--color-text-muted);
}
.c-work-card__tag {
  font-size: 0.6875rem; /* 0.75rem -> 0.6875rem に調整 */
  font-family: var(--font-en);
  padding: 0.1rem 0.5rem;
  border: 1px solid var(--color-border);
  color: var(--color-text-sub);
}
.c-work-card__title {
  font-size: 1rem; /* 1.125rem -> 1rem に調整 */
  font-family: var(--font-serif);
  color: var(--color-text-main);
  line-height: 1.6;
  transition: color 0.3s ease;
}

.p-work-detail {
  max-width: 68rem;
  margin: 0 auto;
  padding: 10rem 2rem 8rem;
}
@media (min-width: 768px) {
  .p-work-detail {
    padding: 12rem 4rem 10rem;
  }
}
.p-work-detail__header {
  margin-bottom: 3.5rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 2.5rem;
}
.p-work-detail__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.p-work-detail__date {
  font-size: 0.9375rem; /* 1.0625rem -> 0.9375rem に調整 */
  font-family: var(--font-en);
  color: var(--color-text-muted);
}
.p-work-detail__tag {
  font-size: 0.8125rem; /* 0.9375rem -> 0.8125rem に調整 */
  font-family: var(--font-en);
  padding: 0.2rem 0.75rem;
  border: 1px solid var(--color-border-strong);
  color: var(--color-text-sub);
}
.p-work-detail__title {
  font-family: var(--font-serif);
  font-size: 1.75rem; /* 2.125rem -> 1.75rem に調整 */
  line-height: 1.5;
  color: #ffffff;
}
@media (min-width: 768px) {
  .p-work-detail__title {
    font-size: 2.875rem;
  }
}
.p-work-detail__main-img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid var(--color-border);
  margin-bottom: 4rem;
  background-color: var(--color-bg-card);
}
.p-work-detail__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}
@media (min-width: 1024px) {
  .p-work-detail__content {
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
  }
}
.p-work-detail__body {
  font-size: 0.9375rem; /* 1.0625rem -> 0.9375rem に調整 */
  color: var(--color-text-sub);
  line-height: 2.2;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.p-work-detail__body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem; /* 1.5rem -> 1.25rem に調整 */
  color: #ffffff;
  margin-top: 1rem;
  margin-bottom: -0.5rem;
}
.p-work-detail__spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem; /* 0.9375rem -> 0.8125rem に調整 */
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.p-work-detail__spec-table tr {
  border-bottom: 1px solid var(--color-border);
}
.p-work-detail__spec-table th {
  padding: 1rem 0;
  text-align: left;
  font-family: var(--font-serif);
  color: #ffffff;
  font-weight: 400;
  width: 35%;
}
.p-work-detail__spec-table td {
  padding: 1rem 0;
  color: var(--color-text-sub);
}
.p-work-detail__gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 6rem;
}
@media (min-width: 768px) {
  .p-work-detail__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-work-detail__gallery-img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-card);
}
.p-work-detail__nav {
  text-align: center;
  border-top: 1px solid var(--color-border);
  padding-top: 4rem;
}

.c-btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 3rem;
  border: 1px solid var(--color-border-strong);
  color: #ffffff;
  font-family: var(--font-en);
  font-size: 0.8125rem; /* 0.9375rem -> 0.8125rem に調整 */
  letter-spacing: 0.2em;
  text-decoration: none;
  transition: all 0.3s ease;
}
.c-btn-back:hover {
  background-color: #ffffff;
  color: #000000;
}

/* ==========================================================================
   CONTACT Page & Forms
   ========================================================================== */
.p-contact {
  padding: 8rem 2rem;
  background-color: var(--color-bg-black);
  border-top: 1px solid var(--color-border);
  text-align: center;
}
.p-contact__inner {
  max-width: 68rem;
  margin: 0 auto;
}
.p-contact__lead {
  font-family: var(--font-serif);
  font-size: 1.25rem; /* 1.5rem -> 1.25rem に調整 */
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .p-contact__lead {
    font-size: 1.875rem;
  }
}
.p-contact__desc {
  font-size: 0.9375rem; /* 1.0625rem -> 0.9375rem に調整 */
  color: var(--color-text-sub);
  line-height: 2.1;
  margin-bottom: 3.5rem;
  text-align: left;
}
.p-contact__box {
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-card);
  padding: 2.5rem 2rem;
  display: inline-block;
  width: 100%;
  max-width: 32rem;
  margin: 0 auto 4rem;
}
.p-contact__tel-label {
  font-size: 0.8125rem; /* 0.9375rem -> 0.8125rem に調整 */
  font-family: var(--font-en);
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}
.p-contact__tel-number {
  font-size: 1.2rem; /* 1.4rem -> 1.2rem に調整 */
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  color: #ffffff;
  display: block;
  margin-bottom: 0.75rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .p-contact__tel-number {
    font-size: 2.125rem;
  }
}
.p-contact__tel-number:hover {
  color: var(--color-text-sub);
}
.p-contact__hours {
  font-size: 0.75rem; /* 0.8125rem -> 0.75rem に調整 */
  color: var(--color-text-muted);
  font-family: var(--font-en);
}

/* Contact Form Components */
.c-form-container {
  margin: 0 auto;
  text-align: left;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 3rem 2rem;
}
@media (min-width: 768px) {
  .c-form-container {
    padding: 4rem 3.5rem;
  }
}

.c-form-header {
  text-align: center;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1.5rem;
}
.c-form-header__title {
  font-family: var(--font-en-serif);
  font-size: 1.75rem; /* 2.125rem -> 1.75rem に調整 */
  color: #ffffff;
  letter-spacing: 0.15em;
}
.c-form-header__sub {
  font-size: 0.8125rem; /* 0.9375rem -> 0.8125rem に調整 */
  font-family: var(--font-serif);
  color: var(--color-text-sub);
  margin-top: 0.25rem;
}

.c-form-group {
  margin-bottom: 2rem;
}

.c-form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem; /* 0.9375rem -> 0.8125rem に調整 */
  font-family: var(--font-serif);
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.c-form-req {
  font-size: 0.6875rem; /* 0.75rem -> 0.6875rem に調整 */
  color: #e5e5e5;
  border: 1px solid var(--color-border-strong);
  padding: 0.05rem 0.4rem;
  border-radius: 2px;
}

.c-form-input,
.c-form-textarea {
  width: 100%;
  background-color: var(--color-bg-dark);
  border: 1px solid var(--color-border);
  padding: 0.875rem 1rem;
  color: #ffffff;
  font-size: 0.875rem; /* 1rem -> 0.875rem に調整 */
  font-family: var(--font-sans);
  transition: border-color 0.3s ease;
  outline: none;
  border-radius: 0;
}
.c-form-input:focus,
.c-form-textarea:focus {
  border-color: var(--color-border-strong);
}

.c-form-textarea {
  resize: vertical;
  min-height: 10rem;
}

.c-privacy-box {
  background-color: var(--color-bg-dark);
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  height: 10rem;
  overflow-y: auto;
  font-size: 0.75rem; /* 0.875rem -> 0.75rem に調整 */
  color: var(--color-text-sub);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.c-privacy-box h4 {
  color: #ffffff;
  font-size: 0.8125rem; /* 0.9375rem -> 0.8125rem に調整 */
  margin-bottom: 0.75rem;
}

.c-privacy-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8125rem; /* 0.9375rem -> 0.8125rem に調整 */
  color: var(--color-text-sub);
  margin-bottom: 2.5rem;
  cursor: pointer;
}
.c-privacy-check input {
  accent-color: #ffffff;
  width: 1.125rem;
  height: 1.125rem;
  cursor: pointer;
}

.c-form-submit-wrap {
  text-align: center;
}

.c-form-submit {
  background: none;
  border: 1px solid var(--color-border-strong);
  color: #ffffff;
  padding: 1.125rem 4rem;
  border-radius: 9999px;
  font-size: 0.8125rem; /* 0.9375rem -> 0.8125rem に調整 */
  font-family: var(--font-en);
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: all 0.3s ease;
}
.c-form-submit:hover {
  background-color: #ffffff;
  color: #000000;
}

.c-btn-mail {
  display: inline-block;
  margin-top: 2rem;
  padding: 1.125rem 2rem;
  border: 1px solid var(--color-border-strong);
  border-radius: 9999px;
  font-size: 0.8125rem; /* 0.9375rem -> 0.8125rem に調整 */
  font-family: var(--font-en);
  letter-spacing: 0.15em;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .c-btn-mail {
    padding: 1.125rem 3rem;
  }
}
.c-btn-mail:hover {
  background-color: #ffffff;
  color: #000000;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.c-footer {
  background-color: #000000;
  padding: 5rem 2rem 3rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.8125rem; /* 0.9375rem -> 0.8125rem に調整 */
  color: var(--color-text-muted);
}
.c-footer__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 768px) {
  .c-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.c-footer__nav {
  display: flex;
  gap: 1rem;
  font-family: var(--font-en);
  letter-spacing: 0.2em;
}
@media (min-width: 768px) {
  .c-footer__nav {
    gap: 2rem;
  }
}
.c-footer__nav-link {
  color: var(--color-text-sub);
  text-decoration: none;
  transition: color 0.3s ease;
}
.c-footer__nav-link:hover {
  color: #ffffff;
}
.c-footer__company {
  font-family: var(--font-serif);
  font-size: 1rem; /* 1.125rem -> 1rem に調整 */
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.c-footer__address {
  line-height: 1.8;
  color: var(--color-text-muted);
}
.c-footer__copyright {
  max-width: 72rem;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-family: var(--font-en);
  font-size: 0.6875rem; /* 0.75rem -> 0.6875rem に調整 */
  color: var(--color-text-muted);
}

.form-pattern-1 {
  background: none !important;
  color: #fff;
}

.form-contents {
  padding: 0px !important;
  margin: auto;
}

/*新メールフォーム*/
.form {
  margin: 10px 0 10px;
}
.form dt span {
  color: #fff;
  background: #FF4F4F;
  padding: 0 5px 0;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 2px;
  position: relative;
  top: -2px;
}
.form dt strong {
  color: #fff;
  background: #999;
  padding: 0 5px 0;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 2px;
  position: relative;
  top: -2px;
}
.form dt .optional::before {
  content: "任意";
  color: #fff;
  background: #999;
}
.form dl {
  margin: 10px 0;
  font-size: 16px;
}
.form dt {
  float: left;
  width: 280px;
  padding-top: 20px;
}
.form dd {
  padding-left: 280px;
  padding-bottom: 20px;
  padding-top: 23px;
  line-height: 1.5;
  border-bottom: 1px solid #eee;
}
.form dd p {
  font-size: 14px;
  padding-top: 5px;
  color: #888;
}
.form dd:last-child {
  border-bottom: 0px;
  margin-bottom: 0px;
}

.dropdown {
  border-radius: 2px;
  border: 1px solid #ddd;
}

.textarea, .textarea2 {
  width: 95%;
  border-radius: 2px;
  border: 1px solid #ddd;
  padding: 5px;
  color: #333;
}

.form-button {
  padding: 5px;
  border-radius: 5px;
  text-align: center;
  margin: 10px 0;
}

#mailform button {
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
  display: block;
  margin: 0 auto 5px;
  padding: 10px 0 10px;
  color: #fff;
  text-align: center;
  width: 250px;
  border-radius: 5px;
  background: #5c4233;
  font-size: 16px;
  font-weight: bold;
  border: 2px solid #5c4233;
}
#mailform button:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0e0";
  margin-right: 6px;
}
#mailform button:hover {
  background: #fff;
  color: #5c4233;
}
#mailform button * {
  transition: 0.2s;
}

.form-button * {
  transition: 0.2s;
}

/*RadioとText*/
label {
  display: block;
}
label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}
label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: "";
  z-index: 3;
}
label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 2px;
  top: 4px;
  background-color: #5c4233;
  z-index: 1;
}
label.radio_text input[type=radio] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 15px;
  height: 15px;
  left: -15px;
  top: 2px;
  margin: 0px;
  box-shadow: 15px -1px #fff;
  border-radius: 50%;
}
label.radio_text input[type=radio]:checked {
  box-shadow: none;
}
label.radio_text input[type=radio]:focus {
  opacity: 0.2;
  box-shadow: 15px -1px #FFF;
}
label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin-right: 20px;
  overflow: hidden;
  display: inline-block;
  box-sizing: border-box;
}
label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
}
label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #5c4233;
  border-bottom: 3px solid #5c4233;
  transform: rotate(45deg);
  z-index: 1;
}
label.checkbox_text input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #FFF;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}
label.checkbox_text input[type=checkbox]:checked {
  box-shadow: none;
}
label.checkbox_text input[type=checkbox]:checked:focus {
  box-shadow: 40px 0px #666;
  opacity: 0.1;
}
label.checkbox_text input[type=checkbox]:focus {
  box-shadow: 41px 0px #EEE;
}

/*CheckBoxとText */
.fm-text {
  padding: 10px;
  font-size: 11px;
  margin: 10px 0;
}

@media all and (max-width: 890px) {
  .form dl {
    margin: 10px 0;
    font-size: 14px; /* 16px -> 14px に調整 */
  }
  .form dt {
    float: none;
    width: 100%;
    line-height: 20px;
    padding-top: 10px;
  }
  .form dd {
    width: 100%;
    padding-left: 0;
    padding-bottom: 10px;
    padding-top: 10px;
    line-height: 20px;
    border-bottom: 1px solid #eee;
  }
  .form dd:last-child {
    border-bottom: 0px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1024px) {
  .form-contents :not(.pattern-exclusion) button {
    width: 100% !important;
  }
}
/* /新メールフォーム */
.blog-box {
  margin-bottom: 50px;
}
.blog-box img {
  max-width: 100%;
  height: auto;
}

.page_next {
  float: right;
}

.page_prev {
  float: left;
}

.mtitle_box {
  background: rgba(23, 125, 23, 0.1);
  border-radius: 10px;
  color: #343338;
  font-size: 2rem;
  position: relative;
  padding: 10px 10px;
  margin-bottom: 20px;
  font-weight: 700;
}
.mtitle_box span {
  font-weight: normal;
  font-size: 14px;
  padding-left: 10px;
}

@media all and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.6rem; /* 1.8rem -> 1.6rem に調整 */
  }
}
.newsl2 dt {
  font-size: 120%;
  padding-top: 10px;
  line-height: 1.3;
  color: #5c4233;
  font-weight: bold;
}
.newsl2 dd {
  padding-bottom: 5px;
  padding-top: 10px;
  margin-bottom: 15px;
  line-height: 1.6;
  border-bottom: dotted 1px #b6ae83;
}
.newsl2 dd b {
  color: #594C39;
}/*# sourceMappingURL=basis.css.map */