/*
Theme Name: gotemba-box-sushi
Theme URI:
Author:
Description: Custom minimal theme
Version: 1.0.0
Text Domain: gotemba-box-sushi
*/

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }

/* Base */
:root {
  --container: 1200px;
  --bg-gray: #f5f5f5;
  --text: #595757;
}

html {
  scroll-behavior: smooth;
}

body {
  font-weight: 500;
  font-family: "YuMincho", "Yu Mincho", "游明朝体",  serif;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg-gray);
}

/* Width: 中だけ白 */
.inner {
  max-width: var(--container);
  margin: 0 auto;
  background: #fff;
  position: relative;
}
/* 見出し（残す） */
h1 { font-size: 32px; font-weight: 500; letter-spacing: 0.1em;}
h2 { font-size: 28px; font-weight: 500;}
h3 { font-size: 18px; font-weight: 500;}
p {}

.btn-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 ;
}
.btn-wrap .btn{
  display: block;
  color: #fff;
  width: auto;
  padding: 10px;
  background: #bc965c;
  border: 1px solid #bc965c;
  text-decoration: none;
  transition: 0.4s;
  text-align: center;
  width:100%;
  line-height: 1.4;
}
@media (max-width: 600px) {
  .btn-wrap .btn{padding: 10px 5px;}
}

.btn-wrap .btn:hover{
  color: #bc965c;
  background: #fff;
}

.readMoreBtn{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0 80px;
}
.readMoreBtn a{
  display: flex;
  color: #595757;
  text-decoration: none;
  border: 1px solid #595757;
  gap: 20px;
  padding: 10px 20px;
  transition: 0.4s;
}
.readMoreBtn a:hover{
  background: #595757;
  color: #fff;
}
.readMoreBtn a:after{
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url(./img/arrow_g.png) no-repeat center;
  background-size: contain;
}
.readMoreBtn a:hover:after{
  background: url(./img/arrow_w.png) no-repeat center;
  background-size: contain;
}


.single .backBtn{
  display: flex;
  justify-content: center;
  padding-top: 80px;
}
.single .backBtn a{
  color: #595757;
  text-decoration: none;
  border: 1px solid #595757;
  padding: 10px;
  transition: 0.4s;
}
.single .backBtn a:hover{
  background: #595757;
  color: #fff;
}

/* ====== Header row (最低限) ====== */
.headLogoText{
  display: inline-block;
  text-decoration: none;
  color: var(--text);
  transition: 0.4s;
}
.headLogoText:hover{
  opacity: 0.8;
}
.header-row{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.6vw, 20px);
  padding: 18px 20px;
  flex-wrap: wrap;
  max-width: var(--container);
  margin: 0 auto;
  background: #fff;
  position: relative;
}
.header-row .logo{
 text-align: center;
 display: flex;
 flex-direction: column;
 gap: 20px;
 padding: clamp(48px, 8vw, 80px) 0;
 letter-spacing: 0.4em;
}
.header-row .logo strong{
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: normal;
}
.header-row .logo h1{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 2.5vw, 30px);
}
.header-row .logo h1 strong{
  letter-spacing: -0.1em;
  font-size: clamp(38px, 6vw, 70px);
}
.header-row .logo h1 span{
  font-size: clamp(25px, 3.5vw, 40px);
}
.header-row .logo h2{
}
.header-right{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  width: 100%;
  background: rgba(255,255,255,0.94);
  transition: 0.4s;
}
.header-right .image{
  display: none;
}

.header-right h1{
  display: none;
}

