@charset "utf-8";


/* ===============================================
   about_us
=============================================== */
.about_table {
    width: 100%;
}

.about_table tr {
    border-bottom: 1px solid var(--color-main);
}

.about_table tr:first-child {
    border-top: 1px solid var(--color-main);
}

.about_table th,
.about_table td {
    font-size: clamp(10px, 1.4vw, 16px);
    text-align: left;
    padding: clamp(0px, 1.5vw, 18px) 0;
    vertical-align: middle;
}

.about_table th {
    width: 13%;
    font-weight: var(--font-w-sb);
    color: var(--color-main);
    padding-right: 1em;
}

.about_table td {
    font-weight: var(--font-w-r);
    line-height: 1.5em;
}

.list_1 li {
    padding-left: 0.8em;
    position: relative;
}
.list_1 li::before {
    content: "\025cf";
    font-size: 0.5em;
    color: #54C3F1;
    position: absolute;
    left: 0;
    top: 0.1em;
}

.about_table .list_1 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5em;
}

.about_table .list_1 li {
    width: 49%;
}

.about_table .list_1 li:not(:first-child) {
    margin-top: 0;
}

.text_em {
    font-size: clamp(10px, 1.2vw, 14px);
    line-height: 1;
    display: inline-block;
    font-weight: var(--font-w-sb);
    color: #fff;
    text-align: center;
    background-color: #00AAFF;
    padding: 0.2em 0.4em 0.3em 0.45em;
    margin-right: 0.5em;
}

.about_table .address {
    display: flex;
    align-items: center;
}

.map_button {
    width: clamp(0px, 5vw, 60px);
    aspect-ratio: 60 / 20;
    font-size: clamp(10px, 1.2vw, 14px);
    font-weight: var(--font-w-sb);
    color: var(--color-main);
    border: 1px solid var(--color-main);
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 0.7em;
    margin-left: 1em;
    position: relative;
    z-index: 1;
    overflow: hidden
}
.map_button::before {
    content: "";
    width: 0.7em;
    height: 0.7em;
    background: url(../img/arrow_blue.svg) no-repeat center center / contain;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0.3em;
    margin: auto;
    transition: filter 0.4s ease;
}
.map_button::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-main);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
    border-radius: 0;
    backface-visibility: hidden;
    will-change: transform;
}
.map_button:hover {
    color: #fff;
}
.map_button:hover::before {
    filter: brightness(0) invert(1);
}
.map_button:hover::after {
    transform: translateX(0%);
}

.about_table .tel {
    display: flex;
    align-items: center;
    gap: 0 clamp(0px, 4.2vw, 50px);
    margin-top: 0.5em;
}

.about_table .tel .text_em {
    width: 3em;
}

.about_table .officer p + p {
    margin-top: 0.5em;
}

.about_table .officer .text_em {
    width: 4em;
}

