html {
    font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
    color: #101010;
}

body {
    min-width: 375px;
}

body.js-active {
    overflow: hidden;
}

main {
    overflow: hidden;
}

@media screen and (max-width: 900px) {
    main {
        padding-top: 0;
    }
}

span {
    display: inline-block;
}

picture {
    display: block;
}

img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

a {
    display: inline-block;
}

@media screen and (min-width: 901px) {
    a.--nomal {
        transition: opacity .5s;
    }

    a.--nomal:hover {
        opacity: 0.6;
    }
}

/* utility */
.u-en {
    font-family: "Outfit", sans-serif;
}

.--green {
    color: #54be78;
}

.--blue {
    color: #5284E4;
}

.--orange {
    color: #F7A84B;
}

.--gray {
    color: #AAAAAA;
}

/* layout */
.l-wrapper {
    padding-left: 40px;
    padding-right: 40px;
}

.l-inner {
    margin: 0 auto;
    max-width: 1060px;
}

.btn__wrapper {
    width: 556px;
    height: 130px;
    /* background: url(../img/btnbg_pc.webp) no-repeat center center/contain; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    z-index: 1;
}

.btn__wrapper::after {
    background-color: #C5474F;
    content: '';
    height: calc(100% - 8px);
    left: 0;
    position: absolute;
    bottom: 0;
    width: 555px;
    border-radius: 12px;
    z-index: 0;
}

.btn__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 555px;
    height: 120px;
    z-index: 1;
    transition: transform .4s 0s cubic-bezier(.44, .14, .09, 1.02);
}

.btn__item {
    color: #fff;
    font-size: 43px;
    font-weight: bold;
    line-height: 1.28;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .4s 0s cubic-bezier(.44, .14, .09, 1.02);
    z-index: 2;
}

.btn__item__balloon {
    background: #FCDA29;
    color: #3c3c3c;
    font-size: 20px;
    letter-spacing: 0.04em;
    font-weight: 700;
    width: 251px;
    height: 38px;
    line-height: 38px;
    border-radius: 5px;
    text-align: center;
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    transition: transform .4s 0s cubic-bezier(.44, .14, .09, 1.02);
}

.btn__item__balloon::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    width: 25px;
    height: 11px;
    background: #FCDA29;
}

.btn__text {
    z-index: 2;
    transition: transform .4s 0s cubic-bezier(.44, .14, .09, 1.02);
    text-shadow: 4px 4px 16px #73030373;
    margin: 0 auto;
}

.btn__item:hover .btn__img,
.btn__item:hover .btn__text {
    transform: translateY(8px);
}

.btn__item:hover .btn__item__balloon {
    transform: translate(-50%, 8px);
}

@media screen and (max-width: 900px) {
    .l-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }

    .l-inner {
        max-width: 335px;
    }

    .btn__wrapper {
        width: 294px;
        height: 67px;
        background: url(../img/btn_bg_sp.webp) no-repeat center center/contain;
    }

    .btn__wrapper::after {
        height: calc(100% - 5px);
        width: 100%;
        border-radius: 8px;
    }

    .btn__item__balloon {
        font-size: 14px;
        width: 174px;
        height: 27px;
        line-height: 27px;
        top: -14px;
    }

    .btn__item__balloon::before {
        content: '';
        position: absolute;
        bottom: -6px;
        clip-path: polygon(50% 100%, 0 0, 100% 0);
        width: 13px;
        height: 7px;
    }

    .btn__img {
        width: 294px;
        height: 100%;
    }

    .btn__wrapper a {
        font-size: 21px;
    }
}

/* common */
.pc-only {
    display: block;
}

.br-pc-only {
    display: inline-block;
}

.sp-only {
    display: none;
}

.br-sp-only {
    display: none;
}

@media screen and (max-width: 900px) {
    .pc-only {
        display: none;
    }

    .br-pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }

    .br-sp-only {
        display: inline-block;
    }
}

/*===========================================================================*/
/*  nav  */
/*===========================================================================*/
@media screen and (max-width: 900px) {
    .float_nav {
        position: fixed;
        bottom: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 100;
        text-align: center;
    }

    .float_nav--tel {
        width: 50%;
        padding-top: 9px;
        padding-bottom: 10px;
        position: relative;
        z-index: 1;
    }

    .float_nav--tel--inner {
        position: relative;
        z-index: 2;
    }

    .float_nav--tel::before {
        background-color: #0167AF;
        content: '';
        height: 100%;
        left: 0;
        position: absolute;
        bottom: 3px;
        width: 100%;
        z-index: 1;
    }

    .float_nav--tel::after {
        content: '';
        position: absolute;
        background-color: #00497C;
        height: calc(100% - 3px);
        left: 0;
        bottom: 0;
        width: 100%;
        z-index: 0;
    }

    .float_nav--reserve {
        width: 50%;
        padding: 18px 0;
        font-size: 14px;
        line-height: 1.28;
        color: #fff;
        position: relative;
        font-weight: 700;
    }

    .float_nav--reserve span {
        position: relative;
        z-index: 2;
    }

    .float_nav--reserve::before {
        background-color: #e75b63;
        content: '';
        height: 100%;
        left: 0;
        position: absolute;
        bottom: 3px;
        width: 100%;
        z-index: 1;
    }

    .float_nav--reserve::after {
        content: '';
        position: absolute;
        background-color: #C5474F;
        height: calc(100% - 3px);
        left: 0;
        bottom: 0;
        width: 100%;
        z-index: 0;
    }

    .float_nav--tel--text {
        font-size: 14px;
        line-height: 1.28;
        color: #fff;
        margin-bottom: 2px;
        font-weight: 700;
    }

    .float_nav--tel--time {
        font-size: 10px;
        line-height: 1.5;
        color: #fff;
        font-family: "Noto Sans JP";
        font-weight: 500;
    }

    .float_nav--tel--time span:first-child {
        padding-right: 6px;
        position: relative;
    }

    .float_nav--tel--time span:first-child::after {
        content: '';
        font-size: 12px;
        line-height: 1.65;
        letter-spacing: -0.03em;
        position: absolute;
        right: 0;
        width: 1px;
        height: 10px;
        top: 50%;
        transform: translateY(-50%);
        background-color: #fff;
    }

    .float_nav--tel--time span:last-child {
        padding-left: 6px;
    }

    .float_nav--vertical {
        font-size: 12px;
        line-height: 1.65;
        letter-spacing: -0.03em;
    }
}

/*===========================================================================*/
/*  header  */
/*===========================================================================*/
.p-header {
    width: 100%;
    left: 0;
    top: 0;
    background-color: #fff;
    padding: 14px 40px 12px 36px;
    z-index: 80;
}

.p-header__inner {
    display: flex;
    justify-content: space-between;
}

.p-header__logo {
    width: 358px;
}