.header-right.fixed{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 16px;
  z-index: 8888;
}
.header-right.fixed h1{
  display: block;
  font-size: clamp(16px, 2.5vw, 20px);
  flex: 1;
}
.header-right .text{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.header-right.fixed .text span{
  font-size: clamp(10px, 2.5vw, 14px);
}

@media (max-width: 600px) {
  .header-right{
    gap: 10px;
  }
  .header-right .text{
    display: none;
  }
  .header-right .image{
    display: block;
    width: 50px;
  }
  .header-right.fixed{
    padding:16px 10px;
  }
}



footer{
  max-width: var(--container);
  margin: 0 auto;
  background: #fff;
  position: relative;
  padding: 160px 0;
  text-align: center;
}
@media (max-width: 600px) {
  footer{
    padding: 80px 0;
  }
}
footer .sns-links{
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 120px 0 ;
  padding: 0;
  gap: 20px;
}

@media (max-width: 600px) {
footer .sns-links{
  margin: 60px 0 ;
}

}
footer .sns-links li{
    width: 40px;
    height: 40px;
}

footer .sns-links li a{
  transition: 0.4s;
  display: block;
  border-radius: 90px;
  border: 1px solid #fff;
}

footer .sns-links li a:hover{
  opacity: 0.8;
  border: 1px solid #595757;
}

/* ====== Hamburger button ====== */
.menu-btn{
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.menu-btn:after{
  font-family: 'Yu Mincho', 'YuMincho', serif;
  content:"MENU";
  font-size: 12px;
  text-align: center;
  margin-top: 15px;
  display: block;
  color: #595757;
}
.menu-btn span{
  display: block;
  width: 30px;
  height: 2px;
  background: #595757;
}
.menu-btn span:nth-child(2){ margin: 4px 0; }

/* ====== Fullscreen menu ====== */
.menu-overlay{
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.98);
  color: #595757;
  display: none;
  z-index: 9999;
}
.menu-overlay.is-open{ display: block; }
.menu-close{
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  color: #595757;
  font-size: 28px;
  cursor: pointer;
}
.menu-nav{
  height: 100%;
  display: grid;
  place-content: center;
  gap: 18px;
  text-align: left;
  padding: 16px;
}
.menu-nav a{
  color: #595757;
  font-size: clamp(16px, 2.5vw, 22px);
  letter-spacing: 0.06em;
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  transition: 0.4s;
  padding: 2px 8px;
}
@media (max-width: 600px) {
  .menu-nav a{padding: 0;}
}
.menu-nav a:hover{
  background: #595757;
  color: #fff;
}
.menu-nav a strong{
  width: 150px;
}
.menu-nav a span{
  flex: 1;
  font-size: clamp(12px, 2.5vw, 14px);
}
.menu-nav .links {
  margin-top: 30px;
}
.menu-nav .links dl{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-end;
}
.menu-nav .links dl dt{
  width: 150px;
  font-size: clamp(16px, 2.5vw, 22px);
}

@media (max-width: 600px) {
  .menu-nav .links dl{
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 30px;
    gap: 5px;
  }
  .menu-nav .links dl dt{
    width: 100%;
  }
}

.menu-nav .links dl dd{

}
.menu-nav .links dl dd a{
  font-size: clamp(12px, 2.5vw, 14px);
  text-decoration: underline;
}


/* ====== FV Slider with Ken Burns（Slick不使用） ====== */
.fv {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 100vh;
}
@media (max-width: 600px) {
  .fv { height: 60vh; }
}

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

/* 各スライド */
.fv-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1200ms ease-in-out;
  overflow: hidden;
}
.fv-slider .slide.is-active {
  opacity: 1;
  z-index: 1;
}
.fv-slider .slide.is-leaving {
  opacity: 0;
  z-index: 2;
}

/* 画像 */
.fv-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center center;
}

/* Ken Burns アニメーション定義 */
@keyframes kenburns-1 {
  0%   { transform: scale(1)    translate(0,    0); }
  100% { transform: scale(1.12) translate(-2%, -1%); }
}
@keyframes kenburns-2 {
  0%   { transform: scale(1)    translate(0,   0); }
  100% { transform: scale(1.12) translate(2%,  1%); }
}
@keyframes kenburns-3 {
  0%   { transform: scale(1.1)  translate(1%,  0); }
  100% { transform: scale(1)    translate(-1%, -1%); }
}

.fv-slider .slide.is-kenburns.kb-1 img {
  animation: kenburns-1 7s ease-in-out forwards;
}
.fv-slider .slide.is-kenburns.kb-2 img {
  animation: kenburns-2 7s ease-in-out forwards;
}
.fv-slider .slide.is-kenburns.kb-3 img {
  animation: kenburns-3 7s ease-in-out forwards;
}
.fv_copyArea{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  writing-mode: vertical-rl;
  position: absolute;
  top: 0;
  right: 10%;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 5% 5%;
  flex-wrap: wrap;
  z-index: 7777;
}
@media (max-width: 820px) {
  .fv_copyArea{
    right: 0;
  }
}
.fv_copyArea h3{
  display: inline-block;
  font-size: clamp(20px, 3.5vw, 36px);
}
.fv_copyArea p{
  display: inline-block;
}

