/*==================================================
# 共通
==================================================*/
:root {
    --color-primary: #AD191F;
    --text-color: #4A4138;
    --font-noto-sans-jp: 'Noto Sans JP', sans-serif;
    --font-shippori-mincho: "Shippori Mincho", serif;
}

body {
    font-family: var(--font-noto-sans-jp);
    font-size: 16px;
    line-height: 1.4;
    color: var(--text-color);
}

.js-fadeIn {
    opacity: 0;
    transition: all 1s ease 0s;
    transform: translateY(20px);
}

.is-fixed {
    overflow: hidden;
}

.sp-only {
    display: none;
}

.u-tab-show {
    display: none;
}

@media screen and (max-width: 1024px) {
    .u-tab-show {
        display: block;
    }

    .u-tab-none {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .sp-only {
        display: block;
    }

    .pc-only {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .c-button--l {
        font-size: 18px;
        height: 60px;
        max-width: 333px;
        width: 100%;
    }
}


/*==================================================
# ヘッダー
==================================================*/
.header {
    height: 87px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -12px;
    right: -23px;
    width: 324px;
    aspect-ratio: 648 / 216;
    background: url(../img/deco_01.png) no-repeat center center /contain;
    z-index: -1;
}

.header__inner {
    height: 100%;
    padding: 0 32px;
}

.header__column {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    max-width: 166px;
    display: grid;
    place-items: center;
}

.header__logo-link {
    transition: all 0.3s ease 0s;
    padding: 14px 9px;
}

.header__logo-link:hover {
    opacity: 0.7;
}

.header__logo-link img {
    max-width: 147px;
}

.header__button-wrapper {
    width: 100%;
    max-width: 342px;
}

.header__button {
    text-align: center;
    border-radius: 60px;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    display: flex;
    padding: 6px 20px;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-size: 20px;
    line-height: 225%;
    letter-spacing: 1px;
    transition: all 0.3s ease 0s;
}

.header__button:hover {
    background: #FFF;
    color: var(--color-primary);
}


@media screen and (max-width: 768px) {
    .header {
        height: 60px;
    }

    .header::before {
        width: 270px;
        right: -38px;
    }

    .header__inner {
        padding: 0 12px;
    }

    .header__logo-link {
        padding: 0;
    }

    .header__logo-link img {
        max-width: 124px;
    }

    .header__button-wrapper {
        max-width: 200px;
    }

    .header__button {
        padding: 0 10px;
        height: 40px;
        font-size: 14px;

    }
}

/*==================================================
# メインビジュアル
==================================================*/
.p-teaser-mv {
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.p-teaser-mv::before {
    content: '';
    position: absolute;
    bottom: -81px;
    left: -25px;
    width: 324px;
    aspect-ratio: 324 / 108;
    background: url(../img/deco_01.png) no-repeat center center /contain;
    z-index: -1;
}

.p-teaser-mv__inner {
    position: relative;
    border-radius: 28.65px;
    z-index: 2;
    overflow: hidden;
    border: 1px solid #B7A263;
    min-height: 460px;
    height: calc(715 / 1440 * 100vw);
}

.mv-slider,
.mv-slider .swiper-wrapper,
.mv-slider .swiper-slide,
.mv-slider .swiper-slide .swiper-img {
    height: inherit;
    min-height: inherit;
}

.mv-slider .swiper-slide .swiper-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.mv-slider .swiper-slide.swiper-slide-active .swiper-img,
.mv-slider .swiper-slide.swiper-slide-duplicate-active .swiper-img,
.mv-slider .swiper-slide.swiper-slide-prev .swiper-img {
    animation: scale 8s linear 0s normal both;
}

@keyframes scale {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.p-teaser-mv__deco-01 {
    position: absolute;
    top: 0;
    left: 0;
    aspect-ratio: 469 / 271;
    width: calc(469 / 1374 * 100%);
    z-index: 1;
}

.p-teaser-mv__deco-02 {
    position: absolute;
    bottom: 0;
    right: 0;
    aspect-ratio: 486 / 196;
    width: calc(486 / 1374 * 100%);
    z-index: 1;
}


.p-teaser-mv__container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -44%);
    width: 100%;
    z-index: 1;
    max-width: calc(1190 / 1440 * 100vw);
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.p-teaser-mv__copy-wrap {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: calc(40 / 1440 * 100vw);
    margin-top: -16px;
    opacity: 0;
}

.p-teaser-mv__copy-wrap.is-animated {
    animation: fadeInUp 1s ease 0.5s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.p-teaser-mv__copy {
    color: #FFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-family: var(--font-shippori-mincho);
    font-size: calc(36.29 / 1440 * 100vw);
    font-weight: 600;
    line-height: 1;
    writing-mode: vertical-rl;
    position: relative;
    z-index: 1;
    letter-spacing: 9.6px;
}

.p-teaser-mv__copy::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 28px);
    height: calc(100% + 40px);
    border-radius: 320px;
    background: linear-gradient(134deg, rgba(240, 129, 124, 0.50) 4.58%, rgba(245, 195, 147, 0.50) 92%);
    filter: blur(27px);
    z-index: -1;
}

.p-teaser-mv__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p-teaser-mv__logo {
    width: 100%;
    max-width: calc(453.044 / 1440 * 100vw);
    margin: 0 auto;
    opacity: 0;
}

.p-teaser-mv__logo.is-animated {
    animation: logoFadeInRotateZoom 1.4s ease 1s forwards;
}

@keyframes logoFadeInRotateZoom {
    0% {
      opacity: 0;
      transform: translateY(-30px) rotate(0deg) scale(0.8);
    }
    100% {
      opacity: 1;
      transform: translateY(0) rotate(360deg) scale(1);
    }
  }

.p-teaser-mv__heading-wrap {
    position: relative;
    z-index: 1;
    color: #FFF;
    text-align: center;
    text-shadow: 2px 4px 4px rgba(0, 0, 0, 0.25), 0px 3.82px 15px rgba(0, 0, 0, 0.48);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #9A8133;
    font-family: var(--font-shippori-mincho);
    opacity: 0;
}

.p-teaser-mv__heading-wrap.is-animated {
    animation: fadeInUp 1s ease 0.5s forwards;
}

.p-teaser-mv__heading-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    border-radius: 766px;
    background: linear-gradient(134deg, rgba(240, 129, 124, 0.50) 4.58%, rgba(245, 195, 147, 0.50) 92%);
    filter: blur(27px);
    z-index: -1;
}

.p-teaser-mv__heading {
    margin-top: 10px;
    font-size: calc(76.4 / 1440 * 100vw);
    font-weight: 700;
    line-height: 118.75%;
    letter-spacing: -1.528px;

}

.p-teaser-mv__date {
    font-size: calc(40.11 / 1440 * 100vw);
    font-weight: 800;
    line-height: 1;
    margin-top: 12px;
    display: block;
}

.p-teaser-mv__date span {
    font-size: calc(30.56 / 1440 * 100vw);
    font-weight: 800;
}

.p-teaser-mv__event-wrap {
    margin-top: 20px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.77);
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 12px 38px;
    opacity: 0;
}

