@charset "utf-8";
header#masthead{
    display: none !important;
}

footer#site-footer{
    display: none !important;
}

#content{
    padding: 0;
}

#page{
    margin: 0;
    font-size: 1em;
    box-shadow: none;
}

.hentry{
    margin: 0;
}

.container{
    max-width: auto !important;
    max-width: initial !important;
    padding: 0 !important;
    width: 100%;
}

.col-md-12{
    width: auto;
    float: none;
    padding-left: 0;
    padding-right: 0;
}

.btn-contact{
    color: #fff !important;
}

#shadow{
    display: none;
}

.row{
    margin-left: 0 !important;
    margin-right: 0 !important;
}

#contact .container{
    padding: 0 20px !important;
}

script + br{
    display: none;
}
/* ===================================
   基本設定
=================================== */
:root {
    --primary-color: #094379;
    --secondary-color: #4a7c59;
    --accent-color: #77d16b;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

* {
    box-sizing: border-box;
}

html{
    font-size: 16px;
}

body {
    font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    color: var(--text-color);
    line-height: 1.8;
    background-color: var(--white);
    overflow-x: hidden; /* 横スクロール防止 */
    -webkit-font-smoothing: antialiased; /* フォントスムージング */
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

/* タッチデバイス対応 */
@media (hover: none) {
    a:hover {
        opacity: 1;
    }
    
    a:active {
        opacity: 0.7;
    }
}

/* スムーススクロール */
/*
html {
    scroll-behavior: smooth;
}
*/

/* ===================================
   共通レイアウト
=================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%; /* レスポンシブ対応 */
}

.section {
    padding: 80px 0;
}


/* ===================================
   ヘッダー
=================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 88px;
    transition: .3s all ease;
}

.small_header .header{
    background-color: var(--white);
    box-shadow: var(--shadow);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 3vw 1rem;
    margin: 0 auto;
    height: 100%;
    position: relative;
}

.header-logo a{
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

    .header-logo .logo1{
        width: 4.5rem;
    }

    .header-logo .logo2{
        width: 14rem;
    }


.header-contact {
    display: flex;
    align-items: flex-end;
    gap: 16px;
}

.header-tel {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--primary-color);
}

.header-tel-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: flex-end;
}

.header-tel-info a {
    font-size: 26px;
    font-weight: 700;
    color: #104b77;
    line-height: 26px;
    font-family: 'Oswald', sans-serif;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.header-tel-info a::before{
    content: "";
    display: inline-block;
    width: 1.5rem;
    aspect-ratio: 1 / 1;
    background-image: url(../images/icon_tel_bl.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.header-tel-hours {
    font-size: 13.6px;
    color: #1a1a1a;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0.34px;
    white-space: nowrap;
    margin: 0;
}

.btn-contact {
    background-color: #104b77;
    color: var(--white);
    padding: 8px;
    border-radius: 24px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    width: 160px;
    height: 48px;
    font-size: 1rem;
    line-height: 1;
    transition: .3s all ease;
}

.btn-contact:hover {
    background-color: #0d3d5f;
}

@media (hover: none) {
    .btn-contact:hover {
        transform: none;
    }
    
    .btn-contact:active {
        background-color: var(--secondary-color);
        transform: scale(0.98);
    }
}

/* ===================================
   ヒーローセクション
=================================== */
.hero {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url(../images/img_home_catch.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: repeat;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 456px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    box-sizing: border-box;
}

@media (max-width: 1920px) {
    .hero-content {
        padding: 3rem 5%;
    }
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.hero-title-main {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: flex-end;
    justify-content: flex-end;
}

.hero-title-image {
    width: 340px;
    max-width: 100%;
    height: auto;
}

.hero-title-line2-sub {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 2;
    color: #1a1a1a;
    margin: 0 0 0 0;
}

.hero-title-sub {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 3rem;
    line-height:1.3;
    color: #1a1a1a;
    margin: 0;
}

.hero-title-sub p {
    margin: 0;
    white-space: nowrap;
}

.hero-description {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.8;
    color: #1a1a1a;
    margin: 0;
}

.hero-description p {
    margin: 0;
    white-space: nowrap;
}

section h2[class$="main-title"] {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #104b77 0%, #29a73b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin: 0 0 4.5rem 0;
    line-height: 1;
    position: relative;
}

section h2[class$="main-title"]::after {
    content: "";
    width: 3em;
    position: absolute;
    bottom: -1.5rem;
    left: calc(50% - 1.5em);
    right: 0;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(135deg, #0a58b0 0%, #4CAF50 100%);
}


/* ===================================
   対応サービス
=================================== */
.services {
    background-color: #f1fcf2;
    padding: 4rem 0 3rem;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 72px;
}

/* ヘッダー */
.services-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3.5rem;
}

.services-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.services-intro {
    font-size: 1.25rem;
    line-height: 40px;
    color: #1a1a1a;
    text-align: center;
    margin: 0;
}

/* サービスリスト */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 2.5em;
}

.services-row {
    display: flex;
    gap: 2.5em;
    justify-content: center;
}

/* サービスカード */
.service-card {
    background-color: var(--white);
    width: 22rem;
    height: 15.5rem;
    padding: 1.5rem 2.25rem;
    border-radius: 1rem;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    gap: 1em;
    align-items: center;
    text-align: center;
}

.service-card-icon {
    width: 5rem;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}

.service-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #104b77;
    line-height: 1.3;
    margin: 0;
}

.service-card-description {
    font-size: 1rem;
    color: #1a1a1a;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}




/* ===================================
   ご利用の流れ
=================================== */
.flow {
    background-color: var(--white);
    padding: 4rem 0;
}

.flow-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヘッダー */
.flow-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
}

.flow-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.flow-intro {
    font-size: 1.25rem;
    line-height: 40px;
    color: #1a1a1a;
    text-align: center;
    margin: 0;
}

/* ステップ */
.flow-steps {
    position: relative;
}

.flow-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    position: relative;
    margin-bottom: 2rem;
}