/* ====== Scroll reveal (patterns) ====== */

.reveal{
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 700ms ease var(--delay, 0ms),
    transform 900ms cubic-bezier(.22,.61,.36,1) var(--delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

.reveal.from-bottom{ transform: translateY(20px); }
.reveal.from-top{ transform: translateY(-16px); }
.reveal.from-left{ transform: translateX(-24px); }
.reveal.from-left.is-visible{ transform: translateX(0); }

.reveal.fade{
  transform: none;
  transition: opacity 2000ms ease var(--delay, 0ms);
}

.reveal.heavy-fade{
  transform: none;
  filter: blur(2px);
  will-change: opacity, filter;
  transition:
    opacity 1200ms ease var(--delay, 0ms),
    filter 1400ms ease var(--delay, 0ms);
}
.reveal.heavy-fade.is-visible{ filter: blur(0); }

.reveal.vertical-heavy{
  transform: translateY(-16px);
  filter: blur(1px);
  transition:
    transform 1400ms cubic-bezier(.22,.61,.36,1) var(--delay, 0ms),
    opacity 1200ms ease var(--delay, 0ms),
    filter 1400ms ease var(--delay, 0ms);
  will-change: transform, opacity, filter;
}
.reveal.vertical-heavy.is-visible{
  transform: translateY(0);
  filter: blur(0);
}
.sectionArea:before{
  content:"|";
  font-size: 30px;
  color: #999;
  display: flex;
  width:100%;
  max-width: var(--container);
  background: #fff;
  margin: 0 auto;
  height: 220px;
  align-items: center;
  justify-content: center;
}

.sectionArea.singlePage:before{
  content:none;
}
@media (max-width: 600px) {
  .sectionArea:before{
    font-size: 20px;
    height: 120px;
  }
}
.textArea{
  width: 90%;
  max-width: 660px;
  position: relative;
  z-index: 1000;
}
@media (max-width: 600px) {
  .textArea{
    width: 80%;
  }
}
.textArea span{
  background: rgba(255,255,255,0.95);
  display: inline-block;
  padding: 3% 10% 0 6%;
  color: #bc965c;
  letter-spacing: 0.1em;
}
.textArea h2{
  background: rgba(255,255,255,0.95);
  padding: 2% 6%;
  font-size: clamp(30px, 5.5vw, 56px);
}

.page-template-page-top_en .textArea h2{
  font-size: clamp(24px, 5.5vw, 46px);
}


@media (max-width: 600px) {
  .textArea h2{
    line-height: 1.6;
  }
}
.textArea p{
  background: rgba(255,255,255,0.95);
  padding: 2% 6%;
  width:100%;
  max-width: 460px;
  line-height: 3;
  gap: clamp(16px, 1.6vw, 20px);
}
@media (max-width: 600px) {
  .textArea p{
    line-height: 1.8;
  }
}
.imageArea{
  width: 100%;
  display: flex;
}

/*section01*/
#sec1 .textArea{
  margin: -80px auto 0;
}

#sec1 .imageArea.section01{
  display: flex;
  justify-content: space-between;
  margin-top: -10%;
}

#sec1 .imageArea.section01 .rg{
  position: relative;
  margin-top: -10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 80px;
}

@media (max-width: 600px) {
  #sec1 .sectionMain{
    height: 300px;
  }
  #sec1 .sectionMain img{
    object-fit: cover;
    height: 100%;
  }
  #sec1 .textArea{
    margin-top: -100px;
  }
  #sec1 .imageArea.section01{
    display: block;
    margin-top: -30%;
  }
  #sec1 .imageArea.section01 .lf{
    width: 100%;
    margin: 0 auto;
  }
  #sec1 .imageArea.section01 .lf img{
    width: 60%;
    height: auto;
  }
  #sec1 .imageArea.section01 .rg{
    margin-top: 20px;
    width: 100%;
    gap: 20px;
    flex-direction: row-reverse;
    justify-content: center;
  }
  #sec1 .imageArea.section01 .rg span{
    width: 40%;
    display: flex;
    justify-content: center;
  }
}

/*section02*/

