/* 

株式会社エデ・プロヴェルヴ
Designed By Broccoli Design Studio

*/


/* 

Green (main) : #A5BEA4
Blue : #B4CFDB
Gray : #AEAEAD
Orange : #F1C09D

*/


/* 

.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

*/

html {
  scroll-behavior: smooth;
}


:root {
    --main-green-color: #A5BEA4;
    --sub-blue-color: #B4CFDB;
    --sub-gray-color: #AEAEAD;
    --sub-orange-color: #F1C09D;
}

span.orange_font{
  color: var(--sub-orange-color);
}

span.gray_font{
  color: var(--sub-gray-color);
}

span.blue_font{
  color: var(--sub-blue-color);
}

a{
  color: black;
  text-decoration: none;
}


/* header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #fff;
  font-size: 13px;
}

.logo img {
  height: 40px;
}

nav {
  position: relative;
}

.menu {
  display: flex;
  gap: 25px;
  list-style: none;
}

.menu li a {
  text-decoration: none;
  color: #9BB49C;
  font-size: 13px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  height: 3px;
  background: #9BB49C;
  border-radius: 2px;
  transition: 0.3s;
  transform-origin: center;
}

/* バツ（×）アニメーション */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

.phone_br{
  display: none;
}

/* レスポンシブ表示 */
@media (max-width: 768px) {
  .menu {
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #fff;
    width: 200px;
    border: 1px solid #ccc;
    padding: 0;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    z-index: 1000;
  }

  .menu.active {
    padding: 10px 0;
    max-height: 500px;
    opacity: 1;
  }

  .hamburger {
    display: flex;
  }
}


/* top catch */

