@charset "UTF-8";

/*
 * page-company.php 専用スタイル
 */

:root {
    --company-accent: #b5a2cd;
    --company-accent-light: #b5a2cd;
    --company-bg: #f5f7fb;
    --company-text: #1e293b;
    --company-muted: #000000;
}

.wrapper.company_info {
    color: #000000;
    background: #fff;
    position: relative;
    transform: none;
    will-change: auto;
}

.wrapper.company_info section {
    position: relative;
}

/* --------------------------------------------------
   MV
-------------------------------------------------- */

#mv {
    padding: clamp(60px, 10vw, 120px) 0 clamp(48px, 8vw, 80px);
    background: var(--company-bg);
}

#mv .inner {
    width: min(1080px, 92%);
    margin: 0 auto;
    display: grid;
    gap: clamp(20px, 4vw, 32px);
}

#mv .ttl_row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(14px, 2.4vw, 18px);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--company-accent);
    font-weight: 600;
}

#mv h2 {
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.3;
    font-weight: 700;
}

#mv .breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: var(--company-muted);
    list-style: none;
    margin: 0;
    padding: 0;
}

#mv .breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
}

#mv .breadcrumb li+li::before {
    content: "/";
    color: var(--company-muted);
}

#mv .breadcrumb a {
    color: inherit;
    text-decoration: none;
}

#mv .breadcrumb a:hover {
    color: var(--company-accent);
}

/* --------------------------------------------------
   Layout
-------------------------------------------------- */

.section_row {
    padding: clamp(48px, 1vw, 120px) 0 clamp(72px, 10vw, 140px);
    padding-top: 0;
    position: relative;
    transform: none;
    will-change: auto;
}


.section_row .row_inner {
    width: min(1160px, 95%);
    margin: 0 auto;
    display: grid;
    row-gap: clamp(32px, 6vw, 48px);
    position: relative;
    transform: none;
    will-change: auto;
}

@media (min-width: 960px) {
    .section_row .row_inner {
        grid-template-columns: 240px minmax(0, 1fr);
        column-gap: clamp(40px, 7vw, 72px);
        align-items: start;
        grid-auto-rows: minmax(min-content, max-content);
    }
}

aside.pc {
    position: sticky;
    top: 110px;
    align-self: start;
    z-index: 5;
}

@media (min-width: 960px) {
    aside.pc {
        position: fixed !important;
        /* top: 110px !important; */
        top: 200px;
        left: 2.5vw !important;
        width: 240px !important;
        z-index: 1 !important;
        align-self: auto !important;
        transform: none !important;
        will-change: auto !important;
        display: block !important;
    }

    @media (min-width: 1221px) {
        aside.pc {
            left: calc((100% - 1160px) / 2) !important;
            padding-top: 80px;
        }
    }

    .section_row .row_inner {
        grid-template-columns: 1fr;
        padding-left: 280px;
        column-gap: 0;
        align-items: start;
        grid-auto-rows: minmax(min-content, max-content);
    }

    .section_row .row_inner>section {
        grid-column: 1;
    }
}

aside.pc ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

aside.pc li {
    border-radius: 999px;
    background: rgb(105 105 105 / 8%);
    transition: background 0.3s ease, transform 0.3s ease;
}

aside.pc li.current,
aside.pc li:hover {
    background: #121212;
    transform: translateX(4px);
}

aside.pc a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    font-size: 14px;
    color: inherit;
    text-decoration: none;
}

@media (max-width: 640px) {
    aside.pc a {
        font-size: 12px;
    }
}



aside.pc span {
    font-weight: 600;
    letter-spacing: 0.1em;
}

aside.pc li.current a,
aside.pc li:hover a {
    color: #fff;
}

section[id^="tg_sec"] {
    padding: clamp(32px, 6vw, 48px) clamp(16px, 4vw, 40px);
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 18px 50px rgba(31, 41, 59, 0.08);
}

section[id^="tg_sec"]+section[id^="tg_sec"] {
    margin-top: clamp(32px, 6vw, 48px);
}

section[id^="tg_sec"] .inner {
    /* display: grid; */
    /* gap: clamp(20px, 3.8vw, 28px); */
}

section[id^="tg_sec"] .ttl {
    font-size: 14px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #b5a2cd;
    font-weight: 600;
}

section[id^="tg_sec"] h2 {
    font-size: clamp(28px, 4vw, 36px);
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 40px;
}

