/*
Theme Name: nareru
Theme URI: 
Author: 
Author URI: 
Description: 不動産の力で世界を変える
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nareru
*/

/* Google Fonts - Noto Sans JP */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500&display=swap');

:root {
  /* カラー指定（厳守） */
  --color-deep-navy: #1F2A44;
  --color-off-white: #F7F7F5;
  --color-greige: #D6D2C7;
  --color-charcoal: #333333;
  
  /* 文字色 */
  --color-text-main: #333333;
  --color-text-white: #ffffff;
  
  /* 背景色 */
  --color-bg-main: #F7F7F5;
  --color-bg-white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

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

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: var(--color-text-main);
  line-height: 2.4;
  background-color: var(--color-bg-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

main {
  min-height: 60vh;
  padding-top: 0;
}

/* PC専用・スマホ専用クラス */
.pc-only {
  display: block !important;
}

.pc-only.pc-only-inline {
  display: inline !important;
}

.pc-only.pc-only-flex {
  display: flex !important;
}

.sm-only {
  display: none !important;
}

@media (max-width: 640px) {
  .pc-only {
    display: none !important;
  }

  .sm-only {
    display: block !important;
  }

  .sm-only.sm-only-inline {
    display: inline !important;
  }

  .sm-only.sm-only-flex {
    display: flex !important;
  }
}

/* スクロール時のコンテンツ表示アニメーション（無効化） */

/* 背景を白に設定して、コンテンツが上に来るように */
.owner-thoughts {
  position: relative;
  z-index: 1;
  background-color: var(--color-bg-white);
}

.section {
  position: relative;
  z-index: 1;
  background-color: var(--color-bg-main);
}

.cta-section {
  position: relative;
  z-index: 1;
  background-color: var(--color-bg-white);
}

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

ol,
ul {
  list-style: none;
}

/* Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0px 60px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: #ffffff05;
  transition: all 0.3s ease;
}

.header.scrolled {
  position: fixed;
  background-color: var(--color-bg-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px 60px;
}

.logo-link {
  display: flex;
}

.logo {
  height: auto;
  width: 208px;
}

/* Menu */
.menu-items {
  display: flex;
  color: var(--color-deep-navy);
  gap: 56px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.menu-items a {
  transition: opacity 0.2s ease;
}

.menu-items a:hover {
  opacity: 0.7;
}

.menu-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.menu-button img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(30%) saturate(2000%) hue-rotate(200deg) brightness(0.3);
}

.menu-close {
  position: absolute;
  top: 40px;
  right: 40px;
}

@media (max-width: 640px) {
  .header {
    padding: 10px 5%;
    position: absolute;
  }

  .header.scrolled {
    position: fixed;
    padding: 10px 24px;
  }

  .menu-nav {
    display: none;
  }

  .menu-nav.open {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-deep-navy);
    color: var(--color-text-white);
    padding: 32px 24px;
    z-index: 9999;
  }

  .menu-items {
    flex-direction: column;
    gap: 40px;
    margin-top: 80px;
    font-size: 16px;
    color: var(--color-text-white);
  }

  .menu-items a {
    color: var(--color-text-white);
  }

  .menu-button {
    display: flex;
    z-index: 1001;
  }

  .menu-button img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(30%) saturate(2000%) hue-rotate(200deg) brightness(0.3);
  }

  .menu-nav.open .menu-close img {
    filter: brightness(0) invert(1);
  }

  .menu-close {
    top: 32px;
    right: 24px;
  }
}

