/* ==========================================================================
   STAYLIA RESORT 共通スタイル
   2026-09-06: 下層ページ追加にあたり index.html 直書きの <style> を統合。
   連結順 = 元 index.html の出現順そのまま（カスケードを変えないため）。
   ========================================================================== */

/* ===== site.cssより前にあったもの: 元 index.html の直書きブロック（id=wp-img-auto-sizes-contain-inline-css） ===== */
img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
/*# sourceURL=wp-img-auto-sizes-contain-inline-css */

@charset "utf-8";
/* ==========================================================================
   STAYLIA RESORT — サイト基盤スタイル
   --------------------------------------------------------------------------
   参考サイトのミラーに同梱されていた市販WordPressテーマのCSS（5ファイル・267KB）を
   置き換えるために書き起こしたもの。
   実DOMに対して実際に適用されていたのは 5,089ルール中 269ルール（7.5%）のみで、
   そのうち本ファイルが担当するのは「リセット」「レイアウト基盤」「共通部品」。
   セクション個別の意匠は index.html の <style> 側に置いてある。

   構成
     1. リセット
     2. ルート変数の補完
     3. スライダー（最小実装）
     4. ページ骨格
     5. ヘッダー
     6. ドロワーメニュー
     7. ヒーロー
     8. 右サイドCTA
     9. 本文まわり
    10. セクション見出し／スクロール演出
    11. ボタン
    12. SNSアイコン
    13. フッター
    14. ページ上部へ戻る
   ========================================================================== */


/* ==========================================================================
   1. リセット
   ========================================================================== */
*, ::before, ::after {
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-break: break-word;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { display: block; }

html {
  height: 100%;
  position: relative;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  line-height: 1;
  width: 100%;
  position: relative;
  overscroll-behavior-y: none;
  touch-action: manipulation;
  -webkit-font-smoothing: antialiased;
}

body, input, textarea {
  font-size: var(--content_font_size);
  font-family: var(--content_font_type);
}

ul, ol { list-style: none; }
svg    { display: block; }

h1, h2, h3, h4, h5, h6 { font-weight: 600; }

a {
  color: #000;
  text-decoration: none;
}
a, a::before, a::after, input {
  transition: background-color .25s, color .25s, border-color .25s;
}

/* 電話番号はSPの固定バー等の専用ボタンから発信させる。
   本文中の tel: リンクを誤タップで発信させない。 */
a[href^="tel:"] {
  pointer-events: none;
  text-decoration: none !important;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
  img { image-rendering: -webkit-optimize-contrast; }
}

@media screen and (max-width: 1160px) {
  html { scroll-padding: 100px; }
}
@media screen and (max-width: 800px) {
  body { font-size: var(--content_font_size_sp); }
}


/* ==========================================================================
   2. ルート変数の補完
   ========================================================================== */
:root {
  --swiper-navigation-size: 44px;
}


/* ==========================================================================
   3. スライダー（最小実装）
   ヒーローのフェード切替に必要な分だけ。Swiper(MIT)のクラス名に合わせてある。
   ========================================================================== */
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-horizontal { touch-action: pan-y; }
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper { transform: translate3d(0, 0, 0); }
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide-active { pointer-events: auto; }
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}


/* ==========================================================================
   4. ページ骨格
   ========================================================================== */
#container {
  position: relative;
  z-index: 1;
  overscroll-behavior-y: none;
}
/* ヒーローはヘッダーの下から始める（ヘッダー高さ70px分だけ引き上げる） */
body.home #container { margin-top: -100px; }

#content_builder { background: #fff; position: relative; z-index: 2; }

.cb_white_bg { padding: 150px 0; }
.cb_white_bg + .cb_white_bg { padding-top: 0; }


/* ==========================================================================
   5. ヘッダー
   ========================================================================== */
#header {
  z-index: 100;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  pointer-events: none;
  transition: background .25s, box-shadow .25s;
}
/* トップページはヒーローに重ねるため、初回アニメーションが始まるまで伏せておく */
body.home #header {
  opacity: .001;
  transition: opacity 1s .5s, background .25s, box-shadow .25s;
}
body.home.start_first_animation #header { opacity: 1; }

#header_logo {
  position: absolute;
  left: 40px;
  top: 0;
  z-index: 100;
  height: 100px;
  pointer-events: auto;
}
#header_logo a {
  height: 100%;
  display: block;
  transition: .25s;
  opacity: 1;
  position: relative;
}
#header_logo a .logo_text {
  font-weight: 500;
  line-height: 1.2;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #000;
  overflow-wrap: break-word;
}
/* ヒーローに重なっている間はロゴを白抜きにする */
body.switch_logo #header_logo a .logo_text { color: #fff; }

@media screen and (max-width: 1160px) {
  #header { height: 60px !important; }
  #header_logo { left: 20px; height: 60px !important; }
}


/* --------------------------------------------------------------------------
   5-b. ヘッダーのSNSアイコン（SPのみ・ドロワーの外）
   健祐会と同じ「ブランド公式色のベタ塗り角丸アイコンを横並び」。
   ヘッダーが position:absolute 組みなので、ハンバーガー(60px)の左隣に絶対配置する。
   PCのヘッダーには元々SNSが無いため、PCは表示しない。
   -------------------------------------------------------------------------- */
#header_sns { display: none; }