.p-header__information {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.p-header__tel {
    position: relative;
    color: #3C3C3C;
    padding-right: 13px;
}

.p-header__tel--txt {
    font-size: 12px;
    line-height: 1.5;
    font-weight: 500;
}

.p-header__tel--num {
    position: relative;
    padding-left: 20px;
    font-size: 25px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .03em;
}

.p-header__tel--num::before {
    background: url('../img/icon-tel.svg') no-repeat center center/contain;
    content: '';
    height: 16px;
    left: 0;
    position: absolute;
    top: 5px;
    width: 16px;
}

.p-header__time {
    text-align: left;
    font-size: 12px;
    line-height: 1.5;
    padding: 3.5px 0 3.5px 15px;
    border-left: solid 1px #d4d4d4;
    font-weight: 500;
}

@media screen and (max-width: 900px) {
    .p-header {
        position: relative;
        padding: 16px 19px 15px 19px;
    }

    .p-header__logo {
        width: 192px;
    }

    .p-header__information {
        display: none;
    }
}

/*===========================================================================*/
/*  mv  */
/*===========================================================================*/
.p-mv {
    height: 758px;
    background: url(../img/mv_pc.webp) no-repeat center center/cover;
    position: relative;
}

.p-mv__decoration {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
}

.p-mv__wrapper {
    padding-top: 58px;
}

.p-mv__title {
    font-size: 68px;
    line-height: 1.55;
    letter-spacing: 0.04em;
    color: #fff;
    text-shadow: 2px 2px 0 #0167AF, -2px -2px 0 #0167AF,
        -2px 2px 0 #0167AF, 2px -2px 0 #0167AF,
        0px 2px 0 #0167AF, 0-2px 0 #0167AF,
        -2px 0 0 #0167AF, 2px 0 0 #0167AF;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    position: relative;
    padding-top: 59px;
    text-align: center;
    margin-bottom: 28px;
}

.p-mv__title span {
    position: relative;
}

.p-mv__title span::after {
    content: '';
    width: 100%;
    background: url(../img/mv_line_dot_lg.webp) no-repeat center center/cover;
    position: absolute;
    bottom: 2px;
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
}

.p-mv__title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: url(../img/umbrella_pc.webp) no-repeat center center/contain;
    width: 426px;
    height: 46px;
}

.p-mv__subtitle {
    font-size: 35px;
    line-height: 1.32;
    letter-spacing: 0.06em;
    color: #fff;
    text-shadow: 2px 2px 0 #0167AF, -2px -2px 0 #0167AF,
        -2px 2px 0 #0167AF, 2px -2px 0 #0167AF,
        0px 2px 0 #0167AF, 0-2px 0 #0167AF,
        -2px 0 0 #0167AF, 2px 0 0 #0167AF;
    font-family: "Zen Kaku Gothic New", sans-serif;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 27px;
}

.p-mv__subtitle::before {
    content: '';
    background: url(../img/attention.webp) no-repeat center center/contain;
    width: 12px;
    height: 13px;
    position: absolute;
    left: -10px;
    top: -3px;
}

.p-mv__subtitle span {
    position: relative;
    z-index: 2;
}

.p-mv__subtitle span::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 8px;
    background-color: #F0EA66;
    border-radius: 2px;
    bottom: 4px;
    z-index: -1;
}

.p-mv__information {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 44px 16px 36px;
    background-color: #fff;
    border: solid 2px #0167AF;
    box-sizing: border-box;
    max-width: 534px;
    margin: 0 auto;
    border-radius: 8px;
}

.p-mv__information--walk {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.28;
    color: #0167AF;
    font-weight: 700;
    position: relative;
    padding: 0 18px;
}

.p-mv__information--walk::before, .p-mv__information--walk::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 24px;
    bottom: 5px;
}

.p-mv__information--walk::before {
    background: url(../img/walk_attention_left.webp) no-repeat center center/contain;
    left: 0;
}

.p-mv__information--walk::after {
    background: url(../img/walk_attention_right.webp) no-repeat center center/contain;
    right: 0;
}

.p-mv__information--walk span {
    font-size: 36px;
    line-height: 1.28;
    font-family: "Outfit", sans-serif;
}

.p-mv__information--shop {
    font-size: 26px;
    line-height: 1.28;
    font-weight: 700;
}

.p-mv__information--shop span {
    font-size: 30px;
    line-height: 1.28;
    margin-right: 4px;
}

.p-mv__information--map {
    width: 156px;
    margin-left: 23px;
}

@media screen and (max-width: 900px) {
    .p-mv {
        width: 100%;
        height: 543px;
        background: url(../img/mv_sp.webp) no-repeat center center/cover;
    }

    .p-mv__wrapper {
        padding-top: 127px;
    }

    .p-mv__title {
        font-size: 40px;
        text-shadow: 1px 1px 0 #0167AF, -1px -1px 0 #0167AF,
            -1px 1px 0 #0167AF, 1px -1px 0 #0167AF,
            0px 1px 0 #0167AF, 0-1px 0 #0167AF,
            -1px 0 0 #0167AF, 1px 0 0 #0167AF;
        padding-top: 37px;
        text-align: center;
        margin-bottom: 13px;
    }

    .p-mv__title::before {
        background: url(../img/umbrella_sp.webp) no-repeat center center/contain;
        width: 253px;
        height: 27px;
    }

    .p-mv__subtitle {
        font-size: 24px;
        text-shadow: 1px 1px 0 #0167AF, -1px -1px 0 #0167AF,
            -1px 1px 0 #0167AF, 1px -1px 0 #0167AF,
            0px 1px 0 #0167AF, 0-1px 0 #0167AF,
            -1px 0 0 #0167AF, 1px 0 0 #0167AF;
        margin-bottom: 123px;
        text-align: center;
    }

    .p-mv__subtitle::before {
        background: url(../img/attention.webp) no-repeat center center/contain;
        width: 12px;
        height: 13px;
        left: 13px;
    }

    .p-mv__subtitle span::before {
        height: 6px;
        border-radius: 1px;
    }

    .p-mv__information {
        padding: 15px 20px 15px 15px;
        border: solid 1px #0167AF;
        max-width: 335px;
        border-radius: 6px;
        position: absolute;
        z-index: 1;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 40px);
    }

    .p-mv__information--walk {
        font-size: 16px;
        padding: 0 14px;
    }

    .p-mv__information--walk::before, .p-mv__information--walk::after {
        width: 10px;
        height: 16px;
        bottom: 5px;
    }

    .p-mv__information--walk::before {
        background: url(../img/walk_attention_left_sp.webp) no-repeat center center/contain;
    }

    .p-mv__information--walk::after {
        background: url(../img/walk_attention_right_sp.webp) no-repeat center center/contain;
    }

    .p-mv__information--walk span {
        font-size: 26px;
    }

    .p-mv__information--shop {
        font-size: 18px;
    }

    .p-mv__information--shop span {
        font-size: 21px;
    }

    .p-mv__information--map {
        width: 95px;
        margin-left: 12px;
    }
}

/*===========================================================================*/
/*  present  */
/*===========================================================================*/
.p-present {
    padding-bottom: 100px;
}