/* Footer */
.footer {
  padding: 100px 60px 60px;
  text-align: left;
  color: var(--color-text-main);
  font-size: 14px;
  margin-top: 0;
  background-color: #D6D2C7;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

.footer-logo-link {
  display: block;
  margin: auto;
}

.footer-logo {
  height: auto;
  max-width: 150px;
}
.footer-logo-link img{
  width: 100%;
  height: auto;
}

.footer-nav {
  margin-bottom: 0;
}

.footer-items {
  display: flex;
  gap: 56px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.footer-items a {
  transition: opacity 0.2s ease;
}

.footer-items a:hover {
  opacity: 0.7;
}

.footer-copyright {
  color: var(--color-text-main);
  font-size: 13px;
  margin-top: 0;
  line-height: 2;
  text-align: center;
}

@media (max-width: 640px) {
  .footer {
    padding: 80px 24px 60px;
    margin-top: 0;
  }

  .footer-inner {
    max-width: 100%;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-logo {
    max-width: 217px;
  }

  .footer-nav {
    width: 100%;
  }

  .footer-items {
    flex-direction: column;
    gap: 32px;
  }

  .footer-copyright {
    text-align: left;
  }
}

/* Top Page - First View */
.top-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  height: 100vh;
  min-height: 600px;
  padding-top: 120px;
}

.top-hero-slider {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  z-index: -1;
}

.top-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

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

.top-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.top-hero-image::after {
  display: none;
}

.top-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 60px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.top-hero-text {
  font-size: 3rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 1rem;
  color: #fff;
  line-height: 1.8;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 4px 30px rgba(0, 0, 0, 0.6);
}

@media (max-width: 640px) {
  .top-hero {
    height: 100vh;
    min-height: 500px;
    padding-top: 100px;
  }

  .top-hero-content {
    padding: 0 24px;
  }

  .top-hero-text {
    font-size: 2rem;
    text-align: left;
    letter-spacing: -0.3rem;
  }

  /* モバイルでも100vhと背景固定を維持 */
  .top-hero-slider {
    height: 100vh;
    min-height: 100vh;
  }

  .top-hero-image {
    background-attachment: fixed;
  }
}

/* Page Hero Image */
.page-hero {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #1F2A44;
}

.page-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85);
  z-index: -1;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 60px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.page-hero-title {
  color: var(--color-text-white);
  font-size: 32px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: left;
}

@media (max-width: 640px) {
  .page-hero {
    height: 40vh;
    min-height: 300px;
  }

  .page-hero-content {
    padding: 0 24px;
  }

  .page-hero-title {
    font-size: 24px;
    line-height: 2;
  }
}

/* Section - Common */
.section {
  max-width: 800px;
  margin: 0 auto;
  padding: 160px 60px;
  text-align: left;
}

.section-content {
  line-height: 2.6;
  font-size: 16px;
  color: var(--color-text-main);
  font-weight: 400;
}

.section-title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 80px;
  line-height: 1.6;
  color: var(--color-text-main);
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 16px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--color-deep-navy);
}

.section-text {
  font-size: 16px;
  line-height: 2.6;
  margin-bottom: 60px;
  color: var(--color-text-main);
  font-weight: 400;
}

.section-text:last-child {
  margin-bottom: 0;
}

.section-list {
  margin-top: 60px;
}

.section-list-item {
  font-size: 16px;
  line-height: 2.6;
  margin-bottom: 24px;
  padding-left: 0;
  position: relative;
  font-weight: 400;
}

.section-list-item::before {
  content: '・';
  margin-right: 8px;
}

.section-list-item:last-child {
  margin-bottom: 0;
}

/* Checkbox List */
.checkbox-list {
  margin-top: 60px;
}

.checkbox-item {
  font-size: 16px;
  line-height: 2.6;
  margin-bottom: 24px;
  padding-left: 32px;
  position: relative;
  font-weight: 400;
  list-style: none;
}

.checkbox-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-deep-navy);
  font-size: 16px;
  font-weight: 400;
}

.checkbox-item:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .section {
    padding: 120px 24px;
    max-width: 100%;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 60px;
    padding-bottom: 12px;
  }

  .section-title::after {
    width: 50px;
  }

  .section-text {
    font-size: 15px;
    line-height: 2.4;
    margin-bottom: 48px;
  }

  .section-list {
    margin-top: 48px;
  }

  .section-list-item {
    font-size: 15px;
    line-height: 2.4;
    margin-bottom: 20px;
  }

  .checkbox-list {
    margin-top: 48px;
  }

  .checkbox-item {
    font-size: 15px;
    line-height: 2.4;
    margin-bottom: 20px;
    padding-left: 28px;
  }

  .checkbox-item::before {
    font-size: 15px;
    width: 18px;
  }
}

/* Owner Thoughts Section */
.owner-thoughts {
  background-color: var(--color-bg-white);
  padding: 160px 60px;
}

.owner-thoughts-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.owner-thoughts-title {
  max-width: 1000px;
  margin: 0 auto 80px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text-main);
  letter-spacing: 0.05em;
  text-align: left;
  position: relative;
  padding-bottom: 16px;
  padding-left: 60px;
  padding-right: 60px;
}