@media screen and (max-width: 800px) {
  #header_sns {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: 0;
    right: 74px;          /* ハンバーガー60px + 余白14px */
    height: 60px;
    margin: 0;
    padding: 0;
    list-style: none;
    pointer-events: auto;
    z-index: 100;
  }
  #header_sns li { margin: 0; padding: 0; list-style: none; }
  #header_sns .sr_hsns__link {
    display: block;
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 6px;   /* 白フチ(box-shadow)の形を合わせるため。角丸自体はSVGのrxで処理 */
    /* ⚠️ここに overflow:hidden を置くと、当たり判定を広げる ::after ごと切り取られ、
       指の当たる範囲が28pxのままになる（健祐会の実装で判明済みの罠） */
  }
  #header_sns .sr_hsns__link svg { width: 100%; height: 100%; display: block; }
  /* 指の当たる範囲を44pxまで広げる。見た目のサイズは28pxのまま */
  #header_sns .sr_hsns__link::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    transform: translate(-50%, -50%);
  }
  /* ヒーローに重なっている間は白フチを足して写真に埋もれないようにする。
     ロゴの白抜き切替と同じ body.switch_logo を使う */
  body.switch_logo #header_sns .sr_hsns__link {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .85), 0 2px 10px rgba(10, 18, 30, .35);
  }
}

/* ==========================================================================
   6. ドロワーメニュー
   ========================================================================== */
#drawer_menu_button {
  background: var(--main_color);
  width: 70px;
  height: 70px;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  transition: background .25s;
  pointer-events: auto;
  z-index: 100;
}
#drawer_menu_button span,
#drawer_menu_close_button span {
  width: 22px;
  height: 2px;
  background: #fff;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: .3s;
}
#drawer_menu_button span:nth-child(1) { top: 28px; }
#drawer_menu_button span:nth-child(2) { top: 34px; }
#drawer_menu_button span:nth-child(3) { top: 40px; }

#drawer_menu_wrap {
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
  background: var(--main_color);
  width: 50%;
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  overflow: hidden auto;
  padding: 70px 0;
  scrollbar-width: thin;
}

#drawer_menu_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
  background: rgba(0, 0, 0, .2);
  z-index: 9999;
}

#drawer_menu_inner { width: 100%; }

#drawer_menu_close_button {
  width: 70px;
  height: 70px;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  z-index: 100;
}
#drawer_menu_close_button span:nth-child(1) { transform: rotate(45deg); left: 25px; top: 35px; }
#drawer_menu_close_button span:nth-child(2) { width: 0; }
#drawer_menu_close_button span:nth-child(3) { transform: rotate(-45deg); left: 25px; top: 35px; }

#drawer_menu a { color: #fff; }
#drawer_menu > ul { width: 100%; border-top: 1px solid rgba(255, 255, 255, .2); }
#drawer_menu > ul > li { border-bottom: 1px solid rgba(255, 255, 255, .2); position: relative; }
#drawer_menu > ul > li > a {
  height: 100px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#drawer_menu > ul > li > a span { display: block; }
#drawer_menu > ul > li > a .title {
  font-size: 28px;
  font-family: var(--headline_font_type);
  font-weight: 600;
}
#drawer_menu_wrap .side_menu_button { display: none; }

#mobile_sns { display: none; }

@media screen and (max-width: 1160px) {
  #drawer_menu_button,
  #drawer_menu_close_button { width: 60px; height: 60px; }
  #drawer_menu_button span,
  #drawer_menu_close_button span { width: 18px; }
  #drawer_menu_button span:nth-child(1) { top: 23px; }
  #drawer_menu_button span:nth-child(2) { top: 29px; }
  #drawer_menu_button span:nth-child(3) { top: 35px; }
  #drawer_menu_close_button span:nth-child(1),
  #drawer_menu_close_button span:nth-child(3) { top: 29px; }
}


/* ==========================================================================
   7. ヒーロー
   ========================================================================== */
#header_slider_container {
  height: 100svh;
  width: 100%;
  position: relative;
  overflow: hidden;
}
#header_slider_wrap {
  width: 100%;
  height: 100svh;
  display: flex;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}
#header_slider {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
#header_slider .swiper-wrapper { height: 100%; width: 100%; position: relative; }
#header_slider .item { width: 100%; height: 100%; position: relative; overflow: hidden; }
#header_slider .bg_video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: none;
}
#header_slider .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

#header_slider_content {
  color: #fff;
  position: absolute;
  left: 70px;
  bottom: 60px;
  z-index: 1000;
}
/* 中央配置タイプ */
#header_slider_wrap.content_position_type2 #header_slider_content {
  bottom: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 0 100px;
}
#header_slider_content .catch { line-height: 1.4; position: relative; }
#header_slider_content .desc {
  line-height: 2.4;
  font-size: 18px;
  margin: 15px 0 0;
  font-weight: 600;
  opacity: 0;
  transition: opacity 1s .5s;
}
body.end_catch_animation #header_slider_content .desc { opacity: 1; }

/* キャッチを1文字ずつ出す */
#header_slider_wrap.catch_animation_type1 .catch span {
  opacity: 0;
  transform: scale(1.2) translate3d(20px, 20px, 0);
  display: inline-block;
  position: relative;
}
#header_slider_wrap.catch_animation_type1 .catch span.animate {
  opacity: 1;
  transform: scale(1) translate3d(0, 0, 0);
  transition: opacity .5s .5s, transform .5s ease-out .5s;
}

@media screen and (max-width: 1160px) {
  #header_slider_content { left: 50px; bottom: 140px; }
}
@media screen and (max-width: 1000px) {
  #header_slider_wrap.content_position_type2 #header_slider_content { padding: 0 50px; }
}
@media screen and (max-width: 800px) {
  #header_slider_content { left: 0; bottom: 85px; padding: 0 20px; }
  #header_slider_content .desc { line-height: 2; font-size: 14px; margin: 5px 0 0; }
  #header_slider_wrap.content_position_type2 #header_slider_content { padding: 0 20px; }
}


