/* ===== Fixed Header ===== */

/* 元テーマの旧ヘッダー・ハンバーガー・左メニューを非表示 */
#container > .sp_header,
#container > .menubar,
body > .sp_header,
.gnav,
#fade ~ .sp_header,
#leftbar,
.openbtn,
#g-nav,
.blk_cover,
.blur_cover {
  display: none !important;
}

/* 固定ヘッダー本体 */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* ヘッダー分の余白を確保（#fadeはローディング全画面なので除外） */
#container {
  margin-top: 56px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
}

.header-logo {
  margin: 0;
  line-height: 1;
  flex-shrink: 0;
  width: 30%;
}

.header-logo img {
  height: 36px;
  width: auto;
}

/* PC Navigation */
.header-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 42px;
  align-items: center;
}

.header-nav a {
  color: #333;
  text-decoration: none;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.1em;
  transition: color 0.3s;
  white-space: nowrap;
}

.header-nav a:hover {
  color: #8B7355;
}

/* SNS Links (PC) */
.header-sns {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-shrink: 0;
}

.header-sns img {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.header-sns img:hover {
  opacity: 1;
}

/* Hamburger Menu（PC/SP共通） */
.hamburger {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
  padding: 0;
  flex-shrink: 0;
  margin-left: 6px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #333;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.is-active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* Drawer Nav（PC/SP共通） */
.drawer-nav {
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  max-width: 300px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  padding: 80px 30px 30px;
  transition: right 0.3s ease;
  z-index: 999;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.drawer-nav.is-open {
  right: 0;
}

.drawer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.drawer-nav li {
  border-bottom: 1px solid #eee;
}

.drawer-nav a {
  display: block;
  padding: 16px 0;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.05em;
}

/* ドロワー: コンタクト・カレンダー（小さめ表示） */
.drawer-nav li.drawer-sub {
  border-bottom: 1px solid #f0f0f0;
}

.drawer-nav li.drawer-sub a {
  font-size: 13px;
  padding: 12px 0;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
}

.drawer-nav li.drawer-sub .drawer-icon {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

.drawer-nav li.drawer-sub .drawer-icon-cal {
  font-size: 14px;
  line-height: 1;
}

.drawer-sns {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.drawer-sns img {
  width: 24px;
  height: 24px;
}

/* Drawer Overlay */
.drawer-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 998;
}

.drawer-overlay.is-open {
  display: block;
}

/* ===== セクション見出し（テキストベース） ===== */
.section-heading {
  text-align: center;
  border-bottom: 1px solid #aaa;
  padding-bottom: 22px;
}

.section-heading .en {
  display: block;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #333;
  margin-bottom: 4px;
}

.section-heading .ja {
  display: block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #888;
}

/* ===== セクション背景色（薄グレー / 白 交互） ===== */
#about {
  background-color: #F7F7F5;
}
#post {
  background-color: #fff !important;
}
#facility {
  background-color: #F7F7F5 !important;
}
#experience {
  background-color: #fff;
  padding-top: 70px;
  padding-bottom: 70px;
}
#access {
  background-color: #F7F7F5;
}
#reboot {
  background-color: #fff;
}
#tips {
  background-color: #F7F7F5 !important;
}
#contact {
  background-color: #F7F7F5;
  padding-top: 70px;
  padding-bottom: 70px;
}

/* ===== About セクション整形（Backgroundと同じ構成） ===== */
/* About / Experience 共通レイアウト */
#about .leadbox,
#experience .leadbox {
  width: 750px;
  margin: 60px auto 0;
  text-align: center;
}

#about .leadbox .about-layout,
#experience .leadbox .about-layout {
  width: 100%;
  display: flex;
  justify-content: space-between;
  text-align: left;
}

#about .about-img,
#experience .about-img {
  width: 300px;
  flex-shrink: 0;
}

#about .about-img img,
#experience .about-img img {
  width: 100%;
  height: auto;
}

#experience .about-img .ph-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}

#about .leadbox .about-layout .txtbox,
#experience .leadbox .about-layout .txtbox {
  width: 300px !important;
  display: block !important;
  text-align: left;
}

#about .leadbox .about-layout .txtbox p,
#experience .leadbox .about-layout .txtbox p {
  width: 100% !important;
  font-weight: 300;
}

.about-info {
  border-top: none !important;
}

#about .leadbox .txtbox p + dl {
  border-top: none;
}

.about-lead {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: #333;
  margin-bottom: 16px;
}

.about-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}

.about-info {
  border-top: 1px solid #ddd;
  padding-top: 16px;
  margin: 0;
}

.about-info div {
  display: flex;
  gap: 12px;
  margin-bottom: 6px;
}

.about-info dt {
  font-size: 13px;
  font-weight: 500;
  color: #555;
  min-width: 5em;
}

