@charset "UTF-8";

/* ==========================
   Reset CSS
========================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

ul,
ol {
  list-style: none;
}

img,
picture {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  border: none;
  background: transparent;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

iframe {
  border: 0;
}

address {
  font-style: normal;
}

body {
  min-height: 100vh;
  line-height: 1;
  text-rendering: optimizeSpeed;
  overflow-x: hidden;
}

main {
  display: block;
}

svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ==========================
   Form
========================== */

input,
textarea,
select,
button {
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

textarea {
  resize: vertical;
}


/* ==========================
   Image Hover Effect
========================== */

.img-hover {
  position: relative;
  overflow: hidden;
}

.img-hover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 1s ease, transform 1s ease;
}

.img-hover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.22);
  transition: opacity 1s ease;
  pointer-events: none;
}

.img-hover:hover img {
  filter: grayscale(0%);
  transform: scale(1.04);
}

.img-hover:hover::after {
  opacity: 0;
}


/* ==========================
   Accessibility
========================== */

a,
button {
  transition: 0.3s;
}

:focus-visible {
  outline: 2px solid #C5A059;
  outline-offset: 3px;
}

body{
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  background: #030303;
  color: #fcfcfc;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.en{
  font-family: "Cinzel", serif;
}

/* ==========================
   Header
========================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 75px;
  background: rgba(0, 0, 0, 0);
  transition: background 0.6s ease, backdrop-filter 0.6s ease;
}

.header.is-scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
}

.header__inner {
  height: 100%;
  padding: 0 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  width: 100px;
}

.header__logo img {
  width: 100%;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__nav-list a {
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #fcfcfc;
  line-height: 16.5px;
}

.header__nav-list a:hover {
  opacity: 0.65;
}

.header__contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 32px;

    background: #C5A059;
    color: #FCFCFC;

    font-size: 15px;
    letter-spacing: 0.12em;

    transition: .3s ease;
}
@media screen and (min-width: 769px) {
  .hamburger {
    display: none;
  }
}
/* ==========================
   FV
========================== */

.fv {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
}

.fv__slider,
.fv__slide {
  position: absolute;
  inset: 0;
}

.fv__slide {
  opacity: 0;
  transition: opacity 2s ease;
}

.fv__slide.is-active {
  opacity: 1;
}

.fv__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fv::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.35) 50%,
      rgba(0, 0, 0, 0.9) 100%
    ),
    rgba(0, 0, 0, 0.18);
}

.fv__content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -48%);
  width: 90%;
  text-align: center;
}

.fv__script {
  margin-bottom: 30px;
  font-family: "Pinyon Script", cursive;
  font-size: clamp(46px, 4.4vw, 74px);
  line-height: 1;
  letter-spacing: 0.03em;
  color: #fcfcfc;
  font-weight: 400;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
}

.fv__sub-en {
  margin-bottom: 13px;
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: rgba(252, 252, 252, 0.82);
}

.fv__title {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.42em;
  color: rgba(252, 252, 252, 0.82);
}
/* ==========================
   Common
========================== */

.inner {
  width: min(100% - 120px, 1200px);
  margin: 0 auto;
}

.section_title {
  margin-bottom: 90px;
}

.section_title_en {
  display: block;
  margin-bottom: 10px;
  color: #C5A059;
  font-size: 15px;
  letter-spacing: 0.45em;
}

.section_title_ja {
  font-size: 46px;
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.3;
}

/* ==========================
   Service
========================== */

.service {
  padding: 190px 0 170px;
  background: #030303;
}

.service_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service_item > a {
  position: relative;
  display: block;
  overflow: hidden;
}

.service_image {
  position: relative;
  aspect-ratio: 540 / 400;
  overflow: hidden;
}

.service_image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.service_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.service_overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fcfcfc;
  width: 100%;
}

.service_overlay img {
  width: 40px;
  margin: 0 auto 24px;
}

.service_overlay .en {
  margin-bottom: 13px;
  font-size: 22px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.service_overlay p:last-child {
  font-size: 15px;
  letter-spacing: 0.25em;
}

.service_body {
  position: relative;
  margin-top: 34px;
  padding-left: 28px;
}

.service_body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 152px;
  background: #C5A059;
}

.service_body h3 {
  margin-bottom: 28px;
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 0.12em;
}

.service_body p {
  margin-bottom: 38px;
  color: #7a818c;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.08em;
}

.service_body a {
  position: relative;
  display: inline-block;
  color: #fcfcfc;
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.18em;
}