/* ==========================================================================
   8. 右サイドCTA（PC専用の縦帯）
   ========================================================================== */
.side_menu_button {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
  transition: right .25s;
}
.side_menu_button .item {
  right: 0;
  position: relative;
  color: #fff;
  display: flex;
  transform: translate3d(calc(100% - 70px), 0, 0);
  transition: background .25s, transform .25s;
  pointer-events: auto;
}
.side_menu_button .item:hover { transform: translate3d(0, 0, 0); }
.side_menu_button .title {
  writing-mode: vertical-rl;
  padding: 40px 0;
  width: 70px;
  border-right: 1px solid rgba(255, 255, 255, .3);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@keyframes sr_side_menu_in {
  from { transform: translate3d(calc(100% - 70px), 0, 0); }
  to   { transform: translate3d(0, 0, 0); }
}
body.start_first_animation .side_menu_button .item:nth-child(1) {
  animation: .25s ease 0s 1 normal forwards running sr_side_menu_in;
}
body.home.start_first_animation .side_menu_button .item:nth-child(1) {
  animation: .25s ease .5s 1 normal forwards running sr_side_menu_in;
}
@media screen and (max-width: 1160px) {
  .side_menu_button { display: none; }
}


/* ==========================================================================
   9. 本文まわり
   ========================================================================== */
.post_content { overflow-wrap: break-word; }
.post_content a { color: var(--content_link_color); }
.post_content p { line-height: 2.4; margin: 0 0 2em; }
.post_content > :first-child { margin-top: 0; }
.post_content :first-child { margin-top: 0; }
.post_content :last-child { margin-bottom: 0; }
.post_content h1, .post_content h2, .post_content h3,
.post_content h4, .post_content h5, .post_content h6 {
  clear: both;
  line-height: 1.4;
  padding: 0;
  font-weight: 600;
}
.post_content h2 {
  font-size: var(--single_title_font_size);
  line-height: 1.4;
  margin: 3em 0 1.3em;
  text-align: center;
}
.post_content h3 {
  font-size: calc(var(--single_title_font_size) - 2px);
  line-height: 1.6;
  margin: 3em 0 1.3em;
}
.post_content img[class*="align"],
.post_content img.sr_img { height: auto; max-width: 100%; }
.post_content .aligncenter { display: block; margin: 0 auto; }
.post_content blockquote.aligncenter,
.post_content img.aligncenter { margin-left: auto; margin-right: auto; }
.post_content img.aligncenter { margin-top: 2em; margin-bottom: 2em; }

.cb_free_space { position: relative; }
.cb_free_space .post_content { width: 800px; margin: 0 auto; }
.cb_free_space .cb_design_header { margin-bottom: 90px !important; }


/* ==========================================================================
   10. セクション見出し／スクロール演出
   ========================================================================== */
.cb_design_header { margin-bottom: 100px; }
.cb_design_header .headline {
  text-align: center;
  font-size: var(--headline_font_size);
  font-family: var(--headline_font_type);
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 1160px) {
  .cb_design_header { margin-bottom: 70px; }
  .cb_design_header .headline {
    font-size: calc((var(--headline_font_size) + var(--headline_font_size_sp)) / 2);
  }
}
@media screen and (max-width: 800px) {
  .cb_design_header { margin-bottom: 40px; }
  .cb_design_header .headline { font-size: var(--headline_font_size_sp); }
}

/* 画面に入ったら下からふわりと出す */
.inview {
  position: relative;
  transform: translate3d(0, 30px, 0);
  opacity: 0;
  transition: opacity 1.4s, transform 1.4s cubic-bezier(.22, 1, .36, 1);
}
.inview.animate { transform: translate3d(0, 0, 0); opacity: 1; }


/* ==========================================================================
   11. ボタン
   ========================================================================== */
.q_button_wrap { text-align: center; margin-bottom: 2em; }
.q_custom_button {
  z-index: 1;
  max-width: 100%;
  line-height: 1.5;
  padding: 0 1.5em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-width: 1px;
  border-style: solid;
  color: #fff;
}
.q_custom_button::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 2px);
  position: absolute;
  top: -1px;
  left: -100%;
  z-index: -1;
  transition-property: background-color, left, opacity;
  transition-duration: .5s;
  transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}
.q_custom_button:hover { color: #fff; text-decoration: none !important; }
@media screen and (max-width: 800px) {
  .q_custom_button { max-height: 50px; font-size: 14px; }
}


/* ==========================================================================
   12. SNSアイコン
   ========================================================================== */
.sns_button_list {
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -5px;
}
.sns_button_list li {
  margin: 0 15px 5px 0;
  position: relative;
  font-size: 12px;
  line-height: 12px;
}
.sns_button_list li a {
  display: block;
  width: 18px;
  height: 18px;
  font-size: 12px;
  line-height: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sns_button_list li a span { display: none; }


/* ==========================================================================
   13. フッター
   ========================================================================== */
#footer {
  background: var(--main_color);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  z-index: 20;
  position: relative;
}
#footer a { color: #fff; }
#footer .item {
  flex: 1 1 0%;
  padding: 100px 50px;
  border-right: 1px solid rgba(255, 255, 255, .2);
}
#footer .item:last-of-type { border-right: none; }

#footer_logo a .logo_text {
  font-weight: 500;
  line-height: 1.2;
  overflow-wrap: break-word;
}
#footer_info { line-height: 2; margin-top: 30px; font-size: 16px; }
#footer_sns  { margin-top: 30px; text-align: left; }

.footer_nav .headline { font-size: 20px; line-height: 1; margin: 0 0 12px; font-weight: 600; }
.footer_nav ul { margin-bottom: -14px; }
.footer_nav li { font-size: 14px; line-height: 1.4; }
.footer_nav li a { display: block; padding: 12px 0; }