.flow-step:last-child {
    margin-bottom: 0;
}

/* ステップ間の縦線 */
.flow-step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 3rem;
    top: 3rem;
    width: 0;
    height: calc(100% + 2rem);
    border-left: 2px dotted #104b77;
}

.flow-step-badge {
    flex-shrink: 0;
    width: 6rem;
    aspect-ratio: 1 / 1;
    background-color: var(--white);
    border: 1px solid #104b77;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.flow-step-label {
    font-family: "Oswald", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #104b77;
    text-transform: uppercase;
    line-height: 16px;
    text-align: center;
}

.flow-step-number {
    font-family: "Oswald", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #104b77;
    line-height: 32px;
    text-align: center;
}

.flow-step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1.25rem;
}

.flow-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #104b77;
    line-height: 24px;
    margin: 0;
}

.flow-step-description {
    font-size: 1rem;
    color: #1a1a1a;
    line-height: 24px;
    margin: 0;
}

/* ===================================
   お問い合わせ
=================================== */
.contact {
    background-color: rgba(255, 255, 255, 1);
    padding: 4rem 0;
}

.contact-company-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #104B77;
    text-align: center;
    margin: 1em 0 0 0;
}

.contact-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333333;
    text-align: center;
    margin: 0 0 4rem 0;
}

.contact-methods {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    width: calc((100% - 4rem) / 3);
    background-color: var(--white);
    border: 3px solid #104B77;
    border-radius: 0.75rem;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(10, 88, 176, 0.2);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 0.75em;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    padding-bottom: 1em;
    margin-bottom: 1em;
}

.contact-icon {
    width: 3.5rem;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
}

.contact-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #104B77;
    margin: 0;
}

.contact-card-hours {
    font-size: 0.9em;
}

.contact-card-value {
    font-size: 2rem;
    font-weight: 700;
    color: #104B77;
    margin: 0;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    line-height: 1.3;
    padding-top: 1em;
}

.contact-card-value a {
    color: #104B77;
}



