.font1{font-family: 'Hina Mincho', serif;}
.font2{font-family: 'Kosugi', sans-serif;}
.font3{font-family: 'Noto Sans JP', sans-serif;}
.font4{font-family: 'Noto Serif JP', serif;}
.font5{font-family: 'Reggae One', cursive;}
.font6{font-family: 'RocknRoll One', sans-serif;}
.font7{font-family: 'Sawarabi Gothic', sans-serif;}
.font8{font-family: 'Sawarabi Mincho', serif;}
.font9{font-family: 'Shippori Mincho B1', serif;}
.font10{font-family: 'Zen Maru Gothic', sans-serif;}
.font11{font-family: 'DotGothic16', sans-serif;}
.font12{font-family: 'Zen Kaku Gothic New', sans-serif;}


.bg_black{background-color: #020202;}
.bg_grey{background-color: #f6f5f3;}
.bg_white{background-color: #FFF;}
p{line-height: 25px;margin-bottom: 10px;font-size: 15px;}
.max-100{max-width: 100%;}
.w100 {width: 100%;}
.w80 {width: 80%;}
.w70 {width: 70%;}
#topBtn{
    background: rgb(141, 141, 141);
    color: #fff;
    position: fixed;
    right: 20px;
    bottom: 20px;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.br-pc {
    display: block;
}

@media (max-width: 600px) {
    .br-pc {
        display: none;
    }
}

.br-sp {
    display: none;
}

@media (max-width: 600px) {
    .br-sp {
        display: block;
    }
}
/*メニュー用css*/

.menu-content .row{padding: 0 ;margin: 0;}

.menu-content ul {
  padding: 90px 50px 0;
}
.menu-content ul li {
  border-bottom: solid 1px #ccc;
  height: auto;
  list-style: none;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 20px;
  box-sizing: border-box;
  color:#444;
  text-decoration: none;
  padding: 10px 15px 10px 10px;
  position: relative;
}

.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #111;
  border-right: solid 2px #111;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 24px;
}
@media only screen and (max-width: 1000px) {
  .menu-content ul {
    padding: 0px 30px 0;
  }
  .menu-content ul li a {
    padding: 15px 15px 10px 10px;
  }

.menu-content ul li a::before {
  right: 11px;
  top: 20px;
}
  .menu-content{
    padding: 90px 0 0;}
  }

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;/*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  overflow-y: auto;
  opacity: 0.95;
    background-color: #FFF;
  transition: all 0.5s;/*アニメーション設定*/
}

#menu-btn-check:checked ~ .menu-content {
    left: 0%;/*メニューを画面内へ*/
}
@media only screen and (max-width: 1000px) {
  .menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    overflow-y: auto;
    opacity: 0.95;
    background-color: #FFF;
    transition: all 0.5s;/*アニメーション設定*/
  }
  
  #menu-btn-check:checked ~ .menu-content {
      left: 0%;/*メニューを画面内へ*/
  }
  .menu-mt{margin-top: 0 !important;padding-top: 0 !important;}
  .menu-mb{margin-bottom: 0 !important;padding-bottom: 0 !important;}
  }
/*三本線疑似要素*/
#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

.menu-btn {
  position: fixed;
  top: 15px;
  right: 15px;
  display: flex;
  height: 70px;
  width: 70px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-size: contain;
  background-color: #111;
   mix-blend-mode: difference;
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  content: '';
  display: block;
  height: 3px;
  width: 35px;
  border-radius: 3px;
  background-color: #FFF; 
  mix-blend-mode: difference;    /* 背景と差分を取る */
  position: absolute;
  opacity: 1;
}
.menu-btn span{
  background-color: rgba(0, 0, 0, 0); /* 半透明の背景 */
}
.menu-btn span:before {
  bottom: 5px;
}
.menu-btn span:after {
  top: 5px;
}
/*チェックボックスを隠す*/
#menu-btn-check {
    display: none;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}

.img_wrap img{
  cursor: pointer;
  transition-duration: 0.3s;
}
.img_wrap:hover img{
  opacity: 0.7;
  transition-duration: 0.3s;
}





