@charset "UTF-8";

/*------------------------------------------------------
    た い せ つ な お し ら せ

    このcssはsassフォルダの中のscssファイルで管理されています。
    編集する際は必ずcssではなく、必ずscssファイルを編集してください。



-------------------------------------------------------*/


/*------------------------------------------------------

 reset

/*-----------------------------------------------------*/

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;
}

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;
    padding: 0;
}

input,
select {
    vertical-align: middle;
}

ol,
ul {
    list-style: none;
}


/*$red : #B51515;*/


/*------------------------------------------------------

 module

/*-----------------------------------------------------*/

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    font-size: 1.6rem;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
}

img {
    max-width: 100%;
    max-height: 100%;
    vertical-align: bottom;
    height: auto;
}

p {
    line-height: 1.6;
    font-size: 1.4rem;
    color: #333;
}

@media (min-width: 768px) {
    p {
        font-size: 1.6rem;
    }
}

a {
    transition: 0.2s;
    color: #333;
}

a:hover {
    opacity: 0.85;
    transition: 0.2s;
    text-decoration: none;
    color: #D13A2B;
}

a.anchor {
    display: block;
    padding-top: 46px;
    margin-top: -46px;
}

@media (min-width: 768px) {
    a.anchor {
        padding-top: 60px;
        margin-top: -60px;
    }
}


/* ---------------------------------
    スクロール途中からヘッダー固定
---------------------------------- */

#nav-pc.m_fixed {
    left: 0;
    top: 0;
    position: fixed;
    width: 100%;
    z-index: 100;
    box-shadow: 0 6px 7px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    #nav-pc.m_fixed ul li a {
        padding: 0;
    }
}

@media (min-width: 768px) {
    #nav-pc.m_fixed ul li a i {
        margin-bottom: 10px;
    }
}


/* ---------------------------------
    装飾設定
---------------------------------- */

.yellow-line {
    background: linear-gradient(transparent 50%, yellow 50%);
    font-weight: 700;
}


/* ---------------------------------
    コンテンツの幅設定
---------------------------------- */

#wrapper {
    width: 100%;
    min-width: 100%;
    overflow: hidden;
    position: relative;
}

@media (min-width: 768px) {
    #wrapper {
        position: relative;
        width: 100%;
        min-width: 1100px;
        margin: 0 auto;
        overflow: hidden;
    }
}

.inner {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}


/* ---------------------------------
    section-title - コンテンツ見出し
---------------------------------- */

.section-title {
    background: #D13A2B;
    color: #fff;
    font-size: 1.7rem;
    padding: 13px 10px;
    text-align: center;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 1.8rem;
        padding: 40px 10px;
    }
}

.section-title span {
    font-family: nimbus-sans, sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0;
    margin-top: 8px;
    font-size: 3.0rem;
    display: block;
}

@media (min-width: 768px) {
    .section-title span {
        font-size: 4.5rem;
        margin-top: 15px;
    }
}


/* ---------------------------------
    btn-arrow
---------------------------------- */

.btn-arrow {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 240px;
    position: relative;
}

.btn-arrow:hover:before,
.btn-arrow:hover:after {
    right: 17%;
}

.btn-arrow:before,
.btn-arrow:after {
    content: '';
    display: block;
    position: absolute;
    right: 20%;
    height: 1px;
    background: #141414;
    transition: 0.3s;
}

.btn-arrow:before {
    width: 30px;
    transform: translate(30px, 0px);
}

.btn-arrow:after {
    width: 7px;
    transform-origin: right center;
    transform: translate(30px, 0px) rotate(25deg);
}

.btn-arrow a {
    background-color: #fff;
    border: 1px solid #141414;
    width: inherit;
    display: block;
    text-decoration: none;
    color: #141414;
    padding: 20px 10px;
    font-size: 1.4rem;
    text-align: center;
}

.btn-arrow a:hover {
    opacity: 1;
}


/* ---------------------------------
    header btn-arrow
---------------------------------- */

.btn-arrow.btn-arrow-header-pc {
    width: 280px;
    margin-right: 25px;
}

.btn-arrow.btn-arrow-header-pc a {
    color: #fff;
    border: 1px solid #fff;
    background: #D13A2B;
    font-size: 1.8rem;
    font-weight: 700;
}

.btn-arrow.btn-arrow-header-pc:before,
.btn-arrow.btn-arrow-header-pc:after {
    background: #fff;
}


/* ---------------------------------
    nav sp
---------------------------------- */

#nav-sp {
    border-top: 3px solid #D13A2B;
    width: 100%;
}

#nav-sp ul {
    background: #fff;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

#nav-sp ul li {
    width: 16.66666666666666%;
}

#nav-sp ul li a {
    background: #462f22;
    color: #EAEAEA;
    font-size: 1.2rem;
    display: block;
    /*height: 45px;
                line-height: 45px;*/
    line-height: 20px;
    text-align: center;
    font-weight: bold;
    padding: 5px 0;
}

#nav-sp ul li a i {
    font-size: 16px;
}

#nav-sp ul li:last-child a {
    background: #D13A2B;
    color: #fff;
}

#nav-sp.m_fixed {
    left: 0;
    position: fixed;
    top: 0;
    z-index: 1000;
}

#nav-sp.nav-sp-sub-page {
    margin-bottom: 0 !important;
}


/* ---------------------------------
    header pc
---------------------------------- */

#header-pc {
    background: #fff;
    padding-top: 20px;
}

#header-pc-wrap {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

#header-pc-wrap .header-pc-top {
    min-width: 1100px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

#header-pc-wrap .header-pc-top .left a img {
    width: 220px;
}

#header-pc-wrap .header-pc-top .right {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

#header-pc-wrap .header-pc-top .right .tel {
    /* margin-left: 25px; */
}

#header-pc-wrap .header-pc-top .right .tel i {
    font-size: 1.8rem;
}

#header-pc-wrap .header-pc-top .right .tel span {
    font-size: 2.5rem;
}

#nav-pc {
    min-width: 1100px;
    background: #fff;
}

#nav-pc ul {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: space-between;
    margin-bottom: 12px;
    margin-top: 12px;
}

#nav-pc ul li {
    width: 20%;
    border-right: 1px solid #ddd;
}

#nav-pc ul li:last-child {
    border-right: none;
}

#nav-pc ul li a {
    text-align: center;
    padding: 15px 0;
    display: block;
    font-weight: 700;
    position: relative;
    z-index: 10;
    transition: all .7s;
}