.contact-card-value.for_line {
    display: flex;
    justify-content: center;
    padding-top: 0;
}

    .contact-card-value.for_line .sp{
        display: none;
    }

    .contact-card-value.for_line .fig{
        display: block;
        width: 7.5rem;
        margin: 0;
    }

/*ページトップ*/
.pagetop{
    width:4rem;
    height:4rem;
    position:fixed;
    bottom:3rem;
    right:1rem;
     transform:translateY(100px);
    transition:.3s all ease;
    opacity:0;
    z-index: -1;
}

.pagetop.show{
    transform:translateY(0);
    opacity:1;
    z-index:9;
}

    .pagetop a{
        box-sizing: border-box;
        display:flex;
        justify-content: center;
        align-items: center;
        transition:.5s all ease;
        width:100%;
        height:100%;
        text-decoration:none;
        border-radius: 50%;
        background: #104b77;
        padding-bottom: 0.2rem;
    }
    
    .pagetop a:hover{
        filter: brightness(1.1);
    }


    .pagetop a:before{
        font-family: FontAwesome;
        content:"\f106";
        color: #fff;
        font-size: 2.4rem;
    }

/* ===================================
   施工例（対応サービス内）
=================================== */
.case-studies-section {
    display: flex;
    gap: 76px;
    padding: 0;
    margin-top: 3.5rem;
}

/* 左側 */
.case-studies-left {
    width: 364px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.case-studies-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 1.5rem 0;
}

.case-studies-title {
    font-size: 2rem;
    font-weight: 700;
    color: #104b77;
    line-height: 1;
    margin: 0;
}

.case-studies-intro {
    font-size: 1rem;
    line-height: 24px;
    color: #1a1a1a;
    margin: 0;
}

.case-studies-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.case-study-card {
    background-color: var(--white);
    border: 1px solid #104b77;
    border-radius: 0.5rem;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.case-study-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #104b77;
    line-height: 24px;
    margin: 0;
}

.case-study-card-description {
    font-size: 1rem;
    line-height: 1.5;
    color: #1a1a1a;
    margin: 0;
}

/* 右側（画像エリア） */
.case-studies-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
    position: relative;
}

.case-studies-images {
    position: relative;
    width: 640px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.case-studies-images .exp{
    display: none;
}

.case-image {
    width: 15rem;
    border-radius: 0.5rem;
    overflow: hidden;
    position: relative;
}

    .case-image img{
        position: relative;
        z-index: 0;
    }

    .case-image .case-label{
        position: absolute;
        bottom: 0.2em;
        left: 0.2em;
        z-index: 1;
        font-family: "Oswald", sans-serif;
        font-size: 2rem;
        font-weight: 700;
        line-height: 1;
        color: #fff;
    }

.case-image.case2_1{
    width: 16.6875rem;
}

    .case-image.case2_1 .case-label{
        color: #2abdcb;
    }

    


/* 矢印 */
.case-arrow {
    width: 3.5rem;
}


/* ===================================
   ご成約特典バナー
=================================== */
.cta-benefit-banner {
    padding: 3rem 0;
    background-color: var(--white);
}

.cta-benefit-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.cta-benefit-image {
    width: 100%;
    max-width: 744px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ===================================
   当社の安心・強みセクション
=================================== */
.company-strengths {
    position: relative;
    background-color: var(--white);
    padding: 0;
}

.company-strengths-wrapper {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0;
    min-height: 800px;
}

/* 左側の円形画像 */
.company-strengths-circle-left {
    position: absolute;
    left: calc(50% - 45rem);
    top: -2rem;
    width: 22.5rem;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    z-index: 1;
    overflow: hidden;
}

.company-strengths-circle-left img,
.company-strengths-circle-right img {
    max-width: 100%;
    height: auto;
}

/* 右側の円形画像 */
.company-strengths-circle-right {
    position: absolute;
    right: calc(50% - 45rem);
    top: 0;
    width: 22.5rem;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    z-index: 1;
    overflow: hidden;
}

/* 中央コンテンツ */
.company-strengths-content {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 3rem;
    padding: 0 100px;
    padding-top: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    align-items: center;
}

.company-strengths-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    position: relative;
    width: 520px;
}

section h2.company-strengths-main-title {
    color: #104b77;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    padding-bottom: 0;
    margin-bottom: 0;
}

section h2.company-strengths-main-title::after {
    content: none;
}

.company-strengths-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: #104b77;
    line-height: 1;
    margin: 0;
    padding-bottom: 2.25rem;
    text-align: center;
    width: 100%;
    background-image: url(../images/fig_line.png);
    background-size: 100% auto;
    background-repeat: repeat-x;
    background-position: center bottom;
}