@media (max-width: 820px) {
  #sec2.sectionArea .sectionMain{
    width: 70%;
    height: auto;
  }
}
#sec2.sectionArea .inner{
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: relative;
}
#sec2.sectionArea .inner .textArea{
  position: absolute;
  right: 1%;
  top: 30%;
}
@media (max-width: 600px) {
  #sec2.sectionArea .inner .textArea{
    position: absolute;
    right: 1%;
    top: 15%;
  }
}

#sec2.sectionArea .imageArea{
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 5%;
}
#sec2.sectionArea .imageArea .img03{
  width: 100%;
  padding: 5% 5% 0;
}
#sec2.sectionArea .imageArea .img03 img{
  margin: 0 auto;
}

@media (max-width: 820px) {
  #sec2.sectionArea .imageArea .img01{
    width: 50%;
  }
}

@media (max-width: 600px) {
  #sec2.sectionArea .sectionMain{
    width: 80%;
  }
  #sec2.sectionArea .imageArea {
    padding-right: 0;
    align-items: flex-start;
    margin-top: 40px;
  }
  #sec2.sectionArea .imageArea .img01{
    width: 55%;
  }
  #sec2.sectionArea .imageArea .img02{
    width: 40%;
    margin-top: 20px;
  }
  #sec2.sectionArea .imageArea .img03{
    width: 60%;
    margin-top: -15%;
  }
}

/*section03*/
#sec3.sectionArea .inner{
  width: 100%;
  display: flex;
  flex-direction:row-reverse;
  align-items: flex-end;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: relative;
}
#sec3.sectionArea .inner .textArea{
  position: absolute;
  left: 5%;
  top: 20%;
}
@media (max-width: 600px) {
  #sec3.sectionArea .sectionMain{
    height: 300px;
    width: 100%;
  }
  #sec3.sectionArea .sectionMain img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #sec3.sectionArea .inner .textArea{
    top: 30%;
  }
}

#sec3 .imageArea.section03{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 5% 0 0;
}
#sec3 .imageArea.section03 .lf{
  width: 40%;
}
#sec3 .imageArea.section03 .lf img{
  margin: 0 auto;
}
#sec3 .imageArea.section03 .rg{
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 80px;
  padding-right: 5%;
}
@media (max-width: 600px) {
  #sec3 .imageArea.section03 .lf{
    width:40%;
  }
  #sec3 .imageArea.section03 .rg{
    gap: 40px;
    padding: 5% 5% 0;
  }
}

/*section04*/
#sec4 .textArea{
  margin: -80px auto 0;
}
@media (max-width: 600px) {
  #sec4.sectionArea .sectionMain{
    height: 300px;
    width: 100%;
  }
  #sec4.sectionArea .sectionMain img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #sec4 .textArea{
    margin: -130px auto 0;
  }
}
#sec4 .imageArea.section04{
  display: flex;
  justify-content: space-between;
}
@media (max-width: 820px) {
  #sec4 .imageArea.section04 .lf{
    width: 50%;
  }
}
#sec4 .imageArea.section04 .rg{
  position: relative;
  margin-top: -20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 80px;
}

@media (max-width: 600px) {
  #sec4 .imageArea.section04 .rg{
    width: 50%;
    padding: 5% 5% 0;
    align-items: center;
    gap: 40px;
    margin-top: -25%;
  }
}

/*section05*/
#sec5 .inner{
  background: #7f2500;
  padding: 11% 0;
}
#sec5 .inner .textArea{
  width: 90%;
  max-width: 660px;
  position: relative;
  z-index: 1000;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 10% 0;
}
@media (max-width: 600px) {
  #sec5 .inner .textArea{
    gap: 40px;
  }
}
#sec5 .inner .textArea span{
  text-align: center;
  margin: 0 auto;
  background: none;
  display: block;
  padding: 0;
  color: #bc965c;
  letter-spacing: 0.1em;
}
#sec5 .inner .textArea h2{
  background: none;
  text-align: center;
  padding: 0;
  color:#fff;
  letter-spacing: 0.1em;
}
#sec5 .inner .textArea p{
  background: none;
  text-align: center;
  padding: 0;
  width:100%;
  max-width: 400px;
  margin: 0 auto;
  color:#fff;
}
#sec5 .inner .textArea .btn-wrap{
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
#sec5 .inner .textArea .btn-wrap a{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
#sec5 .inner .textArea .btn-wrap a:after{
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url(./img/arrow_w.png) no-repeat center;
  background-size: contain;
}
#sec5 .inner .textArea .btn-wrap a:hover:after{
  background: url(./img/arrow_b.png) no-repeat center;
  background-size: contain;
}
#sec5 .inner .imageArea img{
    width:50%;
    height: auto;
}