.p-present__title {
    font-size: 28px;
    line-height: 1.28;
    text-align: center;
    font-weight: 700;
    position: relative;
    color: #54BE78;
    margin-bottom: 21px;
}

.p-present__subtitle {
    position: relative;
    font-size: 37px;
    line-height: 1.28;
    text-align: center;
    font-weight: 700;
    padding: 0 43px;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 24px;
    color: #3C3C3C;
}

.p-present__subtitle::before, .p-present__subtitle::after {
    position: absolute;
    content: '';
    width: 28px;
    height: 47px;
    bottom: -6px;
}

.p-present__subtitle::before {
    background: url(../img/present_label_left.webp) no-repeat center center/contain;
    left: 0;
}

.p-present__subtitle::after {
    background: url(../img/present_label_right.webp) no-repeat center center/contain;
    right: 0;
}

.p-present__title::after {
    background: url(../img/green_label_pc.webp) no-repeat center center/contain;
    width: 120px;
    height: 13px;
    position: absolute;
    bottom: -13px;
    content: '';
    left: 50%;
    transform: translateX(-50%);
}

.p-present__img {
    max-width: 1060px;
    margin: 0 auto 22px;
    padding-left: calc(100%*46/1060);
}

.p-present__caution {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    display: inline-block;
}

.p-present__caution--title {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.65;
    letter-spacing: -0.03em;
    color: #3C3C3C;
    padding-bottom: 15px;
    position: relative;
    margin-bottom: 15px;
}

.p-present__caution--title::after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 32px;
    background: #3C3C3C;
    left: 50%;
    transform: translateX(-50%);
}

.p-present__caution--items {
    text-align: left;
    margin-bottom: 48px;
}

.p-present__caution--items li {
    font-size: 12px;
    line-height: 1.65;
    letter-spacing: -0.03em;
    color: #3C3C3C;
    padding-left: 12px;
    position: relative;
    font-weight: 500;
}

.p-present__caution--items li::before {
    content: '※';
    width: 12px;
    height: 12px;
    position: absolute;
    left: 0;
}

.p-present__caution--items li:nth-of-type(3) {
    padding-left: 0;
    margin-top: 20px;
}

.p-present__caution--items li:nth-of-type(3)::before {
    content: ''
}