.company-strengths-intro {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

.company-strengths-intro-accent {
    color: #b74706;
}

.company-strengths-cta {
    display: flex;
    align-items: center;
    background-color: #fffaeb;
    border: 1px solid #6d280b;
    border-radius: 16px;
    padding-right: 20px;
}

.company-strengths-cta-badge {
    background-color: #6d280b;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.5em 1em 0.5em 1.5em;
    border-radius: 1em 0 0 1em;
    line-height: 1;
    white-space: nowrap;
}

.company-strengths-cta-text {
    color: #6d280b;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
    padding-left: 1em;
}

/* 4つのポイント */
.company-strengths-points {
    position: relative;
    z-index: 2;
    margin-top: 5rem;
    padding-bottom: 2rem;
    background: linear-gradient(to top, #fffaeb, white);
}

.company-strengths-points-row {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.company-strengths-points-row:first-child {
    border-top: 1px solid rgba(109, 40, 11, 0.25);
    border-bottom: 1px solid rgba(109, 40, 11, 0.25);
}

.company-strengths-points-row:last-child {
    padding-bottom: 2rem;
}

.company-strengths-point {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 480px;
    align-items: center;
    justify-content: flex-start;
}

.company-strengths-point-header {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
    width: 6rem;
    margin: 0 auto;
}

.company-strengths-point-label {
    font-family: "Oswald", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #b74706;
    line-height: 16px;
    text-align: center;
}

.company-strengths-point-number {
    font-family: "Oswald", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #b74706;
    line-height: 32px;
    text-align: center;
}

.company-strengths-point-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.company-strengths-point-title {
    font-size: 2rem;
    font-weight: 700;
    color: #b74706;
    line-height: 1.25;
    margin: 0;
}

.company-strengths-point-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.5;
    margin: 0;
}

.company-strengths-point-description {
    font-size: 0.9rem;
    color: #1a1a1a;
    line-height: 21.6px;
    margin: 0;
}

/* ===================================
   私がお伺いしますセクション
=================================== */
.profile {
    background-color: var(--white);
    padding: 4.5rem 0 0;
}

.profile-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 100px;
}

.profile-box {
    position: relative;
    background-image: url(../images/bg_profile.png);
    background-size: 1.5rem auto;
    border: 2px solid #104b77;
    border-radius: 1rem;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.profile-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0 0 1rem;
    flex: 1;
}

.profile-header {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
}

.profile-header-line-left,
.profile-header-line-right {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
}

.profile-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #104b77;
    line-height: 32px;
    text-align: center;
    margin: 0;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 16px 0;
    border-top: 1px solid rgba(16, 75, 119, 0.5);
    border-bottom: 1px solid rgba(16, 75, 119, 0.5);
}

.profile-label {
    font-size: 1rem;
    color: #104b77;
    line-height: 16px;
    margin: 0;
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 24px;
    margin: 0;
}

.profile-description {
    font-size: 1rem;
    color: #1a1a1a;
    line-height: 24px;
    margin: 0;
}