.about-info dd {
  font-size: 13px;
  color: #555;
  margin: 0;
}

/* ===== 記事サムネ: TOMOS/記者名の位置を画像下端に固定 ===== */
.post_inner .upper {
  position: absolute !important;
  top: 167px !important;
  left: 5%;
  width: 90%;
}

/* ===== ローディング画面（ファーストビュー確保） ===== */
#fade {
  width: 100%;
  height: 100vh;
  display: block;
  background: #D1722A;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
}

/* ===== WordPress Admin Bar 非表示 ===== */
#wpadminbar {
  display: none !important;
}
html.admin-bar {
  margin-top: 0 !important;
}

/* ===== Calendar Modal ===== */
.cal-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
}

.cal-modal-overlay.is-open {
  display: flex;
}

.cal-modal {
  background: #fff;
  border-radius: 12px;
  width: 90vw;
  max-width: 800px;
  height: 80vh;
  max-height: 700px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.cal-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
  background: #fafafa;
}

.cal-modal-tabs {
  display: flex;
  gap: 4px;
}

.cal-tab {
  padding: 8px 16px;
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 400;
  color: #888;
  cursor: pointer;
  border-radius: 20px;
  transition: all 0.2s;
}

.cal-tab:hover {
  background: #f0f0f0;
  color: #555;
}

.cal-tab.is-active {
  background: #D1722A;
  color: #fff;
  font-weight: 500;
}

.cal-tab.is-active[data-cal="kitchen"] {
  background: #009688;
}

.cal-tab.is-active[data-cal="cowork"] {
  background: #039be5;
}

.cal-modal-close {
  border: none;
  background: none;
  font-size: 28px;
  line-height: 1;
  color: #999;
  cursor: pointer;
  padding: 0 4px;
  transition: color 0.2s;
}

.cal-modal-close:hover {
  color: #333;
}

.cal-modal-body {
  flex: 1;
  overflow: hidden;
}

.cal-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media screen and (max-width: 768px) {
  .cal-modal {
    width: 95vw;
    height: 85vh;
    border-radius: 8px;
  }
  .cal-modal-tabs {
    flex-wrap: wrap;
    gap: 4px;
  }
  .cal-tab {
    font-size: 12px;
    padding: 6px 10px;
  }
}

/* ===== reCAPTCHA バッジ非表示 ===== */
.grecaptcha-badge {
  visibility: hidden !important;
}

/* ===== 施設詳細 ===== */
.facility-details {
  max-width: 750px;
  margin: 60px auto 0;
  padding: 0 20px;
}

/* 大サイズ（TOMOS・コワーキング） */
.facility-detail-lg {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  align-items: flex-start;
}

.facility-detail-lg:nth-child(even) {
  flex-direction: row-reverse;
}

.facility-detail-img {
  width: 50%;
  flex-shrink: 0;
}

.facility-detail-img img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.facility-detail-body {
  flex: 1;
}

.facility-detail-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.facility-detail-text {
  font-size: 14px;
  font-weight: 300;
  color: #555;
  line-height: 1.8;
}

.facility-detail-logo {
  height: 2.2em;
  display: block;
  margin-bottom: 4px;
}

.facility-detail-sub {
  font-size: 13px;
  font-weight: 400;
  color: #888;
}

/* TOMOS写真を正方形に */
.facility-detail-lg:first-child .facility-detail-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
}

.facility-detail-lg:first-child .facility-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-detail-spec {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: #888;
}

.facility-detail-calendar {
  margin-top: 20px;
}

/* 小サイズグリッド */
.facility-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 24px;
  margin-top: 50px;
}

.facility-detail-sm-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  background: #eee;
}

.facility-detail-sm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.facility-detail-sm-img .ph-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 13px;
}

.facility-detail-sm-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-top: 10px;
  margin-bottom: 6px;
}

.facility-detail-sm-text {
  font-size: 13px;
  font-weight: 300;
  color: #555;
  line-height: 1.7;
}

/* ===== News Instagram スライダー ===== */
.news-slider-wrap {
  max-width: 960px;
  margin: 40px auto 0;
  padding: 0 20px;
  overflow: hidden;
}

.news-swiper {
  overflow: visible;
}

.news-swiper .swiper-slide {
  width: 280px;
  flex-shrink: 0;
}

.news-card {
  display: block;
  text-decoration: none;
  color: #333;
  transition: opacity 0.3s;
}

.news-card:hover {
  opacity: 0.8;
}

.news-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: #eee;
}

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

.news-card-img .ph-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}

/* Instagram風キャプション部分 */
.news-card-caption {
  position: relative;
  padding: 10px 12px 0;
  max-height: 80px;
  overflow: hidden;
}

.news-card-text {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  color: #555;
  margin: 0;
}

/* 下部フェードアウト */
.news-card-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
  pointer-events: none;
}

