body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  background-color: #fbe5cb;
  color:#8c6b5e;
}


:lang(en) {
  font-family: "Athelas", serif;
  font-style: normal;
  font-weight: 300; /* 英語だけ太めに */
}

:lang(en2) {
  font-family: "Athelas", serif;
  font-style: italic;
  font-weight: 600; /* 英語だけ太めに */
}


h1{
  font-family: "Athelas", serif; /* macOS・iOSでAthelas */
  font-style: italic;
  font-weight: 600;
}

.innerWrap{
    border: 4px solid lightblue;
    width:1000px;
    margin:0 auto;
    padding: 80px 20px;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* 横スクロールを無効化 */
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #fbe5cb;
  padding-top: 90px; /* ヘッダー位置50px + 高さ40px */
}

body {
  position: relative; /* これが基準になります */
  margin: 0;
  height: 100vh;
}

   .main-image {
    background-image: url("images/main-image2.jpg");
    background-size: 100%;       /* 100%だと画面いっぱい、120%で少し拡大、80%で少し縮小 */
    background-position: 30% top; /* 左寄せ微調整 */
    background-repeat: no-repeat;
    height: 140vh;

    
    opacity: 0;                  /* 最初は透明 */
  animation: fadeInCircle 1.5s forwards;
  animation-delay: 1s; 
  }

.main-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1000px;      /* 基準幅 */
  height: 100%;
  transform: translateX(-50%);/* 右端の線 */
  pointer-events: none;          /* クリックなどを妨げない */
  z-index: 9999;                  /* 最前面に */
}


@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeInCircle {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}




/* 背景だけのレイヤー */
.header-bg {
  height: 0px; /* 背景だけの高さ */
  background-color: #fbe5cb;
  position: relative; /* 背景とハンバーガーの基準に */
}

/* ハンバーガー配置 */
.hamburger-wrap {
  width: 1000px;             /* コンテンツ幅を1000pxに */
  margin: 0 auto;
  height: 60px;
  display: flex;
  justify-content: flex-end; /* 右寄せ */
  align-items: center;
  box-sizing: border-box;

  position: relative;         /* absolute は不要になる */
}

.hamburger {
display: none;
}

/* ページ全体の余白をリセット */
body {
  margin: 0;
  padding: 0;
}


/* 細い帯 */
.header-line {
  height: 20px;
  background-color: #d8c0a4;
}

/* プルダウンメニュー */
.nav-menu {
  display: flex;              /* 横並びに */
  flex-direction: row;        /* 横方向 */
  gap: 50px;                  /* 項目の間隔 */
  list-style: none;
  margin: 0;
  padding: 0;
  background: none;           /* 背景色を外す */
  position: static;           /* 絶対配置を解除 */
}


.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: #bc8a69; 
  text-decoration: none;
  padding: 10px 0;
}

.nav-menu a:hover {
  color: #ffffff;
}


h2{
text-align: center;
color:#bc8a69;
font-size: 40px;
margin:100px 0 100px;
position:relative;
}

h2::after{
    content:"";
    display: block;
    background-color:#bc8a69;
    height:4px;
    width: 150px;
    margin:10px auto 0;
}

/*Works*/
.container2, .container3, .container4 { display: none; }
.container2.active, .container3.active, .container4.active { display: flex; }




/* 背景色例 */
#banner.active { background: #bc8a69; }
#menu.active { background: #d8c0a4; }
#portfolio.active { background: #bc8a69; }


.tag {
  display: flex;
  width: 1000px;
  margin: 0 auto;
  justify-content: space-between;
}

.tag div {
  flex: 1 1 200px;
  text-align: center;
  padding: 15px;
  border-radius: 50px 50px 0 0; /* 上角だけ丸く */
  margin-bottom: 5px; /* 下に隙間 */
  cursor: pointer;
  transition: margin-bottom 0.2s;
  color:#f9ecdc;
}

.Cafe, .Menu {
  background: #d8c0a4;
}

.Banner, .Portfolio {
  background: #bc8a69;
}

/* 選択中のタブ */
.tag div.active {
  margin-bottom: 0; /* 下のコンテナとくっつく */
}

/* テキストの整列 */
.tag div p:first-child {
  font-weight: bold;
  margin-bottom: 8px;
}

.tag div p span.br-sp {
  display: block;
}

.tag div a {
  text-decoration: none;
  color: inherit;
}





.Cafe,.Menu,.Banner,.Portfolio {
  width: 25%;
  text-align: center; /* 各列内の文字を中央に */
}


