@charset "UTF-8";
/* ========================================================
   DayOnesエコキュートサービス CSS
   メインカラー：濃紺(#1a3a6e) / アクセント青(#2b7cd6)
   サブカラー：スカイブルー(#e8f3fc) / 温かみコーラル(#ff8a65)
   ベース：白＋オフホワイト(#f0f7fc)
   ======================================================== */

/* ========== Google Fonts ========== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Zen+Maru+Gothic:wght@500;700;900&display=swap');

/* ========== CSS変数 ========== */
:root {
    --color-primary: #1a3a6e;
    --color-primary-deep: #102a52;
    --color-accent: #2b7cd6;
    --color-accent-light: #5ba4e8;
    --color-sky: #e8f3fc;
    --color-sky-deep: #cfe1f3;
    --color-coral: #ff8a65;
    --color-coral-deep: #f4673e;
    --color-bg: #ffffff;
    --color-bg-soft: #f4f9fd;
    --color-text: #2a3a4f;
    --color-text-light: #5a6a80;
    --shadow-soft: 0 6px 24px rgba(26, 58, 110, 0.08);
    --shadow-medium: 0 12px 40px rgba(26, 58, 110, 0.12);
    --shadow-strong: 0 20px 60px rgba(26, 58, 110, 0.18);
    --gradient-primary: linear-gradient(135deg, #1a3a6e 0%, #2b7cd6 100%);
    --gradient-accent: linear-gradient(135deg, #2b7cd6 0%, #5ba4e8 100%);
    --gradient-warm: linear-gradient(135deg, #ff8a65 0%, #ffb088 100%);
    --gradient-soft: linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-pill: 999px;
    --transition-base: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ========== 共通部分 ========== */
body {
    background: #fff !important;
    color: var(--color-text) !important;
    overflow-x: hidden;
    font-size: 16px;
    letter-spacing: .04em;
    line-height: 1.8;
    counter-reset: number 0 counter-reset1 counter-reset2;
    font-family: "Zen Maru Gothic", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a, .post-content a {
    color: var(--color-accent);
    transition: var(--transition-base);
}
a:hover, .post-content a:hover {
    color: var(--color-coral);
}
.font-type2 {
    font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif !important;
}
.headline-font-type, h2, h3 {
    font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif !important;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: .03em;
}
p, .post-content p {
    font-size: 0.95em;
    font-weight: 400;
    line-height: 2;
    color: var(--color-text);
}
strong {
    color: var(--color-coral-deep);
    font-weight: 700;
}
.post-content ul {
    font-size: 0.95em;
    list-style: disc;
}

/* ========== パンくず ========== */
.breadcrumb-wrapper {
    background: var(--gradient-primary) !important;
}
.breadcrumb.inner {
    font-size: 0.85em;
    width: fit-content;
    display: block;
    height: 40px;
    line-height: 40px;
}
.breadcrumb li, .breadcrumb a {
    color: #fff !important;
}

/* ========== signage (ヘッダー画像) ========== */
.signage {
    height: 320px;
    margin-left: auto;
    background: var(--gradient-primary);
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.signage::after {
    content: '';
    position: absolute;
    display: block;
    background-image: url("img/header_img.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.55;
}
.signage::before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 80px;
    bottom: -1px;
    left: 0;
    z-index: 1;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'><path fill='%23ffffff' d='M0,80 C360,30 720,10 1440,60 L1440,80 Z'/></svg>") no-repeat center bottom;
    background-size: cover;
}
.signage::after{
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;top: 0;
    background: rgba(0,0,0,0.3);
}
.signage-title.headline-font-type {
    text-align: center;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
    font-size: 2.8em !important;
    font-weight: 700;
    color: #fff !important;
    letter-spacing: .08em;
}
@media only screen and (max-width: 768px) {
    .signage {
        height: 200px;
    }
    .signage-title.headline-font-type {
        font-size: 1.8em !important;
    }
}
/* ========== 共通部分 END ========== */

/* ========== ナビゲーション ========== */
.home .header::before {
    content: '';
    position: absolute;
    display: block;
    background: linear-gradient(180deg, rgba(26, 58, 110, 0.6) 0%, rgba(26, 58, 110, 0.2) 100%);
    width: 95%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 1;
}
.header-bar {
    z-index: 50;
    box-shadow: 0 2px 16px rgba(26, 58, 110, 0.06) !important;
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.logo-image {
    top: 5px;
    left: 25px;
    width: 350px;
    height: auto;
    position: absolute;
}
img.h_logo {
    width: 100%;
}
.global-nav {
    padding-right: 30px;
    background: transparent;
}
.header-bar-inner {
    width: 100%;
    max-width: unset;
    z-index: 100;
}
.global-nav > ul > li > a {
    font-size: 15px;
    letter-spacing: .03em;
    font-weight: 500;
    padding: 0 15px 0 15px;
    position: relative;
    text-align: end;
    transition: var(--transition-base);
    color: var(--color-primary) !important;
    font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif !important;
}
.global-nav > ul > li > a::before {
    content: "";
    width: 0;
    height: 2px;
    right: 0;
    bottom: 22px;
    position: absolute;
    background: var(--gradient-accent);
    transition: var(--transition-base);
    z-index: 1;
    border-radius: 1px;
}
.global-nav > ul > li > a span {
    position: absolute;
    left: 50%;
    top: 17px;
    transform: translateX(-50%);
}
.global-nav > ul > li > a:hover {
    color: var(--color-accent) !important;
}
.global-nav > ul > li > a:hover::before {
    width: 100%;
}
.global-nav .sub-menu a {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-primary) !important;
    background: rgba(255,255,255,0.98) !important;
    font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif !important;
}
.global-nav .sub-menu a:hover {
    color: var(--color-accent) !important;
    background: var(--color-sky) !important;
}
.global-nav .sub-menu a:hover::before {
    content: none;
}
@media only screen and (max-width: 1200px) {
    .logo-image {
        top: 1px;
        left: 0;
        width: 200px;
    }
    .header-bar {
        border-bottom: 1px solid var(--color-sky-deep);
    }
    .global-nav-button {
        border-left: 0px;
        background: var(--color-bg-soft);
    }
    .global-nav-button:before {
        color: var(--color-primary);
    }
    .global-nav-button:hover:before {
        color: var(--color-accent);
    }
    .global-nav{padding-right: 0;}
    .global-nav > ul > li > a {
        font-size: 13px;
        text-shadow: none;
        text-align: left;
        padding: 0 0 15px;
        line-height: 50px;
        text-align: center;
        height: 65px;
        border-bottom: 1px solid #eaeaea;
    }
    .global-nav a {
        background: var(--color-bg-soft) !important;
        color: var(--color-primary) !important;
    }
    .global-nav .sub-menu a {
        font-size: 12px;
        background: var(--color-bg-soft) !important;
        color: var(--color-primary) !important;
    }
    .global-nav a:hover, .global-nav .sub-menu a:hover {
        background: var(--color-sky) !important;
        color: var(--color-accent) !important;
    }
    .global-nav > ul > li > a::before {
        content: none !important;
    }
    .global-nav .menu-item-has-children > a span::before {
        color: var(--color-primary);
    }
}
@media only screen and (max-width: 820px) {
    img.s_logo {
        width: 100%;
    }
}
/* ========== ナビ END ========== */

/* ========== YouTubeコントロールバー非表示 ========== */
.mb_YTPBar {
    display: none !important;
}

/* ========================================================
   トップ・フッター
   ======================================================== */

/* ========== トップスライダー(Hero) ========== */
.top-slider-content {
    border-radius: 0;
    flex-direction: column;
    justify-content: center;
    display: -webkit-flex;
    display: flex;
    width: 100% !important;
    height: 100% !important;
}
.top-slider-content-inner, .top-slider-content-inner:hover {
    background: linear-gradient(180deg, rgba(26, 58, 110, 0.25) 0%, rgba(26, 58, 110, 0.55) 100%) !important;
}
.top-slider-content-inner {
    width: 100% !important;
    height: 100% !important;
    box-sizing: border-box;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
}
.top-slider-content-inner p {
    display: none;
}
.top-slider-content-inner:after {
    content: none;
}
.front-slider-box {
    width: 90%;
    margin: 0 auto;
}
.front-copy-img {
    width: 50%;
    max-width: 550px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
}
.top-slider-wrapper {
    width: 100%;
    margin-left: auto;
    position: relative;
}
/*.top-slider-wrapper::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, #fff);
    bottom: 30px;
    left: 5%;
    z-index: 10;
    animation: scrollLineFlow 2.5s ease-in-out infinite;
}
.top-slider-wrapper::after {
    content: 'Scroll';
    position: absolute;
    color: #fff;
    text-align: center;
    width: 10%;
    left: 0;
    bottom: 90px;
    font-size: 13px;
    font-weight: 500;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: .15em;
    line-height: 1;
    z-index: 2;
    text-transform: uppercase;
    opacity: 0.9;
}
@keyframes scrollLineFlow {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}*/

/* ========== Concept (front_original01) ========== */
.front_original01 {
    padding: 7em 0 5em;
    position: relative;
    z-index: 0;
    background: var(--gradient-soft);
    overflow: hidden;
}
.front_original01::after {
    content: '';
    position: absolute;
    display: block;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(43, 124, 214, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    z-index: -4;
    animation: floatBubble 8s ease-in-out infinite;
}
.front_original01::before {
    content: '';
    position: absolute;
    display: block;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 138, 101, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -100px;
    z-index: -4;
    animation: floatBubble 10s ease-in-out infinite reverse;
}
@keyframes floatBubble {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}
.front-original01-inner {
    width: 86%;
    max-width: 1200px;
    margin: auto;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
    gap: 50px;
    position: relative;
    z-index: 1;
}
.front-original01__title {
    width: 50% !important;
    height: auto;
    margin-left: 0 !important;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex !important;
    writing-mode: horizontal-tb !important;
    position: relative;
    flex-shrink: 0;
}
.front-original01__title::before {
    content: 'Concept';
    display: block;
    font-size: 0.8em;
    letter-spacing: .25em;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 18px;
    padding-left: 50px;
    position: relative;
    text-transform: uppercase;
    font-family: "Noto Sans JP", sans-serif;
}
.front-original01__title::after {
    content: '';
    position: absolute;
    width: 36px;
    height: 2px;
    background: var(--gradient-accent);
    top: 11px;
    left: 0;
    border-radius: 1px;
}
.front-original01__title h2 {
    font-size: 2.1em !important;
    letter-spacing: .04em;
    line-height: 1.5;
    margin-bottom: 30px !important;
    width: 100%;
    color: var(--color-primary) !important;
    font-weight: 900;
}
/* エコキュート画像 */
.front-original01__image {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    aspect-ratio: 4 / 3;
}
.front-original01__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}
.front-original01__image:hover img {
    transform: scale(1.05);
}
.front-original01__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(43, 124, 214, 0.15) 0%, transparent 50%);
    pointer-events: none;
}
.front-original01__image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--gradient-warm);
    color: #fff;
    padding: 14px 22px;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(244, 103, 62, 0.35);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}
.front-original01__image-badge .badge-num {
    font-size: 1.7em;
    font-weight: 900;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: -.02em;
    line-height: 1;
}
.front-original01__image-badge .badge-num small {
    font-size: 0.55em;
    font-weight: 700;
    margin-left: 4px;
}
.front-original01__image-badge .badge-label {
    font-size: 0.72em;
    font-weight: 600;
    margin-top: 4px;
    letter-spacing: .08em;
}

.front-original01__text {
    width: 50% !important;
    margin-left: 0 !important;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    display: flex !important;
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
}
.front-original01__text h3 {
    display: none;
}
.front-original01__text p {
    margin-bottom: 18px;
    width: 100%;
    color: var(--color-text);
    font-size: 1em;
    line-height: 2;
}
.front-original01__text p:last-of-type {
    margin-bottom: 0;
}
.front-original01__text strong {
    color: var(--color-coral-deep);
    font-weight: 700;
    font-size: 1.05em;
    background: linear-gradient(transparent 65%, rgba(255, 138, 101, 0.25) 65%);
    padding: 0 4px;
}

/* ========== 3つのカテゴリーカード (content02) ========== */
.content02 {
    background: #fff;
    position: relative;
    padding-top: 2em;
}
.content02-inner {
    width: 86%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5em 0 6em;
    display: flex !important;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.content02-item {
    padding: 0;
    width: calc(33.333% - 20px) !important;
    margin-left: 0 !important;
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}
.content02-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}
.content02-img {
    width: 100%;
    height: 220px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    transition: var(--transition-base);
    z-index: 0;
    border-radius: 0;
}
.content02-img a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.content02-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.content02-item:hover .content02-img img {
    transform: scale(1.08);
}
.content02-img-inner {
    width: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    text-align: center;
    color: #ffffff;
    z-index: 2;
}
h2.content02-img_title {
    font-size: 1.4rem;
    margin: 0;
    color: #fff !important;
    font-weight: 700;
    letter-spacing: .08em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.content02-img .mask {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(26, 58, 110, 0.55) 0%, rgba(43, 124, 214, 0.55) 100%);
    opacity: 1;
    -webkit-transition: var(--transition-base);
    transition: var(--transition-base);
}
.content02-img:hover .mask {
    opacity: 0.8;
}
.content02-text__box {
    padding: 28px 21px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.content02-title {
    font-size: 1.18em;
    text-align: left;
    line-height: 1.6;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-primary);
    position: relative;
    padding-bottom: 12px;
}
.content02-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}
.content02-text {
    color: var(--color-text);
    line-height: 1.9;
    font-size: 0.92em;
    flex: 1;
}
a.content02-button {
    font-size: 0.95em;
    font-weight: 600;
    font-family: "Noto Sans JP", sans-serif !important;
    text-align: center;
    width: 100%;
    max-width: 100%;
    height: 48px;
    line-height: 48px;
    position: relative;
    margin: 22px 0 0;
    color: #fff !important;
    background: var(--gradient-accent) !important;
    padding: 0;
    box-sizing: border-box;
    transition: var(--transition-base);
    z-index: 1;
    border-radius: var(--radius-pill);
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(43, 124, 214, 0.3);
}
.content02-button:hover {
    color: #fff !important;
    background: var(--gradient-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(43, 124, 214, 0.4);
}
a.content02-button span {
    position: relative;
    display: inline-block;
}
.content02-button span::before {
    content: '';
    width: 18px;
    height: 1.5px;
    position: absolute;
    background: #fff;
    right: -32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    transition: var(--transition-base);
    border-radius: 1px;
}
.content02-button span::after {
    content: '';
    width: 7px;
    height: 7px;
    position: absolute;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    right: -32px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    transition: var(--transition-base);
}
.content02-button:hover span::before {
    width: 24px;
    right: -38px;
}
.content02-button:hover span::after {
    right: -38px;
}

/* ========== 代表メッセージ (front_original02) ========== */
.front_original02 {
    width: 100%;
    padding: 8em 0 8em;
    color: #fff;
    background: var(--gradient-primary);
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.front_original02::after {
    content: '';
    position: absolute;
    display: block;
    background-image: url("img/home/4.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.18;
    mix-blend-mode: overlay;
}
.front_original02::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: -1;
    animation: floatBubble 12s ease-in-out infinite;
}
.front-original02-inner {
    width: 86%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.front-original02__text {
    width: 100%;
    max-width: 720px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 50px 50px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.front-original02__text h2 {
    font-size: 2em;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #fff !important;
    letter-spacing: .04em;
    position: relative;
    padding-left: 24px;
}
.front-original02__text h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 4px;
    background: var(--gradient-warm);
    border-radius: 2px;
}
.front-original02__text p {
    margin-bottom: 18px;
    width: 100%;
    color: rgba(255, 255, 255, 0.92);
    line-height: 2.1;
    font-size: 0.98em;
}
.front-original02__text p:last-child {
    margin-bottom: 0;
}

/* ========== 3つの強み (front_original03) ========== */
.front_original03 {
    padding: 7em 0 6em;
    margin-top: 0;
    position: relative;
    background: var(--color-bg-soft);
    overflow: hidden;
}
.front_original03::before {
    content: 'Our Strengths';
    position: absolute;
    display: block;
    font-size: 8em;
    font-weight: 900;
    color: rgba(43, 124, 214, 0.04);
    top: 30px;
    right: 30px;
    z-index: 0;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: -.02em;
    background: none;
    width: auto;
    height: auto;
}
.front-original03-inner {
    width: 86%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.third-box {
    margin-bottom: 50px;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}
.third-box:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}
.third-box:last-of-type {
    margin-bottom: 0;
}
.third-inner {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center;
    gap: 50px;
}
.third-box:nth-of-type(even) .third-inner {
    flex-direction: row-reverse !important;
}
.front-third-text {
    position: relative;
    width: 50% !important;
    flex-shrink: 0 !important;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    display: flex;
    padding: 0 !important;
    margin: 0 !important;
}
.front-third-text::before {
    counter-increment: number 1;
    content: "0" counter(number);
    width: auto;
    font-size: 3.5em;
    font-weight: 900;
    margin-bottom: 16px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1;
    letter-spacing: -.02em;
    position: relative;
    padding-left: 0;
}
.front-third-text::after {
    content: 'Point';
    position: absolute;
    font-size: 0.75em;
    color: var(--color-accent);
    letter-spacing: .25em;
    font-weight: 600;
    top: 30px;
    left: 75px;
    text-transform: uppercase;
    font-family: "Noto Sans JP", sans-serif;
}
.third-box:nth-of-type(odd) .front-third-text {
    padding-right: 0 !important;
}
.third-box:nth-of-type(even) .front-third-text {
    padding-left: 0 !important;
    margin-left: 0 !important;
}
.front-third-img {
    width: 50% !important;
    flex-shrink: 0 !important;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    margin: 0 !important;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}
.front-third-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(43, 124, 214, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}
.front-third-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}
.third-box:hover .front-third-img img {
    transform: scale(1.05);
}
.third-box:nth-of-type(even) .front-third-img {
    margin-left: 0 !important;
}
.front-third-text p {
    width: 100%;
    color: var(--color-text);
    line-height: 2;
    font-size: 0.95em;
}
h3.third_title {
    font-size: 1.45em;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 18px;
    width: 100%;
    color: var(--color-primary) !important;
    font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif !important;
    letter-spacing: .02em;
}

/* ========== 新着情報 (front_topics) ========== */
.front_topics {
    padding: 7em 0 8em;
    background: #fff;
    position: relative;
}
.front-topics-inner {
    width: 86%;
    max-width: 1200px;
    margin: 0 auto;
}
h2.front_topics_title {
    font-size: 2em;
    margin-bottom: 50px;
    float: left;
    width: 24%;
    color: var(--color-primary) !important;
    font-weight: 700;
    line-height: 1.4;
    position: relative;
    padding-left: 24px;
}
h2.front_topics_title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50px;
    bottom: 8px;
    width: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}
h2.front_topics_title span {
    font-size: 0.5em;
    letter-spacing: .25em;
    display: block;
    margin-bottom: 14px;
    color: var(--color-accent) !important;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Noto Sans JP", sans-serif;
}
h2.headline-primary {
    display: none;
}
.top-blog, .top-news {
    padding-left: 3em;
    border-left: 1px solid var(--color-sky-deep);
    box-sizing: border-box;
    width: 76%;
    margin-left: 24%;
}
#index-news, #index-blog {
    display: block;
}

/* ========== Footer 共通 ========== */
.footer-gallery-title, .align1 {
    display: none;
}
.footer {
    margin-top: 0;
    background: linear-gradient(180deg, #f4f9fd 0%, #e8f3fc 100%);
    position: relative;
    overflow: hidden;
}
/*.footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50' preserveAspectRatio='none'><path fill='%23ffffff' d='M0,0 C360,40 720,40 1440,0 L1440,0 L0,0 Z'/></svg>") no-repeat center top;
    background-size: cover;
    z-index: 1;
}*/

/* ========== Footer Contact (会社情報＆メニュー) ========== */
.footer_contact_sec {
    padding: 7em 0 4em;
    position: relative;
    z-index: 2;
}
.footer_contact_inner {
    width: 86%;
    max-width: 1150px;
    margin: 0 auto;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 0;
    align-items: stretch;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}
.footer_contact_bg {
    width: 50%;
    flex-shrink: 0 !important;
    box-sizing: border-box;
    background: transparent;
    padding: 50px 45px;
    border-radius: 0;
    box-shadow: none;
    border-right: 1px solid var(--color-sky-deep);
}
.footer_menu_bg {
    width: 50%;
    flex-shrink: 0 !important;
    padding: 50px 45px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}
h2.footer-logo-name {
    font-size: 1.4em;
    margin-bottom: 24px;
    color: var(--color-primary) !important;
    font-weight: 700;
    letter-spacing: .03em;
    position: relative;
    padding-bottom: 16px;
}
h2.footer-logo-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}
dl.address_body {
    width: auto;
    font-size: 0.85em;
    line-height: 1.7;
    display: flex;
    margin-bottom: 12px;
    color: var(--color-text);
}
dl.address_body:last-of-type {
    margin-bottom: 24px;
}
dt.address_title {
    width: 28%;
    color: var(--color-accent);
    font-weight: 600;
    letter-spacing: .03em;
}
dd.address_text {
    width: 72%;
}
address.footer_tel {
    font-size: 1.85em;
    font-weight: 700;
    font-style: normal;
    letter-spacing: .03em;
    margin-bottom: 12px;
    font-family: "Noto Sans JP", sans-serif;
    color: var(--color-primary);
    display: block;
    line-height: 1.2;
}
address.footer_tel a {
    color: var(--color-primary) !important;
    transition: var(--transition-base);
}
address.footer_tel a:hover {
    color: var(--color-accent) !important;
}
span.footer_tel_sub {
    font-size: 0.45em;
    margin-right: 8px;
    letter-spacing: .15em;
    color: var(--color-accent);
    font-weight: 600;
    vertical-align: middle;
}
p.footer-con-caution {
    font-size: 0.78em;
    width: fit-content;
    position: relative;
    line-height: 1.6;
    padding-left: 16px;
    margin-bottom: 8px;
    box-sizing: border-box;
    color: var(--color-text-light);
}
p.footer-con-caution:last-of-type {
    margin-bottom: 0;
}
p.footer-con-caution::before {
    content: '※';
    position: absolute;
    left: 0;
    color: var(--color-coral);
}
a.footer_mail_but {
    width: 100%;
    max-width: 320px;
    padding: 18px 24px;
    margin-top: 20px;
    font-size: 0.92em;
    color: #fff !important;
    border: none;
    background: var(--gradient-accent);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    z-index: 1;
    font-family: "Noto Sans JP", sans-serif !important;
    border-radius: var(--radius-pill);
    box-shadow: 0 6px 18px rgba(43, 124, 214, 0.3);
    font-weight: 600;
    letter-spacing: .04em;
}
a.footer_mail_but::after {
    content: "\f0e0";
    font-family: design_plus;
    margin-left: 12px;
    font-size: 1.1em;
}
a.footer_mail_but:hover {
    color: #fff !important;
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(43, 124, 214, 0.4);
}

a.footer_line_but {
    width: 100%;
    max-width: 320px;
    padding: 18px 24px;
    margin-top: 20px;
    font-size: 0.92em;
    color: #fff !important;
    border: none;
    background: var(--gradient-accent);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    z-index: 1;
    font-family: "Noto Sans JP", sans-serif !important;
    border-radius: var(--radius-pill);
    box-shadow: 0 6px 18px rgba(43, 124, 214, 0.3);
    font-weight: 600;
    letter-spacing: .04em;
}
a.footer_line_but::after {
    content: "\e909";
    font-family: design_plus;
    margin-left: 12px;
    font-size: 1.1em;
    font-weight: 500;
}
a.footer_line_but:hover {
    color: #fff !important;
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(43, 124, 214, 0.4);
}

/* ========== Footer Menu ========== */
.footer-content-list {
    display: flex !important;
    flex-direction: row !important;
    gap: 30px;
    width: 100%;
}
ul.footer-content-list-outer {
    width: 50%;
    box-sizing: border-box;
}
ul.footer-content-list-outer:last-child {
    padding-left: 0;
    margin-bottom: 0;
}
ul.footer-content-list-outer li {
    font-size: 0.9em;
    line-height: 1.6;
    padding-left: 24px;
    margin-bottom: 16px;
    position: relative;
    transition: var(--transition-base);
}
ul.footer-content-list-outer li:last-of-type {
    margin-bottom: 0;
}
/* メニュー先頭マーカー：縦ライン + 矢印デザイン */
ul.footer-content-list-outer li::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 1.5px;
    background: var(--color-accent);
    border-radius: 1px;
    top: 12px;
    left: 0;
    transition: var(--transition-base);
}
ul.footer-content-list-outer li::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-top: 1.5px solid var(--color-accent);
    border-right: 1.5px solid var(--color-accent);
    transform: rotate(45deg);
    top: 9px;
    left: 9px;
    transition: var(--transition-base);
    opacity: 0;
}
ul.footer-content-list-outer li:hover::before {
    width: 20px;
    background: var(--color-coral);
}
ul.footer-content-list-outer li:hover::after {
    opacity: 1;
    left: 16px;
    border-color: var(--color-coral);
}
ul.footer-content-list-outer li a {
    color: var(--color-primary) !important;
    transition: var(--transition-base);
    font-weight: 500;
}
ul.footer-content-list-outer li:hover a,
ul.footer-content-list-outer li a:hover {
    color: var(--color-coral) !important;
    padding-left: 4px;
}
ul.footer-content-list-outer li a span{
    display: none;
}
.footer-content {
    display: none;
}