.owner-thoughts-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 60px;
  width: 60px;
  height: 2px;
  background-color: var(--color-deep-navy);
}

.owner-thoughts-list {
  margin-bottom: 60px;
}

.owner-thoughts-item {
  font-size: 16px;
  line-height: 2.6;
  margin-bottom: 24px;
  padding-left: 0;
  position: relative;
  font-weight: 400;
}

.owner-thoughts-item::before {
  content: '・';
  margin-right: 8px;
}

.owner-thoughts-arrow {
  text-align: center;
  font-size: 24px;
  color: var(--color-greige);
  margin: 60px 0;
  line-height: 2;
}

.owner-thoughts-highlight {
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.6;
  color: var(--color-text-main);
  margin-top: 60px;
}

.owner-thoughts-highlight strong {
  font-weight: 500;
}

.owner-thoughts-button-wrapper {
  text-align: center;
  margin-top: 60px;
}

.owner-thoughts-button {
  display: inline-block;
  width: 300px;
  max-width: 100%;
  padding: 20px 40px;
  background-color: var(--color-deep-navy);
  color: var(--color-text-white);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: opacity 0.2s ease, transform 0.2s ease;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
}

.owner-thoughts-button:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .owner-thoughts {
    padding: 120px 24px;
  }

  .owner-thoughts-inner {
  max-width: 100%;
  }

  .owner-thoughts-title {
    max-width: 100%;
    margin: 0 auto 60px;
    font-size: 24px;
    padding-bottom: 12px;
    padding-left: 0px;
    padding-right: 24px;
    letter-spacing: -1px;
  }

  .owner-thoughts-title::after {
    width: 50px;
  }

  .owner-thoughts-item {
    font-size: 15px;
    line-height: 2.4;
    margin-bottom: 20px;
  }

  .owner-thoughts-arrow {
    margin: 48px 0;
    font-size: 20px;
  }

  .owner-thoughts-highlight {
    font-size: 15px;
    line-height: 2.4;
    margin-top: 48px;
  }

  .owner-thoughts-button-wrapper {
    margin-top: 48px;
  }

  .owner-thoughts-button {
    width: 100%;
    padding: 18px 32px;
    font-size: 15px;
  }
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 24px 80px;
  background-color: var(--color-deep-navy);
  color: var(--color-text-white);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: none;
  letter-spacing: 0.02em;
}

.cta-button:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.cta-section {
  text-align: center;
  padding: 120px 60px;
  background-color: var(--color-bg-white);
}

@media (max-width: 640px) {
  .cta-button {
    width: 100%;
    padding: 20px 40px;
  }

  .cta-section {
    padding: 100px 24px;
  }
}

/* Message Section */
.message-section {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 160px 60px;
  text-align: center;
}

.message-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.message-content {
  position: relative;
  z-index: 1;
  line-height: 2.6;
  font-size: 16px;
  color: var(--color-text-white);
  font-weight: 400;
}

.message-greeting {
  font-size: 16px;
  margin-bottom: 60px;
  line-height: 2.6;
  font-weight: 400;
}

.message-text {
  margin-bottom: 60px;
  line-height: 2.6;
  font-size: 16px;
  font-weight: 400;
}

.message-text:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .message-section {
    padding: 120px 24px;
  max-width: 100%;
  }

  .message-content {
    font-size: 15px;
    line-height: 2.4;
  }

  .message-greeting {
    font-size: 15px;
    margin-bottom: 48px;
  }

  .message-text {
    font-size: 15px;
    margin-bottom: 48px;
    line-height: 2.4;
  }
}

/* Company Info */
.company-section {
  position: relative;
  width: 100%;
  padding: 160px 60px;
  text-align: left;
}

.company-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: #1F2A44;
  background-image: url('../img/back.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.company-section-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.company-section-title {
  max-width: 1000px;
  margin: 0 auto 80px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text-white);
  letter-spacing: 0.05em;
  text-align: left;
  position: relative;
  padding-bottom: 16px;
  padding-left: 0px;
  padding-right: 60px;
}

.company-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--color-text-white);
}

.company-info {
  margin-top: 0;
}

.company-info-item {
  display: flex;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 16px;
  line-height: 2.6;
}

.company-info-item:last-child {
  border-bottom: none;
}

