/* ヘッダー全体 */
header {width: 100%;background-color: transparent;}
.header-container {width: 100%;padding: 0px 0;margin: 0 auto;}
/* .head-image {
  background-image: url("pic/beautiful.png");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
    /* アニメーション用*/
  opacity: 0;
  transform: translateY(-50px);
  transition: all 3s ease;}
.head-image.show {
  opacity: 1;
  transform: translateY(0);} */

.head-image h1 {color: #fff;background-color: #060606;}
.text-right {padding: 8px;text-align: right;color: rgb(0, 0, 0);}
@media (max-width: 768px) {
  .head-image {height: 100vh;font-size: 1.2rem;padding: 0 16px;}
  .head-image h1 {font-size: 1.6rem;padding: 8px;}
}
@media (min-width: 769px) and (max-width: 1024px) {
  .head-image {height: 100vh;font-size: 1.5rem;padding: 0 20px;}
  .head-image h1 {font-size: 2rem;padding: 10px;}
}

/* トグル*/
.header-top {
  position: fixed;
  top: 0px;
  right: 0px;
  left:0px;
  z-index: 1000;
  display: flex;
  justify-content: space-between; /* 左右に分ける */
  align-items: center;
  padding: 10px 20px;
}
.logo{
    height: 60px;
    margin-left: 24px;
}
.logo svg {
    height: 60px;   /* ← ヘッダーの高さに合わせる */
    width: auto;
    display: block;
}
@media (max-width: 768px) {
    .logo svg {
        height: 40px;
    }
}
.header-right { display: flex;gap: 30px;align-items: center; margin-right: 20px;}

.navbar-toggler {
  position: absolute;
  right: 120px;   /* ← 常に右端から24px */
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2000; /* メニューより前に出す */
}
@media (max-width: 768px) {
  .lang-toggle button {font-size: 12px;padding: 4px 10px;}
  .header-right {gap: 20px;margin-right: 5px;}
  .logo{height:40px;}
  .navbar-toggler {font-size: 35px;}
}
@media (min-width: 769px) and (max-width: 1024px) {
  .lang-toggle button {font-size: 15px;padding: 5px 12px;}
  .header-right {gap: 20px;margin-right: 5px;}
  .logo{height:50px;}
  .navbar-toggler {font-size: 40px;}
}
/* ナビゲーションメニュー */
.navbar {display: flex;justify-content: center;align-items: center;position: relative;}
.navbar-header {position: relative;}
.navbar-nav {display: none;}
.navbar-nav.show {
  display: flex;
  flex-direction: column;
  background: #f9f9f9;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 60vh;
  box-shadow: rgba(0,0,0,0.1);
  border-radius: 6px;
  z-index: 999;
  padding: 70px 20px 20px;
  margin-top: 0px;
}
.navbar-nav li.contact-info {
  display: flex;             
}
.contact-row {
  display: flex;          
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.contact-row p {margin: 0;display: inline-block; }
.navbar-nav li {padding: 10px;text-align: center;}
.navbar-nav li a {text-decoration: none;color: #333;font-weight: bold;}
/* SP対応（必要最小限） */
@media (max-width: 768px) {
  .navbar-nav.show {height: 70vh;padding: 80px 20px;}
  .navbar-nav li a {font-size: 18px;padding: 12px 0;}
}
@media (min-width: 769px) and (max-width: 1024px) {
  .navbar-nav.show {height: 60vh;padding: 70px 40px;}
  .navbar-nav li a {font-size: 20px;padding: 10px 0;}
}


/* ボディメイン */
/* FV 全体 */
.fv {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* 背景画像 */
.fv-bg {
    position: absolute;
    inset: 0;
    background-image: url('pic/toppic.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
    z-index: 1;
}

/* キャッチコピー（縦書き＋前面） */
.fv-catch {
    height: 400px;
    position: absolute;
    top: 50%;
    left: 700px;
    transform: translateY(-50%);
    z-index: 10;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 2rem;
    font-weight: 700;
    color: #F9FAFB;
    letter-spacing: 0.15em;
}

/* 行ごとに段差をつける */
.fv-x span {
    display: block;
}

/* 2行目を少し右へ（縦書きなので“下”へ） */
.fv-x .line2 {
    margin-top: 20px;
}

/* 3行目はもっと右へ（縦書きなのでさらに“下”へ） */
.fv-x .line3 {
    margin-top: 40px;
}


/* 画像を下に置くとき
.fv {
    text-align: center;
    padding: 40px 0;
}

.fv-image img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 20px;
} */



.intro {
  width: 100%;
  padding: 80px 5%;
  box-sizing: border-box;
  margin-top: 100px;
}
.intro-name{
    font-size: 28px;
}

/* PC：タイトル＋説明文 vs 画像（画像は縦に2マス分） */
.int-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* 左広め・右画像 */
  grid-template-rows: auto 1fr;
  column-gap: 40px;
  row-gap: 20px;
  align-items: start;
  
}

/* タイトルは左上 */
.intro-catch {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  margin-left: 5px;
  padding-left: 5px;
  border-left: 4px solid #C6A667; /* ゴールドライン */
}

/* 説明文は左下 */
.int-text {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  line-height: 1.9;
  font-size: 18px;
  margin-left: 5px
}

/* 画像は右側で縦に2マス分（タイトル＋説明文と同じ高さ） */
.int-img {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
}

.int-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* SP：縦並び（タイトル → 画像 → 説明文） */
@media (max-width: 768px) {
  .int-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .int-img img {
    width: 100%;
    height: auto;
    max-height: 320px;
  }
}





/* サービス部分 */
/* サービス全体を中央に固定 */
.service {
  width: 100%;
  max-width: 1200px;   /* ← PCで中央に揃う */
  margin: 0 auto;      /* ← 中央寄せの決定版 */
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* ← 幅が潰れない */
  gap: 40px;
  padding: 40px 20px;
}

/* カード感を消してシャープに */
.service-catch{
    display: block;
    margin-left: 50px;
    font-size: 24px;
    padding-left: 24px;
    border-left: 3px solid #C6A667;
}
.service-item {
  border-radius: 0;
  margin-top: 10px;
}

/* 画像部分 */
.service-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; /* ← 画像の隙間を消す */
  filter: brightness(0.8);
  transition: .4s ease;
}

.service-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.65);
}

/* タイトル（写真の上に重ねる） */
.service-title {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* リスト部分 */
.service-list {
  margin-top: 18px;
  padding-left: 0;
  list-style: none;
  color: #333;
  font-size: 15px;
  line-height: 1.8;
  border-left: 3px solid #C6A667; /* ← 縦線をここに移動 */
  min-height: 140px; /* ← 高さを揃えたいなら調整可能 */
}

.service-list li {
  margin-bottom: 6px;
  padding-left: 10px;
}

/* スマホ */
@media (max-width: 768px) {
  .service {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-img-wrap {
    height: 180px;
  }
}


/* 処理フロー */
/* セクション全体 */
.flow {
    width: 100%;
    padding: 100px 0;
}

.flow-init{
    margin: 0 20px 0 0; 
}

.flow-init h2{
    margin-left:50px;
    margin-bottom: 0px;
    font-size: 36px;
    border-left: 3px solid #C6A667; /* ← 縦線をここに移動 */
    padding-left: 24px;
}

/* PC用画像 */
.flow-chart-pc {
    max-width: 1200px;
    margin: 0 auto;
}

.flow-chart-pc img {
    width: 1200px;
    max-width: 100%;
    height: auto;
}

/* SP用画像（初期は非表示） */
.flow-chart-sp {
    display: none;
}

.flow-chart-sp img {
    width: 100%;
    height: auto;
    max-width: 360px; /* ← 好きに調整できる */
    margin: 0 auto;
    display: block;
}

/* ---------------------- */
/*   スマホ・タブレット   */
/* ---------------------- */
@media (max-width: 768px) {

    /* PC用を消す */
    .flow-chart-pc {
        display: none;
    }

    /* SP用を表示 */
    .flow-chart-sp {
        display: block;
        text-align: center;
        padding: 20px 0;
    }
}

/* 過去実績追加できるようにしておく */

/* faq */
/* FAQ セクション全体 */
.faq {
    width: 100%;
    max-width: 900px;
    margin: 100px 50px;
    padding: 0 20px;
}

/* 見出し */
.faq-head {
    border-left: 4px solid #C6A667; /* ゴールドライン */
    padding-left: 16px;
    margin-bottom: 40px;
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    letter-spacing: 2px;
}

/* FAQ 全体のリスト */
.faq-container {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 各質問ブロック */
.faq-group {
    padding: 28px 0;
    border-bottom: 1px solid #C6A667; /* 質問の区切り線 */
}

/* 質問タイトル */
.faq-header {
    font-size: 20px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 12px;
}

/* 回答リスト */
.faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 回答テキスト */
.faq-answer {
    font-size: 18px;
    line-height: 1.9;
    color: #4B5563;
    margin: 0;
}

/* ---------------------- */
/*   タブレット（中間）   */
/* ---------------------- */
@media (min-width: 769px) and (max-width: 1024px) {

    .faq {
        margin: 80px auto;
        padding: 0 24px;
    }

    .faq-title {
        font-size: 30px;
    }

    .faq-header {
        font-size: 19px;
    }

    .faq-answer {
        font-size: 16px;
        line-height: 1.85;
    }
}

/* ---------------------- */
/*   スマホ（SP）         */
/* ---------------------- */
@media (max-width: 768px) {

    .faq {
        margin: 60px auto;
        padding: 0 16px;
    }

    .faq-title {
        font-size: 26px;
    }

    .faq-header {
        font-size: 18px;
    }

    .faq-answer {
        font-size: 15px;
        line-height: 1.8;
    }
}


/* 所在地など */
/* ACCESS セクション全体 */
.info {
  max-width: 1100px;
  margin: 100px auto;
  padding: 0 20px;
}

/* 見出し部分 */
.info-head {
  text-align: left;
  border-left: 4px solid #C6A667; /* ゴールド系ライン */
  padding-left: 16px;
  margin-bottom: 40px;
}

.info-title {
  font-size: 34px;
  letter-spacing: 4px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}

.int_chach {
  font-size: 22px;
  font-weight: 600;
  color: #444;
  margin-bottom: 12px;
}
.info-text {
  font-size: 16px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 6px;
}



/* Google Map カード */
.info-container {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
  border: 1px solid #C6A667;
}
.info-container iframe {
  width: 100%;
  height: 420px;
  border: none;
}
/* Back to Top */
.back-to-top {
  text-align: center;
  margin-top: 50px;
}
.back-to-top a {
  display: inline-block;
  padding: 14px 22px;
  background: #C6A667;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.3s;
}
.back-to-top a:hover { background: #C6A667;}
/* スマホ対応 */
@media (max-width: 768px) {
  .info {margin: 60px auto;}
  .info-title {font-size: 28px;}
  .int_chach {font-size: 18px;}
  .info-container iframe {height: 300px;}
}

section {
  opacity: 0;                
  transform: translateY(-50px);
  transition: all 2s ease; 
}
section.show {
  opacity: 1;                 
  transform: translateY(0); 
}
html {scroll-behavior: smooth;}