@charset "UTF-8";

.container {
    max-width: 100%;
}
.area-hero-title {
    padding-top: 0;
    padding-bottom: 0;
}
.hero-bottom {
    display: grid;
    max-width: 80%;
    width: 100%;
    margin-inline: auto;
    padding-top: 50px;
}
.hero-bottom__inner1 {
    writing-mode: vertical-rl;
    line-height: 1.5;
    width: 100%;
    padding-right: 10%;
}
.hero-bottom__inner2 {
    width: 100%;
}
.hero-bottom__inner2 p {
    font-size: 12px;
}
.section {
    padding-top: 100px;
    padding-bottom: 100px;

}
.section:nth-child(odd) {
    background-color: #f4f0f0;
}
.section__inner {
    display: grid;
    row-gap: 30px;
    max-width: 90%;
    margin-inline: auto;
}
.section-title span {
    position: relative;
    font-size: clamp(2.5rem, 2.045rem + 2.27vw, 3.75rem);
}
.section-title span::before {
    position: absolute;
    display: block;
    content: "";
    width: 1px;
    height: 100px;
    background-color: #111;
    right: 0;
    top: 0;
    transform: rotate(45deg);
}
.section-title h2 {
    font-size: clamp(1.875rem, 1.42rem + 2.27vw, 3.125rem);
    text-transform: capitalize;
    padding-left: 40px;
}
.section__main-img img {
    aspect-ratio: 4/3;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section__gallery1,
.section__gallery2 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}
.section__gallery1 img:first-child {
    grid-column: 2/7;
    grid-row: 3/5;
    aspect-ratio: 4/3;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section__gallery1 img:nth-child(2) {
    grid-column: 4/8;
    grid-row: 6/9;
    aspect-ratio: 4/3;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section__gallery1 img:nth-child(3) {
    grid-column: 9/12;
    grid-row: 2/7;
    aspect-ratio: 3/4;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section__gallery2 img:first-child {
    grid-column: 2/5;
    grid-row: 2/8;
    aspect-ratio: 3/4;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section__gallery2 img:nth-child(2) {
    grid-column: 6/10;
    grid-row: 2/5;
    aspect-ratio: 4/3;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section__gallery2 img:nth-child(3) {
    grid-column: 8/12;
    grid-row: 6/10;
    aspect-ratio: 4/3;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section__keyword {
    text-align: center;
    margin-top: 50px;
}
.section__keyword li {
    list-style-type: none;
}
.section__tags {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 20px;
    width: 80%;
    margin-inline: auto;
}

.slick-img img {
    aspect-ratio: 2/1.5;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-wrap {
    position: relative;
}
.hero__title {
    position: absolute;
    top: 30%;
    left: 20%;
    z-index: 1;
    text-align-last: left;
    font-size: 60px;
}

/* 768px以上のスタイル */
@media screen and (min-width: 768px) {
    .section__inner {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        column-gap: 20px;
    }
    .section__inner--reverse {
        flex-direction: row-reverse;
    }
    .section__main-img {
        width: 50%;
    }
    .hero-bottom {
        display: flex;
        align-items: center;
        flex-direction: row-reverse;
        justify-content: center;
        max-width: 80%;
        width: 100%;
        margin-inline: auto;
    }
    .hero-bottom__inner1 {
        padding-right: 0;
        width: 10%;
    }
    .hero-bottom__inner2 {
        padding-left: 0;
        width: 70%;
    }
    .hero-bottom__inner2 p {
        font-size: 16px;
    }
    .section__gallery1 img:first-child {
        grid-column: 2/6;
        grid-row: 2/4;
    }
    .section__gallery1 img:nth-child(2) {
        grid-column: 5/8;
        grid-row: 5/7;
    }
    .section__gallery1 img:nth-child(3) {
        grid-column: 9/12;
        grid-row: 2/7;
    }
    .section__gallery2 img:first-child {
        grid-column: 2/5;
        grid-row: 2/7;
    }
    .section__gallery2 img:nth-child(2) {
        grid-column: 6/9;
        grid-row: 2/4;
    }
    .section__gallery2 img:nth-child(3) {
        grid-column: 8/11;
        grid-row: 5/7;
    }
    .slick-img img {
        aspect-ratio: 2/0.9;
    }
}