.service_body a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 78px;
  height: 1px;
  background: #fcfcfc;
  transition: width 0.3s ease;
}

/* hover */
.service_item > a:hover .service_image img {
  transform: scale(1.06);
}

.service_body a:hover::after {
  width: 105px;
}

/* ==========================
   Message
========================== */

.message {
  position: relative;
  background: #030303;
}

.message_bg {
  min-height: 100vh;
  padding: 120px 0;
  background:
    url("../images/top/message_bg.jpg") center / cover fixed no-repeat;
}

.message_inner {
  width: min(100% - 120px, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 480px 1fr;
  align-items: center;
  gap: 120px;
}

.message_image_wrap {
  position: relative;
}

.message_image_frame {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(198, 161, 91, 0.35);
  z-index: 1;
}

.message_image_wrap figure {
  position: relative;
  z-index: 2;
  aspect-ratio: 480 / 680;
  overflow: hidden;
}

.message_image_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 90px;
}

.message_text {
  max-width: 420px;
}

.message_text .section_title_en {
  margin-bottom: 42px;
}

.message_text p {
  margin-bottom: 38px;
  color: rgba(252, 252, 252, 0.88);
  font-size: 15px;
  line-height: 2.35;
  letter-spacing: 0.14em;
}

.message_text p:last-child {
  margin-bottom: 0;
}

.message__copy {
  writing-mode: vertical-rl;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.18em;
  color: rgba(252, 252, 252, 0.18);
  white-space: nowrap;
}

.message__copy span {
  color: rgba(252, 252, 252, 0.18);
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.message__copy span.is-visible {
  color: #fcfcfc;
  text-shadow: 0 0 10px rgba(255,255,255,.25);
}

/* ==========================
   Company
========================== */

.company {
  padding: 180px 0;
  background: #030303;
}

.company__inner {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 90px;
  align-items: center;
}

.company__content {
  width: 100%;
}

.company .section_title {
  margin-bottom: 60px;
}

.company__list {
  border-top: 1px solid rgba(255,255,255,.18);
}

.company__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 34px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.company__row dt {
  color: #C5A059;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.08em;
}

.company__row dd {
  color: #fcfcfc;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.company__images {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}

.company__image {
  overflow: hidden;
}

.company__image:nth-child(1) {
  width: 250px;
}

.company__image:nth-child(2) {
  width: 250px;
}

.company__image img {
  width: 100%;
  display: block;
  transition: filter 1s ease, transform 1s ease;
}

.company__image:hover img {
  transform: scale(1.04);
}

/* ==========================
   Blog / News
========================== */

.blog {
  padding: 180px 0;
  background: #030303;
}

.blog_inner {
  width: min(100% - 120px, 1200px);
  margin: 0 auto;
}

.blog .section_title {
  margin-bottom: 80px;
}

.blog_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 38px;
}

.blog_item {
  background: #f8f8f8;
  color: #030303;
}

.blog__link {
  display: block;
  height: 100%;
}

.blog__image {
  aspect-ratio: 360 / 270;
  overflow: hidden;
}

.blog__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 1s ease, transform 1s ease;
}

.blog__body {
  min-height: 185px;
  padding: 34px 34px 36px;
}

.blog__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.blog__meta time {
  color: #C5A059;
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.blog__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 24px;
  padding: 0 10px;
  border: 1px solid rgba(3, 3, 3, 0.35);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.blog__title {
  min-height: 64px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.blog__more {
  display: inline-block;
  margin-top: 34px;
  color: rgba(3, 3, 3, 0.35);
  font-size: 11px;
  letter-spacing: 0.24em;
  transition: color 0.3s ease;
}

.blog_item:hover .blog__image img {
  transform: scale(1.06);
}

.blog_item:hover .blog__more {
  color: #C5A059;
}

/* ==========================
   Access / Google Map
========================== */

.access {
  background: #030303;
}

.access_map {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.access_map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ==========================
   Contact CTA
========================== */

.contact_cta {
  padding: 110px 0 130px;
  background: #030303;
}

.contact_cta_link {
  position: relative;
  display: block;
  width: min(100% - 120px, 1250px);
  height: 285px;
  margin: 0 auto;
  overflow: hidden;
}

.contact_cta_link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 1s ease;
}

.contact_cta_link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.35),
      rgba(0,0,0,.88)
    ),
    rgba(0,0,0,.35);
}

.contact_cta_link > div {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fcfcfc;
}