/* ========== Pagetop ========== */
.pagetop a {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent) !important;
    color: #fff !important;
    transition: var(--transition-base);
    border-radius: 50% !important;
    box-shadow: 0 6px 18px rgba(43, 124, 214, 0.35);
}
.pagetop a:before {
    content: '\ea3a';
    font-size: 15px;
    width: 15px;
    height: 30px;
    transition: var(--transition-base);
    color: #fff !important;
}
.pagetop a:hover {
    height: 50px;
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(43, 124, 214, 0.45);
}
.pagetop a:hover:before {
    height: 15px;
}
.copyright {
    font-size: 11px;
    color: var(--color-text-light) !important;
    letter-spacing: .03em;
}
.footer-bar01, .footer-bar01-inner {
    background: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(43, 124, 214, 0.1);
}
.footer-bar01-inner {
    padding: 18px 0;
}
.copyright {
    background: none !important;
}

/* ========== ふわっとフェードインアニメーション (.fade01 .fade02 用補強) ========== */
.fade01, .fade02 {
    transition: opacity 1s ease, transform 1s ease;
}

/* ========== レスポンシブ ========== */
@media only screen and (max-width: 1200px) {
    .header-youtube {
        height: calc(80vh - 80px);
    }
}
@media only screen and (max-width: 768px) {
    .header-youtube, .header-video, .top-slider {
        height: calc(60vh - 55px);
    }
    /* Concept */
    .front-original01-inner {
        flex-direction: column !important;
        gap: 30px;
    }
    .front-original01__title {
        width: 100% !important;
        height: auto;
        margin-left: 0;
        align-items: flex-start;
    }
    .front-original01__title::before {
        margin-bottom: 14px;
    }
    .front-original01__title h2 {
        font-size: 1.7em;
        line-height: 1.5;
    }
    .front-original01__text {
        width: 100% !important;
        margin-left: 0;
        padding: 30px;
    }
    /* 3カードを縦積み */
    .content02::after {
        height: auto;
    }
    .content02-inner {
        display: flex !important;
        flex-direction: column !important;
        padding: 3em 0 4em;
        gap: 24px;
    }
    .content02-item {
        width: 100% !important;
        margin-left: 0;
    }
    .content02-item:nth-of-type(2),
    .content02-item:nth-of-type(3) {
        top: 0;
    }
    /* 代表メッセージ */
    .front-original02__text {
        padding: 36px 30px;
    }
    /* 強み */
    .front_original03 {
        padding: 4em 0 4em;
        margin-top: 0;
    }
    .front_original03::before {
        font-size: 4em;
    }
    .third-box {
        padding: 30px;
        margin-bottom: 30px;
    }
    .third-inner {
        flex-direction: column !important;
        gap: 24px;
    }
    .third-box:nth-of-type(even) .third-inner {
        flex-direction: column !important;
    }
    .front-third-text {
        width: 100% !important;
        padding-bottom: 0;
    }
    .third-box:nth-of-type(odd) .front-third-text {
        padding-right: 0 !important;
    }
    .third-box:nth-of-type(even) .front-third-text {
        padding-left: 0 !important;
        margin-left: 0 !important;
    }
    .front-third-img {
        width: 100% !important;
    }
    .third-box:nth-of-type(even) .front-third-img {
        margin-left: 0 !important;
    }
    /* 新着情報 */
    .front_topics {
        padding: 4em 0 4em;
    }
    h2.front_topics_title {
        width: 100%;
        float: none;
        margin-bottom: 30px;
    }
    h2.front_topics_title::before {
        top: 40px;
    }
    .top-blog, .top-news {
        padding-left: 0;
        border: 0;
        width: 100%;
        margin-left: 0;
    }
    /* フッター */
    .footer_contact_inner {
        flex-direction: column !important;
        gap: 0;
    }
    .footer_contact_bg, .footer_menu_bg {
        width: 100%;
        padding: 30px 24px !important;
    }
    .footer_contact_bg {
        border-right: none;
        border-bottom: 1px solid var(--color-sky-deep);
    }
    .footer_menu_bg {
        padding-left: 24px;
    }
    dl.address_body {
        display: block;
    }
    dt.address_title, dd.address_text {
        width: 100%;
    }
    dt.address_title {
        margin-bottom: 4px;
    }
    .dp-footer-bar a {
        color: #fff !important;
    }
    .dp-footer-bar {
        background: var(--color-primary) !important;
        border-top: 1px solid #fff !important;
    }
    .dp-footer-bar-item + .dp-footer-bar-item {
        border-left: 1px solid rgba(255,255,255,0.3) !important;
    }
    .header-youtube, .header-video, .top-slider {
        height: calc(100vh - 55px);
    }
    .top-slider-wrapper::before {
        height: 30px;
    }
    .top-slider-wrapper::after {
        font-size: 11px;
        bottom: 60px;
    }
    .front_original01 {
        padding: 4em 0 3em;
    }
    .front_original02 {
        padding: 4em 0;
    }
    .front-original01__title h2 {
        font-size: 1.5em !important;
        margin-bottom: 20px !important;
        letter-spacing: 0;
    }
    .front-original01__image {
        aspect-ratio: 16 / 10;
    }
    .front-original01__image-badge {
        bottom: 14px;
        left: 14px;
        padding: 10px 16px;
    }
    .front-original01__image-badge .badge-num {
        font-size: 1.4em;
    }
    .front-original01__image-badge .badge-label {
        font-size: 0.65em;
    }
    .front-original01__text {
        padding: 24px 22px;
    }
    .front-original01__text p {
        margin-bottom: 12px;
        font-size: 0.95em;
    }
    .content02-inner {
        padding-top: 30px;
        padding-bottom: 50px;
    }
    .content02-img {
        height: 180px;
    }
    .content02-text__box {
        padding: 22px 22px 26px;
    }
    .content02-title {
        font-size: 1.1em;
    }
    .front-original02__text {
        padding: 28px 22px;
    }
    .front-original02__text h2 {
        font-size: 1.4em;
        margin-bottom: 18px;
        padding-left: 18px;
    }
    .front-original02__text p {
        margin-bottom: 12px;
    }
    .front_original03 {
        padding: 3em 0;
        margin-top: 0;
    }
    .third-box {
        padding: 24px 20px;
    }
    .front-third-text::before {
        font-size: 2.6em;
        margin-bottom: 8px;
    }
    .front-third-text::after {
        font-size: 0.65em;
        top: 22px;
        left: 60px;
    }
    h3.third_title {
        font-size: 1.18em;
        line-height: 1.55;
        margin-bottom: 12px;
    }
    .front_topics {
        padding: 3em 0 3em;
    }
    h2.front_topics_title {
        font-size: 1.55em;
        margin-bottom: 24px;
        padding-left: 18px;
    }
    h2.front_topics_title::before {
        top: 30px;
    }
    .footer_contact_sec {
        padding: 5em 0 2em;
    }
    h2.footer-logo-name {
        font-size: 1.2em;
    }
    address.footer_tel {
        font-size: 1.55em;
    }
    a.footer_mail_but {
        max-width: 100%;
        padding: 16px 20px;
        font-size: 0.88em;
    }
    .footer-content-list {
        gap: 20px;
    }
    ul.footer-content-list-outer {
        width: 50%;
        margin-bottom: 0;
    }
    .social-nav {
        width: 90%;
        margin: auto;
    }
}
@media only screen and (max-width: 485px) {
    .header-youtube, .header-video, .top-slider {
        height: calc(60vh - 60px);
    }
    .front-copy-img {
        width: 95%;
    }
    ul.footer-content-list-outer {
        width: 100%;
    }
    .footer-content-list {
        flex-direction: column !important;
    }
}
@media only screen and (max-height: 400px) {
    .top-slider {
        height: 100vh;
    }
}
/* ========== トップ・フッター END ========== */

