@charset "utf-8";

/* ======================= Base / Reset ======================= */
* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  /* 固定ヘッダー分 */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

[id] {
  scroll-margin-top: 100px;
}

main {
  flex: 1;
}

/* ======================= Header ======================= */
.syomezon-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  min-height: 80px;
  max-height: 80px;
  color: #fff;
  display: flex;
  align-items: center;
  background: url("../img/header_bk.png") no-repeat center center / cover;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}




.syomezon-header__inner {
  width: 1470px;
  /* 固定幅を設定（例：1100px） */
  max-width: 1470px;
  /* これも固定 */
  min-width: 1470px;
  /* これも固定 */
  margin: 0 auto;
  /* ブラウザ中央寄せ */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  /* 上下の余白 */
}




/* ナビが折り返して高さを押し上げないようにする */
.syomezon-header__nav ul {
  display: flex;
  gap: 60px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.syomezon-header__nav a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: opacity .2s ease;
  white-space: nowrap;
}

.syomezon-header__nav a:hover {
  opacity: .8;
}

/* ロゴ画像で高さが膨らまないように */
.syomezon-header__logo img {
  max-height: 46px;
  height: 46px;
  width: auto;
  display: block;
}

/* ハンバーガー */
.syomezon-header__toggle {
  display: none;
}

.syomezon-header__btn {
  display: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
}

.syomezon-header__btnbar {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transform-origin: center;
  transition: transform .25s, opacity .25s, top .25s;
}

.syomezon-header__btnbar:nth-child(1) {
  top: 11px;
}

.syomezon-header__btnbar:nth-child(2) {
  top: 19px;
}

.syomezon-header__btnbar:nth-child(3) {
  top: 27px;
}

/* フォーカス可視化 */
.syomezon-header a:focus-visible,
.syomezon-header__btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* ======================= Hero Section ======================= */
.syomezon-hero {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* 背景画像 */
.syomezon-hero__img.img-1 {
  position: absolute;
  inset: 0;
  background: url("../img/senior.png") no-repeat center center / cover;
  z-index: 0;
}

/* テキスト全体 */
.syomezon-hero__text {
  font-size: 10px !important;
  position: relative;
  z-index: 1;
  color: #fff;
  text-shadow:
    0 2px 3px rgba(0, 0, 0, .9),
    /* 近距離・濃い影 */
    0 4px 10px rgba(0, 0, 0, .8),
    /* 中距離・ぼかし影 */
    0 6px 20px rgba(0, 0, 0, .6);
  /* 遠距離・柔らかい影 */
  font-family: "Hiragino Mincho ProN", "游明朝", "YuMincho", "MS P明朝", serif;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 1行目（キャッチコピー） */
.syomezon-hero__text p:first-of-type {
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 400px;
  letter-spacing: .08em;
  line-height: 1.4;
  text-shadow: 0 4px 10px rgba(0, 0, 0, .4);
}

/* 2行目（説明文） */
.syomezon-hero__text2 {
  font-size: 22px;
  line-height: 2;
  color: #f5f5f5;
  font-weight: 500;
  text-shadow:
    0 4px 10px rgba(0, 0, 0, .6), 0 2px 4px rgba(0, 0, 0, .5);
}

/* ======================= ページ見出し ======================= */
.page-heading {
  position: relative;
  font-family: "Hiragino Mincho ProN", "游明朝", "YuMincho", "MS P明朝", serif;
  font-size: 28px;
  font-weight: 600;
  color: #1d2088;
  text-align: center;
  letter-spacing: .08em;
}

.page-heading::after {
  content: "";
  display: block;
  height: 3px;
  width: 1470px;
  margin: 14px auto 0;
  background: linear-gradient(to right, transparent, #1d2088, transparent);
}

/* ======================= Section common ======================= */
.section {
  padding: 60px 20px;
}

.section-lead {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #004086;
}

.viewmore {
  text-align: right;
  margin-top: 1em;
}

.viewmore img {
  width: 260px;
  height: auto;
}

/* ====== 施設（カードレイアウト）ここから ====== */
.facility-card {
  width: 420px;
  background: #fff;
  border: 4px solid #e66a1f;
  /* オレンジ枠 */
  padding: 20px 22px 26px;
  box-sizing: border-box;
}

.facility-card_blue {
  width: 654px;
  background: #fff;
  border: 3px solid #1d2088;
  padding: 20px 22px 26px;
  box-sizing: border-box;
}

/* 上部の小見出し */
.facility-type {
  margin: 0 0 10px;
  font-size: .95rem;
  letter-spacing: .06em;
  color: #2b2b2b;
  text-align: left;
}

/* ロゴ */
.facility-logo {
  margin: 0 auto 12px;
  text-align: center;
}

.facility-logo img {
  height: auto;
  display: inline-block;
}

/* 施設写真 */
.facility-photo {
  margin: 10px 0 14px;
}

.facility-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* 住所 */
.facility-address {
  margin: 0 0 18px;
  text-align: center;
  color: #333;
  font-size: .98rem;
}

/* ボタン */
.facility-action {
  margin: 0;
  text-align: center;
}

.facility-btn {
  display: inline-block;
  width: 360px;
  padding: 12px 28px;
  background: #e66a1f;
  color: #fff;
  text-decoration: none;
  border-radius: 28px;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1;
  transition: transform .08s ease, box-shadow .08s ease, opacity .2s ease;
}

.facility-btn:hover {
  transform: translateY(1px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .12);
  opacity: .95;
}

/* ====== 青ボタン（＞ webサイトへ） ====== */
.facility_blue-action {
  text-align: left;
}

.facility-btn_blue_top,
.facility-btn_blue {
  display: inline-block;
  padding: 12px 28px;
  background: #1d2088;
  color: #fff;
  text-decoration: none;
  border-radius: 9999px;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1;
  text-align: center;
  transition: transform .08s ease, box-shadow .08s ease, opacity .2s ease;
}

.facility-btn_blue_top {
  width: 360px;
}

.facility-btn_blue {
  width: 200px;
}

.facility-btn_blue_top:hover,
.facility-btn_blue:hover {
  transform: translateY(1px);
  opacity: .95;
}

/* ====== 施設一覧（2列グリッド配置） ====== */
.facility-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1500px;
  margin: 0 auto;
}

/* 大きめカード（別定義） */
.facility-list .facility-card {
  width: 659px;
  border: 3px solid #e66a1f;
  padding: 20px 18px 26px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}

.facility-list .facility-logo img {
  max-width: 100%;
  height: auto;
}

.facility-list .facility-photo img {
  width: 100%;
  height: auto;
  margin-bottom: 14px;
}

.facility-list .facility-address {
  font-size: .95rem;
  color: #333;
  margin-bottom: 18px;
}

.facility-list .facility-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #e66a1f;
  color: #fff;
  text-decoration: none;
  border-radius: 28px;
  font-weight: 700;
  transition: opacity .2s ease, transform .1s ease;
}

.facility-list .facility-btn:hover {
  opacity: .9;
  transform: translateY(1px);
}

/* ====== 施設　ここまで ====== */
/* ===== ボタン中央寄せ ===== */
.curves-btn-wrap {
  text-align: center;
  margin-top: 16px;
}

/* ===== Curves セクション ===== */
.curves-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
  padding-top: 110px;
  padding-bottom: 130px;
  max-width: 1470px;
  margin: 0 auto;
}