#copyright {
  line-height: 1.5;
  position: relative;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  text-align: center;
  padding: 24px 20px;
  background: var(--main_color);
  color: #fff;
  z-index: 20;
}

@media screen and (max-width: 1160px) {
  #footer .item { padding: 70px 50px; }
  #footer_info { font-size: 14px; margin-top: 20px; }
  #footer_sns  { margin-top: 20px; }
}
@media screen and (max-width: 950px) {
  #footer { display: block; }
  #footer .item { border: none; }
  .footer_nav { display: none; }
}
@media screen and (max-width: 800px) {
  #footer .item { padding: 40px 20px; }
  #footer_info { margin-top: 15px; }
  #footer_sns  { margin-top: 15px; }
}


/* ==========================================================================
   14. ページ上部へ戻る
   ========================================================================== */
#return_top {
  position: fixed;
  right: 20px;
  bottom: 0;
  z-index: 80;
  transform: translate3d(0, 100%, 0);
  transition: .35s;
}
#return_top.is_visible { transform: translate3d(0, -20px, 0); }
#return_top a {
  border-radius: 100%;
  background: #fff;
  display: block;
  height: 70px;
  width: 70px;
  line-height: 70px;
  text-decoration: none;
  position: relative;
  border: 1px solid #ddd;
}
#return_top a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: translate(-50%, -30%) rotate(-45deg);
}
#return_top span {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}
@media screen and (max-width: 1100px) {
  #return_top a { height: 50px; width: 50px; line-height: 50px; }
}


/* ==========================================================================
   15. ブレークポイント補完
   （ここまでの各節に入れると読みにくくなる横断的な上書きをまとめる）
   ========================================================================== */
.rich_font_1    { font-family: var(--sr-font-type1) !important; font-weight: 600; }
.rich_font_logo { font-family: var(--sr-font-type-logo); font-weight: var(--sr-logo-font-weight) !important; }

@media screen and (max-width: 1160px) {
  body.home #container { margin-top: -60px; }
  .cb_free_space .post_content { width: auto; padding: 0 100px; }
  .cb_free_space .cb_design_header { margin-bottom: 60px !important; }
  #drawer_menu_wrap { display: block; padding: 60px 0; }
  #drawer_menu > ul > li > a { height: 80px; padding: 0 20px; }
  #drawer_menu > ul > li > a .title { font-size: 22px; }
  #drawer_menu_close_button span:nth-child(1),
  #drawer_menu_close_button span:nth-child(3) { left: 20px; top: 30px; }
  #mobile_sns { display: flex; margin-top: 20px; margin-left: 20px; }
  /* PCの縦帯CTAはドロワーの中へ移す */
  #drawer_menu_wrap .side_menu_button {
    margin-bottom: -1px;
    opacity: 1;
    position: relative;
    right: 0;
    top: 0;
    transform: none;
    display: flex;
    flex-direction: row;
    align-items: start;
    width: 100%;
  }
  #drawer_menu_wrap .side_menu_button .item {
    display: block;
    transform: none;
    flex: 1 1 0%;
    height: 60px;
    line-height: 60px;
    right: 0;
    pointer-events: none;
    animation: none;
  }
  #drawer_menu_wrap .side_menu_button .title {
    border: none;
    writing-mode: horizontal-tb;
    width: auto;
    padding: 0 30px;
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
  }
}

@media screen and (max-width: 1000px) {
  .cb_free_space { padding: 100px 0; }
  .cb_free_space .post_content { padding: 0 50px; }
}

@media screen and (max-width: 800px) {
  * { -webkit-tap-highlight-color: transparent; }
  .post_content p { line-height: 2; }
  .post_content h2 { font-size: var(--single_title_font_size_sp); margin: 2.5em 0 1em; }
  .post_content h3 { font-size: calc(var(--single_title_font_size) - 2px); margin: 2.3em 0 1em; }
  .cb_white_bg  { padding: 40px 0; }
  .cb_free_space { padding: 40px 0; }
  .cb_free_space .post_content { padding: 0 40px; }
  .cb_free_space .cb_design_header { margin-bottom: 35px !important; }
  .cb_free_space .post_content p { line-height: 2.2; }
  #drawer_menu_wrap { width: 100%; }
  #drawer_menu_overlay { display: none; }
  #copyright { padding: 14px 20px; }
}

@media screen and (max-width: 600px) {
  .post_content h1 { margin: 80px 0 1em; }
  .post_content h2 { margin: 2.3em 0 1em; }
  .post_content h3,
  .post_content h4,
  .post_content h5,
  .post_content h6 { margin: 2em 0 1em; }
}

/* ==========================================================================
   16. 状態クラス（JSが付け外しする）
   ========================================================================== */
html.open_menu #drawer_menu_wrap { opacity: 1; pointer-events: auto; }
html.open_menu #drawer_menu_wrap .side_menu_button .item { pointer-events: auto; }
html.open_menu #drawer_menu_overlay { opacity: 1; pointer-events: auto; }
html.open_menu #drawer_menu_button { display: none; }
html.open_menu #header_logo { z-index: 1; }
html.open_menu { overflow: hidden; }

#return_top.active { transform: translate3d(0, 0, 0); bottom: 25px; }