/* 固定ページ */
.page .post-header {
    margin: 0px;
}
.content_inner {
    width: 86%;
    max-width: 1150px;
    margin: 0px auto;
    padding: 100px 0;
    box-sizing: border-box;
    position: relative;
}
.post-content h2 {
    font-size: 1.5em;
    line-height: 1.8;
    margin-bottom: 30px;
    letter-spacing: 0;
    padding-top: 0;
    font-weight: 500;
    text-align: center;
}
.post-content h2::after {
    content: "";
    display: block;
    background: #2b7cd6;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 70px;
    width: 30px;
    height: 1px;
    margin: 15px auto 0;
}
.post-content h3 {
    font-size: 1.2em;
    font-weight: 400;
    padding: 0;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #2b7cd6;
}
.post-content h4 {
    font-size: 1.1em;
    margin-bottom: 15px;
    line-height: 1.5;
    font-weight: 500;
    padding: 0;
}
.post-content table {
    margin: 0;
}
.post-content th, .post-content td {
    font-weight: 400;
    vertical-align: middle;
    line-height: 1.8;
    padding: 20px 2px 18px;
    background: none;
    border: 0;
    border-bottom: 1px #cfe1f3 dotted;
}
.post-content th {
    width: 20%;
    text-align: left;
    border-right: none;
}
.post-content td {
    border-left: none;
}
@media only screen and (max-width: 1200px) {
    .content_inner {
        padding: 80px 0;
    }
}
@media only screen and (max-width: 970px) {
    .post-content th, .post-content td {
        padding: 16px 2px 13px;
        line-height: 1.5;
        display: block;
        box-sizing: border-box;
        margin-top: -1px;
        width: 100% !important;
    }
    .post-content th {
        border-bottom: none;
        padding-bottom: 0;
    }
}
@media only screen and (max-width: 768px) {
    .content_inner {
        padding: 50px 0;
    }
    .post-content h2 {
        font-size: 1.3em;
        line-height: 1.5;
        margin-bottom: 20px;
    }
}
/* 固定ページ END */
/* お知らせ */
.archive.category .main, .post-template-default .main, .blog .main {
    padding-bottom: 100px;
}
h2.archive-title {
    font-weight: 400;
    color: #111;
    font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
}
.archive-header {
    margin: 90px 0px 40px;
}
.article03 {
    background: #f0f7fc;
    box-sizing: border-box;
}
.article03-content {
    padding: 15px 20px;
}
.article03-title {
    font-size: 0.8em;
    font-weight: 400;
    line-height: 1.5;
    color: #111;
}
.article03-category-item:hover, .article03 a:hover .article03-title {
    text-decoration: none;
}
.post-category {
    font-weight: 300;
}
.post-title, .post-meta {
    color: #111;
    font-weight: 500;
}
.nav-links01 {
    border-top: 1px dotted #cfe1f3;
    border-bottom: 1px dotted #cfe1f3;
}
.nav-links01-previous + .nav-links01-next {
    border-left: 1px dotted #cfe1f3;
}
.article01-title a {
    font-size: 0.9em;
    font-weight: 500;
    color: #111;
}
.nav-links01-previous a::before, .nav-links01-next a::after {
    font-size: 15px;
    font-weight: 500;
}
.post-meta-box {
    background: #f0f7fc;
}
.post-meta-box-item::before {
    color: #111;
}
.primary {
    width: 100%;
}
.headline-bar {
    color: #111;
    font-weight: 500;
    background: #f0f7fc;
}
@media only screen and (max-width: 1200px) {
    .archive.category .main, .post-template-default .main {
        padding-bottom: 80px;
    }
    .article03-title {
        margin: 0;
    }
}
@media only screen and (max-width: 970px) {
    .post-meta-box-item {
        padding: 8px 0px 8px 20px;
        margin-left: 15px;
    }
}
@media only screen and (max-width: 768px) {
    .archive.category .main, .post-template-default .main {
        padding-bottom: 30px;
    }
    .archive-header {
        margin: 50px 0px 30px;
    }
    h2.archive-title {
        font-size: 25px !important;
    }
    h1.post-title {
        font-size: 1.2em !important;
    }
    .nav-links01-previous a::before, .nav-links01-next a::after {
        color: #111;
    }
    .article04-title {
        font-size: 15px;
    }
    .nav-links01 {
        border: 1px dotted #cfe1f3;
    }
}
@media only screen and (max-width: 500px) {
    .post-title, .post-meta {
        text-align: left;
    }
    .article03-title {
        font-size: 10px;
        margin-top: 0;
    }
}
/* お知らせ END */
/* コンテンツ 共通 */
.flex-inner {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
}
p.caution {
    line-height: 1.5;
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
    box-sizing: border-box;
}
p.caution:last-of-type {
    margin-bottom: 0;
}
p.caution::before {
    content: '※';
    position: absolute;
    left: 0;
}
span.caution {
    position: relative;
    padding-left: 18px;
    box-sizing: border-box;
    display: inline-block;
}
span.caution::before {
    content: '※';
    position: absolute;
    left: 0;
    top: 0;
    color: #f35d63;
}
ul.list {
    margin: 0;
    list-style: none;
}
ul.list li {
    padding-left: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
    box-sizing: border-box;
    position: relative;
}
ul.list li:last-child {
    margin-bottom: 0;
}
ul.list li::before {
    content: '';
    position: absolute;
    background: #2b7cd6;
    width: 8px;
    height: 8px;
    top: 8px;
    left: 0;
}
ul.list.caution_list li::before {
    content: '※';
    background: none;
    top: 0;
}
/* コンテンツ 共通 END */
/* 業務内容 */
.service_sec {
    counter-reset: service-num;
    position: relative;
    background: var(--color-bg-soft);
    overflow: hidden;
}
.service_sec::before {
    content: 'Service';
    position: absolute;
    display: block;
    font-size: 8em;
    font-weight: 900;
    color: rgba(43, 124, 214, 0.04);
    top: 40px;
    right: 30px;
    z-index: 0;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: -.02em;
    line-height: 1;
}
.service_sec .content_inner {
    position: relative;
    z-index: 1;
}
.service_sec .service_box {
    margin-bottom: 50px;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 50px;
}
.service_box:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}
.service_box:last-of-type {
    margin-bottom: 0;
}
.service_box:nth-of-type(even) {
    flex-direction: row-reverse;
}
.service_text {
    position: relative;
    width: calc(50% - 25px);
    flex-shrink: 0;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    display: -webkit-flex;
    display: flex;
    padding: 0;
}
.service_text::before {
    counter-increment: service-num;
    content: "0" counter(service-num);
    font-size: 3.5em;
    font-weight: 900;
    margin-bottom: 14px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1;
    letter-spacing: -.02em;
}
.service_text::after {
    content: 'Service';
    position: absolute;
    font-size: 0.75em;
    color: var(--color-accent);
    letter-spacing: .25em;
    font-weight: 600;
    top: 30px;
    left: 75px;
    text-transform: uppercase;
    font-family: "Noto Sans JP", sans-serif;
}
.service_img {
    width: calc(50% - 25px);
    flex-shrink: 0;
    box-sizing: border-box;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}
