@charset "UTF-8";
@import url(css/reset.css);

/*
theme Name: UFUFU
Author: JIA
Description: original theme
version：Ver.0.1
*/

/*共通設定
-----------------------------------------*/
body
{
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-style: normal;
    line-height: 1.8;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: .08em;
    color: var(--secondary-600);
}

main
{
    padding-top: 64px;
}

@media (min-width: 769px)
{
    main
    {
        padding-top: 80px;
    }
}

.textCen
{
    text-align: center;
}

.font-en
{
    font-family: "Outfit", sans-serif;
    font-weight: 400;
}

.pc-none
{
    display: block;
}

@media (min-width: 769px)
{
    .pc-none
    {
        display: none;
    }
}

.sp-none
{
    display: none;
}

@media (min-width: 769px)
{
    .sp-none
    {
        display: block;
    }
}

.textlink
{
    color: var(--primary-700);
    text-decoration: underline;
}

.textlink:hover
{
    text-decoration: none;
}

.textsmall
{
    font-size: 14px;
}

.mt24
{
    margin-top: 24px;
}

/*色の設定
-----------------------------------------*/
:root
{
    --white: #FFF;
    --primary-700: #E4007F;
    --primary-500: #F77099;
    --primary-400: #FC5789;
    --primary-200: #FC8EAF;
    --primary-100: #FFEDF1;
    --secondary-700: #44241E;
    --secondary-600: #6F3000;
    --secondary-500: #814F35;
    --secondary-400: #A3745B;
    --secondary-300: #AF866C;
    --secondary-200: #D9BC9F;
    --bk-secondary: #F5EFE9;
    --bk-tertiary: #FDF5E8;
    --red: #F40000;
}

/*Header
-----------------------------------------*/
header nav
{
    background-color: rgba(228, 0, 127, 0.9);
    backdrop-filter: blur(4px);
}

.header_nav
{
    justify-content: space-between;
    position: fixed;
    width: 100%;
    max-width: 1920px;
    top: 0;
    z-index: 1000;
    height: 64px;
    padding: 16px;
}

.logo-area a
{
    height: auto;
    display: flex;
    align-items: center;
}

.logo-area img
{
    width: 120px;
    height: auto;
    margin-right: 16px;
}

.logo-area p
{
    color: var(--white);
    font-size: 13px;
    line-height: 1.2;
}

/* ハンバーガー */
.gnav
{
    text-align: center;
    position: relative;
    width: 100%;
    height: 100vh;
    transition: 0.3s ease;
    /*滑らかに表示*/
    transform: translateX(100%);
    /*画面より100%外へ押し出し非表示にさせる*/
}

.gnav li img
{
    margin-right: 4px;
}

.gnav li
{
    line-height: 1.5;
    color: var(--white);
}

