@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap");
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

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

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

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

th, td {
  vertical-align: middle;
}

input, select {
  vertical-align: middle;
  outline: none;
}

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

html {
  overflow-y: scroll;
  background: #000;
}

body {
  font-family: "Noto Serif JP", serif;
  text-align: left;
  color: #333;
  font-size: 16px;
  line-height: 2;
  background: #FFF;
  -webkit-text-size-adjust: 100%;
  word-break: break-all;
}

input[type=radio] {
  position: absolute;
  opacity: 0;
}
input[type=radio] + .radio-label {
  margin-right: 1.5em;
  cursor: pointer;
}
input[type=radio] + .radio-label::before {
  position: relative;
  display: inline-block;
  content: "";
  background: #FFF;
  border-radius: 100%;
  border: 1px solid #999;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  vertical-align: middle;
  text-align: center;
}
input[type=radio]:checked + .radio-label::before {
  background-color: #000;
  box-shadow: inset 0 0 0 3px #FFF;
}

input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border-radius: 0;
}

input[type=text],
input[type=email],
input[type=password],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border-radius: 3px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: fz(15);
  line-height: 1.6;
  box-sizing: border-box;
}

input[type=text],
input[type=email],
input[type=password],
textarea {
  width: 80%;
  border: 1px solid #999;
  padding: 10px;
}
@media screen and (max-width: 1024px) {
  input[type=text],
  input[type=email],
  input[type=password],
  textarea {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  input[type=text],
  input[type=email],
  input[type=password],
  textarea {
    width: 100%;
  }
}

select {
  border: 1px solid #999;
  padding: 5px 8px;
  border-radius: 3px;
  font-family: "Noto Serif JP", serif;
  font-size: fz(16);
  line-height: 1.6;
  box-sizing: border-box;
}

textarea,
iframe {
  display: block;
}

input::placeholder {
  color: #BBB;
}

input:-ms-input-placeholder {
  color: #BBB;
}

input::-ms-input-placeholder {
  color: #BBB;
}

video {
  display: block;
}

a:link,
a:visited {
  color: #17459B;
  text-decoration: underline;
}

a:hover,
a:active {
  color: #17459B;
  text-decoration: none;
}

.no-scroll {
  position: fixed;
  width: 100%;
}

.l-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.l-header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-header-inner {
    display: block;
    height: auto;
  }
}

.clone-nav .l-header-inner {
  padding: 0 50px;
  align-items: center;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.05);
}

@media print, screen and (min-width: 768px) {
  .l-global-nav {
    padding: 50px 50px 0 0;
    display: block !important;
  }
  .clone-nav .l-global-nav {
    padding: 25px 0 15px 0;
  }
  .l-global-nav__main {
    margin-bottom: 30px;
  }
  .clone-nav .l-global-nav__main {
    margin-bottom: 25px;
  }
  .l-global-nav__sub {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .l-global-nav {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: rgba(0, 22, 48, 0.9);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transform: scale(1.06);
    transition-property: transform;
    transition-duration: 0.8s;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .l-global-nav.active {
    transform: scale(1);
  }
  .l-global-nav__main {
    width: 100%;
    display: table;
    padding-top: 30px;
  }
  .l-global-nav__sub {
    margin-top: 20px;
    padding-bottom: 20px;
  }
}
.l-container-fluid {
  position: relative;
  padding: 80px 20px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-container-fluid {
    padding: 40px 15px;
  }
}

.l-container {
  position: relative;
  max-width: 1150px;
  margin: 0 auto;
}
.l-container::after {
  content: "";
  display: block;
  clear: both;
}

.l-container-narrow {
  position: relative;
  max-width: 950px;
  margin: 0 auto;
}
.l-container-narrow::after {
  content: "";
  display: block;
  clear: both;
}

.l-container-narrow2 {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.l-container-narrow2::after {
  content: "";
  display: block;
  clear: both;
}

.l-container-narrow3 {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}
.l-container-narrow3::after {
  content: "";
  display: block;
  clear: both;
}

.l-ambassador-shop {
  max-width: 700px;
  margin: 0 auto;
  padding: 35px;
  border: 2px solid #E1D6B7;
  background: url(../img/concept/bg_ambassador.jpg) no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .l-ambassador-shop {
    padding: 25px;
  }
}

.l-banner {
  background: #F3F3F3;
  overflow: hidden;
  padding: 40px 20px;
}
@media screen and (max-width: 767px) {
  .l-banner {
    padding: 20px 15px;
  }
}

.l-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #000;
}
@media screen and (max-width: 767px) {
  .l-hero {
    height: 440px;
  }
}
.l-hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.2);
}

.l-pagename {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 420px;
  background-color: #000 !important;
  background: url(../img/pn_default.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .l-pagename {
    height: 220px;
  }
}
.l-pagename::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.l-pagename.is-notice {
  background: url(../img/notice/pn_notice.jpg) no-repeat center center/cover;
}
.l-pagename.is-product {
  background: url(../img/product/pn_product.jpg) no-repeat center center/cover;
}
.l-pagename.is-concept {
  background: url(../img/concept/pn_concept.jpg) no-repeat center center/cover;
}
.l-pagename.is-shop {
  background: url(../img/shop/pn_shop.jpg) no-repeat center center/cover;
}
.l-pagename.is-recipe {
  background: url(../img/recipe/pn_recipe.jpg) no-repeat center center/cover;
}
.l-pagename.is-company {
  background: url(../img/company/pn_company.jpg) no-repeat center center/cover;
}
.l-pagename.is-dorayaki {
  background: url(../img/dorayaki/pn_dorayaki.jpg) no-repeat center center/cover;
}

.l-topicpath {
  padding: 15px 20px;
}
@media screen and (max-width: 767px) {
  .l-topicpath {
    padding: 10px 15px;
  }
}

.l-tab-contents {
  background: #FFF;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.05);
}

.l-calendar {
  padding: 80px 7%;
  background: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .l-calendar {
    padding: 0;
    background: none;
  }
}

.l-footer {
  padding: 0 30px;
  background: #001630;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 0 15px;
  }
}

.l-footer-inner {
  display: flex;
  justify-content: space-between;
  max-width: 1150px;
  margin: 0 auto;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .l-footer-inner {
    display: block;
    padding: 40px 0 30px 0;
  }
}
.l-footer-inner__left {
  display: flex;
}
@media screen and (max-width: 767px) {
  .l-footer-inner__left {
    display: block;
    text-align: center;
  }
}
.l-footer-inner__right {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .l-footer-inner__right {
    margin: 30px 0 0 0;
  }
}

a.c-btn-blank, a.c-btn-access, a.c-btn-more {
  position: relative;
  display: inline-block;
  width: 280px;
  padding: 18px;
  font-size: 108%;
  line-height: 1.4;
  color: #FFF;
  text-align: center;
  text-decoration: none;
  transition: 0.2s;
  background: #1D3766;
}
@media screen and (max-width: 767px) {
  a.c-btn-blank, a.c-btn-access, a.c-btn-more {
    width: 260px;
    padding: 15px;
    font-size: 100%;
  }
}
a.c-btn-blank:hover, a.c-btn-access:hover, a.c-btn-more:hover {
  background: #17459B;
}

a.c-btn-more::before {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 25px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  a.c-btn-more::before {
    right: 20px;
    width: 6px;
    height: 6px;
  }
}

a.c-btn-access::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-top: -3px;
  width: 22px;
  height: 22px;
  background: url(../img/icon_pin.png) no-repeat center center/cover;
}

a.c-btn-blank {
  width: 330px;
}
a.c-btn-blank::after {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 25px;
  width: 17px;
  height: 17px;
  background: url(../img/icon_blank.png) no-repeat center center/cover;
}
a.c-btn-blank span {
  font-size: 85%;
}

a.c-btn-info {
  display: inline-block;
  padding: 9px 20px;
  font-size: 93%;
  line-height: 1.4;
  color: #000;
  text-align: center;
  text-decoration: none;
  transition: 0.2s;
  border: 1px solid #000;
}
@media screen and (max-width: 767px) {
  a.c-btn-info {
    width: 260px;
    padding: 15px;
    font-size: 100%;
    color: #FFF;
    background: #1D3766;
  }
}
a.c-btn-info:hover {
  background: #000;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  a.c-btn-info:hover {
    background: #17459B;
  }
}

a.c-btn-reservation {
  position: relative;
  display: inline-block;
  width: 450px;
  padding: 25px;
  font-size: 116%;
  line-height: 1.4;
  color: #FFF;
  text-align: center;
  text-decoration: none;
  transition: 0.2s;
  background: #FF9C0D;
}
@media screen and (max-width: 767px) {
  a.c-btn-reservation {
    width: 320px;
    padding: 17px;
    font-size: 100%;
  }
}
a.c-btn-reservation:hover {
  background: #FFB20D;
}
a.c-btn-reservation::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-top: -4px;
  width: 22px;
  height: 22px;
  background: url(../img/icon_calendar.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  a.c-btn-reservation::before {
    width: 19px;
    height: 19px;
  }
}

.c-btn-send {
  display: inline-block;
  width: 280px;
  padding: 18px;
  font-size: 116%;
  line-height: 1.3;
  color: #FFF;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  text-decoration: none;
  transition: 0.2s;
  background: #1D3766;
  border: 0;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-btn-send {
    width: 260px;
    padding: 15px;
    font-size: 100%;
  }
}
.c-btn-send:hover {
  background: #17459B;
}

.c-btn-return {
  display: inline-block;
  width: 150px;
  padding: 18px;
  font-size: 116%;
  line-height: 1.3;
  color: #FFF;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  text-decoration: none;
  transition: 0.2s;
  background: #BBB;
  border: 0;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-btn-return {
    width: 260px;
    padding: 15px;
    font-size: 100%;
  }
}
.c-btn-return:hover {
  background: #DDD;
}

.c-label-new {
  display: inline-block;
  margin-left: 12px;
  padding: 2px 5px;
  font-size: 70%;
  line-height: 1.2;
  font-weight: normal;
  color: #FFF;
  background: #AA0A00;
  vertical-align: middle;
}

.c-label-excel, .c-label-word, .c-label-pdf {
  display: inline-block;
  margin-right: 15px;
  padding: 4px;
  font-size: 85%;
  line-height: 1.3;
  text-indent: 0;
  color: #FFF;
  min-width: 75px;
  text-align: center;
}

.c-label-pdf {
  background: #CC0000;
}

.c-label-word {
  background: #2B63CA;
}

.c-label-excel {
  background: #009F00;
}

