@charset "utf-8";

/* カラーとフォントファミリーの変数設定 */
:root {
    --base-color: #f8f7f6;
    --white: #ffffff;
    --main-color: #8cc3db;
    --title-barcolor: #b7deef;
    --accent-color: #fccf1a;
    --accent-color-alfa: rgba(252, 207, 26, 0.8);

    --textcolor: #777777;
    --glaycolor: #bbbbbb;
    --sub-color: #e1d0b9;
    --headerbg-color: rgba(168, 194, 204, 0.45); /* #A6BCC5 50%*/
    --footercolor: #d4dfe3;
    --fontMain: "Noto Sans CJK JP", "Noto Sans JP", "メイリオ", sans-serif;
    --fontEng: "Century Gothic", "Questrial", "M PLUS 1p", "Noto Sans CJK JP", "Noto Sans JP", "メイリオ", sans-serif;
}

/* --------------初期設定------------- */
html {
    font-size: 100%;
}

body {
    background: var(--white);
    color: var(--textcolor);
    font-size: 1rem;
    font-family: var(--fontMain);
    font-weight: 400;
}
img {
    max-width: 100%;
}
a {
    text-decoration: none;
}

li {
    list-style: none;
    margin-right: 1rem;
}
br.sp_br {
    display: none;
}
/* -------------- hタグ -------------- */
h1 {
    color: var(--white);
    text-shadow: 0px 0px 4px var(--textcolor);
    font-family: var(--fontEng);
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1;
    margin: 1rem 0;
}
h1 a {
    color: var(--white);
}

h2 {
    font-family: var(--fontEng);
    font-weight: 500;
    display: inline-block;
    padding: 0 1rem;
    background: linear-gradient(transparent 55%, var(--title-barcolor) 55%);
    margin-top: 0;
    margin-bottom: 3.5rem;
}
h3 {
    margin: 0;
    font-weight: 400;
}
h4 {
    font-weight: 500;
}
/* --------------header------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    background: var(--headerbg-color);
}
header#header.toppage_header {
    height: 108px;
}

.hd_wrapper {
    width: 100%;
    height: 100px;
    min-width: 960px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2%;
}

#navi-list {
    font-family: var(--fontEng);
    color: var(--white);
    text-shadow: 0px 0px 3px var(--textcolor);
    display: flex;
    justify-content: space-around;
}

#navi-list a {
    color: var(--white);
}
#navi-list a:hover {
    color: var(--title-barcolor);
    transition: 0.5s;
}
.awico {
    font-size: 1.4rem;
}
/* ------- メインビジュアル　------- */
#mainvisual {
    position: sticky;
    top: -620px;
    z-index: 500;
    margin-top: 0;
    padding-top: 0;
}
#mainvisual img {
    width: 100%;
    max-width: 1920px;
    height: 720px;
    object-fit: cover;
}
/* ------- 各セクション共通 ------- */
section {
    /* background: #c49b9b; */
    padding-top: 100px;
}
.bgcolor-on {
    background: var(--base-color);
}
.wrapper {
    width: 95%;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 5rem;
}
.link_btn {
    font-family: var(--fontEng);
    color: var(--textcolor);
    display: inline-block;
    padding: 0 1.5rem;
    border-radius: 1rem;
    border: var(--textcolor) solid 1px;
}
a:hover .link_btn {
    color: var(--white);
    background: var(--headerbg-color);
    transition: 0.5s;
    border-radius: 1rem;
    border: var(--headerbg-color) solid 1px;
}
#link_btncov {
    font-family: var(--fontEng);
    color: var(--textcolor);
    display: inline-block;
    padding: 0 1.5rem;
    border-radius: 1rem;
    border: var(--textcolor) solid 1px;
    color: var(--white);
    background: var(--accent-color);
    border: none;
}

a:hover #link_btncov {
    color: var(--glaycolor);
    background: var(--white);
    transition: 0.5s;
    border-radius: 1rem;
}
.left-align {
    text-align: left;
}
.center-align {
    text-align: center;
}
.right-align {
    text-align: right;
}
.link_btn_RtoC {
    text-align: right;
}
.link_btn_LtoC {
    text-align: left;
}