.contact_cta_link h2 {
  margin-bottom: 16px;
  font-family: "Cinzel", serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.42em;
}

.contact_cta_link p {
  position: relative;
  padding-bottom: 28px;
  font-size: 14px;
  letter-spacing: 0.35em;
}

.contact_cta_link p::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 34px;
  height: 1px;
  background: #fcfcfc;
  transform: translateX(-50%);
}

.contact_cta_link:hover img {
  transform: scale(1.04);
}

/* ==========================
   Footer
========================== */

footer {
  background: #030303;
  padding: 100px 0 40px;
}

.footer_inner {
  width: min(100% - 120px, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 220px;
}

.footer_info {
  flex-shrink: 0;
}

.footer_logo {
  margin-bottom: 50px;
  font-family: "Cinzel", serif;
  font-size: 34px;
  letter-spacing: 0.16em;
  color: #fcfcfc;
}

.footer_name,
.footer_address,
.footer_tel {
  color: #6f7682;
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.08em;
}

.footer_name {
  margin-bottom: 6px;
}

.footer_address {
  margin-bottom: 6px;
}

.footer_tel {
  margin-bottom: 40px;
}

.footer_sns {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer_sns a {
  display: block;
}

.footer_sns img {
  width: 28px;
  transition: opacity .3s ease;
}

.footer_sns a:hover img {
  opacity: .7;
}

/* ---------- nav ---------- */

.footer_nav {
  padding-top: 6px;
}

.footer_nav_title {
  position: relative;
  margin-bottom: 30px;
  color: #C5A059;
  font-family: "Cinzel", serif;
  font-size: 14px;
  letter-spacing: 0.12em;
}

.footer_nav_title::after {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: #C5A059;
  margin-top: 12px;
}

.footer_nav ul {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer_nav a {
  color: #6f7682;
  font-family: "Cinzel", serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  transition: color .3s ease;
}

.footer_nav a:hover {
  color: #fcfcfc;
}

/* ---------- copyright ---------- */

.footer-copy {
  margin-top: 120px;
  text-align: center;
  color: #2f3640;
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.08em;
}

/* ==========================
   ここからService Page
========================== */


/* Page FV */
/* ==================================
   PAGE FV
================================== */

.page-fv {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.page-fv__image {
    width: 100%;
    height: 100%;
}

.page-fv__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-fv__content {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.page-fv__en {
    display: block;
    margin-bottom: 28px;
    font-size: 16px;
    letter-spacing: 0.55em;
    color: #C5A059;
}

.page-fv__title {
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 0.15em;
    line-height: 1;
    color: #FCFCFC;
}

.page-fv__line {
    display: block;
    width: 70px;
    height: 1px;
    background: #C5A059;
    margin: 40px auto 0;
}

/* ---------- read ---------- */


.page-lead {
    background: #030303;
    color: #FCFCFC;
    text-align: center;
    padding: 140px 0 160px;
}

.page-lead .inner {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-lead__title {
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 0.15em;
    line-height: 1.6;
    margin-bottom: 40px;
}

.page-lead__text {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1.6px;
    color: #9CA3AF;
}

/* ==================================
   REAL ESTATE
================================== */

.business_block {
    color: #FCFCFC;
    padding-top: 128px;
}
.business_block--realestate {
    background: #080C16;
}


/* メイン紹介 */
.business_intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 85px;
    align-items: center;
    margin-bottom: 105px;
}

.business_intro_image img {
    width: 100%;
    aspect-ratio: 520 / 390;
    object-fit: cover;
    filter: grayscale(100%);
}

.business_intro_number {
    display: block;
    margin-bottom: 16px;
    font-size: 14px;
    letter-spacing: 0.45em;
    color: #C5A059;
}

.business_intro_title {
    margin-bottom: 34px;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 0.12em;
}

.business_intro_text {
    margin-bottom: 48px;
    font-size: 14px;
    line-height: 2.2;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.82);
}

.business_intro_points {
    display: grid;
    gap: 28px;
}

.business_intro_points li {
    position: relative;
    padding-left: 38px;
}

.business_intro_points li::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 16px;
    height: 16px;
    background: url("../images/service/check.png") no-repeat center center;
    background-size: contain;
}

.business_intro_points h3 {
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.08em;
}

.business_intro_points p {
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #6B7280;
}

/* サブタイトル */
.business_heading {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-bottom: 48px;
}

.business_heading_line {
    flex: 1;
    height: 1px;
    background: rgba(200, 164, 90, 0.55);
}

.business_heading h3 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.12em;
    white-space: nowrap;
}

/* 3カラム */
.business_cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
    align-items: stretch;
    margin-bottom: 52px;
}

.business_card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.business_card_image img {
    width: 100%;
    aspect-ratio: 330 / 180;
    object-fit: cover;
    filter: grayscale(100%);
}

.business_card_body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 30px 28px 28px;
    border: 1px solid rgba(255,255,255,.45);
}