#nav-pc ul li a::after {
    position: absolute;
    bottom: -16px;
    left: 0;
    content: '';
    width: 100%;
    height: 5px;
    background: #D13A2B;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

#nav-pc ul li a:hover::after {
    bottom: -12px;
    opacity: 1;
    visibility: visible;
}

#nav-pc ul li a i {
    font-size: 24px;
    margin-bottom: 15px;
    /*transition: all .7s;*/
}

#nav-pc .logo-scroll-show {
    display: none;
}


/* ---------------------------------
    404ページ
---------------------------------- */

.error-404 {
    margin-top: 50px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 1000px;
    margin: 80px auto;
}

.error-404 h2 {
    font-size: 2.0rem;
    font-weight: 700;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .error-404 h2 {
        font-size: 3.0rem;
    }
}

.error-404 section {
    margin: 30px 0;
}

.error-404 section h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.error-404 section ul li {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .error-404 section ul li {
        font-size: 1.5rem;
    }
}


/* ---------------------------------
    PCでスクロールすると表示 予約はこちらボタン
---------------------------------- */

#btn-scroll-reserve {
    width: 180px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    opacity: 1;
    z-index: 100;
    display: none;
}

@media (min-width: 768px) {
    #btn-scroll-reserve {
        display: block;
    }
}

#btn-scroll-reserve a:hover {
    opacity: 1;
}

#btn-scroll-reserve a img {
    transition-duration: 0.2s;
}

#btn-scroll-reserve a img:hover {
    transform: scale(1.1);
    transition-duration: 0.2s;
}


/* ---------------------------------
    メインビジュアル
---------------------------------- */

#mv-sp {
    position: relative;
    height: 100%;
    display: block;
}

#mv-sp .mv-sp-img {
    width: 100%;
}

#mv-sp .mv-sp-img img {
    width: 100%;
}

#mv-sp .logo {
    /*visibility: hidden;*/
    width: 50%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
}

#mv-sp .logo p {
    color: #fff;
}

#mv-sp .logo img {
    width: 80%;
}

#mv-pc {
    position: relative;
}

#mv-pc .mv-pc-img {
    width: 100%;
    /*height: 350px;*/
}

#mv-pc .mv-pc-img img {
    width: 100%;
    object-fit: cover;
}

#mv-pc .mv-pc-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
}

#mv-pc .mv-pc-text .logo {
    visibility: hidden;
}

#mv-pc .mv-pc-text .logo img {
    width: 160px;
}

@media (min-width: 992px) {
    #mv-pc .mv-pc-text .logo img {
        width: 220px;
    }
}

@media (min-width: 1200px) {
    #mv-pc .mv-pc-text .logo img {
        width: 260px;
    }
}

#mv-pc .mv-pc-text p {
    visibility: hidden;
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    margin-top: 35px;
    /*padding: 30px;
            background: radial-gradient(rgba(0, 0, 0, 0.9) 20%, rgba(0, 0, 0, 0) 60%);
            border-radius: 24px;*/
}

@media (min-width: 992px) {
    #mv-pc .mv-pc-text p {
        font-size: 2.0rem;
    }
}

@media (min-width: 1200px) {
    #mv-pc .mv-pc-text p {
        font-size: 2.6rem;
    }
}


/* ---------------------------------
    リード部分
---------------------------------- */

.read-contents {
    margin-top: 25px;
    margin-bottom: 25px;
}

@media (min-width: 768px) {
    .read-contents {
        margin-top: 50px;
        margin-bottom: 50px;
    }
}

.read-contents h1 {
    /*font-family: ten-mincho-text, serif;*/
    font-family: source-han-sans-japanese, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.8rem;
    line-height: 1.6;
}

@media (min-width: 992px) {
    .read-contents h1 {
        text-align: center;
        font-size: 3.0rem;
    }
}

.read-contents p {
    margin-top: 15px;
}

@media (min-width: 992px) {
    .read-contents p {
        text-align: center;
        margin-top: 30px;
        font-size: 1.8rem;
    }
}


/* ---------------------------------
    リード スライダー
---------------------------------- */

#read-section {
    position: relative;
}

@media (min-width: 768px) {
    #read-section {
        min-width: 1200px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

#read-section .top-read-bird-img {
    position: absolute;
    left: 3%;
    z-index: 10;
}

@media (min-width: 768px) {
    #read-section .top-read-bird-img {
        bottom: 6%;
        left: 8%;
        z-index: 0;
    }
}

#read-section .top-read-bird-img img {
    width: 38%;
}

@media (min-width: 768px) {
    #read-section .top-read-bird-img img {
        width: 480px;
    }
}

#top-read-slider {
    margin-bottom: 45px;
    position: relative;
}

@media (min-width: 768px) {
    #top-read-slider {
        display: flex;
        justify-content: space-between;
        flex-flow: row-reverse;
        max-width: 1200px;
        margin: 30px auto 80px;
        order: 2;
    }
}

#read-slider {
    width: 100%;
    padding: 0;
    margin: 0;
}

@media (min-width: 768px) {
    #read-slider {
        max-width: 80%;
        position: relative;
    }
}

#read-slider.prev {
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 100;
    background: #73B295;
    color: #fff;
    padding: 10px 10px;
    transform: translateY(-100%) translateX(0%);
}

#read-slider.next {
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 100;
    background: #73B295;
    color: #fff;
    padding: 10px 10px;
    transform: translateY(-100%) translateX(0%);
}

#read-slider li p {
    margin-top: 15px;
    font-size: 13px;
    margin-bottom: 0;
    padding: 0 20px 20px;
}

@media (min-width: 768px) {
    #read-slider li p {
        font-size: 18px;
        margin-top: 20px;
    }
}

.slide-item img {
    width: 100%;
}

#read-thumbnail-list {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    list-style-type: none;
}

@media (min-width: 768px) {
    #read-thumbnail-list {
        display: block;
        margin-top: 70px;
    }
}

#read-thumbnail-list li {
    list-style-type: none;
}

#read-thumbnail-list li:last-child {
    margin-right: 0;
}

@media (min-width: 768px) {
    #read-thumbnail-list li:last-child {
        margin-right: 10px;
    }
}

@media (min-width: 768px) {
    #read-thumbnail-list li {
        max-width: 220px;
        margin-bottom: 15px;
    }
}

