@charset "utf-8";

/* -----------------------------------------
main
-------------------------------------------- */

.article__header {
    width: 100%;
    height: 557px;
    position: relative;
}

.slider__wrapper {
    display: flex;
    justify-content: center;
}

.slide {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 492px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.6s ease-in-out;
    transform: translateX(-50%);
    z-index: 2;
    padding: 0 4.2%;
}

.fv__txt {
    writing-mode: vertical-rl;
    position: relative;
    display: flex;
    width: 100%;
    height: 679px;
    justify-content: left;
    align-items: center;
    text-shadow: 2px 2px 8px rgba(243, 239, 234, 0.3);
}

.delay01 {
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 7.84px;
    position: absolute;
    top: 25%;
    left: 16%;
    z-index: 3;
    color: var(--primary-darkbrown);
    font-family: "Shippori Mincho";
    text-align: right;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.0s ease-out forwards;
    animation-delay: 0.2s;
}

.delay02 {
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 7.84px;
    position: absolute;
    top: 50%;
    left: 6%;
    z-index: 3;
    color: var(--primary-darkbrown);
    text-align: right;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.8s ease-out forwards;
    animation-delay: 0.8s;
}


.sashie {
    content: "";
    display: flex;
    width: 56px;
    height: 52px;
    position: absolute;
    top: 91%;
    right: 1%;
    align-items: flex-end;
}

.person {
    width: 22px;
    height: 52px;
}

.dog {
    width: 34px;
    height: 23px;
}

/* アニメーション定義 */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* タブレットサイズ：幅100%で最大768pxまで広がる */
@media screen and (min-width: 376px) and (max-width: 768px) {
    .slide {
        width: 100%;
        height: 492px;
        object-fit: cover;
        padding: 0 8.5%;
    }
}

/* fv pc */
@media screen and (min-width:769px) {
    .article__header {
        width: 100%;
        height: 535px;
        position: relative;
        text-align: center;
    }

    .fv__txt {
        writing-mode: vertical-rl;
        position: relative;
        display: flex;
        width: 100%;
        height: 532px;
        justify-content: left;
        align-items: center;
        margin-left: 48px;
    }

    .delay01 {
        text-align: center;
        font-size: 3rem;
        font-weight: 500;
        line-height: 1.9;
        letter-spacing: 7.84px;
        position: absolute;
        top: 25%;
        left: 6%;
        z-index: 3;
        color: var(--primary-darkbrown);
        text-align: right;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 1.0s ease-out forwards;
        animation-delay: 0.2s;
    }

    .delay02 {
        text-align: center;
        font-size: 3rem;
        font-weight: 500;
        line-height: 1.9;
        letter-spacing: 7.84px;
        position: absolute;
        top: 50%;
        left: 0%;
        z-index: 3;
        color: var(--primary-darkbrown);
        text-align: right;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 1.8s ease-out forwards;
        animation-delay: 0.8s;
    }

    .person {
        width: 36px;
        height: 86px;
    }

    .dog {
        width: 60px;
        height: 42px;
    }

    .slide {
        width: 70%;
        display: flex;
        height: 500px;
        position: absolute;
        top: 0;
        left: 50%;
        object-fit: contain;
        justify-content: center;
        align-items: center;
        transform: translateX(-50%);
        padding: 0 8.5%;
    }

    .sashie {
        top: 91%;
        right: 7%;
    }

    /*  menu responsive */
    @media screen and (min-width:1200px) {
        .nav__header {
            display: none;
        }
    }
}

/* -----------------------------------------
GALLERY
-------------------------------------------- */
.section--gallery {
    background-image: url(../images/paperBg.webp);
    background-position: center;
    background-size: contain;
    padding-bottom: 120px;
}

.section__theme {
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 3.84px;
    margin-top: 80px;
    margin-bottom: 32px;
}

.art__group {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 16px;
    padding: 0 4.2%;
    justify-items: center;
}

