* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Yu Mincho Light','YuMincho','游明朝体','Hiragino Sans',sans-serif;
  font-weight: 600;
  color: #333;
  line-height: 1.7;
  padding-bottom:80px;
}

/* ===== 共通 ===== */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.section {
  padding: 100px 0;
}

.cream {
  background: rgba(236, 212, 130, 0.116);
}

/* ===== ヘッダー ===== */
header {
  background: #fff;
  position: fixed;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

/* デフォルトは非表示 */
.header-contact{
  display:none;
}

.logo img {
  height: 40px;
}

/* ===== ナビメニュー ===== */
nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #333;
}

nav a:hover {
  color: #f28c38;
}

/* ===== スマホ用ナビ ===== */
.menu-toggle,
.slide-menu {
  display: none;
}

.slide-menu {
  position: absolute;
  top: 70px;
  width: 100%;
  background: #f28c38;
  justify-content: center;
  gap: 30px;
  padding: 10px;
  transform: translateY(-100%);
  opacity: 0;
  transition: .3s;
}

.slide-menu.active {
  transform: translateY(0);
  opacity: 1;
}

.slide-menu a {
  color: #fff;
}

/* ===== NEW OPEN アニメーション ===== */

.newopen-wrap{
  position:absolute;
  top:45%;
  left:60%;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  z-index:10;
}

/* 文字エリア */
.newopen-text{
  display:flex;
  overflow:hidden; /* ← 下から上に表示 */
}

/* 1文字 */
.newopen-text span{
  opacity:0;
  transform:translateY(30px); /* 下に隠す */
  color:#d4c800;
  font-size:45px;
  font-weight:700;
  letter-spacing:3px;
}

/* 線（下） */
.line{
  width:0px;
  height:2px;
  background:#d4c800;
  margin-top:0px;

  animation:lineGrow 0.8s ease forwards;
}

/* 線のあとに文字表示 */
.newopen-text span:nth-child(1){ animation:growUp 0.4s ease forwards 0.8s;}
.newopen-text span:nth-child(2){ animation:growUp 0.4s ease forwards 0.9s;}
.newopen-text span:nth-child(3){ animation:growUp 0.4s ease forwards 1.0s;}
.newopen-text span:nth-child(4){ animation:growUp 0.4s ease forwards 1.1s;}
.newopen-text span:nth-child(5){ animation:growUp 0.4s ease forwards 1.2s;}
.newopen-text span:nth-child(6){ animation:growUp 0.4s ease forwards 1.3s;}
.newopen-text span:nth-child(7){ animation:growUp 0.4s ease forwards 1.4s;}
.newopen-text span:nth-child(8){ animation:growUp 0.4s ease forwards 1.5s;}
.newopen-text span:nth-child(9){ animation:growUp 0.4s ease forwards 1.6s;}
.newopen-text span:nth-child(10){ animation:growUp 0.4s ease forwards 1.7s;}

/* アニメーション */
@keyframes lineGrow{
  to{
    width:500px;
  }
}

@keyframes growUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ===== トップ画像上テキスト ===== */
.topmessage {
  background: url("images/house2.png") center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
}

