/*==================================================
page about 
===================================*/
.p_about .pankuz {
    margin-top: 0;
    padding-top: 2.8rem;
    background-color: #FDFCF4;
}

.p_about_message {
    padding-top: 6rem;
    background-color: #FDFCF4;
    position: relative;
}

@media screen and (max-width: 767px) {
    .p_about_message {
        padding-top: 4rem;
    }
}

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

.p_about_message::before {
    content: '';
    display: block;
    background-color: #FFECC6;
    width: 92%;
    height: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

@media screen and (max-width: 767px) {
    .p_about_message::before {
        width: 100%;
        height: 63%;
    }
}

.p_about_message::after {
    content: '';
    display: block;
    background-color: #fff;
    width: 100%;
    height: 20%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.p_about_message__inner {
    display: flex;
    align-items: center;
    margin-bottom: 7rem;
}

@media screen and (max-width: 767px) {
    .p_about_message__inner {
        flex-direction: column;
    }
}

.p_about_message__block {
    width: 50%;
}

@media screen and (max-width: 767px) {
    .p_about_message__block {
        width: 100%;
        margin-bottom: 2rem;
    }
}


.p_about_message__img {
    width: calc(50% - 8rem);
    border-radius: 3rem;
    margin-left: 8rem;
    position: relative;
}

@media screen and (max-width: 767px) {
    .p_about_message__img {
        width: 100%;
        margin-left: 0;
    }
}

.p_about_message__img::after {
    content: '';
    display: block;
    background-image: url(../img/p_about_cat.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 16rem;
    height: 10rem;
    position: absolute;
    bottom: -1rem;
    right: -14rem;
}

@media screen and (max-width: 767px) {
    .p_about_message__img::after {
        right: -10rem;
    }
}

.p_about_message__img img {
    border-radius: 3rem;
}

.p_about_message__name {
    font-size: 2rem;
    font-weight: 500;
    margin-top: 5rem;
}

@media screen and (max-width: 767px) {
    .p_about_message__name {
        margin-top: 2rem;
    }
}

.p_about_message__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 4rem;
    justify-items: stretch;
    padding-bottom: 3.5rem;
}

.item_01 {
    grid-row: 1;
    grid-column: 1/3;
}

.item_02 {
    grid-row: 2;
    grid-column: 1/2;
}

.item_03 {
    grid-row: 2;
    grid-column: 2/3;
}

.item_04 {
    grid-row: 3;
    grid-column: 1/3;
}

@media screen and (max-width: 767px) {
    .item_02 {
        grid-column: 1/3;
    }

    .item_03 {
        grid-row: 3;
        grid-column: 1/3;
    }

    .item_04 {
        grid-row: 4;
    }
}

.p_about_message__item {
    background-color: #fff;
    font-family: "Noto Sans JP", sans-serif;
}

.p_about_message__item:first-of-type {
    display: flex;
}

@media screen and (max-width: 767px) {
    .p_about_message__item:first-of-type {
        flex-direction: column;
    }
}

.p_about_message__item_image {
    width: calc(50% - 6.5rem);
}

@media screen and (max-width: 767px) {
    .p_about_message__item_image {
        width: 100%;
        height: 24rem;
    }

    .p_about_message__item_image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.p_about_message__item_inner {
    width: calc(50% + 6.5rem);
    padding: 4rem 3.5rem;
}

@media screen and (max-width: 767px) {
    .p_about_message__item_inner {
        width: 100%;
        padding: 2rem 2.5rem;
    }
}

.item_02 .p_about_message__item_inner,
.item_03 .p_about_message__item_inner {
    width: 100%;
}

.p_about_message__item:nth-of-type(4) .p_about_message__item_inner {
    width: 100%;
}

.p_about_message__item_title {
    font-family: "Zen Maru Gothic", serif;
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 0.18rem;
    position: relative;
    padding-left: 1.4rem;
    padding-bottom: 1rem;
    border-bottom: solid 1px #707070;
    margin-bottom: 2rem;
}

@media screen and (max-width: 767px) {
    .p_about_message__item_title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
}

.p_about_message__item_title::before {
    content: '';
    display: block;
    background-color: #FFB61E;
    width: 4px;
    height: 50%;
    position: absolute;
    top: calc(50% - 0.5rem);
    left: 0;
    transform: translate(-50%, -50%);
}

.p_about_message__item_list li {
    position: relative;
    color: #222222;
    padding-left: 1rem;
    line-height: 3.4rem;
}

.p_about_message__item_list li::before {
    content: '';
    display: block;
    background-color: #222222;
    width: 4px;
    height: 4px;
    border-radius: 1rem;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.p_about_message__item_text {
    color: #222222;
    line-height: 3.4rem;
}

/*----- For Guest -----*/
.guest {
    padding: 7rem 0 6rem;
}

@media screen and (max-width: 767px) {
    .guest {
        padding: 4rem 0;
    }
}

/*==================================================
about END
===================================*/