.business_card_title {
    margin-bottom: 6px;
    font-size: 25px;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.08em;
    line-height: 38px;
}

.business_card_sub {
    margin-bottom: 26px;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0.08em;
    color: #C5A059;
}

.business_card_text {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.014em;
    color: rgba(255, 255, 255, 0.82);
}

.business_card_list {
    margin-top: auto;
    padding-top: 15px;
}

.business_card_list li {
    font-size: 13px;
    line-height: 2;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.82);
}

.business_card_list::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(200, 164, 90, 0.45);
    margin-bottom: 15px;
}



/* 住宅賃貸 */
.housing {
    padding: 42px 34px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    margin-bottom: 192px;
}

.housing_title {
    margin-bottom: 6px;
    font-size: 26px;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.1em;
    line-height: 38px;
}

.housing_sub {
    margin-bottom: 42px;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0.08em;
    color: #C5A059;
}

.housing_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 58px;
    align-items: center;
}

.housing_image img {
    width: 100%;
    aspect-ratio: 480 / 250;
    object-fit: cover;
    filter: grayscale(100%);
}

.housing_text {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 2.15;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.82);
}

.housing_list {
    padding-top: 15px;
    border-top: 1px solid rgba(200, 164, 90, 0.45);
}

.housing_list li {
    font-size: 13px;
    line-height: 2;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.82);
}

.business_card_list li::before,
.housing_list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;

    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #C5A059;
}
.business_card_list,
.housing_list {
    list-style: none;
    padding-left: 0;
}

.business_card_list li,
.housing_list li {
    position: relative;
    padding-left: 14px;
}

/* hoverは画像があるカード系のみ */
.img-hover {
    overflow: hidden;
}

.img-hover img {
    transition: transform 0.6s ease;
}

.img-hover:hover img {
    transform: scale(1.05);
}

/* ==================================
   FOOD BUSINESS
================================== */


.business_block--food .inner {
  width: min(100% - 120px, 1200px);
  margin: 0 auto;
}
.business_block--food {
    background: #030303;
    padding: 140px 0 150px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.food-business__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}

.food-business__content {
    max-width: 560px;
}

.food-business__number {
    display: block;
    margin-bottom: 18px;
    font-size: 14px;
    letter-spacing: 0.4em;
    color: #C5A059;
}

.food-business__title {
    margin-bottom: 48px;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: #FCFCFC;
}

.food-business__concept {
    margin-bottom: 12px;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: #C5A059;
    display:flex;
    align-items:center;
    gap:12px;
}

.food-business__concept span {
    margin-left: 12px;
    color: #C5A059;
}

.food-business__text {
    font-size: 14px;
    line-height: 2.2;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,.8);
}

.food-business__text + .food-business__text {
  margin-top: 24px;
  color: #6B7280;
}

.food-business__image img {
    width: 100%;
    aspect-ratio: 640 / 430;
    object-fit: cover;
    filter: grayscale(100%);
}

/* ==================================
   LIFELINE BUSINESS
================================== */

.business_block--lifeline .inner {
  width: min(100% - 120px, 1200px);
  margin: 0 auto;
}

.business_block--lifeline {
    background: #030303;
    padding: 0 0 150px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.lifeline-business__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}

/* 左右反転 */
.lifeline-business__image {
    order: 1;
}

.lifeline-business__content {
    order: 2;
    max-width: 560px;
}

.lifeline-business__number {
    display: block;
    margin-bottom: 18px;
    font-size: 14px;
    letter-spacing: 0.4em;
    color: #C5A059;
}

.lifeline-business__title {
    margin-bottom: 48px;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: #FCFCFC;
}

.lifeline-business__concept {
    margin-bottom: 12px;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: #C5A059;
    display:flex;
    align-items:center;
    gap:12px;
}

.lifeline-business__concept span {
    margin-left: 12px;
    color: #C5A059;
}

.lifeline-business__text {
    font-size: 14px;
    line-height: 2.2;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,.8);
}

.lifeline-business__text + .lifeline-business__text {
    margin-top: 24px;
    color: #6B7280;
}