/*section06*/
#sec6 .inner .textArea{
  width: 70%;
  max-width: 660px;
  position: relative;
  z-index: 1000;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
#sec6 .inner .textArea span{
  text-align: center;
  margin: 0 auto;
  background: none;
  display: block;
  padding: 0;
  color: #bc965c;
  letter-spacing: 0.1em;
}
#sec6 .inner .textArea h2{
  background: none;
  text-align: center;
  padding: 0;
  letter-spacing: 0.1em;
}
#sec6 .inner .textArea p{
  background: none;
  text-align: center;
  padding: 0;
  width:100%;
  max-width: 400px;
  margin: 0 auto;
}
#sec6 .articleWrap{
  padding: 5% 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
#sec6 .articleWrap article{
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
#sec6 .articleWrap article h3{
  overflow: hidden;
}
#sec6 .articleWrap article a img{
  width: 100%;
  height: auto;
}
#sec6 .articleWrap article a{
  transition: transform 0.4s ease;
  overflow: hidden;
}
#sec6 .articleWrap article a:hover{
  opacity: 0.8;
}
#sec6 .articleWrap article a img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

#sec6 .articleWrap article a:hover img{
  transform: scale(1.04);
}


@media (max-width: 600px) {
  #sec6 .articleWrap{
    display: block;
  }
  #sec6 .articleWrap article{
    width: 80%;
    margin: 0 auto 30px;
  }
  #sec6 .inner .textArea{
    gap: 40px;
  }
}
#sec6 .articleWrap article .detail{
  padding: 10px;
}
#sec6 .articleWrap article .detail .category{
  display: inline-block;
      border: 1px solid #595757;
      color: #595757;
      font-size: 11px;
      padding: 2px 10px;
      text-decoration: none;
      letter-spacing: 0.05em;
      transition: background 0.2s, color 0.2s;
}

#sec6 .articleWrap article .detail .date{
  font-size: 12px;
}
#sec6 .articleWrap article .detail h4{
  margin-top: 10px;
}
#sec6 .articleWrap article .detail h4 a{
  color: #595757;
}

#sec7 .inner form{
    width: 70%;
    margin: 0 auto;
    padding: 60px 0;
}
@media (max-width: 600px) {
  #sec7 .inner form{
      width: 80%;
  }
}
#sec7 .inner .textArea{
  margin: 0 auto;
}
#sec7 .inner .textArea span{
  text-align: center;
  margin: 0 auto;
  background: none;
  display: block;
  padding: 0;
  color: #bc965c;
  letter-spacing: 0.1em;
}
#sec7 .inner .textArea h2{
  background: none;
  text-align: center;
  padding: 0;
  letter-spacing: 0.1em;
}

/* ===== Form ===== */
form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #595757;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d8d5d0;
  background: #fff;
  font-size: 14px;
  font-family: inherit;
  color: #595757;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  border-color: #888;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  color: #999;
}

select.selected {
  color: #595757;
}

textarea {
  resize: vertical;
  min-height: 140px;
}

/* ===== Privacy Policy Block ===== */
.privacy-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.privacy-label {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #595757;
}

.privacy-description {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}

.privacy-box {
  border: 1px solid #d8d5d0;
  background: #fff;
  padding: 16px;
  font-size: 12px;
  line-height: 1.8;
  color: #555;
  max-height: 140px;
  overflow-y: auto;
  resize: none;
  font-family: inherit;
  width: 100%;
}

.privacy-agree {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: #595757;
  user-select: none;
}

.privacy-agree input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1px solid #aaa;
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}

.privacy-agree input[type="checkbox"]:checked {
  background: #595757;
  border-color: #595757;
}

.privacy-agree input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

/* ===== Submit Button ===== */
.submit-btn {
  margin-top: 8px;
  padding: 16px 0;
  background: #595757;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.15em;
  font-family: inherit;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}

.submit-btn:hover {
  background: #3d3c3c;
}


.lang-switcher {
  display: flex;
  list-style: none;
  gap: 0.4em;
}
.lang-switcher li:not(:last-child)::after {
  content: ' /';
}
.lang-switcher li a{
  color: var(--text);
}


/* =============================================
   Single Page
   ============================================= */

