:root {
  /* ─── Brand Colors ─── */
  --color-sub:        #dfb743; 
  --color-sub-dark:   #c8a34c;
  --color-sub-light:  #f1efea; 
  --color-sub-light2: #e1ddd2;
  --color-brown-dark: #4c3d2a; 
  --color-brown:      #854622;
  --spacer-s: clamp(30px, 5vw, 50px);
  --spacer-m: clamp(50px, 8vw, 100px);
  --spacer-l: clamp(80px, 12vw, 150px);
}
*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}

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

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: "Noto Sans JP", sans-serif !important;
  scroll-behavior: smooth;
	background-color:#fff
}

img, video, svg {
  display: block;
  max-width: 100%;
}
li{
    list-style: none;
}
input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
a{
  color: #000;
}
main{
  margin-top: 40px;
}
.common__heading{
    position: relative;
}
.common__heading:after{
    width: 20px;
    height: 3px;
    background-color: var(--color-sub);
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
}
.heading-en {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
  color: var(--color-sub);
}
.heading-ja {
  display: block;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
  font-size: 1.5rem;
}

.common-btn-wrap {
  text-align: center;
}
.common_btn {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.95rem 1.25rem;
  border: 1.5px solid var(--color-sub);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s;
  border-radius: 40px;
  background-color: var(--color-sub);
    margin: 2.75rem auto 0;
}

.common_btn::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #fff;
  transition: transform 0.2s, border-left-color 0.2s;
}

.common_btn:hover {
  background: #fff;
  color: var(--color-sub);
}