.gnav li::after
{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    width: 0.4em;
    /* arrow size */
    height: 0.4em;
    /* arrow size */
    border-top: 1px solid var(--white);
    /* thickness, color */
    border-right: 1px solid var(--white);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*OPEN時の動き*/
.header_nav:has(.gnav.open)
{
    z-index: 2000;
    height: auto;
    padding: 16px;
}

.gnav.open
{
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    padding: 0 16px;
    /*メニューを元の位置へ戻す*/
}

.gnav.open li
{
    margin: 32px auto 0;
    max-width: 440px;
    text-align: left;
    position: relative;
}

.gnav.open li:first-child
{
    margin: 140px auto 0;
}

.gnav.open li.gnav__insta-link
{
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    /* padding-right: 8px; */
    margin-top: 80px;
    line-height: 1.2;
    text-align: right;
}

.gnav.open li.gnav__insta-link img
{
    width: 20px;
    height: 20px;
    margin-left: 8px;
    margin-right: 0;
}

.gnav li.gnav__insta-link::after
{
    border: none;
    width: 0;
    height: 0;
}

/*トグルボタンのスタイルを指定*/
.Toggle
{
    display: block;
    position: fixed;
    /* bodyに対しての絶対位置指定 */
    width: 64px;
    height: 64px;
    cursor: pointer;
    z-index: 3;
    right: 0;
    top: 0;
    padding: 22px;
}

.Toggle span
{
    display: block;
    position: absolute;
    width: 22px;
    border-bottom: solid 2px var(--white);
    -webkit-transition: .35s ease-in-out;
    /*変化の速度を指定*/
    -moz-transition: .35s ease-in-out;
    /*変化の速度を指定*/
    transition: .35s ease-in-out;
    /*変化の速度を指定*/
}

/*各ボーダー少しずつずらす*/
.Toggle span:nth-child(1)
{
    top: 22px;
}

.Toggle span:nth-child(2)
{
    top: 32px;
}

.Toggle span:nth-child(3)
{
    top: 42px;
}

.Toggle.active span:nth-child(1)
{
    top: 32px;
    /* 1番目のspanをマイナス45度に */
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3)
{
    top: 32px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media (min-width: 1141px)
{

    .gnav.open li,
    .gnav.open li:first-child
    {
        margin: auto 0;
    }

    .header_nav
    {
        padding-right: 40px;
        height: auto;
        display: flex;
    }

    .Toggle
    {
        display: none;
    }

    .logo-area img
    {
        width: 170px;
        height: auto;
    }

    .logo-area p
    {
        width: 140px;
        padding-top: 10px;
    }

    .gnav
    {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 25px;
        line-height: 1.5;
        height: auto;
        width: auto;
    }

    .gnav li a
    {
        position: relative;
        padding-bottom: 4px;
        font-size: 15px;
        letter-spacing: .05em;
    }

    .gnav li::after
    {
        content: normal;
    }

    .gnav li a:after
    {
        position: absolute;
        left: 0;
        content: '';
        width: 100%;
        height: 2px;
        background: var(--white);
        bottom: -1px;
        transform: scale(0, 1);
        transform-origin: left top;
        transition: transform 0.3s;
    }

    .gnav li a:hover::after
    {
        transform: scale(1, 1);
    }

    .gnav li img
    {
        margin-right: 4px;
        width: 1.3em;
    }

    .gnav li.gnav__insta-link
    {
        display: none;
    }
}


/*下層MVエリア
-----------------------------------------*/

.mv-area__sub .mv-img
{
    width: 100%;
    object-fit: contain;
    max-width: 1920px;
    object-position: center;
}

@media (min-width: 769px)
{
    .mv-area__sub .mv-img
    {
        object-fit: cover;
        object-position: center;
        height: 320px;
    }
}

.mv-area__sub
{
    height: 200px;
    background-repeat: no-repeat;
    background-position: bottom center;
    padding: 0 20px;
    background-size: auto;
}

.mv-area__sub .mv-inner
{
    max-width: 1120px;
    margin: 0 auto;
}

.mv-area__sub .mv-inner h1
{
    padding-top: 80px;
}

@media (min-width: 769px)
{
    .mv-area__sub .mv-inner h1
    {
        padding-top: 160px;
    }

    .mv-area__sub
    {
        height: 360px;
        background-position: top center;
        padding: 0 80px;
    }
}

/* 下層MV画像 */
#page.privacy .mv-area__sub,
#page.contact .mv-area__sub
{
    background-image: url(images/common/mv-common_sp_2x.png);
}

@media (min-width: 769px)
{

    #page.privacy .mv-area__sub,
    #page.contact .mv-area__sub
    {
        background-image: url(images/common/mv-common_pc.png);
    }
}

#page.shop .mv-area__sub
{
    background-image: url(images/shop/mv-shop_sp.webp);
    background-size: cover;
}

@media (min-width: 769px)
{
    #page.shop .mv-area__sub
    {
        background-image: url(images/shop/mv-shop_pc.webp);
    }
}

#page.recruit .mv-area__sub
{
    background-image: url(images/recruit/mv-recruit_sp_2x.png);
}

@media (min-width: 769px)
{
    #page.recruit .mv-area__sub
    {
        background-image: url(images/recruit/mv-recruit_pc.png);
    }
}

.mv-area__sub.news
{
    background-image: url(images/shop/mv-shop_sp.webp);
    background-size: cover;
}

@media (min-width: 769px)
{
    .mv-area__sub.news
    {
        background-image: url(images/shop/mv-shop_pc.webp);
    }
}

#page.fair .mv-area__sub
{
    background-image: url(images/fair/mv-fair_sp_2x.png);
}

@media (min-width: 769px)
{
    #page.fair .mv-area__sub
    {
        background-image: url(images/fair/mv-fair_pc.png);
    }
}

#page.menu .mv-area__sub
{
    background-image: url(images/menu/mv-menu_sp.webp);
}

@media (min-width: 769px)
{
    #page.menu .mv-area__sub
    {
        background-image: url(images/menu/mv-menu_pc.webp);
    }
}

#page.brand .mv-area__sub
{
    background-image: url(images/brand/mv-brand_sp_2x.png);
}

@media (min-width: 769px)
{
    #page.brand .mv-area__sub
    {
        background-image: url(images/brand/mv-barnd_pc.png);
    }
}


/*パンくず
-----------------------------------------*/

.breadcrumb ol
{
    max-width: 1120px;
    margin: 0 auto 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    line-height: 1.6;
}

.breadcrumb ol li
{
    margin-left: 8px;
    display: flex;
    color: var(--secondary-600);
    align-items: center;
}

.breadcrumb ol li a
{
    text-decoration: underline;
}

.breadcrumb ol li a:hover
{
    color: var(--primary-700);
}

.breadcrumb ol li:after
{
    content: '';
    width: 16px;
    height: 1px;
    background-color: var(--secondary-600);
    margin-left: 8px;
}

.breadcrumb ol li:last-child:after
{
    content: none;
}

@media (min-width: 769px)
{
    .breadcrumb ol
    {
        margin: 0 auto 80px;
    }
}

/*コンテナ
-----------------------------------------*/

#page
{
    max-width: 1920px;
    margin: 0 auto;
}

.container
{
    padding: 0 20px;
}

.inner__m,
.inner__s,
.inner__xs
{
    margin: 0 auto;
}

@media (min-width: 769px)
{
    .container
    {
        padding: 0 80px;
    }

    .inner__m
    {
        max-width: 1120px;
    }

    .inner__s
    {
        max-width: 1080px;
    }

    .inner__xs
    {
        max-width: 800px;
    }
}

/*ボタン
-----------------------------------------*/

/* ボタンMサイズ共通 */
.button-m
{
    display: flex;
    color: var(--white);
    width: 296px;
    height: 72px;
    align-items: center;
    justify-content: center;
    border-radius: 36px;
    font-size: 18px;
    transition: .3s;
    line-height: 1.5;
    margin: 64px auto;
}

@media (min-width: 769px)
{
    .button-m
    {
        width: 400px;
    }

    .button-m:hover
    {
        box-shadow: none;
        transform: translateY(4px);
    }
}

/* ボタンMサイズ：ピンク(Primary)、茶色(Secondary)、白(Tertiary) */

.button-m__primary img,
.button-m__secondary img
{
    padding-right: 4px;
}

.button-m__primary
{
    background: linear-gradient(180deg, var(--primary-700), var(--primary-500));
    box-shadow: 8px 8px 16px rgba(220, 0, 113, 0.3);
    border: 1px solid var(--primary-700);
}

.button-m__secondary
{
    background: linear-gradient(180deg, var(--secondary-700), var(--secondary-500));
    box-shadow: 8px 8px 16px rgba(68, 36, 30, 0.3);
    border: 1px solid var(--secondary-700);
}

.button-m__tertiary
{
    background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.4));
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.3);
    color: var(--primary-700);
    position: relative;
    font-family: "Outfit", sans-serif;
    text-transform: uppercase;
    border: 1px solid var(--white);
}

