@charset "utf-8";


/* タグのスタイル */
body {
    font-size: 1.4vw;
    font-family: fot-tsukuardgothic-std, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #736357;
    background-color: rgba(255, 236, 220, 0.4);
    /* height: 100%;
    overflow: hidden; */
}

p,
h2,
h3 {
    font-feature-settings: "palt";
}

p,
h2,
h3 {
    letter-spacing: 0.09em;
}

a {
    text-decoration: none;
    color: #736357;
    letter-spacing: normal;
}

h2 {
    font-family: delaney, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 7vw;
    letter-spacing: -0.03em;
}

h3 {
    font-size: 3vw;
}

h4 {
    font-size: 2vw;
}




/* 共通クラスのスタイル */
.inner_01 {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    /* outline: 1px solid rgb(255, 45, 153); */
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex02 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.heading_deco {
    background: url(../image/png/image_deco_heading_1434x739.png) center center / contain no-repeat;
    width: 100%;
    /* height: 739px; */
    background-size: cover;
    gap: 20px;
    flex-direction: column;
    padding-top: 25%;
    padding-bottom: 25%;
}

.heading_deco p {
    text-align: center;
}





/* ナビゲーション */
nav {
    display: none;
    background: url(../image/png/image_bg_navpage_1440x1090.png) center / cover;
    width: 100%;
    height: 100vh;
    z-index: 10;
    position: relative;
    opacity: 0;
    transition: opacity .3s linear;
}


/* ナビゲーションメニューが表示されるときのスタイル */
nav.open {
    display: block;
    z-index: 1000;
    position: fixed;
}

nav.transition {
    opacity: 1;
}



nav .logo_wrap {
    background-color: rgba(66, 33, 11, 0.6);
    width: 115%;
    display: flex;
    justify-content: center;
}

nav>a {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
}

nav .nav_area_right {
    height: 100vh;
    width: 40%;
    background-color: #e8b5b5;
    margin-left: auto;
    position: relative;
}

nav .nav_area_close {
    position: absolute;
    top: 4%;
    right: 10%;
    width: 3rem;
    height: 3rem;
    font-size: 30px;
    border: none;
    background-color: #e8b5b5;
    color: #fff;
    cursor: pointer;
}

nav ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

nav ul li a {
    display: inline-block;
    color: #fff;
    font-size: 45px;
    font-family: delaney, sans-serif;
    font-weight: 300;
    font-style: normal;
    line-height: 1.8;
    background-image: linear-gradient(#e6608d, #e6608d);
    background-size: 0 1px;
    background-position: left bottom;
    background-repeat: no-repeat;
    transition: all 0.5s;
    text-decoration: none;
}

nav ul {
    height: 70%;
    border-bottom: 1px solid #fff;
}

nav ul li a:hover {
    background-size: 100% 1px;
    opacity: 0.8;
}

nav ul .current a {
    display: inline-block;
    color: #e6608d;
    background-image: none;
}

nav .nav_area_right .access_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    height: 30%;
    color: #fff;
    font-weight: 200;
}

/*============
  .toggle_btn
  =============*/
.toggle_btn {
    display: block;
    position: fixed;
    top: 30px;
    right: 30px;
    width: 30px;
    height: 30px;
    transition: all .5s;
    cursor: pointer;
    z-index: 3;
}

.toggle_btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #333;
    border-radius: 4px;
    transition: all .5s;
}

.toggle_btn span:nth-child(1) {
    top: 4px;
}

.toggle_btn span:nth-child(2) {
    top: 14px;
}

.toggle_btn span:nth-child(3) {
    bottom: 4px;
}

.open .toggle_btn span {
    background-color: #fff;
}

.open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-315deg);
}

.open .toggle_btn span:nth-child(2) {
    opacity: 0;
}

.open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(315deg);
}



/* header */


header .header_top {
    height: 10vw;
}

header .header_center a {
    width: 8vw;
    margin-bottom: 5%;
}

header .header_center h1 img,
.header_links h1 img {
    width: 100%;
}

header .header_center p {
    color: #fff;
    font-size: 0.8vw;
    margin: 1% 0;
}

header .header_icon {
    position: absolute;
    /* top: 6%; */
    right: 10%;
    gap: 30%;
}