@media screen and (max-width: 900px) {
    .p-present {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .p-present__title {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .p-present__title::after {
        width: 86px;
        height: 10px;
        bottom: -11px;
    }

    .p-present__subtitle {
        font-size: 22px;
        padding: 0 33px;
        margin-bottom: 10px;
    }

    .p-present__subtitle::before, .p-present__subtitle::after {
        width: 21px;
        height: 34px;
        bottom: 4px
    }

    .p-present__img {
        margin-bottom: 20px;
        padding-left: 0;
        max-width: 355px;
    }

    .p-present__caution {
        display: block;
        left: 0;
        margin: 0 auto;
        transform: none;
    }

    .p-present__caution--title {
        font-size: 15px;
        padding-bottom: 12px;
        margin-bottom: 12px;
    }

    .p-present__caution--items {
        width: 100%;
        margin: 0 auto 39px;
    }

    .p-present__caution--title::after {
        height: 2px;
        width: 30px;
    }
}

/*===========================================================================*/
/*  thought  */
/*===========================================================================*/
.p-thought {
    background: #F3F1EA;
    padding-top: 160px;
    padding-bottom: 100px;
    position: relative;
    z-index: 0;
}

.p-thought__subtitle {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.28;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.p-thought__subtitle .p-thought__subtitle--left {
    margin-right: 16px;
}

.p-thought__subtitle .p-thought__subtitle--right {
    margin-left: 16px;
}

.p-thought::before {
    content: '';
    background: url(../img/thought_bg.webp) no-repeat center center/cover;
    height: 576px;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
}

.p-thought__title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.55;
    letter-spacing: 0.04em;
    text-align: center;
    color: #3c3c3c;
    margin-bottom: 35px;
}

.p-though__items {
    display: flex;
    flex-wrap: wrap;
    max-width: 1015px;
    margin: 0 auto;
    align-items: flex-start;
}

.p-though__item {
    background: #fff;
    border-radius: 10px;
    padding: 30px 35px 25px 35px;
    position: relative;
}

.p-though__item:nth-child(1) {
    width: calc(100%*460/1015);
    order: 1;
    margin-left: calc(100%*35/1015);
}

.p-though__item:nth-child(2) {
    width: calc(100%*482/1015);
    order: 0;
    margin-top: 57px;
}

.p-though__item:nth-child(3) {
    width: calc(100%*584/1015);
    order: 2;
    margin-top: -22px;
    margin-left: calc(100%*337/1015);
    border: solid 5px #f3f1ea;
}

.p-though__item:nth-child(2) .p-though__item--title {
    margin-right: calc(100%* 82 / 482);
}

.p-though__item:nth-child(3) .p-though__item--title {
    margin-right: calc(100%* 96 / 584);
}

.p-thought__img {
    position: absolute;
    top: -48px;
    right: 0;
    width: 120px;
    height: 120px;
}

.p-though__item:first-child .p-thought__img {
    right: -38px;
}

.p-though__item--inner {
    text-align: left;
}

.p-though__item--inner span {
    font-weight: 900;
}

.p-though__item--title {
    font-size: 22px;
    line-height: 1.55;
    padding-bottom: 15px;
    font-weight: 700;
}

.p-though__item--detail {
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: -0.03em;
    padding-top: 17px;
    border-top: dotted 1px #3c3c3c;
}

.p-though__item--detail span {
    display: inline;
}

.p-though__text {
    font-size: 32px;
    line-height: 1.55;
    letter-spacing: 0.04em;
    font-weight: 900;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin-top: 40px;
}

.p-though__text--content {
    padding: 0 20px;
}

@media screen and (max-width: 900px) {
    .p-thought {
        padding: 70px 0 60px;
    }

    .p-thought::before {
        background: url(../img/thought_bg_sp.webp) no-repeat center center/cover;
        height: calc(100%* 295 / 1113);
    }

    .p-thought__subtitle {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .p-thought__subtitle .p-thought__subtitle--left {
        margin-right: 10px;
    }

    .p-thought__subtitle .p-thought__subtitle--right {
        margin-left: 10px;
    }

    .p-thought__title {
        font-size: 42px;
        margin-bottom: 27px;
    }

    .p-though__items {
        width: calc(100% - 40px);
        margin-bottom: 25px;
        max-width: 335px;
    }

    .p-though__item {
        margin: 0 auto;
        padding: 20px 25px;
    }

    .p-though__item:nth-child(1) {
        width: 100%;
        order: 0;
        margin-left: 0;
    }

    .p-though__item:nth-child(2) {
        width: 100%;
        order: 1;
        margin-top: 15px;
    }

    .p-though__item:nth-child(3) {
        width: 100%;
        order: 2;
        margin-top: 15px;
        margin-left: 0;
        border: none;
    }

    .p-though__item:nth-child(2) .p-though__item--title {
        margin-right: calc(100%* 45 / 335);
    }

    .p-though__item:nth-child(3) .p-though__item--title {
        margin-right: 0;
    }

    .p-though__item--title {
        font-size: 16px;
        padding-bottom: 20px;
        line-height: 1.4;
    }

    .p-though__item--title span {
        display: inline;
    }

    .p-though__item--detail {
        line-height: 1.65;
        font-size: 14px;
        padding-top: 15px;
    }

    .p-though__item--detail span {
        display: inline;
    }

    .p-though__item:first-child .p-thought__img, .p-though__item .p-thought__img {
        right: -10px;
        top: -6px;
    }

    .p-thought__img {
        width: 74px;
        height: 74px;
    }

    .p-though__text {
        font-size: 22px;
        line-height: 1.5;
        letter-spacing: -0.03em;
    }
}

/*===========================================================================*/
/*  ideas  */
/*===========================================================================*/
.p-ideas {
    padding: 100px 0;
}

.p-ideas__subtitle {
    font-size: 28px;
    line-height: 1.28;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-weight: 500;
}

.p-ideas__subtitle--left {
    margin-right: 16px
}

.p-ideas__subtitle--right {
    margin-left: 16px
}

.p-ideas__title {
    font-size: 50px;
    line-height: 1.55;
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
    color: #3c3c3c;
}

.p-ideas__title span {
    position: relative;
    z-index: 2;
}

.p-ideas__title span::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 15px;
    background-color: #fff975;
    bottom: 4px;
    left: 0;
    z-index: -1;
}

.p-ideas__contents {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 60px;
}

.p-ideas__content {
    text-align: center;
}

.p-ideas__content:first-child {
    margin-right: 36px;
}

.p-ideas__caption {
    font-size: 32px;
    line-height: 1.55;
    text-align: center;
    font-weight: 900;
    position: relative;
    padding: 0 30px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    margin-bottom: 30px;
}

.p-ideas__caption::before, .p-ideas__caption::after {
    content: '';
    width: 20px;
    height: 36px;
    position: absolute;
    bottom: 4px;
}

.p-ideas__caption::before {
    background: url(../img/caption_decoration_left.webp) no-repeat center center/contain;
    left: 0;
}

.p-ideas__caption::after {
    background: url(../img/caption_decoration_right.webp) no-repeat center center/contain;
    right: 0;
}

.p-ideas__img {
    margin-bottom: 10px;
}

.p-ideas__content--sub {
    font-size: 21px;
    line-height: 1.55;
    position: relative;
    display: inline-block;
    padding: 0 18px;
    font-weight: 900;
}

.p-ideas__content--sub::before, .p-ideas__content--sub::after {
    content: '';
    width: 13px;
    height: 20px;
    position: absolute;
    bottom: 4px;
}

.p-ideas__content--sub::before {
    background: url(../img/caption_decoration_sm_left.webp) no-repeat center center/contain;
    left: 0;
}

.p-ideas__content--sub::after {
    background: url(../img/caption_decoration_sm_right.webp) no-repeat center center/contain;
    right: 0;
}

.p-ideas__content--main {
    font-size: 38px;
    line-height: 1.55;
    font-weight: 900;
    margin-bottom: 6px;
}

.p-ideas__content--desc {
    font-size: 17px;
    line-height: 2.55;
    letter-spacing: -0.05em;
    font-weight: 500;
}

.p-ideas__content--desc span {
    background-color: #fff;
    background-image: linear-gradient(270deg, #fff 0%, #fff 50%, transparent 50%, transparent 100%),
        linear-gradient(360deg, #3c3c3c 1px, transparent 1px);
    background-size: 8px 100%,
        100% 2.5em;
    line-height: 2.5em;
    padding-bottom: 1px;
}

.p-ideas__example--head {
    font-size: 40px;
    line-height: 1.75;
    letter-spacing: -0.03em;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.p-ideas__example--head--left {
    margin-right: 18px;
}

.p-ideas__example--head--right {
    margin-left: 18px;
}

.p-ideas__example--wrapper {
    width: 100%;
    overflow: hidden;
    height: 292px;
    display: flex;
    align-items: center;
    margin-bottom: 49px;
}

.p-ideas__example--items {
    display: flex;
    align-items: center;
}

.p-ideas__example--items:first-child {
    animation: contentSlide1 80s -40s linear infinite;
    ;
}

.p-ideas__example--items:last-child {
    animation: contentSlide2 80s linear infinite;
}

@keyframes contentSlide1 {
    0% {
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes contentSlide2 {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-200%);
        -ms-transform: translateX(-200%);
        transform: translateX(-200%);
    }
}

.p-ideas__example--items li {
    width: 426px;
    margin-right: 30px;
}

.p-ideas__example--closing {
    text-align: center;
    margin-bottom: 68px;
}

.p-ideas__example--closing--inner {
    border: 2px solid #3c3c3c;
    display: inline-block;
    border-radius: 16px;
    padding: 15px;
}

.p-ideas__example--closing--text {
    background-color: #FFF5EA;
    padding: 30px 188px 30px 30px;
    border-radius: 10px;
    font-size: 28px;
    line-height: 1.57;
    color: #3c3c3c;
    font-weight: 900;
    position: relative;
    text-align: left;
}

.p-ideas__example--closing--text::after {
    content: '';
    position: absolute;
    right: 31px;
    background: url(../img/idea_illust_pc.webp) no-repeat center center/contain;
    width: 127px;
    height: 206px;
    bottom: 0;
}


@media screen and (max-width: 900px) {
    .p-ideas {
        padding: 60px 0;
    }

    .p-ideas__subtitle {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .p-ideas__subtitle--right {
        margin-left: 10px;
    }

    .p-ideas__subtitle--left {
        margin-right: 10px;
    }

    .p-ideas__title {
        font-size: 32px;
        line-height: 1.4;
    }

    .p-ideas__caption {
        font-size: 22px;
        margin-bottom: 12px;
        padding: 0 24px;
    }

    .p-ideas__caption::before, .p-ideas__caption::after {
        width: 14px;
        height: 25px;
        bottom: 2px;
    }

    .p-ideas__contents {
        flex-direction: column;
        margin: 0 auto 40px;
        align-items: center;
    }

    .p-ideas__content:first-child {
        margin-right: 0;
        margin-bottom: 31px;
    }

    .p-ideas__img {
        margin-bottom: 5px;
    }

    .p-ideas__content--sub {
        font-size: 18px;
        padding: 0 19px;
    }

    .p-ideas__content--sub::before, .p-ideas__content--sub::after {
        width: 12px;
        height: 18px;
    }

    .p-ideas__content--main {
        font-size: 30px;
        margin-bottom: 0;
    }

    .p-ideas__content--desc {
        font-size: 15px;
        line-height: 2.3;
    }

    .p-ideas__example--head {
        font-size: 22px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .p-ideas__example--head--left {
        margin-right: 9px;
    }

    .p-ideas__example--head--right {
        margin-left: 9px;
    }

    .p-ideas__example--wrapper {
        height: 195px;
    }

    .p-ideas__example--items li {
        width: 284px;
        margin-right: 14px;
    }

    .p-ideas__example--closing {
        margin-bottom: 34px;
        border-radius: 12px;
    }

    .p-ideas__example--closing--inner {
        padding: 10px;
        border-radius: 8px;
    }

    .p-ideas__example--closing--text {
        font-size: 18px;
        padding: 20px 10px 20px 4px;
        text-align: center;
    }

    .p-ideas__example--closing--text::after {
        background: url(../img/idea_illust_sp.webp) no-repeat center center / contain;
        width: 58px;
        height: 68px;
        right: 50%;
        transform: translateX(50%);
        top: -56px;
    }
}

/*===========================================================================*/
/*  question  */
/*===========================================================================*/
.p-question {
    padding: 100px 0;
    background: #edebed;
    position: relative;
    z-index: 0;
}

.p-question::after {
    content: '';
    background: url(../img/question_bg_pc.webp) no-repeat center center / cover;
    height: 794px;
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: -1;
}

.p-question__subtitle {
    font-size: 28px;
    line-height: 1.28;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #9D70CB;
    font-weight: 500;
}

.p-question__subtitle--left {
    margin-right: 16px
}

.p-question__subtitle--right {
    margin-left: 16px
}

.p-question__title {
    font-size: 50px;
    line-height: 1.55;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
}

.p-question__title span {
    position: relative;
    z-index: 2;
    color: #9D70CB;
}

.p-question__title span::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 15px;
    background-color: #fff975;
    bottom: 4px;
    left: 0;
    z-index: -1;
}

.p-question__img {
    text-align: center;
    margin-bottom: -48px;
}

.p-question__img img {
    width: 820px;
    height: 334px;
}

.p-question__content--wrapper {
    text-align: center;
    padding: 0 20px;
}

.p-question__content--inner {
    padding: 60px 106px 80px 103px;
    text-align: center;
    background: #fff;
    display: inline-block;
    border-radius: 20px;
    margin: 0 auto;
}

.p-question__content--sub {
    font-size: 20px;
    line-height: 1.57;
    color: #3c3c3c;
    font-weight: 700;
    margin-bottom: 7px;
}

.p-question__content--main {
    font-size: 36px;
    line-height: 1.56;
    font-weight: 700;
    margin-bottom: 26px;
}

.p-question__content--main span {
    position: relative;
    z-index: 2;
}

.p-question__content--main span::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 13px;
    background-color: #fff975;
    bottom: 4px;
    left: 0;
    z-index: -1;
}

.p-question__content--balloon {
    margin-bottom: 20px;
}

.p-question__content--balloon img {
    width: 416px;
}

.p-question__content--consultation {
    font-size: 30px;
    line-height: 1.56;
    color: #3c3c3c;
    margin-bottom: 44px;
    font-weight: 700;
}

@media screen and (max-width: 900px) {
    .p-question {
        padding: 60px 0;
    }

    .p-question__subtitle {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .p-question__subtitle--left {
        margin-right: 10px
    }

    .p-question__subtitle--right {
        margin-left: 10px
    }

    .p-question__content--main {
        margin-bottom: 15px;
    }

    .p-question__title {
        font-size: 32px;
        line-height: 1.4;
        margin-bottom: 6px;
    }

    .p-question__img {
        text-align: center;
        margin: 0 -20px;
    }

    .p-question__img img {
        width: 375px;
        height: 171px;
    }

    .p-question__content--wrapper {
        padding: 0;
    }

    .p-question__content--inner {
        padding: 20px 21px 20px 20px;
    }

    .p-question__content--sub {
        font-size: 16px;
    }

    .p-question__content--main {
        font-size: 24px;
        line-height: 1.5;
    }

    .p-question__content--main span {
        display: inline;
    }

    .p-question__content--main span::after {
        height: 8px;
    }

    .p-question__content--balloon {
        margin-bottom: 10px;
    }

    .p-question__content--balloon img {
        width: 244px;
        height: 84px;
    }

    .p-question__content--consultation {
        font-size: 20px;
        margin-bottom: 34px;
    }
}


/*===========================================================================*/
/*  flow  */
/*===========================================================================*/
.p-flow {
    padding: 100px 0;
    background: #F3F1EA;
}

.p-flow__subtitle {
    font-size: 28px;
    line-height: 1.28;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-weight: 500;
}

.p-flow__subtitle--left {
    margin-right: 16px
}

.p-flow__subtitle--right {
    margin-left: 16px
}

.p-flow__title {
    font-size: 50px;
    line-height: 1.55;
    color: #3c3c3c;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.p-flow__title span {
    position: relative;
    z-index: 2;
}

.p-flow__title span::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 15px;
    background-color: #fff975;
    bottom: 4px;
    left: 0;
    z-index: -1;
}

.p-flow__items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
    padding: 0 20px;
}

.p-flow__item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: solid 2px #3c3c3c;
    padding: 10px;
    border-radius: 20px;
    position: relative;
    margin-bottom: 28px;
    max-width: 929px;
    background: #fff;
    width: 100%;
}

.p-flow__item:last-child {
    margin-bottom: 0;
}

.p-flow__item::before, .p-flow__item::after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.p-flow__item::before {
    border-color: rgba(60, 60, 60, 0);
    border-top-color: #3c3c3c;
    border-width: 18px;
    margin-left: -18px;
}

.p-flow__item::after {
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #fff;
    border-width: 15px;
    margin-left: -15px;
}

.p-flow__item:last-child::before, .p-flow__item:last-child::after {
    content: none;
}

.p-flow__img img {
    width: 171px;
    height: 155px;
}

.p-flow__box {
    padding: 0 30px 0 39px;
}

.p-flow__item:nth-of-type(3) .p-flow__box {
    padding: 0 30px 0 39px;
}

.p-flow__description {
    font-size: 18px;
    line-height: 1.85;
    color: #3c3c3c;
    font-weight: 700;
    margin-bottom: 6px;
}

.p-flow__description__main a {
    text-decoration: underline;
}

.p-flow__description__main a:hover {
    opacity: 0.8;
}

.p-flow__caution {
    font-size: 16px;
    line-height: 1.85;
    color: #3c3c3c;
    font-weight: 500;
}

.p-flow__link {
    position: relative;
    font-size: 18px;
    line-height: 1.85;
    color: #3c3c3c;
    font-weight: 700;
    padding-left: 11px;
    margin-bottom: 5px;
    z-index: 1;
}

.p-flow__link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../img/arrow_right.webp) no-repeat center center / contain;
    width: 8px;
    height: 8px;
}

.p-flow__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    background: url(../img/reserve_underline_pc.webp) no-repeat center center / cover;
    width: 116px;
    height: 7px;
    z-index: -1;
}

