/* --------------------
 Company
-------------------- */
.profile {
    margin: 0 0 21.3333333333vw;
    position: relative;
}

@media (min-width: 768px) {
    .profile {
        margin: 0 0 190px;
    }
}

.profile-container {
    margin: 0 auto;
    max-width: calc(var(--container-width) + var(--c-pad)*2);
    padding: 0 var(--c-pad);
    width: 100%;
}

.profile__table {
    border: none;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0;
    width: 100%;
}

.profile__table > tbody > tr > th, .profile__table > tbody > tr > td {
    border-bottom: 0.2666666667vw solid var(--color-warm-sand);
    font-size: var(--fs13);
    letter-spacing: 0.1em;
    line-height: 2;
    text-align: left;
    vertical-align: middle;
    width: auto;
}

@media (min-width: 768px) {
    .profile__table > tbody > tr > th, .profile__table > tbody > tr > td {
        border-bottom-width: 1px;
        font-size: var(--fs16);
    }
}

.profile__table > tbody > tr > th.border-bottom-none, .profile__table > tbody > tr > td.border-bottom-none {
    border-bottom: none;
    padding-bottom: 0;
}

.profile__table > tbody > tr > th {
    font-weight: 400;
    padding: 4.2666666667vw 2.1333333333vw 4.2666666667vw 0;
    text-align: center;
    width: 30.6666666667vw;
}

@media (min-width: 768px) {
    .profile__table > tbody > tr > th {
        padding: 19px 30px;
        text-align: left;
        width: 210px;
    }
}

.profile__table > tbody > tr > td {
    padding: 4.2666666667vw 0 4.2666666667vw 0;
}

@media (min-width: 768px) {
    .profile__table > tbody > tr > td {
        padding: 18px 0 18px 0;
    }
}

@media (min-width: 1240px) {
    .profile__table > tbody > tr > td {
        padding: 19px 24px 19px 0;
    }
}

.profile__table > tbody > tr > td a {
    color: inherit;
    position: relative;
    text-decoration: underline;
}

.profile__table > tbody > tr > td a[target=_blank] {
    margin-right: 0.5em;
    padding-right: 4.8vw;
}

@media (min-width: 768px) {
    .profile__table > tbody > tr > td a[target=_blank] {
        padding-right: 18px;
    }
}

.profile__table > tbody > tr > td a[target=_blank]:after {
    background-color: var(--color-charcoal);
    bottom: 0;
    content: "";
    display: block;
    height: 3.2vw;
    margin: auto 0;
    -webkit-mask-image: url(../images/icons/icon-charcoal-external-link-thick.svg);
    mask-image: url(../images/icons/icon-charcoal-external-link-thick.svg);
    -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: 0;
    top: 0;
    transition: background-color var(--duration) var(--cubic) 0s;
    width: 3.2vw;
}

@media (min-width: 768px) {
    .profile__table > tbody > tr > td a[target=_blank]:after {
        height: 14px;
        width: 14px;
    }
}

.profile__table > tbody > tr > td a[target=_blank]:focus:after {
    background-color: var(--color-white);
}

@media (hover: hover) and (pointer: fine) {
    .profile__table > tbody > tr > td a[target=_blank]:hover:after {
        background-color: var(--color-white);
    }
}

.history {
    margin: 0 0 21.3333333333vw;
    position: relative;
}

@media (min-width: 768px) {
    .history {
        margin: 0 0 200px;
    }
}

.history-container {
    margin: 0 auto;
    max-width: calc(var(--container-width) + var(--c-pad)*2);
    padding: 0 var(--c-pad);
    width: 100%;
}

@media (min-width: 768px) {
    .history .com-title {
        margin-bottom: 50px;
    }
}

.history__main {
    align-items: stretch;
    display: flex;
    flex-flow: row wrap-reverse;
    gap: 8vw;
}

@media (min-width: 768px) {
    .history__main {
        flex-wrap: nowrap;
        gap: 0;
    }
}

.history__main__fig {
    flex: 0 0 100%;
}

@media (min-width: 768px) {
    .history__main__fig {
        flex: 0 0 auto;
        width: 300px;
    }
}

@media (min-width: 1240px) {
    .history__main__fig {
        width: 370px;
    }
}

.history__main__fig img {
    border-radius: 2.6666666667vw;
}

