/*
Theme Name: Lightning Child Sample
Theme URI: https://colorist.or.jp/
Template: lightning
Description: 日本カラリスト協会 - Lightning子テーマ
Author: seeboo design
Version: 1.0.0
*/
/* ===========================================
   ここから下にカスタムCSSを追加していく
   旧テーマのCSSを丸ごとコピーしないこと！
   必要なスタイルだけを少しずつ追加する
   =========================================== */
body {
	font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Meiryo', sans-serif;
    color: #333;
	font-weight: 400;
}
/* 数字に適用したいフォントを定義 */
@font-face {
  font-family: 'NumberFont';
  src: local('Arial'), local('Helvetica');
  unicode-range: U+0030-0039;
}
.day_txt {
  /* 数字用フォントを先に記述し、その後に通常のフォントを指定 */
  font-family: 'NumberFont''BaseFont', sans-serif;
	font-weight:bold:
}
/*h2見出し*/
h2 {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: 300; position: relative; font-size: 1.5rem;
  padding: .5em .85em; border-top: 0px; border-left: none; background: #F8F8F8;
}
h2::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 5px; height: 50%; background-color: #E50013;
}
/*h3見出し*/
h3 {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 1.5rem; font-weight: 300; position: relative;
  padding: 1rem 1rem; border-bottom: 5px solid #f2b3b8;
}
h3:before {
  position: absolute; bottom: -5px; left: 0; width: 20%; height: 5px; content: ''; background: #ed7664;
}
h3:after { border-bottom: none !important; }
/* 固定ページヘッダー 2026/02/22 */
.site-header--layout--nav-float .site-header-logo {
	margin-right: 0;
}
.page-header { 
    background-color: #f5f5f5; 
    padding: 40px 0 30px; 
    border-bottom: 1px solid #e0e0e0; 
    overflow: hidden; 
    position: relative;
}
.page-header-inner.container { 
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 0 20px; 
    position: relative; 
    display: flex; 
    flex-direction: column; 
    justify-content: flex-end; 
    box-sizing: border-box; 
    height: 100px !important; 
}
.page-header-slug { 
    position: absolute; 
    left: 0; 
    top: 50%; 
    transform: translateY(-50%); 
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: oblique;
    font-size: 110px; 
    font-weight: 900; 
    color: rgba(0, 0, 0, 0.04); 
    letter-spacing: 0.02em;
    line-height: 1; 
    pointer-events: none; 
    white-space: nowrap; 
    z-index: 0; 
    text-transform: uppercase;
}
.page-header-title { 
    font-size: 24px; 
    font-weight: bold; 
    color: #333333; 
    margin: 0; 
    position: relative; 
    z-index: 1; 
    text-align: left; 
}
#h1box {
    width: 100%;
    margin: 0px 0 10px;
    text-align: center;
    padding: 0px;
    background-color: #F8F8F8;
    box-sizing: border-box;
}

/* ==============================================
   追従ヘッダー：スクロール時ロゴ表示
   ============================================== */
.menu-item-sticky-logo {
    display: flex;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.menu-item-sticky-logo img {
    height: 40px;
    width: auto;
    max-width: none;
    vertical-align: middle;
}
body.is-scrolled .menu-item-sticky-logo {
    opacity: 1;
    pointer-events: auto;
}
@media (max-width: 991px) {
    .menu-item-sticky-logo {
        display: none !important;
    }
	.site-header-logo img {
		max-height: 35px;
	}
}
/* ==============================================
   追従サイドバナー　PC
   ============================================== */
.floating-menu {
    position: fixed;
    right: 0px;
    top: 20%;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.fix-btn {
    display: flex;
    border-radius: 5px;
    width: 50px;
    padding: 25px 60px 10px 0;
    background: #e50113;
    color: white;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 1px 1px 5px #aaa;
    transition: transform 0.3s;
}
.vertical {
    writing-mode: vertical-rl;
    text-orientation: upright;
    color: #fff;
}


/* --- スマホの場合：画面下部に2つ横並び --- */
@media (max-width: 991px) {
    .floating-banners {
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
    }
    .banner-btn {
        flex: 1;
        height: 100%;
        font-size: 0.9rem;
    }
    .banner-btn i { margin-right: 8px; }

}