/* ----------------------------------------------
 theme style
---------------------------------------------- */
/* p-top
---------------------------------------------- */
.p-top-mv {
  position: relative;
  width: 100%;
  min-height: 700px;
}

@media screen and (max-width: 768px) {
  .p-top-mv {
    min-height: auto;
  }
}

.p-top-mv__title {
  position: absolute;
  visibility: hidden;
  z-index: 2;
}

.p-top-mv__visual {
  overflow: hidden;
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 100%;
}

.p-top-mv__visual.is-video {
  background-color: #f5f5f5;
}

@media screen and (max-width: 768px) {
  .p-top-mv__visual {
    position: relative;
  }
}

.p-top-mv__frame img, .p-top-mv__frame video {
  display: block;
  position: absolute;
  z-index: 5;
  max-width: none;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.p-top-mv__frame img {
  width: auto;
  height: auto;
  min-height: 100%;
}

.p-top-mv__frame video {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1080px) {
  .p-top-mv__frame video, .p-top-mv__frame img {
    position: relative;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    top: 0;
    left: 0;
  }
  .p-top-mv__frame img {
    height: 100%;
    min-height: 100%;
  }
}

.p-top-mv__frame-overlay {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

@-webkit-keyframes loading-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loading-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.p-top-loading-circle {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 320px;
  height: 320px;
}

.p-top-loading-spin {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 10px solid #fff;
  border-radius: 9999px;
}

.p-top-loading-spin::before {
  content: '';
  position: absolute;
  z-index: 2;
  top: -10px;
  left: -10px;
  display: block;
  width: calc(50% + 12px);
  height: calc(100% + 22px);
  background-color: #f5f5f5;
  border-radius: 9999px 0 0 9999px;
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  -webkit-animation: loading-spin 1.5s infinite ease 1.3s;
  animation: loading-spin 1.5s infinite ease 1.3s;
  speak: none;
}

.p-top-loading-spin::after {
  content: '';
  position: absolute;
  z-index: 2;
  top: -10px;
  right: -10px;
  display: block;
  width: calc(50% + 12px);
  height: calc(100% + 22px);
  background-color: #f5f5f5;
  border-radius: 0 9999px 9999px 0;
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-animation: loading-spin 1.5s infinite ease;
  animation: loading-spin 1.5s infinite ease;
  speak: none;
}

@media screen and (max-width: 768px) {
  .p-top-loading-circle {
    width: 160px;
    height: 160px;
  }
}

.p-top-lnav {
  position: relative;
  padding: 20px 30px 20px;
}

@media screen and (max-width: 768px) {
  .p-top-lnav {
    padding: 20px 2% 20px;
  }
}

.p-top-lnav.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  background: #fff;
  width: 100%;
  padding: 10px;
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  -o-transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.p-top-lnav.is-fixed.is-hide {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.p-top-lnav__brand {
  display: block;
  position: absolute;
  width: 150px;
  height: 43px;
  top: 0;
  bottom: 0;
  left: 30px;
  margin: auto 0;
}

.p-top-lnav__brand img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .p-top-lnav__brand {
    width: 80px;
    height: 23px;
    position: relative;
    margin: 0 auto 20px;
    top: 0;
    left: auto;
  }
}

.p-top-lnav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (min-width: 769px) and (max-width: 1260px) {
  .p-top-lnav__inner {
    padding-left: 100px;
  }
}

@media screen and (max-width: 768px) {
  .p-top-lnav__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 81.94444%;
  }
}

.p-top-lnav__item {
  position: relative;
  border-left: 1px solid #000;
}

@media screen and (min-width: 769px) {
  .p-top-lnav__item:last-child {
    border-right: 1px solid #000;
  }
}

@media screen and (max-width: 768px) {
  .p-top-lnav__item {
    min-width: 50%;
  }
  .p-top-lnav__item:nth-child(even) {
    border-right: 1px solid #000;
  }
  .p-top-lnav__item:nth-child(n+3) {
    margin-top: 10px;
  }
}

.p-top-lnav__item > a,
.p-top-lnav__item > span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  padding: 0 10px 20px;
  min-width: 200px;
  color: inherit;
}