.c-label-hissu {
  float: right;
  display: inline-block;
  padding: 3px 6px;
  font-size: 75%;
  line-height: 1.6;
  color: #FFF;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
  background: #AA0A00;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .c-label-hissu {
    float: none;
    padding: 2px 4px;
    font-size: 70%;
    margin-left: 15px;
  }
}

.c-grid {
  margin-bottom: 80px;
}
.c-grid::after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (max-width: 767px) {
  .c-grid {
    margin-bottom: 40px;
  }
}
.c-grid:last-child {
  margin-bottom: 0;
}

.c-grid-1 {
  width: 3.75%;
}

.c-grid-2 {
  width: 12.5%;
}

.c-grid-3 {
  width: 21.2%;
}

.c-grid-4 {
  width: 30%;
}

.c-grid-5 {
  width: 40%;
}

.c-grid-6 {
  width: 47.5%;
}

.c-grid-7 {
  width: 55%;
}

.c-grid-8 {
  width: 65%;
}

.c-grid-9 {
  width: 73.8%;
}

.c-grid-10 {
  width: 82.5%;
}

.c-grid-11 {
  width: 91.2%;
}

.c-grid-12 {
  width: 100%;
}

.c-grid-1,
.c-grid-2,
.c-grid-3,
.c-grid-4,
.c-grid-5,
.c-grid-6,
.c-grid-7,
.c-grid-8,
.c-grid-9,
.c-grid-10,
.c-grid-11 {
  float: left;
  margin: 0 5% 0 0;
}
@media screen and (max-width: 767px) {
  .c-grid-1,
  .c-grid-2,
  .c-grid-3,
  .c-grid-4,
  .c-grid-5,
  .c-grid-6,
  .c-grid-7,
  .c-grid-8,
  .c-grid-9,
  .c-grid-10,
  .c-grid-11 {
    float: none;
    margin: 0 0 40px 0;
    width: auto;
  }
}

.c-grid-1:last-child,
.c-grid-2:last-child,
.c-grid-3:last-child,
.c-grid-4:last-child,
.c-grid-5:last-child,
.c-grid-6:last-child,
.c-grid-7:last-child,
.c-grid-8:last-child,
.c-grid-9:last-child,
.c-grid-10:last-child,
.c-grid-11:last-child {
  float: right;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .c-grid-1:last-child,
  .c-grid-2:last-child,
  .c-grid-3:last-child,
  .c-grid-4:last-child,
  .c-grid-5:last-child,
  .c-grid-6:last-child,
  .c-grid-7:last-child,
  .c-grid-8:last-child,
  .c-grid-9:last-child,
  .c-grid-10:last-child,
  .c-grid-11:last-child {
    float: none;
  }
}

.c-grid-1-row {
  width: 3.75%;
}

.c-grid-2-row {
  width: 12.5%;
}

.c-grid-3-row {
  width: 21.2%;
}

.c-grid-4-row {
  width: 30%;
}

.c-grid-5-row {
  width: 40%;
}

.c-grid-6-row {
  width: 47.5%;
}

.c-grid-7-row {
  width: 55%;
}

.c-grid-8-row {
  width: 65%;
}

.c-grid-9-row {
  width: 73.8%;
}

.c-grid-10-row {
  width: 82.5%;
}

.c-grid-11-row {
  width: 91.2%;
}

.c-grid-12-row {
  width: 100%;
}

.c-grid-1-row,
.c-grid-2-row,
.c-grid-3-row,
.c-grid-4-row,
.c-grid-5-row,
.c-grid-6-row,
.c-grid-7-row,
.c-grid-8-row,
.c-grid-9-row,
.c-grid-10-row,
.c-grid-11-row {
  float: left;
  margin: 0 5% 0 0;
}

.c-grid-1-row:last-child,
.c-grid-2-row:last-child,
.c-grid-3-row:last-child,
.c-grid-4-row:last-child,
.c-grid-5-row:last-child,
.c-grid-6-row:last-child,
.c-grid-7-row:last-child,
.c-grid-8-row:last-child,
.c-grid-9-row:last-child,
.c-grid-10-row:last-child,
.c-grid-11-row:last-child {
  float: right;
  margin: 0;
}

.c-grid-about {
  display: flex;
}
@media screen and (max-width: 767px) {
  .c-grid-about {
    flex-direction: column-reverse;
  }
}
.c-grid-about__text {
  width: 46%;
}
@media screen and (max-width: 767px) {
  .c-grid-about__text {
    width: auto;
  }
}
.c-grid-about__image {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-grid-about__image {
    display: block;
    margin: 0 -15px 40px -15px;
  }
}

.c-grid-pickup,
.c-grid-product {
  margin: -5% -5% 0 0;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .c-grid-pickup,
  .c-grid-product {
    margin: 0;
  }
}
.c-grid-pickup li,
.c-grid-product li {
  margin: 5% 5% 0 0;
  width: 28.33%;
}
@media screen and (max-width: 767px) {
  .c-grid-pickup li,
  .c-grid-product li {
    margin: 0 0 40px 0;
    width: auto;
  }
  .c-grid-pickup li:last-child,
  .c-grid-product li:last-child {
    margin-bottom: 0;
  }
}
.c-grid-pickup li a,
.c-grid-product li a {
  text-decoration: none;
}

.c-grid-related {
  margin: -5% -5% 0 0;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .c-grid-related {
    margin: -6% -4% 0 0;
  }
}
.c-grid-related li {
  margin: 5% 5% 0 0;
  width: 28.33%;
}
@media screen and (max-width: 767px) {
  .c-grid-related li {
    width: 46%;
    margin: 6% 4% 0 0;
  }
}
.c-grid-related li a {
  text-decoration: none;
}

.c-grid-button {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-grid-button {
    margin-top: 40px;
    display: block;
  }
}
.c-grid-button li {
  margin: 0 15px;
}
@media screen and (max-width: 767px) {
  .c-grid-button li {
    margin: 0 0 15px 0;
    text-align: center;
  }
  .c-grid-button li:last-child {
    margin-bottom: 0;
  }
}

.c-grid-concept {
  margin-bottom: 80px;
  display: flex;
  justify-content: space-between;
}
.c-grid-concept.reverse {
  flex-direction: row-reverse;
}
.c-grid-concept:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .c-grid-concept {
    margin-bottom: 40px;
    display: block;
  }
}
.c-grid-concept__image {
  width: 47.5%;
}
@media screen and (max-width: 767px) {
  .c-grid-concept__image {
    width: auto;
    margin-bottom: 40px;
  }
}
.c-grid-concept__text {
  width: 47.5%;
}
@media screen and (max-width: 767px) {
  .c-grid-concept__text {
    width: auto;
  }
}

.c-grid-store {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .c-grid-store {
    display: block;
  }
}
.c-grid-store__image {
  width: 47.5%;
}
@media screen and (max-width: 767px) {
  .c-grid-store__image {
    width: auto;
    margin-bottom: 40px;
  }
}
.c-grid-store__text {
  width: 47.5%;
}
@media screen and (max-width: 767px) {
  .c-grid-store__text {
    width: auto;
  }
}

.c-grid-gallery {
  margin: -3% -3% 0 0;
  display: flex;
  flex-wrap: wrap;
}
.c-grid-gallery li {
  margin: 3% 3% 0 0;
  width: 22%;
}
@media screen and (max-width: 767px) {
  .c-grid-gallery li {
    width: 47%;
  }
}
.c-grid-gallery li a {
  text-decoration: none;
}

.c-grid-concept3 {
  margin: -4% -4% 0 0;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .c-grid-concept3 {
    margin: -3% -3% 0 0;
  }
}
.c-grid-concept3 li {
  margin: 4% 4% 0 0;
  width: 29.33%;
}
@media screen and (max-width: 767px) {
  .c-grid-concept3 li {
    margin: 3% 3% 0 0;
    width: 47%;
  }
}

.c-grid-concept4 {
  margin: -3% -3% 0 0;
  display: flex;
  flex-wrap: wrap;
}
.c-grid-concept4 li {
  margin: 3% 3% 0 0;
  width: 22%;
}
@media screen and (max-width: 767px) {
  .c-grid-concept4 li {
    width: 47%;
  }
}

.c-grid-recipe {
  margin: -5% -5% 0 0;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .c-grid-recipe {
    margin: 0;
  }
}
.c-grid-recipe li {
  margin: 5% 5% 0 0;
  width: 28.33%;
}
@media screen and (max-width: 767px) {
  .c-grid-recipe li {
    margin: 0 0 40px 0;
    width: auto;
  }
  .c-grid-recipe li:last-child {
    margin-bottom: 0;
  }
}
.c-grid-recipe li a {
  text-decoration: none;
}

.c-grid-calendar {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .c-grid-calendar {
    display: block;
  }
}
.c-grid-calendar__left {
  width: 46.5%;
  padding: 35px;
  background: #FFF;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 767px) {
  .c-grid-calendar__left {
    width: auto;
    padding: 20px;
    background: #F5F5F5;
    box-shadow: none;
  }
}
.c-grid-calendar__right {
  width: 46.5%;
  padding: 35px;
  background: #FFF;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 767px) {
  .c-grid-calendar__right {
    width: auto;
    padding: 20px;
    background: #F5F5F5;
    box-shadow: none;
    margin-top: 40px;
  }
}

.p-logo {
  margin-right: 220px;
  padding: 50px 0 0 50px;
}
@media screen and (max-width: 767px) {
  .p-logo {
    margin-right: 0;
    padding: 0;
  }
}
.p-logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 125px;
  height: 190px;
  transition: 0.2s;
  text-indent: -9999px;
  overflow: hidden;
  background: url(../img/logo.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-logo a {
    width: 160px;
    height: 75px;
    background: url(../img/logo_smp.png) no-repeat 15px center/130px auto;
  }
}
@media all and (-ms-high-contrast: none) {
  .p-logo a { /* EIのみ適用 */
    transition: none;
  }
}
@supports (-ms-ime-align: auto) {
  .p-logo a { /* Edgeのみ適用 */
    transition: none;
  }
}

.clone-nav .p-logo {
  margin-right: 0;
  padding: 0;
}

.clone-nav .p-logo a {
  width: 220px;
  height: 78px;
  background: url(../img/logo_clone.png) no-repeat 0 center/contain;
}

.p-footer-logo {
  margin-right: 25px;
}
@media screen and (max-width: 767px) {
  .p-footer-logo {
    margin: 0 0 15px 0;
  }
}
.p-footer-logo img {
  width: 125px;
  min-width: 125px;
}