.lifeline-business__image img {
    width: 100%;
    aspect-ratio: 640 / 430;
    object-fit: cover;
}

/* ==================================
   OUR STRENGTH
================================== */

.strength {
    background: #080C16;
    padding: 128px 0 198px;
}

.strength .inner {
    width: min(100% - 80px, 1280px);
    margin: 0 auto;
}

/* タイトル */
.section_title {
    text-align: center;
    margin-bottom: 80px;
}

.section_title_en {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 0.4em;
    color: #C5A059;
}

.section_title_ja {
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: #FCFCFC;
}

/* 3カラム */
.strength_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
}

/* カード */
.strength_item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);

    padding: 48px 44px 44px;
    min-height: 340px;

    display: flex;
    flex-direction: column;
}

.strength_icon {
    margin-bottom: 42px;
}

.strength_icon img {
    width: 48px;
    height: auto;
    display: block;
}

.strength_title {
    margin-bottom: 34px;

    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;

    color: #FCFCFC;
}

.strength_text {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.05em;

    color: #6B7280;
}

/* ==========================
   ここからCOMPANY Page
========================== */

/* ==================================
   COMPANY MESSAGE
================================== */

.company-message {
    background: #030303;
    color: #FCFCFC;
    padding: 128px 0 192px;
}

.company-message .inner {
    width: min(calc(100% - 336px), 1504px);
    margin: 0 auto;
}

.company-message__inner {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 100px;
    align-items: center;
}

.company-message__image {
    position: relative;
    padding: 0 32px 32px 0;
}

.company-message__image::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc(100% - 32px);
    height: calc(100% - 32px);
    border: 1px solid rgba(197, 160, 89, 0.35);
    z-index: 0;
}

.company-message__image figure {
    position: relative;
    z-index: 1;
}

.company-message__image img {
    width: 100%;
    aspect-ratio: 560 / 380;
    object-fit: cover;
    filter: grayscale(100%);
}

.company-message__en {
    display: block;
    margin-bottom: 22px;
    font-size: 14px;
    letter-spacing: 0.35em;
    color: #C5A059;
}

.company-message__title {
    margin-bottom: 54px;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0.08em;
    color: #FCFCFC;
}

.company-message__text p {
    font-size: 16px;
    line-height: 2.2;
    letter-spacing: 0.08em;
    color: #9CA3AF;
}

.company-message__text p + p {
    margin-top: 24px;
}

.company-message__name {
    margin-top: 58px;
    font-size: 16px;
    letter-spacing: 0.18em;
    color: #FCFCFC;
}

/* ==================================
   COMPANY PROFILE
================================== */

.company-profile{
    background:#080C16;
    padding:128px 0;
}

.company-profile .inner{
    width:min(calc(100% - 440px), 1480px);
    margin:0 auto;
}

.company-profile .section_title{
    text-align:center;
    margin-bottom:90px;
}

.company-profile__table{
    width:100%;
}