@media screen and (max-width: 768px) {
    .about_table tr:last-child {
        border-bottom: none;
    }
    
    .about_table th,
    .about_table td {
        width: 100%;
        display: block;
        font-size: clamp(0px, 4.4dvw, 17px);
    }

    .about_table th {
        padding: clamp(0px, 6.4dvw, 25px) 0 clamp(0px, 3.8dvw, 15px);
    }

    .about_table td {
        padding: 0 0 clamp(0px, 6.4dvw, 25px);
    }

    .about_table .list_1 li {
        width: 100%;
    }

    .text_em {
        font-size: clamp(0px, 3.6dvw, 14px);
        padding: 0.3em 0.4em 0.3em 0.45em;
    }

    .about_table .address {
        position: relative;
    }

    .map_button {
        width: clamp(0px, 15.4dvw, 60px);
        font-size: clamp(0px, 3.6dvw, 14px);
        margin-left: 0;
        position: absolute;
        left: 11em;
        bottom: 0.1em;
    }

    .about_table .tel {
        justify-content: space-between;
        gap: 0 clamp(0px, 2.6dvw, 10px);
        margin-top: 0.7em;
    }

    .about_table .tel .nb {
        letter-spacing: 0;
        white-space: nowrap;
    }

    .about_table .tel .text_em {
        width: 2.6em;
        padding: 0.2em 0.2em 0.2em 0.25em;
        margin-right: 0.4em;
    }

    .about_table .officer {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .about_table .officer p + p {
        margin-top: 0;
    }
}

.table_title_box {
    width: 50%;
    aspect-ratio: 450 / 50;
    background-color: var(--color-main);
    padding: 0 clamp(0px, 1.7vw, 20px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.table_title_box p {
    font-size: clamp(12px, 1.5vw, 18px);
    font-weight: var(--font-w-sb);
    color: #fff;
}

@media screen and (max-width: 768px) {
    .table_title_box {
        width: 100%;
        aspect-ratio: 360 / 50;
        padding: 0 clamp(0px, 5.1dvw, 20px);
    }

    .table_title_box p {
        font-size: clamp(0px, 4.6dvw, 18px);
        line-height: 1.1em;
    }
}

.website_button {
    width: clamp(0px, 7.5vw, 90px);
    aspect-ratio: 90 / 20;
    font-size: clamp(10px, 1.2vw, 14px);
    font-weight: var(--font-w-sb);
    letter-spacing: 0;
    color: var(--color-main);
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 0.2em;
    position: relative;
    z-index: 1;
    overflow: hidden
}
.website_button::before {
    content: "";
    width: 0.6em;
    height: 0.6em;
    background: url("../img/arrow_blue.svg") no-repeat center center / contain;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0.1em;
    margin: auto;
    transition: filter 0.4s ease;
}
.website_button::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-main);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
    border-radius: 0;
    backface-visibility: hidden;
    will-change: transform;
}
.website_button:hover {
    color: #fff;
}
.website_button:hover::before {
    filter: brightness(0) invert(1);
}
.website_button:hover::after {
    transform: translateX(0%);
}

@media screen and (max-width: 768px) {
    .website_button {
        width: clamp(0px, 23.1dvw, 90px);
        font-size: clamp(0px, 3.6dvw, 14px);
    }
}


/* ===============================================
   overview
=============================================== */
.about #page_cont_box {
    padding: clamp(0px, 3.3vw, 40px) clamp(0px, 5.8vw, 70px) clamp(0px, 5vw, 60px);
}

.about .page_title {
    letter-spacing: 0.2em;
}

.about .about_table tr:first-child {
    border-top: none;
}

.about .about_table tr:last-child {
    border-bottom: none;
}

.about .about_table th {
    width: 23%;
}

@media screen and (max-width: 768px) {
    .about #page_cont_box {
        padding: clamp(0px, 2.6dvw, 10px) clamp(0px, 5.1dvw, 20px) clamp(0px, 1.3dvw, 5px);
    }

    .about .page_title {
        letter-spacing: 0.2em;
    }

    .about .about_table th {
        width: 100%;
    }
}


/* ===============================================
   chairman
=============================================== */
.chairman .text_block {
    font-size: clamp(12px, 1.4vw, 16px);
}

.chairman p {
    font-size: clamp(12px, 1.4vw, 16px);
    line-height: 1.9em;
    font-weight: var(--font-w-r);
    text-indent: 1em;
}

.chairman .text_block + .text_block {
    margin-top: 2em;
}

.chairman .name {
    text-align: right;
}

@media screen and (max-width: 768px) {
    .chairman .text_block,
    .chairman p {
        font-size: clamp(0px, 4.6dvw, 18px);
    }
}


/* ===============================================
   organization
=============================================== */
.organization .text {
    font-size: clamp(12px, 1.4vw, 16px);
}

.organization .sec_chart {
    padding: clamp(0px, 2.5vw, 30px) 0 clamp(0px, 6.3vw, 75px);
}

@media screen and (max-width: 768px) {
    .organization .text {
        font-size: clamp(0px, 4.6dvw, 18px);
        line-height: 1.5em;
    }

    .organization .sec_chart {
        padding: clamp(0px, 5.1dvw, 20px) 0 clamp(0px, 13.9dvw, 50px);
    }
}