.art__box {
    width: 160px;
    height: 200px;
    overflow: hidden;
    background: var(--primary-verge);
    display: flex;
    align-items: center;
    justify-content: center;
}

.art__box img {
    width: 126px;
    height: 25vh;
    object-fit: contain;
    padding: 8px;
}

.art__name {
    text-align: center;
    font-family: "Shippori Mincho";
    color: var(--primary-black);
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 1.92px;
    margin-top: 28px;
    background-color: rgba(255, 248, 248, 0.7);
    padding: 12px 20px;
    box-shadow: 2px 2px 4px rgba(84, 84, 84, 0.2);
}

.next__move01,
.next__move02,
.next__move03 {
    position: relative;
    cursor: pointer;
    width: 100%;
    display: block;
    margin-left: auto;
}

.next__txt {
    font-family: "Shippori Mincho";
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.96px;
    margin-top: 80px;
    text-align: right;
    padding-right: 13%;
}

.next__arrow {
    position: absolute;
    top: 80%;
    right: 6%;
    width: 120px;
    height: 14px;
}

.next__move01:hover .next__arrow,
.next__move02:hover .next__arrow02,
.next__move03:hover .next__arrow03 {
    transform: translateX(5px);
}

.g__art {
    display: block;
    width: 300px;
    height: auto;
    filter: drop-shadow(0 0 12px rgba(92, 85, 85, 0.3));
}

/* responsive */
@media screen and (min-width: 400px) and (max-width: 1200px) {
    .art__group {
        display: grid;
        width: 100%;
        margin: 0 auto;
        grid-template-columns: 1fr 1fr;
        gap: 32px 16px;
        padding: 0 4.2%;
        justify-items: center;
    }

    .art__box {
        width: 42vw;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10.2%;
    }

    .art__box img {
        width: 32vw;
        height: 42vh;
        object-fit: contain;
    }
}

/* gallery pc */
@media screen and (min-width:1200px) {
    .art__group {
        width: 100%;
        min-width: 800px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 2% 2.8%;
        gap: 2.2vw;
    }

    .art__contents {
        max-width: 100%;
    }

    .art__box {
        width: 20vw;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10.2%;
    }

    .art__box img {
        width: 18vw;
        height: 42vh;
        object-fit: contain;
    }

    .art__box img:hover {
        opacity: 0.6;
    }

    .art__name {
        text-align: center;
        font-family: "Shippori Mincho";
        font-size: 2rem;
        font-weight: 500;
        line-height: 1.5;
        letter-spacing: 1.2px;

    }

    .next__txt {
        font-family: "Shippori Mincho";
        font-size: 2rem;
        line-height: 1.5;
        letter-spacing: 2.88px;
        padding-right: 120px;
    }

    .next__arrow {
        width: 200px;
        height: 14px;
        top: 80%;
        right: 3%;
    }

    .next__move01:hover .next__arrow,
    .next__move02:hover .next__arrow02,
    .next__move03:hover .next__arrow03 {
        transform: translateX(10px);
    }

    .g__art {
        filter: drop-shadow(0 0 8px rgba(129, 124, 124, 0.3));/
    }
}

/* -----------------------------------------
SHOP
-------------------------------------------- */
.section--shop {
    text-align: center;
    padding: 0 16px;
}

.shop__txt {
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    line-height: 2;
    padding: 0 4.2%;
    letter-spacing: 1.92px;
}

.shop__add {
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    line-height: 2;
    padding: 0 4.2%;
}

.shop__contents {
    padding: 60px 32px;
    text-align: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.3);
    margin: 60px auto;
}

.btn__group {
    margin-top: 64px;
}

.shop__btn {
    width: 192px;
    height: 48px;
    display: flex;
    justify-content: center;
    padding: 8px 15px 8px 16px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    border: 1px solid var(--primary-black);
    background: #937257;
    margin: 0 auto;
    transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
    cursor: pointer;
}