.p-address {
  padding-top: 10px;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .p-address {
    padding-top: 0;
  }
}
.p-address dt {
  margin-bottom: 15px;
  font-size: 116%;
  line-height: 1.4;
  font-weight: bold;
  word-wrap: break-word;
}
@media screen and (max-width: 767px) {
  .p-address dt {
    font-size: 93%;
  }
}
.p-address dt small {
  font-size: 75%;
}
.p-address dd {
  font-size: 85%;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-address dd {
    font-size: 77%;
  }
}
.p-address dd a {
  color: #FFF;
}
.p-address dd a:hover {
  text-decoration: none;
}
.p-address dd:last-child {
  margin-top: 25px;
}

.p-social-icon {
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .p-social-icon {
    justify-content: center;
  }
}
.p-social-icon li img {
  display: block;
  width: 26px;
  height: 26px;
  transition: 0.2s;
}
.p-social-icon li img:hover {
  opacity: 0.6;
}

.p-footer-button {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .p-footer-button {
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-footer-button li {
    margin-bottom: 10px;
  }
  .p-footer-button li:last-child {
    margin-bottom: 0;
  }
}
.p-footer-button li a {
  display: inline-block;
  padding: 12px 15px;
  font-size: 93%;
  line-height: 1.5;
  color: #FFF;
  text-align: center;
  text-decoration: none;
  transition: 0.2s;
  border: 1px solid #FFF;
}
@media screen and (max-width: 1024px) {
  .p-footer-button li a {
    font-size: 77%;
    padding: 8px 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer-button li a {
    font-size: 93%;
    width: 260px;
    padding: 12px;
  }
}
.p-footer-button li a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #FFF;
}
.p-footer-button li a::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin: -4px 8px 0 0;
  width: 15px;
  height: 15px;
}
.p-footer-button li:nth-child(1) a::before {
  background: url("../img/icon_man.png") no-repeat center center/contain;
}
.p-footer-button li:nth-child(2) a::before {
  background: url("../img/icon_mail.png") no-repeat center center/contain;
}

.p-footer-banner {
  margin-top: 40px;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .p-footer-banner {
    margin-top: 35px;
    justify-content: center;
    gap: 10px;
  }
}
.p-footer-banner li img {
  display: block;
  height: 90px;
}
@media screen and (max-width: 767px) {
  .p-footer-banner li img {
    height: 75px;
  }
}

.p-copyright {
  max-width: 1150px;
  margin: 0 auto;
  padding: 22px 0;
  text-align: center;
  font-size: 85%;
  color: #FFF;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 767px) {
  .p-copyright {
    padding: 15px 0;
    font-size: 77%;
  }
}

.p-pagetop {
  position: fixed;
  z-index: 999;
  right: 15px;
  bottom: 15px;
  display: none;
}
@media screen and (max-width: 767px) {
  .p-pagetop {
    right: 10px;
    bottom: 10px;
  }
}
.p-pagetop a {
  display: block;
  position: relative;
  width: 50px;
  height: 50px;
  text-indent: -9999px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  transition: 0.1s;
}
@media screen and (max-width: 767px) {
  .p-pagetop a {
    width: 34px;
    height: 34px;
  }
}
.p-pagetop a::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 6px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 12px;
  height: 12px;
  border-top: 3px solid #FFF;
  border-right: 3px solid #FFF;
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .p-pagetop a::before {
    top: 4px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
  }
}
.p-pagetop a:hover {
  background: rgba(0, 0, 0, 0.7);
}

@media print, screen and (min-width: 768px) {
  .p-global-nav {
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
  }
  .p-global-nav * {
    transition: 0.1s linear;
    -webkit-transition: 0.1s linear;
    -moz-transition: 0.1s linear;
  }
  .p-global-nav > li {
    position: relative;
    margin-left: 1.3em;
  }
  .p-global-nav > li > a {
    display: flex;
    align-items: center;
    font-size: 108%;
    line-height: 1.5;
    letter-spacing: 0.1em;
    font-weight: bold;
    color: #FFF;
    white-space: nowrap;
    text-decoration: none;
  }
  .p-global-nav > li > a:hover {
    opacity: 0.6;
  }
  .p-global-nav > li > a.is-active {
    color: #C4973A;
    cursor: default;
  }
  .p-global-nav > li > a.is-active:hover {
    opacity: 1;
  }
  .p-global-nav > li:first-child {
    display: none;
  }
  .p-global-nav > li ul {
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
    z-index: 1;
    background: #FFF;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px 18px;
    margin-top: 15px;
  }
  .p-global-nav > li ul::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 29px;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-bottom: 7px solid #FFF;
    border-top: 0;
  }
  .p-global-nav > li ul::after {
    content: "";
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
  }
  .p-global-nav > li ul li {
    margin-bottom: 5px;
  }
  .p-global-nav > li ul li:last-child {
    margin-bottom: 0;
  }
  .p-global-nav > li ul li a {
    display: block;
    font-size: 85%;
    line-height: 1.6;
    letter-spacing: 0.1em;
    font-weight: bold;
    color: #333;
    white-space: nowrap;
    text-decoration: none;
  }
  .p-global-nav > li ul li a:hover {
    opacity: 0.6;
  }
  .p-global-nav > li:hover ul {
    visibility: visible;
    opacity: 100;
    filter: alpha(opacity=100);
  }
  .clone-nav .p-global-nav > li > a {
    color: #333;
  }
  .clone-nav .p-global-nav > li > ul {
    background: #F5F5F5;
  }
  .clone-nav .p-global-nav > li > ul::before {
    border-bottom-color: #F5F5F5;
  }
}
@media screen and (max-width: 767px) {
  .p-global-nav > li:first-child {
    padding-top: 75px;
  }
  .p-global-nav > li:first-child a::before {
    content: "";
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: -75px;
    width: 160px;
    height: 60px;
    background: url("../img/logo_smp.png") no-repeat center center/contain;
  }
  .p-global-nav > li {
    position: relative;
    margin: 0 10%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .p-global-nav > li a {
    position: relative;
    display: block;
    padding: 5px 15px;
    font-size: 93%;
    line-height: 1.7;
    color: #FFF;
    text-decoration: none;
  }
  .p-global-nav > li a::after {
    content: "";
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 18px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #C4973A;
    border-right: 2px solid #C4973A;
    transform: rotate(45deg);
  }
  .p-global-nav > li ul li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .p-global-nav > li ul li a {
    font-size: 80%;
    text-indent: 1em;
  }
}
.p-global-social {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-global-social {
    justify-content: center;
  }
}
.p-global-social li {
  margin-right: 12px;
}
.p-global-social li:last-child {
  margin-right: 0;
}
.p-global-social li img {
  display: block;
  width: 26px;
  height: 26px;
  transition: 0.2s;
}
.p-global-social li img:hover {
  opacity: 0.6;
}

.clone-nav .p-global-social li a {
  filter: invert(100%) grayscale(100%) contrast(100);
}

.p-online-shop {
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .p-online-shop {
    margin-left: 0;
  }
}
.p-online-shop a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #AA0A00;
  width: 180px;
  height: 45px;
  font-size: 93%;
  line-height: 45px;
  text-align: center;
  color: #FFF;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
}
.p-online-shop a::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  min-width: 18px;
  min-height: 18px;
  background: url("../img/icon_cart.png") no-repeat center center/contain;
}
.p-online-shop a:hover {
  background: #6F0000;
}
@media screen and (max-width: 767px) {
  .p-online-shop {
    display: none;
  }
}

.p-online-shop-smp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-online-shop-smp {
    position: absolute;
    top: 23px;
    right: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .p-online-shop-smp a {
    width: 130px;
    height: 30px;
    font-size: 70%;
    line-height: 28px;
    text-align: center;
    color: #FFF;
    border: 1px solid #FFF;
    cursor: pointer;
    text-decoration: none;
  }
  .p-online-shop-smp a::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin: -3px 6px 0 0;
    min-width: 12px;
    min-height: 12px;
    background: url("../img/icon_cart.png") no-repeat center center/contain;
  }
}

@media screen and (max-width: 767px) {
  .hamburger {
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 17px;
    right: 15px;
    z-index: 9000;
    overflow: hidden;
  }
  .hamburger_icon {
    position: relative;
    margin: 0 auto;
    margin-top: 20px;
  }
  .hamburger_icon,
  .hamburger_icon::before,
  .hamburger_icon::after {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #FFF;
    transition-property: background-color, transform;
    transition-duration: 0.4s;
  }
  .hamburger_icon::before,
  .hamburger_icon::after {
    position: absolute;
    content: "";
  }
  .hamburger_icon::before {
    top: -10px;
  }
  .hamburger_icon::after {
    top: 10px;
  }
  .hamburger.active {
    position: fixed;
  }
  .hamburger.active .hamburger_icon {
    background-color: transparent;
  }
  .hamburger.active .hamburger_icon::before,
  .hamburger.active .hamburger_icon::after {
    background-color: #FFF;
  }
  .hamburger.active .hamburger_icon::before {
    transform: translateY(10px) rotate(45deg);
  }
  .hamburger.active .hamburger_icon::after {
    transform: translateY(-10px) rotate(-45deg);
  }
}
.p-topicpath {
  display: flex;
  max-width: 1150px;
  margin: 0 auto;
}
.p-topicpath li {
  font-size: 93%;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-topicpath li {
    font-size: 77%;
  }
}
.p-topicpath li a {
  display: inline-block;
  position: relative;
  white-space: nowrap;
  margin-right: 12px;
  padding-right: 16px;
}
@media screen and (max-width: 767px) {
  .p-topicpath li a {
    margin-right: 10px;
    padding-right: 14px;
  }
}
.p-topicpath li a::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 5px;
  height: 5px;
  border-top: 2px solid #BBB;
  border-right: 2px solid #BBB;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.p-pagenav {
  margin-top: 78px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-pagenav {
    margin-top: 38px;
  }
}
.p-pagenav li {
  margin: 2px 3px 0 3px;
}
.p-pagenav li a,
.p-pagenav li .current,
.p-pagenav li .dotted {
  display: block;
  position: relative;
  background: #000;
  line-height: 39px;
  text-align: center;
  color: #FFF;
  width: 41px;
  height: 41px;
  overflow: hidden;
  text-decoration: none;
  cursor: default;
  border: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .p-pagenav li a,
  .p-pagenav li .current,
  .p-pagenav li .dotted {
    line-height: 35px;
    width: 35px;
    height: 35px;
  }
}
.p-pagenav li a:hover {
  background: #444;
  border: 1px solid #444;
}
.p-pagenav li .current {
  background: #FFF;
  color: #000;
  border: 1px solid #000;
}
.p-pagenav li .arrow-prev {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  overflow: hidden;
  text-indent: -9999px;
}
.p-pagenav li .arrow-next {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 12%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  overflow: hidden;
  text-indent: -9999px;
}
.p-pagenav li a {
  cursor: pointer;
}
.p-pagenav li a .arrow-prev {
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
}
.p-pagenav li a .arrow-next {
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
}