.p-flow__link:hover {
    opacity: 0.8;
}

@media screen and (max-width: 900px) {
    .p-flow {
        padding: 60px 0;
    }

    .p-flow__subtitle {
        margin-bottom: 12px;
        font-size: 18px;
    }

    .p-flow__subtitle--left {
        margin-right: 10px
    }

    .p-flow__subtitle--right {
        margin-left: 10px
    }

    .p-flow__title {
        font-size: 32px;
        line-height: 1.4;
        margin-bottom: 25px;
    }

    .p-flow__title span::after {
        height: 10px;
    }

    .p-flow__items {
        padding: 0;
    }

    .p-flow__item {
        width: 100%;
        flex-direction: column;
        border-width: 1px;
        padding: 12px;
    }

    .p-flow__item::before {
        border-width: 11px;
        margin-left: -11px;
    }

    .p-flow__item::after {
        border-width: 10px;
        margin-left: -10px;
    }

    .p-flow__item:last-child .p-flow__img {
        background-color: #FFE9CF;
    }

    .p-flow__img {
        width: 100%;
        background-color: #DFF0E4;
        border-radius: 10px;
    }

    .p-flow__img img {
        width: 100%;
        height: 52px;
    }

    .p-flow__box {
        padding: 14px 13px 10px;
    }

    .p-flow__item:nth-of-type(3) .p-flow__box {
        padding: 12px 13px 10px;
    }

    .p-flow__box span {
        display: inline;
    }

    .p-flow__description {
        font-size: 16px;
        line-height: 1.55;
        margin-bottom: 6px;
    }

    .p-flow__caution {
        font-size: 14px;
        line-height: 1.55em;
    }

    .p-flow__link {
        font-size: 16px;
    }

    .p-flow__link::after {
        width: 104px;
        height: 5px;
    }
}

