/*
Theme Name: montre21
Author: Yochi
Author URI: https://yochix2.com/
Description: Dan is a simple two-columns theme. On the front page, you can use a header image and multiple page sections. Features are, Font Awesome.
Version: 1001.1.7
Tested up to: 5.5
Requires at least: 4.7
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: license.txt
Text Domain: dan
Tags: two-columns, right-sidebar, accessibility-ready, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, blog

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

body {
  margin: 0;
  padding: 0;
  font-family: "Zen Old Mincho", serif;
}
a {transition: opacity 0.3s; }

a:hover {opacity: 0.5; /* ホバー時に透過 */}

/* ヘッダー外枠（PCで中央寄せ） */
.header-wrapper {
  max-width: 1300px;  /* 最大横幅 */
  margin: 0 auto;     /* 中央寄せ */
  width: 100%;        /* 画面いっぱいも可 */
}

/*============（レイアウト）=============*/
.ctn{max-width: 1200px; margin: 0 auto;}

@media (min-width: 601px) {.spon{display: none !important;}}
@media (max-width: 600px) {.pcon{display: none !important;}}

/*============（パーツ）=============*/
.section-title {
  position: relative;
  text-align: center;
	font-weight: normal;
	font-size: 2.5em;
  color: #fff;          /* 文字色 */
  margin: 40px 0;       /* 上下余白 */
}
.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30%;           /* 横線の長さ（調整可） */
  height: 1px;          /* 線の太さ */
  background: #ccc;     /* 線の色 */
}
.section-title::before {left: 0;}
.section-title::after {right: 0;}

@media (max-width: 600px) {
	.section-title {font-size: 1.5em;}
	.section-title::before,
	.section-title::after {
		width: 20%; 
	}
}
/* ========== cta01 ========== */
.cta01 {
  background: #999999;
  color: #fff;
  padding: 40px 20px;
}
.cta01__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* 見出し */
.cta01__eyebrow {
  letter-spacing: .12em;
  font-size: 14px;
  margin: 0 0 8px;
  opacity: .9;
}
.cta01__title {
  font-size: 2em;
  font-weight: normal;
  margin: 0 0 14px;
}
.cta01__lead {
  font-size: 13px;
  line-height: 1.9;
  opacity: .85;
  margin: 0 auto 22px;
  max-width: 780px;
}

/* ボタン（画像） */
.cta01__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cta01__btn img {
  display: block;
  max-width: 270px;   /* ボタン画像の最大幅 */
  height: auto;
  transition: opacity .3s;
}
.cta01__btn:hover img {
  opacity: .8;
}

