/* --------------------
 About
-------------------- */
.main {
    overflow-x: clip;
}

.philosophy {
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    gap: 50px 40px;
    justify-content: center;
    margin: 0 auto;
    max-width: calc(930px + var(--c-pad)*2);
    padding: 50px var(--c-pad) 80px;
    width: 100%;
}

@media (min-width: 768px) {
    .philosophy {
        flex-wrap: nowrap;
        padding: 100px var(--c-pad) 120px;
    }
}

@media (min-width: 992px) {
    .philosophy {
        gap: 66px;
    }
}

.philosophy__logo {
    flex: 0 0 140px;
}

@media (min-width: 768px) {
    .philosophy__logo {
        flex: 0 0 160px;
    }
}

@media (min-width: 992px) {
    .philosophy__logo {
        flex: 0 0 220px;
    }
}

.philosophy__main {
    flex: 0 0 100%;
}

@media (min-width: 768px) {
    .philosophy__main {
        flex: 1 1 auto;
    }
}

.philosophy__main__item {
    margin: 0 0 50px;
    width: 100%;
}

.philosophy__main__item:last-child {
    margin-bottom: 0;
}

.philosophy__main__item__title {
    align-items: baseline;
    display: flex;
    flex-flow: row nowrap;
    gap: 12px;
    justify-content: center;
    margin: 0 0 10px;
}

@media (min-width: 768px) {
    .philosophy__main__item__title {
        justify-content: flex-start;
    }
}

.philosophy__main__item__title__en {
    color: var(--color-teal);
    font-family: var(--ff-josefin-sans);
    font-size: var(--fs16);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 0;
}

@media (min-width: 768px) {
    .philosophy__main__item__title__en {
        font-size: var(--fs18);
    }
}

.philosophy__main__item__title__ja {
    color: var(--color-teal);
    font-size: var(--fs14);
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.2;
    margin: 0;
}

@media (min-width: 768px) {
    .philosophy__main__item__title__ja {
        font-size: var(--fs16);
    }
}

.philosophy__main__item__text {
    font-size: var(--fs20);
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .philosophy__main__item__text {
        text-align: left;
    }
}

@media (min-width: 992px) {
    .philosophy__main__item__text {
        font-size: var(--fs26);
    }
}

.value {
    margin: 0 0 80px;
    position: relative;
}

@media (min-width: 768px) {
    .value {
        margin: 0 0 90px;
    }
}

.value-container {
    margin: 0 auto;
    padding: 30px var(--c-pad) 50px;
    position: relative;
    width: 100%;
    z-index: 1;
}

@media (min-width: 768px) {
    .value-container {
        padding: 45px var(--c-pad) 80px;
    }
}

.value__head {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin: 0 0 16px;
    padding: 28px 0 20px;
    position: relative;
}

@media (min-width: 768px) {
    .value__head {
        margin: 0 0 20px;
        padding: 44px 0 32px;
    }
}

@media (min-width: 992px) {
    .value__head {
        padding: 52px 0 36px;
    }
}

.value__head__frame {
    bottom: 0;
    left: -4px;
    pointer-events: none;
    position: absolute;
    right: auto;
    top: 0;
    width: 160px;
    z-index: 0;
}

@media (min-width: 768px) {
    .value__head__frame {
        left: -8px;
        width: 200px;
    }
}

@media (min-width: 1240px) {
    .value__head__frame {
        left: -36px;
    }
}