.service_img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(43, 124, 214, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}
.service_img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}
.service_box:hover .service_img img {
    transform: scale(1.05);
}
.service_text h2 {
    font-size: 1.45em;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: left;
    width: 100%;
    line-height: 1.6;
    color: var(--color-primary) !important;
    font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif !important;
    letter-spacing: .02em;
}
.service_text h2::after {
    content: none;
}
.service_text p {
    width: 100%;
    line-height: 2;
    margin-bottom: 24px;
    color: var(--color-text);
    font-size: 0.95em;
}
.service_text p:last-child {
    margin-bottom: 0;
}
.case_box {
    padding: 22px 26px;
    width: 100%;
    background: var(--color-bg-soft);
    border-radius: var(--radius-sm);
    border: 2px solid #cfe1f3;
    box-sizing: border-box;
}
.case_box h3 {
    font-size: 0.95em;
    margin-bottom: 8px;
    color: var(--color-accent);
    font-weight: 700;
    letter-spacing: .04em;
}
.case_box p {
    font-size: 0.9em;
    line-height: 1.9;
    margin-bottom: 0;
    color: var(--color-text);
}
@media only screen and (max-width: 768px) {
    .service_sec::before {
        font-size: 4em;
    }
    .service_box {
        padding: 30px;
        margin-bottom: 30px;
        flex-direction: column;
        gap: 24px;
    }
    .service_box:nth-of-type(even) {
        flex-direction: column;
    }
    .service_text {
        width: 100%;
    }
    .service_img {
        width: 100%;
    }
}
/* 業務内容 END */
/* ご挨拶 */
.greeting__img {
    width: 35%;
    padding-right: 3em;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    z-index: -1;
}
.greeting__text {
    width: 65%;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
}
.greeting__text h2 {
    line-height: 1.5;
    text-align: left;
}
.greeting__text h2::after {
    content: none;
}
.greeting__text p {
    margin-bottom: 20px;
}
.greeting__text p:last-child {
    margin-bottom: 0;
}
.greeting__text h2, .greeting__text h3, .greeting__text p {
    width: 100%;
}
.licence_box {
    padding: 15px 25px;
    border: 1px dotted #cfe1f3;
    width: 100%;
    max-width: 350px;
    margin-right: auto;
    background: #f0f7fc;
    box-sizing: border-box;
}
@media only screen and (max-width: 1200px) {    
    .service_sec .service_box{
        padding: 20px;
    }
}
@media only screen and (max-width: 768px) {
    .greeting__img {
        width: 100%;
        max-width: 330px;
        margin: 0 auto;
        padding-right: 0;
    }
    .greeting__text {
        width: 100%;
        margin-top: 1.5em;
    }
    .service_img{
        margin-bottom: 15px;
    }
}
/* ご挨拶 END */
/* リフォームの流れ */
.flow_sec .content_inner {
    max-width: 900px;
}
.flow {
    padding-left: 70px;
    padding-top: 10px;
    padding-bottom: 40px;
    position: relative;
    box-sizing: border-box;
    z-index: 0;
}
.flow:last-of-type {
    padding-bottom: 0;
}
.flow::before {
    counter-increment: number 1;
    content: counter(number)"";
    position: absolute;
    text-align: center;
    width: 45px;
    height: 55px;
    line-height: 48px;
    border-top: 1px solid;
    border-bottom: 1px solid;
    font-size: 31px;
    font-weight: 400;
    font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
    color: #2b7cd6;
    background: #fff;
    box-sizing: border-box;
    top: 0;
    left: 0;
    z-index: 0;
}
.flow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 23px;
    width: 1px;
    height: 100%;
    background: #2b7cd6;
    z-index: -1;
}
.flow:last-of-type::after {
    display: none;
}
.flow h2 {
    font-size: 1.3em;
    line-height: 1.5;
    margin-bottom: 10px;
    text-align: left;
}
.flow h2::after {
    content: none;
}
.flow p {
    margin-bottom: 0;
}
a.flow_con_but {
    width: 100%;
    max-width: 300px;
    text-align: left;
    margin-top: 15px;
    padding: 10px 18px;
    font-weight: 400;
    border: 1px solid;
    display: block;
    box-sizing: border-box;
    position: relative;
}
a.flow_con_but::after {
    content: '\ea3c';
    font-family: 'design_plus';
    position: absolute;
    display: block;
    top: 15px;
    right: 18px;
    font-size: 11px;
}
a.flow_con_but:hover {
    color: #fff;
    background: #2b7cd6;
    border-color: #2b7cd6;
}
@media only screen and (max-width: 768px) {
    .flow {
        padding-top: 5px;
        padding-left: 55px;
        padding-bottom: 25px;
    }
    .flow::before {
        width: 35px;
        height: 45px;
        line-height: 38px;
        font-size: 30px;
    }
    .flow::after {
        left: 17px;
    }
}
/* リフォームの流れ END */
/* よくある質問*/
.faq_sec .content_inner {
    max-width: 1000px;
}
.faq {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px #cfe1f3 dotted;
    box-sizing: border-box;
}
.faq:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}
.faq h2 {
    font-size: 1.3em;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: left;
}
.faq h2::before {
    counter-increment: number 1;
    content: "Question."counter(number) "";
    display: block;
    font-size: 23px;
    font-weight: 400;
    letter-spacing: .05em;
    line-height: 1;
    margin-bottom: 15px;
    color: #2b7cd6;
}
.faq h2::after {
    content: none;
}
p.answer {
    margin-left: 50px;
}
p.answer {
    margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
    .faq {
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
    .faq h2 {
        margin-bottom: 15px;
    }
    .faq h2::before {
        font-size: 22px;
        margin-bottom: 10px;
    }
    p.answer {
        margin-left: 0;
    }
}
/* よくある質問 END */
/* 会社概要 */
.company_sec .content_inner {
    max-width: 850px;
}
table.company_tbl th {
    width: 25%;
}
span.caution.company_caution {
    font-size: 0.8em;
}
/* 会社概要 END */

/* ブログ記事の画像 */
.single .post-content img {
    width: auto;
}
/* ブログ記事の画像 END */
/* スマホ動画 */
video {display:block;}
#bg-video {
    right:0;
    bottom:0;
    z-index:-1;
}
#main-image {
    background-color: rgba(0, 0, 0, 0);
}
video {
    min-height: 20%;
    min-height: 20vh;
    min-width: 20%;
    min-width: 20vw;
    width:100%;
    height:auto;
    background: url('/wp-content/uploads/2024/03/main_img-scaled.jpg') no-repeat;
    background-attachment: fixed;
    background-position: center center;
}
.map_sec iframe {
    height: 400px;
}
@media only screen and (max-width: 768px) {
    .map_sec iframe {
        height: 250px;
    }
}