.profile-contact {
    font-size: 1.25rem;
    color: #1a1a1a;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

.profile-images {
    display: flex;
    gap: 1.25rem;
}

    .profile-images .fig,
    .profile-images > .figs ul li{
        border-radius: 0.5rem;
        overflow: hidden;
    }

    .profile-images > .fig{
        width: 21.5rem;        
    }

    .profile-images > .figs ul{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

    .profile-images > .figs ul li{
        width: 11.5rem;
    }


.profile-image-1 {
    right: -150px;
    top: -50px;
    width: 400px;
    height: auto;
    transform: rotate(-15deg);
}

.profile-image-2 {
    right: 50px;
    top: -130px;
    width: 640px;
    height: auto;
    transform: rotate(15deg);
}

.profile-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   当社の強みセクション
=================================== */
.strengths {
    background-color: var(--white);
    padding: 5rem 0;
}

.strengths-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 100px;
}

.strengths-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
}

.strengths-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.strengths-intro-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    width: 100%;
}

.strengths-logo {
    width: 21.375rem;
}

.strengths-intro {
    font-size: 1.25rem;
    line-height: 2;
    color: #1a1a1a;
    margin: 0;
    text-align: center;
    max-width: 584px;
}

.strengths-items {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.strength-item {
    display: flex;
    gap: 2em;
    align-items: flex-start;
}

.strength-item-reverse {
    flex-direction: row-reverse;
}

.strength-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 32px;
}

.strength-item-reverse .strength-content {
    padding-left: 0;
    padding-right: 2rem;
}

.strength-text {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.strength-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
}

.strength-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #104b77;
    line-height: 45px;
    margin: 0;
}

.strength-description-wrapper {
    display: flex;
    gap: 1.5em;
    align-items: flex-start;
    width: 100%;
}

.si1 .strength-description-wrapper{
    flex-direction: row-reverse;
}

    .si1 .strength-description-wrapper .fig_iso{
        width: 12.5rem;
    }

.si3 .strength-description-wrapper{
    display: block;
}

.si3 .strength-description-wrapper .img_kannagara{
    display: block;
    float: right;
    width: 9.75rem;
    margin: 0 0 1em 1em;
}

.strength-description-with-badge {
    position: relative;
}

.strength-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
}

.strength-images {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.strength-main-image {
    width: 512px;
    height: auto;
    border-radius: 8px;
}

.image-caption {
    font-size: 0.9rem;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.5;
}

/* ===================================
   CTAセクション修正
=================================== */
.contact-cta {
    background: #104b77;
    color: var(--white);
    padding: 3rem 0;
}

.cta-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5em;
    margin-bottom: 1.5em;
}

.cta-header-line-left,
.cta-header-line-right {
    width: 60px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.cta-header-line-left {
    background-image: url('../images/fig_line_left_w.png');
}

.cta-header-line-right {
    background-image: url('../images/fig_line_right_w.png');
}

.contact-cta .cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    white-space: nowrap;
}

.cta-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-left {
}

.contact-cta .cta-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.cta-center {
    text-align: center;
}

.cta-phone-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-phone a {
    color: var(--white);
    text-decoration: none;
    font-size: 2.75rem;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    line-height: 1;
}

.cta-phone-hours {
    color: var(--white);
    margin: 0;
    line-height: 1.5;
}

.cta-phone-icon {
    width: 2.5rem;
    height: auto;
    margin-right: 0.5em;
    vertical-align: middle;
}

.cta-right {
}

.cta-right .line_qr{
    display: flex;
    align-items: center;
    gap: 1em;
    line-height: 1.4;
}

    .cta-right .line_qr dt{}

    .cta-right .line_qr dd{
        width: 7.5rem;
    }


.cta-right .sp{
    display: none;
}

.btn-line {
    background-color: var(--white);
    color: #06C755;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    min-height: 44px; /* タッチターゲット最小サイズ */
}

.btn-line:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

@media (hover: none) {
    .btn-line:hover {
        transform: none;
    }
    
    .btn-line:active {
        background-color: #e8e8e8;
        transform: scale(0.98);
    }
}

.btn-line-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    vertical-align: middle;
}

/* ===================================
   対応エリアセクション
=================================== */
.area {
    background-color: #e7fafa;
    padding: 0;
    margin-bottom: 0.75rem;
}

.area-container {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 100px;
    max-width: 1920px;
    margin: 0 auto;
}