.thumbnail-item {
    flex: 0 1 25%;
    margin-bottom: 10px;
    box-sizing: border-box;
    position: relative;
    margin-right: 10px;
}

.thumbnail-item:after {
    content: '';
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: .3s opacity linear;
}

.thumbnail-item img {
    width: 100%;
    margin: 0 auto;
}

.thumbnail-item.thumbnail-current {
    border: 1px solid #141414;
}

@media (min-width: 768px) {
    .thumbnail-item.thumbnail-current {
        border: 1px solid #141414;
    }
}

.thumbnail-item.thumbnail-current:after {
    opacity: 0;
}


/*-----------------------------
サービス内容
------------------------------*/

#topics-section .container ul {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
}

@media (min-width: 768px) {
    #topics-section .container ul {
        align-items: baseline;
        justify-content: space-between;
    }
}

#topics-section .container ul li {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
}

@media (min-width: 768px) {
    #topics-section .container ul li {
        width: 31%;
    }
}

#topics-section .container ul li p.description {
    margin: 10px auto 30px;
}


/* ---------------------------------
    osusume-section
---------------------------------- */

#osusume-section .osusume-contentns-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
}

@media (min-width: 768px) {
    #osusume-section .osusume-contentns-wrapper {
        padding-top: 75px;
        padding-bottom: 75px;
    }
}

#osusume-section .osusume-contents {
    background: url(../images/bg_gray_transparent.png);
    padding: 15px 20px;
    /*@include border-sp;*/
    border: 1px solid #000;
}

@media (min-width: 768px) {
    #osusume-section .osusume-contents {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 50px 70px;
        /*@include border-pc;*/
    }
}

#osusume-section .osusume-contents .osusume-text .read {
    font-size: 1.6rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    #osusume-section .osusume-contents .osusume-text .read {
        font-size: 2.0rem;
    }
}

@media (min-width: 992px) {
    #osusume-section .osusume-contents .osusume-text .read {
        font-size: 2.6rem;
    }
}

#osusume-section .osusume-contents .osusume-text h2 {
    margin: 18px 0;
}

@media (min-width: 768px) {
    #osusume-section .osusume-contents .osusume-text h2 {
        margin: 40px auto;
    }
}

#osusume-section .osusume-contents .osusume-text .osusume-reason-box ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 40px 0;
}

#osusume-section .osusume-contents .osusume-text .osusume-reason-box ul li {
    width: 30%;
}

#osusume-section .osusume-contents .osusume-text .osusume-reason-box ul li p {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

#osusume-section .osusume-contents .osusume-text .osusume-reason-box ul li img {
    width: 100%;
}

#osusume-section .osusume-contents .osusume-text .btn-arrow {
    margin: 30px auto;
}

@media (min-width: 768px) {
    #osusume-section .osusume-contents .osusume-text .btn-arrow {
        width: 350px;
    }
}

#osusume-section .osusume-contentns-wrapper.first {
    background: url(/wp-content/uploads/2020/03/osusume_01_bg_sp.jpg) no-repeat;
    background-size: cover;
}

@media (min-width: 768px) {
    #osusume-section .osusume-contentns-wrapper.first {
        background: url(/wp-content/uploads/2020/03/osusume_01_bg.jpg) no-repeat;
        background-size: 100%;
    }
}

#osusume-section .osusume-contentns-wrapper.first .osusume-img {
    margin-top: -50px;
    margin-left: auto;
    margin-right: -40px;
    min-width: 280px;
    max-width: 100%;
}

@media (min-width: 544px) {
    #osusume-section .osusume-contentns-wrapper.first .osusume-img {
        max-width: 600px;
    }
}

@media (min-width: 768px) {
    #osusume-section .osusume-contentns-wrapper.first .osusume-img {
        max-width: 856px;
        margin-top: -120px;
        margin-right: -120px;
    }
}

#osusume-section .osusume-contentns-wrapper.first .osusume-img img {
    width: 100%;
}

@media (min-width: 768px) {
    #osusume-section .osusume-contentns-wrapper.first .osusume-text {
        width: 60%;
        margin-right: 20px;
    }
}

#osusume-section .osusume-contentns-wrapper.first .osusume-text .read {
    margin-top: 12px;
}

@media (min-width: 768px) {
    #osusume-section .osusume-contentns-wrapper.first .osusume-text .text {
        font-size: 1.8rem;
        line-height: 1.8;
    }
}

#osusume-section .osusume-contentns-wrapper.first .osusume-text h2 {
    width: 80%;
    max-width: 420px;
}

#osusume-section .osusume-contentns-wrapper.first .osusume-text h2 img {
    width: 100%;
}

#osusume-section .osusume-contentns-wrapper.second {
    background: url(/wp-content/uploads/2020/03/osusume_02_bg_sp.jpg) no-repeat;
    background-size: cover;
}

@media (min-width: 768px) {
    #osusume-section .osusume-contentns-wrapper.second {
        background: url(/wp-content/uploads/2020/03/osusume_02_bg.jpg) no-repeat;
        background-size: 100%;
    }
}

#osusume-section .osusume-contentns-wrapper.second .osusume-img {
    margin-top: -50px;
    margin-left: -40px;
    margin-right: auto;
    min-width: 280px;
    max-width: 100%;
}

@media (min-width: 544px) {
    #osusume-section .osusume-contentns-wrapper.second .osusume-img {
        max-width: 600px;
    }
}

@media (min-width: 768px) {
    #osusume-section .osusume-contentns-wrapper.second .osusume-img {
        max-width: 748px;
        margin-top: -120px;
        margin-left: -120px;
    }
}

#osusume-section .osusume-contentns-wrapper.second .osusume-img img {
    width: 100%;
}

@media (min-width: 768px) {
    #osusume-section .osusume-contentns-wrapper.second .osusume-text {
        width: 60%;
        margin-left: 30px;
    }
}

#osusume-section .osusume-contentns-wrapper.second .osusume-text .read {
    margin-top: 12px;
}

@media (min-width: 768px) {
    #osusume-section .osusume-contentns-wrapper.second .osusume-text .text {
        font-size: 1.8rem;
        line-height: 1.8;
    }
}

#osusume-section .osusume-contentns-wrapper.second .osusume-text h2 {
    width: 80%;
    max-width: 420px;
}

#osusume-section .osusume-contentns-wrapper.second .osusume-text h2 img {
    width: 100%;
}


/* ---------------------------------
    menu-section - メニュー
---------------------------------- */