.company-profile__row{
    display:grid;
    grid-template-columns:220px 1fr;
    gap:48px;
    align-items:start;

    padding:34px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.company-profile__row:first-child{
    border-top:1px solid rgba(255,255,255,.08);
}

.company-profile__row dt{
    margin:0;
    font-size:12px;
    line-height:2;
    letter-spacing:.12em;
    color:#C5A059;
}

.company-profile__row dd{
    margin:0;
    font-size:16px;
    line-height:2;
    color:#FCFCFC;
}

/* ==================================
   HISTORY
================================== */

.history{
    background:#030303;
    padding:128px 0;
}

.history .section_title{
    text-align:center;
    margin-bottom:120px;
}

.history_timeline{
    position:relative;
    max-width:900px;
    margin:0 auto;
}

/* 中央ライン */
.history_timeline::before{
    content:"";
    position:absolute;
    left:50%;
    top:0;
    bottom:0;
    width:1px;

    background:linear-gradient(
        to bottom,
        rgba(197,160,89,0) 0%,
        rgba(197,160,89,.8) 15%,
        rgba(197,160,89,.8) 85%,
        rgba(197,160,89,0) 100%
    );

    transform:translateX(-50%);
}

.history_item{
    position:relative;
    width:50%;
    margin-bottom:120px;
}

.history_item:last-child{
    margin-bottom:0;
}

/* ゴールドの丸 */
.history_item::before{
    content:"";
    position:absolute;
    top:52px;

    width:12px;
    height:12px;
    border-radius:50%;

    background:#C5A059;
    box-shadow:0 0 0 8px #030303;
    z-index:2;
}

/* 左 */
.history_item--left{
    text-align:right;
    padding-right:70px;
}

.history_item--left::before{
    right:-6px;
}

/* 右 */
.history_item--right{
    margin-left:auto;
    padding-left:70px;
    text-align:left;
}

.history_item--right::before{
    left:-6px;
}

/* 年号 */
.history_year{
    margin-bottom:15px;
    font-family: "Cinzel", serif;
    font-size:28px;
    line-height:1;
    letter-spacing:.08em;

    color:#C5A059;
}

/* タイトル */
.history_title{

    font-size:16px;
    font-weight:400;
    line-height:1.8;

    color:#FCFCFC;
}

/* 説明 */
.history_text{
    font-size:14px;
    line-height:1.8;

    color:#9CA3AF;
}

/* ==================================
   COMPANY GALLERY
================================== */

.company-gallery{
    background:#080C16;
    padding:128px 0;
}

.company-gallery__inner{
    width:min(100% - 148px, 1400px);
    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
}

.company-gallery__item{
    overflow:hidden;
}

.company-gallery__item img{
    width:100%;
    aspect-ratio:350 / 500;
    object-fit:cover;
    filter:grayscale(100%);
    display:block;

    transition:transform .6s ease;
}

.company-gallery__item:hover img{
    transform:scale(1.05);
}

/* ==========================
   ここからBlogページ
========================== */

.blog-archive {
  padding: 120px 0 180px;
  background: #030303;
}

.blog-archive__inner {
  width: min(100% - 120px, 1200px);
  margin: 0 auto;
}

/* Category */
.blog-category {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 72px;
}

.blog-category a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  padding: 14px 28px;

  border: 1px solid rgba(252, 252, 252, 0.12);
  color: #9CA3AF;

  font-size: 12px;
  letter-spacing: 0.12em;
  transition: 0.3s ease;
}

.blog-category a.is-active,
.blog-category a:hover {
  background: #C5A059;
  border-color: #C5A059;
  color: #FCFCFC;
}

/* Archive layout */
.blog_list--archive {
  gap: 52px 42px;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 88px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  border: 1px solid rgba(252, 252, 252, 0.12);
  color: #9CA3AF;

  font-family: "Cinzel", serif;
  font-size: 13px;
  transition: 0.3s ease;
}

.pagination .is-active,
.pagination a:hover {
  background: #C5A059;
  border-color: #C5A059;
  color: #FCFCFC;
}

.pagination__dots {
  border: none;
}

/* ==================================
   ここから FAQ
================================== */

.faq {
  background: #030303;
  padding: 120px 0 180px;
}

.faq__inner {
  width: min(100% - 120px, 1200px);
  margin: 0 auto;
}

/* カテゴリ */
.faq-category {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 72px;
}

.faq-category a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 52px;
  border: 1px solid rgba(252, 252, 252, 0.1);
  font-size: 12px;
  color: #9CA3AF;
  transition: 0.3s;
}

.faq-category a:hover,
.faq-category a.is-active {
  background: #C5A059;
  border-color: #C5A059;
  color: #FCFCFC;
}

/* FAQ本体 */
.faq-group {
  display: grid;
  gap: 18px;
}

.faq-item {
  background: #0A0A0A;
  border: 1px solid rgba(252, 252, 252, 0.08);
  transition: border-color 0.4s ease;
}

.faq-item[open] {
  border-color: rgba(197, 160, 89, 0.2);
}

/* 質問 */
.faq-question {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 96px;
  padding: 0 90px 0 36px;
  cursor: pointer;
  list-style: none;
  color: #FCFCFC;
  font-size: 16px;
  line-height: 1.8;
  gap: 10px;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-q {
  margin-right: 18px;
  color: #C5A059;
  font-family: "Cinzel", serif;
  font-size: 24px;
}

/* 矢印 */
.faq-question::after {
  content: "⌃";
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  color: #C5A059;
  font-size: 16px;
  transition: transform 0.5s ease;
}

.faq-item[open] .faq-question::after {
  transform: translateY(-50%) rotate(0deg);
}

/* 回答 */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 36px;
  transition: max-height 0.5s ease;
}

.faq-answer p {
  margin: 0;
  padding-bottom: 36px;
  color: #9CA3AF;
  font-size: 16px;
  line-height: 2.2;
}


/*    FAQタブ切り替え */

.faq-group{
    display:none;
}