.p-teaser-mv__event-wrap.is-animated {
    animation: fadeInUp 1s ease 0.5s forwards;
}

.p-teaser-mv__event-wrap::before, .p-teaser-mv__event-wrap::after {
    content: '';
    position: absolute;
    width: calc(100% + 12px);
    aspect-ratio: 964 / 67;
    background: url(../img/deco_mv_01.png) no-repeat center center /contain;
    left: 50%;
}

.p-teaser-mv__event-wrap::before {
    top: -6.45px;
    transform: translateX(-50%);
}

.p-teaser-mv__event-wrap::after {
    bottom: -6px;
    transform: translateX(-50%) rotate(180deg);
}

.p-teaser-mv__event {
    font-family: var(--font-shippori-mincho);
    font-size: 18px;
    font-weight: 700;
    line-height: 153.889%;
    letter-spacing: 0.9px;
}

.p-teaser-mv__spacer {
    width: calc(188 / 1440 * 100vw);
}

@media screen and (max-width: 1024px) {
    .p-teaser-mv__container {
        transform: translate(-50%, -48%);
    }

    .p-teaser-mv__event {
        font-size: 16px;
    }

    .p-teaser-mv__event-wrap::before {
        top: -8px;
    }

    .p-teaser-mv__event-wrap::after {
        bottom: -8px;
    }
    
}

