/*
Theme Name: Piaceculla
Text Domain: piaceculla
Author URI: 
Version: 1
*/

/* =================== Base & Reset =================== */
:root {
  --color-wood-dark: #5e4b35;
  --color-wood-light: #bfa686;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-bg: #faf9f6;
  --font-en: 'Cormorant Garamond', serif;
  --font-jp: 'Shippori Mincho', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--color-text); line-height: 1.8; background-color: var(--color-bg); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }

/* =================== Header =================== */
header { width: 100%; padding: 15px 40px; display: flex; justify-content: space-between; align-items: center; position: fixed; top: 0; left: 0; z-index: 1000; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(0,0,0,0.05); }

/* ロゴ */
.logo { font-family: var(--font-en); font-size: 26px; font-weight: 600; letter-spacing: 0.1em; color: var(--color-wood-dark); display: flex; align-items: baseline; gap: 10px; }
.logo-sub { font-size: 13px; font-weight: 400; letter-spacing: 0.05em; color: var(--color-text); }
.logo a:hover { opacity: .6;}

/* ナビ修正 */
.nav-desktop { display: flex; gap: 25px; align-items: center; }
.nav-desktop a { 
  font-size: 13px; 
  letter-spacing: 0.05em; 
  color: var(--color-text); 
  font-weight: 500; 
  position: relative; 
  font-family: var(--font-en); 
  text-transform: uppercase;
}
.nav-desktop a:hover { color: var(--color-wood-light); }

.reserve-btn { 
  background: var(--color-wood-dark); 
  color: #fff !important; 
  padding: 10px 22px; 
  border-radius: 2px; 
  font-family: var(--font-jp) !important; 
  letter-spacing: 0.1em; 
  font-size: 13px; 
}
.reserve-btn:hover { background: var(--color-wood-light); }
.nav-mobile {
  display: none;
  font-size: 26px;
  cursor: pointer;
  z-index: 1100;
}

/* SPメニュー本体 */
.nav-sp {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 80px 30px;
  gap: 20px;
  transition: 0.4s;
  z-index: 1050;
}

.nav-sp a {
  font-size: 14px;
  letter-spacing: .08em;
}

/* 開いた状態 */
.nav-sp.active {
  right: 0;
}

