@charset "UTF-8";
/* CSS Document */

/*==================
ごあいさつ
====================*/
.sec_greeting .flex_box {
    display: flex;
    gap: 70px;
}
.sec_greeting .flex_box .text_box {
    width: calc(85% - 35px);
}
.sec_greeting .flex_box .text_box p:nth-of-type(n + 2) {
    padding-top: 16px;
}
.sec_greeting .flex_box .image_box {
    width: calc(25% - 35px);
}
.sec_greeting .flex_box .image_box figcaption {
    text-align: right;
    margin-top: 5px;
}
.sec_greeting .flex_box .image_box figcaption .name {
    font-size: 2rem;
    font-weight: 500;
    display: inline-block;
    margin-left: 16px;
}

@media (min-width: 1261px) {
    .sec_greeting .flex_box {
        margin-right: 80px;
    }
}
@media (max-width: 960px) {
    .sec_greeting .flex_box {
        display: block;
    }
    .sec_greeting .flex_box .text_box {
        width: 100%;
    }
    .sec_greeting .flex_box .image_box {
        width: auto;
        text-align: right;
        margin-top: 40px;
        margin-right: 0;
        margin-left: auto;
    }
    .sec_greeting .flex_box .image_box img {
        max-width: 240px;
    }
}
@media (max-width: 600px) {
    .sec_greeting .flex_box .image_box {
        width: 70%;
        text-align: center;
        margin: 30px auto 0;
    }
    .sec_greeting .flex_box .image_box img {
        width: 100%;
    }
}


/*==================
事業方針
====================*/
.sec_policy h3 {
    text-align: center;
    color: var(--BL-color);
    font-size: 2.6rem;
    padding-left: 0;
}
.sec_policy h3::before {
    content: none;
}
.sec_policy .philosophy_list li {
    display: flex;
    align-items: center;
    gap: 22px;
}
.sec_policy .philosophy_list li span {
    font-size: 5.8rem;
    font-family: "Alike", serif;
    color: var(--L-bl-color1);
    padding-left: 50px;
    position: relative;
}
.sec_policy .philosophy_list li span::before {
    content:'Philosophy';
    font-size: 1.4rem;
    color: var(--BL-color);
    font-family: "Afacad", sans-serif;
    letter-spacing: 1.2px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.sec_policy .philosophy_list li:nth-of-type(1) span {
    letter-spacing: 5px;
}
.sec_policy .philosophy_list li:nth-of-type(2) span,.sec_policy .philosophy_list li:nth-of-type(3) span {
    letter-spacing: 1.2px;
}

@media (max-width: 600px) {
    .sec_policy .philosophy_list li {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }
    .sec_policy .philosophy_list li span {
        font-size: 4.6rem;
        line-height: 1;
    }
    .sec_policy .philosophy_list li:nth-of-type(n + 2) {
        margin-top: 20px;
    }
}

.sec_policy .policy {
    margin-top: 60px;
}
.sec_policy .policy_list {
    padding-left: 20px;
}
.sec_policy h4:nth-of-type(n + 2) {
    margin-top: 24px;
}

.sec_policy .thought {
    margin-top: 60px;
}
.sec_policy .thought .text {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .sec_policy .policy_list {
        padding-left: 8px;
    }
    .sec_policy .thought .text {
        font-size: 1.6rem;
        text-align: left;
    }
}


/*==================
沿革
====================*/
.sec_overview .common_table + p.date {
    text-align: right;
    margin-top: 6px;
    margin-right: 10px;
}


/*==================
沿革
====================*/
.sec_history table {
    max-width: 900px;
    margin-top: 30px;
}
.sec_history table tr:nth-of-type(odd) {
    background: var(--L-bl-color2);
}
.sec_history table tr th {
    padding: 5px 12px 5px 30px;
    font-weight: 400;
    vertical-align: text-bottom;
    width: 10.5em;
}
.sec_history table tr td {
    padding: 5px 12px 5px 12px;
}

@media (max-width: 768px) {
   .sec_history table tr th {
    display: block;
    padding: 9px 12px 2px;
    color: var(--BL-color);
    font-weight: 500;
   }
   .sec_history table tr td {
    display: block;
    padding: 2px 12px 10px;
   }
}


/*==================
ディスクロージャー
====================*/
.sec_disc .common_bl_btn {
    margin-top: 30px;
}