.shop__btn:hover {
    background: var(--primary-darkbrown);
}

.shop__move {
    margin: 0 auto;
    color: #F8F5F0;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 2.56px;
    padding-left: 10px;
}

.prt {
    width: 25px;
    height: 25px;
}

.brPc {
    display: none;
}

/* shop pc */
@media screen and (min-width:769px) {
    .shop__btn {
        width: 362px;
        height: 84px;
        padding: 24px 48px;
    }

    .shop__txt {
        font-family: "Noto Sans JP";
        font-size: 1.6rem;
        line-height: 2;
        letter-spacing: 1.28px;
    }

    .shop__add {
        font-size: 1.4rem;
        line-height: 4;
        letter-spacing: 1.28px;
    }

    .brSp {
        display: none;
    }

    .shop__move {
        text-align: center;
        font-family: "Noto Sans JP";
        font-size: 2.4rem;
        font-weight: 500;
        line-height: 1.5;
        letter-spacing: 3.84px;
    }

    .p__box {
        width: 32px;
        height: 32px;
    }

    .shop__contents {
        width: 814px;
        height: 100%;
        flex-direction: column;
        align-items: center;
    }
}

/* -----------------------------------------
profile
-------------------------------------------- */
.section--profile {
    background-image: url(../images/paperBg.webp);
    background-position: center;
    background-size: contain;
    padding-bottom: 100px;
}

.profile__img {
    margin-top: 64px;
    padding: 0 4.2%;
    width: 70vw;
    height: 100%;
}

.section__name {
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 1.92px;
    margin-top: 40px;
    line-height: 2;
}

.section__namepc {
    display: none;
}

.prof {
    margin-top: 24px;
    padding: 0 4.2%;
}

.prof__history {
    margin-top: 64px;
    text-align: left;
}

.p__h {
    display: flex;
    justify-content: flex-start;
    gap: 0.5em;
    margin-bottom: 8px;
}

.year {
    white-space: nowrap;
    font-size: 1.4rem;
    font-weight: 350;
    line-height: 1.5;
    letter-spacing: 2px;
}

.prtxt {
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-weight: 350;
    line-height: 1.5;
    letter-spacing: 2px;
    text-align: left;
}

.p__txt {
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 350;
    line-height: 1.8;
    letter-spacing: 2.4px;
    margin-top: 8px;
    text-align: left;
}

.line {
    width: 100%;
    padding-top: 44px;
}

.next__txt02 {
    font-family: "Shippori Mincho";
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.96px;
    margin-top: 80px;
    text-align: right;
    padding: 0 32px;
}

.next__move02 {
    position: relative;
}

.next__arrow02 {
    content: "";
    position: absolute;
    top: 80%;
    right: 2%;
    width: 150px;
    height: 14px;
}

.prof {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* 表示されたときに適用 */
.prof.visible {
    opacity: 1;
    transform: translateY(0);
}

/* responsive  */
@media screen and (min-width:400px) and (min-width:769px) {

    .profile__img {
        width: 45vw;
        height: 80%;
    }
}

@media screen and (min-width:1200px) {
    .prof__container {
        display: flex;
        justify-content: space-between;
        align-items: first center;
        text-align: left;
        padding: 0 2.2%;
        gap: 32px;
    }
}

/* profile pc */
@media screen and (min-width:769px) {
    .profile__img {
        width: 45vw;
        height: 80%;
    }

    .section__namepc {
        display: block;
        justify-content: center;
        margin: 0 auto;
    }

    .section__name {
        display: none;
    }

    .section__namepc {
        display: block;
        margin-top: 100px;
        font-family: "Shippori Mincho";
        font-size: 3.2rem;
        font-weight: 600;
        letter-spacing: 5.12px;
    }

    .job__ex {
        font-family: "Shippori Mincho";
        font-size: 1.6rem;
        font-weight: 500;
        letter-spacing: 1.92px;
    }

    .line {
        width: 100%;
        padding-top: 48px;
    }

    .profile__txt {
        padding-top: 48px;
    }

    .next__txt02 {
        font-size: 2rem;
        font-weight: 500;
        line-height: 1.5;
        letter-spacing: 2.88px;
        padding-right: 100px;
    }

    .next__arrow02 {
        content: "";
        position: absolute;
        top: 80%;
        right: 3%;
        width: 270px;
        height: 14px;
    }

    .p__h {
        font-size: 1.3rem;
        letter-spacing: 1.8px;
    }
}

/* -----------------------------------------
information
-------------------------------------------- */

.section__infotheme {
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 1.28px;
    padding: 80px 0;
}

.info__container {
    background-image:
        linear-gradient(0deg, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0.48) 100%),
        url(../images/infoImg.webp);
    background-position: center;
    background-size: cover;
    padding-bottom: 100px;
    margin-top: 82px;
}

