@charset "utf-8";
/* ===============
message
=============== */
.desc__main--message {
    padding: clamp(20px, 3vw, 60px) 10.5vw 0 clamp(40px, 4vw, 80px);
}

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

.section__title--message {
    background: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
    color: #fff;
    position: relative;
}

.president__img {
    width: clamp(140px, 12vw, 240px);
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    -webkit-mask-image: url(../img/staff__img__frame.svg);
    mask-image: url(../img/staff__img__frame.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-position: center;
    mask-position: center;
}

.president__name {
    margin-top: clamp(12px, .8vw, 16px);
    line-height: 1;
}

.president__name .role {
    display: inline-block;
    padding: clamp(6px, .4vw, 8px) clamp(8px, .6vw, 12px);
    background-color: #fff;
    font-size: clamp(12px, .7vw, 14px);
    color: var(--orange-bg);
}

/* desc */
.desc__desc {
    margin-top: 32px;
}


/* ===============
outline
=============== */
.outline__inner {
    margin: 0 auto;
}

.outline__main {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: clamp(20px, 3vw, 60px);
    margin-top: clamp(28px, 3vw, 60px);
}

.outline__list {
    width: 50%;
    flex-shrink: 0;
    line-height: 1.75;
}

.outline__item {
    display: flex;
    gap: clamp(20px, 3vw, 60px);
    padding: clamp(12px, 1.2vw, 24px) 0;
    position: relative;
}

.outline__title {
    min-width: clamp(77px, 5vw, 100px);
}

.outline__desc {
    width: 100%;
    font-size: clamp(13px, .9vw, 18px);
}

.outline__item:not(:last-child):after {
    display: block;
    content: '';
    width: 100%;
    height: clamp(1px, .1vw, 2px);
    position: absolute;
    top: calc(100% - 1px);
    right: 0;
    background-image: url(../img/line.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

.map {
    width: 50%;
    flex-shrink: 0;
}

.map iframe {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 767px) {
    .outline__main {
        flex-direction: column;
    }

    .outline__list {
        width: 100%;
    }

    .map {
        width: 100%;
        height: 200px;
        margin-top: 12px;
    }

    .map iframe {
        min-height: 200px;
    }
}

/* ===============
staff
=============== */
.section--staff {
    margin: clamp(80px, 8vw, 160px) auto 0;
}

.staff__list {
    margin-top: clamp(28px, 3vw, 60px);
}

.staff__item {
    margin-top: clamp(52px, 4vw, 80px);
}

.staff__item:nth-of-type(1) {
    margin-top: 0;
}

.staff__role {
    font-size: clamp(18px, 1.8vw, 28px);
    position: relative;
}


.staff__role::before {
    display: block;
    content: '';
    width: 100%;
    height: clamp(1px, .1vw, 2px);
    position: absolute;
    bottom: calc(clamp(8px, .7vw, 14px) * -1);
    left: 0;
    background-image: url(../img/line--black.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

.staff__desc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(20px, 3vw, 60px);
    margin-top: clamp(32px, 2.6vw, 52px);
    line-height: 1.75
}

.staff__desc--even {
    flex-direction: row-reverse;
}

.staff__img {
    width: clamp(200px, 18vw, 360px);
    height: clamp(200px, 18vw, 360px);
    flex-shrink: 0;
    -webkit-mask-image: url(../img/staff__img__frame.svg);
    mask-image: url(../img/staff__img__frame.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-position: center;
    mask-position: center;
}

.staff__img img {
    aspect-ratio: 1 / 1;
}

@media screen and (max-width: 767px) {
    .staff__desc {
        flex-direction: column;
    }

    .staff__img {
        width: 100%;
        height: clamp(320px, 32vw, 640px);
    }
}