/* ===============================================
   membership
=============================================== */
.membership_list {
    display: flex;
    flex-direction: column;
    gap: clamp(0px, 5vw, 60px) 0;
}

.membership_list .about_table th {
    width: 17%;
}

.membership_list .about_table td:nth-of-type(1) {
    width: 47%;
    padding-right: 1em;
}

.membership_list .about_table td:nth-of-type(2) {
    width: 36%;
    letter-spacing: 0;
}

.membership_list .about_table .address {
    display: flex;
    align-items: center;
}

.membership_list .about_table .nb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.membership_list .text_em {
    padding: 0.2em 0.3em 0.3em 0.35em;
    margin-right: 0.3em;
}

.nb_row2 {
    position: relative;
}
.nb_row2 span {
    position: absolute;
    right: 0;
    bottom: -1.1em;
}

.membership_list + .cont_title {
    margin-top: clamp(0px, 5.8vw, 70px);
}

@media screen and (max-width: 768px) {
    .membership #page_cont_box {
        padding-left: 0;
        padding-right: 0;
    }

    .membership .cont_title,
    .membership .about_table {
        width: 320px;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .membership .about_table tr:first-child {
        border-top: none;
    }

    .membership_list {
        gap: 0;
    }

    .membership_list .about_table th {
        width: 100%;
    }

    .membership_list .about_table td:nth-of-type(1) {
        width: 100%;
        padding-right: 0;
        padding-bottom: 0.7em;
    }

    .membership_list .about_table td:nth-of-type(2) {
        width: 100%;
    }

    .membership_list .about_table td:nth-of-type(2) p {
        letter-spacing: 0.03em;
    }

    .membership_list .about_table .address {
        flex-direction: column;
        align-items: flex-start;
    }

    .membership_list .text_em {
        padding: 0.1em 0.3em 0.2em 0.35em;
    }

    .membership_list + .cont_title {
        margin-top: clamp(0px, 10.3dvw, 40px);
    }
}


/* ===============================================
   factory
=============================================== */
.sec_map {
    width: 100%;
    margin-bottom: clamp(0px, 2.5vw, 30px);
}

.sec_company {
    width: 100%;
}