.p-pager {
  display: table;
  margin: 80px auto 0 auto;
}
@media screen and (max-width: 767px) {
  .p-pager {
    margin: 40px auto 0 auto;
  }
}
.p-pager li {
  display: table-cell;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .p-pager li {
    padding: 0 5px;
  }
}
.p-pager li a {
  display: block;
  width: 150px;
  padding: 11px 0;
  line-height: 1.5;
  color: #000;
  text-align: center;
  text-decoration: none;
  transition: 0.2s;
  border: 1px solid #000;
}
.p-pager li a:hover {
  color: #FFF;
  border: 1px solid #000;
  background: #000;
}
@media screen and (max-width: 767px) {
  .p-pager li a {
    width: 100px;
    padding: 10px 0;
  }
}

.p-tab-nav {
  display: flex;
  justify-content: space-between;
}
.p-tab-nav li {
  width: 50%;
  text-align: center;
  padding: 12px;
  background: #888;
  font-size: 116%;
  color: #FFF;
  font-weight: bold;
  cursor: pointer;
  border-right: 1px solid #FFF;
}
.p-tab-nav li:last-child {
  border-right: 0;
}
@media screen and (max-width: 767px) {
  .p-tab-nav li {
    font-size: 100%;
    padding: 8px;
  }
}
.p-tab-nav li.is-tab-nav-active {
  background: #FFF;
  color: #333;
  cursor: default;
}

.p-pagelink {
  margin: -3% -3% 0 0;
  display: flex;
  flex-wrap: wrap;
}
.p-pagelink li {
  margin: 3% 3% 0 0;
  width: 22%;
}
@media screen and (max-width: 767px) {
  .p-pagelink li {
    width: 47%;
  }
}
.p-pagelink li a {
  position: relative;
  display: block;
  padding: 13px;
  color: #333;
  line-height: 1.6;
  font-weight: bold;
  text-align: center;
  background: #FFF;
  border: 1px solid #000;
  text-decoration: none;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .p-pagelink li a {
    font-size: 85%;
    padding: 8px 10px;
    text-align: left;
  }
}
.p-pagelink li a::before {
  content: "";
  margin: auto;
  position: absolute;
  top: -3px;
  bottom: 0;
  right: 23px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(135deg);
}
@media screen and (max-width: 767px) {
  .p-pagelink li a::before {
    right: 15px;
    width: 6px;
    height: 6px;
  }
}
.p-pagelink li a:hover {
  color: #FFF;
  background: #000;
}
.p-pagelink li a:hover::before {
  border-color: #FFF;
}
.p-pagelink li a.is-active {
  color: #FFF;
  background: #000;
  cursor: default;
}
.p-pagelink li a.is-active::before {
  border-color: #FFF;
}

.clone-nav {
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
  transform: translateY(-100%);
}
@media screen and (max-width: 767px) {
  .clone-nav {
    display: none;
  }
}
.clone-nav.is-show {
  transform: translateY(0);
  background: #FFF;
}

.p-hero-catch {
  display: block;
  position: absolute;
  margin: auto;
  top: 40%;
  bottom: 0;
  left: 8%;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-hero-catch {
    top: auto;
    bottom: 115px;
    left: 20px;
  }
}
.p-hero-catch__title {
  font-family: "Playfair Display", serif;
  font-size: 250%;
  line-height: 1;
  letter-spacing: 0.01em;
  font-weight: normal;
  color: #FFF;
  text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 767px) {
  .p-hero-catch__title {
    font-size: 105%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  }
}
.p-hero-catch__title span {
  font-size: 250%;
  line-height: 1.3;
}
.p-hero-catch__sub {
  margin-top: 18px;
  font-size: 108%;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #FFF;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 767px) {
  .p-hero-catch__sub {
    margin-top: 8px;
    font-size: 70%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  }
}

.p-hero-quality {
  display: flex;
  position: absolute;
  left: 225px;
  top: 50px;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .p-hero-quality {
    left: auto;
    top: auto;
    right: 20px;
    bottom: 85px;
    z-index: 3;
  }
}
.p-hero-quality li a {
  display: block;
  overflow: hidden;
  text-indent: -9999px;
  width: 85px;
  height: 110px;
}
@media screen and (max-width: 767px) {
  .p-hero-quality li a {
    width: 45px;
    height: 57px;
  }
}
.p-hero-quality li.haccp a {
  background: url(../img/logo_haccp.png) no-repeat center center/contain;
}
.p-hero-quality li.halal a {
  background: url(../img/logo_halal.png) no-repeat center center/contain;
}
.p-hero-quality li:first-child {
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .p-hero-quality li:first-child {
    margin-right: 5px;
  }
}

.p-hero-banner {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-hero-banner {
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
  }
}
.p-hero-banner li {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .p-hero-banner li {
    margin-bottom: 0;
  }
}
.p-hero-banner li:last-child {
  margin-bottom: 0;
}
.p-hero-banner li img {
  width: 360px;
}
@media screen and (max-width: 767px) {
  .p-hero-banner li img {
    width: 185px;
  }
}

.p-hero-scroll a {
  display: block;
  position: absolute;
  left: 50px;
  bottom: 0;
  z-index: 3;
  padding: 10px 10px 60px 10px;
  overflow: hidden;
  font-size: 77%;
  color: #FFF;
  letter-spacing: 0.1em;
  text-decoration: none;
  writing-mode: vertical-lr;
}
@media screen and (max-width: 767px) {
  .p-hero-scroll a {
    display: none;
  }
}
.p-hero-scroll a span {
  display: block;
  transform: rotate(90deg);
}
.p-hero-scroll a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 15px;
  background: #FFF;
  animation: sdl 3s ease infinite;
}
.p-hero-scroll a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.4);
}

@keyframes sdl {
  0% {
    transform: translateY(-35px);
  }
  50%, 100% {
    transform: translateY(15px);
  }
}
.p-pickup img:hover {
  transition: 0.2s;
  opacity: 0.8;
}
.p-pickup figcaption {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-pickup figcaption {
    margin-top: 12px;
  }
}
.p-pickup__caption {
  color: #FFF;
  line-height: 1.7;
}
.p-pickup__caption dt {
  font-size: 108%;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-pickup__caption dt {
    font-size: 100%;
  }
}
.p-pickup__caption dd {
  margin-top: 5px;
  font-size: 85%;
  opacity: 0.6;
}

.p-ambassador-name {
  margin-bottom: 30px;
  font-size: 147%;
  line-height: 1.6;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-ambassador-name {
    font-size: 116%;
  }
}

.p-ambassador-image {
  text-align: center;
}
.p-ambassador-image img {
  width: 750px;
}

.p-list-quality {
  display: flex;
  justify-content: space-between;
  gap: 8%;
}
@media screen and (max-width: 767px) {
  .p-list-quality {
    gap: 15px;
  }
}
.p-list-quality li img {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  user-select: none;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-list-quality li img {
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
  }
}

.p-card-banner {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-card-banner {
    display: block;
  }
}
.p-card-banner li {
  position: relative;
  width: 50%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-card-banner li {
    width: auto;
  }
}
.p-card-banner li img {
  object-fit: cover;
  width: 100%;
  height: 380px;
}
@media screen and (max-width: 767px) {
  .p-card-banner li img {
    height: 200px;
  }
}
.p-card-banner li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 101%;
  height: 101%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
  transition: all 0.3s ease;
}
.p-card-banner li:hover::before {
  background: rgba(0, 0, 0, 0.3);
}
.p-card-banner li:hover > p {
  transform: scale(1.1);
  filter: grayscale(0);
}
.p-card-banner li a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  text-decoration: none;
  transition: all 0.2s ease;
}
.p-card-banner__image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}
.p-card-banner__text {
  color: #FFF;
  text-align: center;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  .p-card-banner__text {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  }
}
.p-card-banner__text dt {
  font-family: "Playfair Display", serif;
  font-size: 270%;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-card-banner__text dt {
    font-size: 177%;
  }
}
.p-card-banner__text dd {
  margin-top: 15px;
  line-height: 1.5;
  color: #C4973A;
}
@media screen and (max-width: 767px) {
  .p-card-banner__text dd {
    font-size: 93%;
  }
}

.p-product img:hover {
  transition: 0.2s;
  opacity: 0.8;
}
.p-product figcaption {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-product figcaption {
    margin-top: 12px;
  }
}
.p-product__caption {
  color: #333;
  line-height: 1.7;
}
.p-product__caption dt {
  font-size: 108%;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-product__caption dt {
    font-size: 100%;
  }
}
.p-product__caption dd {
  margin-top: 5px;
  font-size: 93%;
}

.p-related img:hover {
  transition: 0.2s;
  opacity: 0.8;
}
.p-related figcaption {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-related figcaption {
    margin-top: 12px;
  }
}
.p-related__caption {
  color: #333;
  line-height: 1.7;
}
.p-related__caption dt {
  font-size: 108%;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-related__caption dt {
    font-size: 85%;
  }
}
.p-related__caption dd {
  margin-top: 5px;
  font-size: 85%;
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .p-related__caption dd {
    font-size: 70%;
  }
}

.p-info-top {
  border-top: 1px dotted #DDD;
}
.p-info-top li a {
  display: block;
  position: relative;
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  font-size: 93%;
  line-height: 1.7;
  padding: 15px;
  border-bottom: 1px dotted #DDD;
}
@media screen and (max-width: 767px) {
  .p-info-top li a {
    display: block;
    padding: 10px 32px 10px 10px;
  }
  .p-info-top li a::before {
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 12px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #C4973A;
    border-right: 2px solid #C4973A;
    transform: rotate(45deg);
  }
}
.p-info-top__date {
  margin-right: 20px;
  color: #000;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-info-top__date {
    display: block;
    margin: 0 0 2px 0;
    font-size: 85%;
  }
}
.p-info-top__title {
  color: #17459B;
  text-decoration: underline;
}
.p-info-top__title:hover {
  text-decoration: none;
}

.p-btn-info {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-btn-info {
    position: static;
    margin-top: 40px;
    text-align: center;
  }
}

.p-info {
  border-top: 1px dotted #DDD;
}
.p-info li a {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 15px 60px 15px 20px;
  font-size: 93%;
  line-height: 1.7;
  color: #333;
  text-decoration: none;
  border-bottom: 1px dotted #DDD;
}
@media screen and (max-width: 767px) {
  .p-info li a {
    display: block;
    padding: 15px 35px 15px 10px;
  }
}
.p-info li a::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #CCC;
  border-right: 2px solid #CCC;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .p-info li a::before {
    right: 15px;
  }
}
.p-info__date {
  margin-right: 20px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-info__date {
    display: block;
    margin-right: 0;
    font-size: 77%;
  }
}
.p-info__title {
  color: #17459B;
  text-decoration: underline;
}
.p-info__title:hover {
  text-decoration: none;
}