/* 講師紹介 */
.teacher__inner {
    margin-bottom: 60px;
}
.teacher__inner:last-of-type {
    margin-bottom: 0;
}
.teacher__img {
    width: 30%;
    padding-right: 2.5em;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    z-index: -1;
}
.teacher__text {
    width: 70%;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
}
.teacher__text h2, .teacher__text p {
    width: 100%;
    text-align: left;
}
.teacher__text h2::after {
    margin-left: 0;
}
.teacher__text p {
    margin-bottom: 15px;
}
.teacher__text p:last-of-type {
    margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
    .teacher__inner {
        margin-bottom: 30px;
    }
    .teacher__img {
        width: 100%;
        max-width: 330px;
        margin: auto;
        padding-right: 0;
    }
    .teacher__text {
        width: 100%;
        margin-top: 1.5em;
    }
    .teacher__text h2 {
        width: fit-content;
        margin: 0 auto 20px;
    }
    .teacher__text h2::after {
        margin: 10px auto 0;
    }
}
/* 講師紹介 END */
.flex-inner {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
}

.president{
    margin:30px 0 0 auto;
}

.president p{
    margin:0;
    padding:0;
    line-height:1.5;
}
.president p.name{
    font-size:1.5rem;
}

/* お問い合わせ */
.contact_sec .content_inner, .mail_sec .content_inner {
    max-width: 1000px;
}
.contact_sec .content_inner {
    padding-bottom: 0;
}
.con__inner {
    margin-bottom: 40px;
}
.con__inner:last-of-type {
    margin-bottom: 0;
}
.con__inner p {
    margin-bottom: 0;
}
address.con_tel {
    font-size: 2.5em;
    font-style: normal;
    letter-spacing: .05em;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1;
    color: var(--color-primary);
    text-align: center;
}
address.con_tel a {
    color: #3eb926;
}
span.con_tel_sub {
    font-size: 0.5em;
    letter-spacing: 1px;
    margin-right: 5px;
    color: #151515;
}
p.con-time {
    width: fit-content;
    margin: auto;
    margin-bottom: 10px;
    line-height: 1.5;
    font-weight: 600;
}
p.con_time:last-of-type {
    margin-bottom: 0;
}
p.con-time span {
    display: inline-block;
    margin-right: 10px;
    color: #ff870b;
}
p.con_caution {
    font-size: 0.85em;
    width: fit-content;
    margin: 0 auto 10px;
}
.mail_info_box {
    margin-bottom: 30px;
}
.mail_info_box p {
    font-size: 0.9em;
    line-height: 2;
    margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
    address.con_tel {
        font-size: 1.8em;
    }
}
/* お問い合わせ END */
/* お問い合わせフォーム */
span.required {
    font-size: 0.7em;
    line-height: 1.5;
    letter-spacing: 0;
    display: inline-block;
    margin-left: 8px;
    margin-bottom: 8px;
    padding: 3px 5px;
    border-radius: 2px;
    color: #fff;
    background: #ff5353;
}
.wpcf7 {
    border: none;
    background: none;
    margin-bottom: 0 !important;
}
.wpcf7 input, .wpcf7 textarea {
    background: #efefef;
    border: 0;
    padding: 18px;
    box-sizing: border-box;
}
.wpcf7 form {
    margin: 0;
}
.wpcf7 form p {
    font-size: 15px;
    font-weight: 700;
    line-height: 2.5;
    margin-bottom: 22px;
}
.wpcf7 form p:last-of-type {
    margin-bottom: 0;
}
.wpcf7-list-item {
    margin-left: 0;
    margin-top: 8px;
    line-height: 1.5;
    font-weight: 500;
}
.wpcf7 select {
    background: #fff;
}
.wpcf7 input.wpcf7-submit {
    margin-top: 30px;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    font-size: 1.2em;
    font-weight: 700;
    height: 75px;
    color: #fff;
    background: var(--color-primary);
    border-radius: 100px;
    transition: all .5s;
    font-family: 'Quicksand', 'Noto Sans JP', "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.wpcf7 input.wpcf7-submit:hover {
    color: #fff;
    background: #2b7cd6;
    transform: translateY(8px);
}
.wpcf7 input:focus, .wpcf7 textarea:focus {
    box-shadow: none !important;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
    border: none;
    background: #ffd8df;
    line-height: 1.8;
    padding: 15px 20px;
}
@media only screen and (max-width: 767px) {
    .wpcf7 input.wpcf7-submit {
        margin-top: 20px;
    }
}
/* お問い合わせフォーム END */
/* ========================================================
   ファーストビュー (FV) - DayOnes
   ======================================================== */