.common_btn:hover::after {
  border-left-color: var(--color-sub);
  transform: translateX(3px);
}
.open-newtab {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.open-newtab::after {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
/* ===========================
   Header
=========================== */
.header {
  height: 80px;
  top: 0;
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

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

.header__logo {
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.header__logo-img {
  height: 45px; 
  width: auto;
  display: block;
}

/* ナビゲーション */
.header__nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav-link {
  display: block;
  text-decoration: none;
  color: #000;
  white-space: nowrap;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: color 0.2s;
  padding: 0 1.5rem;
  position: relative;
}

.header__nav-link:hover {
  color: var(--color-sub-dark);
}
.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--color-sub);
  transition: width 0.5s ease;
}

.header__nav-link:hover::after {
  width: 100%; /* ← ホバーで伸びる */
}
  .header__nav-link span{
    background-color: var(--color-sub-dark);
    padding: 0px 15px;
border-radius: 50px;
color: #fff;
font-size: 1.2rem;
display: none
}
/* CTAボタン */
.header__nav-link--cta {
  background: var(--color-sub);
  color: #fff;
  padding: 8px 14px;
  text-align: center;
  white-space: normal;
  transition: all 0.2s;
}

.header__nav-link--cta:hover {
  background: var(--color-sub-dark);
  color: #fff;
}

.header__nav-link--cta:hover::after {
  width: 0; 
}

.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 110;
}

.header__hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

/* ハンバーガー → ✕ */
.header__hamburger[aria-expanded="true"] .header__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__hamburger[aria-expanded="true"] .header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.header__hamburger[aria-expanded="true"] .header__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 900px) {
  .header__hamburger {
    display: flex;
  }
.header__inner {
    padding: 0 24px;
}
  .header__nav {
    position: fixed;
    top: 80px;
    right: 0;
    width: 100%;
    height: calc(100svh - 80px);
    background: #fff;
    overflow-y: auto;
    opacity: 0;
  pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 99;
  }

  .header__nav.is-open {
    opacity: 1;
  pointer-events: auto;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 0;
  }

  
  .header__nav-link {
    padding: 45px 24px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    white-space: normal;
    display: flex;
    justify-content: space-between;
    margin: 0 10px;
  }
    
  .header__nav-link span{
display: block;
}

.header__nav-item--cta {
    padding: 30px 24px;
  }
  .header__nav-link--cta{
    padding: 24px 10px;
   border-radius: 60px;
   justify-content: center;
  border-bottom: none;
  }
  

}
/* ==================== contact ==================== */
.contact {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.contact__header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact__heading-en {
  display: block;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
}

.contact__heading-ja {
  display: block;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}
.contact .common__heading:after{
    left: 50%;
    transform: translateX(-50%);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.contact__body {
  padding: 3.5rem 3rem;
}

.contact__lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.9;
  margin-bottom: 2rem;
}

.contact__img-wrap {
  height: 100%;
}

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

/* SP */
@media (max-width: 768px) {
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .contact__img-wrap {
    order: -1;
    aspect-ratio: 3 / 2;
    height: auto;
  }

  .contact__body {
    padding: 2.5rem 1.5rem;
  }
}
/* ==================== footer ==================== */

.footer:before{
  content: "";
  background-image: url(../img/cta-corner-left.svg);
  width: 90px;
  height: 90px;
  position: absolute;
  top: -90px;
  left: -0px;
}
.footer:after{
  content: "";
  background-image: url(../img/cta-corner-right.svg);
  width: 90px;
  height: 90px;
  position: absolute;
  top: -90px;
  right: -0px;
}
.footer {
  background: var(--color-brown-dark);
  color: #fff;
  position: relative;
}
.footer__inner{  
  margin: 0 auto;
  padding: 5% 5% 0;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__logo img{
  filter: brightness(0) invert(1);
  width: 150px;
}

.footer__pagetop {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s;
}

.footer__pagetop:hover { color: #fff; }

.footer__pagetop-arrow {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg);
}

/* 下段 */
.footer__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem 3rem 2.5rem;
}

/* 住所 */
.footer__address {
  font-size: 0.8125rem;
  line-height: 2;
  color: #fff;
  margin-bottom: 1.5rem;
  font-style: normal;
}

/* SNS */
.footer__sns {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  transition: opacity 0.3s;
}

.footer__sns-link:hover {
  opacity: 0.7;
}


/* 連絡先カード */
.footer__contact-card {
  background: rgba(255, 255, 255);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 320px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer__contact-item:hover { opacity: 0.8; }
.footer__contact-tell,
.footer__contact-mail{
  width: 30px;
}
.footer__contact svg {fill:#4c3d2a}

.footer__contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__contact-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.footer__contact-card span{
  width: 100%;

}
/* ナビ */
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem 1rem;
  align-content: start;
}

.footer__nav-link {
  font-size: 0.8125rem;
  color: #fff;
  text-decoration: none;
  line-height: 2.2;
  display: block;
  transition: opacity 0.2s;
}

.footer__nav-link:hover { 
  opacity: 0.7;
 }

.footer__banner{
	margin:30px 0 0;
}
/* コピーライト */
.footer__copy {
  display: block;
  text-align: right;
  padding: 0.75rem 3rem 1.5rem;
  font-size: 0.7rem;
  color: #fff;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {

  .footer:before{
  width: 45px;
  height: 45px;
  top: -45px;
}
.footer:after{
  width: 45px;
  height: 45px;
  top: -45px;
}
  .footer__top { padding: 3rem 0}

  .footer__bottom {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
  }

  .footer__nav { 
    grid-template-columns: repeat(2, 1fr);
  gap:20px }

  .footer__copy {
    text-align: center;
    padding: 0.75rem 1.5rem 1.5rem;
  }
.footer__contact-card {
    margin: 0 auto;
}
	
.footer__banner img{
	margin:0 auto;
}
}
/***/
.js-fadein {
  opacity: 0;
  transform: translate(20px, 20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-fadein.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}
/*****/
.hero {
  background-color: var(--color-sub-light2);
  position: relative;
}
.wrap_hero-devider--bottom{
  transform: translateY(-1px) scaleY(-1);
  position: absolute;
  width: 100%;
}
.wrap_hero-devider--bottom svg{
  fill: var(--color-sub-light2);
}
.hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  position: relative;
}

.hero__en {
  display: block;
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-brown-dark);
  filter: brightness(0.93);
  margin-bottom: 2rem;
  opacity: 0; /* ← JS実行前は非表示 */
}

/* JS実行後にクラスが付いたら表示 */
.hero__en.is-ready {
  opacity: 1;
}

.hero__en-char {
  display: inline-block;
  opacity: 0;
  transform: translateX(50px);
  animation: charFadeIn 1s ease forwards;
}

@keyframes charFadeIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 3rem;
  letter-spacing: 3px;
}