/* ヘッダー */
 .header {
  background-color: #fff;
  padding: 10px 20px;
  width: 90%;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo img {
  height: 50px;
  object-fit: contain;
}

.header__nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.header__nav li a {
  text-decoration: none;
  color: #3c2c23;
  font-size: 14px;
  position: relative;
  padding-bottom: 4px;
}

/* ホバー時に●を表示 */
.header__nav li a::after {
  content: '●';
  font-size: 9px;
  color: #58b533;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* ホバーで表示 */
.header__nav li a:hover::after {
  opacity: 1;
}

/* トップページ */

 
/* 画像コンテナ */
.image-container {
  font-family: serif;
    width: 100%;
    height: 600px; /* 画面の高さいっぱいにする */
    background-image: url('../images/hero.jpg'); /* 画像を指定 */
    background-size: cover; /* 画像がコンテナを完全に覆うように調整 */
    background-position: center; /* 画像を中央に配置 */
    background-repeat: no-repeat;
    position: relative; /* text-overlayの基準点とする */
    margin: 50px 0 150px;
}

/* テキストオーバーレイ */
.text-overlay {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -30%); /* 中央よりやや下に配置 */
    text-align: right;
    color: #ffffff; /* テキストの色 */
    width: 95%; /* テキストエリアの幅 */
}

/* 日本語テキスト */
.japanese-text {
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 100;
    letter-spacing: 0.2rem;
    font-family: 'Sawarabi Mincho', serif;
}

/* 英語テキスト */
.english-text {
    font-size: 68px;
    letter-spacing: 0.2rem;
    font-weight: 100;
    margin-top: 0;
    font-family: 'Sawarabi Mincho', serif;
}

/* レスポンシブ対応（タブレットなど） */
@media (max-width: 960px) {
    .japanese-text {
        font-size: 18px;
    }
    .english-text {
        font-size: 36px;
    }
}

/* レスポンシブ対応（スマートフォン） */
@media (max-width: 600px) {
  .image-container {
    margin: 100px 0 100px;
}
    .japanese-text {
        font-size: 14px;
    margin-bottom: 0px;
    }
    .english-text {
        font-size: 21px;
    letter-spacing: 0rem;
    }
    .text-overlay {
        width: 90%;
    }
}

/* 全体を囲むセクション */
.concept-section {
  margin: 100px 0 200px;
  background-image: url('../images/hero3.jpg');
  background-size: cover;
  background-position: center;
  width: 90%;
  margin-left: 10%;
  background-repeat: no-repeat;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;  /* ← stretch を推奨 */
  min-height: 600px;
  padding: 0; /* padding があると中央寄せになる原因に */
}
.concept-section2 {
  margin: 50px 0 200px;
    /* ↓ここに背景画像を指定してください */
    background-image: url('../images/hero2.jpg');
    background-size: cover;
  width: 90%;
  margin-left: 0%;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;  /* ← stretch を推奨 */
  min-height: 600px;
  padding: 0; /* padding があると中央寄せになる原因に */
}
/* コンテンツのラッパー */
.concept-content {
  width: 50%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;              /* 追加 */
  flex-direction: column;     /* 縦並びに */
  justify-content: flex-end;  /* 子要素を下に揃える */
}

/* コンテンツのラッパー */
.concept-content2 {
    width: 100%;
    max-width: 100%; /* コンテンツの最大幅 */
    margin: 0; /* 中央揃え */
    padding: 0 0 0 50% ; /* 左右の余白 */
    box-sizing: border-box;
  display: flex;              /* 追加 */
  flex-direction: column;     /* 縦並びに */
  justify-content: flex-end;  /* 子要素を下に揃える */
}

/* 白いテキストボックス */
.text-box {
    background-color: #ffffff;
    padding: 60px;
    max-width: 100%; /* テキストボックスの最大幅 */
    transform: translateY(110px); /* ← 下に30pxはみ出す */
   }

/* "CONCEPT" のテキスト */
.sub-title {
    color: #58b533; /* 画像に近い緑色 */
    font-size: 14px;
    font-weight: normal;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.2em; /* 文字間隔を広げる */
    margin: 0 0 24px 0;
}

/* メインの見出し */
.main-title {
    font-size: 25px;
    font-weight: 500; /* 少し太めのフォント */
    line-height: 1.5;
  font-family: 'Sawarabi Mincho', serif;
    color: #333;
    margin: 0;
}

/* 区切り線 */
.concept-divider {
    border: none;
    border-top: 1px solid #58b533;
    opacity: 1;
    width: 60px; /* 線の長さ */
    margin: 30px 0; /* 上下の余白 */
    text-align: left; /* 左揃え */
}

/* 説明文 */
.concept-description {
    font-size: 15px;
    color: #777;
    line-height: 1.8;
    margin: 0;
}


/* --- レスポンシブ対応 (スマートフォンなど) --- */
@media (max-width: 768px) {
    .concept-section {
  margin: 100px 0 150px;
        /* 小画面では背景画像を固定せずスクロールさせる */
        background-attachment: scroll;
        padding: 40px 0;
        min-height: auto;
  width: 100%;
  margin-left: 0%;
    }
    .concept-section2 {
  margin: 100px 0 150px;
        /* 小画面では背景画像を固定せずスクロールさせる */
        background-attachment: scroll;
        padding: 40px 0;
        min-height: auto;
  width: 100%;
  margin-left: 0%;
    }

    .concept-content {
        padding: 0 20px; /* 左右の余白を狭くする */
        width: 100%;
    }
    .concept-content2 {
    padding: 0 20px !important; /* 左右の余白を狭くする */
        width: 100%;
}

    .text-box {
        padding: 30px;
        margin: 0 auto; /* 中央に配置 */
    }

    .main-title {
        font-size: 18px; /* 少し小さくする */
    }

    .description {
        font-size: 14px;
    }
}

.simple-view-more {
  font-family: 'Sawarabi Mincho', serif;
  color: #4c3227; /* 茶色系 */
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.simple-view-more:hover {
  color: #a37d52; /* ホバー時に明るい茶色に */
}




 .card-section {
  display: flex;
  flex-wrap: wrap;
  margin: 100px auto;
  max-width: 100%;
  gap: 0; /* 明示的に gap をゼロに */
}

.card_lr {
  position: relative;
  width: 50%;
  height: 400px;
  overflow: hidden;
}

.card__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(60%);
  transition: transform 0.5s ease, filter 0.3s ease;
  transform: scale(1); /* 初期状態 */
}

.card_lr:hover .card__bg {
  transform: scale(1.1); /* hover時に拡大 */
  filter: brightness(80%);
}

.card__content {
  position: relative;
  color: #fff;
  z-index: 1;
  padding:70px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  box-sizing: border-box;
}

.card__label {
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 0.2em;
  text-align: center;
}

.card__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin: 0 0 40px;
}