#menu-section .food-wrap-title {
    font-family: nimbus-sans, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 2.2rem;
    color: #D13A2B;
    position: relative;
    padding-left: 35px;
    margin: 30px 0 20px;
}

@media (min-width: 768px) {
    #menu-section .food-wrap-title {
        font-size: 3.5rem;
        padding-left: 80px;
        margin: 80px 0 40px;
    }
}

#menu-section .food-wrap-title::after {
    position: absolute;
    left: 0;
    content: "";
    width: 28px;
    height: 28px;
    background: #D13A2B;
    margin-right: 10px;
}

@media (min-width: 768px) {
    #menu-section .food-wrap-title::after {
        width: 60px;
        height: 60px;
    }
}

.course-menu-wrap {
    padding: 0 15px 30px;
}

.course-menu-wrap .course-box {
    /* @include border-sp;*/
    border: 1px solid #000;
    padding: 20px;
    background: url(../images/bg_gray.jpg);
    position: relative;
}

@media (min-width: 768px) {
    .course-menu-wrap .course-box {
        padding: 70px;
        /*@include border-pc;*/
    }
}

.course-menu-wrap .course-box .head {
    margin-bottom: 20px;
}

.course-menu-wrap .course-box .head h3 {
    font-size: 2.0rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .course-menu-wrap .course-box .head h3 {
        font-size: 3.0rem;
    }
}

.course-menu-wrap .course-box .head .course-fee {
    font-size: 2.0rem;
    color: #D13A2B;
    font-weight: 700;
}

@media (min-width: 768px) {
    .course-menu-wrap .course-box .head .course-fee {
        font-size: 3.0rem;
    }
}

.course-menu-wrap .course-box .head .course-fee .after {
    font-size: 1.3rem;
    margin-left: 5px;
}

.course-menu-wrap .course-box .tag {
    margin-bottom: 20px;
}

.course-menu-wrap .course-box .tag ul {
    display: flex;
}

.course-menu-wrap .course-box .tag ul li {
    padding: 10px;
    border: 1px solid #141414;
    font-weight: 700;
    margin-right: 15px;
    font-size: 1.3rem;
}

@media (min-width: 768px) {
    .course-menu-wrap .course-box .tag ul li {
        font-size: 1.6rem;
    }
}

.course-menu-wrap .course-box .tag ul li:last-child {
    margin-right: 0;
}

.course-menu-wrap .course-box .text {
    margin-bottom: 20px;
}

.course-menu-wrap .course-box .course-menu-list li {
    font-size: 1.2rem;
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

@media (min-width: 768px) {
    .course-menu-wrap .course-box .course-menu-list li {
        font-size: 1.5rem;
    }
}

.course-menu-wrap .course-box .course-menu-list li:last-child {
    margin-bottom: 0;
}

.course-menu-wrap .course-box .course-menu-list li::after {
    position: absolute;
    left: 0;
    top: 2px;
    content: "";
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    background: #D13A2B;
}

.course-menu-wrap .course-box .deco {
    position: absolute;
    right: 15px;
    top: -70px;
    width: 18%;
    max-width: 100px;
}

@media (min-width: 544px) {
    .course-menu-wrap .course-box .deco {
        top: -120px;
    }
}

.course-menu-wrap .course-box .deco img {
    width: 100%;
}

@media (min-width: 768px) {
    .course-menu-wrap .flex-box {
        display: flex;
    }
}

.course-menu-wrap .course-image {
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .course-menu-wrap .course-image {
        max-width: 1000px;
    }
}

.course-menu-wrap .course-image img {
    width: 100%;
}

@media (min-width: 768px) {
    .course-menu-wrap .course-image img {
        width: 820px;
    }
}

@media (min-width: 768px) {
    .course-menu-wrap .course-box-first {
        width: 55%;
        background: url(../images/bg_gray_transparent_90.png);
        margin-left: -200px;
        margin-top: 130px;
    }
}

.course-menu-wrap .course-other-box .course-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 25px;
}

.course-menu-wrap .course-other-box .course-box .course-box-inner {
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px dashed #141414;
}

.course-menu-wrap .course-other-box .course-box .course-box-inner:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

