@charset "UTF-8";
.wrapper {
    padding-top: 150px;
    background-color: #fefaf7;
}
@media screen and (max-width: 767px) {
    .wrapper {
        padding-top: 120px;
    }
}
.mv-sub__visual {
    background: url("/_common/img/gallery/mv.webp") 50% 50% / cover no-repeat;
}
 /* -------------------------------- */
.tabs {
	padding: 160px 5% 0;
}
.tabs__inner {
    position: relative;
	max-width: 880px;
	margin: 0 auto;
}
.tabs h2 {
    position: relative;
    text-align: center;
    z-index: 2;
}
.tabs h2 .en {
    display: block;
    font-size: 52px;
    letter-spacing: .05em;
}
.tabs h2 .ja {
    display: block;
    margin-top: 10px;
    color: #e47d6e;
}
.tabs ul {
    display: flex;
    gap: 15px;
    margin-top: 60px;
}
.tabs ul li {
    flex: 1;
}
.tabs ul li button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 70px;
    color: #333;
    font-weight: bold;
    letter-spacing: .05em;
    border: 1px solid #e47d6e;
    border-radius: 35px;
}
.tabs ul li button i {
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translate(0,-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background-color: #e47d6e;
    color: #fff;
    font-size: 12px;
    border-radius: 13px;
}
.tabs ul li button.active {
    background-color: #e47d6e;
    color: #fff;
}
.tabs ul li button.active i {
    background-color: #fff;
    color: #e47d6e;
}
@media screen and (max-width: 767px) {
    .tabs {
        padding: 60px 24px 0;
    }
    .tabs h2 .en {
        font-size: 40px;
        letter-spacing: .05em;
    }
    .tabs h2 .ja {
        margin-top: 10px;
    }
    .tabs ul {
        flex-direction: column;
        gap: 15px;
        margin-top: 50px;
    }
    .tabs ul li button {
        height: 50px;
        letter-spacing: .05em;
    }
    .tabs ul li button i {
        right: 16px;
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
}
 /* -------------------------------- */
.gallery {
	padding: 70px 5% 160px;
}
.gallery__inner {
	max-width: 1200px;
	margin: 0 auto;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 60px;
}
.gallery ul {
    display: flex;
    flex-direction: column;
    gap: 70px;
}
.more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}
.more-btn a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 287px;
    height: 70px;
    color: #333;
    font-weight: bold;
    letter-spacing: .05em;
    border: 1px solid #e47d6e;
    border-radius: 35px;
}
.more-btn a i {
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translate(0,-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background-color: #e47d6e;
    color: #fff;
    font-size: 12px;
    border-radius: 13px;
}
@media screen and (max-width: 767px) {
    .gallery {
        padding: 50px 24px 100px;
    }
    .tab-content.active {
        grid-template-columns: repeat(1,1fr);
        gap: 20px;
    }
    .gallery ul {
        gap: 20px;
    }
}