@media (max-width: 767px) {
    .history__main__fig img {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .history__main__fig img {
        border-radius: 10px;
    }
}

.history__main__contents {
    flex: 0 0 100%;
}

@media (min-width: 768px) {
    .history__main__contents {
        flex: auto;
        padding: 0 0 0 40px;
        width: calc(100% - 300px);
    }
}

@media (min-width: 1240px) {
    .history__main__contents {
        padding: 0 0 0 60px;
        width: calc(100% - 370px);
    }
}

.history__main__contents__table {
    border: none;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0;
    width: 100%;
}

@media (min-width: 768px) {
    .history__main__contents__table {
        margin: -10px 0 0;
    }
}

.history__main__contents__table > tbody > tr > th, .history__main__contents__table > tbody > tr > td {
    text-align: left;
    vertical-align: middle;
}

.history__main__contents__table > tbody > tr > th {
    font-size: var(--fs18);
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.6;
    padding: 3.2vw 0 3.2vw 0;
    position: relative;
    width: 18.6666666667vw;
}

@media (min-width: 768px) {
    .history__main__contents__table > tbody > tr > th {
        font-size: var(--fs20);
        padding: 12px 0 12px 0;
        width: 75px;
    }
}

.history__main__contents__table > tbody > tr > th:before {
    background-color: var(--color-steel-lavender);
    border-radius: 2.6666666667vw;
    bottom: 0;
    content: "";
    display: block;
    height: 2.9333333333vw;
    margin: auto 0;
    position: absolute;
    right: -1.0666666667vw;
    top: 0;
    width: 2.9333333333vw;
}

@media (min-width: 768px) {
    .history__main__contents__table > tbody > tr > th:before {
        border-radius: 10px;
        height: 11px;
        right: -4px;
        width: 11px;
    }
}

.history__main__contents__table > tbody > tr > th:after {
    background-color: var(--color-steel-lavender);
    bottom: 0;
    content: "";
    display: block;
    height: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 0.2666666667vw;
}

@media (min-width: 768px) {
    .history__main__contents__table > tbody > tr > th:after {
        width: 1px;
    }
}

.history__main__contents__table > tbody > tr > td {
    font-size: var(--fs14);
    letter-spacing: 0.1em;
    line-height: 1.62;
    padding: 3.2vw 0 3.2vw 5.3333333333vw;
    width: auto;
}

@media (min-width: 768px) {
    .history__main__contents__table > tbody > tr > td {
        font-size: var(--fs16);
        padding: 12px 0 12px 25px;
    }
}

.history__main__contents__table > tbody > tr:first-child > th, .history__main__contents__table > tbody > tr:first-child > td {
    padding-top: 0;
}

.history__main__contents__table > tbody > tr:first-child > th:before {
    bottom: 0;
    top: 0;
    transform: translateY(-1.6vw);
}

@media (min-width: 768px) {
    .history__main__contents__table > tbody > tr:first-child > th:before {
        transform: translateY(-6px);
    }
}

.history__main__contents__table > tbody > tr:first-child > th:after {
    bottom: 0;
    top: calc(50% - 1.6vw);
}

@media (min-width: 768px) {
    .history__main__contents__table > tbody > tr:first-child > th:after {
        top: calc(50% - 6px);
    }
}

.history__main__contents__table > tbody > tr:last-child > th, .history__main__contents__table > tbody > tr:last-child > td {
    padding-bottom: 0;
}

.history__main__contents__table > tbody > tr:last-child > th:before {
    bottom: 0;
    top: 0;
    transform: translateY(1.6vw);
}

@media (min-width: 768px) {
    .history__main__contents__table > tbody > tr:last-child > th:before {
        transform: translateY(6px);
    }
}

.history__main__contents__table > tbody > tr:last-child > th:after {
    bottom: calc(50% - 1.6vw);
    top: 0;
}

@media (min-width: 768px) {
    .history__main__contents__table > tbody > tr:last-child > th:after {
        bottom: calc(50% - 6px);
    }
}

.access {
    margin: 0 0 21.3333333333vw;
    position: relative;
}

@media (min-width: 768px) {
    .access {
        margin: 0 0 70px;
    }
}

.access-container {
    margin: 0 auto;
    max-width: calc(var(--container-width) + var(--c-pad)*2);
    padding: 0 var(--c-pad);
    width: 100%;
}

@media (min-width: 768px) {
    .access .com-title {
        margin-bottom: 30px;
    }
}

.access__map {
    margin: 0 0 8vw;
}

@media (min-width: 768px) {
    .access__map {
        margin: 0 0 30px;
    }
}

.access__map iframe {
    border: none;
    display: block;
    height: 72vw;
    width: 100%;
}

@media (min-width: 768px) {
    .access__map iframe {
        height: 270px;
    }
}

.access__list {
    align-items: stretch;
    display: flex;
    flex-flow: row wrap;
    gap: 8vw;
    justify-content: space-between;
	margin-bottom: 40px;
}

@media (min-width: 768px) {
    .access__list {
        flex-wrap: nowrap;
        gap: 0;
        padding: 0 0 0 30px;
    }
}

.access__list:last-child {
	margin-bottom: 0;
}


.access__list__item {
    flex: 0 0 100%;
}

@media (min-width: 768px) {
    .access__list__item {
        border-right: 1px solid var(--color-steel-lavender);
        flex: 0 0 50%;
        padding: 0 30px;
    }
}

.access__list__item:first-child {
    padding-left: 0;
}

.access__list__item:last-child {
    border-right: none;
    padding-right: 0;
}

.access__list__item__title {
    font-size: var(--fs16);
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.4;
    margin: 0 0 3.2vw;
}

@media (min-width: 768px) {
    .access__list__item__title {
        margin: 0 0 12px;
    }
}

.access__list__item__factory {
    font-size: var(--fs14);
    letter-spacing: 0.1em;
    line-height: 1.62;
    margin: 0;
    padding: 0 0 0 17.7333333333vw;
    position: relative;
}

@media (min-width: 768px) {
    .access__list__item__factory {
        font-size: var(--fs16);
        padding: 0 0 0 80px;
    }
}

.access__list__item__factory:before {
    background-image: url(../images/icons/icon-charcoal-factory.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    content: "";
    display: block;
    height: 9.0666666667vw;
    left: 0;
    margin: auto;
    position: absolute;
    top: 0;
    width: 14.0533333333vw;
}

@media (min-width: 768px) {
    .access__list__item__factory:before {
        height: 40px;
        width: 62px;
    }
}


.access__list__item__warehouse {
    font-size: var(--fs14);
    letter-spacing: 0.1em;
    line-height: 1.62;
    margin: 0;
    padding: 0 0 0 17.7333333333vw;
    position: relative;
}

@media (min-width: 768px) {
    .access__list__item__warehouse {
        font-size: var(--fs16);
        padding: 0 0 0 80px;
    }
}

.access__list__item__warehouse:before {
    background-image: url(../images/icons/icon-charcoal-warehouse.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    content: "";
    display: block;
    height: 9.0666666667vw;
    left: 0;
    margin: auto;
    position: absolute;
    top: 0;
    width: 14.0533333333vw;
}

@media (min-width: 768px) {
    .access__list__item__warehouse:before {
        height: 40px;
        width: 62px;
    }
}


.access__list__item__traffic {
    align-items: stretch;
    display: flex;
    flex-flow: row wrap;
    gap: 5.3333333333vw 8vw;
    justify-content: flex-start;
}

@media (min-width: 768px) {
    .access__list__item__traffic {
        gap: 30px;
    }
}

.access__list__item__traffic__car {
    font-size: var(--fs14);
    letter-spacing: 0.1em;
    line-height: 1.62;
    margin: 0;
    padding: 0 0 0 17.7333333333vw;
    position: relative;
}

@media (min-width: 768px) {
    .access__list__item__traffic__car {
        font-size: var(--fs16);
        padding: 0 0 0 70px;
    }
}

.access__list__item__traffic__car:before {
    background-image: url(../images/icons/icon-charcoal-car.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    content: "";
    display: block;
    height: 9.0666666667vw;
    left: 0;
    margin: auto;
    position: absolute;
    top: 0;
    width: 13.1466666667vw;
}

@media (min-width: 768px) {
    .access__list__item__traffic__car:before {
        height: 40px;
        width: 58px;
    }
}

.access__list__item__traffic__train {
    font-size: var(--fs14);
    letter-spacing: 0.1em;
    line-height: 1.62;
    margin: 0;
    padding: 0 0 0 17.7333333333vw;
    position: relative;
}

@media (min-width: 768px) {
    .access__list__item__traffic__train {
        font-size: var(--fs16);
        padding: 0 0 0 50px;
    }
}

.access__list__item__traffic__train:before {
    background-image: url(../images/icons/icon-charcoal-train.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    content: "";
    display: block;
    height: 12.24vw;
    left: 2.1333333333vw;
    margin: auto;
    position: absolute;
    top: 0;
    width: 7.7066666667vw;
}

@media (min-width: 768px) {
    .access__list__item__traffic__train:before {
        height: 54px;
        left: 0;
        width: 34px;
    }
}