.info__contents {
    text-align: left;
}

.info__group {
    background: #FFF;
    width: 85vw;
    height: auto;
    align-items: center;
    padding: 32px 16px 64px 16px;
    margin: 0 auto;
    filter: drop-shadow(0 0 12px rgba(92, 85, 85, 0.3));
}

.info__date {
    width: 100%;
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 350;
    line-height: 1.7;
    letter-spacing: 0.84px;
    background-color: var(--primary-verge);
    padding: 8px 16px;
    text-align: left;
    gap: 10px;
}

.info__name {
    font-family: "Shippori Mincho";
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 1.6px;
    margin-top: 22px;
}

.info__type {
    font-family: "Shippori Mincho";
    font-size: 1.4rem;
    letter-spacing: 1.12px;
}

.info__holiday {
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.84px;
    margin-top: 22px;
}

.info__place {
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 350;
    line-height: 1.7;
    letter-spacing: 0.96px;
    margin-top: 22px;
}

.info__contents a {
    width: 48px;
    height: 18px;
    border-radius: 1px;
    border: 0.5px solid #332F2C;
    margin-left: 16px;
    margin-top: 22px;
}

.i__group {
    display: flex;
    justify-content: left;
    align-items: center;
}

.info__time,
.info__address {
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.84px;
}

.info__time {
    margin-top: 22px;
}

.info__address {
    margin-bottom: 44px;
}

.map__box {
    text-align: center;
}

.next__ctxt {
    font-family: "Shippori Mincho";
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 0.96px;
    margin-top: 80px;
    text-align: right;
    padding: 0 32px;
    position: relative;
}

.next__arrow03 {
    content: "";
    position: absolute;
    top: 80%;
    right: 0%;
    width: 160px;
    height: 14px;
}