.company-info-label {
  width: 160px;
  font-weight: 400;
  color: var(--color-text-white);
  flex-shrink: 0;
}

.company-info-value {
  flex: 1;
  color: var(--color-text-white);
  line-height: 2.6;
  font-weight: 400;
}

@media (max-width: 640px) {
  .company-section {
    padding: 120px 24px;
  }

  .company-section::before {
    background-image: url('../img/sm-back.webp');
  }

  .company-section-inner {
    max-width: 100%;
  }

  .company-section-title {
    max-width: 100%;
    margin: 0 auto 60px;
    font-size: 24px;
    padding-bottom: 12px;
    padding-left: 0px;
    padding-right: 24px;
  }

  .company-section-title::after {
    width: 50px;
  }

  .company-info {
    margin-top: 0;
  }

  .company-info-item {
    flex-direction: column;
    padding: 28px 0;
  }

  .company-info-label {
    width: 100%;
    margin-bottom: 12px;
  }

  .company-info-value {
    font-size: 15px;
    line-height: 2.4;
  }
}

/* Contact Form */
.contact-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 160px 60px;
  text-align: left;
}

.contact-title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 2;
  color: var(--color-text-main);
  letter-spacing: 0.02em;
}

.contact-description {
  font-size: 16px;
  line-height: 2.6;
  margin-bottom: 100px;
  color: var(--color-text-main);
  font-weight: 400;
}

.contact-form {
  margin-top: 80px;
}

.contact-form-group {
  margin-bottom: 60px;
}

.contact-form-label {
  display: block;
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--color-text-main);
  font-weight: 400;
  line-height: 2;
}

.contact-form-input,
.contact-form-textarea,
.contact-form-select {
  width: 100%;
  padding: 20px;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  border: 1px solid var(--color-greige);
  background-color: var(--color-bg-white);
  color: var(--color-text-main);
  line-height: 1.8;
  transition: border-color 0.2s ease;
  border-radius: 0;
  box-shadow: none;
  font-weight: 400;
}

.contact-form-input:focus,
.contact-form-textarea:focus,
.contact-form-select:focus {
  outline: none;
  border-color: var(--color-deep-navy);
}

.contact-form-textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form-radio-group {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.contact-form-radio {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-form-radio input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--color-deep-navy);
}

.contact-form-radio label {
  font-size: 16px;
  cursor: pointer;
  margin: 0;
  font-weight: 400;
  line-height: 2;
}

.contact-form-submit {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 100px auto 0;
  padding: 24px 80px;
  background-color: var(--color-deep-navy);
  color: var(--color-text-white);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
  border-radius: 0;
  box-shadow: none;
  letter-spacing: 0.02em;
}

.contact-form-submit:hover {
  opacity: 0.85;
}

.contact-form-message {
  margin-bottom: 40px;
  padding: 24px;
  background-color: var(--color-greige);
  color: var(--color-text-main);
  font-size: 15px;
  line-height: 2.4;
  font-weight: 400;
}

@media (max-width: 640px) {
  .contact-section {
    padding: 120px 24px;
    max-width: 100%;
  }

  .contact-title {
    font-size: 18px;
  }

  .contact-description {
    font-size: 15px;
    line-height: 2.4;
    margin-bottom: 80px;
  }

  .contact-form {
    margin-top: 60px;
  }

  .contact-form-group {
    margin-bottom: 48px;
  }

  .contact-form-label {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .contact-form-input,
  .contact-form-textarea,
  .contact-form-select {
    font-size: 15px;
    padding: 18px;
  }

  .contact-form-radio-group {
    flex-direction: column;
    gap: 24px;
  }

  .contact-form-radio label {
    font-size: 15px;
  }

  .contact-form-submit {
    width: 100%;
    margin-top: 80px;
    padding: 20px 40px;
  }
}

/* News Section */
.news-section {
  background-color: var(--color-greige);
  padding: 160px 60px;
}

.news-section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.news-section-title {
  max-width: 1000px;
  margin: 0 auto 80px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text-main);
  letter-spacing: 0.05em;
  text-align: left;
  position: relative;
  padding-bottom: 16px;
  padding-left: 0px;
  padding-right: 60px;
}

.news-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0px;
  width: 60px;
  height: 2px;
  background-color: var(--color-deep-navy);
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-list-item {
  border-bottom: 1px solid var(--color-text-main);
  transition: opacity 0.2s ease;
}