@media screen and (max-width: 768px) {
    .p-teaser-mv {
        padding: 0 8px;
    }

    .p-teaser-mv::before {
        left: -77px;
        bottom: -61px;
        width: 270px;
    }

    .p-teaser-mv__inner {
        border-radius: 20px;
        min-height: 507px;
    }

    .p-teaser-mv__deco-01 {
        aspect-ratio: 639 / 290;
        width: 320px;
    }

    .p-teaser-mv__deco-02 {
        aspect-ratio: 686 / 334;
        width: 320px;
    }

    .p-teaser-mv__container {
        max-width: 100%;
        justify-content: center;
        top: 57%;
    }

    .p-teaser-mv__copy-wrap {
        gap: 18px;
        margin-left: -87px;
        margin-top: -86px;
        transform: translateX(-11px);
    }

    .p-teaser-mv__copy {
        font-size: 17.14px;
        letter-spacing: 4.6px;
    }

    .p-teaser-mv__copy::before {
        fill: linear-gradient(134deg, rgba(240, 129, 124, 0.90) 4.58%, rgba(245, 195, 147, 0.90) 92%);
        filter: blur(12.75216007232666px);
        width: calc(100% + 12px);
        height: calc(100% + 14px);
    }

    .p-teaser-mv__logo {
        max-width: 242px;
    }

    .p-teaser-mv__heading-wrap {
        text-shadow: 1.337px 2.674px 10.67px rgba(0, 0, 0, 0.55), 0px 2.554px 10.028px rgba(0, 0, 0, 0.20);
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: #9A8133;
    }

    .p-teaser-mv__heading-wrap::before {
        width: calc(766 / 393 * 100vw);
        aspect-ratio: calc(766 / 173);
        border-radius: 766px;
        background: linear-gradient(134deg, rgba(240, 129, 124, 0.50) 4.58%, rgba(245, 195, 147, 0.50) 92%);
        filter: blur(27px);
        top: 87%;
    }

    .p-teaser-mv__heading-wrap::after {
        content: "";
        position: absolute;
        width: calc(442 / 393 * 100vw);
        aspect-ratio: 442 / 97;
        border-radius: 442px;
        background: linear-gradient(134deg, rgba(240, 129, 124, 0.50) 4.58%, rgba(245, 195, 147, 0.50) 92%);
        filter: blur(27px);
        top: 28%;
        left: 50%;
        transform: translateX(-50%);
        z-index: -1;
    }

    .p-teaser-mv__heading {
        margin-top: 30px;
        font-size: 42px;
        line-height: 144.412%;
        letter-spacing: -0.84px;
    }

    .p-teaser-mv__date {
        margin-top: 0;
        font-size: 26.815px;
        line-height: initial;
        text-shadow: 1.337px 2.674px 2.674px rgba(0, 0, 0, 0.25), 0px 2.554px 10.028px rgba(0, 0, 0, 0.48);
        -webkit-text-stroke-width: 0.67px;
    }

    .p-teaser-mv__date span {
        font-size: 20.431px;
    }

    .p-teaser-mv__event-wrap {
        padding: 8px 25px;
        margin-top: 10px;
    }

    .p-teaser-mv__event-wrap::before {
        top: -5px;
    }

    .p-teaser-mv__event-wrap::after {
        bottom: -4px;
    }

    .p-teaser-mv__event {
        font-size: 12.034px;
        letter-spacing: 0.602px;
    }

    .p-teaser-mv__spacer {
        display: none;
    }
}

@media screen and (max-width: 392px) {
    .p-teaser-mv__heading {
        font-size: calc(42 / 392 * 100vw);
    }
    
}
/*==================================================
# イントロダクション
==================================================*/

.p-teaser-intro {
    padding: 105px 0 48px;
    background-image:
    url(../img/deco_02.png),    /* 右上 */
    url(../img/deco_04.png); /* 右下 */
  background-repeat: no-repeat;
  background-position:
    top 25px right,
    bottom 109px right 23px;
  background-size:
    451px,   /* 右上 */
    89px;   /* 右下 */
}

.p-teaser-intro__inner {
    padding: 0 30px;
    max-width: 1408px;
    margin: 0 auto;
}

.p-teaser-intro__content {
    padding: 127px 30px 118px;
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 677px;
    margin: 0 auto;
}