.topmessage-text {
  background: rgba(255,255,255,0.65);
  padding: 70px 70px;
  max-width: 520px;
  margin-left: 10%;

  border-radius: 220px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  box-shadow: 0 15px 40px rgba(0,0,0,0.08);

  /* テキスト中央揃え */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.topmessage h1 {
  font-size: 36px;
  margin-bottom: 5px;
}

.sp-br {
  display: none;
}

.service-bar{
  text-align:center;
  font-size:18px;
  color:#d17730;

  padding:10px 0;
  margin:20px 0;

  position:relative;
  letter-spacing:2px;
}

/* 上の線 */
.service-bar::before,
.service-bar::after{
  content:"";
  position:absolute;

  left:0;
  right:0;
  margin:auto;

  width:50%;
  height:1px;              
  background-color:#696969;

  opacity:1;
}

/* 上ライン */
.service-bar::before{
  top:0;
}

/* 下ライン */
.service-bar::after{
  bottom:0;
}

/* ===== セクションタイトル ===== */
.section-title{
  text-align:center;
  font-size:26px;
  margin:30px auto 40px;
  letter-spacing:4px;
  font-weight:600;
  position:relative;
  z-index:1;
}

/* 丸背景（白背景用） */
.section-title::before{
  content:"";
  position:absolute;
  width:120px;
  height:120px;
  background:rgba(242, 199, 56, 0.15);
  border-radius:50%;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  z-index:-1;
}

/* セクションタイトル（クリーム用） */
.section.cream .section-title{
  position:relative;
  text-align:center;
  margin-bottom:60px;
}

/* 丸背景（クリーム背景用） */
.section.cream .section-title::before{
  content:"";
  position:absolute;
  width:120px;
  height:120px;
  background:rgba(242, 161, 56, 0.15);
  border-radius:50%;

  top:50%;
  left:50%;
  transform:translate(-50%,-50%);

  z-index:-1 !important;
}

/* ===== 施設名・概要 ===== */
.intro{
  background:#fff;
}

.intro-box{
  max-width:800px;
  margin:0 auto;
  line-height:2;
  font-size:15px;
  color:#444;
}

/* リード文 */
.intro-lead{
  text-align:center;
  font-size:18px;
  font-weight:600;
  margin-bottom:25px;
  color:#b16128;
  letter-spacing:1px;
}

/* 段落（中央揃え） */
.intro-center{
  text-align:center;
  margin-bottom:18px;
}

/* 段落 */
.intro-box p{
  margin-bottom:18px;
}

/* 施設名用 */
.facility-name{
  display:block;
  text-align:center;
  font-size:45px;
  font-weight:700;
  color:#f28c38;
  padding-bottom:15px;
  border-bottom:2px solid rgba(242,140,56,0.3);
  margin-bottom:15px;

/* 動き */
  opacity:0;
  transform:translateY(20px);
  animation:fadeUp 1.2s ease forwards;
  animation-delay:0.5s;
}

/* 施設名（小さめ） */
.facility-sub{
  font-size:30px;
  font-weight:600;
}

/* 強調 */
.strong{
  text-align:center;
  font-weight:700;
  color:#b16128;
}

/* アクセント */
.accent{
  font-size:17px;
  color:#f28c38;
  font-weight:600;
}

/* ===== グリッド ===== */
.intro-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  margin-top:30px;
}

/* ===== クローバーカード ===== */
.intro-card{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  width:80%;
  margin:0 auto;
}

/* 背景画像 */
.intro-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* テキスト */
.intro-card-text{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  color:#333;

  padding:15px 12px;
  border-radius:12px;
  width:80%;
}

/* タイトル */
.intro-card-text h4{
  font-size:20px;
  color:#f28c38;
  margin-top:8px;
  margin-bottom:4px;
  border-bottom:2px solid rgba(242,140,56,0.4);
  display:inline-block;
}

/* 説明 */
.intro-card-text p{
  font-size:15px;
  line-height:2;
}
/* 説明（小さめ） */
.intro-card-minitext{
  font-size:12px;
  line-height:1.5;
  display:block;
  margin-top:2px;
  margin-bottom:5px;
}

/* 最後の文章 */
.intro-last{
  text-align:center;
  margin-top:30px;
  font-size:16px;
  line-height:1.8;
}

/* ===== 暮らしの魅力 ===== */
.appeal{
  padding:50px 0;
  background:#fff;
}

/* 1ブロック */
.appeal-item{
  display:flex;
  align-items:center;
  gap:40px;

  max-width:1000px;
  margin:0 auto 60px;
}

/* 逆配置 */
.appeal-item.reverse{
  flex-direction:row-reverse;
}

/* 画像 */
.appeal-img img{
  width:100%;
  max-width:520px;
  border-radius:12px;
}

/* 動画 */
.appeal-video{
  flex:1;
}

.appeal-video video{
  width:100%;
  max-width:360px;
  border-radius:15px;
  display:block;
}

/* テキスト */
.appeal-text{
  flex:1;
}
.appeal-text p{
  text-align:center;
  max-width:420px;
  margin:0 auto;
}

/* アピール見出し */
.appeal-heading{
  position:relative;
  padding-bottom:0;
  font-size:28px;
  text-align:center;
  margin-bottom:60px;

  color:#f28c38;
  letter-spacing:1px;
}

/* 英字 */
.appeal-heading::before{
  content:attr(data-en);
  display:block;

  color:rgba(242, 177, 56, 0.664);
  font-size:16px;
  font-style:italic;
  letter-spacing:2px;

  margin-bottom:5px;
}

/* 斜めライン */
.appeal-heading::after{
  content:"";
  position:absolute;

  top:100%;
  left:50%;
  transform:translateX(-50%) rotate(25deg);

  width:1px;
  height:40px;
  background:rgba(242, 177, 56, 0.664);
  margin-top:10px;
}

