@charset "utf-8";

/* ========================
article__header
======================== */
.article__header {
    background-image: url(../images/articleheader__bg.png);
    background-position: center;
    background-size: contain;
}

.article__header__wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--maxWidth-1440);
    margin: 0 auto;
    aspect-ratio: 1440 / 900;
}

.article__header__wrap::after {
    display: block;
    content: '';
    width: 100vw;
    aspect-ratio: 1440 / 140;
    background-image: url(../images/divider--wave.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    margin-top: -0.4%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.mainCopy {
    font-size: clamp(2.0rem, 1.94vw, 2.8rem);
    font-weight: 700;
    line-height: 2.0;
    letter-spacing: 0.28rem;
    margin-left: 6.9%;
    flex-shrink: 0;
}

.mainVisual {
    position: relative;
    z-index: 10;
    width: 60.6%;
    height: 100%;
}

.mainVisual__img {
    width: 134.8%;
    position: absolute;
    z-index: 90;
    top: -10.8%;
}

.mainVisual__logo {
    position: absolute;
    z-index: 91;
    top: 55%;
    right: 10.6%;
    transform: translateY(-50%);
    width: 46.2%;
}

.scrollDown {
    position: absolute;
    z-index: 80;
    left: 3.2%;
    bottom: 2.2%;
    width: 2.8%;
}

@media screen and (max-width: 767px) {
    .article__header {
        background-size: 200%;
    }

    .article__header__wrap {
        align-items: start;
        aspect-ratio: 375 / 665;
    }

    .mainCopy {
        font-size: 2.0rem;
        line-height: 1.6;
        margin: 24vw 0 0 5.3vw;
        position: relative;
        z-index: 91;
    }

    .mainVisual {
        width: auto;
    }

    .mainVisual__img {
        width: 137.4vw;
        top: auto;
        bottom: 1vw;
        right: -47vw;
    }

    .mainVisual__logo {
        top: auto;
        bottom: 34%;
        right: 6vw;
        width: 46.2vw;
    }

    .scrollDown {
        left: 3.2%;
        bottom: 5.2%;
        width: 8%;
    }
}

/* ========================
message
======================== */
.message {
    background-color: var(--yellow-second);
    margin-top: -0.4%;
    padding: 220px 0 80px;
}

/* section__heading--message(非表示) */
.section__heading--message {
    display: none;
}

.message__wrapper {
    width: var(--contentWidth-1240);
    max-width: var(--maxWidth-1240);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.2%;
    margin: 0 auto;
}

.message__img__container {
    width: 51.8%;
    display: flex;
    justify-content: end;
    opacity: 0;
}

.message__img {
    border-radius: 0 10000px 10000px 0;
    overflow: hidden;
    width: 120%;
    flex-shrink: 0;
    filter: drop-shadow(4px 4px 0px var(--yellow-accent));
}

.message__content {
    width: 45%;
    opacity: 0;
}

.message__content__title {
    font-size: clamp(2rem, 1.94vw, 2.8rem);
    font-weight: 700;
    letter-spacing: 0.2rem;
    display: flex;
    flex-direction: column;
    gap: clamp(0.8rem, 1.11vw, 1.6rem);
}

.message__content__title--first {
    text-align: left;
}

.message__content__title--second {
    text-align: right;
}

.message__content__desc {
    font-size: clamp(1.4rem, 1.11vw, 1.6rem);
    line-height: 1.8;
    padding: 40px 0 0 7.2%;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.message__news {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 80px;
}

.message__news__content {
    font-size: clamp(1.4rem, 1.39vw, 1.8rem);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.16rem;
}

@media screen and (max-width: 767px) {
    .message {
        margin-top: -0.4%;
        padding: 100px 0 64px;
    }

    .message__wrapper {
        flex-direction: column-reverse;
        width: var(--sp-contentWidth-335);
    }

    .message__img__container {
        width: 100%;
        margin-top: 24px;
    }

    .message__content {
        width: 100%;
    }

    .message__content__title {
        font-size: 2.2rem;
        gap: 12px;
    }

    .message__content__desc {
        width: fit-content;
        padding: 0;
        gap: 16px;
        margin: 24px auto 0;
    }

    .message__news {
        width: var(--sp-contentWidth-335);
        flex-direction: column;
        gap: 16px;
        margin: 56px auto 0;
    }

    .message__news__content {
        margin-top: 0;
    }
}

/* ========================
divider
======================== */
.divider {
    position: relative;
    aspect-ratio: 1440/140;
}

.divider::after {
    display: block;
    content: '';
    width: 100vw;
    aspect-ratio: 1440 / 140;
    background-image: url(../images/divider--wave--rotate.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    margin-top: -0.4%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

/* ========================
feature
======================== */
.section--feature {
    margin-top: 48px;
}

.section__heading--feature {
    width: var(--contentWidth-1240);
    max-width: var(--maxWidth-1240);
    margin: 0 auto;
    text-align: end;
}

/* accordion */
.feature__list {
    margin: 64px auto 0;
    display: flex;
    height: 43.5vw;
    max-height: 620px;
}

.feature__item {
    position: relative;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 104%;
    overflow: hidden;
    transition: all .5s cubic-bezier(0.65, 0, 0.35, 1);
}

.feature__item:nth-of-type(1) {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
        url(../images/feature01.jpg);
}

.feature__item:nth-of-type(2) {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
        url(../images/feature02.jpg);
}

.feature__item:nth-of-type(3) {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
        url(../images/feature03.jpg);
}

.feature__item:hover {
    filter: brightness(.8) contrast(1.1);
    background-size: auto 100%;
    transition: all .5s cubic-bezier(0.65, 0, 0.35, 1);
}

/* clickの対象要素 */
.feature__veil {
    cursor: pointer;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    top: 0;
    left: 0;
    z-index: 100;
    transition: all .15s linear;
}

.feature__content {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    width: fit-content;
    height: 100%;
    margin: 0 auto;
    padding: 0 0 clamp(7.0rem, 9.17vw, 17.2rem);
    text-align: center;
}

.feature__title {
    font-size: clamp(1.8rem, 1.67vw, 2.4rem);
    font-weight: 900;
    line-height: 1.6;
    letter-spacing: 0.144rem;
}

.feature__desc {
    display: none;
    font-size: clamp(1.2rem, 1.11vw, 1.6rem);
    line-height: 1.6;
    letter-spacing: 0.064rem;
    margin-top: 20px;
}

.feature__desc span {
    display: block;
}

.feature__desc span:nth-of-type(2) {
    margin-top: 12px;
}

.feature__btn {
    width: 11.7%;
    max-width: 80px;
    position: absolute;
    bottom: 7.14%;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 99;
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.feature__btn.close {
    transform: translateX(-50%) rotate(45deg);
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.feature__bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    height: 100%;
}


@media screen and (max-width: 767px) {
    .section--feature {
        margin-top: 56px;
    }

    .section__heading--feature {
        width: var(--sp-contentWidth-335);
    }

    .feature__list {
        margin: 40px auto 0;
        flex-direction: column;
        max-height: none;
        height: 320vw;
    }

    .feature__item {
        aspect-ratio: 400/620;
    }

    .feature__item:hover {
        filter: none;
        background-size: auto 104%;
        transition: none;
    }

    .feature__content {
        padding: 0 0 136px;
    }

    .feature__title {
        font-size: 2.2rem;
        line-height: 1.4;
    }

    .feature__desc {
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .feature__desc span {
        display: block;
    }

    .feature__desc span:nth-of-type(2) {
        margin-top: 12px;
    }

    .feature__btn {
        width: 11.7%;
        max-width: 80px;
        position: absolute;
        bottom: 7.14%;
        left: 50%;
        transform: translateX(-50%);
    }

}

/* ========================
line up
======================== */
.section--lineUp {
    margin-top: 132px;
}

/* gallery */
.lineUp__gallery {
    width: 100vw;
    height: 44.4vw;
    overflow: hidden;
    position: relative;
}

.gallery__list {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    box-sizing: border-box;
    position: absolute;
    animation: gallery-rotate 240s linear infinite;
}

@keyframes gallery-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.gallery__list--pc {
    width: calc(100vw * 2);
    inset: 0 -50% 0;
    top: 18%;
}

.gallery__list--sp {
    display: none;
}

.gallery__item {
    --a2: calc(var(--a) * 1deg - 90deg);
    --x: calc(cos(var(--a2)) * 100vw * 1);
    --y: calc(sin(var(--a2)) * 100vw * 1);
    position: absolute;
    translate: var(--x) var(--y);
    rotate: calc(var(--a) * 1deg);
}

.gallery__item--pc {
    width: 6%;
    max-width: 24rem;
}

/* line up main */
.lineUp__wrap {
    margin: -29.8vw auto 0;
    width: var(--contentWidth-1240);
    max-width: var(--maxWidth-1440);
    padding: 100px 0;
}

.lineUp__bagels {
    padding: 0 0 100px 0;
}

.section__heading--lineUp {
    text-align: center;
}

.lineUp__rankList {
    margin-top: 40px;
    padding: 0 clamp(0rem, -11.45rem + 14.9vw, 10rem);
    display: flex;
    justify-content: space-between;
}

.lineUp__rankItem {
    width: 29.9%;
    position: relative;
    opacity: 0;
}

.rankItem__num {
    position: absolute;
    top: -18px;
    left: -20px;
    width: 31%;
}

.rankItem__content {
    margin-top: 28px;
}

.rankItem__name {
    text-align: center;
    font-size: clamp(1.6rem, 0.5rem + 1.39vw, 2.0rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.04rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(2.0rem * 1.3 * 2);
}

.rankItem__desc {
    text-align: justify;
    font-size: clamp(1.4rem, 0.5rem + 1vw, 1.6rem);
    line-height: 1.6;
    letter-spacing: 0.064rem;
    padding: 16px 5.15%;
}

.lineUp__btnWrap {
    margin-top: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.lineUp__btn--bagel::after {
    background-image: url(../images/btn__icon--arrow.svg);
}

.lineUp__btnContainer--sns {
    position: relative;
}

.lineUp__btn__bubble {
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.056rem;
    position: absolute;
    top: -96%;
    right: -41%;
    display: block;
    width: 56.1%;
    aspect-ratio: 180 / 72;
    padding: 4% 0 7%;
    background-image: url(../images/lineup__btn--bubble.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* othres */
.lineUp__others {
    padding: 100px clamp(0rem, -11.45rem + 14.9vw, 10rem) 84px;
    border-top: 1px solid var(--brown-main);
}

.subSection__heading--others {
    display: flex;
    justify-content: space-between;
}

.others__lead {
    font-size: clamp(1.2rem, 0.3rem + 1.11vw, 1.6rem);
    line-height: 1.8;
    text-align: right;
    position: relative;
}

.others__lead::after {
    display: block;
    content: '';
    width: 120%;
    aspect-ratio: 540 / 154;
    background-image: url(../images/lineup__others--bubble.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    bottom: -66%;
    left: -8%;
    z-index: 10;
}

.others__list {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.others__item {
    width: 48.1%;
    position: relative;
    opacity: 0;
}

.others__item:nth-of-type(2) {
    padding-top: 11.5%;
}

.others__img img {
    border-radius: 80px 10px;
    aspect-ratio: 500/333;
}

.others__img--tea img {
    filter: drop-shadow(-20px -20px 0 var(--yellow-second));
}

.others__img--choco img {
    filter: drop-shadow(20px 20px 0 var(--yellow-second));
}

.others__content {
    position: absolute;
}

.others__content--tea {
    bottom: 10.6%;
    left: -12.6%;
}

.others__content--tea .others__content__title {
    transform: translate(34%, -12%);
}

.others__content--choco {
    top: 19%;
    right: -6%;
}

.others__content--choco .others__content__title {
    transform: translate(124%, -12%);
}

.others__content span {
    display: block;
    border-radius: 8px;
    width: fit-content;
}

.others__content__sub {
    padding: 12px 20px;
    background-color: white;
    border: 1px solid var(--brown-main);
    color: var(--brown-main);
    font-size: 1.4rem;
    letter-spacing: 0.028rem;
}

.others__content__title {
    padding: 12px 20px;
    background-color: var(--brown-main);
    color: white;
    font-family: "Montserrat";
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.12rem;
}

/* gallery bottom */
.gallery--bottom {
    transform: rotate(180deg);
    margin-top: -30.8vw;
}

@media screen and (max-width: 767px) {

    /* gallery */
    .lineUp__gallery {
        height: 400px;
    }

    .gallery__list--pc {
        display: none;
    }

    .gallery__list--sp {
        display: flex;
        width: calc(100vw * 2);
        inset: 20% -50% 0;
    }

    .gallery__item--sp {
        width: 14.94%;
        max-width: 16rem;
    }

    /* line up main */
    .lineUp__wrap {
        margin: -172px auto 0;
        width: var(--sp-contentWidth-335);
        padding: 0;
    }

    .lineUp__bagels {
        padding: 0 0 120px 0;
    }

    .lineUp__rankList {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 60px;
    }

    .lineUp__rankItem {
        width: 89.6%;
    }

    .rankItem__num {
        top: -12px;
        left: -16px;
        width: 23.4%;
    }

    .rankItem__img {
        width: 86.7%;
        margin-left: 24px;
    }

    .rankItem__content {
        margin-top: 20px;
    }

    .rankItem__name {
        font-size: 1.8rem;
        height: auto;
    }

    .rankItem__desc {
        padding: 12px 0 0;
    }

    .lineUp__btnWrap {
        margin-top: 48px;
        flex-direction: column;
        gap: 20px;
    }

    .lineUp__btnContainer--sns {
        width: 100%;
    }

    .lineUp__btn__bubble {
        width: 50.2%;
        padding: 6.3% 0 3.2%;
        font-size: 1.2rem;
        top: auto;
        bottom: -116%;
        right: 4%;
        background-image: url(../images/lineup__btn--bubble--rotate.svg);
    }

    /* othres */
    .lineUp__others {
        padding: 24px 0 60px;
    }

    .subSection__heading--others {
        flex-direction: column;
        justify-content: center;
    }

    .others__lead {
        margin-top: 16px;
        line-height: 1.6;
        letter-spacing: 0;
    }

    .others__lead::after {
        display: none;
    }

    .others__list {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 28px;
    }

    .others__item {
        width: 100%;
    }

    .others__item:nth-of-type(2) {
        padding-top: 80px;
    }

    .others__img--tea img {
        border-radius: 60px 8px;
        filter: drop-shadow(-10px -10px 0 var(--yellow-second));
    }

    .others__img--choco img {
        border-radius: 8px 60px;
        filter: drop-shadow(10px 10px 0 var(--yellow-second));
    }

    .others__content--tea {
        bottom: -26%;
        left: auto;
        right: 16%;
    }

    .others__content--tea .others__content__title {
        transform: translate(35%, -10%);
    }

    .others__content--choco {
        top: auto;
        right: auto;
        bottom: -19%;
        left: 6%;
    }

    .others__content--choco .others__content__title {
        transform: translate(-26%, -10%);
    }

    .others__content__sub {
        padding: 10px 16px;
        font-size: 1.2rem;
    }

    .others__content__title {
        padding: 12px 18px;
        font-size: 2.0rem;
    }

    /* gallery bottom */
    .gallery--bottom {
        margin-top: -156px;
    }

}

/* ========================
resevation
======================== */
.section--reservation {
    padding-top: 160px;
}

.reservation__wrap {
    width: var(--contentWidth-1040);
    max-width: var(--maxWidth-1040);
    min-width: 660px;
    margin: 0 auto;
    padding: 80px 0 0;
    border-radius: 80px 80px 12px 12px;
    background-image: url(../images/reservation__bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    color: white;
    opacity: 0;
}

.reservation__container {
    display: flex;
    justify-content: space-between;
    width: 69.2%;
    min-width: 540px;
    margin: 0 auto;
}

.section__heading--reservation {
    margin-top: 20px;
}

.section__heading--reservation .heading--En {
    font-size: clamp(4.0rem, 0.6rem + 3.75vw, 5.4rem);
}

.section__heading--reservation .heading--Jp {
    font-size: clamp(1.6rem, 0.4rem + 1.25vw, 1.8rem);
}

/* reservatino__content */
.reservation__content {
    padding: 0 0 32px 0;
}

.reservation__desc {
    margin-top: 52px;
    line-height: 1.6;
}

.reservation__desc--main {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reservation__desc--main p:nth-child(1) {
    font-size: 1.4rem;
}

.reservation__desc--main p:nth-child(2),
.reservation__desc--main p:nth-child(3) {
    padding: 0 12px;
    width: fit-content;
    color: var(--brown-main);
    background-image: url(../images/reservation__desc__bg01.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    font-size: clamp(1.4rem, 0.25rem + 1.11vw, 1.6rem);
}

.reservation__desc--main p:nth-child(3) {
    background-image: url(../images/reservation__desc__bg02.png);
}

.reservation__desc--main p:nth-child(2) span,
.reservation__desc--main p:nth-child(3) {
    font-size: clamp(2.1rem, 0.6rem + 1.67vw, 2.4rem);
}

.reservation__desc--note {
    font-size: 1.2rem;
    line-height: 1;
    margin-top: 12px;
}

/* reservation__img */
.reservation__img {
    width: 37.4%;
    display: flex;
    align-items: end;
    opacity: 0;
}

/* reservation__appDl */
.reservation__appDl {
    width: 75.9%;
    min-width: 660px;
    padding: 36px 0;
    margin: 0 auto;
    border-radius: 52px 52px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    background-image: url(../images/reservation__app__bg.png);
    background-size: 100% 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    position: relative;
    z-index: 10;
}

.reservation__appDl--apple,
.reservation__appDl--google {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.banner--apple {
    height: 40px;
    aspect-ratio: 109/40;
}

.banner--google {
    height: 54px;
    aspect-ratio: 150/58;
}

.qr {
    width: 100px;
    aspect-ratio: 1/1;
}

.line--reservation {
    display: block;
    height: 80px;
    border-left: 1px solid var(--brown-main);
}

.appDl__bubble {
    position: absolute;
    top: -64%;
    right: -27%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--brown-main);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.064rem;
    width: 40.6%;
    min-width: 280px;
    aspect-ratio: 306 / 174;
    background-image: url(../images/reservation__bubble.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

@media screen and (max-width: 767px) {
    .section--reservation {
        padding-top: 120px;
    }

    .reservation__wrap {
        width: var(--sp-contentWidth-335);
        min-width: initial;
        padding: 40px 0 0;
        border-radius: 40px 40px 6px 6px;
        background-size: cover;
    }

    .reservation__container {
        width: 82.1%;
        min-width: initial;
        flex-direction: column;
        justify-content: start;
        align-items: center;
    }

    .section__heading--reservation {
        margin-top: 0px;
    }

    /* reservatino__content */
    .reservation__content {
        padding: 0;
    }

    .reservation__desc {
        margin-top: 28px;
        letter-spacing: 0;
    }

    .reservation__desc--main {
        gap: 6px;
    }

    .reservation__desc--main p:nth-child(2) span,
    .reservation__desc--main p:nth-child(3) {
        font-size: 2.0rem;
    }

    .reservation__desc--note {
        font-size: 1.0rem;
        margin-top: 10px;
    }

    /* reservation__img */
    .reservation__img {
        width: 100%;
        margin-top: 28px;
    }

    /* reservation__appDl */
    .reservation__appDl {
        width: 100%;
        min-width: initial;
        padding: 28px 0;
        border-radius: 40px 40px 0 0;
        gap: 16px;
    }

    .qr {
        display: none;
    }

    .line--reservation {
        display: none;
    }

    .appDl__bubble {
        display: none;
    }
}

/* ========================
information
======================== */
.section--information {
    padding: 160px 0 120px;
    margin: 0 auto;
}

.info__wrap {
    width: var(--contentWidth-1040);
    max-width: var(--maxWidth-1240);
    min-width: 660px;
    margin: 0 auto;
}

.info__container {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4.6%;
}

.info__img {
    width: 51.4%;
    position: relative;
    opacity: 0;
}

.info__access {
    position: absolute;
    bottom: -4%;
    left: -21%;
    width: 33%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../images/info__access__bubble.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-align: center;
}

.info__access--Jp {
    font-size: clamp(1.3rem, 0.25rem + 1.11vw, 1.6rem);
    letter-spacing: 0.032rem;
}

.info__access--num {
    font-family: Montserrat;
    font-size: clamp(3.6rem, 0.8rem + 2.92vw, 4.2rem);
    font-weight: 600;
}

.info__content {
    width: 42.9%;
    opacity: 0;
}

.info__item {
    display: flex;
    padding: 16px 5.5%;
    border-bottom: 1px solid var(--brown-main);
    font-size: 1.4rem;
}

.info__item:last-of-type {
    border-bottom: none;
}

.info__item__title {
    width: 40%;
    font-weight: 700;
    flex-shrink: 0;
}

.info__item__desc {
    width: 60%;
    flex-shrink: 0;
}

.info__item__desc--sub {
    font-size: 1.2rem;
    margin-top: 6px;
}

.info__map {
    margin-top: 8px;
}

.info__map iframe {
    width: 100%;
    border-radius: 20px;
}

@media screen and (max-width: 767px) {
    .section--information {
        padding: 100px 0;
    }

    .info__wrap {
        width: var(--sp-contentWidth-335);
        min-width: initial;
    }

    .info__container {
        flex-direction: column;
        gap: 16px;
    }

    .info__img {
        width: 100%;
    }

    .info__access {
        bottom: auto;
        left: auto;
        top: -13%;
        right: -5%;
        width: 33%;
        background-image: url(../images/info__access__bubble--rotate.svg);
    }

    .info__access--Jp {
        font-size: 1.2rem;
    }

    .info__access--num {
        font-size: 2.8rem;
    }

    .info__content {
        width: 100%;
    }

    .info__list {
        width: 92.8%;
        margin: 0 auto;
    }

    .info__item {
        padding: 12px 6.5%;
        font-size: 1.2rem;
    }

    .info__item__desc--sub {
        font-size: 1.0rem;
        margin-top: 4px;
    }

    .info__map {
        margin-top: 12px;
    }

    .info__map iframe {
        height: 190px;
    }
}