@charset "UTF-8";
/* *****************************************************************
リセット
共通フレーム
文字
共通パーツ
 リンクボタン（フッター付近）
ヘッダー
PCメニュー
spメニュー
フッター
翻訳ボタン
***************************************************************** */
:root {
    --main_color: #773b00;
}

/* *****************************************************************
リセット
***************************************************************** */
* {
    margin: 0;
    padding: 0;
	box-sizing: border-box;
}
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}
body {line-height:1;}
article, aside, dialog, figure, footer, header,
hgroup, nav, section {display:block;}
nav ul {list-style:none;}
blockquote, q {quotes:none;}

blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}
a {
	margin:0;
	padding:0;
	border:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
    text-decoration: none;
}
ins {
	background-color:#ff9;
	color:#000;
	text-decoration:none;
}
mark {
	background-color:#ff9;
	color:#000;
	font-style:italic;
	font-weight:bold;
}
del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom:1px dotted #000;
	cursor:help;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
input, select {vertical-align:middle;}
ul, ol {list-style: outside none none;}
article, aside, details, footer, header, main, menu, nav, section, summary {display: block;}

/* *****************************************************************
共通フレーム
***************************************************************** */
html, body {
    height: 100%;
    width: 100%;
	word-wrap: break-word;
    background-color: #ffefa1;
}
html {overflow-y: scroll;}
#wrapper {
	width: 100%;
    margin: auto;
    min-height: 100vh;
    position: relative;
    padding-bottom: 192px;
    box-sizing: border-box;
    animation: fadein 1.2s forwards;
}
@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}
header,.header-change,section,footer{
    width: 100%;
    max-width: 1000px;
    padding-left: 45px;
    padding-right: 45px;
    margin: auto;
}
section{
    padding-top: 60px;
    padding-bottom: 60px;
}
section.white{
    background-color: #fff;
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}
section.w-max{
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.content_size{
    width: 100%;
    max-width: 1000px;
    padding-left: 45px;
    padding-right: 45px;
    margin: auto;
}
.head_area{
    padding: 60px 1em;
}
.order_menu{
    width: 100%;
    max-width: 860px;
    margin: auto;
}
@media screen and (max-width: 1000px) {
    header,.header-change,section,footer,.content_size{
        padding-left: 3%;
        padding-right: 3%;
    }
}
@media screen and (max-width: 850px) {	
    header,.header-change,section,footer,.content_size {
        padding: 30px 5%;
    }
    .link_box{ 
        display: none;
    }
}
@media screen and (max-width: 520px) {	
    .head_area{
        padding: 30px 1em;
    }
}

/* リンクボタン（フッター付近） */
.link_box{ 
    position: fixed;
    right: 45px;
    bottom: 25px;
    z-index: 10;
}
.link_box ul{
    width: 170px;
    display: flex;
    justify-content: space-between;
}
.link_box a{
    width: 82px;
    display: block;
    text-align: center;
    font-size: 12px;
}
.link_box a:hover{
    transform: translate(0, -5px);
    opacity: 1;
}
.link_box a.recruit_btn{
    width: 100%;
    max-width: 252px;
    margin-bottom: 10px;
}
@media screen and (max-width: 980px) {
    .link_box{
        right: 15px;
    }
    .link_box ul{
        width: 25.882vw;
    }
    .link_box li{
        width: 49%;
    }
    .link_box a{
        width: 100%;
    }
    .link_box a.recruit_btn{
        max-width: 25.882vw;
    }
}

/* *****************************************************************
文字
***************************************************************** */
body {
	font-family: Times,'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
	-webkit-text-size-adjust: 100%;
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
    color: var(--main_color);
}
a, a:link,a:visited, a:active {color: var(--main_color);}
a:hover {color: #333;}
a:focus {outline: medium none;}

h1, h2, h3, h4, h5, h6 {font-size: 100%; font-weight: 400;}
h2{
    font-size: 30px;
}
.head_area h1{
    font-size: 26px;
    text-align: center;
    margin-bottom: 15px;
}
.head_area h1 span{
    display: block;
    font-size: 20px;
    line-height: 1;
}
.head_box{
    text-align: center;
    font-size: 16px;
}
.head_box h2{
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 15px;
}
.notes{
    font-size: 12px;
    line-height: 1.5;
    color: #c30d23;
    margin-top: 10px;
}
.strong{
    font-size: 125%;
    text-decoration: underline;
    margin: 0 1px;
}
.t-left{text-align: left!important;}
.t-center{text-align: center;}

.txt11{font-size: 11px;}
.txt12{font-size: 12px;}
.txt13{font-size: 13px;}
.txt14{font-size: 14px;}
.txt16{font-size: 16px;}
.txt18{font-size: 18px;}

.t-lineheight_min{line-height:1.3;}
.black{color: #000;}
.red{color: #c30d23;}
.enji{color: #b34422;}

@media only screen and (max-width: 520px) {
    .sp_left{
        text-align: left!important;
    }
    h2{
        font-size: 26px;
    }
}

/* *****************************************************************
共通パーツ
***************************************************************** */
.no-scroll{
}
img {
    width: 100%;
    height: auto;
    border: medium none;
    vertical-align: middle;
}
.indent{
    text-indent: -1em;
    padding-left: 1em;
}
a:hover,a:hover img{
    transition: all  0.25s ease;
    opacity: 0.85;
}
a.link_btn,.no_link_btn{
    display: inline-block;
    margin: 30px auto 50px;
    padding: 7px 1em;
    font-size: 14px;
    text-align: center;
    background-color: var(--main_color);
    color: #fff;
}
a.link_btn_white{
    display: inline-block;
    margin: 30px auto 0;
    padding: 7px 1em;
    font-size: 14px;
    text-align: center;
    background-color: #fff;
    border: 1px solid var(--main_color);
    color: var(--main_color);
    box-sizing: border-box;
}
.no_link_btn{
    background-color: #b5b6b6;
}
a.link_btn::after,.no_link_btn::after,a.link_btn_white::after{
    content: ">";
    padding-left: 1em;
}
a.back::after{
    content: "";
    padding-left: 0;
}
a.link_btn:hover{
    background-color: #333;
}
a.link_btn_white:hover{
    color: #fff;
    background-color: #333;
    border: 1px solid #333;
}
a.link_btn.long{
    width: 80%;
    max-width: 232px;
    margin: auto;
    display: block;
}
.dott_line{
    border-bottom: 1px dotted var(--main_color);
}
.mrg_b1{margin-bottom: 1em;}
.mrg_t15{margin-top: 15px;}
.mrg_t50{margin-top: 50px!important;}
.pa_b1{padding-bottom: 1em;}
.pa_t30{padding-top: 30px;}
.pa_b30{padding-bottom: 30px;}
.notes_p{
	display: inline-block;
	text-align: left;
}
.notes_p p{margin-bottom:.5em;}

.pc,.no_sp{display: block;}
.tab,.sp{display: none;}
.skiptranslate{display: none!important;}
@media screen and (max-width: 850px) {
    .pc{display: none;}
    .tab{display: block;}
}
@media only screen and (max-width: 520px) {
    .sp{display: block;}
    .no_sp,.none_sp{display: none;}
	.notes_p p{margin-bottom:1em;}
}

@media (min-width: 850px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}

/* *****************************************************************
ヘッダー
***************************************************************** */
header {
    width: 100%;
    padding-top: 30px;
}
header .logo{
    width: 146px;
    margin: 0 auto 40px;
}
nav ul li a{
    position: relative;
}
nav ul li a .badge{
    position: absolute;
    top: 10px; 
    right: 0;
    font-size: 9px;
    color: #fff;
    text-align: center;
    width: 12px; 
    height: 12px;
    line-height: 12px;
    background-color: #a72c29;
    border-radius: 50%;
}
@media (max-width: 850px) {
    header nav{display: none;}
    header {
        padding-top: 10px;
    }
    header .logo{
        width: 80px;
        margin: 10px 0 0;
    }
    nav ul li a{
        display: flex!important;
        align-items: center;
    }
    nav ul li a .badge{
        position: static;
        display: block;
        font-size: .7em;
        width: 1em;
        height: 1em;
        line-height: 1em;
        margin-left: 5px;
        margin-top: -.2em;
    }
}

/* *****************************************************************
PCメニュー
***************************************************************** */
nav ul.mainNav{
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid var(--main_color);
    border-bottom: 1px solid var(--main_color);
    position: relative; 
    z-index: 7;
}
nav ul.mainNav li{
    position: relative;
}
nav ul.mainNav li a{
    font-size: 14px;
    line-height: 1;
    text-align: center;
    display: flex;
    align-items: center;
    padding: 15px 1em;
}
nav ul li a .new_icon{
    display: inline-block;
    font-size: 10px;
    color: #fff;
    background-color: #a72c29;
    margin-right: 5px;
    line-height: 13px;
    padding: 0 4px;
}
nav ul.mainNav li.recruit a{
    background-color: #773b00;
    padding: 3px 1em;
    margin-left: 1em;
    border-radius: 5px;
    color: #fff;
}
nav ul.mainNav li.recruit a:hover{
    background-color: #333;
}
nav ul.mainNav li.insta a{
    width: 14px;
    box-sizing: content-box;
    padding-right: 0;
}
nav ul.mainNav li a.sub::before{
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border: 1px solid;
    border-color:transparent var(--main_color) var(--main_color) transparent;
    transform: rotate(45deg) translate(0,-2px);
    margin-right: .5em;
}
nav ul.mainNav li ul{
    list-style: none;
    position: absolute;
    top: 70%;
    left: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
    transition: .35s;
}
nav ul.mainNav li:hover ul{
  visibility: visible;
  opacity: 1;
}
nav ul.mainNav li ul li{
    width: 120%;
    overflow: hidden;
    height: 0;
    background: #ffefa1;
}
nav ul.mainNav li ul.shop li{
    width: 120%;
}
nav ul.mainNav li:hover ul li{
    overflow: visible;
    height: auto;
}
nav ul.mainNav li ul li a{
    width: 100%;
    text-align: left;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 1.3;
    padding: 10px 12px 0;
}
nav ul.mainNav li ul li a.last{
    padding-bottom: 10px;
}
nav ul.mainNav li ul.store_link li{
    width: 160%;
    padding-left: 10px;
}
.scroll_nav nav ul.mainNav li ul.store_link li{
    width: 175%;
}
nav ul.mainNav li ul.store_link li.shop_name{
    font-size: 13px;
    line-height: 1;
    padding-top: 10px;
}
nav ul.mainNav li ul.store_link li.shop_name.reg{
    padding-top: 17px;
}
nav ul.mainNav li ul.store_link li span{
    font-size: 10px;
    line-height: 1;
}
nav ul.mainNav li ul.store_link li a{
    padding:0 0 5px;
}
nav ul.mainNav li ul.store_link li:first-child a{
    padding-top: 5px;
}
nav ul.mainNav li ul.store_link li a::before{
    content: "";
    display: inline-block;
    vertical-align: middle;
    color: var(--main_color);
    line-height: 1;
    width: 8px;
    height: 8px;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(-25%) rotate(45deg);
    margin-right: .5em;
}
nav ul.mainNav li ul.store_link li a.last{
    font-size: 13px;
    padding: 12px 0 5px;
}
nav ul.mainNav li ul.store_link li a.last::before{
    display: none;
}
.header-change{    
    padding: 0;
    position: fixed;
    top: 0;
    transition: .3s;
    width: 100%;
    max-width: 100%;
    display: none;
    padding-bottom: 3px;
    background-color: #ffefa1;
    border-bottom: 1px solid var(--main_color);
}
.header-change.show{
    z-index: 10;
    display: block;
}
.header-change .scroll_nav{
    width: 100%;
    max-width: 950px;
    margin: auto;
    background-color: #ffefa1;
    display: flex;
    padding-top: 20px;
}
.header-change .scroll_nav .logo{
    width: 11%;
}
.header-change .scroll_nav nav.gnav{
    width: 89%;
    padding-left: 2.331%;
}
.header-change .scroll_nav nav.gnav ul.mainNav{
    width: 100%;
    display: flex;
    justify-content: center;
    border: none;
    position: relative; 
    z-index: 7;
}
.header-change .scroll_nav nav.gnav ul.mainNav li a{
    font-size: 13px;
}
@media (max-width: 1130px) {
    .header-change .scroll_nav nav.gnav{
        padding-right: 8.843vw;
    }
}
@media (max-width: 1000px) {
    .header-change .scroll_nav{
        padding-left: 15px;
    }
    .header-change .scroll_nav nav.gnav{
        padding-right: 180px;
    }
    .header-change .scroll_nav nav.gnav ul.mainNav li a{
        font-size: 1.3vw;
    }
}
@media (max-width: 950px) {
    nav ul.mainNav li a{
        font-size: 1.473vw;
    }
}
@media (max-width: 850px) {
    .header-change,.header-change.show{
        display: none;
    }
}

/* *****************************************************************
spメニュー
***************************************************************** */
.hamburger {
    display: none;
}
@media (max-width: 850px) {
    .hamburger {
        display: block;
        top: 10px;
        right: 10px;
        left: auto;
        position: absolute;
    }
    .hamburger.show{
        position: fixed;
    }
    .fat-nav ul li {
        text-align: left;
        padding: 0 5.333% 20px;
        font-size: 20px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    .fat-nav ul li .line{
        height: 1px;
        width: 20px;
        margin-right: 10px;
        background-color: var(--main_color);
    }
    .fat-nav ul li a{
        width: calc(100% - 30px);
        display: block;
        line-height: 1.3;
    }
    .fat-nav ul li ul{
        width: 100%;
        display: block;
    }
    .fat-nav ul li ul li{
        padding: 0 0 15px 60px;
    }
    .fat-nav ul li ul li:first-child{
        padding-top: 10px;
    }
    .fat-nav ul li ul li a{
        font-size: 16px;
    }
    .fat-nav ul li img.insta{
        width: 22px;
        padding: 0;
        margin-right: 5px;
    }
    .fat-nav ul li.recruit a{
        display: inline-block;
        background-color: #773b00;
        color: #fff;
        width: auto;
        line-height: 1;
        padding: 5px .5em;
    }
    .fat-nav ul.store_link li{
        padding-left: 40px;
    }
    .fat-nav ul.store_link li.shop_name{
        font-size: 18px;
        line-height: 1.3;
    }
    .fat-nav ul.store_link li.shop_name span{
        font-size: 14px;
        display: block;
        width: 100%;
        line-height: 1;
    }
    .fat-nav ul.store_link li.order_btn a{
        font-size: 18px;
        padding-top: 10px;
    }
    .fat-nav .sp_linkbox{
        width: calc(100% - 10.666%);
        display: flex;
        justify-content: center;
        margin: 15px auto 40px;
        padding-bottom: 25px;
        border-bottom: 1px solid var(--main_color);
    }
    .fat-nav .sp_linkbox div{
        width: 33.333%;
        max-width: 200px;
        padding: 0 5px;
    }
    .fat-nav .copy{
        text-align: center;
        font-size: 12px;
        padding-bottom: 50px;
    }
}

/* *****************************************************************
フッター
***************************************************************** */
footer {
    width: 100%;
    height: 192px;
    text-align: center;
    padding: 30px 0 25px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
footer .shop{
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    padding-top: 1.5em;
}
footer .add{
    font-size: 16px;
    padding-bottom: 2em;
}
footer nav{
    margin-bottom: 5px;
}
footer nav ul{
    display: flex;
    justify-content: center;
}
footer nav ul li a{
    color: var(--main_color);
}
footer nav ul li::after{
    content: "｜";
    padding-left: 1em;
    margin-right: 1em;
}
footer nav ul li:last-child::after{
    content: "";
    padding-left: 0;
    margin-right: 0;
}
footer .copy{
    font-size: 12px;
}
@media (max-width: 850px) {
    footer {
        height: auto;
        padding: 15px;
    }
    footer .shop{
        font-size: 16px;
        padding-top: 1em;
    }
    footer .add{
        font-size: 14px;
        padding-bottom: 1em;
    }
    footer .copy{
        font-size: 10px;
    }
}

/* *****************************************************************
翻訳ボタン
***************************************************************** */
.gt_switcher_wrapper{
    width: auto;
    right: 2% !important;
    left: auto !important;
    bottom: auto!important;
    top: 20px!important;
    z-index: 11 !important;
    background-color: #773b00;
    border-radius: 20px;
    position: relative;
    padding-right: 15px;
}
.gt_switcher_wrapper::after{
    content: "";
    position: absolute;
    top: 13px;
    right: 14px;
    width: 8px;
    height: 8px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(-45deg);
}
select#gtranslate_selector,select.gt_selector{
    border: none;
    color: #fff;
    font-family: Times,'Noto Serif JP', serif;
    font-size: 16px;
    padding: .5em 1em .5em 1.5em;
    background-color: transparent;
    cursor: pointer;
}
select.gt_selector{
    -webkit-appearance: none;
    appearance: none;
}
@media screen and (max-width: 850px) {
    .gt_switcher_wrapper {
        right: 70px !important;
        top: 15px!important;
    }
    .gt_switcher_wrapper::after{
        top: 11px;
    }
    select#gtranslate_selector,select.gt_selector{
        font-size: 14px;
    }
}