.description,
.description2,
.description3,
.description4 {
  text-align: center;  /* 中央揃え */
  margin: 0 auto;      /* 上下の余白をリセット、左右中央 */
}

/* 共通スタイル */
.cafe a,
.menu a,
.banner a, 
.portfolio a{
  font-size: 30px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s; /* ホバー時の色変化を滑らかに */
}

.cafe, .menu, .banner, .portfolio,
.cafe p, .menu p, .banner p,.portfolio p{
  margin: 0;
  padding: 0;
  text-align: center;
}

/* 通常色 */
.cafe a,
.menu a {
  color: #d8c0a4;
}

.banner a,
.portfolio a {
  color: #bc8a69;
} 

/* ホバー色 */
.cafe a:hover,
.menu a:hover {
  color: #bc8a69;
}

.banner a:hover,
.portfolio a:hover {
  color: #d8c0a4;
}

/* 配置 */
.Cafe {
  text-align: left;
}

.Banner {
  text-align: center;
  margin: 0 auto;
}

.Menu {
  text-align: right;
}

.Portfolio{
  text-align: right;
}


.description,.description2,.description3,.description4 {
  color: #8c6b5e;
  font-size: 16px;
  margin-top: 0;
}

.container {
  display: flex;
  flex-direction: column; /* 縦方向 */
  align-items: center;    /* 横方向の中央寄せ */
  justify-content: center; /* 縦方向の中央寄せ（高さがある場合） */
  width: 100%;
  background-color: #d8c0a4;
  margin: 0 auto;
  padding-top: 150px;
  padding-bottom:150px;
}

h3{
  color:#f9ecdc;
  font-size:30px;
  font-weight:700;
  margin-bottom: 0;
} 


.tag p.cafe,
.tag p.banner,
.tag p.menu,
.tag p.portfolio {
  font-size: 30px;    
  font-weight: 700;   
  color: #f9ecdc;     /* デフォルト文字色 */
  margin-bottom: 0;
  transition: color 0.3s; /* 色変化を滑らかに */
}

/* タブ全体を押した時、文字色だけ変える */
.tag > div:hover p,
.tag > div.active p {
  color: #8c6b5e;  /* ホバー・アクティブ時の文字色 */
}


.detail{
  margin:100px;
}

.mockup {
  width: 1000px;   
  height: 600px;  /* 高さを固定する */
  background-image: url('images/モックアップ２.jpg');
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
  cursor: pointer;
}

.mockup-m{
  width: 550px; height: 400px; margin:50px auto;
  background-image: url('images/モックアップ２.jpg');
    background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
}

.tab {
  color: #d8c0a4;
  font-size: 24px;
  font-weight: 700;
  background-color: #f9ecdc;
  padding: 10px 60px;                   
  border-radius: 9999px;
  margin: 60px; 
  cursor: pointer;
  transition: background-color 0.2s; /* 背景色だけアニメーション */
}

.tab:hover {
  background-color: #f9e6cf; /* 明るめのクリームで差をつける */
}
 

.coffee {
  width: 600px;   
  height: 600px;  /* 高さを固定する */
  background-image: url('images/コーヒーの森.jpg');
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
  margin-top:150px;
}

.coffee-m{
width:600px; height: 600px; margin:50px auto;
 background-image: url('images/コーヒーの森.jpg');
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
}


.forestlatte{
  width: 600px;   
  height: 600px;  /* 高さを固定する */
  background-image: url('images/SNS.jpg');
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
  margin-top:150px;
  cursor: pointer;
}

.forestlatte-m{
width:600px; height: 600px; margin:50px auto;
background-image: url('images/SNS.jpg');
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
}

/*Works*/
.container2 {
  display: flex;
  flex-direction: column; /* 縦方向 */
  align-items: center;    /* 横方向の中央寄せ */
  justify-content: center; /* 縦方向の中央寄せ（高さがある場合） */
  width: 100%;
  background-color: #bc8a69;
  margin: 0 auto;
  padding-top: 150px;
  padding-bottom:150px;
  color:White;
}

.Furnuture{
  width: 600px;   
  height: 600px;  /* 高さを固定する */
  background-image: url('images/natural\ furnuture.jpg');
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
  margin-top:100px;
  cursor:pointer;
}

.Furnuture-m{
  width:600px; height: 600px; margin:50px auto;
    background-image: url('images/natural\ furnuture.jpg');
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
}

.name2 {
  font-size: 30px;
  font-weight: bold;
  margin: 60px;
  color: #ffffff;
}

.description.banner{
  color: #fff8e7;
  font-size: 16px;
  margin-top: 0;
}