@media (min-width: 992px) {
    .course-menu-wrap .course-other-box .course-box .course-box-inner {
        width: 48%;
        border-right: 1px dashed #141414;
        border-bottom: none;
        padding-right: 4%;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .course-menu-wrap .course-other-box .course-box .course-box-inner:last-child {
        border-right: none;
        padding-right: 0;
    }
}

.course-menu-wrap .attention {
    font-size: 1.6rem;
    color: #D13A2B;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 15px;
    text-align: center;
}

@media (min-width: 768px) {
    .course-menu-wrap .attention {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }
}

.course-menu-wrap .attention a {
    color: #D13A2B;
}

.set-menu-wrap {
    margin-top: 65px;
    margin-bottom: 65px;
}

@media (min-width: 768px) {
    .set-menu-wrap {
        margin-top: 80px;
        margin-bottom: 80px;
    }
}

.set-menu-wrap .set-menu-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.set-menu-wrap .set-menu-box .set-menu-image {
    width: 100%;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .set-menu-wrap .set-menu-box .set-menu-image {
        width: 52%;
        margin-bottom: 0;
    }
}

.set-menu-wrap .set-menu-box .set-menu-text {
    border: 6px solid #141414;
    padding: 20px;
    width: 100%;
    background: url(../images/bg_gray.jpg);
}

@media (min-width: 768px) {
    .set-menu-wrap .set-menu-box .set-menu-text {
        width: 46%;
        border: 8px solid #141414;
        padding: 70px;
    }
}

.set-menu-wrap .set-menu-box .set-menu-text .point {
    font-size: 1.8rem;
    color: #D13A2B;
    font-weight: 700;
}

@media (min-width: 768px) {
    .set-menu-wrap .set-menu-box .set-menu-text .point {
        font-size: 3.0rem;
    }
}

.set-menu-wrap .set-menu-box .set-menu-text .set-menu {
    margin: 20px 0;
}

.set-menu-wrap .set-menu-box .set-menu-text .set-menu h3 {
    font-size: 2.0rem;
    font-weight: 700;
    margin-bottom: 5px;
}

@media (min-width: 768px) {
    .set-menu-wrap .set-menu-box .set-menu-text .set-menu h3 {
        font-size: 3.0rem;
    }
}

.set-menu-wrap .set-menu-box .set-menu-text .set-menu h3 span {
    color: #D13A2B;
    display: inline-block;
    margin-left: 10px;
}

.set-menu-wrap .set-menu-box .set-menu-text .set-menu h3 span::after {
    content: "(税込)";
    font-size: 1.3rem;
    margin-left: 5px;
}

.ippin-menu-head {
    margin-top: 65px;
}

@media (min-width: 768px) {
    .ippin-menu-head {
        margin-top: 120px;
    }
}

@media (min-width: 1600px) {
    .ippin-menu-head .ippin-menu-main-image {
        width: calc(100vw - 280px);
    }
}

.ippin-menu-head .ippin-menu-main-image-sp {
    width: calc(100vw - 15px);
}

.ippin-menu-contents .menu-list-wrap {
    margin-top: 20px;
}

.ippin-menu-contents .menu-list-wrap ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ippin-menu-contents .menu-list-wrap ul li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

@media (min-width: 768px) {
    .ippin-menu-contents .menu-list-wrap ul li {
        margin: 40px 0;
    }
}

.ippin-menu-contents .menu-list-wrap ul li .image {
    min-width: 280px;
    width: 80%;
}

.ippin-menu-contents .menu-list-wrap ul li .image img {
    max-width: 100%;
}

@media (min-width: 768px) {
    .ippin-menu-contents .menu-list-wrap ul li .image {
        width: 55%;
    }
}

.ippin-menu-contents .menu-list-wrap ul li .text {
    width: 100%;
}

@media (min-width: 768px) {
    .ippin-menu-contents .menu-list-wrap ul li .text {
        width: 40%;
    }
}

.ippin-menu-contents .menu-list-wrap ul li .text .fee {
    font-size: 1.8rem;
    font-weight: 700;
    color: #D13A2B;
}

.ippin-menu-contents .menu-list-wrap ul li .text .fee::after {
    content: "(税込)";
    font-size: 1.3rem;
    margin-left: 5px;
}

@media (min-width: 768px) {
    .ippin-menu-contents .menu-list-wrap ul li .text .fee {
        font-size: 2.2rem;
    }
}

.ippin-menu-contents .menu-list-wrap ul li .text p {
    margin-top: 10px;
    font-size: 1.2rem;
}

@media (min-width: 768px) {
    .ippin-menu-contents .menu-list-wrap ul li .text p {
        margin-top: 0;
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .ippin-menu-contents .menu-list-wrap ul li {
        width: 48%;
    }
}

.ippin-menu-contents .menu-list-wrap ul li:nth-child(odd) .image {
    margin-right: auto;
}

.ippin-menu-contents .menu-list-wrap ul li:nth-child(odd) .text {
    margin-left: auto;
}

.ippin-menu-contents .menu-list-wrap ul li:nth-child(even) .image {
    margin-left: auto;
}

@media (min-width: 768px) {
    .ippin-menu-contents .menu-list-wrap ul li:nth-child(even) .image {
        margin-left: 0;
    }
}

.ippin-menu-contents .menu-list-wrap ul li:nth-child(even) .text {
    margin-right: auto;
}

@media (min-width: 768px) {
    .ippin-menu-contents .menu-list-wrap ul li:nth-child(even) .text {
        margin-right: 0;
    }
}

.drink-menu-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .drink-menu-wrap {
        margin-top: 75px;
        margin-bottom: 75px;
    }
}

.drink-menu-wrap .image {
    width: 100%;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .drink-menu-wrap .image {
        width: 40%;
        margin-bottom: 0;
    }
}

.drink-menu-wrap .image img {
    width: 100%;
}

.drink-menu-wrap .text {
    width: 100%;
}

@media (min-width: 768px) {
    .drink-menu-wrap .text {
        width: 56%;
    }
}

.drink-menu-wrap .text h3 {
    font-size: 2.0rem;
    font-weight: 700;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .drink-menu-wrap .text h3 {
        font-size: 3.0rem;
    }
}

.drink-menu-wrap .text h3 span {
    color: #D13A2B;
}

.drink-menu-wrap .text h3 span::after {
    content: "(税込)";
    font-size: 1.3rem;
    margin-left: 3px;
}

.drink-menu-wrap .text .point {
    margin: 20px 0;
    font-weight: 700;
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .drink-menu-wrap .text .point {
        font-size: 1.8rem;
    }
}

.drink-menu-wrap .text ul li {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

@media (min-width: 768px) {
    .drink-menu-wrap .text ul li {
        font-size: 1.6rem;
    }
}

.drink-menu-wrap .text ul li span {
    color: #D13A2B;
    margin-left: 5px;
}

.drink-menu-wrap .text ul li span::after {
    content: "(税込)";
    font-size: 1.1rem;
    margin-left: 3px;
}

.drink-menu-wrap .text ul li:last-child {
    margin-bottom: 0;
}

.menu-detail-container-fluid {
    background: url(../images/bg_zara.jpg);
    text-align: center;
    margin-top: 30px;
    padding-top: 40px;
    padding-bottom: 40px;
}

@media (min-width: 768px) {
    .menu-detail-container-fluid {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (min-width: 768px) {
    .menu-detail-container-fluid {
        margin-top: 50px;
    }
}

.menu-detail-container-fluid .menu-detail .menu-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.menu-detail-container-fluid .menu-detail .menu-list li {
    width: 48%;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .menu-detail-container-fluid .menu-detail .menu-list li {
        width: 32%;
    }
}

.menu-detail-container-fluid .menu-detail .menu-list li img {
    border: 3px solid #141414;
    width: 100%;
}

@media (min-width: 768px) {
    .menu-detail-container-fluid .menu-detail .menu-list li img {
        border: 6px solid #141414;
    }
}

.menu-detail-container-fluid .menu-detail-kushi {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 768px) {
    .menu-detail-container-fluid .menu-detail-kushi {
        justify-content: center;
    }
}

.menu-detail-container-fluid .menu-detail-kushi .title {
    width: 48%;
    margin-bottom: 30px;
}

.menu-detail-container-fluid .menu-detail-kushi .menu-list {
    width: 48%;
}

.menu-detail-container-fluid .menu-detail-kushi .menu-list li {
    text-align: left;
}

.menu-detail-container-fluid .menu-detail-kushi .menu-list li img {
    border: 3px solid #141414;
    max-width: 500px;
    width: 100%;
}

@media (min-width: 768px) {
    .menu-detail-container-fluid .menu-detail-kushi .menu-list li img {
        border: 6px solid #141414;
    }
}

@media (min-width: 768px) {
    .menu-detail-container-fluid .menu-detail-drink .menu-list li {
        width: 23.5%;
    }
}

.menu-detail-container-fluid .attention {
    margin: 20px auto 0;
    margin-top: 20px;
    font-weight: 700;
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .menu-detail-container-fluid .attention {
        font-size: 2.0rem;
        margin: 50px auto 0;
    }
}


/* ---------------------------------
    store-section - 店内紹介
---------------------------------- */

#store-section .read-wrapper {
    background: url(/wp-content/uploads/2023/10/store_bg_sp@2x_re1.jpg);
    background-size: cover;
    padding: 80px 0;
    background-position: 0 50%;
}

@media (min-width: 768px) {
    #store-section .read-wrapper {
        background: url(/wp-content/uploads/2023/10/store_bg_re1.jpg);
        background-size: cover;
        padding: 140px 0;
    }
}

#store-section .read-wrapper .title {
    text-align: center;
    margin: 0 auto;
    width: 80%;
}

@media (min-width: 768px) {
    #store-section .read-wrapper .title {
        width: 100%;
    }
}