.faq-group.is-active{
    display:block;
}
/* ==================================
   CONTACT PAGE
================================== */

.contact-page {
    background: #080C16;
    padding: 128px 0 160px;
}

.contact-page__inner {
    width: min(100% - 120px, 920px);
    margin: 0 auto;
}

/* Lead */
.contact-page__lead {
    margin-bottom: 44px;
    text-align: center;
    font-size: 16px;
    line-height: 2.2;
    letter-spacing: 0.08em;
    color: #9CA3AF;
}

/* Phone */
.contact-tel {
    display: grid;
    grid-template-columns: 1fr 1.35fr 1fr;
    align-items: center;

    margin-bottom: 72px;
    padding: 28px 42px;

    border: 1px solid rgba(252,252,252,.12);

    background: rgba(255,255,255,.03);
    backdrop-filter: blur(10px);
}

.contact-tel__label,
.contact-tel__number {
    border-right: 1px solid rgba(252,252,252,.12);
}

.contact-tel__label span {
    display: block;
    margin-bottom: 8px;

    font-size: 12px;
    letter-spacing: 0.34em;
    color: #C5A059;
}

.contact-tel__label p,
.contact-tel__time p {
    font-size: 13px;
    color: #9CA3AF;
}

.contact-tel__number {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.contact-tel__number span {
    color: #9CA3AF;
}

.contact-tel__number a {
    font-family: "Cinzel", serif;
    font-size: 28px;
    letter-spacing: 0.18em;
    color: #FCFCFC;
}

.contact-tel__time {
    padding-left: 34px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Form */
.contact-form {
    padding: 56px 54px 64px;

    background: rgba(255,255,255,.03);

    border: 1px solid rgba(255,255,255,.08);

    box-shadow:
        0 30px 80px rgba(0,0,0,.35);
}

.contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 42px;
}

.contact-form__item {
    display: flex;
    flex-direction: column;
}

.contact-form__item--full {
    margin-top: 34px;
}

.contact-form label {
    margin-bottom: 14px;

    font-size: 12px;
    letter-spacing: 0.12em;
    color: #FCFCFC;
}

.contact-form label span {
    margin-left: 12px;

    font-family: "Cinzel", serif;
    font-size: 10px;
    letter-spacing: 0.22em;

    color: #C5A059;
}

.contact-form input,
.contact-form select {
    width: 100%;
    height: 44px;

    border: none;
    border-bottom: 1px solid rgba(252,252,252,.18);

    background: transparent;

    color: #FCFCFC;
    font-size: 16px;

    outline: none;
}

.contact-form textarea {
    width: 100%;
    height: 160px;

    padding: 18px;

    border: 1px solid rgba(252,252,252,.18);

    background: transparent;

    color: #FCFCFC;
    font-size: 16px;
    line-height: 2;

    outline: none;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #6B7280;
}
.contact-form__item--full .wpcf7-form-control-wrap {
    display: block;
    margin-top: 13px;
}

/* プライバシー */
.contact-form__privacy {
    margin-top: 36px;

    font-size: 13px;
    color: #FCFCFC;
}

.contact-form__privacy .wpcf7-list-item {
    margin: 0;
}

.contact-form__privacy label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.contact-form__privacy input[type="checkbox"] {
    display: none;
}

.contact-form__privacy .wpcf7-list-item-label {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #FCFCFC;
}

.contact-form__privacy .wpcf7-list-item-label::before {
    content: "";

    width: 18px;
    height: 18px;

    border: 1px solid rgba(252, 252, 252, 0.45);

    flex-shrink: 0;
}

.contact-form__privacy input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
    background-color: #C5A059;
    border-color: #C5A059;
}

.contact-form__privacy-link {
    color: #C5A059;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity .3s;
}

.contact-form__privacy-link:hover {
    opacity: .7;
}




/* Submit */
.contact-form__submit {
    margin-top: 56px;
    text-align: center;
}

.contact-form__submit button {
    min-width: 260px;
    padding: 18px 40px;

    border: 1px solid #FCFCFC;

    background: transparent;

    color: #FCFCFC;

    font-size: 13px;
    letter-spacing: 0.22em;

    cursor: pointer;

    transition: .3s ease;
}

.contact-form__submit button:hover {
    background: #C5A059;
    border-color: #C5A059;
}

/* ==================================
   PRIVACY POLICY
================================== */

.privacy {
  background: #080C16;
  padding: 128px 0 160px;
}

.privacy__inner {
  width: min(100% - 120px, 920px);
  margin: 0 auto;
}