.info__contents {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* 表示されたときに適用 */
.info__contents.visible {
    opacity: 1;
    transform: translateY(0);
}


/* profile pc */
@media screen and (min-width:769px) {
    .section__infotheme {
        font-size: 1.8rem;
    }

    .info__group {
        max-width: 800px;
        height: 1440px;
        padding: 60px 64px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        filter: drop-shadow(0 0 12px rgba(92, 85, 85, 0.3));/
    }


    .info__date {
        display: flex;
        height: auto;
        padding: 8px 16px;
        align-items: center;
    }

    .next__move01,
    .next__move02,
    .next__move03 {
        width: 100%;
        text-align: right;
    }

    .next__ctxt {
        font-family: "Shippori Mincho";
        font-size: 1.8rem;
        line-height: 1.5;
        letter-spacing: 2.88px;
    }

    .next__arrow03 {
        top: 92%;
        right: -4%;
        width: 245px;
        height: 14px;
    }

    .info__contents {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease, transform 0.6s ease;
        width: 100%;
    }

    /* 表示されたときに適用 */
    .info__contents.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -----------------------------------------
shop
-------------------------------------------- */

.section--shop02 {
    padding: 0 6.4% 60px 6.4%;
}

.shop__img {
    width: 55vw;
    margin-top: 64px;
}

.shop__txt02 {
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 30px;
    /* 187.5% */
    letter-spacing: 1.28px;
}

.shop__txtgroup {
    margin-top: 60px;
}

/* shop pc */
@media screen and (min-width:769px) {
    .section--shop {
        padding: 0 16px 80px 16px;
    }

    .shop__container {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 32px;
        margin-top: 80px;
    }

    .shop__txt02 {
        font-family: "Noto Sans JP";
        font-size: 1.6rem;
        line-height: 3;
        letter-spacing: 2px;
    }

    .shop__contents {
        margin-left: 92px;
        margin: 80px auto;
        padding: 100px 0;
        background: rgba(255, 255, 255, 0.45);
    }

    .shop__contents02 {
        background-color: transparent;
        margin-left: 92px;
        padding: 16px 16px;
    }

    .shop__img {
        width: 35vw;
        height: 100%;
    }
}

/* -----------------------------------------
contact
-------------------------------------------- */
.section--contact {
    background-image: url(../images/paperBg.webp);
    background-size: cover;
    padding: 60px 16px 0 16px;
}

.contact__box {
    width: 85vw;
    height: 160px;
    background: rgba(255, 255, 255, 0.65);
    align-content: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.contact__txt {
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 2.56px;
    margin: 0 auto;
}

/* contact__txt変化 */
.contact__txt {
    color: var(--primary-darkbrown);
    transition: color 0.7s ease;
}

.contact__txt:hover {
    color: var(--primary-brown);
    text-decoration: underline;
}


/* contact pc */
@media screen and (min-width:769px) {
    .section--contact {
        margin: 0;
        height: auto;
        width: 100%;
        display: flex;
        padding: 80px 32px 0 32px;
        flex-direction: column;
        align-items: center;
    }

    .contact__box {
        display: flex;
        width: 644px;
        padding: 64px 157px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin: 0 auto;
    }

    .contact__txt {
        text-align: center;
        font-family: "Noto Sans JP";
        font-size: 1.8rem;
        letter-spacing: 3.84px;
        position: relative;
        display: inline-block;
    }

    /* contact__txt変化 */
    .contact__txt {
        color: var(--primary-darkbrown);
        transition: color 0.7s ease;
    }

    .contact__txt:hover {
        color: var(--primary-brown);
    }
}

/* -----------------------------------------
sashie02
-------------------------------------------- */

.sashie02 {
    width: 126px;
    height: 42px;
    aspect-ratio: 3/1;
    visibility: visible;
    margin-bottom: -1%;
    position: absolute;
    top: 72%;
    right: 1%;
    animation: moveBoat 40s linear infinite, floatBoat 5s ease-in-out infinite;
}

.footer__img {
    width: 100%;
    text-align: right;
    margin-bottom: -1%;
    min-width: 400px;
    height: 15vh;
    overflow: hidden;
    position: relative;
}

@keyframes moveBoat {
    0% {
        right: -60px;
    }

    100% {
        right: 100%;
    }
}

@keyframes floatBoat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-4px);
    }
}

@media screen and (min-width:500px) and (max-width:768px) {
    .sashie02 {
        top: 69%;
    }
}

/* sashie02 pc */
@media screen and (min-width:769px) {
    .sashie02 {
        width: 180px;
        height: 60px;
        aspect-ratio: 3/1;
        visibility: visible;
        position: absolute;
        top: 65%;
        right: 1%;
        animation: moveBoat 60s linear infinite, floatBoat 5s ease-in-out infinite;
    }

    .footer__img {
        width: 100%;
        text-align: right;
        margin-bottom: 0;
        min-width: 1440px;
        height: 15vh;
        overflow: hidden;
        position: relative;
    }


    @keyframes moveBoat {
        0% {
            right: -60px;
        }

        100% {
            right: 100%;
        }
    }

    @keyframes floatBoat {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-7px);
        }
    }
}