.top-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.dayones-fv {
    position: relative;
    width: 100%;
    min-height: 720px;
    height: calc(100vh - 80px);
    max-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--color-primary-deep);
}

/* 背景画像 */
.dayones-fv__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.dayones-fv__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: dayonesFvZoom 20s ease-out infinite alternate;
}
@keyframes dayonesFvZoom {
    0% { transform: scale(1.0); }
    100% { transform: scale(1.12); }
}

/* グラデーションオーバーレイ */
.dayones-fv__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(135deg, rgba(16, 42, 82, 0.85) 0%, rgba(26, 58, 110, 0.55) 50%, rgba(43, 124, 214, 0.35) 100%),
        radial-gradient(circle at 75% 50%, rgba(255, 138, 101, 0.18) 0%, transparent 60%);
}

/* 装飾用バブル */
.dayones-fv__bubble {
    position: absolute;
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
    filter: blur(40px);
}
.dayones-fv__bubble--01 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(91, 164, 232, 0.35) 0%, transparent 70%);
    top: -120px;
    right: -120px;
    animation: dayonesFvFloat 12s ease-in-out infinite;
}
.dayones-fv__bubble--02 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 138, 101, 0.25) 0%, transparent 70%);
    bottom: -80px;
    left: 10%;
    animation: dayonesFvFloat 14s ease-in-out infinite reverse;
}
.dayones-fv__bubble--03 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(91, 164, 232, 0.3) 0%, transparent 70%);
    top: 30%;
    left: -80px;
    animation: dayonesFvFloat 10s ease-in-out infinite;
}
@keyframes dayonesFvFloat {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -40px); }
    66% { transform: translate(-20px, 30px); }
}