.curves-item {
  flex: 1 1 460px;
  max-width: 710px;
}

/* Mens Curves */
.menscurves__open {
  font-size: 27px;
  line-height: 1.6;
  color: #000;
  margin: 0 0 6px;
  text-align: center;
}

.menscurves__date {
  color: #d70000;
  font-weight: 700;
  font-size: 48px;
}

.menscurves__logo {
  max-width: 650px;
  height: auto;
  margin: 10px auto 20px;
  display: block;
}

.menscurves__video {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
}

.menscurves__btn {
  width: 710px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #243b8b;
  color: #fff;
  font-weight: 600;
  font-size: 33px;
  padding: 12px 26px;
  border-radius: 40px;
  text-decoration: none;
  transition: opacity .3s;
  line-height: 1.4;
}

.menscurves__btn:hover {
  opacity: .85;
}

/* Curves Announce */
.curves-announce__headline {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: .04em;
  margin: 0 0 6px;
  text-align: center;
}

.curves-announce__sub {
  margin: 0 0 18px;
  font-size: 27px;
  color: #000;
  text-align: center;
}

.curves-announce__sub_2 {
  margin: 12px 0 18px;
  font-size: 27px;
  color: #000;
  text-align: center;
}

.curves-announce__logo {
  max-width: 650px;
  height: auto;
  margin: 40px auto 39px;
  display: block;
}

.curves-announce__video {
  position: relative;
  display: block;
  width: 100%;
  max-width: 710px;
  margin: 0 auto 28px;
  background: #cfcfcf;
  border-radius: 8px;
  aspect-ratio: 16/9;
}

.curves-announce__video::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 74px;
  height: 52px;
  background: #ff0000;
  border-radius: 8px;
  clip-path: polygon(30% 20%, 80% 50%, 30% 80%);
}

.curves__btn {
  width: 710px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #7d2c86;
  color: #fff;
  font-weight: 600;
  font-size: 25px;
  padding: 12px 26px;
  border-radius: 40px;
  text-decoration: none;
  transition: opacity .3s;
  line-height: 1.4;
}