.p-list-media {
  border-top: 1px dotted #DDD;
}
.p-list-media li {
  display: flex;
  justify-content: space-between;
  padding: 30px 20px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px dotted #DDD;
}
@media screen and (max-width: 767px) {
  .p-list-media li {
    padding: 15px 0;
  }
}

.p-media__date {
  margin-bottom: 8px;
  font-size: 93%;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-media__date {
    margin-bottom: 3px;
    font-size: 77%;
  }
}
.p-media__title {
  font-size: 131%;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-media__title {
    font-size: 93%;
  }
}
.p-media__excerpt {
  margin-top: 25px;
  font-size: 93%;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-media__excerpt {
    display: none;
  }
}

.p-media-image {
  margin-left: 5%;
  width: 300px;
  min-width: 300px;
  transition: 0.2s;
}
.p-media-image:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .p-media-image {
    margin-left: 4%;
    width: 40%;
    min-width: 40%;
  }
}

.p-eyecatch {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-eyecatch {
    margin-bottom: 30px;
  }
}

.p-gallery {
  margin-bottom: 60px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-gallery {
    margin-bottom: 30px;
  }
}
.p-gallery__main {
  margin-bottom: 20px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-gallery__main {
    margin-bottom: 10px;
  }
}
.p-gallery__main li {
  float: left;
}
.p-gallery__thumb {
  overflow: hidden;
  width: 500px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-gallery__thumb {
    width: auto;
  }
}
.p-gallery__thumb li {
  float: left;
  cursor: pointer;
  outline: none;
  margin: 0 10px;
  padding: 2px;
  border: 1px solid #FFF;
}
@media screen and (max-width: 767px) {
  .p-gallery__thumb li {
    margin: 0 3px 0 0;
  }
}
.p-gallery__thumb li.slick-current {
  border: 1px solid #000;
}

.gallery-prev,
.gallery-next {
  position: absolute;
  z-index: 1000;
  margin: auto;
  top: 0;
  bottom: 20%;
  cursor: pointer;
  outline: none;
  border: none;
  background: none;
  font-size: 0;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  height: 20px;
  width: 20px;
}

.gallery-prev {
  left: 4%;
  transform: rotate(-135deg);
}

.gallery-next {
  right: 4%;
  transform: rotate(45deg);
}

.p-price {
  margin-top: 1em;
  color: #AA0A00;
}

.p-btn-shoplink {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 -3% -3%;
}
@media screen and (max-width: 767px) {
  .p-btn-shoplink {
    display: block;
    margin: 0;
  }
}
.p-btn-shoplink li {
  width: 30.33%;
  margin: 0 0 3% 3%;
}
@media screen and (max-width: 767px) {
  .p-btn-shoplink li {
    width: auto;
    margin: 0 0 10px 0;
  }
  .p-btn-shoplink li:last-child {
    margin-bottom: 0;
  }
}
.p-btn-shoplink li a {
  position: relative;
  display: block;
  padding: 18px;
  font-size: 108%;
  line-height: 1.4;
  color: #FFF;
  text-decoration: none;
  text-align: center;
  background: #1D3766;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .p-btn-shoplink li a {
    padding: 15px;
    font-size: 100%;
  }
}
.p-btn-shoplink li a::before {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 25px;
  width: 18px;
  height: 18px;
  background: url(../img/icon_cart.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-btn-shoplink li a::before {
    right: 20px;
    width: 16px;
    height: 16px;
  }
}
.p-btn-shoplink li a:hover {
  background: #17459B;
}

.p-map-caviar {
  width: 100%;
  height: 550px;
}
@media screen and (max-width: 767px) {
  .p-map-caviar {
    height: 350px;
  }
}

.p-map-access {
  width: 100%;
  height: 500px;
  border: 2px solid #FFF;
}
@media screen and (max-width: 767px) {
  .p-map-access {
    height: 300px;
  }
}

.p-map-shop {
  width: 100%;
  height: 420px;
}
@media screen and (max-width: 767px) {
  .p-map-shop {
    height: 300px;
  }
}

.p-lead-quality {
  margin-bottom: 35px;
  padding-bottom: 15px;
  font-size: 131%;
  line-height: 1.6;
  font-weight: bold;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .p-lead-quality {
    margin-bottom: 30px;
    font-size: 108%;
  }
  .p-lead-quality br {
    display: none;
  }
}

.p-list-haccp {
  display: flex;
  justify-content: space-between;
  gap: 8%;
}
@media screen and (max-width: 767px) {
  .p-list-haccp {
    gap: 15px;
  }
}
.p-list-haccp li img {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  user-select: none;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-list-haccp li img {
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
  }
}

.p-list-halal {
  margin: 50px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 5%;
}
@media screen and (max-width: 767px) {
  .p-list-halal {
    gap: 0;
    align-items: center;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .p-list-halal li {
    width: 47.5%;
  }
}
.p-list-halal li:last-child img {
  width: 150px;
  min-width: 150px;
}
@media screen and (max-width: 767px) {
  .p-list-halal li:last-child {
    width: 100%;
    text-align: center;
    margin-top: 15px;
  }
}
.p-list-halal li img {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  user-select: none;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-list-halal li img {
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
  }
}

.p-halal-mark {
  width: 150px;
}
@media screen and (max-width: 767px) {
  .p-halal-mark {
    margin: 0 auto;
  }
}
.p-halal-mark dt {
  margin-bottom: 5px;
  text-align: center;
}
.p-halal-mark dd {
  padding: 10px;
  border: 1px solid #CCC;
  background: #FFF;
}

.p-list-shoplink {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-list-shoplink {
    display: block;
  }
}
.p-list-shoplink li {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .p-list-shoplink li {
    width: auto;
  }
  .p-list-shoplink li:first-child {
    margin-bottom: 20px;
  }
}
.p-list-shoplink li a {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 230px;
  padding: 0 70px;
  font-size: 147%;
  line-height: 1.5;
  color: #FFF;
  text-decoration: none;
  border: 5px solid #FFF;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.15);
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .p-list-shoplink li a {
    height: 120px;
    padding: 0 40px;
    font-size: 116%;
  }
}
.p-list-shoplink li a::before {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.p-list-shoplink li a::after {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 35px;
  width: 16px;
  height: 16px;
  border-top: 3px solid #C4973A;
  border-right: 3px solid #C4973A;
  transform: rotate(45deg);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-list-shoplink li a::after {
    right: 20px;
    width: 10px;
    height: 10px;
    border-width: 2px;
  }
}
@media screen and (max-width: 767px) {
  .p-list-shoplink li a {
    border-width: 3px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.15);
  }
}
.p-list-shoplink li a:hover {
  opacity: 0.9;
}
.p-list-shoplink li:first-child a {
  background: url(../img/shop/okayama1.jpg) no-repeat center center/cover;
}
.p-list-shoplink li:last-child a {
  background: url(../img/shop/tokyo1.jpg) no-repeat center center/cover;
}

.p-table-shop {
  width: 100%;
  font-size: 93%;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-table-shop {
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}
.p-table-shop thead th {
  padding: 6px;
  line-height: 1.3;
  background: #000;
  border: 1px solid #DDD;
  color: #FFF;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-table-shop thead th {
    padding: 4px;
  }
}
.p-table-shop tbody {
  background: #FFF;
}
.p-table-shop tbody tr:nth-child(even) {
  background: #FAFAFA;
}
.p-table-shop tbody th {
  padding: 14px;
  border: 1px solid #DDD;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-table-shop tbody th {
    padding: 10px;
  }
}
.p-table-shop tbody td {
  padding: 14px;
  border: 1px solid #DDD;
}
@media screen and (max-width: 767px) {
  .p-table-shop tbody td {
    padding: 10px;
  }
}

.p-table-type1 {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-table-type1 {
    border-top: 1px solid #DDD;
  }
}
.p-table-type1 th {
  padding: 20px;
  border-top: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
  text-align: center;
  width: 25%;
}
@media screen and (max-width: 767px) {
  .p-table-type1 th {
    display: block;
    padding: 10px 10px 0 10px;
    border: none;
    width: auto;
    text-align: left;
  }
}
.p-table-type1 td {
  padding: 20px;
  border-top: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
}
@media screen and (max-width: 767px) {
  .p-table-type1 td {
    display: block;
    padding: 0 10px 10px 10px;
    border-top: none;
  }
}

.p-table-type2 {
  width: 100%;
  line-height: 1.7;
}
.p-table-type2 th {
  padding: 15px;
  border: 1px solid #DDD;
  background: #F3F3F3;
  text-align: center;
  width: 25%;
}
@media screen and (max-width: 767px) {
  .p-table-type2 th {
    display: block;
    margin-top: -1px;
    padding: 7px 12px;
    border-bottom: none;
    width: auto;
    text-align: left;
  }
}
.p-table-type2 td {
  padding: 15px;
  border: 1px solid #DDD;
  background: #FFF;
}
@media screen and (max-width: 767px) {
  .p-table-type2 td {
    display: block;
    padding: 12px;
  }
}

.p-list-disc {
  padding-left: 1.5em;
}
.p-list-disc li {
  list-style: disc;
}

.p-list-site {
  display: flex;
  flex-wrap: wrap;
  background: #FFF;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.05);
  padding: 35px 40px 40px 40px;
}
@media screen and (max-width: 767px) {
  .p-list-site {
    display: block;
    padding: 20px 25px;
  }
}
.p-list-site li {
  width: 33.33%;
  margin-top: 5px;
}
@media screen and (max-width: 1024px) {
  .p-list-site li {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .p-list-site li {
    width: auto;
    margin-top: 0;
  }
}
.p-list-site li a {
  position: relative;
  display: inline-block;
  padding-left: 18px;
}
@media screen and (max-width: 767px) {
  .p-list-site li a {
    padding-left: 15px;
  }
}
.p-list-site li a::before {
  content: "";
  position: absolute;
  margin: auto;
  top: 14px;
  left: 0;
  width: 5px;
  height: 5px;
  border-top: 2px solid #17459B;
  border-right: 2px solid #17459B;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .p-list-site li a::before {
    width: 4px;
    height: 4px;
  }
}

.p-table-history {
  width: 100%;
  line-height: 1.7;
}
.p-table-history th {
  padding: 10px;
  border-top: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
  text-align: center;
  width: 285px;
}
@media screen and (max-width: 767px) {
  .p-table-history th {
    width: 120px;
  }
}
.p-table-history td {
  padding: 10px;
  border-top: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
}
.p-table-history tr:nth-child(even) {
  background: #FAFAFA;
}

.p-event-gallery img:hover {
  transition: 0.2s;
  opacity: 0.8;
}
.p-event-gallery figcaption {
  margin-top: 15px;
  font-weight: bold;
  line-height: 1.7;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-event-gallery figcaption {
    font-size: 85%;
    margin-top: 10px;
  }
}

.p-gallery-slider {
  position: relative;
  padding-bottom: 27px;
  display: none;
}
.p-gallery-slider.slick-initialized {
  display: block;
}
.p-gallery-slider .slick-list {
  position: relative;
  overflow: hidden;
}
.p-gallery-slider .slick-list li {
  float: left;
  outline: none;
}
.p-gallery-slider .slick-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  font-size: 0;
  line-height: 0;
}
.p-gallery-slider .slick-dots li {
  display: inline-block;
  margin: 0 6px;
  cursor: pointer;
  overflow: hidden;
}
.p-gallery-slider .slick-dots li button {
  background: #DDD;
  text-indent: 9999px;
  overflow: hidden;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  cursor: pointer;
  border: 0;
  padding: 0;
  outline: none;
}
.p-gallery-slider .slick-dots li:first-child:last-child {
  display: none;
}
.p-gallery-slider .slick-dots .slick-active button {
  background: #C4973A;
  cursor: default;
}