/* パンくず */
.single .breadcrumb {
  padding: 16px 0;
  max-width: 800px;
  margin: 0 auto;
}

.single .breadcrumb ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.single .breadcrumb ul li {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #888;
}

.single .breadcrumb ul li + li::before {
  content: '>';
  margin-right: 8px;
  color: #bbb;
}

.single .breadcrumb ul li a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

.single .breadcrumb ul li a:hover {
  color: #595757;
}

/* 記事ヘッダー */
.single .single-header {
  padding: 40px 0 32px;
  max-width: 800px;
  margin: 0 auto;
}

.single .single-header__title {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.4;
  color: #595757;
  margin: 0 0 24px;
  letter-spacing: 0.02em;
}

.single .single-header__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.single .single-header__meta .category {
  display: inline-block;
  border: 1px solid #595757;
  color: #595757;
  font-size: 12px;
  padding: 3px 12px;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s;
}

.single .single-header__meta .category:hover {
  background: #595757;
  color: #fff;
}

.single .single-header__meta .date {
  font-size: 13px;
  color: #888;
}

/* ヒーロー画像 */
.single .single-hero {
  width: 100%;
  aspect-ratio: 16 / 6;
  overflow: hidden;
}

.single .single-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 本文 */
.single .single-content {
  padding: 60px 40px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.single .single-content .inner {
  max-width: 800px;
}

.single .single-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #595757;
  margin-bottom: 1.8em;
}

.single .single-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 2.5em 0 1em;
  padding-bottom: 0.4em;
  border-bottom: 1px solid #ddd;
}

.single .single-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 2em 0 0.8em;
}

.single .single-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2em 0;
}

/* レスポンシブ */
@media ( max-width: 768px ) {
  .single .breadcrumb {
    padding: 12px 20px;
  }

  .single .single-header {
    padding: 24px 20px 20px;
  }

  .single .single-hero {
    aspect-ratio: 16 / 9;
  }

  .single .single-content {
    padding: 40px 30px 60px;
  }
}

.single .backBtn{
  display: flex;
  justify-content: center;
  padding-top: 80px;
}
.single .backBtn a{
  color: #595757;
  text-decoration: none;
  border: 1px solid #595757;
  padding: 10px;
  transition: 0.4s;
}
.single .backBtn a:hover{
  background: #595757;
  color: #fff;
}


/* =============================================
   Archive Page
   ============================================= */
.archive .secondMv {
  max-width: 1200px;
  margin: 0 auto;
}
.archive .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}
.archive .textArea {
  text-align: center;
  margin: 0 auto 40px;
}
.archive .textArea span{
  padding: 3% 10%;
}

/* カテゴリナビ */
.archive-cat-nav {
  margin-bottom: 48px;
}

.archive-cat-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.archive-cat-nav ul li {
  display: flex;
  align-items: center;
}

.archive-cat-nav ul li + li::before {
  content: '/';
  color: #ccc;
  padding: 0 16px;
  font-size: 14px;
}

.archive-cat-nav ul li a {
  display: block;
  font-size: 14px;
  color: #888;
  text-decoration: none;
  padding-bottom: 3px;
  letter-spacing: 0.05em;
  position: relative;
  transition: color 0.2s;
}

.archive-cat-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: #595757;
  transition: width 0.25s ease;
}

.archive-cat-nav ul li a:hover {
  color: #595757;
}

.archive-cat-nav ul li a:hover::after,
.archive-cat-nav ul li.current a::after {
  width: 100%;
}

.archive-cat-nav ul li.current a {
  color: #595757;
  font-weight: 600;
}

/* 記事グリッド 3列 */
.archive-grid {
  display: grid;
  grid-template-columns: repeat( 3, 1fr );
  gap: 48px 32px;
}

/* 記事カード */
.archive-item__thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  margin-bottom: 16px;
}

.archive-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.archive-item__thumb:hover img {
  transform: scale(1.04);
}

.archive-item__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.archive-item__meta .category {
  display: inline-block;
  border: 1px solid #595757;
  color: #595757;
  font-size: 11px;
  padding: 2px 10px;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s;
}

.archive-item__meta .category:hover {
  background: #595757;
  color: #fff;
}

.archive-item__meta .date {
  font-size: 12px;
  color: #999;
}

.archive-item__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
}

.archive-item__title a {
  color: #595757;
  text-decoration: none;
  transition: opacity 0.2s;
}