.value__head__frame span {
    bottom: 0;
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.value__head__frame span:before, .value__head__frame span:after {
    background-color: #cae7df;
    bottom: auto;
    content: "";
    display: block;
    height: 19px;
    left: auto;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    position: absolute;
    right: auto;
    top: auto;
    width: 29px;
}

@media (min-width: 768px) {
    .value__head__frame span:before, .value__head__frame span:after {
        height: 26px;
        width: 40px;
    }
}

.value__head__frame span:nth-child(1):before {
    left: 0;
    -webkit-mask-image: url(../images/commons/com-frame-left-top.svg);
    mask-image: url(../images/commons/com-frame-left-top.svg);
    top: 0;
}

.value__head__frame span:nth-child(1):after {
    -webkit-mask-image: url(../images/commons/com-frame-right-top.svg);
    mask-image: url(../images/commons/com-frame-right-top.svg);
    right: 0;
    top: 0;
}

.value__head__frame span:nth-child(2):before {
    bottom: 0;
    left: 0;
    -webkit-mask-image: url(../images/commons/com-frame-left-bottom.svg);
    mask-image: url(../images/commons/com-frame-left-bottom.svg);
}

.value__head__frame span:nth-child(2):after {
    bottom: 0;
    -webkit-mask-image: url(../images/commons/com-frame-right-bottom.svg);
    mask-image: url(../images/commons/com-frame-right-bottom.svg);
    right: 0;
}

.value__head__title {
    align-items: baseline;
    display: flex;
    flex-flow: row nowrap;
    gap: 0 12px;
    justify-content: flex-start;
}

@media (min-width: 768px) {
    .value__head__title {
        gap: 0 20px;
    }
}

.value__head__title__en {
    color: var(--color-teal);
    font-family: var(--ff-josefin-sans);
    font-size: 1.6875rem;
    letter-spacing: 0;
    line-height: 1;
    margin: 0;
}

@media (min-width: 768px) {
    .value__head__title__en {
        font-size: 2.625rem;
    }
}

.value__head__title__ja {
    color: var(--color-teal);
    font-size: var(--fs12);
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1;
    margin: 0;
}

@media (min-width: 768px) {
    .value__head__title__ja {
        font-size: var(--fs18);
    }
}

.value__title {
    color: #4d4d4d;
    font-size: var(--fs20);
    font-weight: 500;
    letter-spacing: 0.2em;
    line-height: 1.2;
    margin: 0 0 40px;
    text-align: center;
}

@media (min-width: 768px) {
    .value__title {
        font-size: var(--fs24);
    }
}

@media (min-width: 992px) {
    .value__title {
        font-size: var(--fs26);
    }
}

.value__title em {
    font-size: var(--fs28);
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.2em;
}

@media (min-width: 768px) {
    .value__title em {
        font-size: var(--fs32);
    }
}

@media (min-width: 992px) {
    .value__title em {
        font-size: var(--fs38);
    }
}

.value__list {
    align-items: flex-start;
    display: flex;
    flex-flow: row wrap;
    gap: 30px 24px;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .value__list {
        gap: 30px;
    }
}

@media (min-width: 992px) {
    .value__list {
        flex-wrap: nowrap;
    }
}

@media (min-width: 1240px) {
    .value__list {
        gap: 40px;
    }
}

.value__list__item {
    flex: 0 0 calc(50% - 12px);
}

@media (min-width: 768px) {
    .value__list__item {
        flex: 0 0 calc(33.33333% - 20px);
    }
}

@media (min-width: 992px) {
    .value__list__item {
        flex: 0 0 calc(20% - 24px);
    }
}

@media (min-width: 1240px) {
    .value__list__item {
        flex: 0 0 calc(20% - 32px);
    }
}

.value__list__item__fig {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    height: 55px;
    justify-content: center;
    margin: 0 0 16px;
}

@media (min-width: 768px) {
    .value__list__item__fig {
        height: 63px;
    }
}

@media (min-width: 992px) {
    .value__list__item__fig {
        height: 78px;
    }
}

.value__list__item__fig .icon-01 {
    height: 55px;
    width: auto;
}

@media (min-width: 768px) {
    .value__list__item__fig .icon-01 {
        height: 63px;
    }
}

@media (min-width: 992px) {
    .value__list__item__fig .icon-01 {
        height: 78px;
    }
}

.value__list__item__fig .icon-02 {
    height: 41px;
    width: auto;
}

@media (min-width: 768px) {
    .value__list__item__fig .icon-02 {
        height: 47px;
    }
}

@media (min-width: 992px) {
    .value__list__item__fig .icon-02 {
        height: 58px;
    }
}

.value__list__item__fig .icon-03 {
    height: 44px;
    width: auto;
}

@media (min-width: 768px) {
    .value__list__item__fig .icon-03 {
        height: 50px;
    }
}

@media (min-width: 992px) {
    .value__list__item__fig .icon-03 {
        height: 62px;
    }
}

.value__list__item__fig .icon-04 {
    height: 52px;
    width: auto;
}

@media (min-width: 768px) {
    .value__list__item__fig .icon-04 {
        height: 60px;
    }
}

@media (min-width: 992px) {
    .value__list__item__fig .icon-04 {
        height: 74px;
    }
}

.value__list__item__fig .icon-05 {
    height: 52px;
    width: auto;
}

@media (min-width: 768px) {
    .value__list__item__fig .icon-05 {
        height: 60px;
    }
}

@media (min-width: 992px) {
    .value__list__item__fig .icon-05 {
        height: 74px;
    }
}

.value__list__item__title {
    color: var(--color-teal);
    font-size: var(--fs16);
    font-weight: 500;
    letter-spacing: 0.2em;
    line-height: 1.2;
    margin: 0 0 15px;
    text-align: center;
}

@media (min-width: 768px) {
    .value__list__item__title {
        font-size: var(--fs20);
    }
}

@media (min-width: 992px) {
    .value__list__item__title {
        font-size: var(--fs22);
    }
}

@media (min-width: 1240px) {
    .value__list__item__content {
        padding: 0 16px;
    }
}

.value__list__item__content p {
    font-size: var(--fs14);
    font-weight: 300;
    letter-spacing: 0.03em;
    line-height: 1.5;
    margin: 0;
}

@media (min-width: 768px) {
    .value__list__item__content p {
        font-size: var(--fs16);
    }
}

.message {
    margin: 0 0 80px;
}

@media (min-width: 768px) {
    .message {
        margin: 0 0 110px;
    }
}

@media (min-width: 992px) {
    .message {
        margin: 0 0 150px;
    }
}

.message-container {
    margin: 0 auto;
    padding: 0 var(--c-pad);
    position: relative;
    width: 100%;
    z-index: 1;
}

.message__head {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin: 0 0 40px;
    padding: 28px 0 20px;
    position: relative;
}

@media (min-width: 768px) {
    .message__head {
        margin: 0 0 30px;
        padding: 44px 0 32px;
    }
}

@media (min-width: 992px) {
    .message__head {
        padding: 52px 0 36px;
    }
}

.message__head__frame {
    bottom: 0;
    left: -4px;
    pointer-events: none;
    position: absolute;
    right: auto;
    top: 0;
    width: 160px;
    z-index: 0;
}

@media (min-width: 768px) {
    .message__head__frame {
        left: -8px;
        width: 200px;
    }
}

@media (min-width: 1240px) {
    .message__head__frame {
        left: -36px;
    }
}

.message__head__frame span {
    bottom: 0;
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.message__head__frame span:before, .message__head__frame span:after {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: auto;
    content: "";
    display: block;
    height: 19px;
    left: auto;
    position: absolute;
    right: auto;
    top: auto;
    width: 29px;
}

@media (min-width: 768px) {
    .message__head__frame span:before, .message__head__frame span:after {
        height: 26px;
        width: 40px;
    }
}

.message__head__frame span:nth-child(1):before {
    background-image: url(../images/commons/com-frame-left-top.svg);
    left: 0;
    top: 0;
}

.message__head__frame span:nth-child(1):after {
    background-image: url(../images/commons/com-frame-right-top.svg);
    right: 0;
    top: 0;
}

.message__head__frame span:nth-child(2):before {
    background-image: url(../images/commons/com-frame-left-bottom.svg);
    bottom: 0;
    left: 0;
}

.message__head__frame span:nth-child(2):after {
    background-image: url(../images/commons/com-frame-right-bottom.svg);
    bottom: 0;
    right: 0;
}

.message__head__title {
    align-items: baseline;
    display: flex;
    flex-flow: row nowrap;
    gap: 0 12px;
    justify-content: flex-start;
}

@media (min-width: 768px) {
    .message__head__title {
        gap: 0 20px;
    }
}

.message__head__title__en {
    color: var(--color-teal);
    font-family: var(--ff-josefin-sans);
    font-size: 1.6875rem;
    letter-spacing: 0;
    line-height: 1;
    margin: 0;
}

@media (min-width: 768px) {
    .message__head__title__en {
        font-size: 2.625rem;
    }
}

.message__head__title__ja {
    color: var(--color-teal);
    font-size: var(--fs12);
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1;
    margin: 0;
}

@media (min-width: 768px) {
    .message__head__title__ja {
        font-size: var(--fs18);
    }
}

.message__main {
    align-items: center;
    display: flex;
    flex-flow: column-reverse nowrap;
    gap: 20px 0;
    margin: 0 auto 30px;
    width: 100%;
}

@media (min-width: 768px) {
    .message__main {
        flex-direction: row;
    }
}

.message__main__fig {
    flex: 0 0 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .message__main__fig {
        flex: 0 0 50%;
    }
}

.message__main__fig img {
    width: 100%;
}

.message__main__contents {
    flex: 0 0 100%;
}

@media (min-width: 768px) {
    .message__main__contents {
        flex: 0 0 50%;
        padding: 0 20px 0 0;
    }
}

.message__main__contents__title {
    display: block;
    font-size: var(--fs20);
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 2.26;
    margin: 0 auto;
    width: -webkit-fit-content;
    width: fit-content;
}

@media (min-width: 768px) {
    .message__main__contents__title {
        font-size: var(--fs21);
    }
}

@media (min-width: 992px) {
    .message__main__contents__title {
        font-size: var(--fs26);
    }
}

@media (min-width: 1240px) {
    .message__main__contents__title {
        font-size: 2.0967741935vw;
    }
}

.message__content {
    margin: 0 auto;
    width: 100%;
}

.message__content p {
    font-size: var(--fs14);
    font-weight: 300;
    letter-spacing: 0.03em;
    line-height: 2.75;
    margin: 0;
}

@media (min-width: 768px) {
    .message__content p {
        font-size: var(--fs16);
    }
}

.overview {
    margin: 0 0 80px;
}

@media (min-width: 768px) {
    .overview {
        margin: 0 0 110px;
    }
}

.overview-container {
    margin: 0 auto;
    padding: 0 var(--c-pad);
    position: relative;
    width: 100%;
    z-index: 1;
}

.overview__head {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin: 0 0 40px;
    padding: 28px 0 20px;
    position: relative;
}

@media (min-width: 768px) {
    .overview__head {
        margin: 0 0 30px;
        padding: 44px 0 32px;
    }
}

@media (min-width: 992px) {
    .overview__head {
        padding: 52px 0 36px;
    }
}

.overview__head__frame {
    bottom: 0;
    left: -4px;
    pointer-events: none;
    position: absolute;
    right: auto;
    top: 0;
    width: 160px;
    z-index: 0;
}

@media (min-width: 768px) {
    .overview__head__frame {
        left: -8px;
        width: 200px;
    }
}

@media (min-width: 1240px) {
    .overview__head__frame {
        left: -36px;
    }
}

.overview__head__frame span {
    bottom: 0;
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.overview__head__frame span:before, .overview__head__frame span:after {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: auto;
    content: "";
    display: block;
    height: 19px;
    left: auto;
    position: absolute;
    right: auto;
    top: auto;
    width: 29px;
}

@media (min-width: 768px) {
    .overview__head__frame span:before, .overview__head__frame span:after {
        height: 26px;
        width: 40px;
    }
}

.overview__head__frame span:nth-child(1):before {
    background-image: url(../images/commons/com-frame-left-top.svg);
    left: 0;
    top: 0;
}

.overview__head__frame span:nth-child(1):after {
    background-image: url(../images/commons/com-frame-right-top.svg);
    right: 0;
    top: 0;
}

.overview__head__frame span:nth-child(2):before {
    background-image: url(../images/commons/com-frame-left-bottom.svg);
    bottom: 0;
    left: 0;
}

.overview__head__frame span:nth-child(2):after {
    background-image: url(../images/commons/com-frame-right-bottom.svg);
    bottom: 0;
    right: 0;
}

.overview__head__title {
    align-items: baseline;
    display: flex;
    flex-flow: row nowrap;
    gap: 0 12px;
    justify-content: flex-start;
}

@media (min-width: 768px) {
    .overview__head__title {
        gap: 0 20px;
    }
}

.overview__head__title__en {
    color: var(--color-teal);
    font-family: var(--ff-josefin-sans);
    font-size: 1.6875rem;
    letter-spacing: 0;
    line-height: 1;
    margin: 0;
}

@media (min-width: 768px) {
    .overview__head__title__en {
        font-size: 2.625rem;
    }
}

.overview__head__title__ja {
    color: var(--color-teal);
    font-size: var(--fs12);
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1;
    margin: 0;
}

@media (min-width: 768px) {
    .overview__head__title__ja {
        font-size: var(--fs18);
    }
}

.overview__table {
    border: none;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0 auto;
    width: 100%;
}

.overview__table > tbody > tr > th, .overview__table > tbody > tr > td {
    border-bottom: 1px solid rgba(var(--color-jade-rgb), 0.5);
    font-size: var(--fs14);
    letter-spacing: 0.03em;
    line-height: 1.75;
    vertical-align: top;
    width: auto;
}

@media (min-width: 768px) {
    .overview__table > tbody > tr > th, .overview__table > tbody > tr > td {
        font-size: var(--fs16);
    }
}

.overview__table > tbody > tr > th {
    font-weight: 400;
    min-width: 100px;
    padding: 16px 6px;
    text-align: center;
    width: 100px;
}

@media (min-width: 768px) {
    .overview__table > tbody > tr > th {
        min-width: 140px;
        padding: 23px 20px;
        width: 140px;
    }
}

.overview__table > tbody > tr > th .center {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}

.overview__table > tbody > tr > th .center > span {
    display: block;
}

.overview__table > tbody > tr > td {
    font-weight: 300;
    padding: 16px 0 16px 20px;
    text-align: left;
}

@media (min-width: 768px) {
    .overview__table > tbody > tr > td {
        padding: 23px 0 23px 30px;
    }
}

@media (min-width: 992px) {
    .overview__table > tbody > tr > td {
        padding: 23px 0 23px 40px;
    }
}

.overview__table > tbody > tr > td p {
    margin: 0 0 1.5em;
}

.overview__table > tbody > tr > td p:last-child {
    margin-bottom: 0;
}