#store-section .read-wrapper .title .text {
    font-size: 2.4rem;
}

@media (min-width: 768px) {
    #store-section .read-wrapper .title .text {
        font-size: 3.6rem;
    }
}

#store-section .read-wrapper .kazari {
    text-align: center;
    padding: 30px 0;
}

@media (min-width: 768px) {
    #store-section .read-wrapper .kazari {
        margin: 40px 0;
    }
}

#store-section .read-wrapper .kazari img {
    width: 100px;
}

@media (min-width: 768px) {
    #store-section .read-wrapper .kazari img {
        width: 106px;
    }
}

#store-section .read-wrapper p {
    color: #EAEAEA;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    #store-section .read-wrapper p {
        text-align: center;
        font-size: 1.8rem;
        line-height: 1.8;
        margin-bottom: 30px;
    }
}

#store-section .store-intro {
    margin: 30px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 768px) {
    #store-section .store-intro {
        margin: 85px auto;
    }
}

#store-section .store-intro .image {
    width: 100%;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    #store-section .store-intro .image {
        width: 58%;
    }
}

#store-section .store-intro .image img {
    width: 100%;
    object-fit: cover;
    height: 200px;
}

@media (min-width: 768px) {
    #store-section .store-intro .image img {
        width: 100%;
        object-fit: cover;
        height: 500px;
    }
}

#store-section .store-intro .text {
    width: 100%;
}

@media (min-width: 768px) {
    #store-section .store-intro .text {
        width: 40%;
    }
}

#store-section .store-intro .text h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 15px;
    font-weight: 700;
    border-bottom: 1px solid #333;
}

@media (min-width: 768px) {
    #store-section .store-intro .text h3 {
        font-size: 1.6rem;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
}

#store-section .store-intro .text h3 span {
    font-family: nimbus-sans, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #D13A2B;
    font-size: 3.0rem;
    display: block;
}

@media (min-width: 768px) {
    #store-section .store-intro .text h3 span {
        font-size: 5.0rem;
    }
}

#store-section .store-intro .text ul {
    margin-top: 10px;
}

#store-section .store-intro .text ul li {
    line-height: 1.6;
}

.loop-gallery {
    position: relative;
    display: flex;
    width: 100vw;
    height: 150px;
    height: calc(100vw * .26);
    overflow: hidden;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .loop-gallery {
        margin-bottom: 100px;
    }
}

.loop-gallery img {
    width: auto;
    height: 100%;
    will-change: transform;
}

@media screen and (min-width: 992px) {
    .loop-gallery img {
        width: auto;
        min-width: 110vw;
        height: 100%;
    }
}

.loop-gallery img:first-child {
    animation: loop 50s -25s linear infinite;
    backface-visibility: hidden;
    will-change: transform;
}

.loop-gallery img+img {
    animation: loop2 50s linear infinite;
}

@keyframes loop {
    0% {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes loop2 {
    0% {
        transform: translateX(0);
    }

    to {
        transform: translateX(-200%);
    }
}

#review-section {
    background: url(../images/bg_zara@2x.jpg);
    background-size: cover;
    padding-bottom: 30px;
    padding-bottom: 100px;
}

@media (min-width: 768px) {
    #review-section {
        background: url(../images/bg_zara.jpg);
        background-size: cover;
    }
}

#review-section .review-contents .read {
    margin-top: 30px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    #review-section .review-contents .read {
        margin-top: 70px;
        margin-bottom: 70px;
    }
}

#review-section .review-contents .read .image {
    margin: 0 auto 20px;
    text-align: center;
    width: 280px;
}

@media (min-width: 768px) {
    #review-section .review-contents .read .image {
        margin: 0 auto 40px;
    }
}

@media (min-width: 768px) {
    #review-section .review-contents .read .image {
        width: 400px;
    }
}

#review-section .review-contents .read .image img {
    width: 100%;
}

@media (min-width: 768px) {
    #review-section .review-contents .read p {
        text-align: center;
        font-size: 1.8rem;
        line-height: 2.0;
    }
}

.review-contents ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.review-contents ul li {
    position: relative;
    background: #fff;
    /*@include border-sp;*/
    border: 2px solid #000;
    width: 100%;
    padding: 8vw 5vw;
    margin-bottom: 40px;
    font-size: 1.4rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .review-contents ul li {
        width: 48%;
        padding: 40px 30px;
        font-size: 1.6rem;
        margin-bottom: 60px;
    }
}

.review-contents ul li:after,
.review-contents ul li:before {
    top: 100%;
    left: 75%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.review-contents ul li:after {
    border-color: rgba(136, 183, 213, 0);
    border-top-color: #fff;
    border-width: 16px;
    margin-left: -22px;
}

.review-contents ul li:before {
    border-color: rgba(194, 225, 245, 0);
    border-top-color: #141414;
    border-width: 18px;
    margin-left: -24px;
}

.recruit-link-box {
    margin-top: 30px;
    text-align: center;
}

.recruit-link-box a {
    color: #f1c469;
    text-decoration: underline;
    line-height: 1.5;
}


/* ---------------------------------
    welvome-wrap
---------------------------------- */

#welcome-wrap {
    margin-top: 30px;
}