.outdoor{
  width: 600px;   
  height: 600px;  /* 高さを固定する */
  background-image: url('images/サマーセールアウトドア.jpg');
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
  margin-top:150px;
  cursor: pointer;
}

.outdoor-m{
   width:600px; height: 600px; margin:50px auto;
   background-image: url('images/サマーセールアウトドア.jpg');
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
}

.Father{
  width: 734px;   
  height: 300px;  /* 高さを固定する */
  background-image: url('images/父の日.jpg');
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
  margin-top:150px;
  cursor: pointer;
}

.Father-m{
  width:600px;
  aspect-ratio: 734 / 299;
  margin:50px auto;
  background-image: url('images/父の日.jpg'); /* ←正しいパスに変更 */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.strawberry{
  width: 576px;   
  height: 300px;  /* 高さを固定する */
  background-image: url('images/いちご.jpg');
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
  margin-top:150px;
  cursor: pointer;
}

.strawberry-m{
  width:500px;
  aspect-ratio: 576 / 301;
  margin:50px auto;
  background-image: url('images/いちご.jpg'); /* ←正しいパスに変更 */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.sakura{
  width: 900px;   
  height: 300px;  /* 高さを固定する */
  background-image: url('images/Sakura.jpg');
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
  margin-top:150px;
  cursor: pointer;
}

.sakura-m{
  width:600px;
  aspect-ratio: 902 / 301;
  margin:50px auto;
  background-image: url('images/Sakura.jpg'); /* ←正しいパスに変更 */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.lip{
width: 600px;   
  height: 600px;  /* 高さを固定する */
  background-image: url('images/コスメ.jpg');
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
  margin-top:150px;
  cursor: pointer;
}

.lip-m {
  width: 500px;             /* 任意の横幅 */
  aspect-ratio: 1 / 1;      /* 正方形に固定 */
  margin: 50px auto;
  background-image: url('images/コスメ.jpg');
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
}

.seminar{
  width: 734px;   
  height: 300px;  /* 高さを固定する */
  background-image: url('images/起業セミナー.jpg');
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
  margin-top:150px;
  cursor: pointer;
}

.seminar-m{
  width:600px;
  aspect-ratio: 734 / 299;
  margin:50px auto;
  background-image: url('images/起業セミナー.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.tabi {
  width: 720px;        /* 1200pxの60% */
  height: 377px;       /* 628pxの60% */
  background-image: url('images/女子旅.jpg');
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
  margin-top: 150px;
  cursor: pointer;
}


.tabi-m {
  width: 600px;                 /* ← 600pxの半分 */
  aspect-ratio: 1200 / 628;      /* 元の比率を維持 */
  margin: 50px auto;
  background-image: url('images/女子旅.jpg'); /* ←パスそのままでOK */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


.container3 {
  display: flex;
  flex-direction: column; /* 縦方向 */
  align-items: center;    /* 横方向の中央寄せ */
  justify-content: center; /* 縦方向の中央寄せ（高さがある場合） */
  width: 100%;
  background-color: #d8c0a4;
  margin: 0 auto;
  padding-top: 150px;
  padding-bottom:150px;
  color:#8c6b5e;
}

.name3 {
  font-size: 30px;
  font-weight: bold;
  margin: 60px; 
}


p.description.menu {
  font-size: 16px;
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

.Money{
    width: 753px;   
  height: 495px;  /* 高さを固定する */
  background-image: url('images/お金.png');
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
  margin-top:100px;
  cursor: pointer;
}

.Money-m {
  margin: 50px auto;
   width: min(80vw, 600px);   /* 画面幅の80%、最大600pxまで */
  aspect-ratio: 753 / 495;   /* .Clinicと同じ比率 */
  background-image: url('images/お金.png');
  background-size: cover;    /* 見た目を合わせる */
  background-position: center;
  background-repeat: no-repeat;
}

.Clinic{
    width: 753px;   
  height: 495px;  /* 高さを固定する */
  background-image: url('images/クリニック.png');
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
  margin-top:100px;
  cursor: pointer;
}

.Clinic-m {
  margin: 50px auto;
   width: min(80vw, 600px);   /* 画面幅の80%、最大600pxまで */
  aspect-ratio: 753 / 495;   /* .Clinicと同じ比率 */
  background-image: url('images/クリニック.png');
  background-size: cover;    /* 見た目を合わせる */
  background-position: center;
  background-repeat: no-repeat;
}

.Autumn{
    width: 753px;   
  height: 495px;  /* 高さを固定する */
  background-image: url('images/秋マルシェ.png');
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
  margin-top:100px;
  cursor: pointer;
}

.Autumn-m {
  margin: 50px auto;
   width: min(80vw, 600px);   /* 画面幅の80%、最大600pxまで */
  aspect-ratio: 753 / 495;   /* .Clinicと同じ比率 */
  background-image: url('images/秋マルシェ.png');
  background-size: cover;    /* 見た目を合わせる */
  background-position: center;
  background-repeat: no-repeat;
}

.Brunch{
  width: 753px;   
  height: 495px;  /* 高さを固定する */
  background-image: url('images/brunch.jpg');
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
  margin-top:100px;
  cursor: pointer;
}

.Brunch-m{
  width:600px;
  aspect-ratio: 957 / 639;
  margin:50px auto;
  background-image: url('images/brunch.jpg'); /* ←正しいパスに変更 */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.restaurant{
  width: 753px;   
  height: 495px;  /* 高さを固定する */
  background-image: url('images/restaurant.jpg');
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
  margin-top:150px;
  cursor: pointer;
}

.restaurant-m{
  width:600px;
  aspect-ratio: 911 / 607;
  margin:50px auto;
  background-image: url('images/restaurant.jpg'); /* ←正しいパスに変更 */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.wacafe{
  width: 753px;   
  height: 495px;  /* 高さを固定する */
  background-image: url('images/茶寮つきのわ.jpg');
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
  margin-top:150px;
  cursor: pointer;
}

.wacafe-m{
  width:600px;
  aspect-ratio: 906 / 505;
  margin:50px auto;
  background-image: url('images/茶寮つきのわ.jpg'); /* ←正しいパスに変更 */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.container4 {
  display: flex;
  flex-direction: column; /* 縦方向 */
  align-items: center;    /* 横方向の中央寄せ */
  justify-content: center; /* 縦方向の中央寄せ（高さがある場合） */
  width: 100%;
  background-color: #bc8a69;
  margin: 0 auto;
  padding-top: 150px;
  padding-bottom:150px;
  color:#8c6b5e";
}

.portfolio-text {
  display: block;             /* 横幅に応じてブロック */
  width: 80%;                 /* 横幅 */
  max-width: 900px;          /* 最大幅 */
  margin: 30px auto;           /* 横中央に寄せる */
  background: #fbe5cb;
    border-radius: 70% 70% 0 0 / 40% 40% 0 0; /* 上だけ丸く */
  padding: 150px 100px 40px;   /* 上パディングで弧を確保 */
  box-sizing: border-box;
  line-height: 1.5;
  font-size: 14px;
  overflow-y: auto;
  text-align: left;            /* 文字は左寄せ */
}

.portfolio-text p{
  margin-bottom: 30px;
}

.pf{
  color:#bc8a69;
  text-align: center;
}

.dc{
  text-align: center;
  color: #fff8e7;
  font-size: 16px;
  margin-top: 0;
}



.mu {
  width: 1000px;   
  height: 600px;  /* 高さを固定する */
  background-image: url('images/モックアップ3.jpg');
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
  cursor: pointer;
  margin-top:100px;
}

.mu-m{
  width: 550px; height: 400px; margin:50px auto;
  background-image: url('images/モックアップ3.jpg');
    background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
}

.english {
  width: 1000px;   
  height: 600px;  /* 高さを固定する */
  background-image: url('images/英会話モックアップ.jpg');
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
  cursor: pointer;
  margin-top:100px;
}

.english-m{
  width: 550px; height: 400px; margin:50px auto;
  background-image: url('images/英会話モックアップ.jpg');
    background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
}


.seminar2{
  width: 1000px;   
  height: 600px;  /* 高さを固定する */
  background-image: url('images/起業セミナーLP.jpg');
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
  cursor: pointer;
  margin-top:100px;
}

.seminar2-m{
  width: 550px; height: 400px; margin:50px auto;
  background-image: url('images/起業セミナーLP.jpg');
    background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
}


/* =========================
   モーダルの背景四角部分
   ========================= */
/* モーダル全体 */
.modal {
  display: none;               
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;     
  align-items: flex-start;     
  overflow-y: auto;            
  z-index: 1000;
  padding-top: 10px;
  padding-bottom:10px;          
}

/* モーダル内の四角い背景 */
.modal-content {
  background: #d8c0a4;
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0;   
  
  text-align: center; /* ←追加 */
}

.modal-text-box {
  display: block;             /* 横幅に応じてブロック */
  width: 80%;                 /* 横幅 */
  max-width: 900px;          /* 最大幅 */
  margin: 50px auto;           /* 横中央に寄せる */
  background: #fbe5cb;
  border-radius: 70% 70% 0 0 / 40% 40% 0 0; /* 上だけ丸く */
  padding: 150px 100px 40px;   /* 上パディングで弧を確保 */
  box-sizing: border-box;
  line-height: 1.5;
  font-size: 14px;
  overflow-y: auto;
  text-align: left;            /* 文字は左寄せ */
}

.modal-text-box p{
  margin-bottom:30px;
}

/* 閉じるボタン */
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.modal-content.container2-modal,
 .modal-content.container4-modal{
  background-color:#bc8a69;

}

.color-text{
  color:#d8c0a4;
  font-weight:bold;
}

.color-text2{
  color:#bc8a69;
  font-weight:bold;
}

.web-site {
  display: inline-block; /* これで margin が効くようになる */
  background-color: #d8c0a4;
  color: white;
  padding: 10px 60px;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 600;
  margin: 20px 0; /* 上下の間隔 */
}


.About-me {
  background-color: #f9ecdc;
  border: 5px solid #bc8a69;
  border-radius: 50% 50% 0 0 / 60% 60% 0 0; /* 上が弧、下は直線 */
  padding: 40px;
  width: 120%; /* 画面幅の120%に */
  margin-left: -10%; /* 左右均等にはみ出させる */
  box-sizing: border-box;
  margin-top: 300px; 
}

.about-me{
  margin-top:100px ;
}

.circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-image: url("images/Pari.JPG");
  background-size: 250%;       /* 全面カバー、はみ出し切り取り */
  background-position: 20% 70%;  /* 中央寄せ */
  margin: 50px auto;
}

.name{
  font-size:30px;
  color: #8c6b5e;
  text-align: center;
}

.text-box {
  width: 300px;
  padding: 10px;
  box-sizing: border-box;
  text-align: justify;
  text-justify: inter-ideograph;
  font-family: 16px;

  /* 左右中央配置 */
  margin: 0 auto; /* これだけで左右中央に */
}

.btn-container {
  display: flex;
  justify-content: center; /* 中央基準 */
  margin: 50px;
}

.view-more {
  background-color: #8c6b5e;
  color: white;
  padding: 10px 60px;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  position:relative; /* 中央から右へ30px移動 */
  cursor: pointer;
}

.view-more:hover {
  background-color: #a07d6b;
    color: White;
}

.Btn-parents {
  display: flex;
  flex-direction: column; /* 縦並びに */
  align-items: center;    /* 中央揃え */
  margin: 50px;
  margin-top: 100px;
  position: relative;     /* 相対位置指定を有効に */
  left: 200px;             /* 中央から右に20pxずらす */
}


.Btn {
  color: #f9ecdc;
  padding: 0px 20px;
  font-size: 23px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease; /* color に変更 */
  cursor: pointer;
}

.Btn:hover {
  color: #f2c8a2; 
}

.yazirushi {
  background-image: url('images/矢印.png');
  background-size: 200px auto;  /* 幅200px、高さは自動 */
  background-repeat: no-repeat;
  width: 200px;
  height: 50px;                 /* 高さは画像に合わせて適度に */
  margin-top: 0px;
}









.Contact{
width: 800px;
height: 200px;
background-color: #f9ecdc;
border:3px solid #d8c0a4;
margin: 100px auto;
text-align: center;
padding:100px;
}

.btn-container2 {
  display: flex;
  justify-content: center; /* 中央基準 */
  margin: 50px;
}


.footer {
  background-color: #d8c0a4;
  color: white;
  width: 100vw;      /* 画面幅いっぱい */
  position: relative;
  left: 0;
  padding: 20px 0;
  margin-top: 100px;
}

.footer-inner {
  max-width: 1000px; /* 中身だけ幅制限 */
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}



.footer ul {
  display: flex;       
  gap: 30px;           /* 間隔 */
  list-style: none;    
  margin: 0;
  padding: 0;
}

.footer a {
  color: white;        
  text-decoration: none;
  font-size: 18px;
}

.footer a:hover {
  color:#bc8a69;
}

.mobile-br {
  display: inline; /* 通常は横並び */
}


.br-sp {
  display: inline;  /* PCは横並び */
}

@media (max-width: 480px) {
  .mobile-br {
    display: block; /* スマホだけ改行 */
  }
}

/*＝＝＝＝＝スマホ用＝＝＝＝＝*/

@media (max-width: 600px) {
  body {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size:14px;
  }
  .header-bg {
    height: 0px;           /* 高さを自動に */
    padding:0;        /* 上下の余白で文字を確保 */
    background-color: #fbe5cb;
    position: relative;
  }

  .hamburger-wrap {
    width: 100%;            /* 画面幅いっぱい */
    margin: 0 auto;
    justify-content: flex-end; /* 右寄せ */
    padding: 0 10px;        /* 横余白 */
  }

  .nav-menu {
    flex-direction: row;    /* 横並びのまま */
    gap: 20px;              /* 項目間隔を少し狭く */
    justify-content: center; /* 中央寄せも可 */
    display: flex;           /* 非表示解除 */
  }

  .nav-menu a {
    font-size: 14px;        /* 小さめに調整 */
  }
  
.main-image {
  background-image: url("images/phone.jpg");
  background-size: cover;
  background-position: center 50%; /* 上を少し下げる */
  width: 100%;
  height: 350px;
}
h3{
  font-size:30px!important;
}

h2 {
  margin-top: 100px;     /* 上の余白を消す */
  margin-bottom: 1rem; /* 下は少しだけ残す */
}

.tag p.cafe,
.tag p.banner,
.tag p.menu,
.tag p.portfolio {
  font-size: 14px!important;    
  font-weight: 700;   
  color: #f9ecdc;     /* デフォルト文字色 */
  margin-bottom: 0;
  transition: color 0.3s; /* 色変化を滑らかに */
}

/* タブ全体を押した時、文字色だけ変える */
.tag > div:hover p,
.tag > div.active p {
  color: #8c6b5e;  /* ホバー・アクティブ時の文字色 */
}


  /* コンテナのパディングを小さめに */
  .container, .container2, .container3, .container4 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  /* タグ部分の幅を可変に */
.tag {
    width: 100%;
    justify-content: space-between; /* 均等配置 */
    gap: 4px;                       /* 少し隙間を入れる */
    margin-top: 50px;
  }

  .tag div {
    flex: 1 1 auto;
    min-width: 60px;          /* さらに狭く */
    padding: 6px 4px;         /* 上下左右の余白も縮小 */
    font-size: 0.8em;         /* 文字サイズを小さめに */
    border-radius: 20px 20px 0 0;
  }

  .tag div p:first-child {
    margin-bottom: 4px;
    font-size: 0.85em;
  }

.br-sp {
    display: block;  /* スマホで改行 */
  }
  .cafe a, .banner a, .menu a, .portfolio a {
    font-size: 16px ;
  }

  .description,.description2,.description3,.description4{
font-size:10px;
  }

  .Cafe + .description,
  .Menu + .description2,
  .Banner + .description3,
  .Portfolio + .description4 {
    width: 90%;
  }

  .detail{
    font-size:14px;
    width:280px;
    margin:100px;
  }

.mockup {
  display: block;
  width: 100%;
  max-width: 400px;
  height: 400px; /* 高さを固定して背景画像を表示 */
  background-image: url('images/モックアップ２.jpg');
  background-size: cover;      
  background-position: calc(30% - 20px) center;
  background-repeat: no-repeat;
  cursor: pointer;
  margin: 40px auto 0;
}

  .mockup-m {
    width: 90%;              /* 画面幅に合わせる */
    max-width: 500px;        /* 最大幅を600pxに制限 */
    height: auto;            /* 高さはアスペクト比に合わせて自動 */
    aspect-ratio: 550 / 400; /* 元画像の比率を保持 */
    margin: 50px auto;       /* 中央寄せ */
  }

.coffee{
  display: block;
  width: 100%;
  max-width: 300px;
  height: 300px; /* 高さを固定して背景画像を表示 */
  background-size: cover;      
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  margin: 100px auto 0;
  
}

 .coffee-m {
    width: 90%;
    max-width: 600px;
    aspect-ratio: 600 / 600;
    height: auto;
    margin: 30px auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

.forestlatte{
  display: block;
  width: 100%;
  max-width: 300px;
  height: 300px; /* 高さを固定して背景画像を表示 */
  background-size: cover;      
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  margin: 100px auto 0;
}

  .forestlatte-m {
    width: 90%;
    max-width: 600px;
    aspect-ratio: 600 / 600;
    height: auto;
    margin: 30px auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

.tab{
  font-size:20px;
 display: inline-block;  /* もしくは flex なら flex-item */
  white-space: nowrap;  
  margin:50px;
}

.container{
  padding:50px 0;
}




    #cafe p,#banner p,#menu p {
    text-align: center;
    margin: 10px auto;
    max-width: 90%;
  }

  .Furnuture{
  display: block;
  width: 100%;
  max-width: 300px;
  height: 300px; /* 高さを固定して背景画像を表示 */
  background-size: cover;      
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  margin: 50px auto 0;

}

  .outdoor{
  display: block;
  width: 100%;
  max-width: 300px;
  height: 300px; /* 高さを固定して背景画像を表示 */
  background-size: cover;      
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  margin: 100px auto 0;

}

  .Furnuture-m {
    width: 90%;
    max-width: 600px;
    aspect-ratio: 600 / 600;
    height: auto;
    margin: 30px auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

    .outdoor-m {
    width: 90%;
    max-width: 600px;
    aspect-ratio: 600 / 600;
    height: auto;
    margin: 30px auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

 .Father {
  width: 350px;
  height: auto;
  aspect-ratio: 1300 / 500;
  max-height: 200px;
  background-size: contain;
  background-position: center center; /* 横も縦も中央 */
  background-repeat: no-repeat;
  margin: 100px auto 0;                    /* ブロック全体も中央 */
  cursor: pointer;
}

  .Father-m {
    width: 90%;
    max-width: 400px;       /* 小さめに調整 */
    aspect-ratio: 734 / 299;
    height: auto;
    margin: 30px auto;
    background-size: contain; /* coverよりcontainで収める */
    background-position: center;
    background-repeat: no-repeat;
  }

  .lip{
  display: block;
  width: 100%;
  max-width: 300px;
  height: 300px; /* 高さを固定して背景画像を表示 */
  background-size: cover;      
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  margin: 100px auto 0;

}

    .lip-m {
    width: 90%;
    max-width: 600px;
    aspect-ratio: 600 / 600;
    height: auto;
    margin: 30px auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
   .sakura{
    width: 350px;
  height: auto;
  aspect-ratio: 1500 / 500;
  max-height: 200px;
  background-size: contain;
  background-position: center center; /* 横も縦も中央 */
  background-repeat: no-repeat;
  margin: 100px auto 0;
  cursor: pointer;
  }

   .sakura-m {
    width: 90%;
    max-width: 400px;       /* 小さめに調整 */
    aspect-ratio: 902 / 301;
    height: auto;
    margin: 30px auto;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }

   .seminar {
  width: 350px;
  height: auto;
  aspect-ratio: 1300 / 500;
  max-height: 200px;
  background-size: contain;
  background-position: center center; /* 横も縦も中央 */
  background-repeat: no-repeat;
  margin: 100px auto 0;                    /* ブロック全体も中央 */
  cursor: pointer;
}

  .seminar-m {
    width: 90%;
    max-width: 400px;       /* 小さめに調整 */
    aspect-ratio: 734 / 299;
    height: auto;
    margin: 30px auto;
    background-size: contain; /* coverよりcontainで収める */
    background-position: center;
    background-repeat: no-repeat;
  }

     .tabi{
    width: 350px;
  height: auto;
  aspect-ratio: 1200 / 628;
  max-height: 200px;
  background-size: contain;
  background-position: center center; /* 横も縦も中央 */
  background-repeat: no-repeat;
  margin: 100px auto 0;
  cursor: pointer;
  }

  .tabi-m {
    width: 100vw;                /* 画面幅いっぱい */
    max-width: 100%;             /* 画面幅を超えない */
    aspect-ratio: 1200 / 628;    /* 縦横比キープ */
    margin: 30px auto;           /* 上下余白のみ */
  }

/* 全体共通 横長画像 */
.Clinic, .Autumn, .restaurant, .wacafe, .Brunch, .Money {
  width: 350px;          /* 固定幅 */
  height: 250px;         /* 横長感を出す高さ */
  background-size: cover;   /* 横長を活かす */
  background-position: center;
  background-repeat: no-repeat;
  margin: 100px auto 0;     /* 上100px、左右中央 */
  cursor: pointer;
}

    .Brunch-m {
    width: 90%;            /* 画面幅に合わせる */
    max-width: 600px;      /* 最大幅600px */
    aspect-ratio: 957 / 639;
    height: auto;
    margin: 30px auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .restaurant-m {
    width: 90%;
    max-width: 600px;
    aspect-ratio: 911 / 607;
    height: auto;
    margin: 30px auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .wacafe-m {
    width: 90%;
    max-width: 600px;
    aspect-ratio: 906 / 505;
    height: auto;
    margin: 30px auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .mu {
  width: 100%;
  max-width: 350px;   /* PCでの最大幅 */
  height: auto;
  aspect-ratio: 2500 / 1667;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 50px auto 0px;
}

.english,.seminar2 {
  width: 100%;
  max-width: 350px;   /* PCでの最大幅 */
  height: auto;
  aspect-ratio: 2500 / 1667;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 50px auto 0px;
}

  .mu-m,.english-m,.seminar2-m{
    width: 90%;              /* 画面幅に合わせる */
    max-width: 500px;        /* 最大幅を600pxに制限 */
    height: auto;            /* 高さはアスペクト比に合わせて自動 */
    aspect-ratio: 550 / 400; /* 元画像の比率を保持 */
    margin: 50px auto;       /* 中央寄せ */
  }
  .description.banner,.description.menu,.dc{
   font-size:15px;
  }
  .dc{
    margin:10px auto;
  }

  #cafe .description {
  font-size: 15px;
  margin-bottom: 50px;
}


   .Btn-parents {
    left: 0;                     /* leftをリセット */
    margin: 50px;                 /* 端の余白を確保 */
    transform: translateX(30%);   /* 中央から少し右にずらす */
  }

  .Btn {
    font-size: 18px;              /* 小さめに調整 */
    padding: 0px 20px;
  }

  .yazirushi {
    width: 150px;                 /* 矢印も少し小さく */
    height: 40px;
    background-size: 150px auto;
  }

  .portfolio-text{
    width:90%;
    border-radius: 90% 90% 0 0 / 40% 40% 0 0;
  }

  /* フォントサイズ調整 */
  h3, .name2, .name3 {
    font-size: 20px;
  }

.name2, .name3 {
  margin-top: 40px !important;
}

  .container4 > .name2 {
    margin: 40px !important;
    margin-bottom: 10px !important;
  
}


.modal-text-box {
  width: 90%;
  max-width: 600px;
  background-color: #fbe5cb;
  padding: 40px 20px;
   border-top-left-radius: 300px 200px;  /* 横300px 縦150px */
  border-top-right-radius: 300px 200px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}



  /* モーダルのパディング調整 */
  .portfolio-text {
    padding: 40px 15px 20px;
      border-top-left-radius: 300px 200px;  /* 横300px 縦150px */
  border-top-right-radius: 300px 200px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
  }

.view-more{
  font-size: 20px;
  white-space: nowrap;
  left:5px;
}

  .About-me {
    background-color: #f9ecdc;
    border: 5px solid #bc8a69;
    border-radius: 50% 50% 0 0 / 20% 20% 0 0; /* 弧を緩やかに */
    padding: 40px 20px;    /* 内側余白を少し広めに */
    width: 100%;           /* 画面いっぱい */
    box-sizing: border-box;
    margin: 200px auto 0;  /* 上余白はそのまま、左右中央 */
  }


h2.contact[lang="en2"] {
  margin-top: 200px;
}

.Contact {
  width: 90%;              /* 固定幅 → 画面幅の90%に */
  max-width: 800px;        /* 大きい画面では最大800px */
  height: auto;            /* 高さは中身に合わせて自動 */
  background-color: #f9ecdc;
  border: 3px solid #d8c0a4;
  margin: 50px auto;
  text-align: center;
  padding: 50px 20px;      /* 内側の余白も画面に合わせて調整 */
  box-sizing: border-box;  /* padding込みで幅を計算 */

}

.btn-container1{
  display: flex;
  justify-content: center; /* 中央基準 */
  margin: 50px;
  border-radius: 9999px;
}


.btn-container2 {
  display: flex;
  justify-content: center; /* 中央基準 */
  margin: 50px;
   border-radius: 9999px;
}

.Contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 40px;       /* 横幅を控えめに */
  font-size: 20px;
  line-height: 50px;
  border-radius: 9999px;
  white-space: nowrap;      /* ボタンの最大幅を制限 */
  box-sizing: border-box; 
  width:1100px;
}


.Contact-button:hover {
  background-color: #a07d6b;
    color: White;
}

  .footer {
    padding: 20px 10px;       /* 左右の余白 */
    box-sizing: border-box;   /* パディング込みで幅計算 */
  }

  .footer .footer-inner {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end; /* 右寄せ */
    flex-wrap: wrap;           /* 横幅が狭くても折り返す */
  }

  .footer ul {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end; /* ul内も右寄せ */
  }

  .footer a {
    font-size: 14px;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .main-image {
    background-image: url("images/main-image-tablet.jpg"); /* タブレット用画像 */
    background-size: cover;
    background-position: center top;
    height: 400px; /* タブレット用に調整 */
  }





}