/*===========================================================================*/
/*  uservoice  */
/*===========================================================================*/
.p-uservoice {
    padding: 100px 0;
}


.p-uservoice__subtitle {
    font-size: 28px;
    line-height: 1.28;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-weight: 500;
}

.p-uservoice__subtitle--left {
    margin-right: 16px
}

.p-uservoice__subtitle--right {
    margin-left: 16px
}

.p-uservoice__title {
    font-size: 50px;
    line-height: 1.55;
    color: #3c3c3c;
    font-weight: 700;
    text-align: center;
    margin-bottom: 74px;
}

.p-uservoice__title span {
    position: relative;
    z-index: 2;
}

.p-uservoice__title span::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 15px;
    background-color: #fff975;
    bottom: 4px;
    left: 0;
    z-index: -1;
}

.p-uservoice__items {
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 45px;
}

.p-uservoice__item {
    margin-right: 36px;
    border: solid 2px #3c3c3c;
    background-color: #F3F1EA;
    padding: 12px;
    position: relative;
}

.p-uservoice__img {
    content: '';
    width: 120px;
    height: 120px;
    position: absolute;
    top: -59px;
    left: 50%;
    transform: translateX(-50%);
}

.p-uservoice__item::before {
    content: '';
    width: 93px;
    height: 83px;
    position: absolute;
    top: -15px;
    left: -14px;
    background: url(../img/uservoice_tape_left.webp) no-repeat center center / contain;
}

.p-uservoice__item::after {
    content: '';
    width: 78px;
    height: 86px;
    position: absolute;
    bottom: -7px;
    right: -7px;
    background: url(../img/uservoice_tape_right.webp) no-repeat center center / contain;
}

.p-uservoice__age {
    content: '';
    font-size: 20px;
    line-height: 1.55;
    letter-spacing: 0.09em;
    position: absolute;
    background-color: #F7A84B;
    top: 44px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 36px;
    color: #fff;
    z-index: 2;
    padding: 0 19px 2px 20px;
}

.p-uservoice__text {
    font-size: 20px;
    color: #3c3c3c;
    line-height: 2.55;
    letter-spacing: -0.03em;
    padding: 79px 36px 35px 35px;
    background-color: #fff;
    max-width: 488px;
    height: calc(100% - 12px);
}

