@charset "UTF-8";
html, body, div, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  overflow-y: scroll;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

input, textarea {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

a:focus {
  outline: none;
}

.both {
  clear: both;
}

.inline_block {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

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

table {
  width: 100%;
}

main {
  display: block;
}

.mt0 {
  margin-top: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.tCenter {
  text-align: center !important;
}

.tLeft {
  text-align: left !important;
}

.tRight {
  text-align: right !important;
}

.bold {
  font-weight: bold !important;
}

body {
  -webkit-text-size-adjust: none;
}

body {
  font-family: "Noto Sans Japanese", "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
  color: #2b1e15;
}

input[type="text"],
textarea,
select {
  outline: none;
  box-sizing: border-box;
}
input[type="text"]:placeholder-shown,
textarea:placeholder-shown,
select:placeholder-shown {
  color: #999999;
}
input[type="text"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  color: #999999;
}
input[type="text"]:-moz-placeholder,
textarea:-moz-placeholder,
select:-moz-placeholder {
  color: #999999;
}
input[type="text"]::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
  color: #999999;
}
input[type="text"]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
  color: #999999;
}

label.chkbox-custom {
  position: relative;
  overflow: hidden;
  display: inline-block;
  box-sizing: border-box;
  cursor: pointer;
}
label.chkbox-custom::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0px;
  top: 0;
  border: 1px solid #dfdfdf;
  background-color: #fff;
  border-radius: 3px;
  z-index: 1;
}
label.chkbox-custom::after {
  content: '';
  position: absolute;
  top: 9px;
  left: 6px;
  display: block;
  margin-top: -8px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #d7455d;
  border-bottom: 3px solid #d7455d;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  z-index: 1;
}
label.chkbox-custom input[type="checkbox"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  top: 1px;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #FFF;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}
label.chkbox-custom input[type="checkbox"]:checked {
  box-shadow: none;
}
label.chkbox-custom span {
  padding-left: 35px;
}

label.radio-custom {
  cursor: pointer;
  position: relative;
  padding: 10px 0;
  overflow: hidden;
  display: inline-block;
}
label.radio-custom::before {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 1px solid #dfdfdf;
  border-radius: 50%;
  left: 0px;
  top: 7px;
  content: '';
  z-index: 3;
}
label.radio-custom::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  left: 6px;
  top: 13px;
  background-color: #d7455d;
  z-index: 1;
}
label.radio-custom input[type="radio"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 24px;
  height: 24px;
  left: -37px;
  top: 11px;
  margin: 0px;
  outline: none;
  box-shadow: 40px -1px #FFF;
}
label.radio-custom input[type="radio"]:checked {
  box-shadow: none;
}
label.radio-custom span {
  padding-left: 45px;
}