.news-list-item:last-child {
  border-bottom: none;
}

.news-list-item:hover {
  opacity: 0.7;
}

.news-list-link {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 20px 0;
}

.news-list-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}

.news-list-date {
  font-size: 14px;
  color: var(--color-text-main);
  margin: 0;
}

.news-list-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text-main);
  margin: 0;
}

.news-section-button-wrapper {
  text-align: center;
  margin-top: 60px;
}

.news-section-button {
  display: inline-block;
  padding: 16px 48px;
  background-color: var(--color-deep-navy);
  color: var(--color-text-white);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: opacity 0.2s ease, transform 0.2s ease;
  letter-spacing: 0.02em;
}

.news-section-button:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.news-section-empty {
  text-align: center;
  color: var(--color-greige);
  font-size: 16px;
  padding: 60px 0;
}

@media (max-width: 640px) {
  .news-section {
    padding: 120px 24px;
  }

  .news-section-title {
    max-width: 100%;
    margin: 0 auto 60px;
    font-size: 24px;
    padding-bottom: 12px;
    padding-left: 0px;
    padding-right: 24px;
  }

  .news-section-title::after {
    width: 50px;
  }

  .news-list {
    gap: 20px;
  }

  .news-list-link {
    padding: 16px 0;
  }

  .news-list-content {
    gap: 10px;
  }

  .news-list-date {
    font-size: 13px;
  }

  .news-list-title {
    font-size: 15px;
  }

  .news-section-button-wrapper {
    margin-top: 48px;
  }

  .news-section-button {
    width: 100%;
    padding: 18px 32px;
    font-size: 15px;
  }
}

/* Room Section */
.room-section {
  background-color: var(--color-bg-white);
  padding: 160px 0px;
  overflow: hidden;
}

.room-section-inner {
  width: 100%;
  padding: 0 60px;
}

.room-section-title {
  max-width: 1000px;
  margin: 0 auto 80px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text-main);
  letter-spacing: 0.05em;
  text-align: left;
  position: relative;
  padding-bottom: 16px;
  padding-left: 60px;
  padding-right: 60px;
}

.room-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 60px;
  width: 60px;
  height: 2px;
  background-color: var(--color-deep-navy);
}

.room-slider-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-left: -60px;
  margin-right: -60px;
  width: calc(100% + 120px);
}

.room-slider {
  display: flex;
  gap: 24px;
  animation: slide 30s linear infinite;
  will-change: transform;
}

.room-slider:hover {
  animation-play-state: paused;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.room-slide {
  flex: 0 0 calc((100% - 96px) / 5);
  min-width: 0;
}

.room-item {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.room-item:hover {
  opacity: 0.8;
  transform: translateY(-4px);
}

.room-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 16px;
  background-color: var(--color-bg-main);
}

.room-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.room-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text-main);
  margin: 0;
  text-align: left;
}

.room-section-button-wrapper {
  text-align: center;
  margin-top: 60px;
  padding: 0 60px;
}

.room-section-button {
  display: inline-block;
  padding: 16px 48px;
  background-color: var(--color-deep-navy);
  color: var(--color-text-white);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: opacity 0.2s ease, transform 0.2s ease;
  letter-spacing: 0.02em;
}

.room-section-button:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.room-section-empty {
  text-align: center;
  color: var(--color-greige);
  font-size: 16px;
  padding: 60px 0;
}

@media (max-width: 1024px) {
  .room-slide {
    flex: 0 0 calc((100% - 48px) / 3);
  }
}

@media (max-width: 640px) {
  .room-section {
    padding: 120px 0;
  }

  .room-section-inner {
    padding: 0;
  }

  .room-section-title {
    max-width: 100%;
    margin: 0 auto 60px;
    font-size: 24px;
    padding-bottom: 12px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .room-slider-wrapper {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .room-section-title::after {
    width: 50px;
    left: 24px;

  }

  .room-slider {
    gap: 16px;
  }

  .room-slide {
    flex: 0 0 calc((100% - 32px) / 3);
  }

  .room-image {
    margin-bottom: 12px;
  }

  .room-title {
    font-size: 15px;
  }

  .room-section-button-wrapper {
    margin-top: 48px;
    padding: 0 24px;
  }

  .room-section-button {
    width: 100%;
    padding: 18px 32px;
    font-size: 15px;
  }
}
