@charset "utf-8";

/* ====================
ABOUT
==================== */
/* ====================
owner
==================== */
.owner {
    display: flex;
    padding: 48px var(--contentPadding);
    flex-direction: column;
    gap: 24px;
}

.owner__img__01 {
    position: relative;
}

.owner__img__01::after {
    content: "Rie Tanikawa";
    position: absolute;
    left: 24px;
    bottom: 24px;
    color: var(--primary_white, #F8F8F8);
    /* text-shadow: 0 1px 2px rgba(0, 0, 0, 0.60); */
    font-family: "Inter";
    font-size: 2rem;
    line-height: 1;
    z-index: 1;
}

.owner__txt__top,
.owner__txt__bottom,
.career__txt {
    font-size: 1.4rem;
    padding: 0 16px;
}

.owner__img__02 {
    width: 73.7%;
    margin-left: auto;
}

.owner__img__03 {
    width: 42.8%;
}

.owner__img__03 img {
    aspect-ratio: 165/134;
}

.career {
    display: block;
    width: fit-content;
    margin: 0 auto;
    position: relative;
}

.career::before,
.career::after {
    content: "";
    display: block;
    width: 168px;
    height: 13px;
    background-image: url(../images/cross.svg);
    background-repeat: no-repeat;
    margin: 0 auto;
}

.career__txt {
    margin: 12px 0;
}

/* ====================
about
==================== */
.about {
    display: flex;
    padding: 48px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.about .topic {
    margin-left: var(--contentPadding);
}

.about__img__01,
.about__img__03 {
    width: 76%;
    border-radius: 30px 0 0 0;
    border-right: 0 solid;
    margin-left: auto;
}

.about__img__02 {
    width: 76%;
    border-radius: 0 30px 0 0;
    border-left: 0 solid;
    margin-right: auto;
}

.about__txt__top,
.about__txt__bottom {
    padding: 0 12.8%;
    font-size: 1.4rem;
}

/* ====================
concept
==================== */
.position_relative {
    position: relative;
}

.img-mask {
    height: 100dvh;
    overflow: hidden;
}

.img-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sticky-top-0 {
    position: sticky;
    top: 0;
    margin-bottom: -1px;
}

.concept {
    padding: 48px var(--contentPadding);
}

.concept .topic {
    mix-blend-mode: difference;
      color: #FFFFFF;
}

.concept__list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.concept__item {
    display: flex;
    padding: 24px 0;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--illustrationblack, #3E3A39);
    background-color: var(--primary_white);
    z-index: 1;
    position: sticky;
    top: 8px;
}

.concept__item:nth-of-type(2) {
    background-color: var(--cloudDancer, #F0EEE9);
}

.concept__item__img {
    width: 83.1%;
    margin: 24px auto 0;
    position: relative;
    /* overflow: hidden; */
}

.point__num {
    position: absolute;
    top: 50%;
    left: 0;

    transform:
        translate(-70%, -50%) rotate(-90deg);

    transform-origin: center;
    white-space: nowrap;

    font-family: Inter;
    font-size: 1.2rem;
    line-height: 1;
}

.concept__item__txtGroup {
    display: flex;
    padding: 24px 32px 0 32px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.concept__item__topic {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
}

.concept__item__txt {
    margin-top: 24px;
    font-size: 1.4rem;
}