.area-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 320px;
    padding: 64px 0 48px;
    max-width: 480px;
}

.area-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.area-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.area-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 0;
    line-height: 40px;
}

.area-note {
    font-size: 1rem;
    color: #1a1a1a;
    line-height: 24px;
    margin: 0;
    text-align: left;
}

.area-map {
    width: 560px;
    height: 320px;
    background-image: url(../images/img_area.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center top 40%;
}

/* ===================================
   料金目安セクション
=================================== */
.pricing {
    background-color: #f1fcf2;
    padding: 0;
}

.pricing-container {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 100px;
    max-width: 1920px;
    margin: 0 auto;
}

.pricing-image-wrapper {
    flex-shrink: 0;
    width: 560px;
    overflow: hidden;
    border-radius: 8px;
}

.pricing-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 320px;
    padding: 64px 0 48px;
    max-width: 480px;
}

.pricing-header {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    width: 100%;
}

.pricing-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 1.5rem 5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.pricing-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

.pricing-label {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 24px;
}

.pricing-value {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1a1a1a;
    text-align: right;
    line-height: 24px;
}

/* ===================================
   フッター修正
=================================== */
.footer {
    background-color: rgba(9, 67, 121, 1);
    padding: 3em 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-copyright {
    text-align: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 1);
    margin: 0;
}

a[href^="tel:"]{
    pointer-events: none;
}

br.tab,
br.sp{
    display: none;
}


/* ===================================
   レスポンシブ対応
=================================== */

/* タブレット（1024px以下） */
@media (max-width: 1024px) {
    html{
        font-size: 1.8vw;
    }

    .hero{
        height: 50vh;
    }

    .company-strengths-content{
        padding: 0;
    }

    .company-strengths-circle-left{
        left: calc(50% - 32rem);
        width: 14rem;
    }

    .company-strengths-circle-right{
        right: calc(50% - 32rem);
        width: 14rem;
    }

    .company-strengths-points-row{
        max-width: 86vw;
    }

    .profile-container{
        padding: 0 5vw;        
    }

    .profile-content{
        padding: 0;
    }

    .profile-header{
        gap: 1em;
    }

    .profile-images{
        flex-direction: column;
        width: 40%;
        gap: 1rem;
    }

    .profile-images > .fig{
        width: 100%;
    }

    .profile-images > .figs ul{
        flex-direction: row;
    }

    .profile-images > .figs ul li{
        width: calc((100% - 1rem) / 2);
    }

    .strengths-container{
        padding: 0 5vw;
    }

    .strength-content{
        padding-left: 0;
    }

    .strength-images{
        width: 42%;
    }

    .strength-main-image{
        width: 100%;
    }

    .si1 .strength-description-wrapper{
        flex-direction: column-reverse;
        align-items: center;
        gap: 0.5em;
    }

    .services-list{
        gap: 1.5em;
    }

    .services-container{
        padding: 0 5vw;
    }

    .services-row{
        gap: 1.5em;
    }

        .service-card{
            width: calc((100% - 3em) / 3);
            height: auto;
            padding: 1.5rem 1.5rem;
        }

    .cta-content{
        gap: 1em;
        flex-wrap: wrap;
    }

    .case-studies-section{
        gap: 2rem;
    }

    .case-studies-left{
        width: 40%;
    }

    .case-studies-images{
        width: auto;
    }

    .case-image{
        width: 12rem;
    }

    .case-image.case2_1{
        width: calc(12rem / 480 * 534);
    }

    .area-container{
        padding: 0 5vw;
        align-items: stretch;
    }

    .area-left{
        height: auto;
    }

    .area-map{
        width: 50%;
        height: auto;
    }

    .pricing-container{
        padding: 0 5vw;
    }

    .pricing-image-wrapper{
        width: 50%;
    }

    .pricing-list{
        padding: 1em;
    }

    .contact-methods{
        gap: 1rem;
    }

    .contact-card {
        width: calc((100% - 2rem) / 3);
        padding: 1.5rem 1rem;
    }

    .contact-card-header{
        flex-direction: column;
    }

    .contact-card-value{
        padding-top: 0.5em;
    }

    br.tab{
        display: inline;
    }

}