/* =================== Hero =================== */
.hero {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-image: url('../../../piaceculla/171012_0036.JPG');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.2); }
.hero-content { text-align: center; color: #fff; position: relative; z-index: 1; }
.hero-title { font-family: var(--font-jp); font-size: clamp(24px, 5vw, 48px); font-weight: 400; letter-spacing: 0.3em; margin-bottom: 15px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); animation: fadeUp 1.5s ease forwards; }
.hero-subtitle { font-family: var(--font-en); font-size: 14px; letter-spacing: 0.3em; opacity: 0; animation: fadeUp 1.5s ease 0.5s forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* =================== Sections Common =================== */
.section { padding: 80px 20px; max-width: 1000px; margin: 0 auto; text-align: center; }
.section-head { margin-bottom: 50px; transition: margin 0.3s; }
.section-title { font-family: var(--font-en); font-size: 38px; color: var(--color-wood-dark); letter-spacing: 0.05em; margin-bottom: 5px; text-transform: capitalize; }
.section-subtitle { font-size: 12px; color: var(--color-wood-light); letter-spacing: 0.1em; font-weight: 600; }
.btn-more { display: inline-block; margin-top: 20px; padding: 12px 35px; border: 1px solid var(--color-wood-dark); color: var(--color-wood-dark); font-family: var(--font-en); letter-spacing: 0.1em; font-size: 13px; background: transparent; transition: all 0.3s; }
.btn-more:hover { background: var(--color-wood-dark); color: #fff; }

/* =================== Concept & Organic =================== */
.concept-wrap, .organic-wrap { display: flex; align-items: center; gap: 60px; text-align: left; margin-bottom: 20px; }

/* PC用画像：正円 */
.concept-img {
  flex: none; width: 400px; height: 400px;
  background: url('../../../piaceculla/171012_0019.JPG') center/cover no-repeat;
  box-shadow: 20px 20px 0 var(--color-wood-light);
  border-radius: 50%;
}
.organic-img {
  flex: none; width: 400px; height: 400px;
  background: url('../../../piaceculla/download_0264.jpg') center/cover no-repeat; 
  border-radius: 50%;
  box-shadow: -20px 20px 0 #e6e1d6;
}

.organic-wrap { flex-direction: row-reverse; margin-top: 80px; }
.concept-text-area, .organic-text-area { flex: 1; }
.concept-lead { font-size: 22px; font-family: var(--font-jp); color: var(--color-wood-dark); margin-bottom: 25px; line-height: 1.6; font-weight: 500; white-space: nowrap; }
.concept-desc { font-size: 15px; color: var(--color-text-light); line-height: 2.0; text-align: justify; }
.img-mobile-only { display: none; }

/* =================== Separator =================== */
.parallax-separator {
  height: 400px; width: 100%;
  background-image: url('../../../piaceculla/171012_0002.JPG');
  background-position: center; background-repeat: no-repeat; background-size: cover;
  position: relative; display: flex; justify-content: center; align-items: center;
  background-attachment: fixed;
  text-decoration: none; cursor: pointer;
}
.parallax-separator::after { content: ''; position: absolute; inset: 0; background: rgba(94, 75, 53, 0.4); transition: background 0.3s; }
.parallax-separator:hover::after { background: rgba(94, 75, 53, 0.2); }
.separator-text { position: relative; z-index: 2; color: #fff; font-family: var(--font-en); font-size: 32px; letter-spacing: 0.2em; border: 1px solid rgba(255,255,255,0.6); padding: 20px 40px; background: rgba(255,255,255,0.1); backdrop-filter: blur(2px); transition: transform 0.3s; }
.parallax-separator:hover .separator-text { transform: scale(1.05); }

/* =================== Navigation Blocks =================== */
.block-area { background: #fff; padding: 60px 20px; }
.block-wrapper { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.block-card { position: relative; height: 320px; overflow: hidden; display: block; }
.block-bg { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.block-card:hover .block-bg { transform: scale(1.1); }
.block-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.25); display: flex; justify-content: center; align-items: center; transition: background 0.3s; }
.block-card:hover .block-overlay { background: rgba(94, 75, 53, 0.5); }
.block-title { color: #fff; font-family: var(--font-en); font-size: 20px; letter-spacing: 0.15em; border: 1px solid rgba(255,255,255,0.9); padding: 12px 28px; background: rgba(255,255,255,0.1); backdrop-filter: blur(3px); }

/* =================== News =================== */
.news-section { background: var(--color-bg); padding: 40px 20px; }
.news-list { max-width: 800px; margin: 0 auto; text-align: left; }
.news-item { display: flex; padding: 12px 0; border-bottom: 1px solid #ddd; align-items: baseline; transition: opacity 0.3s; }
.news-item:hover { opacity: 0.7; }
.news-date { width: 120px; flex-shrink: 0; font-family: var(--font-en); font-weight: 600; color: var(--color-wood-dark); }
.news-content { flex-grow: 1; }
.news-title { font-size: 15px; font-weight: 500; margin-bottom: 3px; display: block; }
.news-text,
.news-text-wrap p { font-size: 13px; color: #777; line-height: 1.5; }
.more-btn-area { margin-top: 20px; text-align: center; }

/* =================== SALON =================== */
.salon-area {
  background-image: url('../../../piaceculla/171012_0007.JPG');
  background-position: center; background-repeat: no-repeat; background-size: cover;
  position: relative; padding: 80px 20px;
  background-attachment: fixed;
}
.salon-area::before { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.6); }
.salon-wrapper { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; background: #fff; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.map-container { width: 100%; height: 450px; position: relative; }
.map-iframe { width: 100%; height: 100%; filter: grayscale(0.2) contrast(1.1); border: none; }
.salon-info { padding: 50px; background: #fff; text-align: left; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.info-col-left, .info-col-right { display: flex; flex-direction: column; gap: 0; }
.info-row { display: flex; border-bottom: 1px solid #eee; padding: 15px 0; font-size: 14px; }
.info-row:last-child { border-bottom: none; }
.info-label { width: 90px; font-weight: 600; color: var(--color-wood-dark); font-family: var(--font-en); letter-spacing: 0.05em; flex-shrink: 0; }
.info-value { color: var(--color-text); }

/* =================== CTA =================== */
.cta { text-align: center; background: #fff; padding: 80px 20px; border-top: 1px solid #eee; margin-top: 0; }
.cta h2 { font-family: var(--font-jp); font-size: 24px; color: var(--color-wood-dark); margin-bottom: 20px; font-weight: 500; }
.btn-cta { display: inline-block; margin-top: 30px; padding: 15px 60px; background: var(--color-wood-dark); color: #fff; font-family: var(--font-en); letter-spacing: 0.1em; font-size: 14px; transition: all 0.3s; }
.btn-cta:hover { background: var(--color-wood-light); transform: translateY(-3px); }

/* =================== normal hero =================== */
.page-hero { height: 45vh; background: url('../../../piaceculla/IMG_1859.jpg') center/cover no-repeat; display: flex; align-items: center; justify-content: center; position: relative; margin-top: 0; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.3); }
.page-hero h1 { position: relative; z-index: 1; color: #fff; font-family: var(--font-en); font-size: 42px; letter-spacing: 0.2em; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }

/* =================== normal Container =================== */
.container { max-width: 900px; margin: 0 auto; padding: 100px 20px 80px; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { font-family: var(--font-jp); font-size: 26px; color: var(--color-wood-dark); margin-bottom: 20px; font-weight: 500; display: inline-block; border-bottom: 1px solid var(--color-wood-light); padding-bottom: 10px; }
.section-head p { color: var(--color-text-light); font-size: 15px; }
.content_box {
    background: #fff;
    padding: 50px;
    border: 1px solid #eee;
    max-width: 800px;
    margin: 0 auto;
    /* text-align: center; */
}
.content_box p {
    font-size: 15px;
    line-height: 2.2;
    color: var(--color-text-light);
    /* text-align: center; */
}

/* =================== archive inner =================== */
.article-list { display: flex; flex-direction: column; gap: 40px; }
.article-item { background: #fff; padding: 40px; border: 1px solid #eee; box-shadow: 0 5px 20px rgba(0,0,0,0.03); border-radius: 2px; }
.article-header { /*display: flex; justify-content: space-between;*/ align-items: center; margin-bottom: 12px; border-bottom: 1px dashed #ddd; padding-bottom: 8px; }
.article-title { font-family: var(--font-jp); font-size: 18px; color: var(--color-wood-dark); font-weight: 500; }
.article-date { font-size: 18px; font-family: var(--font-en); font-weight: 600; color: var(--color-wood-dark); }
.article-body { font-size: 14px; line-height: 2.0; color: var(--color-text-light); text-align: justify; }
.article-title a:hover { opacity: .6;}

/* ページネーション全体 */
.nav-links {
  text-align: center;          /* 中央揃え */
  margin: 40px 0 20px 0;              /* 上下の余白 */
  padding: 0 20px;             /* 左右の余白 */
}

/* 共通の数字デザイン */
.nav-links .page-numbers {
  color: #5e4b35;              /* 全体の文字色 */
  /* border: 1px solid #5e4b35;   枠線 */
  padding: 8px 12px;
  margin: 0 4px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

/* ホバー時 */
.nav-links .page-numbers:hover {
  background-color: #5e4b35;
  color: #fff;
}

/* current（現在のページ） */
.nav-links .current {
  background-color: #5e4b35;   /* 四角の塗り */
  color: #fff;                 /* 白文字 */
  border: 1px solid #5e4b35;
}


/* =================== Footer =================== */
footer { background: #252525; color: #999; padding: 70px 20px; text-align: center; font-size: 12px; }
.footer-logo { font-family: var(--font-en); font-size: 30px; color: #fff; margin-bottom: 20px; display: inline-block; letter-spacing: 0.1em; }
footer p { margin-bottom: 0; color: #999; text-align: center; }

/* =================== Responsive =================== */
@media (max-width: 900px) {
  .hero, .parallax-separator, .salon-area { background-attachment: scroll; }
  .nav-desktop { display: none; } .nav-mobile { display: block; }
  .hero-title { font-size: 32px; }
  .section { padding: 40px 20px; } .section-head { margin-bottom: 20px; }
  .concept-wrap, .organic-wrap { flex-direction: column; gap: 10px; margin-top: 0; margin-bottom: 20px; }
  .concept-img, .organic-img { display: none; }
  .concept-lead { margin-bottom: 15px; white-space: normal; line-height: 1.4; }
  
  /* スマホ用画像（丸く加工） */
  .img-mobile-only { 
    display: block; 
    width: 280px; 
    height: 280px; 
    margin: 0 auto 30px; 
    border-radius: 50%; 
    object-fit: cover; 
    box-shadow: 10px 10px 0 rgba(191, 166, 134, 0.3);
  }
  
  .btn-more { display: block; margin: 10px auto 0; width: fit-content; }
  .block-area { padding-top: 20px; padding-bottom: 30px; }
  .block-wrapper { grid-template-columns: 1fr 1fr; gap: 10px; }
  .block-card { height: 180px; }
  .news-section { padding: 30px 20px; }
  .news-item { flex-direction: column; gap: 5px; padding: 10px 0; }
  .more-btn-area { margin-top: 15px; }
  .salon-area { padding: 40px 0; }
  .salon-wrapper { box-shadow: none; }
  .map-container { height: 250px; }
  .salon-info { padding: 30px 20px; }
  .info-grid { grid-template-columns: 1fr; gap: 0; }
  /*　TELの下部にボーダー表示 */
  #InfoTel {
  border-bottom: 1px solid #eee;
  }

}