.p-limitedmenu {
  margin-top: 15px;
  line-height: 1.6;
  color: #FFF;
}
.p-limitedmenu dt {
  width: 100%;
  font-size: 116%;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-limitedmenu dt {
    font-size: 100%;
  }
}
.p-limitedmenu dd {
  margin-top: 3px;
  text-align: right;
}

.p-caviarmenu {
  display: flex;
  justify-content: space-between;
  line-height: 1.7;
}
.p-caviarmenu dt {
  width: 100%;
  font-size: 116%;
  font-weight: bold;
  padding-right: 1em;
}
@media screen and (max-width: 767px) {
  .p-caviarmenu dt {
    font-size: 100%;
  }
}
.p-caviarmenu dd {
  text-align: right;
  white-space: nowrap;
}

.p-list-caviarmenu {
  border-top: 1px solid #DDD;
}
.p-list-caviarmenu li {
  padding: 20px 15px;
  border-bottom: 1px solid #DDD;
}
@media screen and (max-width: 767px) {
  .p-list-caviarmenu li {
    padding: 15px;
  }
}

.p-table-menu {
  width: 100%;
  line-height: 1.6;
}
.p-table-menu th {
  padding: 10px 15px;
  border-top: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
  text-align: left;
  font-weight: normal;
}
.p-table-menu td {
  padding: 10px 15px;
  border-top: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
  text-align: right;
  white-space: nowrap;
}

.p-table-calendar {
  width: 100%;
  font-size: 116%;
  line-height: 1.7;
  background: #FFF;
}
@media screen and (max-width: 767px) {
  .p-table-calendar {
    font-size: 100%;
  }
}
.p-table-calendar th {
  padding: 3px 5px;
  border: 1px solid #CCC;
  text-align: center;
  background: #1D3766;
  color: #FFF;
}
.p-table-calendar th.sun {
  background: #D73E39;
}
.p-table-calendar th.sat {
  background: #388FC5;
}
.p-table-calendar td {
  padding: 5px;
  border: 1px solid #CCC;
  text-align: center;
}
.p-table-calendar td.closed {
  color: #AA0A00;
  background: #FFD2D2;
}

.p-note-calendar {
  margin-top: 15px;
  position: relative;
  padding-left: 25px;
}
.p-note-calendar::before {
  content: "";
  position: absolute;
  margin: auto;
  top: 2px;
  bottom: 0;
  left: 0;
  width: 15px;
  height: 15px;
  background: #FFD2D2;
  border: 1px solid #CCC;
}

@media screen and (max-width: 767px) {
  .p-image-vertical {
    padding: 0 15%;
  }
}

.p-comment {
  font-size: 85%;
  line-height: 1.7;
}

.p-note {
  font-size: 93%;
  line-height: 1.7;
  color: #C4973A;
  padding-left: 1em;
  text-indent: -1em;
}

.p-number {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  border: 1px solid #C4973A;
  background: #FFF;
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
@media screen and (max-width: 767px) {
  .p-number {
    padding: 15px;
  }
}
.p-number dt {
  background: #C4973A;
  padding: 3px;
  font-size: 93%;
  line-height: 1.3;
  color: #FFF;
  text-align: center;
  width: 45px;
}
@media screen and (max-width: 767px) {
  .p-number dt {
    padding: 3px;
    font-size: 70%;
    width: 35px;
  }
}
.p-number dd {
  margin-left: 15px;
  font-size: 224%;
  line-height: 1.1;
  color: #C4973A;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-number dd {
    margin-left: 10px;
    font-size: 193%;
  }
}
.p-number dd a {
  text-decoration: none;
  color: #C4973A;
}

.p-number-recruit {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  border: 1px solid #C4973A;
  background: #FFF;
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
@media screen and (max-width: 767px) {
  .p-number-recruit {
    margin-bottom: 30px;
    padding: 15px;
    border: 1px solid #C4973A;
  }
}
.p-number-recruit dt {
  background: #C4973A;
  padding: 3px;
  font-size: 93%;
  line-height: 1.3;
  color: #FFF;
  text-align: center;
  width: 45px;
}
@media screen and (max-width: 767px) {
  .p-number-recruit dt {
    padding: 3px;
    font-size: 70%;
    width: 35px;
  }
}
.p-number-recruit dd {
  display: flex;
  align-items: center;
  margin-left: 15px;
  font-size: 224%;
  line-height: 1.1;
  color: #C4973A;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-number-recruit dd {
    margin-left: 10px;
    font-size: 193%;
  }
}
.p-number-recruit dd a {
  text-decoration: none;
  color: #C4973A;
}
.p-number-recruit dd small {
  font-size: 45%;
  margin-left: 15px;
}
@media screen and (max-width: 767px) {
  .p-number-recruit dd small {
    margin-left: 10px;
  }
}

.p-table-form {
  width: 100%;
  border-top: 1px solid #DDD;
}
.p-table-form th {
  padding: 25px 20px;
  border-bottom: 1px solid #DDD;
  width: 300px;
  font-size: 100%;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-table-form th {
    display: block;
    padding: 20px 0 10px 0;
    border-bottom: none;
    width: auto;
  }
}
.p-table-form td {
  padding: 25px 20px;
  border-bottom: 1px solid #DDD;
}
@media screen and (max-width: 767px) {
  .p-table-form td {
    display: block;
    padding: 0 0 20px 0;
  }
}

.p-list-error {
  margin-bottom: 40px;
  padding: 25px;
  background: #FFF5F5;
  border: 1px solid #FFE6E6;
}
@media screen and (max-width: 767px) {
  .p-list-error {
    margin-bottom: 30px;
    padding: 15px;
  }
}
.p-list-error li {
  font-size: 93%;
  line-height: 1.7;
  color: #AA0A00;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-list-error li {
    font-size: 85%;
  }
}

.p-error {
  margin-top: 10px;
  font-size: 85%;
  line-height: 1.5;
  color: #AA0A00;
  font-family: "Noto Sans JP", sans-serif;
}

.p-checkbox-input {
  display: none;
}

.p-checkbox-text,
.p-checkbox-text-checked {
  display: inline-block;
  position: relative;
  padding: 8px 8px 8px 35px;
  background: #FFFAE2;
  border: 1px solid #F2E5AB;
}
@media screen and (max-width: 767px) {
  .p-checkbox-text,
  .p-checkbox-text-checked {
    display: block;
    font-size: 77%;
  }
}
.p-checkbox-text::before,
.p-checkbox-text-checked::before {
  content: "";
  display: block;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 15px;
  width: 15px;
  height: 15px;
  border: 1px solid #999;
  border-radius: 2px;
  background: #FFF;
}

.p-checkbox-text {
  cursor: pointer;
}

.p-checkbox-input:checked + .p-checkbox-text::after,
.p-checkbox-text-checked::after {
  content: "";
  display: block;
  position: absolute;
  margin: auto;
  top: -4px;
  bottom: 0;
  left: 20px;
  width: 5px;
  height: 10px;
  transform: rotate(40deg);
  border-bottom: 3px solid #AA0A00;
  border-right: 3px solid #AA0A00;
}

.p-finish {
  padding: 60px;
  border: 1px solid #DDD;
  background: #F8F8F8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-finish {
    padding: 30px 20px;
  }
}
.p-finish dt {
  font-size: 162%;
  line-height: 1.6;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-finish dt {
    font-size: 116%;
  }
}
.p-finish dd {
  margin-top: 20px;
  line-height: 1.7;
}
.p-finish dd:last-child {
  margin-top: 30px;
}

.p-ambassador-profile {
  margin: 60px 0;
  padding: 25px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .p-ambassador-profile {
    margin: 30px 0;
    padding: 30px 0;
  }
}

.p-text-ambassador {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-text-ambassador {
    text-align: left;
  }
  .p-text-ambassador br {
    display: none;
  }
}

.p-ambassador-history {
  position: relative;
  margin-bottom: 30px;
}
.p-ambassador-history.last {
  margin-bottom: 0;
}
.p-ambassador-history.last dd::before {
  display: none;
}
.p-ambassador-history dt {
  position: absolute;
  top: 4px;
  left: 0;
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #FFF;
  background: #000;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-ambassador-history dt {
    top: 0;
    width: 70px;
    min-width: 70px;
    height: 70px;
    border-radius: 70px;
    font-size: 93%;
  }
}
.p-ambassador-history dd {
  position: relative;
  padding-left: 110px;
  font-size: 93%;
}
@media screen and (max-width: 767px) {
  .p-ambassador-history dd {
    padding-left: 90px;
  }
}
.p-ambassador-history dd::before {
  content: "";
  position: absolute;
  margin: auto;
  top: 10px;
  bottom: -40px;
  left: 39px;
  width: 2px;
  background: #000;
}
@media screen and (max-width: 767px) {
  .p-ambassador-history dd::before {
    left: 34px;
  }
}

.p-ambassador-shop dt {
  font-size: 162%;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-ambassador-shop dt {
    font-size: 147%;
    text-align: center;
  }
}
.p-ambassador-shop dd {
  margin-top: 20px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-ambassador-shop dd {
    margin-top: 15px;
  }
}