.p-teaser-intro__content::before {
    content: '';
    position: absolute;
    top: 51%;
    left: 50%;
    transform: translate(-50%, -50%);
    aspect-ratio: 1 / 1;
    width: 762px;
    z-index: -1;
    border-radius: 470px;
    background: linear-gradient(134deg, rgba(242, 184, 181, 0.70) 4.58%, rgba(251, 224, 198, 0.70) 92%);
    box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.30);
    filter: blur(27px);
}

.p-teaser-intro__content:after {
    content: '';
    position: absolute;
    top: 48px;
    left: -200px;
    aspect-ratio: 131 / 105;
    width: 131px;
    background: url(../img/deco_03.png) no-repeat center center /contain;
}

.p-teaser-intro__heading {
    color: var(--text-color);
    font-family: var(--font-shippori-mincho);
    font-size: 32px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.6px;
    position: relative;
    z-index: 1;
    text-shadow: 0px 0px 8px #FFF, 0px 0px 24px #FFF, 0px 0px 16px #FFF;
}

.p-teaser-intro__heading::before {
    content: '';
    position: absolute;
    top: -52px;
    right: -63%;
    width: 421px;
    aspect-ratio: 1 / 1;
    background: url(../img/img_teaser_01.png) no-repeat center center /contain;
}

.p-teaser-intro__heading::after {
    content: '';
    position: absolute;
    top: 130px;
    left: -62%;
    width: 407px;
    aspect-ratio: 814 / 920;
    background: url(../img/img_teaser_02.png) no-repeat center center /contain;
}

.p-teaser-intro__text-wrap {
    margin-top: 35px;
    position: relative;
    z-index: 1;
    text-shadow: 0px 0px 8px #FFF, 0px 0px 24px #FFF, 0px 0px 16px #FFF;
}

.p-teaser-intro__text {
    line-height: 2;
    font-size: 17px;
    font-weight: 500;
}

.p-teaser-intro__text + .p-teaser-intro__text {
    margin-top: 32px;
}

.p-teaser-intro__text strong {
    color: #A58523;
    font-size: 20px;
}

@media screen and (max-width: 768px) {
    .p-teaser-intro {
        padding: 348px 0 clamp(115px, calc(115 / 375 * 100vw), 148px);
        background-image:
            url(../img/deco_02_sp.png);
        background-position:
            top 30px right;
        background-size:
            181px;
    }


    .p-teaser-intro__inner {
        padding: 0 10px;
    }

    .p-teaser-intro__content {
        padding: 0;
    }

    .p-teaser-intro__content::before {
        width: 660px;
        top: 47%;
    }

    .p-teaser-intro__content:after {
        display: none;
    }

    .p-teaser-intro__heading {
        font-size: 22px;
        letter-spacing: 0;
    }

    .p-teaser-intro__heading::before {
        top: -284px;
        right: 50%;
        transform: translateX(14%);
        width: 159px;
    }

    .p-teaser-intro__heading::after {
        top: -197px;
        left: 56%;
        transform: translateX(-50%);
        width: 206px;
        aspect-ratio: 412 / 360;
        background: url(../img/img_teaser_02_sp.png) no-repeat center center /contain;
    }

    .p-teaser-intro__text-wrap {
        margin-top: 30px;
    }

    .p-teaser-intro__text {
        font-size: 14px;
        line-height: 1.8;
    }

    .p-teaser-intro__text + .p-teaser-intro__text {
        margin-top: 24px;
    }  

    .p-teaser-intro__text strong {
        font-size: 16px;
    }
}

/*==================================================
# インフォメーション
==================================================*/

.p-teaser-info {
    position: relative;
    z-index: 1;
    padding-bottom: 120px;
}

.p-teaser-info__inner {
    max-width: 764px;
    padding: 0 30px;
    margin: 0 auto;
    position: relative;
}

.p-teaser-info__inner::before {
    content: '';
    position: absolute;
    top: -196px;
    left: -35%;
    transform: translateX(-50%);
    width: 379px;
    aspect-ratio: 379 / 300;
    background: url(../img/deco_05.png) no-repeat center center /contain;
    z-index: -1;
}

.p-teaser-info__inner:after {
    content: '';
    position: absolute;
    bottom: -92px;
    right: -70%;
    transform: translateX(-50%);
    width: 274px;
    aspect-ratio: 1 / 1;
    background: url(../img/deco_04.png) no-repeat center center /contain;
    z-index: -1;
}