/* ===== 施設紹介 ===== */

/* ===== スライダー全体 ===== */

.card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.card{
  background:#fff;
  border-radius:15px;
  padding:20px;
}

/* 施設案内タイトル */
.card h3{
  text-align:center;

  font-size:22px;
  font-weight:700;

  color:#333;

  margin-bottom:25px;

  position:relative;
}

/* 下ライン */
.card h3::after{
  content:"";

  display:block;

  width:50px;
  height:2px;

  background:#f28c38;

  margin:12px auto 0;

  border-radius:10px;
}

/* スライダー */
.slider{
  width:100%;
  overflow:hidden;
  position:relative;
}

/* メイン画像 */
.slides{
  display:flex;
  transition:.4s ease;
  width:100%;
}

.slide-item{
  min-width:100%;
}

.slide-item img{
  width:100%;
  display:block;
  border-radius:10px;
}

/* ===== PC用ガイド ===== */

.slider{
  position:relative;
}

.slider-guide{
  position:absolute;

  top:75%;
  left:75%;

  transform:translate(-50%,-50%);

  pointer-events:none;

  opacity:1;

  transition:.4s;

  z-index:5;

}

/* ガイド画像 */
.slider-guide img{
  width:120px;

  height:auto;

  opacity:.9;

  filter:
    drop-shadow(0 3px 8px rgba(0,0,0,0.2));
}

/* 消える */
.slider-guide.hide{
  opacity:0;
}


/* ===== 画像下ドット ===== */

.dots{
  display:flex;
  justify-content:center;
  align-items:center;

  gap:10px;

  margin-top:18px;
}

.dot{
  width:12px;
  height:12px;

  border-radius:50%;

  background:#d8d8d8;

  border:none;

  padding:0;

  cursor:pointer;

  transition:.3s;
}

.dot.active{
  background:#f28c38;
  transform:scale(1.15);
}

.section {
  padding: 50px 0;
}

/* 1枚セット */
.slide-item{
  width:100%;
  flex-shrink:0;
}

/* 説明 */
.slide-text{
  margin-top:10px;

  font-size:14px;
  line-height:1.8;

  text-align:center;

  color:#666;
}

/* 施設案内下 */
.facility-note{
  text-align:center;
  margin-top:40px;
}

.note-text{
  font-size:19px;
  color:#333;
  margin-bottom:20px;

  display:inline-block;
  padding-bottom:6px;
  border-bottom:2px solid #f28c38;
}

/* ===== ボタン ===== */
.btn {
  display: inline-block;
  background: #f28c38;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  margin-top:10px;

}

.btn:hover {
  background: #b3541e;
}

/* ===== お食事メニュー ===== */

.meal-area{
  margin-top:50px;
}

/* 開閉ボタン */
.meal-toggle{
  width:100%;
  background:#fff;
  font-family:inherit;

  border:none;
  border-top:1px solid #ddd;
  border-bottom:1px solid #ddd;

  padding:18px 10px;

  font-size:20px;
  font-weight:600;
  color:#333;

  cursor:pointer;

  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;

  transition:.3s;
}

/* ＋ */
.meal-toggle span{
  font-size:26px;
  color:#f28c38;
  transition:.3s;
}

/* 開いた時 */
.meal-toggle.active span{
  transform:rotate(45deg);
}

/* 中身 */
.meal-content{
  max-height:0;
  overflow:hidden;

  transition:max-height .5s ease;

  background:#fafafa;
}

/* 開いた状態 */
.meal-content.open{
  max-height:80vh;

  overflow-y:auto;

  padding:40px 20px;
}

/* 中のテキスト */
.meal-note{
  text-align:center;
  font-size:14px;
  color:#777;

  margin-bottom:10px;
}

/* 横並び */
.meal-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;

  padding:35px 0;
  border-bottom:1px dashed #d8d8d8;
}
.meal-grid:last-child{
  border-bottom:none;
  padding-bottom:0;
}

/* カード */
.meal-card{
  background:#fff;
  padding:18px;

  border-radius:12px;

  box-shadow:0 5px 15px rgba(0,0,0,0.05);

  text-align:center;
}

/* 画像 */
.meal-card img{
  width:100%;
  object-fit:cover;

  border-radius:10px;
  margin-bottom:15px;
}

/* タイトル */
.meal-card h4{
  font-size:22px;
  color:#f28c38;

  margin-bottom:10px;
}

/* テキスト */
.meal-card p{
  font-size:15px;
  line-height:1.9;
  color:#555;
}