.news-empty {
  text-align: center;
  color: #999;
  font-size: 14px;
  padding: 40px 0;
}

/* ===== News スライダー矢印 ===== */
.news-swiper {
  position: relative;
}

.news-swiper-prev,
.news-swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.news-swiper-prev:hover,
.news-swiper-next:hover {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.news-swiper-prev {
  left: -18px;
}

.news-swiper-next {
  right: -18px;
}

.news-swiper-prev::after,
.news-swiper-next::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #555;
  border-bottom: 1px solid #555;
}

.news-swiper-prev::after {
  transform: rotate(135deg);
  margin-left: 3px;
}

.news-swiper-next::after {
  transform: rotate(-45deg);
  margin-right: 3px;
}

.news-swiper-prev.swiper-button-disabled,
.news-swiper-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}

/* ===== FAQ セクション ===== */
#faq {
  background-color: #fff;
  padding-top: 70px;
  padding-bottom: 70px;
}

.faq-list {
  max-width: 600px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.faq-category {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin: 50px 0 16px;
  padding: 6px 16px;
  border: 1px solid #333;
  border-radius: 20px;
  display: inline-block;
}

.faq-category:first-child {
  margin-top: 0;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::after {
  content: '+';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-left: 16px;
  border: 1px solid #ccc;
  border-radius: 50%;
  background: #fff;
  font-size: 16px;
  font-weight: 400;
  color: #999;
  display: grid;
  place-items: center;
  line-height: 1;
  transition: all 0.3s ease;
}

details.faq-item[open] .faq-q::after {
  content: '−';
  background: #D1722A;
  border-color: #D1722A;
  color: #fff;
}

.faq-q::before {
  display: none;
}

.faq-a {
  font-size: 14px;
  font-weight: 300;
  color: #555;
  line-height: 1.8;
  padding: 0 0 18px 1.5em;
  animation: faqSlideDown 0.3s ease;
}

@keyframes faqSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== 下層ページ背景色 ===== */
.articlepage,
.subpage {
  background-color: #F7F7F5;
}

/* ===== アーカイブ: タイトル高さ自動 + 下層ページ見出し ===== */
.post_inner .txtbox .titl {
  height: auto !important;
  min-height: 0;
}

.archive-grid .itembox .txtbox .titl {
  height: auto !important;
}

#post .inner .headlinetagbox + p,
.articlepage .inner > p {
  font-size: 16px;
}

/* ===== アーカイブ下層ページ: 3列グリッド + ページネーション ===== */
.archive-grid {
  max-width: 900px;
  margin: 40px auto 0;
  display: flex;
  flex-wrap: wrap;
}

.archive-pagination {
  text-align: center;
  margin: 40px 0 80px;
}

.archive-pagination .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 3px;
  text-decoration: none;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s;
}

.archive-pagination .page-numbers.current {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

.archive-pagination .page-numbers:hover {
  background-color: #eee;
}

.archive-pagination .page-numbers.current:hover {
  background-color: #333;
}

/* ===== 個別記事ページネーション ===== */
.single-pagination {
  margin: 60px 0 40px;
  border-top: 1px solid #ddd;
  padding-top: 30px;
}

.single-pagination-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.single-pag-prev,
.single-pag-next {
  flex: 1;
}

.single-pag-prev {
  text-align: left;
}

.single-pag-next {
  text-align: right;
}

.single-pag-list {
  flex-shrink: 0;
}

.single-pagination a {
  text-decoration: none;
  color: #333;
  font-size: 13px;
  transition: color 0.3s;
}

.single-pagination a:hover {
  color: #8B7355;
}

.single-pag-list a {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.single-pag-list a:hover {
  background-color: #eee;
}

/* ===== もっと読む右揃え（共通） ===== */
#reboot .morebox,
#post .news-morebox {
  display: flex !important;
  justify-content: flex-end !important;
  width: 900px !important;
  max-width: 900px !important;
  margin: 20px auto 0 !important;
  padding: 18px 0 10px !important;
  box-sizing: border-box !important;
  background: none !important;
}

/* ===== Archives: タイトル・日付を左揃え ===== */
#reboot .post_inner .txtbox {
  text-align: left;
}

#reboot .post_inner .txtbox .date {
  text-align: left;
}

#reboot .post_inner .upper {
  text-align: left;
}

/* ===== 共通ボタン: btn-arrow（独立設計） ===== */
.btn-arrow {
  display: inline-block;
  text-decoration: none;
  color: #555;
  position: relative;
  background: transparent;
}

.btn-arrow:hover {
  opacity: 0.6;
}


.btn-arrow-inner {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.btn-arrow-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  align-self: center;
}

.btn-arrow-en {
  font-size: 22px;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.05em;
}

.btn-arrow-ja {
  font-size: 13px;
  font-weight: 300;
  color: #999;
  margin-left: 4px;
}