.store_name {
    font-family: var(--fontEng);
    font-weight: 400;
    font-size: 1.8em;
    line-height: 1;
}
.store_copy {
    font-family: var(--fontEng);
    font-weight: 400;
    font-size: 40%;
}
/* -------　サブページヘッダーイメージ　------- */
#headerimg {
    position: sticky;
    top: -180px;
    z-index: 500;
    padding-top: 0;
}
#headerimg img {
    width: 100%;
    max-width: 1920px;
    height: 280px;
    object-fit: cover;
}
/* -------　アイテム欄　------- */
.items_area {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.items_card {
    width: calc(90% / 4);
    margin-bottom: 3rem;
}
.items_card img {
    border: solid 1px var(--glaycolor);
}
.item_name {
    text-align: left;
    font-weight: 500;
    font-size: 0.8rem;
}
.item_place {
    text-align: right;
    font-weight: 400;
    font-size: 0.8rem;
}
.img34_wrapper {
    width: 100%;
    padding-top: 80%;
    position: relative;
    overflow: hidden;
    /* min-width: 120px; */
    /* min-height: 96px; */
}
.img34_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: solid 1px var(--glaycolor);
}

/* -----------　NEWS　----------- */
.news_area {
    width: 100%;
    padding-left: 0;
    margin-bottom: 3rem;
}
.news_area li {
    display: flex;
    line-height: 2;
    margin-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: var(--glaycolor) solid 1px;
}
.news_area li:not(:last-child) {
    /* background: #000; */
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.news_area time {
    width: 10rem;
    text-align: left;
}
.news_area div {
    width: 100%;
    text-align: left;
}
/* -------　インスタ画像　------- */
.insta_area {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}
.img_size_insta {
    width: calc(90% / 5);
    padding-top: calc(90% / 5); /*正方形にトリミング*/
    min-width: 80px;
    min-height: 80px;
}
.img-wrapper {
    /*正方形にトリミング*/
    position: relative;
    overflow: hidden;
    /* min-width: 80px; */
    /* min-height: 80px; */
}
.img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: solid 1px var(--glaycolor);
}
/* -------　TOP店舗紹介　------- */
.top_store_container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}
.top_store_content {
    width: calc(90% / 2);
}
.top_store_content img {
    border: solid 1px;
}
.store_info_text {
    text-align: left;
    line-height: 1.7;
}

/* -------　footer　------- */
footer {
    background: var(--footercolor);
    color: var(--textcolor);
    padding: 4rem 0 4rem;
}
footer a {
    color: var(--textcolor);
}
footer a:hover {
    color: var(--base-color);
    transition: 0.5s;
}
.ft_wrapper {
    width: 100%;
    max-width: 960px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 4%;
}
.store_logo_footer {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 3rem;
}
footer ul {
    display: flex;
}
.ft_nav {
    font-family: var(--fontEng);
    margin-top: 3rem;
    margin-bottom: 1rem;
}
.ft_menu {
    font-size: 75%;
    margin-bottom: 2rem;
}

.copyright {
    margin: 2rem 0;
}
/*--------------- サブページ　紹介文 ----------------- */
#aboutus {
    padding-top: 3rem;
}
.intro_contenor {
    /* height: 50vh; */
    position: relative;
    top: 0;
    left: 0;
    z-index: 0;
    display: flex;
    flex-direction: column;
}
.nnn_copy {
    position: relative;
    top: 0;
    left: 0;
    z-index: 5;
    font-size: 2rem;
    font-weight: 300;
    text-align: left;
}
.intro_txt {
    width: 60%;
    min-width: 360px;
    position: relative;
    top: 0;
    left: 0;
    z-index: 5;
    text-align: left;
    align-self: flex-end;
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.8;
}
.bg_shape {
    position: absolute;
    top: 2rem;
    left: 10rem;
    z-index: 0;
    width: 50%;
    min-width: 380px;
    height: 240px;
    background: var(--sub-color);
}

/*--------------- サブページ　店舗紹介 ----------------- */
#location {
    position: relative;
    z-index: 0;
    top: 0;
    left: 0;
}
.store_content {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.store_content:not(:last-child) {
    margin-bottom: 7rem;
}

.store_content h4 {
    margin-top: 0;
}
.store_img_content {
    width: calc(95% * 0.55);
}
.img_aprn {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 3:4 のアスペクト比 */
    margin-bottom: 1.2rem;
}
.img_aprn img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: solid 1px var(--glaycolor);
}
.flex_between {
    display: flex;
    justify-content: space-between;
}
.img_subsize {
    position: relative;
    overflow: hidden;
    width: calc(95% * 0.5);
    padding-top: calc(95% * 0.5);
    border: solid 1px var(--glaycolor);
}

.img_subsize img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store_info_content {
    width: calc(95% * 0.45);
    text-align: left;
}
.store_info_content img {
    width: 80%;
    min-width: 220px;
    margin: 1.2rem 0;
}
/*-------- サブページ　FAQアコーディオン ------- */
.faq_contener ul {
    padding: 0;
}