/* ===== インスタ紹介 ===== */

.insta-text{
  display:block;
  width:100vw;

  margin:30px calc(50% - 50vw) 20px;

  background:rgba(242,140,56,0.3);
  color:#333;

  font-size:18px;
  padding:12px 10px;

  text-align:center;
  letter-spacing:1px;
  }

.insta-wrap {
	display: flex;
	justify-content: center;
	gap: 40px;
}

.insta-box {
	text-align: center;
}

.insta-box img {
  width: 200px;
  max-width: 100%;
	height: auto;
	display: block;
  margin-top: 10px;
	margin-bottom: -10px;
}

/* ===== 料金セクション ===== */

.price-box{
  background:#fff;
  border-radius:12px;
  padding:30px;
  max-width:500px;
  margin:0 auto;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
  text-align:center;
}

.price-total{
  font-size:18px;
  margin-bottom:20px;
  color:#666;
}

.price-total span{
  font-size:32px;
  color:#f28c38;
  font-weight:bold;
}

.price-list{
  list-style:none;
  padding:0;
  margin-bottom:20px;
}

.price-list li{
  font-size:15px;
  padding:6px 0;
  border-bottom:1px dashed #ddd;
}

.price-note{
  font-size:13px;
  color:#666;
  line-height:1.6;
}

.price-note2{
  font-size:14px;
  color:#333;
  line-height:1.6;
}

/* 見出し */
.price-subtitle{
  text-align:center;
  font-size:20px;
  margin:60px 0 20px;
  color:#f28c38;
  letter-spacing:2px;
}

/* ===== トライアル料金 ===== */

/* ボックス */
.trial-box{
  background:rgba(236, 212, 130, 0.116);
  padding:30px;
  border-radius:12px;
  max-width:500px;
  margin:0 auto;

  box-shadow:0 5px 15px rgba(0,0,0,0.05);
  text-align:center;
}

/* トライアルタイトル */
.trial-title{
  text-align:center;
  font-size:25px;
  font-weight:700;
  color:#eb3717;

  margin:0 auto 18px;
  letter-spacing:2px;

  display:inline-block;
  padding:6px 14px;

  border-radius:20px;
}

/* 説明 */
.trial-note{
  font-size:14px;
  color:#666;
  margin-bottom:15px;
}

/* リスト */
.trial-list{
  list-style:none;
  padding:0;
  margin-bottom:20px;
}

.trial-list li{
  font-size:15px;
  padding:6px 0;
  border-bottom:1px dashed #ddd;
}

/* キャンペーン */
.trial-campaign{
  font-size:18px;
  margin-top:15px;
}

.trial-campaign span{
  color:#eb3717;
  font-weight:bold;
}

.trial-kengaku {
  color:#f17815;
  font-weight:bold;
  font-size:18px;
  margin-top:15px;
}

/* 問い合わせボタン */
.trial-btn{
  display:block;
  width:100%;
  max-width:320px;

  margin:25px auto 0;

  padding:14px 20px;

  background:#f28c38;
  color:#fff;

  text-align:center;
  text-decoration:none;
  font-size:15px;
  font-weight:600;

  border-radius:50px;

  transition:.3s;
}

/* ホバー */
.trial-btn:hover{
  background:#e6b04c;
}

/* ===== アクセス情報 ===== */

.access-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.access-info p {
  margin-bottom: 10px;
}

.access-detail {
  margin-top: 30px;
}

.access-detail h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #f28c38;
  letter-spacing: 1px;
}

.access-detail ul {
  list-style: none;
  padding: 0;
}

.access-detail li {
  font-size: 15px;
  margin-bottom: 6px;
  padding-left: 20px;
  position: relative;
  color: #444;
  line-height: 1.6;
}

.access-detail li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #f28c38;
  font-size: 8px;
  top: 5px;
}

.access-box { grid-template-columns: 1fr; 
}

/* ===== 問い合わせ方法 ===== */

.contact { 
  text-align: center; background: #fff; 
}
 .contact-label { font-size: 14px;
 margin-top: 20px;
 margin-bottom: -20px;
 color: #666; letter-spacing: 1px; 
 }
  .contact .tel{ font-size: 24px; margin-top: 20px; color: #d17730; 
 }

/* ===== お問い合わせフォーム ===== */

.contact-lead{
  text-align:center;
  color:#666;

  margin-bottom:40px;

  line-height:2;
}

/* フォーム全体 */
.contact-form{
  max-width:700px;
  margin:0 auto;
}

