@charset "UTF-8";
/* COMPASS
 * ----------------------------------------------- */
html, body, div, span, 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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

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

/* BASE
 * ----------------------------------------------- */
/* VARIABLE
 * ----------------------------------------------- */
/* MIXIN
 * ----------------------------------------------- */
/* RESET
 * ----------------------------------------------- */
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body * {
  max-height: 99999em;
  word-break: break-word;
}

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

input, label, select, button, textarea {
  margin: 0;
  border: 0;
  padding: 0;
  word-break: normal;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  font: inherit;
  line-height: 1;
}

input[type=search] {
  -webkit-appearance: textfield;
}

::-webkit-search-decoration {
  display: none;
}

textarea {
  overflow: auto;
  white-space: pre-line;
}

a {
  color: #333;
  text-decoration: none;
}

/* PRINT
 * ----------------------------------------------- */
@media print {
  body {
    -webkit-print-color-adjust: exact;
  }

  html, body {
    margin: 0;
  }

  @page {
    margin: 0;
  }
  @page :left {
    margin: 0;
  }
  @page :right {
    margin: 0;
  }
  @page :first {
    margin-top: 0;
  }
}
/* GENERAL
 * ----------------------------------------------- */
body {
  background: #fff;
  font-family: "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  line-height: 1.4;
  color: #333;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  overflow-y: scroll;
}
@media print, (min-width: 768px) and (max-width: 1239px) {
  body {
    overflow-x: scroll;
  }
}
@media only screen and (max-width: 767px) {
  body.is-frozen {
    overflow: hidden;
  }
}

@media only screen and (max-width: 767px) {
  main {
    padding-top: 1rem;
  }
}

.font-family-serif {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Times New Roman", "游明朝", YuMincho, "メイリオ", Meiryo, Georgia, serif;
}

/* HELPER
 * ----------------------------------------------- */
.is-hidden {
  display: none;
}

.is-invisible {
  visibility: visible;
}

/* RESPONSIVE
 * ----------------------------------------------- */
@media print, (min-width: 768px) {
  .sm {
    display: none !important;
  }

  html, body {
    font-size: 16px;
  }

  .container {
    min-width: 1240px;
  }

  .wrapper {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }

  .trans {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .trans:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
  }
}
@media only screen and (max-width: 767px) {
  .md {
    display: none !important;
  }

  html {
    font-size: calc(100vw / 6.4);
  }

  body {
    font-size: 0.28rem;
  }

  .container {
    min-width: 320px;
  }

  .wrapper {
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }
}
/* PARTS
 * ----------------------------------------------- */
/* HEADER
 * ----------------------------------------------- */
header {
  background: #fff;
  border-bottom: 1px solid #d8d8d8;
  z-index: 100;
}
header .wrapper {
  position: relative;
  z-index: 1;
}
@media print, (min-width: 768px) {
  header {
    position: relative;
  }
}
@media only screen and (max-width: 767px) {
  header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
  }
  header .wrapper {
    height: 1rem;
    padding: 0;
  }
}

.button-header-toggle {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
}
.button-header-toggle::before, .button-header-toggle::after {
  content: "";
  background: center center no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: opacity 0.3s ease;
}
.button-header-toggle::before {
  opacity: 1;
}
.button-header-toggle::after {
  background-color: #d9c598;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .button-header-toggle {
    height: 1rem;
    display: block;
    transition: width 0.3s ease;
  }
  .button-header-toggle.is-active::before {
    opacity: 0;
  }
  .button-header-toggle.is-active::after {
    opacity: 1;
  }
  header:not(.is-scrolled) .button-header-toggle {
    width: 1rem;
  }
  header:not(.is-scrolled) .button-header-toggle::before, header:not(.is-scrolled) .button-header-toggle::after {
    background-size: 1rem auto;
  }
  header:not(.is-scrolled) .button-header-toggle::before {
    background-image: url(../img/common/sp/icon_menu_01.png);
  }
  header:not(.is-scrolled) .button-header-toggle::after {
    background-image: url(../img/common/sp/icon_menu_02.png);
  }
  header.is-scrolled .button-header-toggle {
    width: 2rem;
  }
  header.is-scrolled .button-header-toggle::before, header.is-scrolled .button-header-toggle::after {
    background-size: 2rem auto;
  }
  header.is-scrolled .button-header-toggle::before {
    background-image: url(../img/common/sp/icon_menu_03.png);
  }
  header.is-scrolled .button-header-toggle::after {
    background-image: url(../img/common/sp/icon_menu_04.png);
  }
}