@media (min-width: 768px) {
    #welcome-wrap {
        margin-top: 120px;
        margin-bottom: 120px;
    }
}

#welcome-wrap .image {
    margin: 0 auto;
    text-align: center;
}

#welcome-wrap .image img {
    width: 80%;
    max-width: 637px;
}

@media (min-width: 768px) {
    #welcome-wrap .image img {
        width: 100%;
    }
}


/* ---------------------------------
    info-section
---------------------------------- */

#info-section {
    background: url(../images/bg_zara@2x.jpg);
    background-size: cover;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 50px;
}

@media (min-width: 768px) {
    #info-section {
        padding-top: 0;
    }
}

#info-section .google-map {
    height: 380px;
    width: 90%;
    margin: 0 auto;
    z-index: 4;
    border: 6px solid #141414;
}

@media (min-width: 768px) {
    #info-section .google-map {
        height: auto;
        width: 50%;
        border: none;
    }
}

#info-section .store-information {
    width: 100%;
    background: url(/wp-content/uploads/2020/03/store_bg_sp@2x_re1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 50%;
    padding-top: 400px;
    padding-bottom: 60px;
    margin-top: -340px;
    z-index: 2;
}

@media (min-width: 768px) {
    #info-section .store-information {
        background: url(/wp-content/uploads/2020/03/store_bg_re1.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 50% 0;
        margin-top: 0;
        padding-top: 100px;
        padding-bottom: 80px;
    }
}

#info-section .store-information .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 768px) {
    #info-section .store-information {
        width: 50%;
    }
}

#info-section .store-information h3 {
    width: 100%;
    margin: 0 auto 40px;
    text-align: center;
}

#info-section .store-information h3 img {
    width: 200px;
}

@media (min-width: 768px) {
    #info-section .store-information h3 img {
        width: 300px;
    }
}

#info-section .store-information dl {
    color: #EAEAEA;
    line-height: 1.5;
    margin: 0 15px;
    font-size: 1.4rem;
}

@media (min-width: 768px) {
    #info-section .store-information dl {
        font-size: 1.6rem;
        width: 80%;
    }
}

#info-section .store-information dl dt {
    font-size: 1.6rem;
    width: 100%;
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {
    #info-section .store-information dl dt {
        font-size: 1.8rem;
    }
}

#info-section .store-information dl dd {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    border-bottom: 1px dotted;
    padding-bottom: 20px;
}

#info-section .store-information dl dd:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

#info-section .store-information dl dd span {
    font-size: 1.2rem;
    margin-top: 10px;
    display: inline-block;
}


/* ---------------------------------
    求人情報
---------------------------------- */

.recruit-section {
    padding-top: 30px;
    padding-bottom: 30px;
    background: #fff;
    padding: 40px 0;
    background: url(../images/bg_gray.jpg);
}

@media (min-width: 768px) {
    .recruit-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.recruit-section h3 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 10px !important;
    font-weight: 700;
}

@media (min-width: 768px) {
    .recruit-section h3 {
        font-size: 4.5rem;
    }
}

.recruit-section .read {
    text-align: center;
    font-weight: 700;
}

.recruit-section ul {
    margin-top: 15px;
    background: #f0efd6;
    padding: 15px;
    margin-bottom: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .recruit-section ul {
        margin-top: 30px;
        padding: 35px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}

.recruit-section ul li {
    font-size: 1.4rem;
}

@media (min-width: 768px) {
    .recruit-section ul li {
        font-size: 1.7rem;
        width: 48%;
    }
}

.recruit-section ul li span {
    background: #8e8d74;
    color: #fff;
    border-radius: 3px;
    display: inline-block;
    margin-right: 5px;
    padding: 5px 8px;
    font-size: 1.4rem;
    width: 80px;
    text-align: center;
}

@media (min-width: 768px) {
    .recruit-section ul li span {
        right: 10px;
        width: 100px;
        font-size: 1.7rem;
    }
}

.recruit-section ul li:not(:last-child) {
    border-bottom: 1px dotted;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

@media (min-width: 768px) {
    .recruit-section ul li:not(:last-child) {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
}

.recruit-section .bottom {
    text-align: center;
    margin-top: 20px;
}

.recruit-section .tel {
    margin: 10px auto;
    text-align: center;
}

@media (min-width: 768px) {
    .recruit-section .tel {
        margin: 15px auto 0;
    }
}

.recruit-section .tel a {
    font-size: 2.5rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .recruit-section .tel a {
        pointer-events: none;
        font-size: 3.0rem;
    }
}


/* ---------------------------------
    SNS
---------------------------------- */

#sns {
    background: url(../images/bg_zara.jpg);
    overflow: auto;
}

#sns .sns-container {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    margin: 30px auto;
}

@media (min-width: 768px) {
    #sns .sns-container {
        flex-flow: row nowrap;
        justify-content: space-around;
    }
}

#sns .sns-container #sns-facebook {
    width: 100% !important;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    #sns .sns-container #sns-facebook {
        width: 50% !important;
        margin-bottom: 0;
    }
}

#sns .sns-container #sns-insta {
    display: flex;
    justify-content: center;
    width: 100% !important;
}

@media (min-width: 768px) {
    #sns .sns-container #sns-insta {
        justify-content: space-around;
        width: 50% !important;
    }
}

#google_banner {
    margin: 30px auto;
}

a.cp_btn {
    position: relative;
    display: block;
    width: 280px;
    padding: 15px 20px;
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background: #9f5107;
    border: 1px solid #fff;
    overflow: hidden;
    letter-spacing: 1px;
}

a.cp_btn:before {
    content: "";
    position: absolute;
    top: 0px;
    left: -280px;
    height: 100%;
    width: 300px;
    background: #fff;
    opacity: 0.3;
    transition: .4s;
}

a.cp_btn:hover:before {
    left: 0;
}


/* ---------------------------------
    フッター
---------------------------------- */

footer {
    /*@include border-sp;*/
    padding-top: 40px;
    padding-bottom: 20px;
    /*background: url(../images/logo_black_transparent.png), $theme-color;*/
    background: #D13A2B;
    background-repeat: no-repeat, repeat;
    background-position: -50px 90%, center;
    background-size: 60% auto, 100% 100%;
}

@media (min-width: 768px) {
    footer {
        /*background: url(../images/logo_black_transparent.png), $theme-color;*/
        background: #D13A2B;
        background-repeat: no-repeat, repeat;
        background-position: 5% center, center;
        background-size: 25% auto, 100% 100%;
    }
}

