
@charset "utf-8";

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

body {
margin: 0;
font-family: 'Playfair Display', serif;
color: #2c1d00;
background-color: #C8BBA8;
}


/* ヘッダー */
header {
display: flex;
justify-content: flex-end;
padding: 24px 40px;
position: relative;
z-index: 10;
align-items: center;
}



nav ul {
display: flex;
gap: 24px;
list-style: none;
}

nav a {
text-decoration: none;
color: #000;
font-family: 'Cormorant Garamond', serif;

font-size: 1.2rem;
font-size: 1.0rem;

}

nav a:hover {
  opacity: 0.5;
}

.site-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: #000;
  margin-right: auto;
  text-decoration: none;
  line-height: 1;
  mix-blend-mode: multiply;
  letter-spacing: 0.02em;
  font-weight: 500;
  opacity: 0.8;

  
}
/* ここまで */


/* ここから会社情報 */


.company-intro-section {
  padding: 120px 40px 60px;
  text-align: center;
}

.company-heading {
  font-size: 6vw;
  font-family: 'Cormorant Garamond', serif;
  mix-blend-mode: multiply;
  letter-spacing: 0.02em;
  margin: 0;
  font-weight: 500;
  color: black;
  opacity: 0.8;
  white-space: nowrap;
}

.company-description,
.company-description-en {
  font-size: 1.3rem;
  font-family: 'Noto Serif JP', serif;
  color: #2c1d00;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
  line-height: 2;
}

.company-description-en {
  font-size: 0.75rem;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  color: #555;
  margin-top: 10px;
}

/* description 出現アニメーション */
.company-description.visible,
.company-description-en.visible {
  opacity: 1;
  transform: translateY(0);
}

/*企業理念セクション*/
.company-philosophy-section {
  padding: 60px 40px 80px;
}

.philosophy-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap; 
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.company-image-slider.small {
  max-width: 300px;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 80%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.philosophy-text {
  max-width: 520px;
  min-width: 0;
  font-family: 'Noto Serif JP', serif;
  color: #2c1d00;
  line-height: 2;
}

.philosophy-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.philosophy-ja {
  font-size: 1rem;
  margin-bottom: 12px;
}

.philosophy-en {
  font-size: 0.8rem;
  font-style: italic;
  color: #555;
  font-family: 'Cormorant Garamond', serif;
}

/* 会社概要部分 */
.company-details-section {
  padding: 80px 40px;
  display: flex;
  justify-content: center;
}

.company-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1000px;
  width: 100%;
}

.company-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: 'Noto Serif JP', serif;
  color: #2c1d00;
}

.company-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.label-wrap {
  font-family: 'Cormorant Garamond', serif;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.label-ja {
  font-size: 1rem;
  font-weight: 600;
}

.label-en {
  font-size: 0.75rem;
  color: #555;
  font-style: italic;
}

.company-content {
  font-size: 0.95rem;
  line-height: 2;
}

.company-info hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 8px 0;
}

.company-content a {
  text-decoration: none;
  color: #2c1d00;
  border-bottom: 1px solid #2c1d00;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

.company-content a:hover {
  opacity: 0.7;
}

/* 文字のアニメーション */
.fade-target {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}


/* フッター */
/* フッター全体 */
.footer {
position: relative;
padding: 0;
overflow: hidden;
background-color: #C8BBA8;
}

/*LUNOA 流れる*/
.footer-marquee {
white-space: nowrap;
overflow: hidden;
}
.marquee-content {
display: inline-block;
font-size: 15vw;
font-family: 'Cormorant Garamond', serif;
font-weight: 500;
color: black;
opacity: 0.08;
mix-blend-mode: multiply;
animation: marquee 30s linear infinite;
}
.marquee-content span {
margin-right: 4vw;
}
@keyframes marquee {
0% { transform: translateX(0%); }
100% { transform: translateX(-50%); }
}

/* CONTACTCOMPANY セクション  */
.footer-links {
display: flex;
justify-content: center;
gap: 80px;
padding: 60px 20px;
flex-wrap: wrap;
}

.footer-box {
display: flex;
flex-direction: column;
gap: 16px;
width: 340px;
color: #2c1d00;
}


.footer-heading-wrap {
display: flex;
align-items: center;
justify-content: space-between;
}

/* 見出し */
.footer-box h3 {
font-size: 4.6rem;
  font-family: 'Cormorant Garamond', serif;
  mix-blend-mode: multiply;
margin: 0;
flex-shrink: 0;
letter-spacing: 0.02em;
font-weight: 500;
color: black;
opacity: 0.8;



}

/* 日本語テキスト */
.footer-box p {
color: #2c1d00;
line-height: 2.2;
font-family: 'Noto Serif JP', serif;

font-size: 1.3rem;
}


/* --- FOLLOW US セクション --- */
.footer-bottom {
padding: 40px 60px;
font-size: 0.9rem;
color: #2c1d00;
display: flex;
flex-direction: column;
gap: 20px;

}
.follow-us {
display: flex;
justify-content: space-between;
align-items: center;
}
.follow-left {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 10px;
}
.follow-left h4 {
font-size: 1rem;
font-weight: 600;
margin: 0;
font-family: 'Cormorant Garamond', serif;

}
.sns-icons {
display: flex;
gap: 16px;
}
.sns-icons img {
width: 20px;
height: 20px;
filter: grayscale(100%);
}

.footer-nav {
display: flex;
gap: 20px;
flex-wrap: wrap;
font-size: 0.85rem;
font-family: 'Cormorant Garamond', serif;

}
.footer-nav a {
text-decoration: none;
color: #000;
font-family: 'Cormorant Garamond', serif;

}

.footer-nav a:hover {
  opacity: 0.5;
}


.copyright {
text-align: right;
font-size: 0.75rem;
opacity: 0.8;
}

.footer-links {
display: flex;
justify-content: center;
gap: 160px; 
padding: 60px 20px;
flex-wrap: wrap;
}

.footer-heading-wrap {
display: flex;
align-items: center;
justify-content: flex-start;
gap: 20px; 
}