/* ===== site.cssより後にあったもの: 元 index.html の直書きブロック（id=無し） ===== */
:root {
--sr-font-type1: Optima,"Segoe UI","Yu Kyokasho","游教科書体","UD デジタル 教科書体 N","游明朝","游明朝体","Hiragino Mincho Pro","Meiryo",serif;
--sr-font-type2: Optima,"Segoe UI","Yu Mincho","游明朝","游明朝体","Hiragino Mincho Pro",serif;
--sr-font-type3: Optima,"Segoe UI","Yu Kyokasho","游教科書体","UD デジタル 教科書体 N","游明朝","游明朝体","Hiragino Mincho Pro","Meiryo",serif;
--sr-font-type-logo: Optima,"Segoe UI","Yu Kyokasho","游教科書体","UD デジタル 教科書体 N","游明朝","游明朝体","Hiragino Mincho Pro","Meiryo",serif;
}

/* ===== site.cssより後にあったもの: 元 index.html の直書きブロック（id=無し） ===== */
/* strong 強制太字 */
.entry-content strong,
.post-content strong,
.page-content strong,
.entry-body strong,
article strong,
.content strong {
font-weight: 700 !important;
}
/* news投稿タイプ: picniko-imageを非表示（アイキャッチ2枚目） */
.single-news .picniko-image {
display: none !important;
}

/* ===== site.cssより後にあったもの: 元 index.html の直書きブロック（id=無し） ===== */
/* ▼ メインタイトル（h2）の下の余白を詰める ▼ */
h2.styled_h2 {
margin-bottom: 5px !important; /* サブタイトルとの隙間。0にすると完全に密着します */
padding-bottom: 0 !important;
}
/* ▼ サブタイトル（h3）の上の余白を詰める ▼ */
h3.styled_h3 {
margin-top: 0 !important;
padding-top: 0 !important;
/* 必要であればサブタイトルの文字サイズや色もここで調整可能です */
/* font-size: 16px !important; */
/* color: #666 !important; */
}

/* ===== site.cssより後にあったもの: 元 index.html の直書きブロック（id=無し） ===== */
/* =========================================
▼ PC用レイアウト（1200px・ゆったり余白）
========================================= */
.sr-plan-container {
width: 100vw;
max-width: 1200px; 
position: relative;
left: 50%;
transform: translateX(-50%);
padding: 0 20px;
box-sizing: border-box;
margin-bottom: 120px;
}
.plan-item {
display: flex;
align-items: center; /* ここで縦の中央（middle）に揃えています */
justify-content: space-between; 
background: transparent;
box-shadow: none; 
margin-bottom: 80px;
}
/* ★画像とテキストを 6:4 の比率に（自然な余白を残すため 58:36 に設定） */
.plan-image { width: 58%; }
.plan-detail { width: 36%; } 
.plan-image img {
width: 100%;
aspect-ratio: 3 / 2;
object-fit: cover; 
display: block;
}
/* =========================================
▼ テキスト装飾（ご自身で調整された完璧な文字組み！）
========================================= */
.plan-detail h3 {
font-size: 20px; 
margin-bottom: 8px; 
letter-spacing: 0.1em;
}
.plan-detail .description {
font-size: 14px; 
line-height: 1.4; 
margin-bottom: 10px; 
color: #555; 
}
.plan-detail .price {
font-size: 15px; 
font-weight: bold;
line-height: 1.4; 
color: #9c7e4a; 
margin-bottom: 15px; 
font-family: "Times New Roman", serif;
letter-spacing: 0.05em;
}
/* =========================================
▼ スマートフォン用レイアウト
========================================= */
@media screen and (max-width: 768px) {
.sr-plan-container {
width: 100vw; 
position: relative;
left: 50%;
transform: translateX(-50%);
padding: 0 3vw; 
margin-bottom: 60px;
box-sizing: border-box;
}
.plan-item {
flex-direction: column; 
margin-bottom: 40px; 
background: #f0f0ee; 
box-shadow: 0 5px 20px rgba(0,0,0,0.06); 
}
.plan-image, .plan-detail { width: 100%; }
.plan-image img {
aspect-ratio: 16 / 9; 
height: auto;
}
.plan-detail {
padding: 20px 10px 15px; 
text-align: center; 
}
.plan-detail .q_button_wrap {
justify-content: center;
}
}

/* ===== site.cssより後にあったもの: 元 index.html の直書きブロック（id=無し） ===== */
/* =========================================
【基本の魔法】文字をシャープにして細く見せる
========================================= */
body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* =========================================
▼ 1. サイト全体（ベース）
========================================= */
body, 
#wrapper {
font-weight: 300;
}
/* =========================================
▼ 2. サイトロゴ
========================================= */
#logo, 
#logo a, 
.logo_text, 
.header_logo_text {
font-weight: 300 !important;
}
/* =========================================
▼ 3. 見出し（優先度MAX・入れ子網羅版）
========================================= */
body h1, body h2, body h3, body h4, body h5, body h6, 
body .post-title, 
body .headline,
body .styled_h2, 
body .styled_h3, 
body .styled_h4, 
body .styled_h5,
body .catch_phrase, 
body .design_header,
body h1 span, body h2 span, body h3 span, body h4 span, body h5 span, body h6 span,
body .styled_h2 span, body .styled_h3 span,
body h1 a, body h2 a, body h3 a,
body .styled_h2 a, body .styled_h3 a {
font-weight: 300 !important;
}
/* =========================================
▼ 4. 本文
========================================= */
p, 
.entry-content, 
.description {
font-weight: 300 !important;
}
/* =========================================
▼ 5. リンクやボタン
========================================= */
a, 
.q_button_wrap a, 
.button {
font-weight: 300;
}
/* =========================================
▼ 6. ヘッダーメニュー＆ドロワーメニュー（追加！）
========================================= */
#global_menu ul li a,
#global_menu ul li a span,
#drawer_menu ul li a,
#drawer_menu ul li a span.title {
font-weight: 300 !important;
}