.company_table {
    font-size: clamp(12px, 1.4vw, 16px);
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.company_block {
    display: flex;
    gap: 3px;
    width: 100%;
    position: relative;
}

.company_title {
    width: 26.5%;
    font-weight: var(--font-w-sb);
    color: #fff;
    background-color: var(--color-main);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company_row_wrap,
.company_row {
    flex: 1;
    width: 100%;
    gap: 3px;
    display: flex;
    position: relative;
}

.company_row_wrap {
    flex-direction: column;
}

.company_row > div {
    height: clamp(0px, 5.8vw, 70px);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e7e9f3;
}

.company_block:nth-of-type(odd) .company_row > div {
    background-color: #e5f6fd;
}

.company_row .company_name {
    width: 32.5%;
}
.company_row .company_location {
    width: 36.5%;
}
.company_row .company_img {
    width: 31%;
}
.company_row .company_img img {
    max-height: 90%;
}

#company_table_head .company_title,
#company_table_head .company_name,
#company_table_head .company_location,
#company_table_head .company_img {
    height: clamp(0px, 4.2vw, 50px);
    font-weight: var(--font-w-sb);
    color: var(--color-main);
    background-color: transparent;
}

.table_note {
    font-size: clamp(12px, 1.4vw, 16px);
    font-weight: var(--font-w-r);
    padding-left: 1em;
    text-indent: -1em;
    margin-top: 1em;
}

@media screen and (max-width: 768px) {
    #page_cont_box.factory {
        padding-left: 0;
        padding-right: 0;
    }

    .sec_map {
        margin-bottom: clamp(0px, 17.9dvw, 70px);
    }

    .company_table {
        font-size: clamp(0px, 4.6dvw, 18px);
    }

    .factory .cont_title {
        padding-left: clamp(0px, 5.1dvw, 20px);
        padding-right: clamp(0px, 5.1dvw, 20px);
    }

    .company_block {
        flex-direction: column;
        gap: 0;
    }

    .company_title {
        width: 100%;
        aspect-ratio: 360 / 60;
        justify-content: flex-start;
        padding-left: 1em;
    }

    .company_row_wrap,
    .company_row {
        gap: 0;
    }

    .company_row_wrap .company_row + .company_row::before {
        content: "";
        width: 90%;
        height: 1px;
        background-color: var(--color-main);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin: auto;
    }

    .company_row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .company_row > div {
        height: auto;
        background-color: transparent;
    }

    .company_block:nth-of-type(odd) .company_row > div {
        background-color: transparent;
    }

    .company_row .company_name {
        width: 100%;
        grid-column: 1 / 2;
        grid-row: 1;
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
        height: clamp(0px, 13.9dvw, 50px);
        padding-left: 1em;
        padding-bottom: 0.2em;
        color: var(--color-main);
        font-weight: var(--font-w-sb);
    }

    .company_row .company_location {
        width: 100%;
        grid-column: 1 / 2;
        grid-row: 2;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        height: clamp(0px, 13.9dvw, 50px);
        padding-left: 1em;
        padding-top: 0.2em;
        white-space: nowrap;
    }

    .company_row .company_img {
        width: 100%;
        grid-column: 2 / 3;
        grid-row: 1 / 3;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #company_table_head .company_title {
        display: none;
    }

    #company_table_head .company_name,
    #company_table_head .company_location{
        height: clamp(0px, 9.2dvw, 36px);
    }

    #company_table_head .company_img {
        height: auto;
    }

    .table_note {
        font-size: clamp(0px, 3.8dvw, 15px);
        line-height: 1.3em;
        margin-left: clamp(0px, 5.1dvw, 20px);
        margin-right: clamp(0px, 5.1dvw, 20px);
    }
}


/* ===============================================
   guideline
=============================================== */
.bold {
    font-weight: var(--font-w-b);
}

.mt0 {
    margin-top: 0 !important;
}

.guideline .cont_title {
    margin-bottom: 5px;
}

.guideline .list_1 li {
    padding-left: 0;
    margin-top: 0;
}

.guideline .list_1 li::before {
    position: relative;
    top: -0.2em;
    margin-right: 0.5em;
}

.guideline .list_1 li {
    line-height: 1.9em;
}

.guideline .cont_title_sub {
    margin-bottom: clamp(0px, 2.5vw, 30px);
}

.sec_guideline {
    margin-top: clamp(0px, 2.5vw, 30px);
}

.text_item,
.text_mt {
    margin-top: clamp(0px, 2.5vw, 30px);
}

.text_item:first-of-type {
    margin-top: 0;
}

.text_r {
    text-align: right;
    margin-top: 1.3em;
}

.list_order {
    counter-reset: item;
}

.list_order > li:not(:first-child) {
    margin-top: clamp(0px, 2.5vw, 30px);
}

.list_order > li .cont_title_3::before {
    counter-increment: item;
    content: counter(item)"．";
}

.list_order > li .cont_title_3.no_num::before {
    counter-increment: none;
    content: none;
}

.list_order > li .indent {
    padding-left: 1.2em;
}


@media screen and (max-width: 768px) {
    .guideline .cont_title {
        margin-bottom: 15px;
    }

    .guideline .cont_title_sub {
        margin-bottom: clamp(0px, 7.7dvw, 30px);
    }

    .sec_guideline {
        margin-top: clamp(0px, 7.7dvw, 30px);
    }

    .list_order > li:not(:first-child) {
        margin-top: clamp(0px, 7.7dvw, 30px);
    }

    .text_item,
    .text_mt {
        margin-top: clamp(0px, 7.7dvw, 30px);
    }

    .guideline .list_1 li {
        line-height: 1.8em;
    }
}

