@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* ==========================================================================
   Global Variables & Base Styles
   ========================================================================== */

.top #content {
    padding-top: 0px;
}

:root {
    /* Colors */
    --c-main: #1A365D;
    /* Navy */
    --c-accent: #718096;
    /* Gray */
    --c-bg: #F8FAFC;
    /* Background */
    --c-text: #2D3748;
    /* Text */
    --c-white: #FFFFFF;

    /* Typography */
    --font-base: 'Noto Sans JP', sans-serif;
    --font-mincho: 'Shippori Mincho', serif;
}

body {
    font-family: var(--font-base);
    color: var(--c-text);
    background-color: var(--c-bg);
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-mincho);
    font-weight: 700;
    color: var(--c-main);
    line-height: 1.4;
}

/* Layout Utilities */
.l-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.l-section {
    padding: 80px 0;
}

@media screen and (max-width: 768px) {
    .l-section {
        padding: 60px 0;
    }
}

/* SWELL Overrides (Minimal) */
.l-main {
    padding-top: 0 !important;
    /* Header overlap or custom hero adjustment if needed */
    width: 100% !important;
    /* Force full width */
    max-width: none !important;
}

/* Force Sidebar Hidden */
#sidebar,
.l-sidebar {
    display: none !important;
}

.l-content {
    width: 100% !important;
    max-width: none !important;
    display: block !important;
    /* Override flex/grid if any */
}

/* Utility to hide SWELL generic page titles if strictly custom implemented */
.c-pageTitle {
    display: none;
}

/* Section Title Style */
.c-section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.c-section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--c-accent);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.c-section-title__sub {
    display: block;
    font-size: 1rem;
    color: var(--c-accent);
    font-family: var(--font-base);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Page Header */
.c-page-header {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 80px;
}

.c-page-header.no-thumb {
    background-color: var(--c-main);
}

.c-page-header__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.4));
    z-index: 1;
}

.c-page-header__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.c-page-header__en {
    font-family: var(--font-base);
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
    opacity: 0.9;
    font-weight: 500;
    position: relative;
}

.c-page-header__en::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.7);
    margin: 8px auto 0;
}

.c-page-header__jp {
    font-family: var(--font-mincho);
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0;
    line-height: 1.2;
    color: #fff;
}

/* Responsive adjustment */
@media screen and (max-width: 768px) {
    .c-page-header {
        height: 250px;
        margin-bottom: 60px;
    }

    .c-page-header__jp {
        font-size: 2rem;
    }
}