/* 各項目 */
.form-group{
  margin-bottom:25px;
}

/* ラベル */
.form-group label{
  display:block;

  margin-bottom:10px;

  font-weight:700;
  color:#333;

  font-size:16px;
}

/* 必須 */
.form-group label span{
  color:#eb3717;

  font-size:13px;

  margin-left:8px;
}

/* 入力欄 */
.contact-form input,
.contact-form textarea{
  width:100%;

  padding:14px 16px;

  border:1px solid #ddd;
  border-radius:12px;

  font-size:15px;

  background:#fff;

  box-sizing:border-box;

  transition:.3s;
}

/* フォーカス */
.contact-form input:focus,
.contact-form textarea:focus{
  border-color:#f28c38;

  outline:none;

  box-shadow:
    0 0 0 4px rgba(242,140,56,0.15);
}

/* テキストエリア */
.contact-form textarea{
  resize:vertical;
}

/* reCAPTCHA */
.form-recaptcha{
  margin:30px 0;
}

/* 送信ボタン */
.contact-submit{
  display:block;

  width:100%;

  border:none;

  background:#f28c38;
  color:#fff;

  padding:16px;

  border-radius:50px;

  font-size:16px;
  font-weight:700;

  cursor:pointer;

  transition:.3s;
}

/* ホバー */
.contact-submit:hover{
  background:#e6b04c;
  transform:translateY(-2px);
}

/* ===== 返信方法 ===== */

.radio-group{
  display:flex;

  justify-content:center;

  gap:20px;

  margin-top:10px;

  flex-wrap:wrap;
}

.radio-item{
  display:flex;
  align-items:center;
  gap:8px;

  font-size:15px;

  cursor:pointer;

  color:#fff;
}

.radio-item input{
  width:18px;
  height:18px;

  accent-color:#f28c38;
}

/* ===== 問い合わせメッセージ ===== */
.contact-message{
  margin-top:40px;
  text-align:center;
}

/* 最後のお礼 */
.contact-thanks{
  font-size:16px;
  margin-bottom:15px;
}

/* リード文 */
.contact-lead{
  font-size:18px;
  font-weight:600;
  color:#f28c38;
  margin-top:15px;
  margin-bottom:20px;
  line-height:1.8;
}

/* 手段リスト */
.contact-list{
  list-style:none;
  padding:0;
  margin:20px auto;
  width:fit-content;
}

.contact-list li{
  display:flex;
  align-items:center;
  gap:5px;
  margin:8px 0;
  font-size:15px;
  position:relative;
  padding-left:18px;
  text-align:left;
}

/* ● */
.contact-list li::before{
  content:"●";
  position:absolute;
  left:0;
  color:#e0a96d;
  font-size:7px;
  top:5px;
}

/* 最後 */
.contact-end{
  margin-top:25px;
  font-size:16px;
  font-weight:600;
}

/* ===== 改行飾り ===== */
.divider-line{
  width:1px;
  height:30px;
  background:#555555;
  margin:20px auto;
  opacity:0.4;
}

/* ===== 体験入居キャンペーン（固定） ===== */
.trial-banner-fixed{
  position:fixed;
  bottom:0;
  left:0;

  width:100%;
  z-index:9999;

  background:#f28c38;
  color:#fff;

  text-align:center;
  padding:12px 10px;

  font-size:19px;
  font-weight:600;
  letter-spacing:1px;

  text-decoration:none;

  box-shadow:0 -2px 10px rgba(0,0,0,0.15);
}

/* 下のテキスト */
.trial-banner-fixed span{
  display:block;
  font-size:16px;
  margin-top:2px;
  opacity:0.9;
}

/* ホバー */
.trial-banner-fixed:hover{
  background:#e6b04c;
}

/* ===== 固定お問い合わせ ===== */

.contact-fixed{
  position:fixed;

  right:20px;
  bottom:120px;

  z-index:3000;

  width:90px;
  height:90px;

  background:#e6b04c;
  color:#fff;

  text-decoration:none;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  text-align:center;

  font-size:14px;
  font-weight:700;
  line-height:1.4;

  box-shadow:0 5px 15px rgba(0,0,0,0.15);

  transition:.3s;
}

/* ホバー */
.contact-fixed:hover{
  background:#f28c38;
  transform:translateY(-2px);
}

/* 最初は非表示 */
.contact-fixed{
  opacity:0;
  visibility:hidden;

  transform:translateY(20px);

  transition:
    opacity .3s,
    transform .3s,
    visibility .3s;
}