.p-teaser-info__logo {
    max-width: 630px;
    margin: 0 auto;
}

.p-teaser-info__content { 
    margin-top: 70px;
    padding: 50px 30px;
    border: 1px solid #B7A263;
    position: relative;
}

.p-teaser-info__content::before {
    content: '';
    position: absolute;
    top: -78px;
    right: -346px;
    width: 448px;
    aspect-ratio: 448 / 145;
    background: url(../img/deco_06.png) no-repeat center center /contain;
}

.p-teaser-info__content::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: -391px;
    width: 448px;
    aspect-ratio: 448 / 145;
    background: url(../img/deco_07.png) no-repeat center center /contain;
}

.p-teaser-info__block {
    max-width: 550px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.p-teaser-info__block + .p-teaser-info__block {
    margin-top: 40px;
}

.p-teaser-info__title {
    font-family: var(--font-shippori-mincho);
    font-size: 27px;
    font-weight: 700;
    line-height: 150%;
    padding-right: 30px;
    width: 138px;
    flex-shrink: 0;
    position: relative;
}

.p-teaser-info__title::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 67px;
    border-right: 1px dashed #B7A263;
}

.p-teaser-info__date {
    font-size: 24px;
}

.p-teaser-info__text {
    font-size: 18px;
}

.p-teaser-info__text sup {
    font-size: 12px;
}

.p-teaser-info__supplement {
    font-size: 12px;

}

@media screen and (max-width: 768px) {
    .p-teaser-info {
        padding-bottom: 136px;
    }

    .p-teaser-info__inner {
        padding: 0 10px;
    }

    .p-teaser-info__inner::before {
        width: 66px;
        aspect-ratio: 1 / 1;
        background: url(../img/deco_05_sp.png) no-repeat center center /contain;
        top: 106px;
        left: 0;
        transform: translateX(0%);
    }

    .p-teaser-info__inner:after {
        width: 68px;
        aspect-ratio: 68 / 58;
        background: url(../img/deco_08_sp.png) no-repeat center center /contain;
        bottom: -120px;
        right: 8px;
        transform: translateX(0%);
    }

    .p-teaser-info__logo {
        max-width: 317px;
    }

    .p-teaser-info__content {
        margin-top: 158px;
        padding: 30px 8px;
    }

    .p-teaser-info__content::before {
        width: 272px;
        top: -117px;
        right: -118px;
    }

    .p-teaser-info__content::after {
        width: 272px;
        bottom: -118px;
        left: -146px;
    background: url(../img/deco_06.png) no-repeat center center /contain;

    }

    .p-teaser-info__block {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
    }

    .p-teaser-info__title {
        font-size: 22px;
        padding-right: 0;
        padding-bottom: 12px;
        width: 100%;
    }

    .p-teaser-info__title::after {
        top: auto;
        bottom: 0;
        right: 50%;
        transform: translateX(50%);
        height: 1px;
        width: 67px;
        border-right: none;
        border-bottom: 1px dashed #B7A263;
    }

    .p-teaser-info__date {
        font-size: 20px;
    }

    .p-teaser-info__text {
        font-size: 16px;
    }

    .p-teaser-info__text sup {
        font-size: 10px;
    }
    
    .p-teaser-info__supplement {
        margin-top: 12px;
        display: block;
    }
}

/*==================================================
# 店舗募集
==================================================*/

.p-teaser-cta {
    padding-bottom: 106px;
}

.p-teaser-cta__inner {
    padding: 0 30px;
    max-width: 1150px;
    margin: 0 auto;
}

.p-teaser-cta__content {
    border-radius: 20px;
    background: linear-gradient(134deg, rgba(242, 184, 181, 0.70) 4.58%, rgba(251, 224, 198, 0.70) 92%), #F3D2B3;
    padding: 14px 15px;
    display: flex;
    gap: calc(44 / 1440 * 100vw);
    align-items: center;
    position: relative;
    z-index: 1;
}

.p-teaser-cta__content::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: -116px;
    width: 89px;
    aspect-ratio: 1 / 1;
    background: url(../img/deco_04.png) no-repeat center center /contain;
}

.p-teaser-cta__image {
    position: relative;
    z-index: 1;
    width: calc(515 / 1060 * 100%);
}