@media (min-width: 768px) {
    footer {
        /*@include border-pc;*/
        padding-top: 80px;
        padding-bottom: 50px;
    }
}

footer h2 {
    width: 100%;
    margin: 0 auto 30px;
    text-align: center;
}

@media (min-width: 768px) {
    footer h2 {
        margin: 0 auto 40px;
    }
}

footer h2 img {
    width: 175px;
}

@media (min-width: 768px) {
    footer h2 img {
        width: 350px;
    }
}

footer .attention {
    color: #EAEAEA;
    text-align: center;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    footer .attention {
        font-size: 2.0rem;
        margin-bottom: 50px;
    }
}

footer .reserve {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

footer .reserve .tel {
    width: 100%;
}

@media (min-width: 768px) {
    footer .reserve .tel {
        width: 42%;
    }
}

footer .reserve .tel .icon {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

footer .reserve .tel .icon img {
    width: 30px;
}

@media (min-width: 768px) {
    footer .reserve .tel .icon img {
        width: 40px;
    }
}

footer .reserve .tel .icon span {
    font-family: nimbus-sans, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 3.0rem;
    color: #fff;
    margin-left: 10px;
}

@media (min-width: 768px) {
    footer .reserve .tel .icon span {
        font-size: 5.0rem;
    }
}

footer .reserve .tel p {
    text-align: center;
    color: #EAEAEA;
    margin-top: 10px;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

footer .reserve .web-reserve {
    width: 100%;
    margin-top: 30px;
}

@media (min-width: 768px) {
    footer .reserve .web-reserve {
        width: 27%;
        margin-top: 0;
    }
}

footer .reserve .web-reserve a {
    width: 90%;
    margin: 0 auto;
    display: block;
    padding: 20px 10px 20px 0px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    footer .reserve .web-reserve a {
        width: 100%;
    }
}

footer .footer-nav {
    margin-top: 40px;
}

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

footer .footer-nav ul {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 940px;
}

footer .footer-nav ul li {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

footer .footer-nav ul li:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    footer .footer-nav ul li {
        width: 16%;
    }
}

footer .footer-nav ul li a {
    color: #EAEAEA;
}

footer .copy {
    margin-top: 40px;
    /*color: #bdbdbd;*/
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
}

@media (min-width: 768px) {
    footer .copy {
        font-size: 1.4rem;
    }
}


/* メニュー仮 */

.party-plan-menu-wrap {
    width: 100%;
    background-color: white;
    padding: 15px;
    position: relative;
}

@media screen and (max-width: 544px) {
    .party-plan-menu-wrap {
        border-radius: 0;
    }
}

.party-plan-menu-wrap h4 {
    font-size: 18px;
    text-align: center;
    margin: 15px 0 30px;
}

@media screen and (max-width: 544px) {
    .party-plan-menu-wrap h4 {
        margin: 5px 0 15px;
    }
}

.party-plan-menu-wrap ul {
    box-sizing: border-box;
    border-bottom: 1px solid #808080;
}

.party-plan-menu-wrap ul.bb-n {
    border-bottom: none;
}

.party-plan-menu-wrap li {
    font-size: 14px;
    margin-bottom: 10px;
    text-indent: -1.2rem;
    padding-left: 2rem;
    line-height: 1.3em;
}

.party-plan-menu-wrap p {
    color: #808080;
    font-size: 10px;
}

.party-plan-link {
    position: absolute;
    bottom: 15px;
    right: 15px;
}

@media screen and (max-width: 768px) {
    .party-plan-menu-wrap li {
        font-size: 12px;
    }
}

.party-plan-menu-wrap dl {
    margin-bottom: 40px;
}

.party-plan-menu-wrap dl dt {
    line-height: 1.3em;
}

.party-plan-menu-wrap h4.ark {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin: 10px 0 15px;
}

.ingredients {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
}

.ingredients::after {
    content: '';
    border-top: 2px dotted;
    flex: 1 1 auto;
    order: 1;
    margin: 0 15px;
}

.ingredients dd {
    order: 2;
}

.ingredients dd::after {
    content: "(税込)";
    font-size: 1.1rem;
    margin-left: 3px;
}

@media screen and (max-width: 768px) {
    .ingredients {
        font-size: 12px;
    }

    .party-plan-menu-wrap dl:last-child {
        margin-bottom: 0;
    }
}

.party-ark-box {
    margin-right: 15px;
    margin-left: 15px;
}


/* 表示切り替え */

.pc-display {
    display: none;
}

@media (min-width: 768px) {
    .pc-display {
        display: block;
    }
}

.sp-display {
    display: block;
}

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


/* ---------------------------------
    宅配
---------------------------------- */

.takeout-fluid {
    width: 100%;
    background: url(../images/bg_gray.jpg);
    padding: 15px;
}

@media (min-width: 992px) {
    .takeout-fluid {
        width: 100%;
        padding: 80px 0;
    }
}

.takeout-fluid ul {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-flow: row wrap;
    padding: 10px;
}

@media (min-width: 992px) {
    .takeout-fluid ul {
        width: 90%;
        justify-content: space-between;
        padding: 50px;
    }
}

.takeout-fluid ul li {
    width: 100%;
    margin: 20px auto;
}

@media (min-width: 992px) {
    .takeout-fluid ul li {
        width: 31%;
        margin: 0;
    }
}

.takeout-fluid a {
    width: 100%;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .takeout-fluid a {
        width: 1200px;
    }
}


/*# sourceMappingURL=style.css.map */


/*------------------------------------------------------

	プライバシーポリシー

-------------------------------------------------------*/

.privacy-content {
    padding-top: 100px;
    padding-bottom: 100px;
}

.privacy-content h1 {
    font-size: 2.4rem;
    line-height: 2;
    font-weight: bold;
    text-align: center;
}

@media (min-width: 992px) {
    .privacy-content h1 {
        font-size: 4rem;
    }
}

.privacy-content h2 {
    font-size: 2rem;
    line-height: 2;
    text-align: left;
}

@media (min-width: 992px) {
    .privacy-content h2 {
        font-size: 2.8rem;
    }
}

.privacy-content h2::before {
    display: none;
}

.privacy-content h3 {
    line-height: 2;
    margin-top: 1rem;
}

.privacy-content ul {
    list-style: decimal;
    margin: revert;
    padding: revert;
}

.privacy-content dl {
    padding-left: 15px;
}