/* スクロール後に表示 */
.contact-fixed.show{
  opacity:1;
  visibility:visible;

  transform:translateY(0);
}

/* ===== フッター ===== */
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(10px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.contact-fixed.show{
  opacity:1 !important;
  visibility:visible !important;
}

/* ===== レスポンシブ ===== */
@media(max-width:768px){

  nav { display: none; }

  .menu-toggle{
    display:block;
    position:absolute;
    right:20px;
    top:20px;
    font-size:22px;
    cursor:pointer;
    z-index:2000;
  }

/* メニュー */
  .slide-menu{
  display:none;

  position:absolute;
  top:70px;
  left:0;

  width:100%;

  background:#f28c38;

  justify-content:center;
  gap:30px;

  padding:15px;

  z-index:1500;
  }

/* 開いた時 */
  .slide-menu.active{
  display:flex;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

/* トップメッセージ */
  .topmessage-text {
    margin: auto;
    padding: 30px;
    border-radius: 160px;
  }

  .topmessage h1 {
    font-size: 24px;
    margin-bottom: 5px;
  }

/* メイン施設名 */
  .facility-name{
    font-size:30px;
  }

  .facility-sub{
    font-size:20px;
  }

/* アピメゾンについて */
  .intro-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .intro-card{
    aspect-ratio:auto;
    height:auto;
  }

  .intro-card img{
    height:100%;
    object-fit:cover;
  }

/* 暮らしの魅力 */
  .appeal-text h3::before{
    width:50px;
    height:50px;
  }

  .appeal-item{
    display:flex;
    flex-direction:column;
    text-align:center;
  }

  .appeal-item.reverse{
    flex-direction:column;
  }

  .appeal-text{
    margin-bottom:10px;
    order:1;
  }

  .appeal-heading{
    font-size:20px;
    line-height:1.4;
  }

  .appeal-img{
    order:2;
  }

  .appeal-heading::before{
    text-align:center;
  }

/* 動画 */
  .appeal-video{
    order:2;
  }

  .appeal-text{
    order:1;
  }

/* スマホのみ改行 */
  .sp-br {
    display: block;
  }

/* NEW OPEN */
  .newopen-wrap {
    top: 13%;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
  }

  .newopen-text span {
    font-size: 28px;
  }

/* 縦線飾り */
  .line {
    animation: lineGrowSP 0.8s forwards;
  }

  .note-text{
    font-size:15px;
    color:#333;
    margin-bottom:20px;

    display:inline-block;
    padding-bottom:6px;
    border-bottom:2px solid #f28c38;
  }

/* トライアル料金 */
  .trial-box{
    margin:20px auto;
    width:90%;
  }

/* トライアルバナー */
  .trial-banner-fixed{
    font-size:18px;
    padding:7px 10px;
    line-height:1.4;
  }

  .trial-banner-fixed span{
    display:inline;
    font-size:14px;
    margin-left:6px;
  }

  body{
    padding-bottom:50px;
  }

  .trial-title{
    font-size:20px;
    padding:5px 12px;
  }

/* ===== スマホ施設案内 ===== */

.slider{
  overflow:hidden;
}

.slides img{
  width:100%;
  flex-shrink:0;

  border-radius:10px;
}

/* クリック画像スマホ非表示 */
  .slider-guide{
    display:none;
  }

/* インスタ紹介 */
  .insta-box img {
    width: 200px;
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 20px;
    margin-bottom: -30px;
  }

/* お食事メニュー */
.meal-grid{
  grid-template-columns:1fr;
}

.meal-card img{
  height:auto;
}

.meal-toggle{
  font-size:17px;
}

/* PC用問い合わせボタン非表示 */
.contact-fixed{
  display:none;
}

/* ヘッダー問い合わせ */
.header-contact{
  display:flex;

  position:absolute;
  right:55px;
  top:18px;

  background:#f28c38;
  color:#fff;

  text-decoration:none;

  font-size:14px;
  font-weight:700;

  padding:8px 15px;

  border-radius:30px;

  z-index:2500;
}

/* 固定バナーで隠れないように */
  footer{
    margin-bottom:50px;
  }

  .insta-btn {
    padding: 0.6rem 1.5rem;
    font-size: 14px;
  }

  .facility-name{
    font-size:25px;
    animation:fadeUp 1s ease forwards;
    opacity:0;
  }
}

/* スマホ用アニメーション */
  @keyframes lineGrowSP {
    to { width: 100%; }
  }