.btn-arrow-ja::after {
  content: '→';
  margin-left: 2px;
}


/* 下線 */
.btn-arrow::after {
  content: '';
  display: block;
  margin-top: 6px;
  margin-bottom: 0px;
  width: 100%;
  height: 1px;
  background: #bbb;
  transition: margin-top 0.3s, margin-bottom 0.3s;
}

.btn-arrow:hover::after {
  margin-top: 2px;
  margin-bottom: 4px;
}

/* Contact セクション */
.contact-body {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.contact-body > p {
  font-size: 14px;
  font-weight: 300;
  color: #555;
  margin-bottom: 0;
}

.contact-body > .btn-arrow {
  margin-top: 80px;
}

.contactbox p {
  margin-bottom: 30px;
}

.mapbox .contactbox a {
  background-color: transparent !important;
}

#access p span.access-highlight {
  border-bottom: 2px solid #D1722A;
  padding-bottom: 1px;
  font-size: inherit;
  font-weight: 600;
}

/* ===== Access 注意書き ===== */
#access p span.access-notice {
  display: inline-block;
  margin-top: 10px;
  font-weight: 300;
  color: #333;
  font-size: 15px;
}


/* ===== 新規セクション ダミーレイアウト ===== */
.section-placeholder {
  display: flex;
  gap: 40px;
  max-width: 900px;
  margin: 40px auto 0;
  padding: 0 20px;
  align-items: flex-start;
}

.section-placeholder .ph-img {
  flex: 0 0 400px;
  aspect-ratio: 4 / 3;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}

.section-placeholder .ph-text {
  flex: 1;
}

.section-placeholder .ph-text p {
  color: #888;
  font-size: 14px;
  line-height: 1.8;
}

/* ===== #tips 内の旧About コンテンツ用スタイル ===== */
#tips .leadbox {
  width: 750px;
  margin: 60px auto 80px;
  text-align: center;
}

#tips .leadbox .txtbox {
  width: 750px;
  display: flex;
  justify-content: space-between;
  text-align: left;
}

#tips .leadbox .txtbox img {
  width: 300px;
}

#tips .leadbox .txtbox p {
  width: 300px;
  font-weight: 300;
}

#tips .section-heading {
  padding-top: 70px;
}

/* ceilingmark を背面に配置し、Tipsエリアに移動 */
#tips .ceilingmark1 {
  z-index: 0;
  top: auto;
  bottom: 200px;
  opacity: 0.08;
}

#tips .ceilingmark2 {
  z-index: 0;
  opacity: 0.08;
}

#tips .inner {
  position: relative;
  z-index: 1;
}

#tips .staffbox {
  position: relative;
  z-index: 1;
}

#tips .staffbox .subtit {
  margin-bottom: 30px;
}

#tips .leadbox {
  position: relative;
  z-index: 1;
}

/* ===== フッターレイアウト整え ===== */
#footer .logobox {
  margin-top: 20px;
}

#footer .inner2 ul {
  vertical-align: top;
}

#footer .inner2 ul li {
  margin-bottom: 1.5em;
}

/* ===== SP Responsive ===== */
@media screen and (max-width: 768px) {
  .header-nav.pc {
    display: none;
  }
  .header-sns {
    display: none;
  }
  .header-inner {
    padding: 8px 15px;
  }
  .header-logo img {
    height: 28px;
  }
  #container {
    margin-top: 44px;
  }
  .section-heading .en {
    font-size: 22px;
  }
  .section-heading .ja {
    font-size: 12px;
  }
  .section-placeholder {
    flex-direction: column;
    gap: 20px;
  }
  .section-placeholder .ph-img {
    flex: none;
    width: 100%;
  }
  #tips .leadbox {
    width: 90vw;
    margin: 2em auto 50px;
  }
  #tips .leadbox .txtbox {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
    margin-bottom: -50px;
  }
  #tips .leadbox .txtbox img {
    width: 100%;
  }
  #tips .leadbox .txtbox p {
    width: 100%;
    margin-top: 2em;
    text-align: left;
  }
  .about-lead {
    font-size: 15px;
  }
  .btn-arrow {
    width: 70vw;
  }
  #about .leadbox .about-layout,
#experience .leadbox .about-layout {
    width: 100%;
    flex-direction: column;
  }
  #about .about-img,
#experience .about-img {
    width: 100%;
  }
  #about .leadbox,
  #experience .leadbox {
    width: 90vw;
  }
  #about .leadbox .about-layout .txtbox,
  #experience .leadbox .about-layout .txtbox {
    width: 100% !important;
  }
  #experience {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #contact {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .facility-detail-lg {
    flex-direction: column !important;
  }
  .facility-detail-img {
    width: 100%;
  }
  .facility-detail-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
}