.hero__lead {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* パンくず */
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8rem;
}

.breadcrumb__item + .breadcrumb__item::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 1.5px solid #000;
  border-right: 1.5px solid #000;
  transform: rotate(45deg);
  vertical-align: middle;
  margin-right:0.5rem
}
.breadcrumb__link {
  color: var(--color-brown-dark);
  text-decoration: underline;
}

.common__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.common__block {
  display: grid;
  grid-template-columns: 3.7fr 6.3fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
.common__block {
  grid-template-columns: 1fr;
}
}
/*****/

.news__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  padding: 1.25rem;
  transition: box-shadow 0.2s;
}

.news__link:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.news__thumb {
  flex-shrink: 0;
  width: 220px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
}

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

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

.news__meta {
  flex: 1;
  padding: 0.75rem 0;
  min-width: 0;
}

.news__date {
  font-size: 0.8rem;
  color: #999;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.news__title {
  font-weight: 400;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news__arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  background-color: var(--color-sub);
  transition: background 0.2s;
}

.news__arrow-icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg) translate(-1px, 1px);
}

.news__link:hover .news__arrow {
  background: var(--color-brown-dark);
}
/* 初期状態：右下にずれて透明 */
.news__item {
  opacity: 0;
  transform: translate(20px, 20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* 可視範囲に入ったら */
.news__item.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}
/****/

.faq__list {
  list-style: none;
}

.faq__item {
  margin-bottom: 10px;
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem;
  font-family: inherit;
  font-weight: 700;
  color: #1a1a1a;
  text-align: left;
  background-color: var(--color-sub-light);
}

.faq__question-text {
  flex: 1;
  line-height: 1.6;
}
.faq__question-q {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--color-sub);
  color: #fff;
  font-weight: 700;
  margin-right: 10px;
}
.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: #1a1a1a;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq__icon::before {
  width: 20px;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.faq__icon::after {
  width: 2px;
  height: 20px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.faq__item.is-open .faq__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer-inner {
  overflow: hidden;
}

.faq__answer-body {
  padding:1.5rem;
  line-height: 2;
  text-align: left;
}




@media (max-width: 768px) {

.faq__question {
  padding: 1.5rem .8rem;
}

.faq__question {
  gap: .5rem;
}

.faq__question-q {
  transform: scale(0.8);
  margin-right: 5px;
}
.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transform: scale(0.7);
}
}

/*************/
.guide__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background-color: #f6f5f1;
  border-radius: 50px;
text-align:center
}

.guide__heading {
  margin-bottom: 3rem;
}

.guide__title {
  margin-bottom: 1rem;
}


.guide__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.guide__card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  background-color: #fff;
  padding: 1rem;
}

.guide__card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.guide__thumb {
  width: 100%;
  aspect-ratio: 3 / 1.3;
  overflow: hidden;
  border-radius: 30px;
}

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

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

.guide__card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}

.guide__card-text {
  font-size: 1rem;
  font-weight: 600;
}

.guide__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-sub);
  transition: background-color 0.2s, color 0.2s;
}

.guide__card-icon::before {
  content: "→";
  display: block;
  color: #fff;
  font-weight: 700;
}

.guide__card:hover .guide__card-icon {
  background-color: currentColor;
}

@media (max-width: 768px) {
  .guide__inner {
  margin: 0 1rem;
}
  .guide__cards {
    grid-template-columns: 1fr;
  }
}