@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
*/

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600&family=Cormorant+Garamond:wght@600&display=swap');

:root {
    --color-main: #0A192F;
    --color-accent: #D4AF37;
    --color-text: #333333;
    --color-bg-sub: #F8F9FA;
    --color-footer-text: #E6F1FF;
    --font-base: 'Noto Sans JP', sans-serif;
    --font-serif: 'Noto Serif JP', serif;
    --font-en: 'Cormorant Garamond', serif;
    --width-content: 1100px;

    /* ヘッダーの高さ設定 */
    --header-height: 120px;
    --header-height-scrolled: 70px;
}

/* ==================================================
   Global & Utility
   ================================================== */
body {
    color: var(--color-text);
    font-family: var(--font-base);
}

h1,
h2,
h3,
.c-sec-title {
    font-family: var(--font-serif) !important;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.8;
    text-align: center;
}



.c-sec-title-en {
    color: var(--color-accent);
    font-family: var(--font-en);
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.c-sec-title-en::before {
    content: "";
    display: block;
    width: 1px;
    height: 40px;
    background-color: var(--color-accent);
}

/* Button Utility */
.c-btn {
    display: inline-block;
    padding: 0.8em 2em;
    background-color: var(--color-accent);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 2px;
    transition: opacity 0.3s;
}

.c-btn:hover {
    opacity: 0.8;
}

.c-btn--outline {
    background-color: transparent;
    border: 2px solid #0A192F;
    color: #333;
}

.c-btn--left {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.c-btn--right {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ==================================================
   Top Page Scoped Styles
   ================================================== */
.c-top-main {
    width: 100%;
    overflow-x: hidden;
}

/* Section Common */
body.home .l-content.l-container {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
}

body.home {
    padding-top: 0 !important;
}

@media (min-width: 768px) {
    .c-top-section {
        padding: 120px 0;
    }
}


.c-top-inner {
    max-width: var(--width-content);
    margin: 0 auto;
    width: 100%;
}

/* 1. Hero */
.c-top-hero {
    position: relative;
    height: 90vh;
    width: 100%;
	font-family: var(--font-serif) !important;
    /* Background moves to slideshow specific classes */
    background-color: var(--color-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.c-top-hero__title {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.c-top-hero__sub {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.c-hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.c-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out, transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1);
    z-index: 0;
}

.c-hero-slide.is-active {
    opacity: 1;
    transform: scale(1.1);
    /* Ken Burns scale */
    z-index: 1;
}

.c-top-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
    /* Above slideshow */
}

/* Explicitly stack content above slideshow and overlay */
.c-top-hero__content {
    position: relative;
    z-index: 3;
    /* Highest priority */
    text-align: center;
    padding: 0 20px;
}

/* Scroll Indicator */
.c-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: #fff;
    font-family: var(--font-en);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 10px;
}

.c-scroll-down::after {
    content: "";
    display: block;
    width: 1px;
    height: 60px;
    background: #fff;
    animation: scrollPath 2s ease-in-out infinite;
    transform-origin: top;
}

@keyframes scrollPath {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* 2. Mission */
.c-top-mission {
    background-color: var(--color-main);
    color: #fff;
    text-align: center;
}

.c-top-mission__body {
    max-width: 800px;
    margin: 3rem auto 0;
    line-height: 2;
    text-align: left;
}

@media (min-width: 768px) {
    .c-top-mission__body {
        text-align: center;
        font-size: 1.1rem;
    }
}

/* 3. Services */
.c-top-services {
    background-color: #fff;
}

.c-top-services__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .c-top-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.c-service-card {
    background: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    text-align: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.c-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-card__icon {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.c-service-card:hover .service-card__icon img {
    transform: scale(1.05);
}

.c-service-card__title {
    font-size: 1.25rem;
    margin: 1.5rem 2rem 1rem;
    color: var(--color-main);
    font-family: var(--font-serif);
    font-weight: 500;
}

.c-service-card__desc {
    font-size: 0.95rem;
    color: #666;
    margin: 0 2rem 1.5rem;
    line-height: 1.8;
    flex-grow: 1;
}

.c-service-card__link {
    display: inline-block;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    font-family: var(--font-en);
    letter-spacing: 0.1em;
    margin: 0 2rem 2rem;
    position: relative;
    padding-right: 20px;
    transition: margin-left 0.3s;
}

.c-service-card__link::after {
    content: "→";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: right 0.3s;
}

.c-service-card__link:hover {
    opacity: 0.8;
}

.c-service-card__link:hover::after {
    right: -5px;
}

/* Parallax Section */
.c-parallax-section {
    width: 100%;
    height: 400px;
    background-image: url('https://ship-inspection.com/wp-content/uploads/2025/12/背景画像01.jpeg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* 4. Strengths */
.c-top-strengths {
    background-color: var(--color-main);
    color: #E6F1FF;
    position: relative;
    z-index: 1;
}

.c-strengths-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .c-strengths-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.c-strength-card {
    position: relative;
    background-color: rgba(17, 34, 64, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem 2rem;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

.c-strength-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.c-strength-card__bg-number {
    position: absolute;
    top: -20px;
    right: 0;
    font-family: var(--font-en);
    font-size: 8rem;
    font-weight: 700;
    color: #fff;
    opacity: 0.03;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.c-strength-card__content {
    position: relative;
    z-index: 1;
}

.c-strength-card__head {
    margin-bottom: 1.5rem;
}

.c-strength-card__en {
    display: block;
    color: var(--color-accent);
    font-family: var(--font-en);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.c-strength-card__jp {
    font-size: 1.4rem;
    font-family: var(--font-serif);
    color: #fff;
    font-weight: 500;
    line-height: 1.4;
}

.c-strength-card__desc {
    font-size: 0.95rem;
    color: #CCD6F6;
    line-height: 2;
    text-align: left;
}

/* 5. Profile */
.c-top-profile {
    background-color: #fff;
}

.c-profile-box {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .c-profile-box {
        flex-direction: row;
        align-items: center;
        gap: 5rem;
    }

    .c-profile-box__img {
        width: 35%;
        position: relative;
    }

    .c-profile-box__txt {
        width: 65%;
    }
}

.c-top-profile-sp {
    display: none;
}

.c-profile-box__img img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    box-shadow: 20px 20px 0 var(--color-bg-sub);
    filter: sepia(10%);
    transition: filter 0.3s, transform 0.3s;
}

.c-profile-box:hover .c-profile-box__img img {
    filter: sepia(0%);
    transform: translate(-5px, -5px);
}

.c-profile-box__name {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--color-main);
    font-family: var(--font-serif);
    position: relative;
    display: inline-block;
}

.c-profile-box__name::after {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background: var(--color-accent);
    margin-top: 10px;
}

.c-profile-box__desc {
    line-height: 2.2;
    margin-bottom: 2.5rem;
    color: #555;
    font-size: 0.95rem;
}

/* 6. News */
.c-top-news {
    background-color: #fff;
    padding-top: 0;
}

.c-news-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.c-news-item {
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}

.c-news-item a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--color-text);
    transition: color 0.2s;
}

.c-news-item a:hover {
    color: var(--color-accent);
}

.c-news-date {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0.3rem;
}

@media (min-width: 768px) {
    .c-news-item a {
        flex-direction: row;
        align-items: center;
    }

    .c-news-date {
        margin-bottom: 0;
        margin-right: 2rem;
        min-width: 100px;
    }
}

/* 7. Contact */
.c-top-contact {
    background-color: var(--color-main);
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    text-align: center;
}

.c-top-contact__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.6);
    z-index: 1;
}

.c-top-contact__inner {
    position: relative;
    background-color: #fff;
    opacity: 0.8;
    z-index: 2;
    color: #333;
    padding: 50px 0px;
}

.c-top-contact__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.c-top-contact__desc {
    margin-bottom: 2.5rem;
}

.c-top-contact__btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .c-top-contact__btns {
        flex-direction: row;
        justify-content: center;
    }
}

/* ==================================================
   Custom Header Styles (センター配置版)
   ================================================== */
:root {
    --header-h: 120px;
    --header-h-scroll: 70px;
    --color-gold: #BFA57D;
    --color-gold-hover: #a89060;
    --color-dark: #0A192F;
}

/* ヘッダー全体の枠 */
.l-custom-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 0;
}

/* ヘッダー内部 */
.l-custom-header__inner {
    position: relative;
    /* 中央配置の基準点 */
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    height: var(--header-h);
    display: flex;
    justify-content: space-between;
    /* 両端配置 */
    align-items: center;
    padding: 0 20px;
    transition: height 0.3s ease;
    background-color: #fff;
}

/* スクロール時の高さ短縮 */
.l-custom-header.is-scrolled .l-custom-header__inner {
    height: var(--header-h-scroll);
}

/* 1. 左側：ロゴ */
.l-header-left {
    z-index: 2;
    /* メニューより手前に */
}

.c-custom-logo {
    display: block;
    line-height: 0;
}

.c-custom-logo img {
    height: 80px;
    width: auto;
    display: block;
    transition: height 0.3s;
}

.l-custom-header.is-scrolled .c-custom-logo img {
    height: 40px;
}

/* 2. 中央：ナビゲーションメニュー（絶対配置でど真ん中へ） */
.c-header-nav {
    position: absolute;
    /* 強制的に配置 */
    left: 50%;
    transform: translateX(-50%);
    /* 自身の幅の半分だけ戻して完全中央へ */
    z-index: 1;
    white-space: nowrap;
    /* 折り返し禁止 */
}

.c-header-nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.c-header-nav__list>li {
    position: relative;
    margin: 0;
    padding: 0 1.2rem;
}

/* 区切り線（点線） */
.c-header-nav__list>li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    border-right: 1px dotted #ccc;
}

/* リンク文字設定 */
.c-header-nav__list>li>a {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-decoration: none !important;
    line-height: 1.4 !important;
    color: var(--color-dark) !important;
    transition: opacity 0.3s;
}

.c-header-nav__list>li>a:hover {
    opacity: 0.7;
    color: var(--color-gold) !important;
}

/* 英語部分 */
.u-en-title {
    color: var(--color-gold) !important;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
}

/* 日本語部分 */
.u-jp-title {
    font-family: "Noto Serif JP", serif;
    font-size: 0.85rem;
    font-weight: 600;
}

/* 3. 右側：ボタンエリア */
.l-header-right {
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 2;
    margin-left: auto;
    /* 右端へ */
}

/* お問い合わせボタン */
.c-header-btn {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: var(--color-gold) !important;
    color: #fff !important;
    text-decoration: none !important;
    height: 100%;
    width: 120px;
    margin-left: 20px;
    margin-right: -20px;
    /* 画面右端に張り付き */
    transition: background-color 0.3s, width 0.3s;
}

.l-custom-header.is-scrolled .c-header-btn {
    width: 90px;
}

.c-header-btn:hover {
    background-color: var(--color-gold-hover) !important;
}

.c-header-btn__icon svg {
    width: 24px;
    height: 24px;
    margin-bottom: 5px;
}

.c-header-btn__text {
    font-size: 0.9rem;
    font-weight: bold;
}

/* ハンバーガーメニュー（PCでは非表示） */
.c-custom-toggle {
    display: none !important;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 10001;
}

.c-custom-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-dark);
    transition: 0.3s;
}

.c-custom-toggle.is-active span {
    background: #fff !important;
}

/* SPドロワー（PCでは非表示） */
.c-custom-drawer {
    display: none;
    /* 基本非表示 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-dark);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.c-custom-drawer.is-active {
    opacity: 1;
    visibility: visible;
}

.c-custom-drawer__menu {
    list-style: none;
    padding: 0;
    text-align: center;
}

.c-custom-drawer__menu li {
    margin-bottom: 20px;
}

.c-custom-drawer__menu a {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
}


/*====================================================
フッター
======================================================*/

/* --- 縦並び（センター）フッター設定 --- */
.my-vertical-footer {
    background-color: #0A192F;
    /* Deep Ocean */
    color: #E6F1FF;
    padding: 80px 0 30px;
    text-align: center;
    /* 全体を中央寄せ */
    font-family: 'Noto Sans JP', sans-serif;
    border-top: 4px solid #D4AF37;
    /* 上部のアクセントライン */
}

/* 1. ロゴ */
.c-v-footer__logo img {
    max-width: 220px;
    /* 少し大きめに配置 */
    height: auto;
    background-color: #fff;
    margin-bottom: 30px;
    padding: 15px 30px;
    filter: brightness(1.1);
}

/* 2. 住所・連絡先 */
.c-v-footer__info {
    margin-bottom: 40px;
    font-family: 'Noto Serif JP', serif;
    /* 明朝体で品格を */
}

.c-v-footer__address {
    font-size: 1rem;
    color: #ccd6f6;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

/* 電話番号周り */
.c-v-footer__contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.c-v-footer__contact .tel-link {
    font-size: 1.8rem;
    color: #D4AF37;
    /* ゴールド */
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.05em;
    transition: opacity 0.3s;
}

.c-v-footer__contact .tel-link:hover {
    opacity: 0.8;
}

.c-v-footer__contact .label {
    font-size: 0.8rem;
    color: #E6F1FF;
    margin-right: 8px;
    vertical-align: middle;
}

.c-v-footer__contact .hours {
    font-size: 0.85rem;
    color: #8892b0;
}

/* お問い合わせボタン */
.c-v-footer__btn {
    display: inline-block;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    padding: 10px 40px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    letter-spacing: 0.1em;
}

.c-v-footer__btn:hover {
    background-color: #D4AF37;
    color: #0A192F;
}

/* 装飾ライン */
.c-v-footer__line {
    width: 60px;
    height: 1px;
    background-color: rgba(212, 175, 55, 0.4);
    margin: 0 auto 40px;
    /* 中央配置 */
}

/* 3. メニュー */
.c-v-footer__nav {
    margin-bottom: 40px;
}

.c-v-footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    /* 中央寄せ */
    flex-wrap: wrap;
    gap: 15px 30px;
    /* メニュー間の余白 */
}

.c-v-footer__nav-list li {
    margin: 0;
}

.c-v-footer__nav-list a {
    color: #E6F1FF;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    transition: all 0.3s;
    position: relative;
    padding-bottom: 5px;
}

/* メニューのホバーエフェクト */
.c-v-footer__nav-list a:hover {
    color: #D4AF37;
    opacity: 1;
}

.c-v-footer__nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 1px;
    background-color: #D4AF37;
    transition: width 0.3s ease;
}

.c-v-footer__nav-list a:hover::after {
    width: 100%;
}

/* 4. コピーライト */
.c-v-footer__copyright {
    font-size: 0.7rem;
    color: #556080;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.05em;
}

/* --- スマホ対応 --- */
@media (max-width: 768px) {
    .my-vertical-footer {
        padding: 60px 0 30px;
    }

    .c-v-footer__address {
        font-size: 0.9rem;
        padding: 0 10px;
        line-height: 1.6;
    }

    .c-v-footer__contact {
        flex-direction: column;
        /* スマホでは電話番号と時間を縦積みに */
        gap: 5px;
    }

    .c-v-footer__contact .tel-link {
        font-size: 1.6rem;
    }

    .c-v-footer__nav-list {
        flex-direction: column;
        /* メニューも縦積みに */
        gap: 15px;
    }
}


/* ==================================================
   スマホ表示（959px以下）
   ================================================== */
@media (max-width: 959px) {

    /* PC用要素を消す */
    .u-pc-only {
        display: none !important;
    }

    /* SP用要素を表示 */
    .c-custom-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
    }

    .c-custom-drawer {
        display: flex;
    }

    /* Drawer Close Button */
    .c-drawer-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 10002;
    }

    .c-drawer-close span {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 30px;
        height: 2px;
        background-color: #fff;
    }

    .c-drawer-close span:nth-child(1) {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .c-drawer-close span:nth-child(2) {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    /* レイアウト調整 */
    .l-custom-header__inner {
        justify-content: space-between;
    }

    /* ボタンのマージンリセット */

    .l-header-right {
        margin-left: 0;
    }

    /* Mobile Profile */
    .c-top-profile-sp {
        display: block;
        background-color: #f7f9fc;
        padding: 60px 0;
    }

    .c-profile-sp-inner {
        padding: 0 20px;
        max-width: 600px;
        margin: 0 auto;
    }

    .c-profile-sp__header {
        text-align: center;
        margin-bottom: 30px;
    }

    .c-profile-sp__name {
        font-family: var(--font-serif);
        font-size: 1.5rem;
        margin: 10px 0 5px;
        color: var(--color-main);
    }

    .c-profile-sp__name-en {
        display: block;
        font-family: var(--font-en);
        color: var(--color-accent);
        font-size: 0.9rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .c-profile-sp__img {
        margin-bottom: 30px;
        text-align: center;
    }

    .c-profile-sp__img img {
        width: 100%;
        max-width: 280px;
        height: auto;
        border-radius: 4px;
        box-shadow: 10px 10px 0 var(--color-bg-sub);
    }

    .c-profile-sp__desc {
        font-size: 0.95rem;
        line-height: 2;
        margin-bottom: 30px;
        text-align: justify;
    }

    .c-profile-sp__btn-wrap {
        text-align: center;
    }
}

/* ==================================================
   ヘッダー下の隙間を完全削除
   ================================================== */

/* ボディ全体の自動余白を強制削除 */
body {
    padding-top: 0 !important;
}

.top #content {
    margin-bottom: 0px;
    margin-top: 5rem;
}



.l-container {
    padding-top: 150px !important;
    /* PCでの余白 */
}

/* スマホ表示の調整 */
/* 150pxだとスマホでは広すぎるため狭くします */
@media (max-width: 959px) {
    .l-container {
        padding-top: 80px;
        /* スマホでの余白 */
    }
}


.l-footer .l-container {
    padding-top: 0px !important;
}


.sp-br{
	display:none;
}












/**
 * レスポンシブルデザイン
 */

@media (max-width: 768px) {
    .l-custom-header__inner {
        justify-content: space-between;
        height: 70px;
    }
	
	.sp-br{
	display:block;
}

    .top #content {
        margin-bottom: 0px;
        margin-top: 20px;
    }

    .c-top-hero__title {
        font-size: 1.875rem;
    }

    .c-top-hero__sub {
        font-size: 1rem;
        font-weight: 500;
        line-height: 1.5;
        text-align: center;
        margin-bottom: 30px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .c-top-inner {
        padding: 20px;
    }

.c-parallax-section {
        height: 200px;
        /* スマホでは固定を解除しないと画像が拡大されすぎて壊れるため、スクロール追従に戻す */
        background-attachment: scroll !important;
        background-position: center center !important;
        background-size: cover !important;
    }

    .c-top-contact__desc {
        font-size: 1rem;
    }

    .c-profile-box {
        flex-direction: column-reverse;
    }

    .c-btn {
        width: 100%;
        font-size: 1.2rem;
    }

    .c-btn--left {
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .c-btn--right {
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
	
	.c-custom-logo img{
		height:60px;
	}



}