/* インナー */
.dayones-fv__inner {
    position: relative;
    z-index: 10;
    width: 88%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}
.dayones-fv__content {
    max-width: 720px;
}

/* リード（小タグ） */
.dayones-fv__lead {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px !important;
    padding: 8px 22px 8px 18px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.85em !important;
    font-weight: 500;
    letter-spacing: .08em;
    opacity: 0;
    transform: translateY(20px);
    animation: dayonesFvFadeIn 0.8s 0.2s ease-out forwards;
}
.dayones-fv__lead-mark {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-coral);
    box-shadow: 0 0 0 0 rgba(255, 138, 101, 0.8);
    animation: dayonesFvPulse 2s ease-out infinite;
    flex-shrink: 0;
}
@keyframes dayonesFvPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 138, 101, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(255, 138, 101, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 138, 101, 0); }
}

/* キャッチコピー */
.dayones-fv__catch {
    color: #fff !important;
    font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif !important;
    font-weight: 900 !important;
    font-size: 4.4em !important;
    line-height: 1.25 !important;
    letter-spacing: .02em;
    margin: 0 0 30px !important;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.dayones-fv__catch-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: dayonesFvFadeIn 0.9s ease-out forwards;
}
.dayones-fv__catch-line:nth-child(1) { animation-delay: 0.4s; }
.dayones-fv__catch-line:nth-child(2) { animation-delay: 0.55s; }
.dayones-fv__catch-line:nth-child(3) { animation-delay: 0.7s; }
.dayones-fv__catch-strong {
    background: linear-gradient(180deg, transparent 65%, rgba(255, 138, 101, 0.55) 65%);
    padding: 0 6px;
}
.dayones-fv__catch-line--accent {
    background: linear-gradient(120deg, #fff 0%, #cfe1f3 50%, #5ba4e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent !important;
    position: relative;
    text-shadow: none;
}
.dayones-fv__catch-dot {
    color: var(--color-coral);
    -webkit-text-fill-color: var(--color-coral);
}

/* サブコピー */
.dayones-fv__sub {
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 1.1em !important;
    line-height: 1.9 !important;
    margin: 0 0 36px !important;
    font-weight: 500;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    animation: dayonesFvFadeIn 0.9s 0.85s ease-out forwards;
}

/* 強みバッジ */
.dayones-fv__badges {
    display: flex !important;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 40px !important;
    padding: 0 !important;
    list-style: none;
}
.dayones-fv__badge {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 10px 18px 10px 14px !important;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.92em;
    transition: var(--transition-base);
    opacity: 0;
    transform: translateY(20px);
    animation: dayonesFvFadeIn 0.7s ease-out forwards;
}
.dayones-fv__badge:nth-child(1) { animation-delay: 1.0s; }
.dayones-fv__badge:nth-child(2) { animation-delay: 1.15s; }
.dayones-fv__badge:nth-child(3) { animation-delay: 1.3s; }
.dayones-fv__badge::before {
    content: none !important;
}
.dayones-fv__badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.35);
}
.dayones-fv__badge-icon {
    font-size: 1.3em;
    line-height: 1;
}
.dayones-fv__badge-text {
    font-weight: 500;
    letter-spacing: .03em;
}
.dayones-fv__badge-text strong {
    color: var(--color-coral);
    font-weight: 800;
    font-size: 1.05em;
    margin-right: 2px;
}