/* オンライン */
.online{margin-top: 3%;}
.online img{margin: 0 auto; border: 1px solid #666; height: 135px;}
@media (max-width: 600px) {
.online img{ height: 144px; margin-top: 20px;}
}
/*//////// ヘッダー全体 /////////////////////////////////*/
header {
	background-color: rgba(255,255,255,0.7);
	padding: 10px 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
}
header .header-top{
	display: flex;
	justify-content: space-between; /* 左右に配置 */
}

/* 左側（ロゴ） */
header .logo {
  display: flex;
  align-items: center;
	padding: 0 0 0 10px;
}
header .logo img {
  height: 50px;/* ロゴの高さを調整 */
  width: auto;/* 縦横比維持 */
}

/* 右側（ボタン） */
/* 初期状態（PC表示） */
.nav-menu {
  display: flex;
  align-items: center;
	font-size: 13px;
}

.nav-menu ul {
  gap: 15px;
  list-style: none;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #333;
	display: block;
}
header .btn-area { display: flex; justify-content: flex-end; width: 100%;}
header .btn-area .btn { color: #fff; font-size: 13px; width: 170px; text-align: center; text-decoration: none; height: -webkit-fill-available; display: flex; justify-content: center; align-items: center;}
header .btn-area ul{margin: 10px 20px 10px 10px; padding: 0;}
header .btn-area li{list-style: none;} header .btn-area .entry{background-color: #9b8b7e;}
header .btn-area .reserve{background-color: #666;}
header .btn-area .soudan{background-color: #888;}
header .btn-area .gentei{background-color: #524a45;}
header .btn-area .btn:hover { }/* CSS Document */

/*============ nav（上から全幅ドロワー）=============*/
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;          /* 画面いっぱい */
  height: auto;
  background: rgba(51,51,51,1); /* #333を少し透過 */
  backdrop-filter: blur(2px);     /* お好みで */
  transform: translateY(-100%);   /* 画面外（上）に隠す */
  opacity: 0;                      /* フェードも同時に */
  transition: transform .35s ease, opacity .35s ease;
  z-index: 3;
  overflow: hidden;                /* ドロワー内のはみ出し防止 */
}
.open nav {
  transform: translateY(0);        /* スライドダウン */
  opacity: 1;
}

nav .inner {
  max-width: 1200px;               /* 中身の最大幅（任意） */
  margin: 0 auto;
  padding: 24px 20px 28px;
}

/* 2列グリッド配置 */
nav .inner ul {
  list-style: none;
  margin: 45px 0 0 0;
  padding: 0;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(2, 1fr));
  border-top: 1px solid rgba(255,255,255,0.28);
}
nav .inner ul li {
  margin: 0;                       /* ボーダーで区切らない版 */
}
nav .inner ul li a {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 0 10%;
  color: #fff;                     /* 文字白 */
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.28);
  transition: opacity .2s ease;
}
nav .inner ul li a:hover {
  opacity: 0.75;
}

/* 767px以下は1列 */
@media screen and (max-width: 767px) {
  nav .inner ul {
    grid-template-columns: 1fr;
  }
}

/*============ ハンバーガー（左上固定）=============*/
.toggle_btn {
  position: fixed;
  top: 18px;
  right: 20px;          /* 画面左側に配置 */
  width: 36px;
  height: 24px;
  display: block;
  cursor: pointer;
  z-index: 4;
  transition: transform .3s;
}
.toggle_btn span {
  position: absolute;
  left: 0;
  width: 36px;
  height: 2px;
  background-color: #333;
  transition: transform .35s ease, opacity .35s ease, background-color .35s ease;
  border-radius: 2px;
}
.toggle_btn span:nth-child(1) { top: 0; }
.toggle_btn span:nth-child(2) { top: 11px; }
.toggle_btn span:nth-child(3) { bottom: 0; }

/* open時はXに */
.open .toggle_btn span { background-color: #fff; }
.open .toggle_btn span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.open .toggle_btn span:nth-child(2) { opacity: 0; }
.open .toggle_btn span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

/*============ マスク（背景タップで閉じる）=============*/
#mask {
  display: none;
}
.open #mask {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 2;
  cursor: pointer;
  transition: opacity .35s ease;
}

/*============ main（余白）=============*/
main { padding: 72px 20px; }

/*////////navigete/////////////////////////////////*/
.navi ul{
	margin: 10px 0;
	padding: 0;
	display: flex;
	justify-content: space-between;
	border-left: 1px solid #333;
	border-right: 1px solid #333;
}
.navi li{
 	list-style: none;
 	
	border-right: 1px solid #333; /* 右だけ線 */
	width: 150px;
	text-align: center;
}
.navi li:last-child {border-right: none;}
.navi a{text-decoration: none; color: #000; display: block; font-size: 13px; padding: 5px 0;}
.navi a:hover{color: #EBEBEB; background-color: #666;}


/*== 01. MV section ===================/////////////////==-*/
/**Slide title**********************/
.mv {
  width: 100%;
  height: 1400px;
  overflow: hidden;
  position: relative;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1020px) {
  .mv {height: 65vh;}
}
/* slide-caption 全体 */
.slide-caption {
  position: absolute;
  top: 15%;
  left: 10%;
  color: #fff;
  z-index: 10;
  text-shadow:
    2px 2px 4px #152D62,
    -1px -1px 2px #152D62;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease-out, transform 1.2s ease-out;
}

/* アクティブスライドで表示 */
.swiper-slide-active .slide-caption {
  opacity: 1;
  transform: translateX(0);
}

/* メインタイトル */
.caption-main {
  font-size: 3.5em;
  font-weight: 300;
  line-height: 110%;
  margin-bottom: 0.3em;
}

/* 縦書き */
.tategaki{
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  margin-left: 10%;
}
.tategaki .caption-sub{margin-right: 10px;}

.tategaki02{
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  margin-left: 65%;
}
.tategaki02 .caption-sub{margin-right: 10px;}

/* サブタイトル */
.caption-sub {
  font-size: 1.1em;
  font-weight: 100;
  line-height: 1em;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .slide-caption {
    top: 20%;
    left: 5%;
  }

  .caption-main {
    font-size: 1.8em;
  }

  .tategaki .caption-sub {margin-right: 0 !important; margin-left: 0 !important;}
  .tategaki02{margin-left: 0;}
  .tategaki02 .caption-sub{margin-right: 70% !important; margin-left: 10% !important;}
  .caption-sub {
    font-size: 1.3em;
    font-size: 12px;
    margin-right: 24%;
    line-height: 1.5em;
  }
}



@media (min-width: 1024px){
	.toggle_btn{display: none;}
}


/*== 02. MV-obi section ===================/////////////////==-*/
.obi{background-color: #524a45; padding: 40px 0;}
.obi .ctn ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.obi .ctn li {
  flex: 0 0 calc(95% / 3);
  box-sizing: border-box;
  text-align: center;
}

.obi .ctn img {
  width: 100%;
  height: auto;
  display: block;
}


/* 真ん中の要素に左右の線を付ける */
.obi .ctn li:nth-child(2) {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  padding: 0 20px; /* 線と画像の間に余白 */
}

.obi h2{margin: 0;}


/*== 03. MARK section ===================/////////////////==-*/
.mark{
	background-image: url("img/bg01.jpg");
	background-size: cover;       /* 画面いっぱいにカバー */
	background-position: center;  /* 中央基準で表示 */
	padding: 5% 0;
}
.mark .ctn h3{text-align: center; margin-bottom: 3%;}
.mark h3 img{max-width: 50%; margin: 0 auto;}

/*== 04. About section ===================/////////////////==-*/
.mark-sec {background:#ebebeb; color:#333; }
.mark-sec__inner{
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "hero lead"
    "teatro room";
	text-align: center;
	align-items: start; 
}
img{ display:block; max-width:100%; height:auto; }

/* 上段 */
.mark-sec__hero{ grid-area: hero; margin:0; }
.mark-sec__lead{ grid-area: lead; align-self: center;}
.mark-sec__logo img{ max-width:360px; margin: 0 auto 5% auto;}
.mark-sec__desc{ margin:0; font-size:14px; line-height:1.7; }

/* 下段 */
.mark-sec__teatro{ grid-area: teatro; align-self: center;}
.mark-sec__teatro-head{ margin:0 0 14px; text-align:center; line-height:1.9; font-size:1.5em; line-height: 130%;}
.mark-sec__teatro-head img{margin: 0 auto; width: 390px; margin-top: 10px;}
.mark-sec__room{ grid-area: room; margin:0; }

/* YouTube（レスポンシブ） */
.mark-sec__yt {
  position: relative;
  width: 100%;
  max-width: 50%;   /* 最大幅500pxに制限 */
  aspect-ratio: 16/9;
  background: #000;
  margin: 0 auto;     /* 横中央に配置 */
}
.mark-sec__yt iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


.koku{margin: 3% 0;}
.koku img{ max-width: 65%; margin: 0 auto;}

/* 調整 */
@media (max-width:768px){
  .mark-sec__inner{
    grid-template-columns: 1fr;
    gap: 22px;
    /* 並び順をスマホ用に変更 */
    grid-template-areas:
      "hero"
      "lead"
      "room"     /* ← mark02 を上に */
      "teatro";  /* ← YouTube を下に */
  }
  .mark-sec__logo img{ max-width:260px; }
  .mark-sec__teatro-head{ font-size:14px; }
	.mark-sec__yt {max-width: 90%;}
  .mark-sec__teatro-head img{width: 300px;}
  
.koku{margin: 3% 0;}
.koku img{ max-width: 100%; margin: 0 auto 10% 0;}
}


/*== 05. Banner section ===================/////////////////==-*/
.bn{margin: 5% 0;}

/*== 06. NEWS section ===================/////////////////==-*/
.news {
  padding: 40px 20px;
  background: #fff;
  color: #333;
}
.news-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ボックス */
.news-box { flex: 1; }
.news-title {
  font-size: 18px;
  margin: 0 0 12px;
  font-weight: 600;
}
.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.news-list li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #333;
  font-size: 14px;
}
.news-list li:last-child { border-bottom: none; }
.news-list .date {
  flex: 0 0 90px;
  color: #333;
}
.news-list a {
  color: #333;
  text-decoration: none;
  transition: opacity .3s;
}
.news-list a:hover { opacity: 0.7; }

/* スマホ対応 */
@media (max-width: 768px) {
  .news-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/*== 07. Contentlink section ===================/////////////////==-*/
.ctlinks{margin: 5% 0;}
/* 背景ブロック */
.bg-link {
  position: relative;
  height: 260px;
  background: center/cover no-repeat;
  overflow: hidden;
}

/* a要素を全体に広げてクリックしやすくする */
.bg-link > .hover-slide {
  position: absolute;
  inset: 0;                         /* セクション全体をクリック範囲に */
  display: flex;
  align-items: center;              /* 縦中央 */
  padding-left: clamp(20px, 7vw, 120px);
  text-decoration: none;
  --shift: 10px;
  z-index: 1;
}

/* SVG画像（そのまま） */
.hover-slide .hs-target{
  display: block;
  width: 215px;
  max-width: 100%;
  height: auto;
  will-change: transform;
  transition: transform .35s ease;
  transform: translateZ(0);         /* 描画安定化のヒント */
}

/* ホバー＆フォーカスで右へ移動 */
.hover-slide:hover .hs-target,
.hover-slide:focus-visible .hs-target{
  transform: translateX(var(--shift));
}

/* フォーカスリング（キーボード操作で見える化） */
.hover-slide:focus-visible{
  outline: 2px solid rgba(255,255,255,.8);
  outline-offset: 6px;
}

/* オーバーレイ（既存のまま） */
.bg-link::before{
  content:"";
  position:absolute;
  inset:0;
  z-index: 0;
  pointer-events: none;
}

/* モーション軽減 */
@media (prefers-reduced-motion: reduce){
  .hover-slide .hs-target{ transition: none; }
}

/* スマホ調整 */
@media (max-width: 600px){
  .bg-link{ height: 130px; }
  .hover-slide .hs-target{ width: 150px; }
}

/*//////// フッター全体 /////////////////////////////////*/
footer{background-color: #dcd3cc; padding: 3% 0; margin-top: 5%;}

/* ===== CTA02 ===== */
.contact{
  /* 背景は任意の画像に差し替え可 */
  background: url("img/ctabg01.jpg") center/cover no-repeat;
  padding: 6%;
  color: #333;
  position: relative;
}
.contact-inner{
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.contact-head{
  margin: 0 0 14px;
  font-size: 2em;
  font-weight: normal;
  letter-spacing: .06em;
}

/* ボタン（画像） */
.contact-actions{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
/* 電話表示 */
.contact-tel{ line-height: 1.9; }
.contact-operator{margin: 10px 0 0 0;}
.contact-number{
  margin: 0;
  font-size: 2.7em;
  font-weight: 100;
  letter-spacing: .06em;
  line-height: 1em;
}
.contact-number a{
  color: inherit;
  text-decoration: none;
}
.contact-hours{
  margin: 6px 0 0;
  opacity: .85;
}

/* レスポンシブ */
@media (max-width: 768px){
  .contact{ padding: 28px 16px 36px; }
  .contact-btn img{ max-width: 220px; }
  .contact-number{ font-size: 26px; }
}
@media (max-width: 480px){
  .contact-btn img{ max-width: 100%; }
  .contact-number{ font-size: 2em; }
  .contact-head{font-size: 1.5em;}
}

/* ===== notes ===== */
.notes{margin: 5% 0;}
.notes ul {list-style: none; /* デフォルトの●を消す */ padding: 0;}
.notes li {
  padding-left: 1.2em;     /* 先頭分の余白を確保 */
  text-indent: -1.2em;     /* 1行目を引っ込める */
  margin: 10px 0;
}
.notes li::before {
  content: "※";/* マーカーを※に変更 */
  margin-right: 0.2em;     /* マークと本文の間隔 */
}
/*******************/
.notes01{margin: 5% 0;}
.notes01 ul {list-style: none; /* デフォルトの●を消す */ padding: 0;}
.notes01 li {
  padding-left: 1.2em;     /* 先頭分の余白を確保 */
  text-indent: -1.2em;     /* 1行目を引っ込める */
  margin: 10px 0;
}
.notes01 li::before {
  content: "●";/* マーカーを※に変更 */
  margin-right: 0.2em;     /* マークと本文の間隔 */
}
/*******************/
.notes02{margin: 5% 0;}
.notes02 ul {list-style: none; /* デフォルトの●を消す */ padding: 0;}

.notes02 li::before {
  content: "";/* マーカーを※に変更 */
  margin-right: 0.2em;     /* マークと本文の間隔 */
}

/* ===== Sponsors ===== */
.sponsors{
  background:#fff;                 /* ストリップの背景 */
  padding:10px 12px;
  border-top:1px solid #e5e5e5;    /* 任意の罫線 */
  border-bottom:1px solid #e5e5e5; /* 任意の罫線 */
}
.sponsors-inner{
  max-width:1200px;
  margin:0 auto;
}

/* Gridで自動折り返し */
.sponsor-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* 画面幅に応じて段組が増減 */
  gap:0;                  /* 行間・列間 */
  align-items:center;
}
.sponsor-list li{
  display:flex;
  align-items:center;
  justify-content:center;         /* ロゴをセル中央に */
}

/* 画像の高さを統一（比率は維持） */
.sponsor-list img{
  display:block;
  height:60px;/* SPの統一高さ */
  width:auto;
  max-width:100%;
  object-fit:contain;
}

/* PCで少し大きく */
@media (min-width: 768px){
  .sponsors{ padding:12px 16px; }
  .sponsor-list{ gap:0; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
  .sponsor-list img{ height:95px; }
}

/* 会社情報セクション */
.corp{
  color:#000;
  padding:24px 20px 0;
}
.corp-inner{
  max-width:1100px;
  margin:0 auto;
  text-align:center;
}

/* 見出しまわり */
.corp-cap{ 
  margin:0 0 8px; 
  font-size:12px;
  letter-spacing:.08em;
}
.corp-head{
  display:flex;
  gap:12px;
  justify-content:center;
  align-items:center;
  margin-bottom:6px;
}
.corp-logo{ width:300px; height:auto; display:block; }


/* 住所/TEL */
.corp-addr{
  margin:2px 0 16px;
  font-style:normal;
  font-size:12px;
  line-height:1.8;
  opacity:.9;
}

/* バナー2枚 */
.corp-banners{
  list-style:none;
  margin:0 auto;
  padding:0;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  width: 85%;
}
.corp-banners a{ display:block; }
.corp-banners img{
  display:block;
  width:450px;
  height:auto;                        /* 高さを揃える */
  object-fit:cover;                   /* 余白が出ないようトリミング */
  transition:opacity .3s;
  margin: 0 auto;
}
.corp-banners a:hover img{ opacity:.85; }

/* コピーライト */
.corp-copy{
  margin:3% 0 0 0;
  font-size:12px;
  letter-spacing:.06em;
  opacity:.9;
}

/* レスポンシブ */
@media (max-width: 768px){
  .corp-name{ font-size:20px; }
  .corp-banners{ grid-template-columns:1fr; gap:12px; width: 100%; margin: 10px 0 20px 0;}
  .corp-banners img{ height:74px; }
}

/**SP フッターボタン******************/
/* スマホ専用：固定ボトムナビ */
.fixed-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 9999;
  background-color: #fff;
}

.fixed-bottom-nav .nav-btn {
  flex: 1;
  text-align: center;
  padding: 20px 0;
  font-size: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: normal;
}

/* 個別カラー */
.fixed-bottom-nav .tel {
  background-color: #666; /* 青系（例：TEL） */
}
.fixed-bottom-nav .entry {
  background-color: #9b8b7e; /* ENTRY指定色 */
}
.fixed-bottom-nav .reserve {
  background-color: #8BA6B9; /* RESERVE指定色 */
}
.fixed-bottom-nav .map {
  background-color: #524a45; /* MAP色（自由に変更可） */
}

/* PCでは非表示 */
@media (min-width: 768px) {
  .fixed-bottom-nav {
    display: none;
  }
}


/*--------------------------
タブレット用（1020px以下） 
-------------------------- */
@media (max-width: 1020px) {
	/*============（レイアウト）=============*/
	.ctn{max-width: 90%; margin: 0 auto;}
	.header-wrapper {max-width: 100%; /* タブレットでは全幅 */}
	.btn-area{display: none !important;}
	.navi{display: none;}
	
	.mark h3 img{max-width: 100%; margin-bottom: 30px;}
	.cta01__title {font-size: 1.2em;}
	.mark-sec__lead{max-width: 90%; margin: 0 auto;}
}


/*--------------------------
スマホ用（600px以下）
-------------------------- */
@media (max-width: 600px) {
  .header-wrapper {
    max-width: 100%; /* スマホも全幅 */
  }
	header {
    flex-direction: column; /* 縦並び */
    align-items: flex-start; /* 左寄せ */
  }
	header .logo{padding: 7px 0 0 10px;}
	header .logo img {
    height: 30px;
  }

	header .btn-area {
	width: 100%;
    justify-content: flex-end;
  }
	.obi{padding: 0 0 20px 0;}
	.obi .ctn ul {display: block;}
	.obi .ctn li{padding: 30px;}
	.obi .ctn li:nth-child(2){border: none;}
	.obi h2{margin: -15px 0 0 0;}

  footer{margin: 10% 0 0 0; padding: 10% 0;}
  .contact-hours{font-size: 12px;}
  .notes{font-size: 12px;}
}

/*--------------------------
パスワード画面
-------------------------- */
/* 全体の余白と背景 */
.limited-guard {
  background:#3a3a3a; /* 背面の濃いグレー */
  padding: 60px 0 80px;
}
@media (max-width: 768px){
  .limited-guard { padding: 40px 0 60px; }
}

/* 中央パネル */
.limited-guard__panel{
  padding: 0 20px;
  text-align: center;
}
.limited-guard__lead{
  display:inline-block;
  background:#fff;
  padding: 18px 28px;
  margin: 0 auto -2% auto;
  width: 50%;
}
.limited-guard__box{
  background: #EDE1C8; /* ベージュ */
  padding: 5%;
  max-width: 1050px;
  margin: 0 auto;
}

/* フォーム */
.limited-guard__desc{
  margin: 0 0 18px;
  line-height: 1.9;
}
.limited-guard__form{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 640px;
  width: 100%;
  justify-content: center;
}
.limited-guard__label{
  white-space: nowrap;
  margin-right: 6px;
}
.limited-guard__input{
  flex: 1 1 360px;
  max-width: 420px;
  padding: 10px 12px;
  border: 1px solid #ccc;
  background: #fff;
}
.limited-guard__button{
  padding: 10px 18px;
  background: #333;
  color: #fff;
  border: 0;
  cursor: pointer;
}
.limited-guard__note{
  margin-top: 14px;
  font-size: .9em;
  color: #666;
}

/* 小さめ端末 */
@media (max-width: 680px){
  .limited-guard__lead{margin: 0 auto; width: auto;}
  .limited-guard__form{
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 10px;
  }
  .limited-guard__desc{font-size: 12px;}
  .limited-guard__label{
    grid-column: 1 / 3;
    justify-self: start;
    margin: 0 0 4px 4px;
  }
  .limited-guard__input{ grid-column: 1 / 2; }
  .limited-guard__button{ grid-column: 2 / 3; }
}