.archive-item__title a:hover {
  opacity: 0.6;
}

/* 記事なし */
.archive-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #888;
  padding: 60px 0;
}

/* ページネーション */
.archive-pagination {
  margin-top: 72px;
  display: flex;
  justify-content: center;
}

.archive-pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.archive-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 14px;
  color: #595757;
  text-decoration: none;
  border: 1px solid #e0e0e0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.archive-pagination .page-numbers:hover {
  background: #595757;
  color: #fff;
  border-color: #595757;
}

.archive-pagination .page-numbers.current {
  background: #595757;
  color: #fff;
  border-color: #595757;
}

.archive-pagination .page-numbers.dots {
  border: none;
  cursor: default;
}

.archive-pagination .page-numbers.dots:hover {
  background: transparent;
  color: #595757;
}

/* レスポンシブ */
@media ( max-width: 960px ) {
  .archive-grid {
    grid-template-columns: repeat( 2, 1fr );
  }
}

@media ( max-width: 600px ) {
  .archive .secondMv {
    height: 200px;
    padding: 0 0 30px;
    background: #fff;
  }
  .archive .secondMv img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .archive .inner {
    padding: 0 20px;
  }

  .archive {
    padding: 0 0 80px;
  }

  .archive-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .archive-cat-nav ul li + li::before {
    padding: 0 10px;
  }
}

.gotoTopBtn{
  position: fixed;
  bottom: 110px;
  right: 10px;
  width: 50px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gotoTopBtn.is-show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* =============================================
   Single - Share & Post Nav
   ============================================= */

/* SNSシェア */
.single .single-share {
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-top: 1px solid #eee;
  max-width: 1200px;
  margin: 0 auto;
}

.single .single-content p.single-share__label {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: #999;
  flex-shrink: 0;
  padding: 0;
  margin: 0;
}

.single .single-share__list {
  display: flex;
  list-style: none;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.single .single-share__item a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid #d8d5d0;
  text-decoration: none;
  color: #595757;
  font-size: 12px;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.single .single-share__item a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.single .single-share__item a:hover {
  background: #595757;
  color: #fff;
  border-color: #595757;
}

/* Prev / Next */
.single .single-post-nav {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  max-width: 1200px;
  margin: 0 auto;
}

.single .single-post-nav__prev,
.single .single-post-nav__next {
  width: 50%;
}

.single .single-post-nav__prev {
  border-right: 1px solid #eee;
}

.single .single-post-nav__prev a,
.single .single-post-nav__next a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px 40px;
  text-decoration: none;
  color: #595757;
  transition: background 0.2s;
  height: 100%;
}

.single .single-post-nav__next a {
  align-items: flex-end;
  text-align: right;
}

.single .single-post-nav__prev a:hover,
.single .single-post-nav__next a:hover {
  background: #f9f9f9;
}

.single .single-post-nav__direction {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #999;
}

.single .single-post-nav__title {
  font-size: 14px;
  line-height: 1.6;
}

/* レスポンシブ */
@media ( max-width: 768px ) {
  .single .single-share {
    padding: 32px 20px;
    flex-wrap: wrap;
  }

  .single .single-share__list {
    flex-wrap: wrap;
  }

  .single .single-post-nav {
    flex-direction: column;
  }

  .single .single-post-nav__prev,
  .single .single-post-nav__next {
    width: 100%;
    border-right: none;
  }

  .single .single-post-nav__prev {
    border-bottom: 1px solid #eee;
  }

  .single .single-post-nav__prev a,
  .single .single-post-nav__next a {
    padding: 20px;
  }

  .single .single-post-nav__next a {
    align-items: flex-start;
    text-align: left;
  }
}


/* Copy URL ボタン */
.single .single-share__item.--copy{
  border: 1px solid #d8d5d0;
  }
.single .single-share__item.--copy button.js-copy-url {
  border: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #fff;
  color: #595757;
  font-size: 12px;
  font-family: inherit;
  letter-spacing: 0.05em;
  height: 100%;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.single .single-share__item.--copy button.js-copy-url svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.single .single-share__item.--copy button.js-copy-url:hover {
  background: #595757;
  color: #fff;
  border-color: #595757;
}
.single .single-share__item.--copy button.js-copy-url.is-copied {
  background: #595757;
  color: #fff;
  border-color: #595757;
}