.p-tab-contents {
  display: none;
  padding: 60px;
}
@media screen and (max-width: 767px) {
  .p-tab-contents {
    padding: 15px;
  }
}
.p-tab-contents.is-tab-contents-active {
  display: block;
}

.p-recipe img:hover {
  transition: 0.2s;
  opacity: 0.8;
}
.p-recipe figcaption {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .p-recipe figcaption {
    margin-top: 12px;
  }
}
.p-recipe__caption {
  font-size: 100%;
  font-weight: bold;
  line-height: 1.7;
  color: #333;
}
.p-recipe__caption .icon-video {
  float: left;
  min-width: 48px;
  margin-top: 2px;
  font-size: 85%;
  color: #FFF;
  font-weight: bold;
  text-align: center;
  background: #1D3766;
  margin-right: 12px;
}
@media screen and (max-width: 767px) {
  .p-recipe__caption .icon-video {
    margin-top: 3px;
    font-size: 77%;
  }
}
.p-recipe__caption .icon-pdf {
  float: left;
  min-width: 48px;
  margin-top: 2px;
  font-size: 85%;
  color: #FFF;
  font-weight: bold;
  text-align: center;
  background: #CC0000;
  margin-right: 12px;
}
@media screen and (max-width: 767px) {
  .p-recipe__caption .icon-pdf {
    margin-top: 3px;
    font-size: 77%;
  }
}
.p-recipe__caption .title {
  overflow: hidden;
}

.p-title-info {
  margin-bottom: 40px;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 1024px) {
  .p-title-info {
    display: block;
  }
}
.p-title-info__jpn {
  font-size: 193%;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .p-title-info__jpn {
    font-size: 162%;
  }
}
@media screen and (max-width: 767px) {
  .p-title-info__jpn {
    text-align: center;
  }
}
.p-title-info__eng {
  margin-left: 18px;
  font-family: "Playfair Display", serif;
  line-height: 1.4;
  color: #C4973A;
}
@media screen and (max-width: 1024px) {
  .p-title-info__eng {
    font-size: 85%;
    margin: 5px 0 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-title-info__eng {
    text-align: center;
  }
}

.p-title-center {
  margin-bottom: 80px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-title-center {
    margin-bottom: 40px;
  }
}
.p-title-center__eng {
  font-family: "Playfair Display", serif;
  font-size: 300%;
  line-height: 1;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .p-title-center__eng {
    font-size: 180%;
  }
}
.p-title-center__jpn {
  margin-top: 15px;
  font-size: 108%;
  line-height: 1;
  font-weight: bold;
  color: #C4973A;
}
@media screen and (max-width: 767px) {
  .p-title-center__jpn {
    margin-top: 12px;
    font-size: 85%;
  }
}

.p-title-center-white {
  margin-bottom: 80px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-title-center-white {
    margin-bottom: 40px;
  }
}
.p-title-center-white__eng {
  font-family: "Playfair Display", serif;
  font-size: 300%;
  line-height: 1;
  font-weight: normal;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .p-title-center-white__eng {
    font-size: 180%;
  }
}
.p-title-center-white__jpn {
  margin-top: 18px;
  font-size: 108%;
  line-height: 1;
  font-weight: bold;
  color: #C4973A;
}
@media screen and (max-width: 767px) {
  .p-title-center-white__jpn {
    margin-top: 12px;
    font-size: 85%;
  }
}

.p-pagename {
  z-index: 100;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-pagename {
    z-index: 1;
  }
}
.p-pagename__title {
  font-family: "Playfair Display", serif;
  font-size: 285%;
  line-height: 1.3;
  color: #FFF;
  font-weight: normal;
  letter-spacing: 0.03em;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .p-pagename__title {
    font-size: 162%;
  }
}
.p-pagename__sub {
  margin-top: 10px;
  font-size: 100%;
  line-height: 1.3;
  font-weight: bold;
  color: #C4973A;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .p-pagename__sub {
    font-size: 85%;
  }
}

.p-title-line-gold, .p-title-line {
  margin-bottom: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 177%;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-title-line-gold, .p-title-line {
    margin-bottom: 40px;
    font-size: 131%;
  }
}
.p-title-line-gold::before, .p-title-line::before {
  content: "";
  width: 1.5em;
  height: 1px;
  margin-right: 1em;
}
@media screen and (max-width: 767px) {
  .p-title-line-gold::before, .p-title-line::before {
    width: 1em;
    margin-right: 0.8em;
  }
}
.p-title-line-gold::after, .p-title-line::after {
  content: "";
  width: 1.5em;
  height: 1px;
  margin-left: 1em;
}
@media screen and (max-width: 767px) {
  .p-title-line-gold::after, .p-title-line::after {
    width: 1em;
    margin-left: 0.8em;
  }
}

.p-title-line {
  color: #333;
}
.p-title-line::before, .p-title-line::after {
  background: #333;
}

.p-title-line-gold {
  color: #C4973A;
}
.p-title-line-gold::before, .p-title-line-gold::after {
  background: #C4973A;
}

.p-title-product {
  position: relative;
  margin-bottom: 60px;
  padding-bottom: 20px;
  font-size: 224%;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-title-product {
    font-size: 147%;
    margin-bottom: 40px;
    padding-bottom: 15px;
  }
}
.p-title-product::before {
  position: absolute;
  content: "";
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 2px;
  background: #C4973A;
}
@media screen and (max-width: 767px) {
  .p-title-product::before {
    width: 50px;
  }
}

.p-title-verticalline {
  margin: 60px 0 30px 0;
  padding: 2px 0 2px 12px;
  border-left: 3px solid #1D3766;
  font-size: 131%;
  line-height: 1.4;
  color: #1D3766;
}
@media screen and (max-width: 767px) {
  .p-title-verticalline {
    margin: 40px 0 20px 0;
    font-size: 116%;
  }
}

.p-title-verticalline-gold {
  margin: 60px 0 30px 0;
  padding: 2px 0 2px 12px;
  border-left: 3px solid #C4973A;
  font-size: 131%;
  line-height: 1.4;
  color: #C4973A;
}
@media screen and (max-width: 767px) {
  .p-title-verticalline-gold {
    margin: 40px 0 20px 0;
    font-size: 116%;
  }
}

.p-title-gold {
  margin-bottom: 80px;
  font-size: 177%;
  line-height: 1.5;
  color: #C4973A;
}
@media screen and (max-width: 767px) {
  .p-title-gold {
    margin-bottom: 40px;
    font-size: 147%;
    text-align: center;
  }
}

.p-title-simple {
  margin: 60px 0 40px 0;
  font-size: 147%;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-title-simple {
    margin: 30px 0;
    font-size: 116%;
  }
}

.p-title-simple-left {
  margin-bottom: 30px;
  font-size: 147%;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-title-simple-left {
    margin-bottom: 20px;
    font-size: 116%;
  }
}

.p-title-ambassador {
  margin: -15px 0 60px 0;
  font-size: 193%;
  line-height: 1.6;
  text-align: center;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .p-title-ambassador {
    margin: -10px 0 30px 0;
  }
}
.p-title-ambassador span {
  font-size: 75%;
}
@media screen and (max-width: 767px) {
  .p-title-ambassador {
    font-size: 131%;
  }
}

.p-title-ambassador-profile {
  margin-bottom: 10px;
  font-size: 116%;
  line-height: 1.6;
  text-align: center;
  font-weight: normal;
  color: #C4973A;
}

.p-title-calendar {
  margin-bottom: 20px;
  font-size: 131%;
  line-height: 1;
  font-weight: normal;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-title-calendar {
    margin-bottom: 15px;
    font-size: 116%;
  }
}
.p-title-calendar span {
  font-size: 140%;
  margin-left: 10px;
}

.p-date {
  margin: 0 0 5px 0;
}

.p-title-entry {
  margin: 0 0 40px 0;
  padding-bottom: 18px;
  font-size: 208%;
  line-height: 1.4;
  color: #000;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .p-title-entry {
    margin: 0 0 30px 0;
    padding-bottom: 15px;
    font-size: 147%;
  }
}

.entry p {
  margin-bottom: 1.2em;
}
.entry p:last-of-type {
  margin-bottom: 0;
}

.entry h2 {
  margin: 2em 0 1.2em 0;
  padding: 15px 18px;
  font-size: 131%;
  line-height: 1.4;
  color: #FFF;
  background: #000;
}
@media screen and (max-width: 767px) {
  .entry h2 {
    padding: 13px 15px;
    font-size: 116%;
  }
}

.entry h3 {
  margin: 2em 0 1.2em 0;
  padding: 14px 15px;
  font-size: 124%;
  line-height: 1.4;
  color: #000;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .entry h3 {
    padding: 12px 10px;
    font-size: 108%;
  }
}

.entry h4 {
  margin: 2em 0 1em 0;
  padding: 0 0 0 20px;
  font-size: 116%;
  line-height: 1.4;
  color: #000;
  position: relative;
}
.entry h4::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 115%;
  background: #000;
}
@media screen and (max-width: 767px) {
  .entry h4 {
    padding: 0 0 0 17px;
    font-size: 100%;
  }
}

.entry h5 {
  margin: 2em 0 1em 0;
  font-size: 108%;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .entry h5 {
    font-size: 100%;
  }
}

.entry h6 {
  margin: 2em 0 1em 0;
  font-size: 100%;
  line-height: 1.4;
}

.entry table {
  width: 100%;
  margin: 1.5em 0;
}
.entry table th {
  border: 1px solid #DDD;
  padding: 15px;
  background: #F8F8F8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .entry table th {
    padding: 10px;
  }
}
.entry table td {
  border: 1px solid #DDD;
  padding: 15px;
  background: #FFF;
}
@media screen and (max-width: 767px) {
  .entry table td {
    padding: 10px;
  }
}

.entry ul:not([class]) {
  list-style: disc;
  margin: 1em 0;
  padding-left: 2em;
}

.entry ol:not([class]) {
  list-style: decimal;
  margin: 1em 0;
  padding-left: 2em;
}

.p-post-image {
  list-style: none !important;
  margin: -4.3% 0 0 -4.3% !important;
  margin-top: -2.3% !important;
  padding: 0 !important;
}
.p-post-image::after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (max-width: 767px) {
  .p-post-image {
    margin: 30px 0 0 0 !important;
  }
}
.p-post-image > li {
  float: left;
  width: 46%;
  margin: 4% 0 0 4%;
}
.p-post-image > li img:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .p-post-image > li {
    width: auto;
    margin: 0 0 30px 0;
  }
  .p-post-image > li:last-child {
    margin-bottom: 0;
  }
}

.p-caption {
  display: block;
  margin-top: 7px;
  text-align: center;
}