/* 下線（200pxの横線） */
.card__title::after {
  content: '';
  display: block;
  width: 100px;
  height: 1px;
  background-color: #fff; /* 下線の色（お好みで） */
  margin: 22px auto 0;     /* 上に少し余白、中央揃え */
}

.card__text {
  font-size: 14px;
  width: 70%;
  margin: 0 auto;
  line-height: 1.7;
  margin-bottom: auto;
}

.card__link {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: bold;
  padding-bottom: 2px;
  transition: opacity 0.3s;
}

.card__link span {
  font-size: 18px;
}

.card:hover .card__bg {
  filter: brightness(80%);
}

/* レスポンシブ */
@media (max-width: 768px) {
  .card {
    width: 100%;
    height: 300px;
  }

  .card__title {
    font-size: 22px;
  }
  .card_lr {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
}


.button-wrap {
  text-align: right; 
}
.view-more-btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  gap: 12px;
}

/* テキスト */
.view-more-text {
  font-weight: normal;
  font-family: 'Sawarabi Mincho', serif;
}

/* 右側の白いボックス */
.view-more-box {
  background-color: #fff;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, transform 0.3s;
}

/* 矢印 */
.arrow {
  color: #4c3227; /* 茶色 */
  font-size: 18px;
  font-weight: bold;
}

.view-more-btn:hover .arrow {
  color: #fff; /* 矢印を白に変更 */
}

/* hoverアニメーション（任意） */
.view-more-btn:hover .view-more-box {
  background-color: #4c3227;
}
/* --- hover時の変化 --- */
.view-more-btn:hover {
  color: #ffffff; /* 文字の色（お好みで） */
}

/* トップページ */



 /*footer*/
  .footer {
    margin-top: 100px;
  background-color: #4c3227; /* 深い茶色 */
  color: #d9cbbf;            /* やや薄いベージュ系 */
  font-family: 'Yu Gothic', 'Hiragino Kaku Gothic ProN', sans-serif;
  padding-top: 50px;
  padding-bottom: 40px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

.footer__left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__logo {
  width: 250px;
  margin-bottom: 10px;
}

.footer__nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0;
  margin: 0;
}

.footer__nav a {
  color: #eee;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer__nav a:hover {
  opacity: 0.7;
}

.footer__right {
  margin-bottom: 0;
  padding-bottom: 0;
  color: #ccc;
   align-self: flex-end; /* ← 親が flex のときに下合わせにする */
}
.footer__copyright{
  font-size: 13px;
  margin-bottom: 0;
  padding-bottom: 0;
}
.footer__catch {
  text-align: center;
  margin-top: 40px;
}

.footer__tag-ja {
  font-family: 'Sawarabi Mincho', serif;
  font-size: 24px;
  margin: 0 0 20px;
  letter-spacing: 0.1em;
  color: #9d8d7a;
}

.footer__tag-en {
  font-family: 'Sawarabi Mincho', serif;
  font-size: 56px;
  font-weight: 100;
  margin: 0;
  letter-spacing: 0.1em;
  color: #9d8d7a;
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
  .footer__copyright{margin-bottom: 0;}
  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__right {
    margin-top: 40px;
  text-align: center;
   align-self: center; /* ← 親が flex のときに下合わせにする */
}
.footer__logo {
  width: 200px;
  margin: 10px auto 30px;
}
  .footer__nav ul {
    justify-content: center;
  }
  .footer__nav li {display: block;width: 100%;
  }
.footer__tag-ja {
  font-size: 15px;
  margin: 0 0 0px;
}
  .footer__tag-en {
    font-size: 25px;
  }
  .footer__catch {
  text-align: center;
  margin-top: 20px;
}
}
/*footer*/