header a,
header .ham_btn,
.header_links .ham_btn {
    cursor: pointer;
    transition: .3s;
    width: 5vw;
}

header .header_icon a {
    margin-top: 20%;
}

header .header_icon a img {
    width: 2.5vw;
}

header a:hover,
header .ham_btn:hover {
    opacity: 0.7;
}

.header_links {
    padding: 3% 0;
    background-color: #e8b5b5;
    width: 100%;
    height: 5vw;
    position: relative;
    transition: top 0.3s ease-in-out, opacity 0.3s ease-in-out;
    z-index: 5;
}

.header_links .header_center {
    width: 8%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

.header_links .header_icon {
    position: absolute;
    right: 10%;
    gap: 30%;
}

.header_links .header_icon a img {
    width: 2.5vw;
}

.header_links .header_icon a {
    margin-top: 10%;
}

.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 1;
    z-index: 5;
    transition: all 0.3s ease-in-out;
}

.hidden {
    opacity: 0;
}

/* フッター */
footer {
    /* padding: 5% 0; */
    margin-top: 10%;
    width: 100%;
    height: 280px;
    background-color: #e8b5b5;
    font-size: 1.1vw;
    color: #fff;
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    position: relative;
}

footer .flower_deco {
    background: url(../image/png/image_footer_flower.png) center center no-repeat;
    background-size: contain;
    width: 100%;
    height: 8vw;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: -1;
}

footer .footer_logo {
    margin: 15% 0;
    /* width: 8vw; */
}

footer a {
    color: #fff;
    transition: .3s;
}

footer a:hover {
    opacity: 0.7;
}