@media screen and (min-width: 951px) {
  .sp {
    display: none !important;
  }

  html {
    overflow-x: hidden;
  }

  .fadeElement1 {
    transform: translateY(100px);
    opacity: 0;
  }
  .fadeElement1.on {
    transition: 1s;
    transform: translateY(0);
    opacity: 1;
  }

  .fadeElement2 {
    transform: translateY(130px);
    opacity: 0;
  }
  .fadeElement2.on {
    transition: 1.3s;
    transform: translateY(0);
    opacity: 1;
  }

  /*-------------------------------
  GLOBALNAVI
  -------------------------------*/
  #globalNavi {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 250px;
    height: 0;
    min-height: 900px;
    padding-top: 60px;
    text-align: center;
    background-color: #6c0218;
    opacity: 0;
    transition-duration: 1.5s;
    transition-timing-function: cubic-bezier(0.655, 0.04, 0, 1.005);
  }
  #globalNavi.on {
    height: 100%;
    opacity: 1;
  }
  #globalNavi.on .inner {
    opacity: 1;
  }
  #globalNavi .inner {
    opacity: 0;
    transition-delay: 1.4s;
    transition-duration: 0.5s;
  }
  #globalNavi nav {
    margin-top: 70px;
  }
  #globalNavi nav li:not(:nth-of-type(1)) {
    margin-top: 30px;
  }
  #globalNavi nav a {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
  }
  #globalNavi nav a::before {
    content: '';
    position: absolute;
    top: 9px;
    right: calc(50% - 115px);
    width: calc((250px - 100%) / 3);
    height: 2px;
    background-color: #fff;
    transition: 0.3s;
    transform: scale(0, 1);
    transform-origin: 100% 0;
  }
  #globalNavi nav a:hover::before {
    transform: scale(1, 1);
  }
  #globalNavi .information {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #fff;
  }
  #globalNavi .information .tel {
    margin-top: 10px;
    font-size: 16px;
  }
  #globalNavi .information .time {
    font-size: 12px;
  }

  /*-------------------------------
  CONTENTS
  -------------------------------*/
  #contents {
    padding-left: 250px;
  }

  /*-------------------------------
  FOOTER
  -------------------------------*/
  #globalFooter {
    padding: 70px 0 10px 250px;
    background-color: #23211d;
    text-align: center;
    color: #fff;
  }
  #globalFooter .contents-inner {
    max-width: 1140px;
    width: 68%;
    margin: 0 auto;
  }
  #globalFooter .description {
    margin-top: 25px;
    font-size: 16px;
  }
  #globalFooter .information {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    display: -webkit-flex;
    -webkit-justify-content: space-between;
    -webkit-align-items: flex-start;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    margin-top: 45px;
    padding-top: 40px;
    border-top: 1px solid #fff;
  }
  #globalFooter .information figure {
    width: 50%;
    padding-top: 10px;
  }
  #globalFooter .information figure img {
    width: 80%;
    max-width: 302px;
  }
  #globalFooter .information .tel-time {
    width: 50%;
    color: #bc9e5b;
    font-family: 'Roboto', sans-serif;
  }
  #globalFooter .information .tel-time .tel {
    font-size: 60px;
    font-weight: bold;
    line-height: 1;
    transition: 0.5s;
  }
}
@media screen and (min-width: 951px) and (max-width: 1300px) {
  #globalFooter .information .tel-time .tel {
    font-size: 35px;
  }
}
@media screen and (min-width: 951px) {
  #globalFooter .information .tel-time .time {
    font-size: 22px;
    transition: 0.5s;
  }
}
@media screen and (min-width: 951px) and (max-width: 1300px) {
  #globalFooter .information .tel-time .time {
    font-size: 16px;
  }
}
@media screen and (min-width: 951px) {
  #globalFooter .copyright {
    display: block;
    margin-top: 35px;
    text-align: center;
    font-size: 12px;
  }

  /*---------------------------
  ABOUT
  ---------------------------*/
  .about #contents {
    background-color: #ece2ca;
  }
  .about #contents .contents-header {
    display: table;
    width: 100%;
    height: 333px;
    background: url("../images/about/main_visual.jpg") no-repeat center center;
    background-size: cover;
  }
  .about #contents .contents-header h2 {
    display: table-cell;
    vertical-align: middle;
    padding-left: 20%;
  }
  .about #contents .local-navi ul {
    display: flex;
    justify-content: center;
    align-items: stretch;
    display: -webkit-flex;
    -webkit-justify-content: center;
    -webkit-align-items: stretch;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    margin-top: 40px;
  }
  .about #contents .local-navi ul li {
    padding: 0 10px;
    line-height: 1;
  }
  .about #contents .local-navi ul li:not(:nth-of-type(1)) {
    border-left: 1px solid #000;
  }
  .about #contents .local-navi ul li.current a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #1d1d1d;
    transform: scale(1, 1);
  }
  .about #contents .local-navi ul li a {
    position: relative;
    font-size: 18px;
    color: #282828;
    font-weight: bold;
    text-decoration: none;
  }
  .about #contents .local-navi ul li a::before {
    content: '';
    transition: 0.3s;
    transform: scale(0, 1);
  }
  .about #contents .media-box .sentence h3 {
    text-align: center;
  }
  .about #contents .media-box .sentence .lead-text {
    margin-top: 40px;
    font-size: 28px;
    font-weight: bold;
  }
  .about #contents .media-box .sentence .sub-lead {
    font-size: 22px;
    color: #cebc91;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
  }
  .about #contents .media-box .sentence p {
    margin-top: 20px;
    font-size: 18px;
    color: #2b1e15;
  }
  .about #contents .media-box .sentence .eng {
    margin-top: 15px;
    font-size: 18px;
    color: #a39678;
  }
  .about #contents .c-box01 {
    position: relative;
    margin-top: 140px;
  }
  .about #contents .c-box01 h3 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
  }
  .about #contents .c-box01 h3 span {
    position: relative;
    display: inline-block;
  }
  .about #contents .c-box01 h3 span::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -280px;
    width: 133px;
    height: 142px;
    background: url("../images/about/sec01_graphic01.png") no-repeat;
  }
  .about #contents .c-box01 .media-box {
    display: flex;
    justify-content: center;
    align-items: center;
    display: -webkit-flex;
    -webkit-justify-content: center;
    -webkit-align-items: center;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    max-width: 1060px;
    width: 100%;
    margin: 100px auto 0;
  }
  .about #contents .c-box01 .media-box .left-col {
    width: 50%;
    text-align: center;
  }
  .about #contents .c-box01 .media-box .left-col .lead-text {
    font-size: 36px;
    text-align: center;
    font-weight: bold;
    line-height: 1.3;
  }
  .about #contents .c-box01 .media-box .left-col .sub-lead {
    margin-top: 25px;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
    color: #cebc91;
    line-height: 1.2;
  }
  .about #contents .c-box01 .media-box .right-col {
    width: 50%;
  }
  .about #contents .c-box01 .img {
    position: relative;
    max-width: 1060px;
    width: 100%;
    margin: 170px auto 0;
    text-align: center;
  }
  .about #contents .c-box01 .img::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 396px;
    height: 223px;
    background: url("../images/about/sec01_graphic02.png") no-repeat;
  }
  .about #contents .c-box01 .img img {
    margin-right: 40%;
  }
  .about #contents .c-box02 {
    position: relative;
    margin-top: 40px;
    padding-bottom: 320px;
  }
  .about #contents .c-box02::before {
    content: '';
    position: absolute;
    bottom: 50px;
    right: 20%;
    width: 239px;
    height: 185px;
    background: url("../images/about/sec02_graphic01.png") no-repeat;
  }
  .about #contents .c-box02 .media-box {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    display: -webkit-flex;
    -webkit-justify-content: flex-start;
    -webkit-align-items: flex-start;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
  }
  .about #contents .c-box02 .media-box .thumbnail {
    width: 45%;
  }
  .about #contents .c-box02 .media-box .right-col {
    width: 55%;
    margin-top: -80px;
    padding: 0 10% 0 5%;
  }
  .about #contents .c-box03 .media-box {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    display: -webkit-flex;
    -webkit-justify-content: flex-start;
    -webkit-align-items: flex-start;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
  }
  .about #contents .c-box03 .media-box .left-col {
    position: relative;
    width: 55%;
    padding: 0 5% 0 10%;
  }
  .about #contents .c-box03 .media-box .left-col::before {
    content: '';
    position: absolute;
    bottom: -300px;
    left: 30px;
    width: 267px;
    height: 282px;
    background: url("../images/about/sec03_graphic02.png") no-repeat;
  }
  .about #contents .c-box03 .media-box .left-col h3 {
    position: relative;
  }
  .about #contents .c-box03 .media-box .left-col h3::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -50px;
    width: 213px;
    height: 103px;
    background: url("../images/about/sec03_graphic01.png") no-repeat;
  }
  .about #contents .c-box03 .media-box .left-col .lead-text {
    margin-top: 20px !important;
    text-align: center;
  }
  .about #contents .c-box03 .media-box .left-col .sub-lead {
    margin-top: 5px !important;
  }
  .about #contents .c-box03 .media-box .thumbnail {
    width: 45%;
  }
  .about #contents .c-box03 .media-box .thumbnail img {
    display: block;
  }
  .about #contents .c-box03 .media-box .thumbnail img:nth-of-type(1) {
    margin-left: 10%;
  }
  .about #contents .c-box03 .media-box .thumbnail img:nth-of-type(2) {
    margin-top: 40px;
  }
  .about #contents .c-box04 {
    position: relative;
    margin-top: 320px;
    padding-bottom: 350px;
  }
  .about #contents .c-box04::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 250px;
    height: 411px;
    background: url("../images/about/sec04_graphic02.png") no-repeat;
  }
  .about #contents .c-box04 .img {
    position: relative;
    text-align: center;
    margin-left: -50%;
  }
  .about #contents .c-box04 .img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 243px;
    height: 181px;
    margin-left: 25%;
    background: url("../images/about/sec04_graphic01.png") no-repeat;
  }
  .about #contents .c-box04 .media-box {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    display: -webkit-flex;
    -webkit-justify-content: flex-start;
    -webkit-align-items: flex-start;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    margin-top: 40px;
  }
  .about #contents .c-box04 .media-box .thumbnail {
    width: 45.5%;
  }
  .about #contents .c-box04 .media-box .thumbnail img {
    width: 100%;
  }
  .about #contents .c-box04 .media-box .right-col {
    width: 54.5%;
    padding: 0 10% 0 5%;
    margin-top: -130px;
  }
  .about #contents .c-box04 .media-box .right-col .lead-text {
    margin-top: 20px !important;
    text-align: center;
  }
  .about #contents .c-box04 .media-box .right-col .sub-lead {
    margin-top: 5px !important;
  }
  .about #contents .c-box05 {
    position: relative;
    margin-top: 30px;
    text-align: center;
  }
  .about #contents .c-box05::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    width: 280px;
    height: 406px;
    margin-top: -200px;
    transition: 0.5s;
    background: url("../images/about/sec05_graphic01.png") no-repeat;
  }
}
@media screen and (min-width: 951px) and (max-width: 1500px) {
  .about #contents .c-box05::before {
    opacity: 0;
  }
}
@media screen and (min-width: 951px) {
  .about #contents .c-box05 .lead-text {
    margin-top: 20px !important;
    text-align: center;
  }
  .about #contents .c-box05 .sub-lead {
    margin-top: 5px !important;
  }
  .about #contents .c-box06 {
    margin-top: 190px;
    padding: 0 20px 210px;
  }
  .about #contents .c-box06 .media-box {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    display: -webkit-flex;
    -webkit-justify-content: flex-start;
    -webkit-align-items: flex-start;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
  }
  .about #contents .c-box06 .media-box .left-col {
    width: 50%;
    padding-right: 30px;
  }
  .about #contents .c-box06 .media-box .left-col .name {
    margin-top: 20px;
    font-size: 18px;
  }
  .about #contents .c-box06 .media-box .left-col .description {
    margin-top: 10px;
    font-size: 16px;
  }
  .about #contents .c-box06 .media-box .left-col .eng {
    margin-top: 10px;
    font-size: 16px;
    color: #a39678;
  }
  .about #contents .c-box06 .media-box .thumbnail {
    width: 50%;
  }

  /*---------------------------
  HOME
  ---------------------------*/
  .home #contents .c-box01 .contents-inner {
    position: relative;
  }
  .home #contents .c-box01 .contents-inner h2 {
    position: absolute;
    z-index: 100;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
  }
  .home #contents .c-box01 .contents-inner h2 img {
    width: 35%;
    max-width: 520px;
  }
  .home #contents .c-box01 .contents-inner .slider {
    position: relative;
    z-index: 1;
  }
  .home #contents .c-box01 .contents-inner .slider img {
    width: 100%;
  }
  .home #contents .c-box01 .contents-inner .slick-dots {
    bottom: 60px;
  }
  .home #contents .c-box01 .contents-inner .slick-dots li {
    width: 10px;
    height: 10px;
  }
  .home #contents .c-box01 .contents-inner .slick-dots li.slick-active button {
    background-color: #6c0218;
    border: 1px solid #6c0218;
  }
  .home #contents .c-box01 .contents-inner .slick-dots li button {
    width: 10px;
    height: 10px;
    margin: 0 10px;
    border: 1px solid #fff;
    border-radius: 10px;
  }
  .home #contents .c-box01 .contents-inner .slick-dots li button::before {
    content: none;
  }
  .home #contents .c-box02 .media-box {
    position: relative;
    display: flex;
    justify-content: stretch;
    align-items: flex-start;
    display: -webkit-flex;
    -webkit-justify-content: stretch;
    -webkit-align-items: flex-start;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    height: 1080px;
  }
  .home #contents .c-box02 .media-box .frame {
    position: absolute;
    z-index: 5;
    top: 30px;
    left: 30px;
    width: calc(100% - 60px);
    height: calc(100% - 60px);
    border: 5px solid #a30022;
  }
  .home #contents .c-box02 .media-box .sentence {
    position: relative;
    z-index: 10;
    display: table;
    width: 50%;
    padding: 30px 60px 30px 60px;
    height: 100%;
  }
}
@media screen and (min-width: 951px) and (max-width: 1200px) {
  .home #contents .c-box02 .media-box .sentence {
    width: 70%;
  }
}
@media screen and (min-width: 951px) {
  .home #contents .c-box02 .media-box .sentence::before {
    content: '';
    position: absolute;
    top: 85px;
    left: 20%;
    width: 188px;
    height: 139px;
    background: url("../images/top/sec01_graphic01.png");
  }
  .home #contents .c-box02 .media-box .sentence::after {
    content: '';
    position: absolute;
    bottom: 70px;
    right: 10%;
    width: 278px;
    height: 157px;
    background: url("../images/top/sec01_graphic02.png");
  }
  .home #contents .c-box02 .media-box .sentence .inner {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
  }
  .home #contents .c-box02 .media-box .sentence .inner .description {
    width: 320px;
    margin: 50px auto 0;
    text-align: left;
  }
  .home #contents .c-box02 .media-box .sentence .inner .description p:not(:nth-of-type(1)) {
    margin-top: 20px;
  }
  .home #contents .c-box02 .media-box .sentence .inner .description .link {
    margin-top: 50px !important;
    text-align: right;
  }
  .home #contents .c-box02 .media-box .sentence .inner .description .link a {
    position: relative;
    display: inline-block;
    width: 150px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #1d1d1d;
    font-weight: 700;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    border: 1px solid #000;
    background: url("../images/common/icon_arrow_right_black.png") no-repeat 95% center;
    text-decoration: none;
    transition: 0.5s;
  }
  .home #contents .c-box02 .media-box .sentence .inner .description .link a:hover {
    background: url("../images/common/icon_arrow_right_white.png") no-repeat 95% center;
    background-color: #ad0024;
    border: 1px solid #ad0024;
    color: #fff;
  }
  .home #contents .c-box02 .media-box .thumbnail {
    width: 50%;
    height: 100%;
    background: url("../images/top/sec01_thumb.jpg") no-repeat center center;
    background-size: cover;
  }
}
@media screen and (min-width: 951px) and (max-width: 1200px) {
  .home #contents .c-box02 .media-box .thumbnail {
    width: 30%;
  }
}
@media screen and (min-width: 951px) {
  .home #contents .c-box02 .media-box .thumbnail img {
    display: none;
  }
  .home #contents .c-box03 {
    position: relative;
  }
  .home #contents .c-box03 .menu-navi {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    width: 75px;
    height: 100%;
    background-color: #fff;
    text-align: center;
    transition: 0.5s;
    transform: translateX(-75px);
  }
  .home #contents .c-box03 .menu-navi.on {
    transform: translateX(0);
  }
  .home #contents .c-box03 .menu-navi ul li {
    margin-top: 60px;
  }
  .home #contents .c-box03 .menu-navi ul li a {
    position: relative;
    display: inline-block;
    transition: 0.3s;
  }
  .home #contents .c-box03 .menu-navi ul li a:hover {
    opacity: 0.5;
  }
  .home #contents .c-box03 .menu-navi ul li a::before {
    content: '';
    position: absolute;
    right: -15px;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: #b50026;
    transition: 0.3s;
    transform: scale(1, 0);
  }
  .home #contents .c-box03 .menu-navi ul li.current a::before {
    transform: scale(1, 1);
  }
  .home #contents .c-box03 .contents-inner {
    background-color: #ece2ca;
  }
  .home #contents .c-box03 .contents-header {
    display: table;
    width: 100%;
    height: 333px;
    background: url("../images/top/sec02_visual.jpg") no-repeat center center;
    background-size: cover;
  }
  .home #contents .c-box03 .contents-header h2 {
    display: table-cell;
    vertical-align: middle;
    padding-left: 15.6%;
  }
  .home #contents .c-box03 .menu-local-navi {
    margin-top: 50px;
    padding-left: 75px;
  }
  .home #contents .c-box03 .menu-local-navi ul {
    display: none;
  }
  .home #contents .c-box03 .menu-local-navi ul.on {
    display: flex;
    justify-content: center;
    align-items: center;
    display: -webkit-flex;
    -webkit-justify-content: center;
    -webkit-align-items: center;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
  }
  .home #contents .c-box03 .menu-local-navi ul li {
    margin-bottom: 10px;
    padding: 0 2%;
  }
  .home #contents .c-box03 .menu-local-navi ul li:not(:nth-of-type(1)) {
    border-left: 3px solid #1d1d1d;
  }
  .home #contents .c-box03 .menu-local-navi ul li.current a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #1d1d1d;
    transform: scale(1, 1);
  }
  .home #contents .c-box03 .menu-local-navi ul li a {
    position: relative;
    font-size: 24px;
    color: #1d1d1d;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1;
    transition: 0.3s;
  }
  .home #contents .c-box03 .menu-local-navi ul li a:hover {
    opacity: 0.5;
  }
  .home #contents .c-box03 .menu-local-navi ul li a::before {
    content: '';
    transition: 0.3s;
    transform: scale(0, 1);
  }
  .home #contents .c-box03 .menu-contents {
    position: relative;
    margin-top: 100px;
    padding-left: 75px;
  }
  .home #contents .c-box03 .menu-contents.off::before {
    opacity: 0;
  }
  .home #contents .c-box03 .menu-contents::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    width: 176px;
    height: 260px;
    margin-top: -260px;
    transition: 0.5s;
    background: url("../images/top/sec02_graphic03.png") no-repeat;
  }
}
@media screen and (min-width: 951px) and (max-width: 1700px) {
  .home #contents .c-box03 .menu-contents::before {
    opacity: 0;
  }
}
@media screen and (min-width: 951px) {
  .home #contents .c-box03 .menu-contents h3 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
  }
  .home #contents .c-box03 .menu-contents > div {
    display: none;
  }
  .home #contents .c-box03 .menu-contents > div#CLASSIC {
    display: block;
  }
  .home #contents .c-box03 .menu-contents > div .list {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    display: -webkit-flex;
    -webkit-justify-content: flex-start;
    -webkit-align-items: flex-start;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    max-width: 1030px;
    margin: 70px auto 0;
  }
  .home #contents .c-box03 .menu-contents > div .list > div {
    width: 29%;
    text-align: center;
    color: #1d1d1d;
  }
  .home #contents .c-box03 .menu-contents > div .list > div:not(:nth-of-type(-n+3)) {
    margin-top: 35px;
  }
  .home #contents .c-box03 .menu-contents > div .list > div:not(:nth-of-type(3n+1)) {
    margin-left: 6.5%;
  }
  .home #contents .c-box03 .menu-contents > div .list > div .name {
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
  }
  .home #contents .c-box03 .menu-contents > div .list > div .name .small {
    font-size: 18px;
    letter-spacing: -0.07em;
  }
  .home #contents .c-box03 .menu-contents > div .list > div .description {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.4;
  }
  .home #contents .c-box03 .menu-contents > div .list > div .price {
    margin-top: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
  }
  .home #contents .c-box03 .menu-contents .menu-price {
    margin-top: 25px;
  }
  .home #contents .c-box03 .menu-contents .menu-price li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    display: -webkit-flex;
    -webkit-justify-content: space-between;
    -webkit-align-items: flex-start;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
  }
  .home #contents .c-box03 .menu-contents .menu-price li:not(:nth-of-type(1)) {
    margin-top: 15px;
  }
  .home #contents .c-box03 .menu-contents .menu-price li span:nth-of-type(1) {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
    width: 350px;
    padding-left: 18px;
    font-size: 18px;
    font-weight: bold;
    color: #221815;
    background: url("../images/common/icon_dot_gold.png") no-repeat left 7px;
  }
  .home #contents .c-box03 .menu-contents .menu-price li span:nth-of-type(2) {
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
  }
  .home #contents .c-box03 .menu-contents .menu-price-description {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    display: -webkit-flex;
    -webkit-justify-content: flex-start;
    -webkit-align-items: flex-start;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
  }
}
@media screen and (min-width: 951px) and (max-width: 1450px) {
  .home #contents .c-box03 .menu-contents .menu-price-description {
    display: block;
  }
}
@media screen and (min-width: 951px) {
  .home #contents .c-box03 .menu-contents .menu-price-description.no-float li {
    width: 100%;
    margin-left: 0 !important;
  }
  .home #contents .c-box03 .menu-contents .menu-price-description li {
    width: 47.5%;
    margin-top: 20px;
  }
}
@media screen and (min-width: 951px) and (max-width: 1450px) {
  .home #contents .c-box03 .menu-contents .menu-price-description li {
    width: 100%;
  }
}
@media screen and (min-width: 951px) {
  .home #contents .c-box03 .menu-contents .menu-price-description li:nth-of-type(2n) {
    margin-left: 5%;
  }
}
@media screen and (min-width: 951px) and (max-width: 1450px) {
  .home #contents .c-box03 .menu-contents .menu-price-description li {
    margin-left: 0 !important;
  }
}
@media screen and (min-width: 951px) {
  .home #contents .c-box03 .menu-contents .menu-price-description li .title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    display: -webkit-flex;
    -webkit-justify-content: flex-start;
    -webkit-align-items: center;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
  }
}
@media screen and (min-width: 951px) and (max-width: 1450px) {
  .home #contents .c-box03 .menu-contents .menu-price-description li .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    display: -webkit-flex;
    -webkit-justify-content: space-between;
    -webkit-align-items: center;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
  }
}
@media screen and (min-width: 951px) {
  .home #contents .c-box03 .menu-contents .menu-price-description li .title span:nth-of-type(1) {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
    width: 350px;
    padding-left: 18px;
    font-size: 18px;
    font-weight: bold;
    color: #221815;
    background: url("../images/common/icon_dot_gold.png") no-repeat left 7px;
  }
  .home #contents .c-box03 .menu-contents .menu-price-description li .title span:nth-of-type(2) {
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
  }
  .home #contents .c-box03 .menu-contents .menu-price-description li .description {
    display: block;
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
    color: #221815;
    letter-spacing: 0.12em;
  }
  .home #contents .c-box03 .menu-contents #CLASSIC,
  .home #contents .c-box03 .menu-contents #ORIGINAL,
  .home #contents .c-box03 .menu-contents #HEALTHY,
  .home #contents .c-box03 .menu-contents #COLDAPPETIZERS,
  .home #contents .c-box03 .menu-contents #HOTAPPETIZERS,
  .home #contents .c-box03 .menu-contents #PASTAFRESCA,
  .home #contents .c-box03 .menu-contents #MAINDISH,
  .home #contents .c-box03 .menu-contents #DESSERT,
  .home #contents .c-box03 .menu-contents #DRINK,
  .home #contents .c-box03 .menu-contents #WINE {
    position: relative;
    padding: 0 20px 450px;
  }
}
@media screen and (min-width: 951px) and (max-width: 1100px) {
  .home #contents .c-box03 .menu-contents #CLASSIC,
  .home #contents .c-box03 .menu-contents #ORIGINAL,
  .home #contents .c-box03 .menu-contents #HEALTHY,
  .home #contents .c-box03 .menu-contents #COLDAPPETIZERS,
  .home #contents .c-box03 .menu-contents #HOTAPPETIZERS,
  .home #contents .c-box03 .menu-contents #PASTAFRESCA,
  .home #contents .c-box03 .menu-contents #MAINDISH,
  .home #contents .c-box03 .menu-contents #DESSERT,
  .home #contents .c-box03 .menu-contents #DRINK,
  .home #contents .c-box03 .menu-contents #WINE {
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 951px) {
  .home #contents .c-box03 .menu-contents #CLASSIC::before,
  .home #contents .c-box03 .menu-contents #ORIGINAL::before,
  .home #contents .c-box03 .menu-contents #HEALTHY::before,
  .home #contents .c-box03 .menu-contents #COLDAPPETIZERS::before,
  .home #contents .c-box03 .menu-contents #HOTAPPETIZERS::before,
  .home #contents .c-box03 .menu-contents #PASTAFRESCA::before,
  .home #contents .c-box03 .menu-contents #MAINDISH::before,
  .home #contents .c-box03 .menu-contents #DESSERT::before,
  .home #contents .c-box03 .menu-contents #DRINK::before,
  .home #contents .c-box03 .menu-contents #WINE::before {
    content: '';
    position: absolute;
    bottom: 50px;
    left: 20px;
    width: 314px;
    height: 146px;
    transition: 0.5s;
    background: url("../images/top/sec02_graphic04.png") no-repeat;
  }
}
@media screen and (min-width: 951px) and (max-width: 1100px) {
  .home #contents .c-box03 .menu-contents #CLASSIC::before,
  .home #contents .c-box03 .menu-contents #ORIGINAL::before,
  .home #contents .c-box03 .menu-contents #HEALTHY::before,
  .home #contents .c-box03 .menu-contents #COLDAPPETIZERS::before,
  .home #contents .c-box03 .menu-contents #HOTAPPETIZERS::before,
  .home #contents .c-box03 .menu-contents #PASTAFRESCA::before,
  .home #contents .c-box03 .menu-contents #MAINDISH::before,
  .home #contents .c-box03 .menu-contents #DESSERT::before,
  .home #contents .c-box03 .menu-contents #DRINK::before,
  .home #contents .c-box03 .menu-contents #WINE::before {
    opacity: 0;
  }
}
@media screen and (min-width: 951px) {
  .home #contents .c-box03 .menu-contents #CLASSIC::after,
  .home #contents .c-box03 .menu-contents #ORIGINAL::after,
  .home #contents .c-box03 .menu-contents #HEALTHY::after,
  .home #contents .c-box03 .menu-contents #COLDAPPETIZERS::after,
  .home #contents .c-box03 .menu-contents #HOTAPPETIZERS::after,
  .home #contents .c-box03 .menu-contents #PASTAFRESCA::after,
  .home #contents .c-box03 .menu-contents #MAINDISH::after,
  .home #contents .c-box03 .menu-contents #DESSERT::after,
  .home #contents .c-box03 .menu-contents #DRINK::after,
  .home #contents .c-box03 .menu-contents #WINE::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 14%;
    width: 252px;
    height: 434px;
    transition: 0.5s;
    background: url("../images/top/sec02_graphic05.png") no-repeat;
  }
}
@media screen and (min-width: 951px) and (max-width: 1100px) {
  .home #contents .c-box03 .menu-contents #CLASSIC::after,
  .home #contents .c-box03 .menu-contents #ORIGINAL::after,
  .home #contents .c-box03 .menu-contents #HEALTHY::after,
  .home #contents .c-box03 .menu-contents #COLDAPPETIZERS::after,
  .home #contents .c-box03 .menu-contents #HOTAPPETIZERS::after,
  .home #contents .c-box03 .menu-contents #PASTAFRESCA::after,
  .home #contents .c-box03 .menu-contents #MAINDISH::after,
  .home #contents .c-box03 .menu-contents #DESSERT::after,
  .home #contents .c-box03 .menu-contents #DRINK::after,
  .home #contents .c-box03 .menu-contents #WINE::after {
    opacity: 0;
  }
}
@media screen and (min-width: 951px) and (max-width: 1400px) {
  .home #contents .c-box03 .menu-contents #CLASSIC::after,
  .home #contents .c-box03 .menu-contents #ORIGINAL::after,
  .home #contents .c-box03 .menu-contents #HEALTHY::after,
  .home #contents .c-box03 .menu-contents #COLDAPPETIZERS::after,
  .home #contents .c-box03 .menu-contents #HOTAPPETIZERS::after,
  .home #contents .c-box03 .menu-contents #PASTAFRESCA::after,
  .home #contents .c-box03 .menu-contents #MAINDISH::after,
  .home #contents .c-box03 .menu-contents #DESSERT::after,
  .home #contents .c-box03 .menu-contents #DRINK::after,
  .home #contents .c-box03 .menu-contents #WINE::after {
    right: 2%;
  }
}
@media screen and (min-width: 951px) {
  .home #contents .c-box03 .menu-contents #CLASSIC h3,
  .home #contents .c-box03 .menu-contents #ORIGINAL h3,
  .home #contents .c-box03 .menu-contents #HEALTHY h3,
  .home #contents .c-box03 .menu-contents #COLDAPPETIZERS h3,
  .home #contents .c-box03 .menu-contents #HOTAPPETIZERS h3,
  .home #contents .c-box03 .menu-contents #PASTAFRESCA h3,
  .home #contents .c-box03 .menu-contents #MAINDISH h3,
  .home #contents .c-box03 .menu-contents #DESSERT h3,
  .home #contents .c-box03 .menu-contents #DRINK h3,
  .home #contents .c-box03 .menu-contents #WINE h3 {
    position: relative;
  }
  .home #contents .c-box03 .menu-contents #CLASSIC h3::before,
  .home #contents .c-box03 .menu-contents #ORIGINAL h3::before,
  .home #contents .c-box03 .menu-contents #HEALTHY h3::before,
  .home #contents .c-box03 .menu-contents #COLDAPPETIZERS h3::before,
  .home #contents .c-box03 .menu-contents #HOTAPPETIZERS h3::before,
  .home #contents .c-box03 .menu-contents #PASTAFRESCA h3::before,
  .home #contents .c-box03 .menu-contents #MAINDISH h3::before,
  .home #contents .c-box03 .menu-contents #DESSERT h3::before,
  .home #contents .c-box03 .menu-contents #DRINK h3::before,
  .home #contents .c-box03 .menu-contents #WINE h3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    width: 144px;
    height: 71px;
    transition: 0.5s;
    background: url("../images/top/sec02_graphic01.png") no-repeat;
  }
}
@media screen and (min-width: 951px) and (max-width: 1100px) {
  .home #contents .c-box03 .menu-contents #CLASSIC h3::before,
  .home #contents .c-box03 .menu-contents #ORIGINAL h3::before,
  .home #contents .c-box03 .menu-contents #HEALTHY h3::before,
  .home #contents .c-box03 .menu-contents #COLDAPPETIZERS h3::before,
  .home #contents .c-box03 .menu-contents #HOTAPPETIZERS h3::before,
  .home #contents .c-box03 .menu-contents #PASTAFRESCA h3::before,
  .home #contents .c-box03 .menu-contents #MAINDISH h3::before,
  .home #contents .c-box03 .menu-contents #DESSERT h3::before,
  .home #contents .c-box03 .menu-contents #DRINK h3::before,
  .home #contents .c-box03 .menu-contents #WINE h3::before {
    opacity: 0;
  }
}
@media screen and (min-width: 951px) and (max-width: 1400px) {
  .home #contents .c-box03 .menu-contents #CLASSIC h3::before,
  .home #contents .c-box03 .menu-contents #ORIGINAL h3::before,
  .home #contents .c-box03 .menu-contents #HEALTHY h3::before,
  .home #contents .c-box03 .menu-contents #COLDAPPETIZERS h3::before,
  .home #contents .c-box03 .menu-contents #HOTAPPETIZERS h3::before,
  .home #contents .c-box03 .menu-contents #PASTAFRESCA h3::before,
  .home #contents .c-box03 .menu-contents #MAINDISH h3::before,
  .home #contents .c-box03 .menu-contents #DESSERT h3::before,
  .home #contents .c-box03 .menu-contents #DRINK h3::before,
  .home #contents .c-box03 .menu-contents #WINE h3::before {
    left: 15%;
  }
}
@media screen and (min-width: 951px) {
  .home #contents .c-box03 .menu-contents #CLASSIC h3::after,
  .home #contents .c-box03 .menu-contents #ORIGINAL h3::after,
  .home #contents .c-box03 .menu-contents #HEALTHY h3::after,
  .home #contents .c-box03 .menu-contents #COLDAPPETIZERS h3::after,
  .home #contents .c-box03 .menu-contents #HOTAPPETIZERS h3::after,
  .home #contents .c-box03 .menu-contents #PASTAFRESCA h3::after,
  .home #contents .c-box03 .menu-contents #MAINDISH h3::after,
  .home #contents .c-box03 .menu-contents #DESSERT h3::after,
  .home #contents .c-box03 .menu-contents #DRINK h3::after,
  .home #contents .c-box03 .menu-contents #WINE h3::after {
    content: '';
    position: absolute;
    top: -80px;
    right: 10%;
    width: 186px;
    height: 224px;
    transition: 0.5s;
    background: url("../images/top/sec02_graphic02.png") no-repeat;
  }
}
@media screen and (min-width: 951px) and (max-width: 1100px) {
  .home #contents .c-box03 .menu-contents #CLASSIC h3::after,
  .home #contents .c-box03 .menu-contents #ORIGINAL h3::after,
  .home #contents .c-box03 .menu-contents #HEALTHY h3::after,
  .home #contents .c-box03 .menu-contents #COLDAPPETIZERS h3::after,
  .home #contents .c-box03 .menu-contents #HOTAPPETIZERS h3::after,
  .home #contents .c-box03 .menu-contents #PASTAFRESCA h3::after,
  .home #contents .c-box03 .menu-contents #MAINDISH h3::after,
  .home #contents .c-box03 .menu-contents #DESSERT h3::after,
  .home #contents .c-box03 .menu-contents #DRINK h3::after,
  .home #contents .c-box03 .menu-contents #WINE h3::after {
    opacity: 0;
  }
}
@media screen and (min-width: 951px) {
  .home #contents .c-box03 .menu-contents #DRINK .menu-list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    display: -webkit-flex;
    -webkit-justify-content: space-between;
    -webkit-align-items: flex-start;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    max-width: 1110px;
    width: 100%;
    margin: 65px auto 0;
  }
}
@media screen and (min-width: 951px) and (max-width: 1400px) {
  .home #contents .c-box03 .menu-contents #DRINK .menu-list {
    display: block;
  }
}
@media screen and (min-width: 951px) {
  .home #contents .c-box03 .menu-contents #DRINK .menu-list > div {
    transition: 0.5s;
  }
  .home #contents .c-box03 .menu-contents #DRINK .menu-list > div:not(.full) {
    width: 47.5%;
  }
}
@media screen and (min-width: 951px) and (max-width: 1400px) {
  .home #contents .c-box03 .menu-contents #DRINK .menu-list > div {
    width: 100%;
  }
}
@media screen and (min-width: 951px) {
  .home #contents .c-box03 .menu-contents #DRINK .menu-list > div p:not(:nth-of-type(1)) {
    margin-top: 50px;
  }
}
@media screen and (min-width: 951px) and (max-width: 1400px) {
  .home #contents .c-box03 .menu-contents #DRINK .menu-list > div.right-col {
    margin-top: 30px;
  }
}
@media screen and (min-width: 951px) {
  .home #contents .c-box03 .menu-contents #DRINK .menu-list > div .menu-title {
    position: relative;
    padding-bottom: 15px;
    font-size: 30px;
    font-family: 'Montserrat', sans-serif;
    color: #9d8d66;
    font-weight: 700;
    border-bottom: 1px dotted #000;
  }
  .home #contents .c-box03 .menu-contents #DRINK .menu-list > div .menu-title .price {
    position: absolute;
    top: 8px;
    right: 0;
    font-size: 16px;
    color: #221815;
    font-weight: bold;
  }
  .home #contents .c-box03 .menu-contents #DRINK .menu-list > div .drink-menu {
    display: flex;
    justify-content: flex-strat;
    align-items: flex-start;
    display: -webkit-flex;
    -webkit-justify-content: flex-strat;
    -webkit-align-items: flex-start;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    margin-top: 35px;
  }
  .home #contents .c-box03 .menu-contents #DRINK .menu-list > div .drink-menu.no-float li {
    width: 100%;
  }
  .home #contents .c-box03 .menu-contents #DRINK .menu-list > div .drink-menu.no-float li:not(:first-child) {
    margin-top: 15px !important;
  }
  .home #contents .c-box03 .menu-contents #DRINK .menu-list > div .drink-menu li {
    width: 50%;
    padding-left: 18px;
    font-size: 18px;
    font-weight: bold;
    color: #221815;
    background: url("../images/common/icon_dot_gold.png") no-repeat left 7px;
  }
  .home #contents .c-box03 .menu-contents #DRINK .menu-list > div .drink-menu li:not(:nth-of-type(-n+2)) {
    margin-top: 15px;
  }
  .home #contents .c-box03 .menu-contents #WINE .menu-inner {
    max-width: 1110px;
    width: 100%;
    margin: 100px auto 0;
  }
  .home #contents .c-box03 .menu-contents #WINE .menu-price {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    display: -webkit-flex;
    -webkit-justify-content: space-between;
    -webkit-align-items: flex-start;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
  }
}
@media screen and (min-width: 951px) and (max-width: 1450px) {
  .home #contents .c-box03 .menu-contents #WINE .menu-price {
    display: block;
    padding-top: 50px;
  }
}
@media screen and (min-width: 951px) {
  .home #contents .c-box03 .menu-contents #WINE .menu-price li {
    margin-top: 0;
  }
  .home #contents .c-box03 .menu-contents #WINE .menu-title {
    position: relative;
    margin-top: 50px;
    padding-bottom: 15px;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    color: #9d8d66;
    font-weight: 700;
    border-bottom: 1px dotted #000;
  }
  .home #contents .c-box03 .menu-contents #WINE .menu-title .price {
    position: absolute;
    top: 8px;
    right: 0;
    font-size: 16px;
    color: #221815;
    font-weight: bold;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH,
  .home #contents .c-box03 .menu-contents #PIZZADINNER {
    position: relative;
    padding-bottom: 380px;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH::before,
  .home #contents .c-box03 .menu-contents #PIZZADINNER::before {
    content: '';
    position: absolute;
    bottom: 50px;
    left: 5%;
    width: 300px;
    height: 177px;
    background: url("../images/top/sec02_graphic04_2.png") no-repeat;
  }
}
@media screen and (min-width: 951px) and (max-width: 1500px) {
  .home #contents .c-box03 .menu-contents #PIZZALUNCH::before,
  .home #contents .c-box03 .menu-contents #PIZZADINNER::before {
    content: none;
  }
}
@media screen and (min-width: 951px) {
  .home #contents .c-box03 .menu-contents #PIZZALUNCH::after,
  .home #contents .c-box03 .menu-contents #PIZZADINNER::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 252px;
    height: 434px;
    background: url("../images/top/sec02_graphic05.png") no-repeat;
  }
}
@media screen and (min-width: 951px) and (max-width: 1500px) {
  .home #contents .c-box03 .menu-contents #PIZZALUNCH::after,
  .home #contents .c-box03 .menu-contents #PIZZADINNER::after {
    content: none;
  }
}
@media screen and (min-width: 951px) {
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner,
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner {
    position: relative;
    padding: 0 3% 0 8%;
  }
}
@media screen and (min-width: 951px) and (max-width: 1500px) {
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner,
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 951px) and (max-width: 1500px) {
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner,
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner {
    width: 100%;
  }
}
@media screen and (min-width: 951px) {
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner h3,
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner h3 {
    position: relative;
    text-align: left;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner h3 .price,
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner h3 .price {
    margin-left: 50px;
    font-size: 24px;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner h3::before,
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner h3::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 144px;
    height: 71px;
    background: url("../images/top/sec02_graphic01.png") no-repeat;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner > ul,
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner > ul {
    margin-top: 45px;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner > ul .pizza-list,
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner > ul .pizza-list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    display: -webkit-flex;
    -webkit-justify-content: space-between;
    -webkit-align-items: flex-start;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner > ul .pizza-list p,
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner > ul .pizza-list p {
    width: 48%;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner > ul .num,
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner > ul .num {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    display: -webkit-flex;
    -webkit-justify-content: flex-start;
    -webkit-align-items: flex-start;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    padding: 20px 0 15px;
    border-bottom: 1px dotted #000;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner > ul .num.bt,
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner > ul .num.bt {
    margin-top: 25px;
    border-top: 1px dotted #000;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner > ul .num span:nth-of-type(1),
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner > ul .num span:nth-of-type(1) {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
    width: 30px;
    font-size: 24px;
    color: #9d8d66;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner > ul .num span:nth-of-type(2),
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner > ul .num span:nth-of-type(2) {
    width: 100%;
    font-size: 18px;
    color: #1d1d1d;
    font-weight: bold;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner > ul .title,
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner > ul .title {
    margin-top: 20px;
    padding-left: 18px;
    font-size: 18px;
    color: #221815;
    background: url("../images/common/icon_dot_gold.png") no-repeat left 7px;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner > ul .description,
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner > ul .description {
    margin-top: 8px;
    font-size: 16px;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner .drink-list,
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner .drink-list {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    display: -webkit-flex;
    -webkit-justify-content: flex-start;
    -webkit-align-items: flex-start;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    margin-top: 20px;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner .drink-list li,
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner .drink-list li {
    width: 48%;
    padding-left: 18px;
    font-size: 16px;
    color: #221815;
    background: url("../images/common/icon_dot_gold.png") no-repeat left 7px;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner .drink-list li:not(:nth-of-type(-n+2)),
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner .drink-list li:not(:nth-of-type(-n+2)) {
    margin-top: 12px;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner .drink-list li:nth-of-type(2n),
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner .drink-list li:nth-of-type(2n) {
    margin-left: 4%;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner .caution,
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner .caution {
    padding-top: 20px;
    font-size: 16px;
    line-height: 1.6;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU {
    padding-bottom: 140px;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .description {
    margin-top: 10px;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .party-list {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    display: -webkit-flex;
    -webkit-justify-content: flex-start;
    -webkit-align-items: flex-start;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    max-width: 1020px;
    margin: 30px auto 0;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .party-list > div {
    width: 48.5%;
    height: 550px;
    border: 3px solid #9d8d66;
    text-align: center;
  }
}
@media screen and (min-width: 951px) and (max-width: 1000px) {
  .home #contents .c-box03 .menu-contents #PARTYMENU .party-list > div {
    width: 100%;
    height: auto !important;
    margin-top: 20px;
    margin-left: 0 !important;
  }
}
@media screen and (min-width: 951px) {
  .home #contents .c-box03 .menu-contents #PARTYMENU .party-list > div:nth-of-type(2n) {
    margin-left: 3%;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .party-list > div:not(:nth-of-type(-n+2)) {
    margin-top: 20px;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .party-list > div .item-inner {
    height: calc(100% - 8px);
    margin: 4px;
    padding: 35px 25px;
    border: 1px solid #9d8d66;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .party-list > div .item-inner .headline {
    font-size: 16px;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .party-list > div .item-inner .title {
    font-size: 28px;
    font-weight: bold;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .party-list > div .item-inner .price {
    padding-bottom: 15px;
    border-bottom: 1px dotted #000;
    font-size: 18px;
    font-weight: bold;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .party-list > div .item-inner .menu {
    margin-top: 30px;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .party-list > div .item-inner .menu li:not(:nth-of-type(1)) {
    margin-top: 10px;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .caution {
    max-width: 1020px;
    margin: 20px auto;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .drink-menu {
    max-width: 1020px;
    margin: 40px auto 0;
    padding: 25px;
    border: 1px solid #9d8d66;
    box-sizing: border-box;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .drink-menu .title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    display: -webkit-flex;
    -webkit-justify-content: flex-start;
    -webkit-align-items: center;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    padding-bottom: 15px;
    border-bottom: 1px dotted #000;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .drink-menu .title span {
    font-weight: bold;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .drink-menu .title span:nth-of-type(1) {
    font-size: 28px;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .drink-menu .title span:nth-of-type(2) {
    margin-left: 20px;
    font-size: 18px;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .drink-menu ul {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    display: -webkit-flex;
    -webkit-justify-content: flex-start;
    -webkit-align-items: flex-start;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    margin-top: 20px;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .drink-menu ul li {
    margin-top: 10px;
    padding-left: 18px;
    font-size: 16px;
    color: #221815;
    background: url("../images/common/icon_dot_gold.png") no-repeat left 7px;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .drink-menu ul li:not(:nth-of-type(n+4)) {
    width: 30%;
    margin-top: 0;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .drink-menu ul li:not(:nth-of-type(-n+3)) {
    width: 100%;
  }
  .home #contents .c-box04 {
    position: relative;
    height: 1080px;
    background: url("../images/top/sec03_visual.jpg") no-repeat center center;
    background-size: cover;
  }
  .home #contents .c-box04 .contents-inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 160px 20px 0;
  }
  .home #contents .c-box04 .contents-inner .list {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    display: -webkit-flex;
    -webkit-justify-content: flex-start;
    -webkit-align-items: flex-start;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    margin-top: 70px;
  }
  .home #contents .c-box04 .contents-inner .list figure {
    width: 18%;
    margin: 20px 0 0 2.5%;
    overflow: hidden;
  }
  .home #contents .c-box04 .contents-inner .list figure:nth-of-type(-n+5) {
    margin-top: 0;
  }
  .home #contents .c-box04 .contents-inner .list figure:nth-of-type(5n+1) {
    margin-left: 0;
  }
  .home #contents .c-box04 .contents-inner .list figure:hover {
    cursor: pointer;
  }
  .home #contents .c-box04 .contents-inner .list figure:hover img {
    transform: scale(1.3, 1.3);
  }
  .home #contents .c-box04 .contents-inner .list figure img {
    transition: 0.3s;
  }
  .home #contents .c-box04 .modal-layer {
    position: absolute;
    z-index: -5;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
  }
  .home #contents .c-box04 .modal-layer.on {
    z-index: 50;
    display: table;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: 1s;
  }
  .home #contents .c-box04 .modal-layer .modal-inner {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
  }
  .home #contents .c-box04 .modal-layer .modal-contents {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    display: -webkit-flex;
    -webkit-justify-content: center;
    -webkit-align-items: center;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
  }
  .home #contents .c-box04 .modal-layer .modal-contents figure img {
    width: 835px;
  }
  .home #contents .c-box04 .modal-layer .modal-contents .left {
    margin-right: 20px;
  }
  .home #contents .c-box04 .modal-layer .modal-contents .right {
    margin-left: 20px;
  }
  .home #contents .c-box04 .modal-layer .modal-contents .close {
    position: absolute;
    top: -50px;
    left: 50%;
    margin-left: 380px;
  }
  .home #contents .c-box04 .modal-layer .modal-contents .left:hover, .home #contents .c-box04 .modal-layer .modal-contents .right:hover, .home #contents .c-box04 .modal-layer .modal-contents .close:hover {
    cursor: pointer;
  }
  .home #contents .c-box05 {
    position: relative;
  }
  .home #contents .c-box05::before {
    content: '';
    position: absolute;
    z-index: 5;
    top: 30px;
    left: 30px;
    width: calc(100% - 60px);
    border-top: 5px solid #a30022;
  }
  .home #contents .c-box05::after {
    content: '';
    position: absolute;
    z-index: 5;
    top: 30px;
    left: 30px;
    width: 1px;
    height: calc(100% - 60px);
    border-left: 5px solid #a30022;
  }
  .home #contents .c-box05 .contents-wrap {
    position: relative;
  }
  .home #contents .c-box05 .contents-wrap::before {
    content: '';
    position: absolute;
    z-index: 5;
    bottom: 30px;
    left: 30px;
    width: calc(100% - 60px);
    border-top: 5px solid #a30022;
  }
  .home #contents .c-box05 .contents-wrap::after {
    content: '';
    position: absolute;
    z-index: 5;
    top: 30px;
    right: 30px;
    width: 1px;
    height: calc(100% - 60px);
    border-right: 5px solid #a30022;
  }
  .home #contents .c-box05 .contents-inner {
    position: relative;
    display: flex;
    justify-content: stretch;
    align-items: flex-start;
    display: -webkit-flex;
    -webkit-justify-content: stretch;
    -webkit-align-items: flex-start;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    height: 860px;
  }
  .home #contents .c-box05 .contents-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 8%;
    width: 165px;
    height: 239px;
    background: url("../images/top/sec04_graphic01.png") no-repeat;
  }
  .home #contents .c-box05 .contents-inner .left-col {
    position: relative;
    z-index: 10;
    display: table;
    width: 50%;
    height: 100%;
    padding: 30px 50px 30px 50px;
  }
  .home #contents .c-box05 .contents-inner .left-col .inner {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
  }
  .home #contents .c-box05 .contents-inner .left-col .inner .description {
    display: inline-block;
    width: 380px;
    margin-top: 80px;
    text-align: left;
    font-size: 18px;
    color: #1d1d1d;
    line-height: 1.4;
  }
  .home #contents .c-box05 .contents-inner .left-col .inner .description .tel {
    margin-top: 10px;
  }
  .home #contents .c-box05 .contents-inner .left-col .inner .description .instagram {
    display: inline-block;
    margin-top: 35px;
    padding: 8px 47px 8px 0;
    background: url("../images/top/icon_insta.png") no-repeat right center;
  }
  .home #contents .c-box05 .contents-inner .left-col .inner .description .instagram a {
    position: relative;
    display: inline-block;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
  }
  .home #contents .c-box05 .contents-inner .left-col .inner .description .instagram a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: 0.5s;
    transform: scale(0, 1);
  }
  .home #contents .c-box05 .contents-inner .left-col .inner .description .instagram a:hover::before {
    transform: scale(1, 1);
  }
  .home #contents .c-box05 .contents-inner .right-col {
    width: 50%;
    height: 100%;
  }
  .home #contents .c-box05 .contents-inner .right-col #googleMap {
    height: 860px;
  }
}
@media screen and (max-width: 950px) {
  .pc {
    display: none !important;
  }

  html {
    overflow-x: hidden;
  }

  body {
    font-size: 14px;
  }

  .fadeElement1 {
    transform: translateY(50px);
    opacity: 0;
  }
  .fadeElement1.on {
    transition: 1s;
    transform: translateY(0);
    opacity: 1;
  }

  .fadeElement2 {
    transform: translateY(90px);
    opacity: 0;
  }
  .fadeElement2.on {
    transition: 1.3s;
    transform: translateY(0);
    opacity: 1;
  }

  /*-------------------------------
  HEADER
  -------------------------------*/
  .sp-header {
    position: fixed;
    z-index: 20000;
    top: 0;
    left: 0;
    width: 100%;
    height: 48px;
    padding: 8px 0;
    transition: 0.5s;
  }
  .sp-header.show {
    background-color: #6c0218;
  }
  .sp-header.show .logo {
    opacity: 1;
  }
  .sp-header .logo {
    transition: 0.5s;
    opacity: 0;
    text-align: center;
  }
  .sp-header .logo img {
    width: 100px;
  }

  .sp-menu {
    position: absolute;
    z-index: 10;
    top: 15px;
    left: 15px;
    width: 25px;
  }
  .sp-menu a {
    position: relative;
    display: inline-block;
    width: 25px;
    height: 25px;
    box-sizing: border-box;
  }
  .sp-menu a.active span:nth-of-type(1) {
    animation-name: menuAnim1;
    animation-timing-function: linear;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    animation-direction: alternate;
  }
  .sp-menu a.active span:nth-of-type(2) {
    animation-name: menuAnim2;
    animation-timing-function: linear;


    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    animation-direction: alternate;
  }
  .sp-menu a.active span:nth-of-type(3) {
    animation-name: menuAnim3;
    animation-timing-function: linear;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    animation-direction: alternate;
  }
  .sp-menu a span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
  }
  .sp-menu a span:nth-of-type(1) {
    top: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    animation-name: menuAnim4;
    animation-timing-function: linear;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    animation-direction: alternate;
  }
  .sp-menu a span:nth-of-type(2) {
    top: 7px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    animation-name: menuAnim5;
    animation-timing-function: linear;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    animation-direction: alternate;
  }
  .sp-menu a span:nth-of-type(3) {
    top: 14px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    animation-name: menuAnim6;
    animation-timing-function: linear;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    animation-direction: alternate;
  }
  @keyframes menuAnim1 {
    0% {
      top: 0;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    50% {
      top: 7px;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      top: 9px;
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg);
    }
  }
  @keyframes menuAnim2 {
    0% {
      top: 7px;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    50% {
      top: 7px;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      opacity: 0;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
  }
  @keyframes menuAnim3 {
    0% {
      top: 14px;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    50% {
      top: 7px;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      top: 9px;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
  }
  @keyframes menuAnim4 {
    0% {
      top: 9px;
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg);
    }
    50% {
      top: 7px;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      top: 0;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
  }
  @keyframes menuAnim5 {
    0% {
      opacity: 0;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    50% {
      top: 7px;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      top: 7px;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
  }
  @keyframes menuAnim6 {
    0% {
      top: 9px;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    50% {
      top: 7px;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      top: 14px;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
  }
  /*-------------------------------
  GLOBALNAVI
  -------------------------------*/
  #globalNavi {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    padding: 50px 0 30px;
    text-align: center;
    background-color: #6c0218;
    overflow-y: scroll;
    opacity: 0;
    transition-duration: 1.5s;
    transition-timing-function: cubic-bezier(0.655, 0.04, 0, 1.005);
  }
  #globalNavi.show {
    height: 100%;
    opacity: 1;
  }
  #globalNavi.show .inner {
    opacity: 1;
  }
  #globalNavi .inner {
    opacity: 0;
    transition-delay: 1.4s;
    transition-duration: 0.5s;
  }
  #globalNavi nav {
    margin-top: 40px;
  }
  #globalNavi nav li:not(:nth-of-type(1)) {
    margin-top: 20px;
  }
  #globalNavi nav a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
  }
  #globalNavi nav a::before {
    content: '';
    position: absolute;
    top: 9px;
    right: calc(50% - 115px);
    width: calc((250px - 100%) / 3);
    height: 2px;
    background-color: #fff;
    transition: 0.3s;
    transform: scale(0, 1);
    transform-origin: 100% 0;
  }
  #globalNavi nav a:hover::before {
    transform: scale(1, 1);
  }
  #globalNavi .information {
    margin-top: 50px;
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: #fff;
  }
  #globalNavi .information .tel {
    margin-top: 10px;
    font-size: 14px;
  }
  #globalNavi .information .time {
    font-size: 12px;
  }

  /*-------------------------------
  FOOTER
  -------------------------------*/
  #globalFooter {
    padding: 50px 10px 10px;
    text-align: center;
    background-color: #23211d;
    color: #fff;
  }
  #globalFooter .recruitment img {
    width: 200px;
  }
  #globalFooter .description {
    margin-top: 20px;
    padding-bottom: 50px;
    font-size: 14px;
    border-bottom: 1px solid #fff;
  }
  #globalFooter .information {
    padding-top: 50px;
  }
  #globalFooter .information img {
    width: 150px;
  }
  #globalFooter .information .tel-time {
    color: #cfa74b;
    font-family: 'Roboto', sans-serif;
  }
  #globalFooter .information .tel-time .tel {
    margin-top: 30px;
    font-size: 36px;
    font-weight: 700;
  }
  #globalFooter .copyright {
    display: block;
    margin-top: 50px;
    font-size: 10px;
  }

  /*------------------------------
  ABOUT
  ------------------------------*/
  .about {
    padding-top: 48px;
  }
  .about .sp-header {
    background-color: #6c0218;
  }
  .about .sp-header .logo {
    opacity: 1;
  }
  .about #contents {
    background-color: #ece2ca;
  }
  .about #contents .contents-header {
    display: table;
    width: 100%;
    height: 150px;
    background: url("../images/about/main_visual_sp.jpg") no-repeat center center;
    background-size: cover;
  }
  .about #contents .contents-header h2 {
    display: table-cell;
    vertical-align: middle;
    padding-left: 10%;
  }
  .about #contents .contents-header h2 img {
    width: 160px;
  }
  .about #contents .local-navi ul {
    display: flex;
    justify-content: center;
    align-items: center;
    display: -webkit-flex;
    -webkit-justify-content: center;
    -webkit-align-items: center;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    margin-top: 20px;
  }
  .about #contents .local-navi ul li {
    margin-bottom: 10px;
    padding: 0 10px;
    line-height: 1;
  }
  .about #contents .local-navi ul li:not(:nth-of-type(1)) {
    border-left: 1px solid #000;
  }
  .about #contents .local-navi ul li.current a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #1d1d1d;
    transform: scale(1, 1);
  }
  .about #contents .local-navi ul li a {
    position: relative;
    font-size: 16px;
    color: #282828;
    font-weight: bold;
    text-decoration: none;
  }
  .about #contents .local-navi ul li a::before {
    content: '';
    transition: 0.3s;
    transform: scale(0, 1);
  }
  .about #contents .media-box .sentence h3 {
    text-align: center;
  }
  .about #contents .media-box .sentence .lead-text {
    margin-top: 20px;
    font-size: 24px;
    font-weight: bold;
  }
  .about #contents .media-box .sentence .sub-lead {
    font-size: 16px;
    color: #cebc91;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
  }
  .about #contents .media-box .sentence p {
    margin-top: 10px;
    color: #2b1e15;
  }
  .about #contents .media-box .sentence .eng {
    margin-top: 15px;
    font-size: 12px;
    color: #a39678;
  }
  .about #contents .c-box01 {
    position: relative;
    margin-top: 70px;
  }
  .about #contents .c-box01 h3 {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
  }
  .about #contents .c-box01 h3::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 20px;
    width: 66px;
    height: 71px;
    background: url("../images/about/sec01_graphic01.png") no-repeat;
    background-size: 66px auto;
  }
  .about #contents .c-box01 h3 span {
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 1px solid #000;
  }
  .about #contents .c-box01 .media-box {
    margin-top: 20px;
    padding: 0 30px;
  }
  .about #contents .c-box01 .media-box .left-col {
    text-align: center;
  }
  .about #contents .c-box01 .media-box .left-col .lead-text {
    font-size: 26px;
    text-align: center;
    font-weight: bold;
    line-height: 1.3;
  }
  .about #contents .c-box01 .media-box .left-col .sub-lead {
    margin-top: 10px;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    color: #cebc91;
    font-weight: 700;
  }
  .about #contents .c-box01 .media-box .right-col {
    margin-top: 20px;
  }
  .about #contents .c-box01 .img {
    position: relative;
    margin-top: 40px;
    padding-bottom: 170px;
  }
  .about #contents .c-box01 .img::before {
    content: '';
    position: absolute;
    top: 0;
    right: 20px;
    width: 150px;
    height: 84px;
    background: url("../images/about/sec01_graphic02.png") no-repeat;
    background-size: 150px auto;
  }
  .about #contents .c-box01 .img img {
    display: none;
  }
  .about #contents .c-box02 {
    margin-top: 40px;
  }
  .about #contents .c-box02 .media-box {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    display: -webkit-flex;
    -webkit-justify-content: flex-start;
    -webkit-align-items: flex-start;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
  }
  .about #contents .c-box02 .media-box .right-col {
    padding: 0 30px;
  }
  .about #contents .c-box02 .media-box .thumbnail {
    order: 2;
    width: 100%;
  }
  .about #contents .c-box02 .media-box .thumbnail img {
    display: block;
    width: 100%;
  }
  .about #contents .c-box02 .media-box .right-col {
    position: relative;
    order: 0;
    width: 100%;
    padding-bottom: 150px;
  }
  .about #contents .c-box02 .media-box .right-col::before {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 120px;
    height: 97px;
    background: url("../images/about/sec02_graphic01.png") no-repeat;
    background-size: 120px auto;
  }
  .about #contents .c-box02 .media-box .right-col h3, .about #contents .c-box02 .media-box .right-col .lead-text {
    text-align: center;
  }
  .about #contents .c-box02 .media-box .right-col .sub-lead {
    margin-bottom: 20px;
  }
  .about #contents .c-box03 {
    padding-top: 80px;
  }
  .about #contents .c-box03 .media-box {
    padding: 0 30px;
  }
  .about #contents .c-box03 .media-box .left-col {
    position: relative;
    padding-bottom: 160px;
  }
  .about #contents .c-box03 .media-box .left-col::before {
    content: '';
    position: absolute;
    top: -40px;
    right: 30px;
    width: 126px;
    height: 71px;
    background: url("../images/about/sec03_graphic01.png") no-repeat;
    background-size: 126px auto;
  }
  .about #contents .c-box03 .media-box .left-col::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 130px;
    height: 140px;
    background: url("../images/about/sec03_graphic02.png") no-repeat;
    background-size: 130px auto;
  }
  .about #contents .c-box03 .media-box .left-col .lead-text {
    margin-top: 20px !important;
    text-align: center;
  }
  .about #contents .c-box03 .media-box .left-col .sub-lead {
    margin-top: 5px !important;
    margin-bottom: 20px;
  }
  .about #contents .c-box03 .media-box .thumbnail {
    margin: 30px -30px 0;
  }
  .about #contents .c-box03 .media-box .thumbnail img {
    display: block;
    width: 100%;
  }
  .about #contents .c-box04 {
    position: relative;
    padding-top: 100px;
  }
  .about #contents .c-box04::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 20px;
    width: 120px;
    height: 90px;
    background: url("../images/about/sec04_graphic01.png") no-repeat;
    background-size: 120px auto;
  }
  .about #contents .c-box04 .img {
    position: relative;
    text-align: center;
    margin-left: -50%;
  }
  .about #contents .c-box04 .img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 243px;
    height: 181px;
    margin-left: 25%;
    background: url("../images/about/sec04_graphic01.png") no-repeat;
  }
  .about #contents .c-box04 .media-box {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    display: -webkit-flex;
    -webkit-justify-content: flex-start;
    -webkit-align-items: flex-start;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
  }
  .about #contents .c-box04 .media-box .thumbnail {
    order: 2;
    width: 100%;
  }
  .about #contents .c-box04 .media-box .thumbnail img {
    display: block;
    width: 100%;
  }
  .about #contents .c-box04 .media-box .right-col {
    position: relative;
    order: 0;
    width: 100%;
    padding: 0 30px 180px;
  }
  .about #contents .c-box04 .media-box .right-col::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 100px;
    height: 158px;
    background: url("../images/about/sec04_graphic02.png") no-repeat;
    background-size: 100px auto;
  }
  .about #contents .c-box04 .media-box .right-col .lead-text {
    margin-top: 20px !important;
    text-align: center;
  }
  .about #contents .c-box04 .media-box .right-col .sub-lead {
    margin-top: 5px !important;
    margin-bottom: 20px;
  }
  .about #contents .c-box05 {
    position: relative;
    padding-top: 130px;
    text-align: center;
  }
  .about #contents .c-box05::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100px;
    height: 180px;
    background: url("../images/about/sec05_graphic01.png") no-repeat;
    background-size: 100px auto;
  }
  .about #contents .c-box05 .lead-text {
    margin-top: 20px !important;
    text-align: center;
  }
  .about #contents .c-box05 .sub-lead {
    margin-top: 5px !important;
  }
  .about #contents .c-box06 {
    margin-top: 80px;
    padding-bottom: 80px;
  }
  .about #contents .c-box06 .media-box {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    display: -webkit-flex;
    -webkit-justify-content: flex-start;
    -webkit-align-items: flex-start;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    padding: 0 30px;
  }
  .about #contents .c-box06 .media-box .left-col {
    order: 2;
    width: 100%;
    margin-top: 20px;
  }
  .about #contents .c-box06 .media-box .left-col .headline img {
    width: 290px;
  }
  .about #contents .c-box06 .media-box .left-col .name {
    margin-top: 20px;
    font-size: 16px;
  }
  .about #contents .c-box06 .media-box .left-col .description {
    margin-top: 10px;
    font-size: 14px;
  }
  .about #contents .c-box06 .media-box .left-col .eng {
    margin-top: 10px;
    font-size: 12px;
    color: #a39678;
  }
  .about #contents .c-box06 .media-box .thumbnail {
    order: 0;
    width: 100%;
  }
  .about #contents .c-box06 .media-box .thumbnail img {
    width: 100%;
  }

  /*------------------------------
  HOME
  ------------------------------*/
  .home #contents .c-box01 .contents-inner {
    position: relative;
    height: 600px;
    overflow: hidden;
  }
  .home #contents .c-box01 .contents-inner h2 {
    position: absolute;
    z-index: 20;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    margin-top: -70px;
  }
  .home #contents .c-box01 .contents-inner h2 img {
    width: 200px;
  }
  .home #contents .c-box01 .contents-inner .slider img {
    display: none;
  }
  .home #contents .c-box01 .contents-inner .slider figure {
    height: 600px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .home #contents .c-box01 .contents-inner .slider figure:nth-of-type(1) {
    background-image: url("../images/top/main_visual01.jpg");
  }
  .home #contents .c-box01 .contents-inner .slider figure:nth-of-type(2) {
    background-image: url("../images/top/main_visual02.jpg");
  }
  .home #contents .c-box01 .contents-inner .slider figure:nth-of-type(3) {
    background-image: url("../images/top/main_visual03.jpg");
  }
  .home #contents .c-box01 .contents-inner .slider figure:nth-of-type(4) {
    background-image: url("../images/top/main_visual04.jpg");
  }
  .home #contents .c-box01 .contents-inner .slider figure:nth-of-type(5) {
    background-image: url("../images/top/main_visual05.jpg");
  }
  .home #contents .c-box01 .contents-inner .slick-dots {
    bottom: 30px;
  }
  .home #contents .c-box01 .contents-inner .slick-dots li {
    width: 8px;
    height: 8px;
  }
  .home #contents .c-box01 .contents-inner .slick-dots li.slick-active button {
    background-color: #6c0218;
    border: 1px solid #6c0218;
  }
  .home #contents .c-box01 .contents-inner .slick-dots li button {
    width: 8px;
    height: 8px;
    margin: 0 8px;
    border: 1px solid #fff;
    border-radius: 8px;
  }
  .home #contents .c-box01 .contents-inner .slick-dots li button::before {
    content: none;
  }
  .home #contents .c-box02 .media-box {
    position: relative;
  }
  .home #contents .c-box02 .media-box .frame {
    position: absolute;
    z-index: 5;
    top: 15px;
    left: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    border: 2px solid #a30022;
  }
  .home #contents .c-box02 .media-box .sentence {
    position: relative;
    z-index: 10;
    padding-bottom: 130px;
  }
  .home #contents .c-box02 .media-box .sentence::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 30px;
    width: 94px;
    height: 70px;
    background: url("../images/top/sec01_graphic01.png") no-repeat;
    background-size: 94px auto;
  }
  .home #contents .c-box02 .media-box .sentence::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 10%;
    width: 139px;
    height: 78px;
    background: url("../images/top/sec01_graphic02.png") no-repeat;
    background-size: 139px auto;
  }
  .home #contents .c-box02 .media-box .sentence .inner {
    padding: 15px 40px;
  }
  .home #contents .c-box02 .media-box .sentence .inner h3 {
    padding-top: 130px;
  }
  .home #contents .c-box02 .media-box .sentence .inner h3 img {
    width: 160px;
  }
  .home #contents .c-box02 .media-box .sentence .inner .description {
    margin-top: 20px;
  }
  .home #contents .c-box02 .media-box .sentence .inner .description p:not(:nth-of-type(1)) {
    margin-top: 20px;
  }
  .home #contents .c-box02 .media-box .sentence .inner .description .link {
    margin-top: 30px !important;
    text-align: right;
  }
  .home #contents .c-box02 .media-box .sentence .inner .description .link a {
    position: relative;
    display: inline-block;
    width: 150px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #1d1d1d;
    font-weight: 700;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    border: 1px solid #000;
    background: url("../images/common/icon_arrow_right_black.png") no-repeat 95% center;
    text-decoration: none;
  }
  .home #contents .c-box02 .media-box .thumbnail img {
    width: 100%;
  }
  .home #contents .c-box03 {
    position: relative;
    overflow-x: hidden;
  }
  .home #contents .c-box03 .menu-navi {
    width: 100%;
    padding: 10px 0;
    box-sizing: border-box;
    overflow-x: scroll;
    background-color: #fff;
  }
  .home #contents .c-box03 .menu-navi ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    display: -webkit-flex;
    -webkit-justify-content: flex-start;
    -webkit-align-items: center;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    padding: 0 20px;
  }
  .home #contents .c-box03 .menu-navi ul li {
    padding: 0 20px;
    white-space: nowrap;
  }
  .home #contents .c-box03 .menu-navi ul li a {
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
  }
  .home #contents .c-box03 .menu-navi ul li a::before {
    content: '';
    transition: 0.3s;
    transform: scale(0, 1);
  }
  .home #contents .c-box03 .menu-navi ul li.current a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #6c0218;
    transform: scale(1, 1);
  }
  .home #contents .c-box03 .contents-inner {
    background-color: #ece2ca;
  }
  .home #contents .c-box03 .contents-header {
    display: table;
    width: 100%;
    height: 150px;
    background: url("../images/top/sec02_visual_sp.jpg") no-repeat center center;
    background-size: cover;
  }
  .home #contents .c-box03 .contents-header h2 {
    display: table-cell;
    vertical-align: middle;
    padding-left: 15.6%;
  }
  .home #contents .c-box03 .contents-header h2 img {
    width: 125px;
  }
  .home #contents .c-box03 .menu-local-navi {
    margin-top: 20px;
  }
  .home #contents .c-box03 .menu-local-navi ul {
    display: none;
  }
  .home #contents .c-box03 .menu-local-navi ul.on {
    display: flex;
    justify-content: center;
    align-items: center;
    display: -webkit-flex;
    -webkit-justify-content: center;
    -webkit-align-items: center;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
  }
  .home #contents .c-box03 .menu-local-navi ul li {
    padding: 0 15px;
    margin-bottom: 10px;
  }
  .home #contents .c-box03 .menu-local-navi ul li:not(:nth-of-type(1)) {
    border-left: 3px solid #1d1d1d;
  }
  .home #contents .c-box03 .menu-local-navi ul li.current a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #1d1d1d;
    transform: scale(1, 1);
  }
  .home #contents .c-box03 .menu-local-navi ul li a {
    position: relative;
    display: block;
    font-size: 18px;
    color: #1d1d1d;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1;
    transition: 0.3s;
  }
  .home #contents .c-box03 .menu-local-navi ul li a::before {
    content: '';
    transition: 0.3s;
    transform: scale(0, 1);
  }
  .home #contents .c-box03 .menu-contents {
    position: relative;
    margin-top: 50px;
    padding: 0 20px;
  }
  .home #contents .c-box03 .menu-contents.off::before {
    content: none;
  }
  .home #contents .c-box03 .menu-contents::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -20px;
    width: 55px;
    height: 81px;
    margin-top: -50px;
    background: url("../images/top/sec02_graphic03.png") no-repeat;
    background-size: 55px auto;
  }
  .home #contents .c-box03 .menu-contents h3 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
  }
  .home #contents .c-box03 .menu-contents > div {
    display: none;
  }
  .home #contents .c-box03 .menu-contents > div#CLASSIC {
    display: block;
  }
  .home #contents .c-box03 .menu-contents > div .list {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    display: -webkit-flex;
    -webkit-justify-content: flex-start;
    -webkit-align-items: flex-start;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    margin-top: 30px;
  }
  .home #contents .c-box03 .menu-contents > div .list > div {
    width: 48%;
    text-align: center;
    color: #1d1d1d;
  }
  .home #contents .c-box03 .menu-contents > div .list > div:not(:nth-of-type(-n+2)) {
    margin-top: 25px;
  }
  .home #contents .c-box03 .menu-contents > div .list > div:not(:nth-of-type(2n+1)) {
    margin-left: 4%;
  }
  .home #contents .c-box03 .menu-contents > div .list > div .name {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
  }
  .home #contents .c-box03 .menu-contents > div .list > div .description {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.2;
  }
  .home #contents .c-box03 .menu-contents > div .list > div .price {
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
  }
  .home #contents .c-box03 .menu-contents .menu-price li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    display: -webkit-flex;
    -webkit-justify-content: space-between;
    -webkit-align-items: flex-start;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    margin-top: 15px;
  }
  .home #contents .c-box03 .menu-contents .menu-price li span:nth-of-type(1) {
    width: 100%;
    padding-left: 15px;
    font-size: 16px;
    font-weight: bold;
    color: #221815;
    background: url("../images/common/icon_dot_gold.png") no-repeat left 7px;
    background-size: 10px auto;
  }
  .home #contents .c-box03 .menu-contents .menu-price li span:nth-of-type(2) {
    width: 100%;
    margin-top: 5px;
    font-size: 14px;
    font-weight: bold;
  }
  .home #contents .c-box03 .menu-contents .menu-price-description li {
    margin-top: 30px;
  }
  .home #contents .c-box03 .menu-contents .menu-price-description li .title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    display: -webkit-flex;
    -webkit-justify-content: space-between;
    -webkit-align-items: flex-start;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
  }
  .home #contents .c-box03 .menu-contents .menu-price-description li .title span:nth-of-type(1) {
    width: 100%;
    padding-left: 15px;
    font-size: 16px;
    font-weight: bold;
    color: #221815;
    background: url("../images/common/icon_dot_gold.png") no-repeat left 7px;
    background-size: 10px auto;
  }
  .home #contents .c-box03 .menu-contents .menu-price-description li .title span:nth-of-type(2) {
    width: 100%;
    margin-top: 5px;
    font-size: 16px;
    font-weight: bold;
  }
  .home #contents .c-box03 .menu-contents .menu-price-description li .description {
    display: block;
    width: 100%;
    margin-top: 10px;
    font-size: 14px;
    color: #221815;
    letter-spacing: 0.12em;
  }
  .home #contents .c-box03 .menu-contents #CLASSIC,
  .home #contents .c-box03 .menu-contents #ORIGINAL,
  .home #contents .c-box03 .menu-contents #HEALTHY,
  .home #contents .c-box03 .menu-contents #COLDAPPETIZERS,
  .home #contents .c-box03 .menu-contents #HOTAPPETIZERS,
  .home #contents .c-box03 .menu-contents #PASTAFRESCA,
  .home #contents .c-box03 .menu-contents #MAINDISH,
  .home #contents .c-box03 .menu-contents #DESSERT,
  .home #contents .c-box03 .menu-contents #DRINK,
  .home #contents .c-box03 .menu-contents #WINE {
    position: relative;
    padding-bottom: 250px;
  }
  .home #contents .c-box03 .menu-contents #CLASSIC::before,
  .home #contents .c-box03 .menu-contents #ORIGINAL::before,
  .home #contents .c-box03 .menu-contents #HEALTHY::before,
  .home #contents .c-box03 .menu-contents #COLDAPPETIZERS::before,
  .home #contents .c-box03 .menu-contents #HOTAPPETIZERS::before,
  .home #contents .c-box03 .menu-contents #PASTAFRESCA::before,
  .home #contents .c-box03 .menu-contents #MAINDISH::before,
  .home #contents .c-box03 .menu-contents #DESSERT::before,
  .home #contents .c-box03 .menu-contents #DRINK::before,
  .home #contents .c-box03 .menu-contents #WINE::before {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 20px;
    width: 157px;
    height: 73px;
    background: url("../images/top/sec02_graphic04.png") no-repeat;
    background-size: 157px auto;
  }
  .home #contents .c-box03 .menu-contents #CLASSIC::after,
  .home #contents .c-box03 .menu-contents #ORIGINAL::after,
  .home #contents .c-box03 .menu-contents #HEALTHY::after,
  .home #contents .c-box03 .menu-contents #COLDAPPETIZERS::after,
  .home #contents .c-box03 .menu-contents #HOTAPPETIZERS::after,
  .home #contents .c-box03 .menu-contents #PASTAFRESCA::after,
  .home #contents .c-box03 .menu-contents #MAINDISH::after,
  .home #contents .c-box03 .menu-contents #DESSERT::after,
  .home #contents .c-box03 .menu-contents #DRINK::after,
  .home #contents .c-box03 .menu-contents #WINE::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -30px;
    width: 126px;
    height: 217px;
    background: url("../images/top/sec02_graphic05.png") no-repeat;
    background-size: 126px auto;
  }
  .home #contents .c-box03 .menu-contents #CLASSIC h3,
  .home #contents .c-box03 .menu-contents #ORIGINAL h3,
  .home #contents .c-box03 .menu-contents #HEALTHY h3,
  .home #contents .c-box03 .menu-contents #COLDAPPETIZERS h3,
  .home #contents .c-box03 .menu-contents #HOTAPPETIZERS h3,
  .home #contents .c-box03 .menu-contents #PASTAFRESCA h3,
  .home #contents .c-box03 .menu-contents #MAINDISH h3,
  .home #contents .c-box03 .menu-contents #DESSERT h3,
  .home #contents .c-box03 .menu-contents #DRINK h3,
  .home #contents .c-box03 .menu-contents #WINE h3 {
    position: relative;
  }
  .home #contents .c-box03 .menu-contents #CLASSIC h3::after,
  .home #contents .c-box03 .menu-contents #ORIGINAL h3::after,
  .home #contents .c-box03 .menu-contents #HEALTHY h3::after,
  .home #contents .c-box03 .menu-contents #COLDAPPETIZERS h3::after,
  .home #contents .c-box03 .menu-contents #HOTAPPETIZERS h3::after,
  .home #contents .c-box03 .menu-contents #PASTAFRESCA h3::after,
  .home #contents .c-box03 .menu-contents #MAINDISH h3::after,
  .home #contents .c-box03 .menu-contents #DESSERT h3::after,
  .home #contents .c-box03 .menu-contents #DRINK h3::after,
  .home #contents .c-box03 .menu-contents #WINE h3::after {
    content: '';
    position: absolute;
    top: -10px;
    right: 0;
    width: 50px;
    height: 60px;
    background: url("../images/top/sec02_graphic02.png") no-repeat;
    background-size: 50px auto;
  }
  .home #contents .c-box03 .menu-contents #DRINK .menu-list {
    margin-top: 30px;
  }
  .home #contents .c-box03 .menu-contents #DRINK .menu-list > div p:not(:nth-of-type(1)) {
    margin-top: 40px;
  }
  .home #contents .c-box03 .menu-contents #DRINK .menu-list > div .menu-title {
    position: relative;
    padding-bottom: 10px;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    color: #9d8d66;
    font-weight: 700;
    border-bottom: 1px dotted #000;
  }
  .home #contents .c-box03 .menu-contents #DRINK .menu-list > div .menu-title .price {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    color: #221815;
    font-weight: bold;
  }
  .home #contents .c-box03 .menu-contents #DRINK .menu-list > div .drink-menu {
    display: flex;
    justify-content: flex-strat;
    align-items: flex-start;
    display: -webkit-flex;
    -webkit-justify-content: flex-strat;
    -webkit-align-items: flex-start;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .home #contents .c-box03 .menu-contents #DRINK .menu-list > div .drink-menu.no-float li {
    width: 100%;
  }
  .home #contents .c-box03 .menu-contents #DRINK .menu-list > div .drink-menu li {
    width: 50%;
    margin-top: 10px;
    padding-left: 15px;
    font-size: 16px;
    font-weight: bold;
    color: #221815;
    background: url("../images/common/icon_dot_gold.png") no-repeat left 7px;
    background-size: 10px auto;
  }
  .home #contents .c-box03 .menu-contents #WINE .menu-inner {
    margin-top: 30px;
  }
  .home #contents .c-box03 .menu-contents #WINE .menu-title {
    position: relative;
    margin-top: 30px;
    padding-bottom: 10px;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    color: #9d8d66;
    font-weight: 700;
    border-bottom: 1px dotted #000;
  }
  .home #contents .c-box03 .menu-contents #WINE .menu-title .price {
    position: absolute;
    top: 5px;
    right: 0;
    font-size: 16px;
    color: #221815;
    font-weight: bold;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH,
  .home #contents .c-box03 .menu-contents #PIZZADINNER {
    padding-bottom: 50px;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner,
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner {
    position: relative;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner h3,
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner h3 {
    position: relative;
    text-align: left;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner h3 .price,
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner h3 .price {
    padding-left: 10px;
    font-size: 20px;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner > ul,
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner > ul {
    margin-top: 15px;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner > ul .num,
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner > ul .num {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    display: -webkit-flex;
    -webkit-justify-content: flex-start;
    -webkit-align-items: flex-start;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    padding: 10px 0;
    border-bottom: 1px dotted #000;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner > ul .num.bt,
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner > ul .num.bt {
    margin-top: 25px;
    border-top: 1px dotted #000;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner > ul .num span:nth-of-type(1),
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner > ul .num span:nth-of-type(1) {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
    width: 25px;
    font-size: 20px;
    color: #9d8d66;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner > ul .num span:nth-of-type(2),
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner > ul .num span:nth-of-type(2) {
    font-size: 18px;
    color: #1d1d1d;
    font-weight: bold;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner > ul .title,
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner > ul .title {
    margin-top: 20px;
    padding-left: 15px;
    font-size: 16px;
    color: #221815;
    background: url("../images/common/icon_dot_gold.png") no-repeat left 7px;
    background-size: 10px auto;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner > ul .description,
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner > ul .description {
    margin-top: 5px;
    font-size: 14px;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner .drink-list,
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner .drink-list {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    display: -webkit-flex;
    -webkit-justify-content: flex-start;
    -webkit-align-items: flex-start;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    margin-top: 20px;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner .drink-list li,
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner .drink-list li {
    width: 49%;
    padding-left: 15px;
    font-size: 14px;
    color: #221815;
    background: url("../images/common/icon_dot_gold.png") no-repeat left 7px;
    background-size: 10px auto;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner .drink-list li:not(:nth-of-type(-n+2)),
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner .drink-list li:not(:nth-of-type(-n+2)) {
    margin-top: 10px;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner .drink-list li:nth-of-type(2n),
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner .drink-list li:nth-of-type(2n) {
    margin-left: 2%;
  }
  .home #contents .c-box03 .menu-contents #PIZZALUNCH .menu-inner .caution,
  .home #contents .c-box03 .menu-contents #PIZZADINNER .menu-inner .caution {
    padding-top: 20px;
    font-size: 14px;
    line-height: 1.6;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU {
    padding-bottom: 50px;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .description {
    margin-top: 10px;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .party-list > div {
    margin-top: 30px;
    border: 3px solid #9d8d66;
    text-align: center;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .party-list > div .item-inner {
    height: calc(100% - 8px);
    margin: 4px;
    padding: 15px;
    border: 1px solid #9d8d66;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .party-list > div .item-inner .headline {
    font-size: 14px;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .party-list > div .item-inner .title {
    font-size: 22px;
    font-weight: bold;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .party-list > div .item-inner .price {
    padding-bottom: 10px;
    border-bottom: 1px dotted #000;
    font-size: 14px;
    font-weight: bold;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .party-list > div .item-inner .menu {
    margin-top: 15px;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .party-list > div .item-inner .menu li:not(:nth-of-type(1)) {
    margin-top: 10px;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .caution {
    padding: 10px 20px;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .drink-menu {
    margin-top: 30px;
    padding: 15px;
    border: 1px solid #9d8d66;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .drink-menu .title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    display: -webkit-flex;
    -webkit-justify-content: flex-start;
    -webkit-align-items: center;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    padding-bottom: 15px;
    border-bottom: 1px dotted #000;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .drink-menu .title span {
    font-weight: bold;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .drink-menu .title span:nth-of-type(1) {
    font-size: 20px;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .drink-menu .title span:nth-of-type(2) {
    margin-left: 20px;
    font-size: 14px;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .drink-menu ul {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    display: -webkit-flex;
    -webkit-justify-content: flex-start;
    -webkit-align-items: flex-start;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    margin-top: 20px;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .drink-menu ul li {
    margin-top: 10px;
    padding-left: 15px;
    font-size: 14px;
    color: #221815;
    background: url("../images/common/icon_dot_gold.png") no-repeat left 7px;
    background-size: 10px auto;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .drink-menu ul li:not(:nth-of-type(n+4)) {
    width: 50%;
    margin-top: 0;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .drink-menu ul li:nth-of-type(3) {
    margin-top: 10px;
  }
  .home #contents .c-box03 .menu-contents #PARTYMENU .drink-menu ul li:not(:nth-of-type(-n+3)) {
    width: 100%;
  }
  .home #contents .c-box04 {
    position: relative;
    background: url("../images/top/sec03_visual_sp.jpg") no-repeat center center;
    background-size: cover;
  }
  .home #contents .c-box04 h2 img {
    width: 163px;
  }
  .home #contents .c-box04 .contents-inner {
    padding: 50px 30px;
  }
  .home #contents .c-box04 .contents-inner .list {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    display: -webkit-flex;
    -webkit-justify-content: flex-start;
    -webkit-align-items: flex-start;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    margin-top: 70px;
  }
  .home #contents .c-box04 .contents-inner .list figure {
    width: 32%;
    overflow: hidden;
    margin: 10px 0 0 2%;
  }
  .home #contents .c-box04 .contents-inner .list figure img {
    width: 100%;
  }
  .home #contents .c-box04 .contents-inner .list figure:nth-of-type(-n+3) {
    margin-top: 0;
  }
  .home #contents .c-box04 .contents-inner .list figure:nth-of-type(3n+1) {
    margin-left: 0;
  }
  .home #contents .c-box04 .modal-layer {
    position: absolute;
    z-index: -5;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
  }
  .home #contents .c-box04 .modal-layer.on {
    z-index: 50;
    opacity: 1;
    transition: 1s;
  }
  .home #contents .c-box04 .modal-layer .modal-inner {
    padding-top: 50px;
  }
  .home #contents .c-box04 .modal-layer .modal-contents {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    display: -webkit-flex;
    -webkit-justify-content: center;
    -webkit-align-items: center;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
  }
  .home #contents .c-box04 .modal-layer .modal-contents figure img {
    width: 100%;
  }
  .home #contents .c-box04 .modal-layer .modal-contents .left {
    margin-right: 20px;
  }
  .home #contents .c-box04 .modal-layer .modal-contents .right {
    margin-left: 20px;
  }
  .home #contents .c-box04 .modal-layer .modal-contents .close {
    position: absolute;
    top: 20px;
    right: 30px;
  }
  .home #contents .c-box05::before {
    content: '';
    position: absolute;
    z-index: 5;
    top: 15px;
    left: 15px;
    width: calc(100% - 30px);
    border-top: 2px solid #a30022;
  }
  .home #contents .c-box05::after {
    content: '';
    position: absolute;
    z-index: 5;
    top: 15px;
    left: 15px;
    width: 1px;
    height: calc(100% - 30px);
    border-left: 2px solid #a30022;
  }
  .home #contents .c-box05 .contents-wrap {
    position: relative;
  }
  .home #contents .c-box05 .contents-wrap::before {
    content: '';
    position: absolute;
    z-index: 5;
    bottom: 15px;
    left: 15px;
    width: calc(100% - 30px);
    border-top: 2px solid #a30022;
  }
  .home #contents .c-box05 .contents-wrap::after {
    content: '';
    position: absolute;
    z-index: 5;
    top: 15px;
    right: 15px;
    width: 1px;
    height: calc(100% - 30px);
    border-right: 2px solid #a30022;
  }
  .home #contents .c-box05 .contents-inner {
    position: relative;
  }
  .home #contents .c-box05 .contents-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 8%;
    width: 100px;
    height: 145px;
    background: url("../images/top/sec04_graphic01.png") no-repeat;
    background-size: 100px auto;
  }
  .home #contents .c-box05 .contents-inner .left-col {
    padding: 160px 40px 0 40px;
  }
  .home #contents .c-box05 .contents-inner .left-col .inner h2 img {
    width: 185px;
  }
  .home #contents .c-box05 .contents-inner .left-col .inner .description {
    margin-top: 40px;
    text-align: left;
    font-size: 16px;
    color: #1d1d1d;
    line-height: 1.4;
  }
  .home #contents .c-box05 .contents-inner .left-col .inner .description .tel {
    margin-top: 10px;
  }
  .home #contents .c-box05 .contents-inner .left-col .inner .description .instagram {
    display: inline-block;
    margin-top: 16px;
    padding: 8px 40px 8px 0;
    background: url("../images/top/icon_insta.png") no-repeat right center;
    background-size: 25px auto;
  }
  .home #contents .c-box05 .contents-inner .left-col .inner .description .instagram a {
    position: relative;
    display: inline-block;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
  }
  .home #contents .c-box05 .contents-inner .right-col {
    margin-top: 30px;
  }
  .home #contents .c-box05 .contents-inner .right-col #googleMap {
    height: 300px;
  }
}

.fps{
text-align: center;
background-color: #6c0218e0;
position: fixed;
    z-index: 1000;
    bottom: 20px;
    right: 20px;
    padding:20px 40px;
    border-radius: 10px;
    color: #fff;
    font-weight: 800;
    font-size: 110%;
}

.recruit {
    text-align: center;
    background-color: #6c0218e0;
    padding: 20px 60px;
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 110%;
    margin: 30px auto;
    width: fit-content;
}


#globalFooter .information .tel-time a{
    color: #bc9e5b;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
}

.ch{
text-decoration:underline;
}

@media (max-width: 768px) {
.fps{
text-align: center;
background-color: #6c0218e0;
position: fixed;
    z-index: 1000;
    bottom: 20px;
    right: 20px;
    padding:10px 20px;
    border-radius: 10px;
    color: #fff;
    font-weight: 800;
    font-size: 100%;
}
}
/*# sourceMappingURL=style.css.map */

.caution{margin-bottom:30px;}