.p-post-files {
  list-style: none !important;
  margin: 40px 0 0 0 !important;
  padding: 0 !important;
  border-top: 1px solid #EEE;
}
@media screen and (max-width: 767px) {
  .p-post-files {
    margin: 30px 0 0 0 !important;
  }
}
.p-post-files li {
  border-bottom: 1px solid #EEE;
  padding: 15px;
}

.privacy {
  line-height: 1.7;
}

.privacy h3 {
  margin: 30px 0 20px 0;
  padding-bottom: 7px;
  font-size: 140%;
  line-height: 1.6;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .privacy h3 {
    font-size: 125%;
  }
}

.privacy p {
  margin: 1em 0;
}

.privacy p:first-child {
  margin-top: 0;
}

.privacy p:last-child {
  margin-bottom: 0;
}

.privacy ul {
  padding: 0 0 0 1.5em;
}

.privacy ul > li {
  list-style: disc;
}

.privacy ul > li > ul > li {
  list-style: circle;
}

.privacy ol {
  padding: 0 0 0 2em;
}

.privacy ol > li {
  list-style: decimal;
}

.privacy ol > li > ul > li {
  list-style: disc;
}

.privacy ol.p-list-parentheses > li {
  list-style: none;
  counter-increment: cnt;
}

.privacy ol.p-list-parentheses > li::before {
  display: inline-block;
  margin-left: -2.5em;
  content: "（" counter(cnt) "）";
}

.privacy ol.p-list-circle {
  counter-reset: circle-counter;
}

.privacy ol.p-list-circle > li {
  list-style: none;
}

.privacy ol.p-list-circle > li::before {
  content: counter(circle-counter);
  counter-increment: circle-counter;
  margin: 3px 0 0 -2.1em;
  border: 1px solid #333;
  display: block;
  float: left;
  font-size: 11px;
  text-align: center;
  line-height: 13px;
  height: 13px;
  width: 13px;
  border-radius: 13px;
}

.privacy .p-list-space {
  margin-top: 20px;
}

.privacy .p-list-space > li {
  margin-bottom: 2em;
}

.privacy .p-list-space > li:last-child {
  margin-bottom: 0;
}

.privacy .p-list-none {
  padding: 0;
}

.privacy .p-list-none > li {
  list-style: none;
}

.privacy .p-list-none > li > ul {
  padding: 0 0 0 1em;
}

.privacy .p-list-none > li > ul > li {
  list-style: none;
}

.privacy ul.p-note {
  margin: 0.8em 0;
  padding: 0;
}

.privacy ul.p-note li {
  font-size: 14px;
  line-height: 1.6em;
  color: #C4973A;
  text-indent: -1em;
  padding-left: 1em;
  list-style: none;
}

.privacy img {
  max-width: 80px;
}

.privacy .p-note {
  margin: 0.8em 0;
  padding-left: 1em;
  font-size: 14px;
  line-height: 1.6em;
  color: #C4973A;
  text-indent: -1em;
}

.u-bgimg-darkblue {
  border-top: 5px solid #C4973A;
  border-bottom: 5px solid #C4973A;
  background: url(../img/bg_darkblue.jpg) no-repeat center center/cover;
  background-attachment: fixed;
}
@media screen and (max-width: 767px) {
  .u-bgimg-darkblue {
    border-top: 3px solid #C4973A;
    border-bottom: 3px solid #C4973A;
    background: #001630;
  }
}

.u-bgimg-darkblue2 {
  background: url(../img/bg_darkblue.jpg) no-repeat center center/cover;
  background-attachment: fixed;
}
@media screen and (max-width: 767px) {
  .u-bgimg-darkblue2 {
    background: #001630;
  }
}

.u-bgimg-about {
  background: url(../img/top/bg_about.jpg) no-repeat center center/cover;
  padding: 80px 20px;
}
@media screen and (max-width: 767px) {
  .u-bgimg-about {
    background: none;
    padding: 40px 15px;
  }
}

.u-bgimg-caviar {
  position: relative;
  background: #000 url(../img/bg_caviar.jpg) no-repeat center center fixed;
  background-size: cover;
}
.u-bgimg-caviar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 767px) {
  .u-bgimg-caviar {
    background-image: none;
  }
}

.u-bgimg-marble {
  background: url(../img/bg_marble.jpg) repeat-y center center;
  background-size: 100% auto;
}

.u-bgcolor-lightgray {
  background-color: #F7F7F7;
}

.u-color-red {
  color: #AA0A00;
}

.u-color-white {
  color: #FFF;
}

.u-border-rightgray-top {
  border-top: 1px solid #EEE;
}

.u-position-relative {
  position: relative;
}

.u-anchor {
  display: block;
  position: absolute;
  z-index: 100;
  width: 0;
  height: 0;
  top: -135px;
}
@media screen and (max-width: 767px) {
  .u-anchor {
    top: -25px;
  }
}

.u-spacer {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .u-spacer {
    margin-top: 40px;
  }
}

.u-pc-only {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none;
  }
}

.u-mobile-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile-only {
    display: block;
  }
}

.u-arrow {
  position: relative;
  padding-left: 15px;
}
.u-arrow::before {
  content: "";
  position: absolute;
  margin: auto;
  top: 1px;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 5px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  transform: rotate(45deg);
}

.u-big-banner {
  text-align: center;
}
.u-big-banner img {
  width: 750px;
}

.layer_board_area {
  position: relative;
}

.layer_board {
  display: none;
  position: fixed;
  padding: 15px;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.6);
}

.layer_board .btn_close {
  position: absolute;
  top: 0;
  right: 3px;
}
.layer_board .btn_close img {
  width: 28px;
  height: 28px;
}

.u-float-l {
  float: left !important;
}

.u-float-r {
  float: right !important;
}

.u-txt-l {
  text-align: left !important;
}

.u-txt-c {
  text-align: center !important;
}

.u-txt-r {
  text-align: right !important;
}

.u-txt-cl {
  text-align: center !important;
}
@media screen and (max-width: 767px) {
  .u-txt-cl {
    text-align: left !important;
  }
}

.u-fs11 {
  font-size: 62% !important;
}

.u-fs12 {
  font-size: 70% !important;
}

.u-fs13 {
  font-size: 77% !important;
}

.u-fs14 {
  font-size: 85% !important;
}

.u-fs15 {
  font-size: 93% !important;
}

.u-fs16 {
  font-size: 100% !important;
}

.u-fs17 {
  font-size: 108% !important;
}

.u-fs18 {
  font-size: 116% !important;
}

.u-fs19 {
  font-size: 124% !important;
}

.u-fs20 {
  font-size: 131% !important;
}

.u-fs22 {
  font-size: 147% !important;
}

.u-fs24 {
  font-size: 162% !important;
}

.u-fs26 {
  font-size: 177% !important;
}

.u-fs28 {
  font-size: 193% !important;
}

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

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

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

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

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

.u-mt25 {
  margin-top: 25px !important;
}

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

.u-mt35 {
  margin-top: 35px !important;
}

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

.u-mt45 {
  margin-top: 45px !important;
}

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

.u-mt55 {
  margin-top: 55px !important;
}

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

.u-mt65 {
  margin-top: 65px !important;
}

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

.u-mt75 {
  margin-top: 75px !important;
}

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

.u-mt85 {
  margin-top: 85px !important;
}

.u-mt90 {
  margin-top: 90px !important;
}

.u-mt95 {
  margin-top: 95px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

.u-ml0 {
  margin-left: 0 !important;
}

.u-ml5 {
  margin-left: 5px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-ml25 {
  margin-left: 25px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-ml35 {
  margin-left: 35px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-ml45 {
  margin-left: 45px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

.u-ml55 {
  margin-left: 55px !important;
}

.u-ml60 {
  margin-left: 60px !important;
}

.u-ml65 {
  margin-left: 65px !important;
}

.u-ml70 {
  margin-left: 70px !important;
}

.u-ml75 {
  margin-left: 75px !important;
}

.u-ml80 {
  margin-left: 80px !important;
}

.u-ml85 {
  margin-left: 85px !important;
}

.u-ml90 {
  margin-left: 90px !important;
}

.u-ml95 {
  margin-left: 95px !important;
}

.u-ml100 {
  margin-left: 100px !important;
}

.u-mr0 {
  margin-right: 0 !important;
}

.u-mr5 {
  margin-right: 5px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-mr15 {
  margin-right: 15px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-mr25 {
  margin-right: 25px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-mr35 {
  margin-right: 35px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-mr45 {
  margin-right: 45px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-mr55 {
  margin-right: 55px !important;
}

.u-mr60 {
  margin-right: 60px !important;
}

.u-mr65 {
  margin-right: 65px !important;
}

.u-mr70 {
  margin-right: 70px !important;
}

.u-mr75 {
  margin-right: 75px !important;
}

.u-mr80 {
  margin-right: 80px !important;
}

.u-mr85 {
  margin-right: 85px !important;
}

.u-mr90 {
  margin-right: 90px !important;
}

.u-mr95 {
  margin-right: 95px !important;
}

.u-mr100 {
  margin-right: 100px !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mb55 {
  margin-bottom: 55px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-mb65 {
  margin-bottom: 65px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-mb75 {
  margin-bottom: 75px !important;
}

.u-mb80 {
  margin-bottom: 80px !important;
}

.u-mb85 {
  margin-bottom: 85px !important;
}

.u-mb90 {
  margin-bottom: 90px !important;
}

.u-mb95 {
  margin-bottom: 95px !important;
}

.u-mb100 {
  margin-bottom: 100px !important;
}

.u-pt0 {
  padding-top: 0 !important;
}

.u-w5 {
  width: 5% !important;
}

.u-w10 {
  width: 10% !important;
}

.u-w15 {
  width: 15% !important;
}

.u-w20 {
  width: 20% !important;
}

.u-w25 {
  width: 25% !important;
}

.u-w30 {
  width: 30% !important;
}

.u-w35 {
  width: 35% !important;
}

.u-w40 {
  width: 40% !important;
}

.u-w45 {
  width: 45% !important;
}

.u-w50 {
  width: 50% !important;
}

.u-w55 {
  width: 55% !important;
}

.u-w60 {
  width: 60% !important;
}

.u-w65 {
  width: 65% !important;
}

.u-w70 {
  width: 70% !important;
}

.u-w75 {
  width: 75% !important;
}

.u-w80 {
  width: 80% !important;
}

.u-w85 {
  width: 85% !important;
}

.u-w90 {
  width: 90% !important;
}

.u-w95 {
  width: 95% !important;
}

.u-w100 {
  width: 100% !important;
}

.u-addr1 {
  width: 5em !important;
}

.u-addr2 {
  width: 6em !important;
}