/* モバイル（768px以下） */
@media (max-width: 768px) {
    .hero{
        height: 80vw;
    }

}

/* 小型スマートフォン（575px以下） */
@media (max-width: 575px) {
    html{
        font-size: 3.6vw;
    }

    body{
        line-height: 1.6;
    }

    .header{
        height: 16vw;
    }

    .header-container{
        padding: 3vw;
    }

    .header-logo .logo1{
        width: 3.5rem;
    }

    .header-logo .logo2{
        width: calc(3.5rem / 144 * 448);
    }

    .header-tel{
        display: none;
    }

    .btn-contact{
        padding: 0 1em;
        height: 10vw;
        width: auto;
    }

    .hero{
        height: 100vw;
    }

    .hero-content{
        height: 100%;
        padding: 20vw 5vw 1.5rem;
    }

    .hero-title-main{
        justify-content: flex-start;
    }

    .hero-title-main h1{
        width: 50%;
    }

    .hero-title-line2-sub{
        font-size: 1.4rem;
        line-height: 1.5;
    }

    .hero-title-sub{
        font-size: 2rem;
        text-shadow: 0 0 10px #fff, 0 0 10px #fff;
    }

    .hero-description{
        font-size: 0.9rem;
        line-height: 1.6;
        text-shadow: 0 0 10px #fff,  0 0 10px #fff;
    }

    .cta-benefit-banner{
        padding: 2rem 0;
    }

    section h2[class$="main-title"]{
        font-size: 1.8rem;
        margin-bottom: 3.5rem;
    }

    section h2.company-strengths-main-title{
        margin-bottom: 0;
    }

    .company-strengths-header{
        width: auto;
    }

    .company-strengths-subtitle{
        font-size: 1.8rem;
        width: auto;
        padding-bottom: 1.2rem;
    }

    .company-strengths-intro{
        font-size: 1.2rem;
    }

    .company-strengths-points{
        margin-top: 3rem;
        padding-bottom: 0;
    }

    .company-strengths-points-row{
        gap: 2.5rem;
        flex-direction: column;
        padding: 0;
    }

    .company-strengths-points-row:first-child{
        margin-bottom: 2.5rem;
        border: none;
    }

    .company-strengths-point-content{
        text-align: left;
    }


    .company-strengths-point{
        width: auto;
        flex-direction: row;
        align-items: flex-start;
        position: relative;
    }

    .company-strengths-point-header{
        position: absolute;
        top: -1.4em;
        left: 0;
        width: auto;
    }

    .company-strengths-point-title{
        font-size: 1.6rem;
        padding-left: 2em;
    }

    .profile{
        padding-top: 2rem;
    }

    .profile-box{
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .profile-content{
        width: 100%;
    }

    .profile-title{
        font-size: 1.5rem;
    }

    .profile-contact{
        font-size: 1.1rem;
    }

    .profile-images{
        flex-direction: row;
        width: 100%;
        gap: 0.5rem;
    }

        .profile-images > .fig{
            width: 62.5%;
        }

        .profile-images > .figs{
            flex: 1;
        }

        .profile-images > .figs ul{
            flex-direction: column;
        }

        .profile-images > .figs ul li{
            width: 100%;
        }

    .strengths{
        padding: 3rem 0;
    }

    .strengths-logo{
        width: 75%;
    }

    .strengths-intro{
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .strengths-header{
        margin-bottom: 2rem;
    }

    .strengths-items{
        gap: 2rem;
    }

    .strength-item{
        flex-direction: column;
        gap: 1.5em;
    }

    .strength-label{
        font-size: 1.1rem;
    }

    .strength-title{
        font-size: 1.6rem;
        line-height: 1.4;
    }

        .strength-title br{
            display: none;
        }

    .strength-item-reverse .strength-content{
        padding-right: 0;
    }

    .strength-images{
        width: 100%;
        padding: 0 1em;
    }

    .si1 .strength-description-wrapper .fig_iso{
        width: 40%;
    }

    .services-intro{
        font-size: 1.1rem;
        line-height: 1.6;
        text-align: left;
        padding-left: 0.5em;
        padding-right: 0.5em;
    }

    .services{
        padding-top: 3rem;
        padding-bottom: 2rem;
    }

    .services-header{
        margin-bottom: 2.5rem;
    }

    .services-list{
        gap: 1em;
    }

    .services-row{
        flex-direction: column;
        gap: 1em;
    }

    .service-card {
        width: 100%;
        padding: 1rem 1.5rem 1rem 1rem;
        flex-direction: row;
        text-align: left;
    }

        .service-card-title{
            font-size: 1.3rem;
        }

    .case-studies-section{
        flex-direction: column;
        margin-top: 2rem;
    }

        .case-studies-left{
            width: 100%;
        }

        .case-studies-header{
            padding: 0;
        }

        .case-studies-title{
            font-size: 1.5rem;
        }

        .case-studies-cards{
            display: none;
        }

        .case-studies-images{
            flex-wrap: wrap;
        }

        .case-studies-images .exp{
            display: block;
            width: 100%;
            background: #fff;
            border: 1px solid #104b77;
            border-radius: 0.5rem;
            padding: 0.75rem 1.25rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-bottom: 1em;
        }

        .case-studies-images .exp .case-study-card-title{
            font-size: 1.2rem;
        }

        .case-image,
        .case-image.case2_1{
            width: calc((100% - 3rem) / 2);
        }


        .case-arrow{
            width: 2rem;
        }

        .cta-right .pc{
            display: none;
        }

        .cta-right .sp{
            display: block;
        }

    .flow-intro{
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .flow{
        padding: 2.5rem 0;
    }

    .flow-step{
        margin-bottom: 1rem;
    }

    .flow-step-content{
        padding-top: 0.5rem;
    }

    .flow-step-title{
        font-size: 1.3rem;
    }

    .area-container{
        padding-right: 0;
        gap: 1rem;
        position: relative;
        justify-content: flex-start;
    }

    .area-left{
        padding-top: 3rem;
        padding-bottom: 2rem;
        position: relative;
        z-index: 1;
        width: 60%;
        flex: none;
    }

    .area-map{
        position: absolute;
        z-index: 0;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: auto 180%;
        background-position: right -60% top 40%;
    }

    .area-subtitle{
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .pricing-container{
        flex-direction: column-reverse;
        gap: 1rem;
        padding-bottom: 2rem;
    }

    .pricing-right{
        height: auto;
        padding-top: 2.5rem;
        padding-bottom: 0;
        width: 100%;
    }

    .pricing-label,
    .pricing-value{
        font-size: 1.2rem;
    }

    .pricing-image-wrapper{
        width: calc(100% - 2rem);
    }

    .contact{
        padding: 2.5rem 0;
    }

    .contact-company-name{
        font-size: 1.3rem;
    }

    .contact-intro{
        font-size: 1.1em;
        margin-bottom: 2rem;
    }

    .contact-methods{
        flex-direction: column;
    }

    .contact-card {
        width: 100%;
        padding: 1rem;
    }

        .contact-card-header{
            flex-direction: row;
        }

        .contact-card-value{
            padding: 0;
        }

        .contact-card .pc{
            display: none;
        }

        .contact-card .sp{
            display: block;
        }

        .contact-card-value.for_line .sp{
                display: block;
            }

            .contact-card-value.for_line .fig{
                display: none;
            }

        .contact-card-value.for_line{
            font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
        }



    .footer{
        padding: 1.5rem 1rem;
    }

    .footer-content{
        padding: 0;
    }

    .footer-copyright{
        font-size: 0.8em;
    }





    br.pc,
    br.tab{
        display: none;
    }

    br.sp{
        display: inline;
    }

    a[href^="tel:"]{
        pointer-events: initial;
    }

}