/* CTA */
.dayones-fv__ctas {
    display: flex !important;
    flex-wrap: wrap;
    gap: 16px;
    opacity: 0;
    animation: dayonesFvFadeIn 0.8s 1.5s ease-out forwards;
}
.dayones-fv__cta {
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 40px !important;
    border-radius: var(--radius-pill);
    text-decoration: none !important;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    min-width: 280px;
    line-height: 1.3 !important;
}
.dayones-fv__cta-sub {
    font-size: 0.72em;
    letter-spacing: .15em;
    margin-bottom: 4px;
    opacity: 0.9;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
}
.dayones-fv__cta-main {
    font-size: 1.15em;
    font-weight: 700;
    letter-spacing: .03em;
}
.dayones-fv__cta--line {
    background: linear-gradient(135deg, #06c755 0%, #04a647 100%);
    color: #fff !important;
    box-shadow: 0 10px 30px rgba(6, 199, 85, 0.35);
}
.dayones-fv__cta--line:hover {
    background: linear-gradient(135deg, #04a647 0%, #038c3c 100%);
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(6, 199, 85, 0.45);
}
.dayones-fv__cta--tel {
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary-deep) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.dayones-fv__cta--tel:hover {
    background: #fff;
    color: var(--color-primary-deep) !important;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}
.dayones-fv__cta--tel .dayones-fv__cta-main {
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: .04em;
}
.dayones-fv__cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateY(-50%) skewX(-25deg);
    transition: left 0.7s ease;
}
.dayones-fv__cta:hover::before {
    left: 200%;
}

/* スクロールインジケーター */
.dayones-fv__scroll {
    position: absolute;
    bottom: 30px;
    left: calc(50% - 29px);
    /*transform: translateX(-50%);*/
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 11px;
    letter-spacing: .25em;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    opacity: 0;
    animation: dayonesFvFadeIn 0.8s 2s ease-out forwards;
    transition: opacity 0.3s ease;
}
.dayones-fv__scroll:hover {
    color: #fff !important;
}
.dayones-fv__scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent);
    position: relative;
    overflow: hidden;
}
.dayones-fv__scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, transparent, #fff);
    animation: dayonesFvScrollLine 2s ease-in-out infinite;
}
@keyframes dayonesFvScrollLine {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}

/* 共通：フェードインキーフレーム */
@keyframes dayonesFvFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* レスポンシブ */
@media only screen and (max-width: 1024px) {
    .dayones-fv__catch {
        font-size: 3.5em !important;
    }
}
@media only screen and (max-width: 768px) {
    .dayones-fv {
        min-height: 0;
        height: auto;
        aspect-ratio: 4 / 3; /* スマホ：動画用に少し横長（縦＝横の75%） */
        max-height: none;
        align-items: stretch;
    }
    .dayones-fv__inner {
        padding: 30px 0 80px; /* 下部はCTA配置スペース */
        display: flex;
        flex-direction: column;
        width: 88%;
    }
    .dayones-fv__content {
        display: flex;
        flex-direction: column;
        flex: 1;
        width: 100%;
        max-width: none;
    }
    .dayones-fv__lead {
        font-size: 0.78em !important;
        padding: 6px 18px 6px 14px;
        margin-bottom: 20px !important;
    }
    .dayones-fv__catch {
        font-size: 2.4em !important;
        line-height: 1.3 !important;
        margin-bottom: 22px !important;
    }
    /* スマホではサブキャッチを非表示（動画用に縦スペース確保） */
    .dayones-fv__sub {
        display: none !important;
    }
    .dayones-fv__badges {
        gap: 8px;
        margin-bottom: 28px !important;
    }
    .dayones-fv__badge {
        font-size: 0.78em;
        padding: 8px 14px 8px 12px !important;
    }
    .dayones-fv__badge-icon {
        font-size: 1.1em;
    }
    .dayones-fv__ctas {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-top: auto; /* CTAをFV下部に寄せる */
    }
    .dayones-fv__cta {
        min-width: 0;
        width: 100%;
        padding: 14px 24px !important;
    }
    .dayones-fv__cta-main {
        font-size: 1em;
    }

    .dayones-fv__scroll-line {
        height: 32px;
    }
    .dayones-fv__bubble--01 {
        width: 280px;
        height: 280px;
    }
    .dayones-fv__bubble--02 {
        width: 220px;
        height: 220px;
    }
    .dayones-fv__bubble--03 {
        display: none;
    }
}
@media only screen and (max-width: 480px) {
    .dayones-fv__catch {
        font-size: 2em !important;
    }
    .dayones-fv__badges {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* ファーストビュー END */

@media screen and (min-width: 768px){
    .pcbr { display:block; }
    .spbr { display:none; }
}
@media screen and (max-width: 767px){
    .pcbr { display:none; }
    .spbr { display:block; }
}

.post-content a.contact-line-but {
    text-align: left;
    display: block;
    line-height: 60px;
    max-width: 350px;
    margin: 20px auto;
    background: var(--color-primary);
    color: #ffffff;
    box-sizing: border-box;
    padding: 0 25px;
    position: relative;
    border-radius: 30px;
}
.post-content a.contact-line-but:hover{
    color: #ffffff;
    background: #2b7cd6;
}
a.contact-line-but::after {
    font-family: 'design_plus';
    content: '\e909';
    font-weight: 500;
    position: absolute;
    right: 25px;
    font-size: 30px;
}