/* 背景動画 */
.video-background {
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 90%;
  overflow: hidden;
  z-index: -1;
  opacity: .6;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* コピー画像コンテナ */
.copy-container {
    position: relative;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}

.copy-img {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.copy-img.show {
    opacity: 1;
    transform: translateY(0);
    position: absolute;
    bottom: 10px;
    right: 50px;
    width: 40%;
}

.top_copy {
    writing-mode: vertical-rl;
    position: absolute;
    top: 65%;
    right: 50px;
    transform: translateY(-50%);
    font-family: sans-serif;
    color: var(--main-green-color);
    padding: 10px;
    height: 100%;
}


/* about_us */
.about-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background-image: url(../img/top_bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 300px;
}

/* About Us ロゴ */
.about-logo {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 50%;
    max-width: 450px;
    z-index: 2;
}

/* 葉っぱ画像 */
/* .leaves {
    position: absolute;
    top: 5%;
    right: 0%;
    width: 50%;
    opacity: 0;
    transform: translateX(100px);
    transition: transform 1.5s ease, opacity 1.5s ease;
    z-index: 1;
}

.leaves.show {
  opacity: 1;
  transform: translateX(0);
} */

.leaves {
  position: absolute;
  top: 5%;
  right: 0%;
  width: 50%;
  
  /* clip-path で右側を 100% マスク（非表示）に */
  clip-path: inset(0 100% 0 0);
  -webkit-clip-path: inset(0 100% 0 0);

  /* ワイプ表示用の transition */
  transition: clip-path 1.5s ease-out;
  -webkit-transition: -webkit-clip-path 1.5s ease-out;

  z-index: 1;
}

/* 画面内に入ったら .show を付与してクリップを解除（要素全体を表示） */
.leaves.show {
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
}



/* テキストエリア */
.text-block {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 400px 10% 100px 10%;
    gap: 60px;
    z-index: 3;
}

/* 縦書きコピー */
.vertical-copy {
    writing-mode: vertical-rl;
    font-size: 20px;
    margin-top: -100px;
}


/* 本文 */
.paragraph {
  max-width: 600px;
  font-size: 13px;
  line-height: 2;
}

.paragraph p{
  margin-bottom: 13px;
}


/* business section */


.background-image {
    width: 100%;
    height: 100%;
}

.business-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 50px 20px 100px;
  position: relative;
  z-index: 1;
}

.business-section h3{
  margin-top: 10px;
    font-size: 13px;
}

.business-section p{
  margin-top: 20px;
    font-size: 13px;
}

.business-block {
  text-align: center;
  max-width: 280px;
}

.business-img {
  width: 100%;
  border-radius: 50px 0 50px 0;
}

.business_ttl p,
.business_ttl h2{
  text-align: center;
  z-index: 2;
  position: relative;
  font-size: 14px;
  color: var(--main-green-color);
}

.business_ttl p img{
  width: 50px;
  margin: auto;
}

.business_section{
  position: relative;
  background-color:#f6faec;
}

.background-wrapper {
    position: absolute;
    top: -200px;
    left: 0;
    width: 100%;
    z-index: 1;
    text-align: center;
    height: 500px;
}

/* 会社概要 */
.about_comp {
  background-image: url("../img/about_com_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 20px;
  position: relative;
  z-index: 1;
}

.about-table {
  width: 40%;
  max-width: 900px;
  margin: 100px auto 0;
  border-collapse: collapse;
  font-size: 13px;
  border-radius: 8px;
  overflow: hidden;
}

.about-table th,
.about-table td {
  padding: 10px 15px;
  border-bottom: 1px solid var(--main-green-color);
  text-align: left;
}

.about-table th {
  width: 130px;
  font-weight: bold;
}

/* ========================================
   お問い合わせセクション全体
   ======================================== */
.contact-section {
  background-color: #BFDCE9;  /* 背景色を薄いブルーに */
  padding: 60px 20px;
}

/* 中央寄せ用コンテナ（最大幅を決めて中央寄せ） */
.contact-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* 葉っぱアイコン */
.contact-icon img {
  width: 40px;  /* お好みでサイズを調整 */
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

/* タイトル */
.contact-title {
  font-size: 28px;
  margin-bottom: 16px;
  color: #ffffff;
  font-weight: 500;
}

/* 説明文 */
.contact-desc {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #ffffff;
}

/* ========================================
   フォーム全体
   ======================================== */
.contact-form {
  text-align: left; /* 各ラベルと入力欄を揃える */
}

/* 各入力項目（ラベル＋フィールド） */
.form-group {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

/* ラベル */
.form-group label {
  width: 100px;          /* ラベルの幅を固定 */
  font-size: 13px;
  color: #ffffff;
  text-align: left;
  margin-right: 12px;
}

/* テキスト／メール／電話入力 */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  flex: 1;
  padding: 10px 12px;
  font-size: 13px;
  border: none;
  border-radius: 6px;
  background-color: #ffffff;
  color: #333333;
}

/* 高さをもっと高くしたいときは rows 属性で調整 */
.form-group textarea {
  resize: vertical; /* ユーザーの任意で縦方向のサイズ変更を許可 */
}

/* 送信ボタン部分だけ中央寄せにしたい場合 */
.form-group-button {
  text-align: center;
  margin-top: 16px;
}

/* 送信ボタン */
.submit-btn {
  background-color: #A6BFA5; /* 緑がかったベージュ系 */
  color: #ffffff;
  font-size: 16px;
  padding: 10px 60px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* ボタンホバー時 */
.submit-btn:hover {
  background-color: #95AF92; /* ほんの少し暗めに */
}

.site-footer {
  background-color: #999999; /* フッター背景色（ここはスクリーンショットに近いグレーを指定） */
  padding: 20px 0;           /* 上下の余白 */
}

/* フッター内コンテナ：最大幅・中央寄せ・左右要素の配置 */
.footer-container {
  max-width: 1200px;         /* ページ幅に合わせて調整 */
  margin: 0 auto;
  padding: 0 20px;           /* 左右の余白（モバイル時の余裕確保） */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ================================
   左：ロゴ部分
================================ */
.footer-logo img {
  display: block;
  height: 40px;              /* 適宜サイズ調整 */
  width: auto;
}

/* ================================
   右：ナビゲーション部分
================================ */
.footer-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;                 /* リンク間のスペース */
  margin: 0;
  padding: 0;
}

.footer-nav a {
  color: #ffffff;            /* リンク文字色を白に */
  text-decoration: none;
  font-size: 13px;           /* フォントサイズ調整 */
  line-height: 1.2;
  transition: opacity 0.2s ease;
}

.footer-nav a:hover {
  opacity: 0.7;              /* ホバー時に少し淡く */
}

/* ================================
   レスポンシブ対応例（幅が狭い場合）
================================ */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

@media screen and (max-width: 500px) {
.video-background {
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    opacity: .6;
}
.copy-container {
    position: absolute;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    width: 100%;
}
.copy-img.show {
    opacity: 1;
    transform: translateY(0);
    position: absolute;
    /* bottom: 10px; */
    right: 10px;
    width: 50%;
    top: -80px;
}
    .top_copy {
        writing-mode: horizontal-tb;
        position: absolute;
        top: 330px;
        right: 0;
        left: auto;
        transform: translateY(-50%);
        font-family: sans-serif;
        color: var(--main-green-color);
        padding: 10px;
        height: auto;
        font-size: 13px;
    }

.text-block {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 300px 10% 100px 10%;
    gap: 60px;
    z-index: 3;
}

.leaves {
  position: absolute;
  top: 5%;
  right: 0%;
  width: 70%;
  
  /* clip-path で右側を 100% マスク（非表示）に */
  clip-path: inset(0 100% 0 0);
  -webkit-clip-path: inset(0 100% 0 0);

  /* ワイプ表示用の transition */
  transition: clip-path 1.5s ease-out;
  -webkit-transition: -webkit-clip-path 1.5s ease-out;

  z-index: 1;
}

/* 画面内に入ったら .show を付与してクリップを解除（要素全体を表示） */
.leaves.show {
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
}

.about-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background-image: url(../img/top_bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 150px;
}
.about-table {
    width: 100%;
    max-width: 900px;
    margin: 100px auto 0;
    border-collapse: collapse;
    font-size: 13px;
    border-radius: 8px;
    overflow: hidden;
}

.phone_br{
  display: block;
}

.ad_txt{
  font-size: 12px;
}

}

/* 初期状態：画面外では要素を透明にして、位置を少し下げておく */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* 画面内に入ったら付与するクラス：透明度を 1 にし、元の位置に戻す */
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