.faq_contener li {
    margin: 0.8rem 0;
}
.faq_content {
    text-align: left;
    background: var(--white);
    border: 1px solid var(--glaycolor);
}
.qes {
    position: relative; /*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    padding: 3% 3% 3% 50px;
    transition: all 0.5s ease;
}

/*アイコンの＋と×*/
.qes::before,
.qes::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    background-color: var(--main-color);
}
.qes::before {
    top: 48%;
    left: 15px;
    transform: rotate(0deg);
}
.qes::after {
    top: 48%;
    left: 15px;
    transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.qes.close::before {
    transform: rotate(45deg);
}

.qes.close::after {
    transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.ans {
    display: none; /*はじめは非表示*/
    background: var(--base-color);
    margin: 0 3% 3% 3%;
    padding: 3%;
}
/*-------- サブページ　ショッピングカート ------- */
.cart_contener {
    display: flex;
    margin-bottom: 3rem;
    border: var(--glaycolor) 1px solid;
}
.cart_heading {
    background: var(--sub-color);
    min-width: 10rem;
}
.cart_content {
    padding: 1rem 1.5rem;
    border-left: var(--glaycolor) 1px solid;
}
.text_empty {
    text-align: left;
}
/*-------- サブページ　FAQページのお問い合わせリンク ------- */
.to_mailform {
    border-top: var(--glaycolor) solid 1px;
    margin-top: 4rem;
    padding-top: 3rem;
    display: flex;
    justify-content: space-between;
}
/*-------- メールフォーム ------- */
.mailform-area {
    border-top: var(--glaycolor) solid 1px;
    border-bottom: var(--glaycolor) solid 1px;
    margin: 2rem 0;
    padding: 2rem 0;
}
.mailform-area dl {
    margin: 0;
    width: 80%;
    min-width: 520px;
    margin: 0 auto;
}
.mailform-area dt {
    width: calc(100% * 0.3);
    text-align: left;
    font-size: 0.8em;
}
.mailform-area dd {
    width: calc(100% * 0.7);
    text-align: left;
}
.form-item {
    display: flex;
    align-items: center;
}
.form-item:not(:last-child) {
    margin-bottom: 40px;
}
.mailform-area .text-area {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--glaycolor);
    /* box-sizing: border-box; */
    background-color: var(--base-color);
}
.form-policy a {
    color: var(--main-color);
}
.form-policy a:hover {
    color: var(--title-barcolor);
    text-decoration: underline;
}

#mailform .link_btn {
    margin: 1.5rem 0;
    padding: 3px 24px;
    color: var(--white);
    border: none;
    background: var(--main-color);
}
#mailform .link_btn:hover {
    margin: 1.5rem 0;
    background: var(--accent-color);
}
.text_annotation {
    width: auto;
    font-size: 0.8em;
    display: flex;
    justify-content: center;
    align-items: center;
}
.text_annotation div {
    text-align: left;
}
/*-------- ページトップへのリンクボタン ------- */

/*リンクの形状*/
#page-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--headerbg-color);
    border-radius: 2rem;
    width: 48px;
    height: 48px;
    color: var(--white);
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 2rem;
    transition: all 0.3s;
}

#page-top a:hover {
    color: var(--main-color);
    background: var(--base-color);
}

/*リンクを右下に固定*/
#page-top {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 10;
    /*はじめは非表示*/
    opacity: 0;
    transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove {
    animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*　下に下がる動き　*/

#page-top.DownMove {
    animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 1;
        transform: translateY(100px);
    }
}
/*-------- 画像の表示をフェードイン ------- */

/* その場でじわっと */
.fadeIn {
    animation-name: fadeInAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* 下から */
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*-----トップページメインビジュアル用フェードイン ------- */

.mv_fadeIn {
    animation-name: fadeInMainvisual;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInMainvisual {
    from {
        opacity: 0;
        scale: 1;
    }

    to {
        opacity: 1;
        scale: 1.02;
    }
}

/*-------- アニメーション時差 ------- */
.delay-time02 {
    animation-delay: 0.2s;
}
.delay-time04 {
    animation-delay: 0.4s;
}
.delay-time06 {
    animation-delay: 0.6s;
}
.delay-time08 {
    animation-delay: 0.8s;
}

/* 拡大 */
.zoomIn {
    animation-name: zoomInAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes zoomInAnime {
    from {
        transform: scale(0.8);
    }

    to {
        transform: scale(1);
    }
}