.button-m__tertiary img
{
    position: absolute;
    padding-left: 8px;
    top: 50%;
    transform: translateY(-50%);
    right: 32px;
}

/* ボタン右端矢印 */
.button-m__next,
.button-m__prev
{
    position: relative;
    background: linear-gradient(180deg, var(--primary-700), var(--primary-500));
    box-shadow: 8px 8px 16px rgba(220, 0, 113, 0.3);
    border: 1px solid var(--primary-700);
}

.button-m__next img,
.button-m__prev img
{
    position: absolute;
    padding-left: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.button-m__next img
{
    right: 32px;
}

.button-m__prev img
{
    left: 32px;
}

/* ボタンSサイズ */
.button-s
{
    display: flex;
    color: var(--white);
    width: 260px;
    height: 56px;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    font-size: 18px;
    transition: .3s;
    background: linear-gradient(180deg, var(--primary-700), var(--primary-500));
    box-shadow: 8px 8px 16px rgba(220, 0, 113, 0.3);
    border: 1px solid var(--primary-700);
    line-height: 1.5;
}

.button-s img
{
    padding-right: 4px;
}

@media (min-width: 769px)
{
    .button-s:hover
    {
        box-shadow: none;
        transform: translateY(4px);
    }
}

/*タイトルエリア
-----------------------------------------*/

/* タイトル共通設定 */
.title_area
{
    display: flex;
    justify-content: center;
    text-align: center;
}

.title_area img
{
    width: 64px;
    height: 64px;
}

.subttl
{
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
}

.mainttl
{
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}


@media (min-width: 769px)
{
    .mainttl
    {
        font-size: 40px;
    }
}

/* 白色タイトル */
.ttl-m__white
{
    color: var(--white);
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

/* 左グラデーションborderタイトル */
.ttl-deco
{
    padding-left: 24px;
    background-image: linear-gradient(to top, var(--primary-200) 10%, var(--primary-400) 100%);
    background-repeat: no-repeat;
    background-size: 10px 100%;
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 40px;
    font-weight: 700;
}

@media (min-width: 769px)
{
    .ttl-deco
    {
        font-size: 28px;
        margin-bottom: 48px;
    }
}

/*footer
-----------------------------------------*/
.footer
{
    margin-top: 64px;
    position: relative;
}

.footer-area
{
    padding: 0 20px 120px;
    background-color: var(--primary-100);
    background-image: url(images/common/img_footer-bk-left.png),
        url(images/common/img_footer-bk-right.png);
    background-repeat: no-repeat, no-repeat;
    background-position: bottom left, bottom right;
    background-size: 180px 120px;
}

@media (min-width: 769px)
{
    .footer
    {
        margin-top: 80px;
    }

    .footer-area
    {
        padding: 0 80px;
        background-size: 300px 200px;
    }
}

.footer-area__ttl
{
    padding-bottom: 24px;
    font-size: 20px;
    text-align: center;
    justify-content: center;
    font-weight: 700;
}

.footer-area__link-box
{
    background: rgba(255, 237, 241, 0.8);
    padding: 24px 16px;
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    border-radius: 16px;
}

.footer-area__link
{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.footer-area__link li
{
    margin-right: 32px;
    margin-bottom: 16px;
}

@media (min-width: 769px)
{
    .footer-area__ttl
    {
        font-size: 28px;
    }

    .footer-area__link li a:hover
    {
        text-decoration: underline;
    }
}

/*波型シェイプ
-----------------------------------------*/
.shape-img
{
    /* display: inline-block; */
    text-align: center;
    width: 100%;
    object-position: center;
}

.shape-img
{
    object-fit: contain;
}


@media (min-width: 769px)
{
    .shape-img
    {
        object-fit: cover;
    }
}


/*ページトップボタン
-----------------------------------------*/
.pagetop-ft-btn
{
    display: block;
    width: 44px;
    height: 44px;
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 1000;
}

@media (min-width: 769px)
{
    .pagetop-ft-btn
    {
        right: 40px;
        bottom: 40px;
    }
}