.privacy__lead {
  margin-bottom: 72px;
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: #9CA3AF;
}

.privacy__content {
  display: grid;
  gap: 52px;
}

.privacy__block {
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(252,252,252,.1);
}

.privacy__block h3 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #FCFCFC;
}

.privacy__block p {
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: #9CA3AF;
}
.contact-form__privacy a{
    color:#C5A059;
    text-decoration:underline;
    transition:.3s;
}

.contact-form__privacy a:hover{
    opacity:.7;
}

.privacy__block h3 span {
  color: #C5A059;
}

/* ==================================
   THANKS
================================== */

.thanks {
  background: #080C16;
  padding: 150px 0 170px;
  text-align: center;
}

.thanks__inner {
  width: min(100% - 120px, 920px);
  margin: 0 auto;
}

.thanks__en {
  display: block;
  margin-bottom: 20px;
  font-size: 14px;
  letter-spacing: 0.35em;
  color: #C5A059;
}

.thanks__title {
  margin-bottom: 42px;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #FCFCFC;
}

.thanks__text {
  margin-bottom: 64px;
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: #9CA3AF;
}

.thanks__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 18px 40px;
  border: 1px solid #FCFCFC;
  color: #FCFCFC;
  font-size: 13px;
  letter-spacing: 0.22em;
  transition: .3s ease;
}

.thanks__button:hover {
  background: #C5A059;
  border-color: #C5A059;
}

/* ==================================
   SINGLE BLOG
================================== */

.single-blog{
    background:#030303;
    padding:120px 0 180px;
}

.single-blog__inner{
    width:min(100% - 120px, 900px);
    margin:0 auto;
}

/* ---------- Meta ---------- */

.single-blog__meta{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:16px;

    margin-bottom:24px;
}

.single-blog__meta time{
    color:#C5A059;
    font-family:"Cinzel", serif;
    font-size:13px;
    letter-spacing:.08em;
}

.single-blog__category{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:70px;
    height:30px;

    padding:0 14px;

    border:1px solid rgba(252,252,252,.15);

    color:#D8DCE3;
    font-size:12px;
}

/* ---------- Title ---------- */

.single-blog__title{
    max-width:800px;

    margin:0 auto 60px;

    color:#FCFCFC;

    text-align:center;

    font-size:30px;
    font-weight:400;
    line-height:1.7;
    letter-spacing:.08em;
}

/* ---------- Thumbnail ---------- */

.single-blog__thumbnail{
    margin-bottom:60px;
}

.single-blog__thumbnail img{
    width:100%;
    height:auto;
    display:block;
}

/* ---------- Content ---------- */

.single-blog__content{
    color:#B8BEC8;

    font-size:17px;
    line-height:2;

    letter-spacing:.04em;
}

.single-blog__content p{
    margin-bottom:1.8em;
}

/* H2 */

.single-blog__content h2{
    margin:80px 0 30px;

    padding-left:20px;

    border-left:3px solid #C5A059;

    color:#FCFCFC;

    font-size:28px;
    font-weight:400;
    line-height:1.6;
}

/* H3 */

.single-blog__content h3{
    margin:60px 0 20px;

    color:#FCFCFC;

    font-size:22px;
    font-weight:400;
}

/* List */

.single-blog__content ul,
.single-blog__content ol{
    padding-left:1.5em;
    margin:30px 0;
}

.single-blog__content li{
    margin-bottom:10px;
}

/* Image */

.single-blog__content img{
    width:100%;
    height:auto;

    margin:50px 0;
}

/* ---------- Footer ---------- */

.single-blog__footer{
    margin-top:100px;
    padding-top:50px;

    border-top:1px solid rgba(252,252,252,.08);
}

.single-blog__category-wrap{
    text-align:center;
}

.single-blog__label{
    display:block;

    margin-bottom:20px;

    color:#C5A059;

    letter-spacing:.15em;
}

/* ---------- Pager ---------- */

.single-blog__pager{
    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:40px;

    margin-top:80px;
}

.single-blog__pager a{
    color:#D8DCE3;

    transition:.3s;
}

.single-blog__pager a:hover{
    color:#C5A059;
}

/* ---------- Back ---------- */

.single-blog__back{
    text-align:center;

    margin-top:80px;
}

.btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:260px;
    height:60px;

    border:1px solid #C5A059;

    color:#FCFCFC;

    transition:.3s;
}

.btn-outline:hover{
    background:#C5A059;
}