@media screen and (min-width: 769px) and (max-width: 1080px) {
  .p-top-lnav__item > a,
  .p-top-lnav__item > span {
    min-width: 160px;
  }
}

@media screen and (max-width: 768px) {
  .p-top-lnav__item > a,
  .p-top-lnav__item > span {
    min-width: 100%;
    padding: 0 5px 12px;
  }
}

.p-top-lnav__item > a {
  -webkit-transition: background-color .3s ease-in-out;
  -o-transition: background-color .3s ease-in-out;
  transition: background-color .3s ease-in-out;
}

.p-top-lnav__item > a::before {
  content: '';
  speak: none;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 25px;
  height: 12px;
  margin: auto auto 0;
  background: url(../imgs/parts_arrow-btm_gray.svg) center bottom 2px no-repeat;
  background-size: 100% auto;
}

@media screen and (max-width: 768px) {
  .p-top-lnav__item > a::before {
    width: 13px;
    height: 6px;
  }
}

.p-top-lnav__item > a:hover {
  background-color: #f5f5f5;
}

.p-top-lnav__item-text01 {
  display: block;
  font-family: Didot, "Bodoni Moda", "EB Garamond", seirf;
  font-weight: bold;
  font-size: 1.25rem;
}

@media screen and (min-width: 769px) and (max-width: 1080px) {
  .p-top-lnav__item-text01 {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 768px) {
  .p-top-lnav__item-text01 {
    font-size: 0.8125rem;
  }
}

.p-top-lnav__item-text02 {
  display: block;
  padding-top: 6px;
}

@media screen and (min-width: 769px) and (max-width: 1080px) {
  .p-top-lnav__item-text02 {
    font-size: 0.9375rem;
  }
}

@media screen and (max-width: 768px) {
  .p-top-lnav__item-text02 {
    padding-top: 3px;
    font-size: 0.8125rem;
  }
}

/* section
---------------------------------------------- */
.p-top-section {
  padding: 200px 0 100px;
}

@media screen and (max-width: 768px) {
  .p-top-section {
    padding: 110px 0 40px;
  }
}

.p-top-section-heading {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 15px 40px;
}

@media screen and (max-width: 768px) {
  .p-top-section-heading {
    padding: 0 15px 20px;
  }
}

.p-top-section-heading__text01,
.p-top-section-heading__text02 {
  display: block;
  text-align: center;
}

.p-top-section-heading__text01 {
  font-family: Didot, "Bodoni Moda", "EB Garamond", seirf;
  font-weight: bold;
  font-size: 4.375rem;
  line-height: 1.025;
}

@media screen and (max-width: 768px) {
  .p-top-section-heading__text01 {
    font-size: 1.875rem;
  }
}

.p-top-section-heading__text02 {
  font-size: 1.375rem;
  font-weight: 300;
  padding-top: 10px;
}

@media screen and (max-width: 768px) {
  .p-top-section-heading__text02 {
    padding-top: 10px;
    font-size: 0.6875rem;
  }
}

/* p-top-brandstory
---------------------------------------------- */
.p-top-brandstory__visual {
  position: relative;
  background: url(../imgs/pic_brandstory.jpg) center center no-repeat;
  min-height: 880px;
}

@media screen and (max-width: 768px) {
  .p-top-brandstory__visual {
    min-height: 117.1875vw;
    background-size: auto 100%;
    background-image: url(../imgs/pic_brandstory_sp.jpg);
  }
}

.p-top-brandstory__visual-copy {
  position: absolute;
  z-index: 5;
  bottom: 50px;
  left: 0;
  width: 100%;
  color: #fff;
  text-align: center;
  font-weight: inherit;
  font-size: 3.125rem;
}

@media screen and (max-width: 768px) {
  .p-top-brandstory__visual-copy {
    font-size: 6.66667vw;
    line-height: 1.2;
    bottom: 25px;
  }
}

.p-top-brandstory__intro {
  padding: 70px 30px 75px;
  text-align: center;
  line-height: 1.875;
  font-size: 1rem;
}

.p-top-brandstory__intro p + p {
  margin-top: 1.875em;
}

.p-top-brandstory__intro p > span {
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .p-top-brandstory__intro {
    font-size: 0.875rem;
    text-align: left;
    padding: 30px 15px 30px;
  }
}

/* p-top-collection
---------------------------------------------- */
.p-top-slider__item {
  position: relative;
  overflow: hidden;
}

.p-top-slider__item-desc {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 5;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.p-top-slider__item-desc .c-container {
  position: relative;
  left: -100px;
  padding: 0 0 60px;
}

@media screen and (max-width: 1200px) {
  .p-top-slider__item-desc .c-container {
    left: 50px;
  }
}

@media screen and (max-width: 1000px) {
  .p-top-slider__item-desc .c-container {
    left: 25px;
    padding: 0 0 30px;
  }
}

@media screen and (max-width: 768px) {
  .p-top-slider__item-desc .c-container {
    left: 0;
    padding: 0 10px 20px;
  }
}

.p-top-slider__item-name {
  font-size: 3.125rem;
  line-height: 1.2;
}

@media screen and (max-width: 1000px) {
  .p-top-slider__item-name {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .p-top-slider__item-name {
    font-size: 1.4375rem;
  }
}

.p-top-slider__item-lead {
  margin-top: 45px;
  font-size: 1.125rem;
  line-height: 1.66667;
}

@media screen and (max-width: 1000px) {
  .p-top-slider__item-lead {
    margin-top: 30px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .p-top-slider__item-lead {
    margin-top: 15px;
    font-size: 0.625rem;
    line-height: 1.81818;
  }
}

.p-top-slider__item-link {
  margin-top: 40px;
  font-size: 1.5rem;
}

.p-top-slider__item-link a {
  color: inherit;
  text-decoration: underline;
}

.p-top-slider__item-link a:hover {
  text-decoration: none;
}

@media screen and (max-width: 1000px) {
  .p-top-slider__item-link {
    margin-top: 25px;
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 768px) {
  .p-top-slider__item-link {
    margin-top: 13px;
    font-size: 0.6875rem;
  }
}

.p-top-slider__item-image {
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 768px) {
  .p-top-slider__item-image {
    min-height: 117.33333vw;
  }
}

.p-top-slider .slick-dots {
  bottom: -50px;
}

.p-top-slider .slick-dots li {
  margin: 0 12px;
}

.p-top-slider .slick-dots li button:before {
  background: #000;
  border-radius: 999px;
}

@media screen and (max-width: 768px) {
  .p-top-slider .slick-dots {
    bottom: -30px;
  }
  .p-top-slider .slick-dots li {
    width: 12px;
    height: 12px;
    margin: 0 7px;
  }
  .p-top-slider .slick-dots li button,
  .p-top-slider .slick-dots li button:before {
    width: 12px;
    height: 12px;
  }
}

/* p-top-shop
---------------------------------------------- */
.p-top-shop {
  padding-top: 30px;
}

@media screen and (max-width: 768px) {
  .p-top-shop {
    padding-top: 20px;
  }
}

.p-top-shop__visual {
  position: relative;
  background: url(../imgs/pic_shop_visual.jpg) center center no-repeat;
  min-height: 880px;
}

@media screen and (max-width: 768px) {
  .p-top-shop__visual {
    min-height: 117.1875vw;
    background-size: auto 100%;
    background-image: url(../imgs/pic_shop_visual_sp.jpg);
  }
}

.p-top-maps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: 850px;
  min-height: 850px;
}

@media screen and (max-width: 768px) {
  .p-top-maps {
    max-height: none;
    min-height: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.p-top-maps__list {
  overflow: scroll;
  width: 42.1875%;
  border-top: 2px solid #f5f5f5;
  border-bottom: 2px solid #f5f5f5;
  max-height: 100%;
}

@media screen and (max-width: 1000px) {
  .p-top-maps__list {
    width: 300px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}

@media screen and (max-width: 768px) {
  .p-top-maps__list {
    overflow: visible;
    width: 100%;
    -ms-flex-negative: 1;
    flex-shrink: 1;
  }
}

.p-top-maps__list-group:not(:first-child) {
  border-top: 2px solid #e6e6e6;
}

.p-top-maps__list-group-head {
  position: relative;
  background-color: #f5f5f5;
  padding: 55px 70px 55px 70px;
  text-align: center;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-top-maps__list-group-head::before, .p-top-maps__list-group-head::after {
  content: '';
  position: absolute;
}

.p-top-maps__list-group-head::after {
  width: 35px;
  height: 35px;
  top: 0;
  bottom: 0;
  right: 35px;
  margin: auto 0;
  background: url(../imgs/icon_plus.svg) center center no-repeat;
  background-size: 100% auto;
}

.p-top-maps__list-group-head.is-opened::after {
  background-image: url(../imgs/icon_minus.svg);
}

.p-top-maps__list-group-head.is-opened::before {
  top: 0;
  left: 0;
  width: 50px;
  height: 100%;
  background-color: #e6e6e6;
}

.p-top-maps__list-group-head > span {
  display: inline-block;
  font-size: 1.375rem;
  padding: 0 1em;
}

.p-top-maps__list-group-head > span + span {
  border-left: 2px solid;
}

@media screen and (max-width: 1000px) {
  .p-top-maps__list-group-head {
    padding: 55px 35px 55px 35px;
  }
  .p-top-maps__list-group-head::after {
    right: 20px;
  }
  .p-top-maps__list-group-head.is-opened::before {
    width: 35px;
  }
}

@media screen and (max-width: 768px) {
  .p-top-maps__list-group-head {
    padding: 25px 25px 25px 25px;
  }
  .p-top-maps__list-group-head::after {
    width: 18px;
    height: 18px;
    right: 10px;
  }
  .p-top-maps__list-group-head.is-opened::before {
    width: 25px;
  }
  .p-top-maps__list-group-head > span {
    font-size: 0.6875rem;
  }
  .p-top-maps__list-group-head > span + span {
    border-left: 1px solid;
  }
}

.p-top-maps-list-item {
  padding: 40px 50px 30px 50px;
  border-top: 2px solid #e6e6e6;
  font-size: 1.5rem;
  line-height: 1.41667;
}

@media screen and (max-width: 1000px) {
  .p-top-maps-list-item {
    padding: 30px 35px 30px 35px;
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 768px) {
  .p-top-maps-list-item {
    font-size: 0.75rem;
    padding: 20px 20px 15px 25px;
  }
}

.p-top-maps-list-item__name {
  font-size: 1.75rem;
  font-weight: inherit;
}

@media screen and (max-width: 1000px) {
  .p-top-maps-list-item__name {
    font-size: 1.375rem;
  }
}

@media screen and (max-width: 768px) {
  .p-top-maps-list-item__name {
    font-size: 0.8125rem;
  }
}

.p-top-maps-list-item__address {
  padding: 30px 0 0;
}

@media screen and (max-width: 1000px) {
  .p-top-maps-list-item__address {
    padding: 15px 0 0;
  }
}

.p-top-maps-list-item__address-locate {
  margin-top: 0.5em;
}

.p-top-maps-list-item__tel {
  margin-top: 0.5em;
}

.p-top-maps__gmap {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 57.8125%;
  background-color: #f5f5f5;
}

@media screen and (max-width: 1000px) {
  .p-top-maps__gmap {
    width: auto;
  }
}

@media screen and (max-width: 768px) {
  .p-top-maps__gmap {
    width: 100%;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    padding-top: 117.1875%;
  }
}

.p-top-maps__gmap-view {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-top-maps__note {
  text-align: center;
  color: #bfbfbf;
  font-size: 1.125rem;
  line-height: 1.66667;
  margin-top: 2.1em;
  padding: 0 5px;
}

@media screen and (max-width: 768px) {
  .p-top-maps__note {
    text-align: left;
    font-size: 0.6875rem;
  }
}

/* reservation
---------------------------------------------- */
.p-top-reservation__lead {
  padding: 0 30px 60px;
  line-height: 1.875;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p-top-reservation__lead {
    padding: 0 15px 45px;
    font-size: 0.8125rem;
  }
}

.p-top-reservation__form {
  padding: 0 30px;
  max-width: 940px;
}

/* p-archive
---------------------------------------------- */
.p-archive-body {
  padding: 60px 30px 260px;
}

.p-archive-noitem {
  padding: 45px 0 60px;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.75;
}

.p-archive-noitem__head {
  font-size: 2rem;
  margin-bottom: 1em;
}

@media screen and (max-width: 768px) {
  .p-archive-body {
    padding: 30px 15px 130px;
  }
  .p-archive-noitem__head {
    font-size: 1.5rem;
  }
}

.p-archive-visual {
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 100%;
  min-height: 670px;
  max-height: 670px;
  padding: 0 30px;
}

@media screen and (max-width: 768px) {
  .p-archive-visual {
    min-height: 89.33333vw;
    padding: 0 10px;
  }
}

.p-archive-visual__heading {
  position: relative;
  z-index: 10;
  color: #fff;
  text-align: center;
  padding: 30px 0 60px;
}

@media screen and (max-width: 768px) {
  .p-archive-visual__heading {
    padding: 20px 0 20px;
  }
}

.p-archive-heading__title {
  font-weight: inherit;
}

.p-archive-heading__tax,
.p-archive-heading__name {
  display: block;
}

.p-archive-heading__tax {
  margin-bottom: 15px;
  font-size: 1rem;
}

.p-archive-heading__name {
  margin-bottom: 25px;
  font-size: 3.125rem;
  line-height: 1.2;
  font-weight: normal;
}

.p-archive-heading__lead {
  font-size: 1.125rem;
  line-height: 1.66667;
}

@media screen and (max-width: 768px) {
  .p-archive-heading__tax {
    margin-bottom: 10px;
    font-size: 0.75rem;
  }
  .p-archive-heading__name {
    margin-bottom: 15px;
    font-size: 1.5625rem;
  }
  .p-archive-heading__lead {
    font-size: 0.75rem;
    line-height: 1.66667;
  }
}

.p-archive-visual__image {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-archive-visual__image::before {
  content: '';
  speak: none;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

@media screen and (min-width: 769px) and (max-width: 1480px) {
  .p-archive-visual__image img, .p-archive-visual__image video {
    display: block;
    position: absolute;
    max-width: none;
    top: 50%;
    left: 50%;
    width: auto;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

.p-archive-list.p-archive-list--collection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.p-archive-list--collection .c-card-collection {
  max-width: 326px;
  width: 32.6%;
  margin-bottom: 50px;
}

@media screen and (min-width: 769px) {
  .p-archive-list--collection .c-card-collection:nth-child(3n+2) {
    margin-left: 1.1%;
    margin-right: 1.1%;
  }
}

@media screen and (max-width: 768px) {
  .p-archive-list.p-archive-list--collection {
    margin-bottom: 55px;
  }
  .p-archive-list--collection .c-card-collection {
    width: 47.24638%;
    margin-bottom: 20px;
  }
  .p-archive-list--collection .c-card-collection:nth-child(even) {
    margin-left: auto;
  }
}

.p-archive__link {
  margin-top: 50px;
  text-align: center;
}

/* p-single
---------------------------------------------- */
.p-single {
  padding: 40px 30px 190px;
}

.p-single__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-single__gallery,
.p-single__body {
  width: calc(50% - 20px);
}

@media screen and (max-width: 768px) {
  .p-single {
    padding: 20px 12px 100px;
  }
  .p-single__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .p-single__gallery,
  .p-single__body {
    width: 100%;
    max-width: 656px;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-single__gallery {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .p-single__gallery {
    margin-bottom: 30px;
  }
}

/* p-collection-detail
---------------------------------------------- */
.p-collection-detail-head {
  text-align: center;
  margin-bottom: 30px;
}

.p-collection-detail-head__name {
  margin-bottom: 40px;
  font-weight: inherit;
}

.p-collection-detail-head__name-main,
.p-collection-detail-head__name-sub {
  display: block;
}

.p-collection-detail-head__name-main {
  margin-bottom: 40px;
  font-size: 1.875rem;
  line-height: 1.16667;
  font-weight: normal;
}

.p-collection-detail-head__name-sub {
  font-size: 1rem;
  line-height: 1.5;
}

.p-collection-detail-head__summary,
.p-collection-detail-head__price {
  font-size: 0.75rem;
  line-height: 1.83333;
}

.p-collection-detail-head__summary {
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .p-collection-detail-head {
    margin-bottom: 20px;
  }
  .p-collection-detail-head__name {
    margin-bottom: 20px;
    font-weight: inherit;
  }
  .p-collection-detail-head__name-main {
    margin-bottom: 20px;
    font-size: 0.9375rem;
  }
  .p-collection-detail-head__name-sub {
    font-size: 0.75rem;
  }
  .p-collection-detail-head__summary,
  .p-collection-detail-head__price {
    font-size: 0.6875rem;
  }
  .p-collection-detail-head__summary {
    margin-bottom: 15px;
  }
}

.p-collection__action:not(:last-child) {
  margin-bottom: 30px;
}

.p-collection-detail__desc {
  margin-bottom: 30px;
  font-size: 0.75rem;
  line-height: 1.66667;
}

.p-collection-detail__desc p + p {
  margin-top: 1.66667em;
}

@media screen and (max-width: 768px) {
  .p-collection__action:not(:last-child) {
    margin-bottom: 25px;
  }
}

.p-collection-detail-info {
  margin-bottom: 30px;
  padding: 15px 20px;
  font-size: 0.75rem;
  line-height: 1.83333;
  background-color: #f5f5f5;
}

.p-collection-detail-info__head {
  padding-bottom: 10px;
  margin-bottom: 15px;
  text-align: center;
  font-size: inherit;
  font-weight: inherit;
  border-bottom: 1px solid #bfbfbf;
}

.p-collection-detail-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-collection-detail-info__item:not(:last-child) {
  margin-bottom: 1em;
}

.p-collection-detail-info__item > dt {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 9.5em;
  flex-basis: 9.5em;
}

@media screen and (max-width: 768px) {
  .p-collection-detail-info {
    padding: 10px 5px 15px;
    line-height: 1.36364;
  }
  .p-collection-detail-info__head {
    padding-bottom: 5px;
    margin-bottom: 10px;
  }
  .p-collection-detail-info__item {
    padding-left: .5em;
    padding-right: .5em;
  }
  .p-collection-detail-info__item:not(:last-child) {
    margin-bottom: .4em;
  }
  .p-collection-detail-info__item > dt {
    -ms-flex-preferred-size: 8em;
    flex-basis: 8em;
  }
}

.p-collection-detail-share {
  font-size: 0.75rem;
  line-height: 1.5;
}

.p-collection-detail-share:not(:last-child) {
  margin-bottom: 50px;
}

.p-collection-detail-share__head {
  padding: 1.5em 1em 1em;
  margin-bottom: 1em;
  font-size: inherit;
  font-weight: inherit;
  text-align: center;
  border-bottom: 1px solid #bfbfbf;
}

.p-collection-detail-share__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-collection-detail-share__links > li {
  margin: 0 10px;
}

@media screen and (max-width: 768px) {
  .p-collection-detail-share:not(:last-child) {
    margin-bottom: 30px;
  }
  .p-collection-detail-share__head {
    padding: .5em;
    margin-bottom: .85em;
  }
  .p-collection-detail-share__links > li {
    margin: 0 8px;
    font-size: 0;
  }
  .p-collection-detail-share__links > li img {
    width: 20px;
  }
}

.page-template-page-event-reservation .mw_wp_form.mw_wp_form_confirm {
  padding: 1em 1.5em;
  background: #efefef;
}

.page-template-page-event-reservation .mw_wp_form.mw_wp_form_confirm .c-form-email--confirm {
  display: none;
}

@media screen and (max-width: 768px) {
  .page-template-page-event-reservation .mw_wp_form.mw_wp_form_complete {
    text-align: left;
  }
}

.mw_wp_form.mw_wp_form_complete {
  text-align: center;
}