/* --------------------------------------------------
   Table (Section 01)
-------------------------------------------------- */

table.company {
    width: 100%;
    border-collapse: collapse;
    font-size: clamp(14px, 2.6vw, 16px);
    line-height: 1.8;
    box-shadow: inset 0 0 0 1px rgba(15, 76, 129, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

table.company th,
table.company td {
    padding: clamp(14px, 2.8vw, 18px) clamp(14px, 3vw, 22px);
    vertical-align: top;
}

table.company th {
    width: 28%;
    background: #eee;
    font-weight: 600;
    letter-spacing: 0.05em;
}

table.company td ul {
    margin: 0;
    padding-left: 1.2em;
    display: grid;
    gap: 4px;
}

table.company tr:nth-child(odd) td {
    background: #f7f7f7;
}

@media (max-width: 640px) {

    table.company,
    table.company tbody,
    table.company tr,
    table.company th,
    table.company td {
        display: block;
        width: 100%;
    }

    table.company th {
        border-bottom: 1px solid rgba(15, 76, 129, 0.1);
    }

    table.company td {
        padding-top: 0;
        margin-bottom: 12px;
    }
}

table.info {
    border-collapse: collapse;
    text-align: left;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 18px;
    width: 100%;
    border-radius: 1em;
    border-radius: 10px !important;
    border: 1px solid #ddd;
    width: 100%;
    border-collapse: collapse;
    font-size: clamp(14px, 2.6vw, 16px);
    line-height: 1.8;
    box-shadow: inset 0 0 0 1px rgba(15, 76, 129, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

table.info tr {
    border-bottom: 1px solid #ddd
}

table.info th {
    width: 25%;
    padding: 10px 24px;
    /* vertical-align: 0; */
    /* border: #ddd 1px solid; */
    /* border-right: #ddd 1px dashed; */
    /* border-right: #ddd 1px solid; */
    background: #f3f3f3;
}

table.info td {
    padding: 10px;
    vertical-align: 0;
    /* border: #ddd 1px solid; */
    border-left: none;
    line-height: 2;
}

table.info td .linkArea {
    margin-top: 10px;
    text-align: left;
}

table.info td .linkArea a.btn {
    margin: 0;
}

@media (max-width: 640px) {

    table.info th {
        width: 35%;
        padding: 10px;
        /* vertical-align: 0; */
        /* border: #ddd 1px solid; */
        /* border-right: #ddd 1px dashed; */
        /* border-right: #ddd 1px solid; */
        background: #f3f3f3;
    }

    table.info td {
        padding: 10px;
    }

    table.info tr {
        padding: 10px;
    }


}



/* --------------------------------------------------
   Mission (Section 02)
-------------------------------------------------- */

.page_top_area {
    display: grid;
    gap: 12px;
    text-align: center;
}

.page_sub_txt {
    font-size: clamp(16px, 2.8vw, 16px);
    color: var(--company-muted);
    text-align: left;
}

.mission_area {
    display: grid;
    gap: clamp(24px, 5vw, 32px);
    align-items: center;
}

@media (min-width: 880px) {
    .mission_area {
        /* grid-template-columns: minmax(0, 1fr) minmax(260px, 380px); */
    }
}

.mission_area .mane {
    /* display: grid; */
    gap: clamp(18px, 3vw, 24px);
    /* font-size: clamp(18px, 3vw, 22px); */
    line-height: 1.6;
    font-weight: 600;
}

.mission_area .mane span {
    /* color: var(--company-accent); */
}

.mission_area .img_truck {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 76, 129, 0.15);
}

.mission_area .img_truck img {
    width: 100%;
    display: block;
}

/* --------------------------------------------------
   Greeting (Section 03)
-------------------------------------------------- */

.nameArea .inner {
    /* display: grid; */
    /* gap: clamp(24px, 5vw, 36px); */
    /* align-items: start; */
}

@media (min-width: 960px) {
    .nameArea .inner {
        grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
        display: flex;
        flex-direction: column;
        gap: 1em;
    }
}

.imgArea {
    /* display: grid; */
    /* gap: 16px; */
    text-align: center;
}

.imgArea img {
    width: 250px;
    text-align: center;
}

.imgArea h4 {
    font-size: 16px;
    letter-spacing: 0.08em;
    color: var(--company-accent);
}

.txtArea {
    display: grid;
    gap: clamp(18px, 3vw, 24px);
}

.txtBox p {
    font-size: clamp(15px, 2.6vw, 16px);
    line-height: 1.6;
    color: #000;
    text-align: justify;
}

.nameArea .txtArea .txtBox .sign {
    text-align: right;
    margin-top: 50px;
}

.nameArea .txtArea .txtBox .sign img {
    width: 250px
}





/* --------------------------------------------------
   History (Section 04)
-------------------------------------------------- */

.company_sec {
    overflow: hidden;
    overflow: visible;
    /* はみ出しを許可 */
}

.company_sec .inner {
    display: grid;
    gap: clamp(24px, 4vw, 32px);
    position: relative;
}

.company_sec h2 {
    font-size: clamp(26px, 3.8vw, 32px);
}

.company_sec .parallax {
    position: absolute;
    opacity: 0.18;
}

.company_sec .c_mark1 {
    top: -180px;
    right: -15px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--company-accent);
}

.company_sec .c_mark2 {
    bottom: 12%;
    left: -6%;
    width: 120px;
    height: 120px;
    border: 2px solid var(--company-accent-light);
    border-radius: 50%;
}

.company_sec .c_mark3,
.company_sec .c_mark4 {
    width: clamp(160px, 25vw, 220px);
}

.company_sec .c_mark3 {
    top: 18%;
    left: 70%;
}

.company_sec .c_mark4 {
    bottom: 8%;
    right: -4%;
}

.company_sec .c_mark3 img,
.company_sec .c_mark4 img {
    width: 100%;
    display: block;
    border-radius: 24px;
}

.company_sec dl {
    display: grid;
    gap: clamp(18px, 3vw, 24px);
    margin: 0;
}

.company_sec dt {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 600;
    color: var(--company-accent);
}

.company_sec dt span {
    margin-left: 4px;
    font-size: 0.65em;
    letter-spacing: 0.2em;
}

.company_sec dd {
    margin: 0;
    font-size: clamp(15px, 2.6vw, 18px);
    line-height: 1.8;
    color: var(--company-muted);
}

.company_sec dd .main {
    font-weight: 600;
}

/* --------------------------------------------------
   Utilities / animation helpers
-------------------------------------------------- */

._anm {
    transition: transform 0.6s ease, opacity 0.6s ease;
}

._anm._f-up {
    transform: translateY(12px);
    opacity: 0;
}

._anm._is-inview {
    transform: translateY(0);
    opacity: 1;
}

.pc {
    display: block;
}

@media (max-width: 959px) {
    aside.pc {
        position: static;
    }

    aside.pc ul {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}


.company_sec dd .main {
    font-weight: 600;
}

/* --------------------------------------------------
  Permit List (Section 05)
-------------------------------------------------- */
.permit_panel {
    margin-top: clamp(32px, 6vw, 48px);
    margin-top: 0;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 50px rgba(31, 41, 59, 0.1);
    border: 1px solid #555;
}

.permit_panel__head {
    background: linear-gradient(135deg, var(--company-accent), var(--company-accent-light));
    background: #4a4a4a;
    color: #fff;
    padding: clamp(22px, 4vw, 22px) clamp(20px, 4vw, 30px);
    display: grid;
    gap: 8px;
}

.permit_panel__head h3 {
    margin: 0;
    font-size: clamp(20px, 3.6vw, 28px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
}

.permit_panel__head p {
    margin: 0;
    font-size: clamp(14px, 2.8vw, 16px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.86);
}

.permit_panel__body {
    padding: clamp(18px, 3.6vw, 32px) clamp(18px, 3.6vw, 36px);
}

table.permit_table {
    width: 100%;
    border-collapse: collapse;
    font-size: clamp(14px, 2.6vw, 16px);
    color: var(--company-text);
}

table.permit_table th,
table.permit_table td {
    padding: clamp(10px, 2.8vw, 10px) clamp(10px, 3vw, 14px);
    border-bottom: 1px solid #ddd;
    vertical-align: top;
}

table.permit_table th {
    width: 36%;
    /* background: rgba(15, 76, 129, 0.08); */
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--company-accent);
    color: #333;
    border-right: 1px solid #ddd;
}

table.permit_table td {
    /* background: rgba(15, 76, 129, 0.02); */
    color: var(--company-muted);
    line-height: 1.8;
}

table.permit_table tr:nth-child(even) td {
    background: #fff;
}

table.permit_table td.permit_label {
    width: 13%;
    font-weight: 600;
    /* color: var(--company-accent); */
    color: #000;
    /* background: rgba(15, 76, 129, 0.06); */
    letter-spacing: 0.05em;
    border-right: 1px solid #ddd;
}

table.permit_table td.permit_value {
    font-weight: 500;
}

table.permit_table tr:last-child th,
table.permit_table tr:last-child td {
    border-bottom: none;
}

.permit_category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* .permit_category::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    display: inline-block;
}
 */
@media (max-width: 720px) {
    .permit_panel__head {
        text-align: center;
    }

    table.permit_table,
    table.permit_table tbody,
    table.permit_table tr,
    table.permit_table th,
    table.permit_table td {
        display: block;
        width: 100%;
    }

    table.permit_table th {
        border-right: none;
        border-bottom: none;
        background: rgba(15, 76, 129, 0.1);
        margin-bottom: 6px;
    }

    table.permit_table td {
        border-bottom: none;
        /* background: rgba(15, 76, 129, 0.03); */
        margin-bottom: 16px;
        padding-top: 10px;
    }

    table.permit_table td.permit_label {
        /* background: rgba(15, 76, 129, 0.12); */
        margin-bottom: 6px;
    }

    table.permit_table td.permit_value {
        margin-bottom: 0;
    }

    table.permit_table tr {
        display: flex;
        flex-wrap: wrap;
        border-bottom: 1px solid rgba(15, 76, 129, 0.16);
    }

    table.permit_table th {
        width: 100%;
        margin-bottom: 6px;
        border-right: none;
        border-bottom: none;
        background: rgba(15, 76, 129, 0.12);
    }

    table.permit_table td.permit_label,
    table.permit_table td.permit_value {
        width: 40%;
    }

    table.permit_table td.permit_value {
        width: 60%;
        display: flex;
        align-items: center;
        padding: 12px;
        border-right: none;
        border-bottom: none;
        /* background: rgba(15, 76, 129, 0.03); */
    }

    table.permit_table td.permit_label {
        font-weight: 600;
        /* color: var(--company-accent); */
    }

    table.permit_table td.permit_value {
        justify-content: flex-start;
        border-left: 1px solid rgba(15, 76, 129, 0.12);
    }

    table.permit_table td.permit_value[colspan] {
        width: 100%;
        border-left: none;
    }

    table.permit_table td.permit_label[colspan="2"],
    table.permit_table td.permit_value[colspan="2"] {
        width: 100%;
        justify-content: center;
        font-weight: 700;
        /* color: var(--company-accent); */
    }
}





.panel {
    margin-bottom: 12px
}

@media all and (max-width: 900px) {
    .panel {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center
    }
}

.panel>.ttl {
    width: min(31.9444444444vw, 460px);
    display: flex;
    flex-direction: column;
    gap: 9px
}

@media all and (max-width: 900px) {
    .panel>.ttl {
        width: var(--detailInnerWidth);
        gap: 6px
    }
}

.panel>.ttl div:first-child {
    font-family: termina, sans-serif;
    font-weight: 600 !important;
    font-style: normal;
    font-feature-settings: "palt";
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    font-size: 10px;
    color: #2853c2
}

.panel>.ttl div:last-child {
    font-weight: 700 !important;
    font-style: normal;
    font-feature-settings: "palt";
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    line-height: 130%;
    color: #313133;
    letter-spacing: .08em
}

@media all and (max-width: 900px) {
    .panel>.ttl div:last-child {
        font-size: 15px;
        line-height: 22.5px
    }
}

.panel>.list {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

@media all and (max-width: 900px) {
    .panel>.list {
        margin-top: 24px;
        gap: 8px;
    }
}

.panel>.list>.item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* width: min(33.3333333333vw,480px); */
    border-radius: 8px;
    background-color: #ececec;
    padding: 0 24px 24px
}

@media all and (max-width: 900px) {
    .panel>.list>.item {
        width: var(--detailInnerWidth);
        padding: 0 30px 15px;
    }
}

.panel>.list>.item>.head {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: min(30vw, 432px);
    width: 100%;
    border-bottom: 1px solid #ddd;
    padding: 24px 0;
    margin-bottom: 24px
}

@media all and (max-width: 900px) {
    .panel>.list>.item>.head {
        width: 70.1333333333vw;
        padding: 24px 0;
        margin-bottom: 24px
    }
}

.panel>.list>.item>.head>div:first-child {
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 500 !important;
    font-style: normal;
    font-feature-settings: "palt";
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    flex-shrink: 0;
    background: #9a81b9;
    border-radius: 1.5rem;
    box-shadow: inset -.58px -.58px .58px #00000026, inset .58px .58px .58px #fff;
    font-size: 30px;
    text-align: center;
    letter-spacing: 0em;
    color: #ffffff;
    margin-right: 24px;
    font-family: "garamond-premier-pro", serif;
    font-weight: 400;
    font-style: italic;
}

@media all and (max-width: 900px) {
    .panel>.list>.item>.head>div:first-child {
        width: 40px;
        height: 40px;
        font-size: 25px;
    }
}

.panel>.list>.item>.head>div:first-child.-num {
    font-family: termina, sans-serif;
    font-weight: 700 !important;
    font-style: normal;
    font-feature-settings: "palt";
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    padding-top: 2px
}

@media all and (max-width: 900px) {
    .panel>.list>.item>.head>div:first-child.-num {
        font-size: 14px
    }
}

.panel>.list>.item>.head>div:last-child {
    position: relative;
    top: 0;
    left: 0;
    font-weight: 700 !important;
    font-style: normal;
    font-feature-settings: "palt";
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    line-height: 24px;
    letter-spacing: .08em;
    color: #00000f;
    padding-left: 0px;
    min-height: 48px
}

@media all and (max-width: 900px) {
    .panel>.list>.item>.head>div:last-child {
        font-size: 15px;
        line-height: 22.5px;
        padding-left: 24px;
        min-height: 40px
    }
}

.panel>.list>.item>.head>div:last-child>span {
    font-weight: 700 !important;
    font-style: normal;
    font-feature-settings: "palt";
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    /* font-size: 16px; */
    line-height: 24px;
    letter-spacing: .08em;
    color: #000;
    padding-left: 15px;
}

.panel>.list>.item>.head>div:last-child>span:before {
    content: '-';
    padding-right: 10px
}



@media all and (max-width: 900px) {
    .panel>.list>.item>.head>div:last-child>span {
        font-size: 15px;
        line-height: 22.5px
    }
}

/* .panel>.list>.item>.head>div:last-child:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: #0059a4;
}
 */
.panel>.list>.item.-headOnly {
    padding: 0 24px
}

.panel>.list>.item.-headOnly>.head {
    border-bottom: none;
    margin-bottom: 0
}

.panel>.list>.item.-headOnly>.head>div:first-child {
    font-family: termina, sans-serif;
    font-weight: 700 !important;
    font-style: normal;
    font-feature-settings: "palt";
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    padding-top: 2px
}

@media all and (max-width: 900px) {
    .panel>.list>.item.-headOnly>.head>div:first-child {
        font-size: 14px
    }
}

.panel>.list>.item>.body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: min(30vw, 432px);
    width: 100%;
}

@media all and (max-width: 900px) {
    .panel>.list>.item>.body {
        width: 70.1333333333vw;
        gap: 6px
    }
}

.panel>.list>.item>.body>.text {
    font-weight: 400 !important;
    font-style: normal;
    font-feature-settings: "palt";
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
    line-height: 25.2px;
    letter-spacing: .1em;
    color: #000000
}

@media all and (max-width: 900px) {
    .panel>.list>.item>.body>.text {
        font-size: 13px;
        line-height: 23.4px;
        word-break: break-all
    }
}

.panel>.list>.item>.body>div {
    display: flex;
    flex-direction: row;
    align-items: flex-start
}

.panel>.list>.item>.body>div span:first-child {
    /* width: 4px; */
    /* height: 4px; */
    /* background-color: #313133; */
    /* border-radius: 50%; */
    /* flex-shrink: 0; */
    /* margin-right: 8px; */
    /* translate: 0 12px; */
}

.panel>.list>.item>.body>div span:last-child {
    font-weight: 400 !important;
    font-style: normal;
    font-feature-settings: "palt";
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    line-height: 25.2px;
    letter-spacing: .1em
}

@media all and (max-width: 900px) {
    .panel>.list>.item>.body>div span:last-child {
        font-size: 13px;
        line-height: 23.4px
    }
}

.panel.-offset .body {
    padding-left: 8px
}

@media all and (max-width: 900px) {
    .panel.-offset .body {
        padding-left: 0
    }
}


.contact-cta-left {
    margin-top: 10px
}




/* --------------------------------------------------
  Utilities / animation helpers
-------------------------------------------------- */