.curves__btn:hover {
  opacity: .85;
}

/* YouTube共通ラッパー */
.video-embed {
  position: relative;
  width: 100%;
  max-width: 710px;
  aspect-ratio: 16/9;
  margin: 0 auto 30px;
  overflow: hidden;
  border-radius: 8px;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Mens Curves 動画の比率固定 */
.menscurves__video {
  position: relative;
  width: 100%;
  max-width: 710px;
  aspect-ratio: 16/9;
  margin: 0 auto 24px;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
}

.menscurves__video iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
  display: block;
}

/* ======================= Contents / Rinen ======================= */
.contents-section {
  padding: 48px 20px 32px;
  background: #fff;
  color: #000;
  width: 1100px;
  max-width: 1100px;
  min-width: 1100px;
  margin: 0 auto;
}

.contents-wrap {
  width: 1100px;
  max-width: 1100px;
  min-width: 1100px;
  margin: 0 auto;
}

/* ======================= 大カテゴリ見出し ======================= */
#tenpo {
  text-align: center;
  padding: 100px 20px 80px;
}

/* セクション全体を中央寄せ */
#tenpo.content-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  padding: 40px 0;
  width: 100%;
  box-sizing: border-box;
}

/* ふわっと光るアニメ（未使用なら削除OK） */
@keyframes glow {

  0%,
  100% {
    opacity: .5;
    filter: brightness(1);
  }

  50% {
    opacity: 1;
    filter: brightness(1.3);
  }
}

/* ======================= ロゴスグループ（固定＆中央配置） ======================= */
.section.recruit {
  width: 1100px;
  max-width: 1100px;
  min-width: 1100px;
  margin: 0 auto;
  background: #fff;
  text-align: center;
  padding: 48px 20px;
}

.section.recruit .inner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.section.recruit .org-chart {
  display: block;
  width: 1000px;
  max-width: 1000px;
  margin: 0 auto;
}

.section.recruit .org-chart img {
  width: 1000px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ======================= Tables (会社概要) ======================= */
table.type,
table.type2 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 15px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.7;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
}

table.type th,
table.type td,
table.type2 th,
table.type2 td {
  background-color: #efefef;
  padding: 20px 30px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #ddd;
}

table.type th {
  width: 300px;
  overflow: visible;
  position: relative;
  color: #fff;
  font-weight: normal;
}

table.type2 th {
  width: 430px !important;
  overflow: visible;
  position: relative;
  color: #fff;
  font-weight: normal;
}

table.type th.blue_box,
table.type2 th.blue_box {
  background: #1d2088;
  color: #fff;
  font-weight: bold;
}

table.type th:after,
table.type2 th:after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-left-color: #33bfdb;
  border-width: 10px;
  margin-top: -10px;
}

table.type th.blue_box:after,
table.type2 th.blue_box:after {
  border-left-color: #1d2088;
}

/* 店舗紹介テーブルの中心寄せ（PCのみwidth:auto） */
.content-wrap {
  max-width: 1470px;
  padding: 0 20px;
}

.rinen-card {
  text-align: center;
  margin-bottom: 100px;
}

.rinen-card img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

/* ======================= Footer ======================= */
.syomezon-footer {
  position: relative;
  width: 100%;
  background: url("../img/footer_bk.png") no-repeat center center / cover;
  color: #fff;
  padding: 60px 20px 40px;
  text-align: center;
}

.syomezon-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px 28px;
  text-align: center;
}

.syomezon-footer__logo img {
  width: min(320px, 45vw);
  height: auto;
  display: inline-block;
  margin-bottom: 28px;
}

.syomezon-footer__info {
  font-size: 22px;
  line-height: 1.9;
  margin-bottom: 50px;
}

.syomezon-footer__company {
  font-weight: 700;
  margin-bottom: 6px;
}

.syomezon-footer__copy {
  letter-spacing: .06em;
  opacity: .9;
}

/* フッター内telリンクだけ白 */
.syomezon-footer a[href^="tel:"] {
  color: #fff !important;
  text-decoration: underline;
}

.syomezon-footer a[href^="tel:"]:hover {
  opacity: .85;
  text-decoration: underline;
}

/* ======================= Back to Top ======================= */
.pagetop {
  position: fixed;
  right: 60px;
  bottom: 60px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}

.pagetop.show {
  opacity: 1;
  visibility: visible;
}

.pagetop img {
  display: block;
  cursor: pointer;
}

/* ======================= Misc ======================= */

a[href^="tel:"] {
  color: #000;
  text-decoration: underline;
}

a[href^="tel:"]:hover {
  opacity: .8;
  text-decoration: underline;
}

/* リクルートセクション（別ページ用）の中央寄せ（必要なら） */
.section.recruit.alt {
  max-width: 1470px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 20px;
  background: #fff;
}