/* ===== site.cssより後にあったもの: 元 index.html の直書きブロック（id=current-page-style） ===== */
:root {
--headline_font_size: 28px;
--headline_font_size_sp: 20px;
--headline_font_type:var(--sr-font-type1);
--catch_font_size: 28px;
--catch_font_size_sp: 20px;
--catch_font_type:var(--sr-font-type1);
--single_title_font_size: 24px;
--single_title_font_size_sp: 20px;
--single_title_font_type:var(--sr-font-type1);
--content_font_size: 16px;
--content_font_size_sp: 14px;
--content_font_type:var(--sr-font-type1);
--log_font_family:var(--sr-font-type-logo);
--sr-logo-font-weight: bold;
--footer_banner_title_font_size: 60px;
--footer_banner_title_font_size_sp: 30px;
--staff_title_font_size: 32px;
--staff_title_font_size_sp: 20px;
--interview_title_font_size: 32px;
--interview_title_font_size_sp: 20px;
--scrollbar-width: calc(100vw - 100%);
--sr-logo-font-weight: bold;
--sr-preloader-logo-font-size-pc: 30px;
--sr-preloader-logo-font-size-sp: 20px;
--sr-preloader-logo-font-color: #ffffff;
}
.logo_text { font-size:30px; }
@media screen and (max-width:1200px) {
.logo_text { font-size:20px; }
}
@media(hover: hover) {
.animate_background .image_wrap img { width:100%; height:100%; will-change:transform; transition: transform  0.5s ease; }
.animate_background:hover .image_wrap img { transform: scale(1.1); }
}
:root {
--main_color: #545454;
--main_color_dark: #363636;
--main_color_light: #727272;
--main_color_light2: #909090;
--main_color_hex: 84,84,84;
--content_link_color: #1578d6;
--content_link_color_light: #3396f4;
}
@media(hover: hover) {
}
.side_menu_button .item2 { background:#000000; }
@media(hover: hover) {
.side_menu_button .item2:hover { background:#282828; }
}
.styled_h2 {
font-size:24px!important;
text-align:center!important;
font-weight:600!important;
color:#000000;
border-color:#000000;
border-width:1px;
border-style:solid;
border-left:none;
border-right:none;
border-top:none;
border-bottom:none;
background-color:transparent;
}
@media screen and (max-width:800px) {
.styled_h2 { font-size:18px!important; }
}
.styled_h3 {
font-size:20px!important;
text-align:center!important;
font-weight:600!important;
color:#000000;
border-color:#000000;
border-width:2px;
border-style:solid;
border-left:none;
border-right:none;
border-top:none;
border-bottom:none;
background-color:transparent;
}
@media screen and (max-width:800px) {
.styled_h3 { font-size:13px!important; }
}
.styled_h4 {
font-size:22px!important;
text-align:left!important;
font-weight:500!important;
color:#000000;
border-color:#dddddd;
border-width:1px;
border-style:dotted;
border-left:none;
border-right:none;
border-top:none;
padding-bottom:0.8em!important;
background-color:transparent;
}
@media screen and (max-width:800px) {
.styled_h4 { font-size:16px!important; }
}
.styled_h5 {
font-size:20px!important;
text-align:left!important;
font-weight:500!important;
color:#000000;
border-color:#000000;
border-width:3px;
border-style:double;
border-left:none;
border-right:none;
border-top:none;
border-bottom:none;
background-color:#f2f2f2;
padding:0.8em 1em!important;
}
@media screen and (max-width:800px) {
.styled_h5 { font-size:16px!important; }
}
.post_content a.q_custom_button1 { min-width:280px; height:60px;border-radius:0px;color:#0a0a0a !important; border-color:#0a0a0a; }
.post_content a.q_custom_button1:before { background-color:#898989 !important;left:-100%; }
.post_content a.q_custom_button1:hover { color:#fff !important; border-color:#898989 !important; }
.post_content a.q_custom_button1:hover:before { left:0; }
@media (max-width: 1200px) {
.post_content a.q_custom_button1 { min-width:260px; }
}
@media (max-width: 800px) {
.post_content a.q_custom_button1 { min-width:240px; height:50px; }
}
.post_content a.q_custom_button2 { min-width:280px; height:60px;border-radius:70px;color:#fff !important; background-color:#545454;border:none; }
.post_content a.q_custom_button2:before { background-color:#666666 !important;opacity:0; }
.post_content a.q_custom_button2:hover {  }
.post_content a.q_custom_button2:hover:before { opacity:1; }
@media (max-width: 1200px) {
.post_content a.q_custom_button2 { min-width:260px; }
}
@media (max-width: 800px) {
.post_content a.q_custom_button2 { min-width:240px; height:50px; }
}
.post_content a.q_custom_button3 { min-width:280px; height:60px;border-radius:70px;color:#fff !important; border-color:#545454; }
.post_content a.q_custom_button3:before { background-color:#545454;opacity:1; }
.post_content a.q_custom_button3:hover { color:#000000 !important; border-color:#000000; !important }
.post_content a.q_custom_button3:hover:before { opacity:0; }
@media (max-width: 1200px) {
.post_content a.q_custom_button3 { min-width:260px; }
}
@media (max-width: 800px) {
.post_content a.q_custom_button3 { min-width:240px; height:50px; }
}
.q_frame1 {
background:#ffffff;
border-radius:0px;
border-width:1px;
border-color:#dddddd;
border-style:solid;
}
.q_frame1 .q_frame_label {
color:#000000;
}
.q_frame2 {
background:#ffffff;
border-radius:0px;
border-width:1px;
border-color:#0a0000;
border-style:solid;
}
.q_frame2 .q_frame_label {
color:#0a0000;
}
.q_frame3 {
background:#ffffff;
border-radius:10px;
border-width:1px;
border-color:#f9b42d;
border-style:solid;
}
.q_frame3 .q_frame_label {
color:#f9b42d;
}
.q_underline1 {
font-weight:500;
background-image: -webkit-linear-gradient(left, transparent 50%, #fff799 50%);
background-image: -moz-linear-gradient(left, transparent 50%, #fff799 50%);
background-image: linear-gradient(to right, transparent 50%, #fff799 50%);
background-position:-100% 0.8em;}
.q_underline2 {
font-weight:600;
background-image: -webkit-linear-gradient(left, transparent 50%, #99f9ff 50%);
background-image: -moz-linear-gradient(left, transparent 50%, #99f9ff 50%);
background-image: linear-gradient(to right, transparent 50%, #99f9ff 50%);
}
.q_underline3 {
font-weight:600;
background-image: -webkit-linear-gradient(left, transparent 50%, #ff99b8 50%);
background-image: -moz-linear-gradient(left, transparent 50%, #ff99b8 50%);
background-image: linear-gradient(to right, transparent 50%, #ff99b8 50%);
}
.speech_balloon1 .speech_balloon_text_inner {
color:#000000;
background-color:#ffdfdf;
border-color:#ffdfdf;
}
.speech_balloon1 .before { border-left-color:#ffdfdf; }
.speech_balloon1 .after { border-right-color:#ffdfdf; }
.speech_balloon2 .speech_balloon_text_inner {
color:#000000;
background-color:#ffffff;
border-color:#ff5353;
}
.speech_balloon2 .before { border-left-color:#ff5353; }
.speech_balloon2 .after { border-right-color:#ffffff; }
.speech_balloon3 .speech_balloon_text_inner {
color:#000000;
background-color:#ccf4ff;
border-color:#ccf4ff;
}
.speech_balloon3 .before { border-left-color:#ccf4ff; }
.speech_balloon3 .after { border-right-color:#ccf4ff; }
.speech_balloon4 .speech_balloon_text_inner {
color:#000000;
background-color:#ffffff;
border-color:#0789b5;
}
.speech_balloon4 .before { border-left-color:#0789b5; }
.speech_balloon4 .after { border-right-color:#ffffff; }
.qt_google_map .pb_googlemap_custom-overlay-inner { background:#000000; color:#ffffff; }
.qt_google_map .pb_googlemap_custom-overlay-inner::after { border-color:#000000 transparent transparent transparent; }
#header_slider_content .catch { font-size:24px; }
#header_slider_content .desc { font-size:18px; }
@media screen and (max-width:1200px) {
#header_slider_content .catch { font-size:22px; }
#header_slider_content .desc { font-size:16px; }
}
@media screen and (max-width:800px) {
#header_slider_content .catch { font-size:20px; }
#header_slider_content .desc { font-size:14px; }
}
#site_loader_overlay {
position:relative; overflow:hidden; pointer-events:none;
position:fixed; top:0px; left:0px; width:100%; height:100%; height:100vh; height:100dvh; z-index:99999999999;
opacity:1; background:#ffffff;
.c-preloader__logo-text {
font-family: var(--log_font_family);
font-weight:var(--sr-logo-font-weight, 600);
font-size: var(--sr-preloader-logo-font-size-pc);
color: var(--sr-preloader-logo-font-color);
line-height: 1.5;
}
@media screen and (max-width: 800px) { 
.c-preloader__logo-text {
font-size: var(--sr-preloader-logo-font-size-sp);
}
}
}
/* body.end_loading #site_loader_overlay { opacity:0; transition: opacity 0.7s ease 0.7s; } */
#site_loader_overlay { transform: translate3d(0,0,0); transition: transform 0.7s cubic-bezier(.83,0,.17,1) 0.5s; }
body.end_loading #site_loader_overlay { opacity:0; transition: opacity 0.5s ease 0.4s; }
#site_loader_overlay .content { display:flex; flex-direction:column; justify-content:center; width:100%; height:100%; text-align:center; }
#site_loader_overlay #loader_logo_image + #loader_catch { margin-top:50px; line-height:1.5; }
#loader_catch { opacity:0; font-size:70px; color:#ffffff; }
#site_loader_overlay.start_loading #loader_catch { opacity:1; transition: opacity 1.0s ease 0.5s; }
#site_loader_overlay.start_loading #loader_logo_image + #loader_catch { opacity:1; transition: opacity 1.0s ease 1.0s; }
@media screen and (max-width:1100px) {
#loader_catch { font-size:55px; }
}
@media screen and (max-width:800px) {
#loader_catch { font-size:40px; }
}
#loader_logo_image { opacity:0; }
#site_loader_overlay.start_loading #loader_logo_image { opacity:1; transition: opacity 1.0s ease 0.5s; }
#loader_logo_image img { display:block; margin:0 auto; }
#loader_logo_image .mobile { display:none; }
@media screen and (max-width:800px) {
#loader_logo_image .pc { display:none; }
#loader_logo_image .mobile { display:block; }
}

/* ===== site.cssより後にあったもの: 元 index.html の直書きブロック（id=無し） ===== */
/* ==========================================
1. 全ページ共通：フッター上のLINE誘導エリア
========================================== */
.custom-footer-cta-wrapper {
padding: 80px 20px;
background-color: #fff; 
text-align: center;
border: none;
position: relative;
z-index: 99;
}
.contact-lead-text {
margin-top: 30px; 
text-align: left;
margin-bottom: 40px;
line-height: 1.8;
display: inline-block;
font-size: 15px;
}
.custom-footer-cta-wrapper .custom-line-btn {
display: inline-flex !important;
justify-content: center;
align-items: center;
width: 240px !important; 
height: 50px !important; 
padding: 0 !important;
background-color: #545454 !important; 
color: #fff !important;
text-decoration: none !important;
font-weight: 500 !important;
letter-spacing: 0.1em !important;
border-radius: 100px !important; 
border: none !important;
cursor: pointer !important;
transition: background-color 0.3s ease !important;
position: relative !important;
z-index: 100 !important;
}
.custom-footer-cta-wrapper .custom-line-btn:hover {
background-color: #333 !important; 
}
/* ==========================================
2. トップページ専用：.styled_h2 のフォントサイズ上書き
========================================== */
body.home .styled_h2,
body.front-page .styled_h2 {
font-size: 25px !important;
}
/* ==========================================
3. トップページ専用：.design_button のフォントウェイト上書き
========================================== */
body.home a.design_button,
body.front-page a.design_button {
font-weight: 400 !important;
}
/* ==========================================
4. トップページ専用：PLANセクション 背景色・余白
#cb_content_2 = PLANセクション
========================================== */
body.home section#cb_content_2.cb_white_bg,
body.front-page section#cb_content_2.cb_white_bg {
background-color: #f0f0ee !important;
padding-top: 80px !important;
padding-bottom: 80px !important;
}
/* ==========================================
5. トップページ専用：STAFFセクション 背景色・余白
#cb_content_5 = FLOWセクション
========================================== */
body.home section#cb_content_5.cb_white_bg,
body.front-page section#cb_content_5.cb_white_bg {
background-color: #f0f0ee !important;
padding-top: 80px !important;
padding-bottom: 80px !important;
}
/* ==========================================
6. トップページ専用：スタッフカード テキストエリア背景色
========================================== */
body.home .staff_list_type1 .content,
body.front-page .staff_list_type1 .content {
background-color: #ffffff !important;
border-color: #f0f0ee !important;
}
/* ==========================================
▼ PC向けの上書きスタイル（必ず基本スタイルの下に書く）▼
========================================== */
@media screen and (min-width: 768px) {
.contact-lead-text {
text-align: center;
display: block;
}
.custom-footer-cta-wrapper .custom-line-btn {
width: 300px !important; 
height: 70px !important;
}
body.home .styled_h2,
body.front-page .styled_h2 {
font-size: 30px !important;
}
}
/* ==========================================
トップページ専用：ヘッダーテキスト SP配置
中段やや下・左詰め・テキスト左揃え
========================================== */
@media screen and (max-width: 768px) {
body.home #header_slider_content .content,
body.front-page #header_slider_content .content {
position: absolute !important;
top: 68% !important;
left: 30px !important;
transform: translateY(-0%) !important;
text-align: left !important;
padding: 0 !important;
width: auto !important;
}
/* h2.catch の文字間 */
body.home #header_slider_content .content .catch,
body.front-page #header_slider_content .content .catch {
letter-spacing: 0em !important;
display: block !important;
}
/* p.desc：h2の幅に収まるよう小さく表示 */
body.home #header_slider_content .content p.desc,
body.front-page #header_slider_content .content p.desc {
display: block !important;
visibility: visible !important;
opacity: 1 !important;
font-size: 10px !important;
letter-spacing: 0.05em !important;
line-height: 1.6 !important;
margin-top: 6px !important;
width: fit-content !important;
max-width: 100% !important;
white-space: nowrap !important;
}
}
/* ==========================================
全ページ共通：SP時フッターナビ表示
========================================== */
@media screen and (max-width: 768px) {
#footer .footer_nav .headline {
display: block !important;
}
#footer .footer_nav .menu {
display: block !important;
}
#footer .footer_nav .menu li {
display: block !important;
}
#footer .footer_nav .menu li a {
display: block !important;
}
}

/* ===== site.cssより後にあったもの: 元 index.html の直書きブロック（id=無し） ===== */
/* 大枠のラッパー */
.sr-parallax-wrapper {
position: relative;
overflow: hidden;
width: 100vw;
margin-left: calc(50% - 50vw);
padding: 100px 20px;
box-sizing: border-box;
}
/* ぼかし背景用レイヤー（端切れ防止のため上下の「のり代」を拡大） */
.sr-parallax-bg {
position: absolute;
top: -40%; /* 上に大きくはみ出させる */
left: -10%;
width: 120%;
height: 180%; /* パララックスの可動域を確保するため高さを180%に拡大 */
background-size: cover;
background-position: center;
background-repeat: no-repeat;
filter: blur(8px);
z-index: 1;
will-change: transform;
}
/* 黒い半透明フィルター */
.sr-parallax-overlay {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.35);
z-index: 2;
}
/* コンテンツエリア（前面） */
.sr-parallax-content {
position: relative;
z-index: 3;
max-width: 1000px;
margin: 0 auto;
color: #fff !important;
}
/* 元テーマの黒文字指定を強制的に白で上書き */
.sr-parallax-content h2,
.sr-parallax-content h3,
.sr-parallax-content p,
.sr-parallax-content span,
.sr-parallax-content div {
color: #fff !important;
text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.sr-parallax-content h2.styled_h2,
.sr-parallax-content h3.styled_h3 {
background: transparent !important;
border: none !important;
}
/* ▼ 元テーマ固有のボタン（MORE等）を強制的に白にする ▼ */
.sr-parallax-content .q_button_wrap a.q_custom_button {
color: #fff !important;
border-color: #fff !important;
background-color: transparent !important; /* 背景が白くならないように透明化 */
}
/* ボタンをホバー（マウスカーソルを乗せた）時の設定 */
.sr-parallax-content .q_button_wrap a.q_custom_button:hover {
color: #fff !important;
border-color: #fff !important;
background-color: rgba(255, 255, 255, 0.2) !important; /* ホバー時は少し白く光らせる（お好みで） */
}