.header-logo {
  position: absolute;
  left: 0;
  z-index: 2;
}
.header-logo .logo-wrapper {
  display: block;
}
.header-logo img {
  width: 100%;
}
@media print, (min-width: 768px) {
  .header-logo {
    width: 225px;
    top: 21px;
  }
}
@media only screen and (max-width: 767px) {
  .header-logo {
    padding: 0 1rem;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .header-logo .logo-wrapper {
    width: 2.56rem;
  }
  header.is-scrolled .header-logo {
    opacity: 0;
    visibility: hidden;
  }
}

.header-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  display: none;
}
@media print, (min-width: 768px) {
  body.is-viewport-tablet .header-mask.is-tablet-active {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .header-mask.is-active {
    display: block;
  }
}

/* HEADER - INFORMATION
 * ----------------------------------------------- */
@media only screen and (max-width: 767px) {
  .button-header-phone, .button-header-mail {
    width: 50%;
    padding: 0.08rem;
    border-right: 1px solid #fff;
    flex: 0 0 auto;
  }
  .button-header-phone .item-wrapper, .button-header-mail .item-wrapper {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.25rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    letter-spacing: 0.025em;
  }
  .button-header-phone .item-text, .button-header-mail .item-text {
    min-height: 0.68rem;
    padding: 0.03rem 0 0 0.6rem;
    background: center left 0/0.5rem auto no-repeat;
  }
  .button-header-phone .item-text:after, .button-header-mail .item-text:after {
    content: "";
    min-height: inherit;
    font-size: 0;
  }
}

@media print, (min-width: 768px) {
  .button-header-phone {
    flex: 0 0 auto;
    margin-right: 8px;
  }
  .button-header-phone .item-wrapper, .button-header-phone .item-text {
    display: block;
  }
  .button-header-phone .item-wrapper {
    padding-left: 26px;
    background: url(../img/common/icon_phone_01.png) top 3px left/20px auto no-repeat;
    display: block;
    pointer-events: none;
  }
  .button-header-phone .item-time, .button-header-phone .item-number {
    display: block;
    letter-spacing: 0.05em;
  }
  .button-header-caution .item-time {
    font-size: 11px;
    letter-spacing: 0.05em;
    display: block;
  }
  .button-header-phone .item-time {
    font-size: 11px;
  }
  .button-header-phone .item-number {
    font-size: 20px;
    font-weight: bold;
  }
}
@media only screen and (max-width: 767px) {
  .button-header-phone {
    background: #333;
  }
  .button-header-phone .item-text {
    background-image: url(../img/common/sp/icon_phone_01.png);
  }
}

.button-header-mail .item-wrapper {
  font-weight: bold;
  color: #fff;
}
@media print, (min-width: 768px) {
  .button-header-mail {
    flex: 0 0 auto;
    padding: 0 0 5px 18px;
  }
  .button-header-mail .item-wrapper, .button-header-mail .item-text {
    display: block;
  }
  .button-header-mail .item-wrapper {
    padding: 7px 29px 5px 23px;
    border-radius: 4px;
    border: 2px solid #b89f65;
    background: #b89f65 url(../img/common/icon_arrow_01.png) center right 4px/10px auto no-repeat;
    font-size: 15px;
    letter-spacing: 0.025em;
    transition: background 0.3s ease, color 0.3s ease;
  }
  .is-browser-firefox .button-header-mail .item-wrapper {
    margin-top: 8px;
  }
  .button-header-mail .item-wrapper:hover {
    background-image: url(../img/common/icon_arrow_03.png);
    background-color: #fff;
    color: #b89f65;
  }
  .button-header-mail .item-wrapper:hover .item-text:before {
    background-image: url(../img/common/icon_mail_03.png);
  }
  .button-header-mail .item-text:before {
    content: "";
    width: 20px;
    height: 20px;
    margin: -1px 7px 0 0;
    background: url(../img/common/icon_mail_01.png) center center/100% no-repeat;
    display: inline-block;
    vertical-align: middle;
    transition: background 0.3s ease;
  }
  .is-browser-firefox .button-header-mail .item-text:before {
    margin-top: -2px;
  }
}
@media only screen and (max-width: 767px) {
  .button-header-mail {
    background: #b89f65;
  }
  .button-header-mail .item-text {
    background-image: url(../img/common/sp/icon_mail_01.png);
  }
}

@media print, (min-width: 768px) {
  .header-information {
    padding: 12px 0 0 255px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
@media only screen and (max-width: 767px) {
  .header-information {
    width: calc(100% - 2rem);
    height: 100%;
    display: flex;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  header:not(.is-scrolled) .header-information {
    opacity: 0;
    visibility: hidden;
  }
}

/* HEADER - NAVIGATION
 * ----------------------------------------------- */
.header-navigation .navigation-wrapper {
  display: flex;
}
.header-navigation .item-title {
  display: block;
  font-weight: bold;
  cursor: pointer;
}
.header-navigation .item-title span {
  display: block;
}
@media print, (min-width: 768px) {
  .header-navigation {
    padding-left: 255px;
  }
  .header-navigation .navigation-wrapper {
    margin: 0 -13px;
    justify-content: flex-end;
    align-items: center;
  }
}
@media only screen and (max-width: 767px) {
  .header-navigation {
    width: 5rem;
    position: fixed;
    top: calc(1rem + 1px);
    right: 0;
    bottom: 0;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }
  header.is-active .header-navigation {
    opacity: 1;
    visibility: visible;
    transform: translateX(0%);
  }
  .header-navigation .navigation-wrapper {
    min-height: 100%;
    flex-direction: column;
  }
  .header-navigation .navigation-wrapper:after {
    content: "";
    min-height: inherit;
    font-size: 0;
  }
}

@media print, (min-width: 768px) {
  .header-navigation-item:not(:last-child) {
    margin-right: 2px;
  }
  body:not(.is-viewport-tablet) .header-navigation-item:hover .title-wrapper, body.is-viewport-tablet .header-navigation-item.is-tablet-active .title-wrapper {
    border-bottom: 1px solid #949494;
  }
  body:not(.is-viewport-tablet) .header-navigation-item.is-list:hover .item-title, body.is-viewport-tablet .header-navigation-item.is-list.is-tablet-active .item-title {
    border-color: #d8d8d8;
  }
  body:not(.is-viewport-tablet) .header-navigation-item.is-list:hover .item-title::before, body.is-viewport-tablet .header-navigation-item.is-list.is-tablet-active .item-title::before {
    opacity: 1;
  }
  body:not(.is-viewport-tablet) .header-navigation-item.is-list:hover .list-header-navigation, body.is-viewport-tablet .header-navigation-item.is-list.is-tablet-active .list-header-navigation {
    opacity: 1;
    visibility: visible;
  }
  .header-navigation-item.is-list .item-title::before {
    content: "";
    height: 3px;
    background: #fff;
    position: absolute;
    right: 0;
    bottom: -2px;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .header-navigation-item.is-list .title-wrapper::after {
    content: "";
    width: 10px;
    height: 10px;
    margin: -2px -2px 0 10px;
    background: url(../img/common/icon_arrow_02.png) center center/100% auto no-repeat;
    display: inline-block;
    vertical-align: middle;
  }
  .header-navigation-item .item-title, .header-navigation-item .title-wrapper {
    transition: border 0.3s ease;
  }
  .header-navigation-item .item-title {
    padding: 10px 12px 11px;
    border-width: 1px 1px 0 1px;
    border-style: solid;
    border-color: transparent;
    background: #fff;
    position: relative;
    z-index: 1;
    font-size: 15px;
    letter-spacing: 0.05em;
  }
  .header-navigation-item .title-wrapper {
    border-bottom: 1px solid transparent;
  }
}
@media only screen and (max-width: 767px) {
  .header-navigation-item:not(.is-list) .title-wrapper {
    border-bottom: 1px solid #fff;
  }
  .header-navigation-item:not(.is-list) .item-title::before {
    background-image: url(../img/common/sp/icon_arrow_01.png);
  }
  .header-navigation-item:not(.is-list) .item-title::after {
    display: none;
  }
  .header-navigation-item.is-list .title-wrapper {
    border-bottom: 1px solid transparent;
  }
  .header-navigation-item.is-list .item-title::before {
    background-image: url(../img/common/sp/icon_plus_01.png);
    opacity: 1;
  }
  .header-navigation-item.is-list .item-title::after {
    background-image: url(../img/common/sp/icon_negative_01.png);
    opacity: 0;
  }
  .header-navigation-item.is-list.is-active .item-title::before {
    opacity: 0;
  }
  .header-navigation-item.is-list.is-active .item-title::after {
    opacity: 1;
  }
  .header-navigation-item .item-title {
    padding: 0.34rem 0.8rem 0.32rem 0.4rem;
    background: rgba(0, 0, 0, 0.95) url(../img/common/background_dot_01.png) bottom left/3px 1px repeat-x;
    display: flex;
    position: relative;
    font-size: 0.24rem;
    color: #fff;
  }
  .header-navigation-item .item-title::before, .header-navigation-item .item-title::after {
    content: "";
    width: 0.3rem;
    background: center center/100% auto no-repeat;
    position: absolute;
    top: 0;
    right: 0.26rem;
    bottom: 0;
    transition: opacity 0.3s ease;
  }
}

@media only screen and (max-width: 767px) {
  .header-navigation-additional {
    padding: 0.58rem 0.3rem 0.8rem;
    background: rgba(0, 0, 0, 0.95);
    flex: 2;
  }
  .header-navigation-additional .additional-button-phone, .header-navigation-additional .additional-button-mail {
    border-radius: 0.06rem;
    display: block;
  }
  .header-navigation-additional .additional-button-phone {
    margin-bottom: 0.34rem;
    padding: 0.26rem 0.1rem 0.22rem 1.0rem;
    background: #fff url(../img/common/sp/icon_phone_02.png) left 0.25rem center/0.7rem auto no-repeat;
    letter-spacing: 0.05em;
  }
  .header-navigation-additional .item-time, .header-navigation-additional .item-number {
    display: block;
  }
  .header-navigation-additional .item-time {
    margin: 0.02rem 0 0 0;
    font-size: 2.4vw;
    letter-spacing: 0.02em;
  }
  .header-navigation-additional .item-number {
    font-size: 0.37rem;
    font-weight: bold;
    text-align: center;
  }
  .header-navigation-additional .additional-button-mail {
    padding: 0.42rem 0.5rem 0.4rem 0.96rem;
    background: url(../img/common/sp/icon_mail_02.png) left 0.32rem center/0.5rem auto no-repeat, url(../img/common/sp/icon_arrow_01.png) right 0.1rem center/0.3rem auto no-repeat;
    background-color: #b89f65;
    font-size: 0.28rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.025em;
  }
}

@media print, (min-width: 768px) {
  .list-header-navigation {
    max-width: 1000px;
    padding: 29px 49px 27px 53px;
    border: 1px solid #d8d8d8;
    background: #fff;
    position: absolute;
    top: 100%;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .list-header-navigation .list-wrapper {
    margin: 0 -31px -10px 0;
    display: flex;
    flex-wrap: wrap;
  }
  .list-header-navigation .list-item {
    margin-bottom: 10px;
    padding-right: 23px;
    display: flex;
    flex: 0 0 auto;
  }
  .list-header-navigation .list-item:before {
    content: "〉";
    font-weight: 400;
    color: #cbcbcb;
  }
  .list-header-navigation .item-wrapper {
    position: relative;
    font-size: 15px;
    letter-spacing: 0.05em;
    transition: text-shadow 0.3s ease, color 0.3s ease;
  }
  .is-browser-firefox .list-header-navigation .item-wrapper {
    margin-top: 1px;
  }
  .list-header-navigation .item-wrapper:hover {
    text-shadow: 1px 0 0 #b89f65;
    color: #b89f65;
  }
  .list-header-navigation.is-catering {
    width: 1020px;
    max-width: none;
    padding-right: 6px;
    padding-left: 21px;
    right: -10px;
  }
  .list-header-navigation.is-catering .list-wrapper {
    margin-right: -10px;
  }
  .list-header-navigation.is-catering .list-item {
    padding-right: 10px;
  }
  .list-header-navigation.is-catering .list-item:nth-child(5n - 4) {
    width: 189px;
  }
  .list-header-navigation.is-catering .list-item:nth-child(5n - 3) {
    width: 205px;
  }
  .list-header-navigation.is-catering .list-item:nth-child(5n - 2) {
    width: 205px;
  }
  .list-header-navigation.is-catering .list-item:nth-child(5n - 1) {
    width: 174px;
  }
  .list-header-navigation.is-catering .list-item:nth-child(4) {
    width: 274px;
  }
}
@media only screen and (max-width: 767px) {
  .list-header-navigation {
    display: none;
  }
  .list-header-navigation .list-item {
    background: rgba(36, 36, 36, 0.95);
  }
  .list-header-navigation .list-item:not(:last-child) {
    border-bottom: 1px solid #585858;
  }
  .list-header-navigation .list-item:last-child {
    padding-bottom: 1px;
    background-image: url(../img/common/background_dot_01.png);
    background-size: 3px 1px;
    background-position: bottom left;
    background-repeat: repeat-x;
  }
  .list-header-navigation .item-wrapper {
    padding: 0.26rem 0.4rem 0.22rem;
    display: block;
    font-size: 0.24rem;
    letter-spacing: 0.05em;
    color: #fff;
  }
  .list-header-navigation .item-wrapper:before {
    content: "〉";
  }
}

/* FOOTER
 * ----------------------------------------------- */
.footer-information {
  background: #f1f1f1;
}
.footer-information .wrapper {
  background: #fff;
}
@media print, (min-width: 768px) {
  .footer-information {
    padding: 55px 0 32px;
  }
  .footer-information .wrapper {
    width: 940px;
    border-radius: 5px;
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  .footer-information {
    padding: 0.45rem 0.3rem 0.52rem;
  }
  .footer-information .wrapper {
    border-radius: 0.04rem;
  }
}

.footer-information-service .service-list {
  display: flex;
  flex-wrap: wrap;
}
.footer-information-service .list-item {
  display: flex;
}
.footer-information-service .list-item:not(:nth-child(6)):not(:last-child) .item-wrapper::after {
  content: "｜";
}
.footer-information-service .list-item:last-child {
  width: 100%;
}
.footer-information-service .item-wrapper {
  display: block;
  letter-spacing: 0.05em;
}
.footer-information-service .service-logo {
  display: flex;
}
.footer-information-service .logo-wrapper {
  display: block;
}
.footer-information-service .logo-wrapper img {
  width: 100%;
}
@media print, (min-width: 768px) {
  .footer-information-service {
    width: calc(100% - 496px);
    padding: 51px 50px 51px 57px;
  }
  .footer-information-service .service-list {
    margin-bottom: 21px;
  }
  .footer-information-service .item-wrapper {
    font-size: 11px;
    line-height: 1.45455;
  }
  .footer-information-service .logo-wrapper {
    width: 319px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-information-service {
    padding-bottom: 0.35rem;
  }
  .footer-information-service .service-list {
    padding: 0.44rem 0 0.44rem 0rem;
  }
  .footer-information-service .item-wrapper {
    font-size: 0.16rem;
    line-height: 1.625;
  }
  .footer-information-service .service-logo {
    justify-content: center;
  }
  .footer-information-service .logo-wrapper {
    width: 3.7rem;
  }
}

.footer-information-contact {
  letter-spacing: 0.05em;
}
.footer-information-contact .phone-number {
  background: center left no-repeat;
  font-weight: bold;
}
.footer-information-contact .detail-item {
  display: flex;
}
.footer-information-contact .detail-item span {
  flex: 0 0 auto;
}
.footer-information-contact .contact-list {
  display: flex;
  font-weight: bold;
}
.footer-information-contact .contact-list .list-item {
  display: flex;
  flex: 0 1 auto;
  align-items: center;
}
.footer-information-contact .contact-list .list-item::after, .footer-information-contact .contact-list .list-item:first-child::before {
  content: "｜";
  font-weight: 400;
}
.footer-information-contact .contact-list .item-wrapper {
  display: block;
  text-align: center;
}
@media print, (min-width: 768px) {
  .footer-information-contact {
    width: 496px;
    padding: 34px 57px 20px 0;
    flex: 0 0 auto;
  }
  .footer-information-contact .contact-phone {
    margin-bottom: 11px;
  }
  .footer-information-contact .phone-wrapper {
    display: flex;
  }
  .footer-information-contact .phone-number {
    margin-right: 11px;
    padding: 3px 0 0 35px;
    background-image: url(../img/common/icon_phone_02.png);
    background-size: 30px auto;
    display: inline-block;
    vertical-align: middle;
    pointer-events: none;
    font-size: 20px;
  }
  .footer-information-contact .phone-time {
    font-size: 11px;
    letter-spacing: 0.05em;
  }
  .footer-information-contact .contact-detail {
    margin-bottom: 22px;
    font-size: 13px;
    line-height: 1.62;
  }
  .footer-information-contact .contact-detail span {
    margin-left: -7px;
  }
  .footer-information-contact .contact-list {
    margin: 0 -4px;
    font-size: 15px;
  }
  .footer-information-contact .contact-list .list-item {
    min-width: 110px;
  }
  .footer-information-contact .contact-list .item-wrapper {
    margin: 0 16px -1px;
    border-bottom: 1px solid transparent;
    transition: border 0.3s ease;
  }
  .footer-information-contact .contact-list .item-wrapper:hover {
    border-color: #333;
  }
  .footer-information-contact .contact-list:first-of-type {
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-information-contact .contact-phone {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
  }
  .footer-information-contact .phone-number  {
    display: inline-block;
    min-width: 3.2rem;
    padding-left: 0.68rem;
    background: url(../img/common/sp/icon_phone_03.png) center left 0.08rem/0.5rem auto no-repeat;
  }
  .footer-information-contact .phone-number, .footer-information-contact .phone-time {
    display: block;
  }
  .footer-information-contact .phone-number {
    margin-bottom: 0.15rem;
    font-size: 0.35rem;
  }
  .footer-information-contact .phone-time {
    font-size: 0.18rem;
  }
  .footer-information-contact .contact-detail {
    margin-bottom: 0.44rem;
    font-size: 0.2rem;
    line-height: 1.2;
  }
  .footer-information-contact .detail-item {
    margin-right: -0.12rem;
  }
  .footer-information-contact .detail-item:not(:last-child) {
    margin-bottom: 0.14rem;
  }
  .footer-information-contact .contact-list {
    padding-bottom: 0.46rem;
    justify-content: center;
    font-size: 0.2rem;
    line-height: 1.2;
  }
  .footer-information-contact .contact-list .list-item {
    min-width: 1.2rem;
  }
  .footer-information-contact .contact-list .item-wrapper {
    margin: -1px 0.08rem;
    border-bottom: 1px solid #333;
  }
}

.footer-navigation {
  background: #f1f1f1;
  letter-spacing: 0.05em;
}
.footer-navigation .navigation-menu {
  display: flex;
  flex-wrap: wrap;
}
.footer-navigation .item-title, .footer-navigation .item-list li {
  display: flex;
}
.footer-navigation .item-title::before, .footer-navigation .item-list li::before {
  content: "〉";
  flex: 0 0 auto;
}
.footer-navigation .item-title a, .footer-navigation .item-list a {
  display: block;
  position: relative;
}
.footer-navigation .item-title {
  font-weight: bold;
}
.footer-navigation .item-list li::before {
  color: #cbcbcb;
}
@media print, (min-width: 768px) {
  .footer-navigation {
    padding-bottom: 32px;
  }
  .footer-navigation .navigation-menu {
    padding: 0 30px 0 40px;
  }
  .footer-navigation .menu-item:not(:nth-child(4)):not(:last-child) {
    border-right: 1px solid #e4e4e4;
  }
  .footer-navigation .menu-item {
    padding: 33px 29px;
  }
  .footer-navigation .item-title a::after, .footer-navigation .item-list a::after {
    content: "";
    height: 1px;
    background: #333;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .footer-navigation .item-title a:hover::after, .footer-navigation .item-list a:hover::after {
    opacity: 1;
  }
  .footer-navigation .item-title::before, .footer-navigation .item-list li::before {
    font-weight: 400;
  }
  .footer-navigation .item-title {
    margin-bottom: 11px;
    font-size: 15px;
  }
  .footer-navigation .item-list {
    font-size: 13px;
  }
  .footer-navigation .item-list li:not(:last-child) {
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-navigation {
    padding-bottom: 0.1rem;
    font-size: 0.21rem;
  }
  .footer-navigation .menu-item {
    width: 100%;
    flex: 0 0 auto;
  }
  .footer-navigation .menu-item:not(.is-list) {
    padding-bottom: 0.52rem;
  }
  .footer-navigation .menu-item:not(.is-list) .item-title {
    padding: 0 0 0.16rem 0.18rem;
  }
  .footer-navigation .menu-item:not(.is-list) .item-list ul {
    margin-bottom: -0.2rem;
  }
  .footer-navigation .menu-item.is-list.is-active .item-title a {
    color: #8b8b8b;
  }
  .footer-navigation .menu-item.is-list.is-active .item-title a::before {
    opacity: 0;
  }
  .footer-navigation .menu-item.is-list.is-active .item-title a::after {
    opacity: 1;
  }
  .footer-navigation .menu-item.is-list .item-title {
    position: relative;
  }
  .footer-navigation .menu-item.is-list .item-title::before {
    display: none;
  }
  .footer-navigation .menu-item.is-list .item-title a {
    width: 100%;
    padding: 0.32rem 0.6rem 0.24rem 0.2rem;
    display: block;
    position: relative;
    transition: color 0.3s ease;
  }
  .footer-navigation .menu-item.is-list .item-title a::before, .footer-navigation .menu-item.is-list .item-title a::after {
    content: "";
    width: 0.6rem;
    height: 100%;
    background: center center/0.2rem auto no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    transition: opacity 0.3s ease;
  }
  .footer-navigation .menu-item.is-list .item-title a::before {
    background-image: url(../img/common/sp/icon_plus_02.png);
    opacity: 1;
  }
  .footer-navigation .menu-item.is-list .item-title a::after {
    background-image: url(../img/common/sp/icon_negative_02.png);
    opacity: 0;
  }
  .footer-navigation .menu-item.is-list .item-list {
    display: none;
  }
  .footer-navigation .menu-item.is-list .item-list ul {
    padding: 0.06rem 0 0.1rem;
  }
  .footer-navigation .menu-item:not(:last-child) {
    border-bottom: 1px solid #c7c7c7;
  }
  .footer-navigation .menu-item:last-child .item-list {
    padding-bottom: 0.16rem;
  }
  .footer-navigation .item-title::before, .footer-navigation .item-list li::before {
    font-weight: bold;
  }
  .footer-navigation .item-list ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .footer-navigation .item-list li {
    width: 48%;
    flex: 0 0 auto;
    margin-bottom: 0.2rem;
    padding: 0 0.1rem 0 0.18rem;
  }
}

.footer-copyright {
  background: #fff;
  letter-spacing: 0.05em;
  text-align: center;
}
@media print, (min-width: 768px) {
  .footer-copyright {
    padding: 25px 0;
    font-size: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-copyright {
    padding: 0.3rem 0;
    font-size: 0.16rem;
  }
}

/* MODULES
 * ----------------------------------------------- */
/* BREADCRUMB
 * ----------------------------------------------- */
.breadcrumb-common {
  letter-spacing: 0.05em;
  color: #6c6c6c;
}
.breadcrumb-common .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.breadcrumb-common li:not(:last-child)::after {
  content: "〉";
  color: #c1c1c1;
}
.breadcrumb-common a {
  color: #cdae65;
}
@media print, (min-width: 768px) {
  .breadcrumb-common {
    margin-bottom: 33px;
    font-size: 13px;
  }
  .breadcrumb-common .wrapper {
    padding-right: 27px;
  }
  .breadcrumb-common li:not(:last-child)::after {
    margin-left: 10px;
  }
  .breadcrumb-common a {
    box-shadow: inset 0 -1px #fff, inset 0 -2px #b89f65;
    transition: box-shadow 0.3s ease;
  }
  .breadcrumb-common a:hover {
    box-shadow: inset 0 -1px #fff, inset 0 -2px transparent;
  }
}
@media only screen and (max-width: 767px) {
  .breadcrumb-common {
    margin-bottom: 0.48rem;
    font-size: 0.2rem;
  }
  .breadcrumb-common li:not(:last-child)::after {
    margin-left: 0.16rem;
  }
  .breadcrumb-common a {
    box-shadow: inset 0 -0.03rem #fff, inset 0 -0.04rem #b89f65;
  }
}

/* KEYVISUAL
 * ----------------------------------------------- */
.keyvisual-common {
  letter-spacing: 0.05em;
}
.keyvisual-common .keyvisual-title {
  margin: 0 auto;
  background-color: #f7f7f7;
  position: relative;
  z-index: 0;
  text-align: center;
}
.keyvisual-common .keyvisual-title .wrapper {
  display: block;
}
.keyvisual-common .title-english, .keyvisual-common .title-japanese {
  display: block;
}
.keyvisual-common .title-japanese {
  font-weight: bold;
}
.keyvisual-common .keyvisual-banner {
  position: relative;
  color: #fff;
}
.keyvisual-common .keyvisual-banner .wrapper {
  background: center center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.keyvisual-common .keyvisual-banner .wrapper::after {
  content: "";
  min-height: inherit;
  font-size: 0;
}
.keyvisual-common .banner-content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.keyvisual-common .banner-content::after {
  content: "";
  min-height: inherit;
  font-size: 0;
}
.keyvisual-common .content-wrapper {
  max-width: 100%;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
}
.keyvisual-common .content-title, .keyvisual-common .content-money {
  font-weight: bold;
}
.keyvisual-common .content-money span {
  display: inline-block;
}
.keyvisual-common .money-note {
  font-weight: 400;
}
.keyvisual-common .additional-highlight {
  font-weight: bold;
  text-align: center;
}
.keyvisual-common .banner-background {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.keyvisual-common .banner-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media print, (min-width: 768px) {
  .keyvisual-common.is-extended .keyvisual-title {
    margin-bottom: 44px;
    padding-top: 31px;
    padding-bottom: 32px;
  }
  .keyvisual-common .keyvisual-title {
    padding: 38px 0 30px;
  }
  .keyvisual-common .title-english {
    margin-bottom: 7px;
    font-size: 16px;
  }
  .keyvisual-common .title-japanese {
    font-size: 38px;
  }
  .keyvisual-common .keyvisual-banner {
    margin-top: -47px;
  }
  .keyvisual-common .keyvisual-banner .wrapper {
    width: 1030px;
  }
  .keyvisual-common .banner-content {
    padding: 30px;
  }
  .keyvisual-common .content-title {
    margin-bottom: 1px;
    font-size: 22px;
  }
  .keyvisual-common .content-money {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .keyvisual-common .money-text {
    margin-right: 2px;
    transform: translateY(-4px);
  }
  .keyvisual-common .money-number {
    margin: 0 3px 0 8px;
    font-size: 45px;
    transform: translateY(3px);
  }
  .keyvisual-common .money-currency {
    font-size: 35px;
  }
  .keyvisual-common .money-note {
    font-size: 15px;
  }
  .keyvisual-common .banner-background {
    height: 350px;
  }
  .keyvisual-common .keyvisual-additional {
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .keyvisual-common.is-extended .keyvisual-title {
    margin-bottom: 5.3125vw;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }
  .keyvisual-common .keyvisual-title {
    padding: 0.44rem 0 0.37rem;
  }
  .keyvisual-common .additional-text .el_option_bold {
    display: block;
    text-align: center;
    font-weight: bold;
    margin-bottom: 6.25vw;
  }
  .keyvisual-common .title-english {
    margin-bottom: 0.07rem;
    font-size: 0.22rem;
  }
  .keyvisual-common .title-japanese {
    font-size: 0.38rem;
  }
  .keyvisual-common .keyvisual-banner {
    margin-top: -1.8rem;
  }
  .keyvisual-common .keyvisual-banner .wrapper {
    margin: 0 0.2rem;
    padding: 0;
  }
  .keyvisual-common .banner-content {
    padding: 0.3rem;
  }
  .keyvisual-common .content-title {
    margin-bottom: 0.12rem;
    font-size: 0.22rem;
  }
  .keyvisual-common .content-money {
    margin-bottom: 0.08rem;
    font-size: 0.2rem;
    line-height: 2.5;
  }
  .keyvisual-common .money-number {
    margin-bottom: 0.06rem;
    margin-left: 0.1rem;
    font-size: 0.45rem;
    line-height: 1.11111;
  }
  .keyvisual-common .money-currency {
    margin-bottom: 0.04rem;
    font-size: 0.35rem;
    line-height: 1.42857;
  }
  .keyvisual-common .money-note {
    margin-bottom: -0.02rem;
    font-size: 0.15rem;
  }
  .keyvisual-common .money-text {
    position: relative;
    top: -0.04rem;
  }
  .keyvisual-common .banner-background {
    height: 3.2rem;
  }
  .keyvisual-common .keyvisual-additional {
    font-size: 0.26rem;
    line-height: 1.47;
    text-align: justify;
  }
}

/* LIST - DOT
 * ----------------------------------------------- */
.list-common-dot {
  letter-spacing: 0.05em;
}
.list-common-dot li {
  position: relative;
  padding-left: 1em;
}
.list-common-dot li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
@media print, (min-width: 768px) {
  .list-common-dot {
    font-size: 15px;
    line-height: 1.6;
  }
}
@media only screen and (max-width: 767px) {
  .list-common-dot {
    font-size: 0.26rem;
    line-height: 1.693;
  }
}

/* TITLE
 * ----------------------------------------------- */
.title-common {
  display: block;
  letter-spacing: 0.05em;
}
.title-common .title-english, .title-common .title-japanese {
  display: block;
  text-align: center;
}
.title-common .title-english {
  color: #b89f65;
}
.title-common .title-japanese {
  font-weight: bold;
}
@media print, (min-width: 768px) {
  .title-common .title-english {
    margin-bottom: 8px;
    font-size: 16px;
  }
  .title-common .title-japanese {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .title-common .title-english {
    margin-bottom: 0.06rem;
    font-size: 0.22rem;
  }
  .title-common .title-japanese {
    font-size: 0.36rem;
  }
}

.title-common-bottom {
  border-bottom: 1px solid #dbdbdb;
  font-weight: bold;
}
@media print, (min-width: 768px) {
  .title-common-bottom {
    padding: 0 20px 13px;
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .title-common-bottom {
    padding: 0 0.2rem 0.14rem;
    font-size: 0.3rem;
  }
}

.title-common-radius {
  background: #333;
  display: inline-block;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
}
.title-common-radius.is-gold {
  background: #d4bb81;
}
@media print, (min-width: 768px) {
  .title-common-radius {
    margin-bottom: 16px;
    padding: 9px 24px 6px;
    border-radius: 6px;
    font-size: 15px;
  }
  .is-system-ios.is-browser-chrome .title-common-radius {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .is-system-ios.is-browser-safari .title-common-radius {
    padding-top: 8px;
  }
  .is-viewport-tablet .title-common-radius {
    padding-bottom: 9px;
  }
}
@media only screen and (max-width: 767px) {
  .title-common-radius {
    margin-bottom: 0.22rem;
    padding: 0.05rem 0.4rem 0.05rem 0.45rem;
    border-radius: 0.06rem;
    font-size: 0.22rem;
  }
  .is-system-android .title-common-radius {
    padding-top: 0.03rem;
    padding-bottom: 0.05rem;
  }
}
@media only screen and (max-width: 374px) {
  .title-common-radius {
    padding-top: 0.06rem;
    padding-bottom: 0.03rem;
  }
}

/* PAGE
 * ----------------------------------------------- */
/* CATERING - CASE
 * ----------------------------------------------- */
@media only screen and (max-width: 767px) {
  .breadcrumb-common .wrapper {
    padding-right: 0.2rem;
    padding-left: 0.2rem;
  }
}

.keyvisual-common .keyvisual-banner {
  font-weight: bold;
}
@media print, (min-width: 768px) {
  .keyvisual-common {
    padding-bottom: 75px;
  }
  .keyvisual-common .keyvisual-banner {
    margin-bottom: 52px;
    font-size: 20px;
    line-height: 1.5;
  }
  .keyvisual-common .keyvisual-banner .content-wrapper {
    padding: 44px 46px;
  }
  .keyvisual-common .keyvisual-additional .additional-highlight {
    margin-bottom: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .keyvisual-common {
    padding-bottom: 0.37rem;
  }
  .keyvisual-common .keyvisual-banner {
    margin-bottom: 0.6rem;
    font-size: 0.22rem;
    line-height: 1.5;
  }
  .keyvisual-common .keyvisual-banner .content-wrapper {
    padding: 0.52rem 0.42rem;
  }
  .keyvisual-common .keyvisual-additional .additional-highlight {
    margin-bottom: 0.36rem;
  }
}

.button-case-spoon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: background 0.3s ease, color 0.3s ease;
}
.button-case-spoon::after {
  content: "";
  min-height: inherit;
  font-size: 0;
}
.button-case-spoon:hover {
  background-color: #fff;
}
.button-case-spoon:hover .button-wrapper {
  color: #b89f65;
}
.button-case-spoon .button-wrapper {
  position: relative;
  display: block;
  transition: background 0.3s ease, color 0.3s ease;
  color: #fff;
}
.button-case-spoon .button-wrapper::before {
  content: "";
  margin: auto 0;
  background: center center/100% auto no-repeat;
  position: absolute;
  top: -99px;
  left: 0;
  bottom: -99px;
  transition: background 0.3s ease;
}
.button-case-spoon2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: background 0.3s ease, color 0.3s ease;
}
.button-case-spoon2::after {
  content: "";
  min-height: inherit;
  font-size: 0;
}
.button-case-spoon2:hover {
  background-color: #fff;
  box-shadow:0 1px 0 0 #941d0a;
  transform: translateY(8px);
}
.button-case-spoon2:hover .button-wrapper {
  color: #bd2c14;
}
.button-case-spoon2 .button-wrapper {
  position: relative;
  display: block;
  transition: background 0.3s ease, color 0.3s ease;
  color: #fff;
}
.button-case-spoon2 .button-wrapper::before {
  content: "";
  margin: auto 0;
  background: center center/100% auto no-repeat;
  position: absolute;
  top: -99px;
  left: 0;
  bottom: -99px;
  transition: background 0.3s ease;
}
@media print, (min-width: 768px) {
  .button-case-spoon {
    width: 448px;
    min-height: 38px;
    padding: 10px 50px 10px 10px;
    border: 2px solid #b89f65;
    border-radius: 5px;
    background: #b89f65 url(../img/catering/case/icon_arrow_01.png) right 11px center no-repeat;
    font-size: 18px;
    margin-bottom: 10px;
  }
  .button-case-spoon .button-wrapper {
    padding: 2px 0 0 60px;
  }
  .is-system-ios.is-browser-safari .button-case-spoon .button-wrapper {
    padding-top: 0;
  }
  .is-system-ios.is-browser-chrome .button-case-spoon .button-wrapper {
    padding-top: 1px;
  }
  .button-case-spoon .button-wrapper::before {
    width: 45px;
    height: 45px;
    background-image: url(../img/catering/case/icon_spoon_01.png);
  }
  .button-case-spoon:hover {
    background-image: url(../img/catering/case/icon_arrow_02.png);
  }
  .button-case-spoon:hover .button-wrapper::before {
    background-image: url(../img/catering/case/icon_spoon_02.png);
  }
  .button-case-spoon2 {
    width: 448px;
    min-height: 38px;
    padding: 10px 50px 10px 10px;
    border: 2px solid #bd2c14;
    border-radius: 5px;
    background: #bd2c14 url(../img/catering/case/icon_arrow_01.png) right 11px center no-repeat;
    font-size: 18px;
    box-shadow:0 8px 0 0 #941d0a;
    transition: all 0.3s;
  }
  .button-case-spoon2 .button-wrapper {
    padding: 2px 0 0 60px;
  }
  .is-system-ios.is-browser-safari .button-case-spoon2 .button-wrapper {
    padding-top: 0;
  }
  .is-system-ios.is-browser-chrome .button-case-spoon2 .button-wrapper {
    padding-top: 1px;
  }
  .button-case-spoon2 .button-wrapper::before {
    width: 45px;
    height: 45px;
    background-image: url(../img/catering/case/store_icn_off.png);
  }
  .button-case-spoon2:hover {
    background-image: url(../img/catering/case/icon_arrow_04.png);
  }
  .button-case-spoon2:hover .button-wrapper::before {
    background-image: url(../img/catering/case/store_icn_on.png);
  }
  .block-budget_cation{
    display: flex;
    width: 409px;
  }
  .block-budget_cation span{
    font-weight: normal;
    text-align: left;
    padding: 0px 3px;
    margin-top: 16px;
  }
  .block-budget_cation::before {
    content: '※';
    margin-top: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .button-case-spoon {
    margin: 0.48rem -0.1rem 0;
    padding: 0.2rem 0.86rem 0.2rem 0.2rem;
    border: 1px solid #b89f65;
    border-radius: 0.06rem;
    background: #b89f65 url(../img/catering/case/sp/icon_arrow_01.png) right 0.26rem center/0.3rem auto no-repeat;
    font-size: 0.26rem;
  }
  .button-case-spoon .button-wrapper {
    padding: 0.04rem 0 0.04rem 0.9rem;
  }
  .button-case-spoon .button-wrapper::before {
    width: 0.6rem;
    height: 0.6rem;
    background-image: url(../img/catering/case/sp/icon_spoon_01.png);
  }
  .button-case-spoon:hover {
    background-image: url(../img/catering/case/sp/icon_arrow_02.png);
  }
  .button-case-spoon:hover .button-wrapper::before {
    background-image: url(../img/catering/case/sp/icon_spoon_02.png);
  }
  .button-case-spoon.is-longer {
    padding-right: 0.65rem;
    padding-left: 0.1rem;
  }
  .button-case-spoon.is-longer .button-wrapper {
    padding-left: 0.8rem;
  }
  .button-case-spoon.is-longest {
    padding-right: 0.3rem;
    padding-left: 0.1rem;
    background-position: right 0.06rem center;
    justify-content: flex-start;
  }
  .button-case-spoon.is-longest .button-wrapper {
    padding-left: 0.65rem;
  }
  .button-case-spoon2 {
    margin: 0.25rem -0.1rem 0;
    padding: 0.2rem 0.86rem 0.2rem 0.2rem;
    border: 1px solid #bd2c14;
    border-radius: 0.06rem;
    background: #bd2c14 url(../img/catering/case/sp/icon_arrow_01.png) right 0.26rem center/0.3rem auto no-repeat;
    font-size: 0.26rem;
    box-shadow:0 8px 0 0 #941d0a;
    transition: all 0.3s;
  }
  .button-case-spoon2 .button-wrapper {
    padding: 0.04rem 0 0.04rem 0.9rem;
  }
  .button-case-spoon2 .button-wrapper::before {
    width: 0.6rem;
    height: 0.6rem;
    background-image: url(../img/catering/case/sp/store_icn_off.png);
  }
  .button-case-spoon2:hover {
    background-image: url(../img/catering/case/sp/icon_arrow_04.png);
  }
  .button-case-spoon2:hover .button-wrapper::before {
    background-image: url(../img/catering/case/sp/store_icn_on.png);
  }
  .button-case-spoon2.is-longer {
    padding-right: 0.65rem;
    padding-left: 0.1rem;
  }
  .button-case-spoon2.is-longer .button-wrapper {
    padding-left: 0.8rem;
  }
  .button-case-spoon2.is-longest {
    padding-right: 0.3rem;
    padding-left: 0.1rem;
    background-position: right 0.06rem center;
    justify-content: flex-start;
  }
  .button-case-spoon2.is-longest .button-wrapper {
    padding-left: 0.65rem;
  }
  .block-budget_outer {
      display: flex;
      justify-content: space-between;
    }
  .block-budget_cation{
      display: flex;
    }
  .block-budget_cation span{
      font-weight: normal;
      margin-top: 3.5vw;
      text-align: left;
      font-size: 3.4vw;
    }
  .block-budget_cation::before {
      content: '※';
      margin-top: 3.5vw;
      font-size: 3.4vw;
    }
}

/* BUTTON
 * ----------------------------------------------- */
 .button-common-direct {
  background: #b89f65 no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.025em;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.button-common-direct:after {
  content: "";
  min-height: inherit;
  font-size: 0;
}
.button-common-direct .button-wrapper {
  position: relative;
  display: block;
}
.button-common-direct:hover {
  background-color: #fff;
  color: #b89f65;
}
@media print, (min-width: 768px) {
  .button-common-direct {
    min-height: 52px;
    padding: 8px 45px 10px;
    border: 2px solid #b89f65;
    border-radius: 5px;
    background-image: url(../img/common/icon_arrow_01.png);
    background-size: 20px auto;
    background-position: center right 13px;
    font-size: 27px;
  }
  .button-common-direct:hover {
    background-image: url(../img/common/icon_arrow_03.png);
  }
  .is-browser-firefox .button-common-direct {
    padding-top: 10px;
  }
  .button-common-direct .is-system-ios.is-browser-chrome, .button-common-direct .is-system-ios.is-browser-safari {
    padding-top: 7px;
  }
  .button-common-direct .button-wrapper {
    padding-top: 4px;
  }
}
@supports (-ms-ime-align: auto) {
  .button-common-direct {
    padding-top: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .button-common-direct {
    min-height: 0.7rem;
    padding: 0.1rem 0.6rem 0.06rem;
    border: 1px solid #b89f65;
    border-radius: 0.06rem;
    background-image: url(../img/common/sp/icon_arrow_01.png);
    background-size: 0.3rem auto;
    background-position: center right 0.24rem;
    font-size: 0.28rem;
  }
  .button-common-direct:hover {
    background-image: url(../img/common/sp/icon_arrow_02.png);
  }
  .is-system-ios.is-browser-safari .button-common-direct {
    padding-top: 0.08rem;
    padding-bottom: 0.1rem;
  }
  .button-common-direct .button-wrapper {
    padding: 0.03rem 0 0.02rem;
  }
}

.button-common-direct.is-mail {
  margin: 0 auto;
}
.button-common-direct.is-mail .button-wrapper::before {
  content: "";
  background: center center/100% auto no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  transition: background 0.3s ease;
}
@media print, (min-width: 768px) {
  .button-common-direct.is-mail {
    width: 618px;
  }
  .is-browser-firefox .button-common-direct.is-mail {
    padding-top: 9px;
  }
  .button-common-direct.is-mail .button-wrapper {
    padding: 4px 5px 0 68px;
  }
  .is-browser-firefox .button-common-direct.is-mail .button-wrapper {
    padding-top: 6px;
  }
  .is-system-ios .button-common-direct.is-mail .button-wrapper {
    padding-top: 0;
  }
  .button-common-direct.is-mail .button-wrapper::before {
    width: 40px;
    background-image: url(../img/service/icon_mail_01.png);
  }
  .button-common-direct.is-mail:hover .button-wrapper::before {
    background-image: url(../img/service/icon_mail_02.png);
  }
}
@media only screen and (max-width: 767px) {
  .button-common-direct.is-mail .button-wrapper {
    padding: 0.03rem 0.5rem 0.02rem 0.94rem;
  }
  .is-system-android .button-common-direct.is-mail .button-wrapper {
    padding-bottom: 0.09rem;
  }
  .button-common-direct.is-mail .button-wrapper::before {
    width: 0.7rem;
    background-image: url(../img/service/sp/icon_mail_01.png);
  }
  .button-common-direct.is-mail:hover .button-wrapper::before {
    background-image: url(../img/service/sp/icon_mail_02.png);
  }
}

.ly_option {
  margin-bottom: 80px;
}
.bl_option_txtBox {
  width: 440px;
  margin-top: 12px;
}
.bl_option_txtBox dt {
  font-size: 20px;
  font-weight: bold;
  border-bottom: #dbdbdb solid 1px;
  margin-bottom: 10px;
  padding: 0 0 10px 18px;
}
.bl_option_txtBox dt span {
  font-size: 26px;
}
.bl_option_txtBox dd {
  padding-left: 18px;
}
.bl_option_txt li {
  font-size: 15px;
  line-height: 1.6;
}

.bl_option_celebrate {
  width: 1000px;
  margin: 86px auto 0;
}
.bl_option_celebrateTtl {
  font-size: 24px;
  font-weight: bold;
  color: #cdae65;
  text-align: center;
  border: #c3ad7b solid 3px;
  margin-bottom: 50px;
  padding: 16px 0 14px;
}
.bl_option_celebrateImgs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.bl_option_celebrateImgs li {
  position: relative;
  margin-bottom: 40px;
}
.bl_option_celebrateImgs li span {
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 18px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.ly_overview {
  margin-bottom: 110px;
}
.bl_overview_txtBox {
  width: 1000px;
  margin: 0 auto 40px;
}
.bl_overview_txtBox:first-of-type {
  margin-top: 70px;
}
.bl_overview_txtBox:last-of-type {
  margin-bottom: 64px;
}
.bl_overview_txtBox dt {
  font-size: 20px;
  font-weight: bold;
  border-bottom: #dbdbdb solid 1px;
  margin-bottom: 18px;
  padding: 0 0 15px 18px;
}
.bl_overview_txtBox dd {
  font-size: 15px;
  line-height: 1.6;
  padding-left: 18px;
}
.bl_overview_txt li {
  font-size: 15px;
  line-height: 1.6;
}
@media print, (min-width: 768px) {
  .bl_option_box {
    width: 1000px;
    margin: 0 auto 60px;
    padding-right: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .ly_option {
    margin-bottom: 14.0625vw;
  }
  .bl_option_box {
    width: 87.5vw;
    margin: 0 auto 12.5vw;
  }
  .bl_option_img {
    margin-bottom: 5.3125vw;
  }
  .bl_option_txtBox {
    width: 100%;
    margin-top: 0;
  }
  .bl_option_txtBox dt {
    font-size: 4.6875vw;
    border-bottom: #dbdbdb solid 0.2vw;
    margin-bottom: 4.0625vw;
    padding: 0 0 2.5vw 0.46875vw;
  }
  .bl_option_txtBox dt span {
    font-size: 6.25vw;
  }
  .bl_option_txtBox dd {
    padding-left: 0;
  }
  .bl_option_txt li {
    font-size: 4.0625vw;
    line-height: 1.6;
    text-indent: -1em;
    padding-left: 1em;
  }
  
  .bl_option_celebrate {
    width: 93.75vw;
    margin: 14.0625vw auto 0;
  }
  .bl_option_celebrateTtl {
    font-size: 4.6875vw;
    border: #c3ad7b solid 0.6vw;
    margin-bottom: 7.5vw;
    padding: 4.0625vw 0 3.90625vw;
  }
  .bl_option_celebrateImgs li {
    width: 46.25vw;
    position: relative;
    margin-bottom: 1.5625vw;
  }
  .bl_option_celebrateImgs li span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
  flex-wrap: wrap;
    width: 100%;
    height: 14.375vw;
    position: absolute;
    left: 0;
    bottom: 0;
    text-align: center;
    font-size: 4.0625vw;
    line-height: 1.3;
  }
  .bl_option_celebrateImgs li span sub {
    display: block;
    width: 100%;
    font-weight: normal;
    font-size: 2.8125vw;
    line-height: 1.2;
    margin-top: -0.78125vw;
  }

  .ly_overview {
    width: 93.75vw;
    margin: 0 auto 5.625vw;
  }
  .bl_overview_txtBox {
    width: 87.5vw;
    margin: 0 auto 7.1874vw;
  }
  .bl_overview_txtBox:first-of-type {
    margin-top: 9.375vw;
  }
  .bl_overview_txtBox:last-of-type {
    margin-bottom: 14.0625vw;
  }
  .bl_overview_txtBox dt {
    font-size: 4.6875vw;
    font-weight: bold;
    border-bottom: #dbdbdb solid 0.2vw;
    margin-bottom: 4.6875vw;
    padding: 0 0 3.125vw 0;
  }
  .bl_overview_txtBox dd {
    font-size: 4.0625vw;
    line-height: 1.6;
    padding-left: 0;
  }
  .bl_overview_txt li {
    font-size: 4.0625vw;
    line-height: 1.6;
  }
}

/*# sourceMappingURL=catering-case.css.map */