.p-uservoice__text span {
    background-color: #fff;
    background-image: linear-gradient(270deg, #fff 0%, #fff 50%, transparent 50%, transparent 100%),
        linear-gradient(360deg, #3c3c3c 1px, transparent 1px);
    background-size: 8px 100%,
        100% 2.5em;
    line-height: 2.5em;
    padding-bottom: 1px;
    font-weight: 700;
}

.p-uservoice__text span span {
    display: inline;
    font-weight: 900;
}

.p-uservoice__item:last-child {
    margin-right: 0;
}

.p-uservoice__box {
    text-align: center;
}

.p-uservoice__description {
    font-size: 39px;
    line-height: 1.35;
    letter-spacing: 0.04em;
    font-weight: 900;
    text-align: center;
    padding: 0 172px 0 186px;
    position: relative;
    display: inline-block;
}

.p-uservoice__description::before, .p-uservoice__description::after {
    content: '';
    position: absolute;

}

.p-uservoice__description::before {
    background: url(../img/uservoice_decoration_left.webp) no-repeat center center / contain;
    left: 0;
    width: 140px;
    height: 133px;
    bottom: 27px;
}

.p-uservoice__description::after {
    background: url(../img/uservoice_decoration_right.webp) no-repeat center center / contain;
    right: 0;
    width: 134px;
    height: 129px;
    bottom: 20px;
}

@media screen and (max-width: 900px) {
    .p-uservoice {
        padding: 60px 0 40px;
    }

    .p-uservoice__subtitle {
        margin-bottom: 12px;
        font-size: 18px;
    }

    .p-uservoice__subtitle--left {
        margin-right: 10px
    }

    .p-uservoice__subtitle--right {
        margin-left: 10px
    }

    .p-uservoice__title {
        font-size: 32px;
        line-height: 1.4;
        margin-bottom: 54px;
    }

    .p-uservoice__title span::after {
        height: 10px;
    }

    .p-uservoice__items {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .p-uservoice__item {
        margin-right: 0;
        border-width: 1px;
        padding: 8px;
        margin-bottom: 49px;
    }

    .p-uservoice__item:last-child {
        margin-bottom: 0;
    }

    .p-uservoice__text {
        font-size: 16px;
        line-height: 2.14;
        padding: 49px 12px 20px;
        height: auto;
        height: calc(100% - 8px);
    }

    .p-uservoice__text span {
        background-color: #fff;
        background-image: linear-gradient(270deg, #fff 0%, #fff 50%, transparent 50%, transparent 100%), linear-gradient(360deg, #3c3c3c 1px, transparent 1px);
        background-size: 4px 100%, 100% 2.14em;
        line-height: 2.14em;
        padding-bottom: 1px;
    }

    .p-uservoice__img {
        width: 67px;
        height: 67px;
        top: -34px;
    }

    .p-uservoice__item::before {
        content: '';
        width: 59px;
        height: 53px;
        position: absolute;
        top: -4px;
        left: -11px;
        background: url(../img/uservoice_tape_left_sp.webp) no-repeat center center / contain;
    }

    .p-uservoice__item::after {
        content: '';
        width: 50px;
        height: 56px;
        position: absolute;
        bottom: -6px;
        right: -5px;
        background: url(../img/uservoice_tape_right_sp.webp) no-repeat center center / contain;
    }

    .p-uservoice__age {
        font-size: 14px;
        line-height: 1.55;
        letter-spacing: 0.09em;
        padding: 0 9px;
        TOP: 23px;
    }

    .p-uservoice__description {
        font-size: 22px;
        line-height: 1.55;
        padding: 0 26px 0 25px;
    }

    .p-uservoice__description::before {
        width: 45px;
        height: 130px;
        left: 0;
        top: -7px;
        background: url(../img/uservoice_decoration_left_sp.webp) no-repeat center center / contain;
    }

    .p-uservoice__description::after {
        width: 46px;
        height: 131px;
        right: 0;
        top: -7px;
        background: url(../img/uservoice_decoration_right_sp.webp) no-repeat center center / contain;
    }
}

/*===========================================================================*/
/*  access  */
/*===========================================================================*/
.p-access {
    padding: 125px 20px 90px 20px;
    background: url(../img/bg_access.webp) no-repeat center center/cover;
    text-align: center;
}

.p-access__map img {
    width: 246px;
    height: 243px;
}

.p-access__information {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 41px;
}

.p-access__wrapper {
    padding: 84px 113px 60px 113px;
    background-color: #fff;
    opacity: 0.95;
    border-radius: 20px;
    position: relative;
    display: inline-block;
    max-width: 929px;
    width: 100%;
}

.p-access__wrapper::before {
    content: 'モデルハウスへのアクセス';
    position: absolute;
    top: -35px;
    background: #3c3c3c;
    color: #fff;
    font-size: 37px;
    line-height: 1.55;
    font-weight: 700;
    padding: 13px 73px 16px 74px;
    border-radius: 78px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.p-access__shop {
    font-size: 38px;
    line-height: 1.28;
    font-weight: 700;
    text-align: left;
}

.p-access__shop span {
    font-size: 44px;
    line-height: 1.28;
    font-weight: 700;
    margin-right: 13px;
}

.p-access__detail {
    display: grid;
    width: calc(100%* 417 / 693);
}

.p-access__map {
    margin-left: calc(100%* 30 / 693);
    width: calc(100%* 246 / 693);
}

.p-access__information--detail {
    display: grid;
    grid-template-columns: calc(100%* 112 / 417) calc(100%* 305 / 417);
    text-align: left;
    background-color: #fff;
}

.p-access__information--detail a {
    text-decoration: underline;
    color: #0167af;
}

.p-access__detail dd, .p-access__detail dt {
    font-size: 18px;
    line-height: 1.28;
    color: #3c3c3c;
    background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%),
        linear-gradient(180deg, #3c3c3c 1px, transparent 1px);
    background-size: 8px 100%,
        100% 3.4em;
    line-height: 3.4em;
    font-weight: 500;
}

.p-access__information--detail:first-child dd, .p-access__information--detail:first-child dt {
    background-image: none;
}

.p-access__information--detail:last-child dd, .p-access__information--detail:last-child dt {
    padding-bottom: 1px;
}

.p-access__detail dd {
    margin: 0;
}

.p-access__welcome {
    width: 100%;
    border: 3px solid #F7A84B;
    border-radius: 10px;
    background: #fff5ea;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 25px 0 25px 0;
}

.p-access__welcome--sub {
    font-size: 25px;
    line-height: 1.55;
    font-weight: 700;
    color: #3c3c3c;
    padding: 0 18px 0 23px;
    position: relative;
    display: inline-block;
}

.p-access__welcome--sub::before, .p-access__welcome--sub::after {
    position: absolute;
    content: '';
    bottom: 4px;
    width: 15px;
    height: 29px;
}

.p-access__welcome--sub::before {
    left: 0;
    background: url(../img/access_left.webp) no-repeat center center/contain;
}

.p-access__welcome--sub::after {
    right: 0;
    background: url(../img/access_right.webp) no-repeat center center/contain;
}

.p-access__welcome--main {
    font-size: 37px;
    line-height: 1.55;
    font-weight: 700;
    color: #F7A84B;
    display: inline-block;
    padding: 0 44px 0 74px;
    position: relative;
}

.p-access__welcome--main::before, .p-access__welcome--main::after {
    position: absolute;
    content: '';
    bottom: 4px;
}

.p-access__welcome--main::before {
    left: 0;
    background: url(../img/accees_decoration_left.webp) no-repeat center center/contain;
    width: 85px;
    height: 85px;
}

.p-access__welcome--main::after {
    right: 0;
    background: url(../img/accees_decoration_right.webp) no-repeat center center/contain;
    width: 62px;
    height: 92px;
}

@media screen and (max-width: 900px) {
    .p-access {
        padding: 87px 0 60px;
        background: url(../img/bg_access_sp.webp) no-repeat center center/cover;
    }

    .p-access__wrapper {
        padding: 42px 25px 25px;
        width: calc(100% - 40px);
        max-width: 335px;
    }

    .p-access__wrapper::before {
        font-size: 22px;
        line-height: 1.2;
        padding: 12px 15px;
        top: -25px;
    }

    .p-access__map {
        width: 100%;
    }

    .p-access__map img {
        width: 262px;
        height: 260px;
    }

    .p-access__information {
        margin-bottom: 26px;
        flex-direction: column;
        align-items: center;
    }

    .p-access__detail {
        width: 100%;
    }

    .p-access__shop {
        font-size: 22px;
        text-align: center;
    }

    .p-access__shop span {
        font-size: 26px;
    }

    .p-access__information--detail {
        grid-template-columns: 1fr;
        padding: 15px 0;
        background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%),
            linear-gradient(180deg, #3c3c3c 1px, transparent 1px);
        background-size: 8px 100%,
            100% 72px;
        height: 72px;
    }

    .p-access__information--detail:first-child {
        background-image: none;
    }

    .p-access__information--detail:last-child {
        height: 73px;
    }

    .p-access__detail dl {
        margin-bottom: 25px;
    }

    .p-access__detail dt, .p-access__detail dd {
        background-image: none;
        line-height: 1.28;
        font-size: 15px;
    }

    .p-access__detail dt {
        margin-bottom: 4px;
    }

    .p-access__map {
        margin-left: 0;
    }

    .p-access__welcome {
        padding: 23px 14px 22px 13px;
    }

    .p-access__welcome--sub {
        font-size: 18px;
        padding: 0 17px;
        margin-bottom: 3px;
    }

    .p-access__welcome--sub::before, .p-access__welcome--sub::after {
        width: 11px;
        height: 17px;
    }

    .p-access__welcome--sub::after {
        background: url(../img/access_right_sp.webp) no-repeat center center / contain;
    }

    .p-access__welcome--sub::before {
        background: url(../img/access_left_sp.webp) no-repeat center center / contain;
    }

    .p-access__welcome--main {
        font-size: 26px;
        line-height: 1.3;
        padding: 0 21px 0 23px;
    }

    .p-access__welcome--main::before {
        background: url(../img/accees_decoration_left_sp.webp) no-repeat center center / contain;
        width: 35px;
        height: 71px;
        bottom: -4px;
    }

    .p-access__welcome--main::after {
        background: url(../img/accees_decoration_right_sp.webp) no-repeat center center / contain;
        width: 44px;
        height: 69px;
        bottom: -2px;
    }
}

/*===========================================================================*/
/*  form  */
/*===========================================================================*/
.p-form {
    padding: 126px 0 120px;
    background-color: #F3F1EA;
}

.p-form__title {
    display: flex;
    align-items: center;
    font-size: 40px;
    line-height: 1.55;
    color: #3c3c3c;
    font-weight: 700;
    justify-content: center;
    margin-bottom: 42px;
}

.p-form__title--left {
    margin-right: 20px;
}

.p-form__title--right {
    margin-left: 20px;
}

.p--form__wrapper {
    width: 696px;
    margin: 0 auto;
}

.p-form__item {
    display: grid;
    grid-template-columns: 242px 454px;
    margin-bottom: 20px;
    align-items: baseline;
}

.p-form__item dt {
    font-size: 16px;
    line-height: 1.45;
    letter-spacing: 0.02em;
    color: #191919;
    font-weight: 500;
}

.p-form__item dt span {
    color: #F21D00;
    margin-left: 5px;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.p-form__item input, .p-form__item .p-form__item--select {
    padding: 0 25px;
    background: #fff;
    border: 1px solid #EBEBEB;
    border-radius: 8px;
    width: 100%;
    line-height: 55px;
}

.p-form__item input::placeholder, .p-form__item textarea::placeholder {
    color: #aaa;
    line-height: 1.45;
    font-size: 15px;
    letter-spacing: 0.02em;
    font-weight: 500;
}

.p-form__item textarea {
    width: 100%;
    border: 1px solid #EBEBEB;
    border-radius: 8px;
    background: #fff;
    padding: 15px 25px 18px 25px;
}

.p-form__item__address {
    margin-bottom: 10px;
}

.p-form__item__address:last-child {
    margin-bottom: 6px;
}

.p-form__item__address:first-of-type {
    width: 173px;
}

.p-form__item--caution {
    font-size: 12px;
    line-height: 1.45;
    letter-spacing: 0.02em;
    font-weight: 500;
}

.p-form__item--time {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 4px;
}

.p-form__item--time--day {
    margin-right: 11px;
    width: calc(50% - 5.5px);
}

.p-form__item--selectWrapper {
    width: calc(50% - 5.5px);
    position: relative;
}

.p-form__item--selectWrapper::before {
    background: url('../img/select-arrow.svg') no-repeat center center/contain;
    content: '';
    height: 8px;
    right: 19px;
    position: absolute;
    top: 50%;
    width: 10px;
    transform: translate(0, -50%);
    pointer-events: none;
}

.p-form__item--submit {
    text-align: center;
    margin-top: 55px;
}

.p-form__item--submit button {
    font-size: 17px;
    line-height: 1.45;
    letter-spacing: 0.06em;
    color: #fff;
    background: #0167af;
    border-radius: 8px;
    padding: 17px 120px;
    transition: opacity .4s;
    font-weight: 700;
}

.p-form__item--submit button:hover {
    opacity: 0.8;
}

@media screen and (max-width: 900px) {
    .p-form {
        padding: 60px 0;
    }

    .p-form__title {
        margin-bottom: 30px;
        font-size: 30px;
        line-height: 1.4;
    }

    .p-form__title--left {
        margin-right: 12px;
    }

    .p-form__title--right {
        margin-left: 12px;
    }

    .p--form__wrapper {
        width: calc(100% - 40px);
    }

    .p-form__item {
        grid-template-columns: 1fr;
        margin-bottom: 15px;
    }

    .p-form__item dt {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .p-form__item dt span {
        margin-left: 8px;
    }

    .p-form__item input, .p-form__item .p-form__item--select {
        padding: 0 20px;
        line-height: 52px;
        height: 52px;
    }

    .p-form__item input[type="date"], .p-form__item .p-form__item--select {
        width: 164px;
    }

    .p-form__item input::placeholder, .p-form__item textarea::placeholder {
        font-size: 13px;
    }

    .p-form__item__address {
        margin-bottom: 6px;
    }

    .p-form__item__address:first-of-type {
        width: 198px;
    }

    .p-form__item--caution {
        font-size: 10px;
    }

    .p-form__item--submit {
        margin-top: 30px;
    }

    .p-form__item--submit button {
        padding: 14px 110px 16px;
    }
}

/*===========================================================================*/
/*  footer  */
/*===========================================================================*/
.footer {
    background: #fff;
    text-align: center;
    padding: 40px 0 71px;
}

.footer__logo {
    width: 254px;
    margin: 0 auto 20px;
}

.footer__copyright {
    font-size: 16px;
    line-height: 1.28;
    color: #3c3c3c;
    font-weight: 500;
}

@media screen and (max-width: 900px) {
    .footer {
        padding: 30px 0 102px;
    }

    .footer__logo {
        width: 218px;
        height: 36px;
        margin-bottom: 10px;
    }

    .footer__copyright {
        font-size: 12px;
    }

    .footer_thanks {
        padding-bottom: 30px;
    }
}

/*===========================================================================*/
/*  thanks  */
/*===========================================================================*/
.p-thanks {
    text-align: center;
    padding: 100px 0;
    background-color: #F3F1EA;
}

.p-thanks__subtitle {
    font-size: 28px;
    line-height: 1.28;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.p-thanks__subtitle--left {
    margin-right: 16px
}

.p-thanks__subtitle--right {
    margin-left: 16px
}

.p-thanks__title {
    font-size: 42px;
    line-height: 1.55;
    color: #3c3c3c;
    font-weight: 700;
    margin-bottom: 25px;
}

.p-thanks__description {
    font-size: 18px;
    line-height: 1.85;
    color: #3c3c3c;
    font-weight: 700;
    margin-bottom: 40px;
}

.p-thanks--link {
    text-align: center;
}

.p-thanks--link a {
    width: 312px;
    height: 60px;
    background-color: #0167AF;
    color: #fff;
    border-radius: 8px;
    line-height: 1.45;
    font-size: 17px;
    font-weight: 700;
    line-height: 60px;
    transition: opacity .4s;
}

.p-thanks--link a:hover {
    opacity: 0.8;
}

@media screen and (max-width: 900px) {
    .p-thanks {
        padding: 143px 0;
    }

    .p-thanks__subtitle {
        margin-bottom: 12px;
        font-size: 18px;
    }

    .p-thanks__subtitle--left {
        margin-right: 10px
    }

    .p-thanks__subtitle--right {
        margin-left: 10px
    }

    .p-thanks__title {
        font-size: 29px;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .p-thanks__description {
        font-size: 16px;
        margin-bottom: 25px;
        text-align: left;
    }

    .p-thanks--link a {
        width: 283px;
        height: 52px;
        border-radius: 8px;
        font-size: 15px;
        line-height: 52px;
    }
}