footer .footer_content_center {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

footer .footer_content_right {
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translate(-50%, -50%);
    line-height: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

footer .footer_content_right div:first-child {
    gap: 20px;
}

footer .footer_adress p:nth-child(2),
footer .footer_adress p:nth-child(3) {
    text-align: right;
}

footer .insta_icon {
    margin: 15px;
}

/* more_btn */
.more_btn a {
    display: inline-block;
    border-radius: 1vw;
    width: 13vw;
    line-height: 3;
    text-align: center;
    background: linear-gradient(90deg, rgba(232, 181, 181, 1) 0%, rgba(255, 236, 220, 1) 50%, rgba(232, 181, 181, 1) 100%);
    box-shadow: 0.1em 0.2em 0.5em rgba(147, 103, 99, 0.5);
    font-size: 1.4vw;
    transition: background-position 0.8s ease;
    background-size: 200% 100%;
    background-position: 0 0;
}

.more_btn a:hover {
    background-position: 100% 0;
}

.more_btn a::after {
    content: "▲";
    font-size: 0.5vw;
    display: inline-block;
    transform: rotate(90deg);
    margin-left: 2px;
    padding-top: 5px;
}

/* topに戻るボタン */
.to_top {
    justify-content: right;
}

.to_top_item {
    display: inline-block;
    transition: 1.5s ease-in-out;
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 10;
    width: 2%;
}


.is-animation {
    height: 70px;
}

.fadeIn_up {
    opacity: 0;
    transform: translate(0, 10%);
    transition: 2s;
}

.fadeIn_up.is-show {
    transform: translate(0, 0);
    opacity: 1;
}

.fadeIn_left {
    opacity: 0;
    transform: translate(-50%, 0);
    transition: 2s;
}

.fadeIn_left.is-show {
    transform: translate(0, 0);
    opacity: 1;
}

.fadeIn_right {
    opacity: 0;
    transform: translate(50%, 0);
    transition: 2s;
}

.fadeIn_right.is-show {
    transform: translate(0, 0);
    opacity: 1;
}

/* じんわり表示 */
.blur_img {
    opacity: 0;
    -moz-transition: -moz-transform 0.5s linear;
    -webkit-transition: -webkit-transform 0.5s linear;
    -o-transition: -o-transform 0.5s linear;
    -ms-transition: -ms-transform 0.5s linear;
    transition: transform 0.5s linear;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.img-blur {
    -webkit-animation-name: imageBlur;
    animation-name: imageBlur;
    opacity: 1;
    transition: .8s;
}

@-webkit-keyframes imageBlur {
    from {
        opacity: 0;
        -webkit-filter: blur(15px);
        -moz-filter: blur(15px);
        -ms-filter: blur(15px);
        -o-filter: blur(15px);
        filter: blur(15px);
    }

    to {
        opacity: 1;
        -webkit-filter: blur(0px);
        -moz-filter: blur(0px);
        -ms-filter: blur(0px);
        -o-filter: blur(0px);
        filter: blur(0px);
    }
}

@keyframes imageBlur {
    from {
        opacity: 0;
        -webkit-filter: blur(15px);
        -moz-filter: blur(15px);
        -ms-filter: blur(15px);
        -o-filter: blur(15px);
        filter: blur(15px);
    }

    to {
        opacity: 1;
        -webkit-filter: blur(0px);
        -moz-filter: blur(0px);
        -ms-filter: blur(0px);
        -o-filter: blur(0px);
        filter: blur(0px);
    }
}

/* fadeUp */

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeUpTrigger {
    opacity: 0;
}


/* その場で */
.fadeIn {
    animation-name: fadeInAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.fadeInTrigger {
    opacity: 0;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



/* ====================
   responsive
==================== */

@media (max-width: 768px) {

    /* header*/
    header {
        background-size: auto;
        width: 100%;
        aspect-ratio: 768 / 697;
    }



    header .header_top {
        height: clamp(60px, calc(10.178vw + 21.832px), 100px);
    }

    header .header_center {
        margin-top: 15px;
    }


    header .header_center a {
        width: 100px;
        margin-bottom: 5%;
    }

    header .header_center p {
        font-size: 10px;
    }

    header .ham_btn {
        width: 50px;
    }

    header .header_icon .shop_cart {
        display: none;
    }

    .header_links {
        height: 8vh;
    }

    .header_links .header_center {
        width: 14%;
    }

    .header_links .header_icon a img {
        width: 3.5vw;
    }

    .header_links {
        padding: 1%;
    }





    /* footer */
    footer {
        height: 20vw;
    }

    footer .footer_logo {
        margin-top: 0;
        margin-bottom: 10%;
        width: 8vw;
        height: auto;
    }

    footer .insta_icon {
        width: 2.5vw;
        height: auto;
        margin: 10%;
    }

    footer {
        font-size: 1vw;
    }

}


@media (max-width: 510px) {

    /* header */

    header .header_center a {
        width: 80px;
    }

    header .header_center {
        margin-top: 40px;
    }

    header .ham_btn {
        margin-top: 30px;
    }

}



@media (max-width: 500px) {

    /* common */
    .more_btn a {
        width: 30vw;
    }

    .to_top_item {
        right: 20px;
        bottom: 5px;
        width: 3%;
    }

    /* header */
    .header_links .header_center {
        width: 18%;
    }

    .header_links .header_icon a img {
        width: 5.5vw;
    }

    .header_links .ham_btn {
        width: 8vw;
    }

    /* nav */
    nav .logo_wrap {
        width: 115%;
    }

    nav .logo_wrap img {
        width: 25vw;
    }

    nav>a {
        left: 23%;
    }

    nav .nav_area_right {
        width: 50%;
    }

    nav ul {
        align-items: flex-start;
        margin-left: clamp(10px, calc(10.4vw - 29px), 23px);
        padding-top: 10%;
        gap: 10px;
        height: 60%;
    }

    nav ul li {
        width: 90%;
    }

    nav ul li a {
        display: block;
        font-size: clamp(30px, calc(4vw + 15px), 35px);
    }

    .toggle_btn {
        top: 15px;
        right: 15px;
    }

    /* footer */
    footer {
        height: 51vh;
        min-height: 400px;
        padding: 7% 0;
    }

    footer .footer_content_center,
    footer .footer_content_right {
        position: static;
        transform: none;
    }

    footer .footer_wrap {
        display: flex;
        align-items: center;
        flex-direction: column-reverse;
        gap: 45px;
    }

    footer .footer_content_right {
        display: flex;
        flex-direction: column-reverse;
    }

    footer .footer_logo {
        width: 15vw;
    }

    footer .insta_icon {
        min-width: 29px;
    }


}