.p-teaser-cta__image img {
    border-radius: 20px;

}

.p-teaser-cta__image-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) skew(-10deg) rotate(-6deg);
    color: #FFF;
    text-align: center;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.45), 0px 0px 24px rgba(0, 0, 0, 0.75);
    font-family: var(--font-shippori-mincho);
    font-size: calc(46 / 1440 * 100vw);
    font-weight: 700;
    letter-spacing: 0.92px;
    width: 100%;
}

.p-teaser-cta__heading {
    font-family: var(--font-shippori-mincho);
    font-size: clamp(24px, calc(36 / 1440 * 100vw), 40px);
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.72px;
}

.p-teaser-cta__text {
    margin-top: 20px;
}

.p-teaser-cta__button-wrap {
    margin-top: 26px;
}

.p-teaser-cta__button {
    text-align: center;
    border-radius: 60px;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    display: flex;
    padding: 6px 20px;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-size: 20px;
    line-height: 225%;
    letter-spacing: 1px;
    transition: all 0.3s ease 0s;
    width: 100%;
    max-width: 342px;
}

.p-teaser-cta__button:hover {
    background: #FFF;
    color: var(--color-primary);
}

@media screen and (max-width: 768px) {
    .p-teaser-cta {
        padding-bottom: 63px;
    }

    .p-teaser-cta__inner {
        padding: 0 10px;
    }

    .p-teaser-cta__content {
        padding: 30px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 19px;
    }

    .p-teaser-cta__content::before {
        bottom: -52px;
        right: auto;
        left: -9px;
        width: 44px;
    }

    .p-teaser-cta__image {
        width: 100%;
    }

    .p-teaser-cta__image img {
        border-radius: 15px;
    }

    .p-teaser-cta__image-text {
        font-size: 32px;
        letter-spacing: 0;
    }

    .p-teaser-cta__heading {
        font-size: 26px;
        letter-spacing: 0;
    }

    .p-teaser-cta__text {
        margin-top: 8px;
    }

    .p-teaser-cta__button-wrap {
        margin-top: 19px;
    }
}

/*==================================================
# フッター
==================================================*/

.footer {
    background: var(--color-primary);
    padding: 33px 0 17px;
}

.footer__inner {
    padding: 0 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.footer__content {
    border-radius: 20px;
    background: #FFF;
    padding: 36px 30px 16px;
}

.footer__content-inner {
    max-width: 887px;
    margin: 0 auto;
}

.footer__logo-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;

}

.footer__logo-item {
}

.footer__logo-item--ritsumei {
    max-width: 200px;
}

.footer__logo-item--hajimari {
    max-width: 420px;

}

.footer__logo-link {
    display: block;
    transition: all 0.3s ease 0s;
}

.footer__logo-link:hover {
    opacity: 0.7;
}

.footer__logo-link--ritsumei {
    padding: 17px;
}

.footer__logo-link--hajimari {

}


.footer__info {
    margin-top: 48px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.footer__title {
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
}

.footer__address {
    font-size: 15px;
    line-height: 1.5;
}

.footer__contact {
    font: 15px;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__tel {

}

.footer__tel a, .footer__mail a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease 0s;
    font-size: 15px;
    display: block;
}

.footer__tel a:hover, .footer__mail a:hover {
    opacity: 0.7;
}

.footer__copyright {
    margin-top: 14px;
    color: #fff;
    text-align: center;
    display: block;
    font-size: 13px;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 23px 0;
    }

    .footer__inner {
        padding: 0 20px;
    }

    .footer__content {
        border-radius: 10px;
        padding: 26px 14px;
    }

    .footer__logo-list {
        gap: 20px;
        justify-content: space-between;
        max-width: 320px;
        margin: 0 auto;
    }

    .footer__logo-link--ritsumei {
        padding: 9px 6px;
        max-width: 110px;
    }

    .footer__logo-item--hajimari {
        max-width: 200px;
    }

    .footer__info {
        margin-top: 24px;
    }

    .footer__title {
        font-size: 16px;
    }

    .footer__address {
        font-size: 13px;
    }

    .footer__contact {
        font-size: 13px;
    }

    .footer__tel a, .footer__mail a {
        font-size: 13px;
    }

    .footer__copyright {
        font-size: 11px;
    }

}

