@charset "UTF-8";
:root {
  --color-01: #cb3737;
  --color-02: #faf6f3;
  --color-03: #f7f2f5;
  --color-04: #eff8f8;
  --color-05: #f8eb87;
  --color-06: #db7777;
  --color-07: #917e14;
  --color-08: #830000;
  --color-09: #64b4ce;
  --color--bg: #fefefc;
  --color--outline: #2073e5;
  --color--accent: #2e3a65;
  --color--white: #fff;
  --color--white-70: rgba(255, 255, 255, 0.7);
  --color--text-body: #6e6e6e;
  --color--text-gray: #707070;
  --color--border: #707070;
  --color--border-sand: #e7ddae;
  --color--border-black: #303228;
  --font-size-xs: clamp(0.625rem, calc(0.3125vw + 0.5rem), 0.75rem);
  --font-size-sm: clamp(0.75rem, calc(0.3125vw + 0.625rem), 0.875rem);
  --font-size-base: clamp(0.875rem, calc(0.3125vw + 0.75rem), 1rem);
  --font-size-md: clamp(1rem, calc(0.625vw + 0.75rem), 1.25rem);
  --font-size-lg: clamp(1.125rem, calc(0.9375vw + 0.75rem), 1.5rem);
  --font-size-xl: clamp(1.25rem, calc(1.875vw + 0.5rem), 2rem);
  --font-size-xxl: clamp(1.5rem, calc(2.5vw + 0.5rem), 2.5rem);
  --font-size-xxxl: clamp(2rem, 2.5vw + 1rem, 3rem);
  --font-family-serif: "Noto Serif JP", serif;
  --font-family-alex: "Alex Brush", cursive;
  --font-size-page-title: var(--font-size-xxxl);
  --font-size-single-page-title: var(--font-size-xxl);
  --font-size-h2: var(--font-size-xl);
  --font-size-h3: var(--font-size-lg);
  --font-size-h4: var(--font-size-md);
  --font-size-h5: var(--font-size-base);
  --font-size-h6: var(--font-size-base);
  /*
   * Override Snow Monkey
   */
  --_color-text: var(--color--text-body);
  --_light-color-gray: #eaeaeb;
  --_form-control-border-color: #cdcdcd;
  --_form-control-border-color-focus: var(--color--outline);
  --smb-section--color: var(--_color-text);
  --wp--preset--color--color-01: #cb3737;
  --wp--preset--color--color-02: #faf6f3;
  ---wp--preset--color-color-03: #f7f2f5;
  --wp--preset--color--color-04: #eff8f8;
  --wp--preset--color--color-05: #f8eb87;
  --wp--preset--color--color-06: #db7777;
  --wp--preset--color--color-07: #917e14;
  --wp--preset--color--color-08: #830000;
  --wp--preset--color--color-09: #64b4ce;
}

body {
  background-color: var(--color--bg);
  font-size: var(--font-size-base);
  color: var(--color--text-body);
}

*:focus-visible {
  outline-color: var(--color--outline) !important;
  outline-width: 2px;
}

.font-serif,
.c-entry__header h1.c-entry__title {
  font-family: var(--font-family-serif);
}

.l-contents h2,
.l-contents h3,
.l-contents h4,
.l-contents h5,
.l-contents h6,
.l-footer h2,
.l-footer h3,
.l-footer h4,
.l-footer h5,
.l-footer h6 {
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
}

h1 {
  font-size: var(--font-size-single-page-title);
}
h1.c-entry__title {
  font-size: var(--font-size-page-title);
}

.smb-section__title,
h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
}

h4 {
  font-size: var(--font-size-h4);
}

h5 {
  font-size: var(--font-size-h5);
}

h6 {
  font-size: var(--font-size-h6);
}

.single-collection .c-entry__title {
  display: block;
}
@media (min-width: 640px) {
  .single-collection .c-entry__title {
    display: none;
  }
}

.collection-tittle {
  font-family: "Noto Serif JP", serif;
  font-size: var(--font-size-single-page-title);
  display: none;
}
@media (min-width: 640px) {
  .collection-tittle {
    display: block;
  }
}

main.l-contents__main {
  font-size: 1.125em;
}

a {
  color: var(--color--accent);
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover {
  text-decoration: none;
}

body:not(.single-news) .c-eyecatch {
  margin: 2rem calc(50% - 50vw);
  max-width: 100vw;
  padding: 0;
  width: 100vw;
}
body:not(.single-news) .c-eyecatch img {
  width: 100vw;
}

section h2 {
  position: relative;
}

.c-navbar__item > a {
  text-transform: uppercase;
}

.c-meta__item.c-meta__item--modified {
  display: none;
}

.c-meta__item.c-meta__item--author {
  display: none !important;
}

.c-entry-summary__figure .c-entry-summary__term {
  bottom: 9px;
  left: 8px;
  right: auto !important;
  top: auto !important;
}

.c-entry-summary__term {
  background: var(--color--bg);
  border-radius: 2em;
  color: var(--color--text-body);
}

.smb-section__title:after {
  background-color: #ffba00;
  width: 50%;
}

.smb-section__subtitle img {
  -webkit-transform: translateY(2em);
          transform: translateY(2em);
}

.smb-section-with-bgimage__bgimage {
  background-color: transparent;
}

.svg-inline--fa.fa-external-link-alt {
  color: var(--color--text-gray) !important;
  margin-left: 5px;
  width: 0.8em;
}

.post__category .smb-buttons {
  gap: 0.8rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.post__category .smb-btn {
  font-size: var(--font-size-xs);
  border-radius: 3em;
  padding: 0.5rem 1rem;
  line-height: 1;
  background: #9f8456;
  font-weight: 600;
}

@media (min-width: 786px) {
  .pc_align_right {
    text-align: right;
  }
}
.mb-0 {
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.p-breadcrumbs-wrapper {
  margin-inline: auto;
}

.smf-action {
  margin-top: 2rem;
}

#ez-toc-container {
  text-align: left;
}

.p-global-nav .c-navbar__item > a {
  font-size: var(--font-size-sm);
}

.p-header-sub-nav {
  position: absolute;
}

.c-entry__header {
  margin: 2rem auto;
}
.c-entry__header h1.c-entry__title {
  font-size: var(--font-size-page-title);
  line-height: 1.5;
  text-align: center;
  position: relative;
}
.c-entry__header .page-sub-title {
  font-size: var(--font-size-base);
  display: block;
  color: #887300;
}

.single h1.c-entry__title {
  font-size: var(--font-size-single-page-title);
  line-height: 1.5;
  padding-bottom: 1.5em;
}
.single .c-entry__header h1.c-entry__title {
  font-size: var(--font-size-single-page-title);
  text-align: left;
}

.p-footer-sticky-nav .c-navbar__item:first-child {
  background: var(--color-01);
}
.p-footer-sticky-nav .c-navbar__item:nth-child(2) {
  background: var(--color-01);
}
.p-footer-sticky-nav .c-navbar__item:nth-child(3) {
  background: var(--color-01);
}

.p-footer-sticky-nav .c-navbar__item > a {
  color: #fff;
  font-size: var(--font-size-sm);
  font-weight: 600;
  padding: 0.8rem 0;
}

#footer-shop-info h3 {
  margin-block: 0.8rem;
  line-height: 1.2;
}

#footer-shop-info p {
  margin-bottom: 1rem;
}

#footer-shop-info .wp-element-caption {
  text-align: center;
}

.l-footer--default .p-social-nav {
  padding-block: 0.5em;
}

.p-social-nav svg {
  height: 2rem;
  width: 1.75rem;
}

.l-footer-widget-area {
  background: url(../images/bg-img-footer.jpg) 0 0;
}

.c-copyright.c-copyright--inverse {
  background: var(--sub-accent-color);
  border-bottom: 10px solid #902121;
  font-size: 1rem;
  font-weight: 600;
}

.c-page-top {
  border-radius: 50%;
}

.side-link-bnr {
  position: fixed;
  right: 72px;
  bottom: 48px;
  z-index: 10;
}
.side-link-bnr a {
  background: #cb3737;
  color: #fff !important;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  padding: 1rem !important;
}
.side-link-bnr a:hover {
  background: #932323;
  text-decoration: none !important;
}

.p-section-front-page-content .smb-section__header > * + .smb-section__lede-wrapper {
  margin-top: 0;
}
.p-section-front-page-content .smb-section__lede {
  color: rgba(0, 0, 0, 0.22);
  font-family: var(--font-family-alex);
  font-size: 40px;
  font-size: var(--font-size-xl);
}

#main-slide {
  background: url(../images/img-nakanoza-kimono.png) 2% 0 no-repeat;
  background-size: contain;
}

#home-desc {
  background-size: 100% 100% !important;
  background-position: center top !important;
  background-repeat: no-repeat;
}

#plan {
  background: url(../images/img-nakanoza-furisode.png) 98% 0 no-repeat;
  background-size: contain;
  margin-top: calc(-1 * var(--wp--preset--spacing--80)) !important;
}
#plan h2 {
  margin-left: 0;
  max-width: 7em;
}

@media (min-width: 980px) {
  .tp-news .c-entry-summary__figure {
    width: 48%;
  }
}
.tp-news .c-entry-summary__content {
  display: none;
  visibility: hidden;
}
@media (min-width: 980px) {
  .tp-news ul.c-entries.c-entries--simple {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    --entries--item-width: 32%;
    gap: 1%;
  }
}

#news-blog {
  background-size: 70% 1000px !important;
  background-position: right top !important;
  background-repeat: repeat-y !important;
}

.collection-terms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}

.collection-term {
  border: 1px solid var(--accent-color);
}

.collection-tax .c-row {
  gap: 2%;
}

.taxonomy-nav {
  border: 1px solid #ccc;
  padding: 1rem 1.5rem !important;
}
.taxonomy-nav .smb-btn-wrapper.is-style-ghost .smb-btn {
  font-size: 11px;
  font-weight: 600;
  min-width: 7em;
  padding: 0.8em;
}

@media (min-width: 640px) {
  .c-row[data-md-columns="3"] > .c-row__col.taxonomy-nav {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 32%;
            flex: 0 1 32%;
    max-width: 32%;
  }
}
.c-entry-summary.c-entry-summary--collection.c-entry-summary--type-collection .c-entry-summary__figure:before,
.c-entry-summary.c-entry-summary--bridal-collection.c-entry-summary--type-bridal-collection .c-entry-summary__figure:before,
.c-entry-summary.c-entry-summary--rental-collection.c-entry-summary--type-rental-collection .c-entry-summary__figure:before {
  padding-top: 140%;
}
.c-entry-summary.c-entry-summary--collection.c-entry-summary--type-collection .c-entries-carousel .spider__slide,
.c-entry-summary.c-entry-summary--bridal-collection.c-entry-summary--type-bridal-collection .c-entries-carousel .spider__slide,
.c-entry-summary.c-entry-summary--rental-collection.c-entry-summary--type-rental-collection .c-entries-carousel .spider__slide {
  max-width: calc(50% - var(--entries--carousel--gap) / 1.5);
}
.c-entry-summary.c-entry-summary--collection.c-entry-summary--type-collection .c-entry-summary__content,
.c-entry-summary.c-entry-summary--bridal-collection.c-entry-summary--type-bridal-collection .c-entry-summary__content,
.c-entry-summary.c-entry-summary--rental-collection.c-entry-summary--type-rental-collection .c-entry-summary__content {
  display: none;
}

#collection .c-entry-summary__figure {
  border-radius: 0.8rem;
}
@media (min-width: 980px) {
  #collection .c-entries-carousel .spider__slide {
    max-width: calc(25% - var(--entries--carousel--gap) / 1.5);
  }
}
#collection .c-entries-carousel .spider__canvas {
  --entries--carousel--gap: calc( var(--_margin1) * 0.2);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.reason .smb-section__subtitle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #db7777;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Cinzel", serif;
  font-size: calc(var(--font-size-xxxl) * 1.5);
  font-weight: 400;
}
.reason .smb-section__subtitle::before {
  content: "Reason";
  display: inline-block;
  font-size: var(--font-size-xl);
}
.reason .smb-section-break-the-grid__content {
  background: #fff;
  -webkit-box-shadow: 0 0 16px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 16px 1px rgba(0, 0, 0, 0.2);
}

.smb-section.shop-img {
  padding-bottom: 1em;
}

.smb-section.shop-info-wrap {
  --smb-section--padding: 1em;
}

.smb-section.g-map {
  padding-top: 1em;
}

.shop-info {
  background: url(../images/bgimg-access.jpg);
}

.plan-content {
  padding-block: 2rem !important;
}
.plan-content .smb-section-break-the-grid__content {
  background: url(../images/bgimg-plan-01.png);
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (min-width: 1024px) {
  .plan-content .c-row__col:nth-child(1) .smb-section-break-the-grid__content {
    padding-right: 64%;
  }
}
.plan-content .c-row__col:nth-child(2) {
  z-index: 1;
}
.plan-content .smb-section__title {
  color: var(--color-06);
}
@media (min-width: 1024px) {
  .plan-content .smb-section-break-the-grid__figure {
    margin-left: 0 !important;
  }
}
.plan-content.smb-section-break-the-grid--left .smb-section-break-the-grid__content {
  background: url(../images/bgimg-plan-02.png);
}
@media (min-width: 1024px) {
  .plan-content.smb-section-break-the-grid--left .c-row__col:nth-child(1) .smb-section-break-the-grid__content {
    padding-left: 64%;
    padding-right: var(--_padding-1);
  }
}
@media (min-width: 1024px) {
  .plan-content.smb-section-break-the-grid--left .smb-section__title {
    text-align: right;
  }
}
@media (min-width: 1024px) {
  .plan-content.smb-section-break-the-grid--left .smb-section-break-the-grid__figure {
    margin-right: 0 !important;
  }
}

#tokuten-1 .is-style-border.smb-items,
#tokuten-1 .is-style-border.smb-items > .c-row > .c-row__col,
#tokuten-2 .is-style-border.smb-items,
#tokuten-2 .is-style-border.smb-items > .c-row > .c-row__col,
#tokuten .is-style-border.smb-items,
#tokuten .is-style-border.smb-items > .c-row > .c-row__col {
  --smb-items--style--border--border-color: transparent;
}
#tokuten-1 .c-row__col:not(.no-border) .smb-items__item,
#tokuten-2 .c-row__col:not(.no-border) .smb-items__item,
#tokuten .c-row__col:not(.no-border) .smb-items__item {
  background: #fff;
  border: 1px solid #ccc;
  height: 92%;
  margin-block: 2%;
}

.tokuten {
  font-weight: 600;
}

.kitsuke-class .smb-section-break-the-grid__figure {
  margin: 0 !important;
}

#wasou-course .is-style-border.smb-items,
#wasou-course .is-style-border.smb-items > .c-row > .c-row__col {
  --smb-items--style--border--border-color: transparent;
}
#wasou-course .c-row__col .smb-items__item {
  background: #fff;
  height: 92%;
  margin-block: 2%;
}

.smf-placeholder[data-name=text-raitenbi-01] .smf-text-control input#text-raitenbi-01 {
  position: relative;
  display: inline-block;
}

.smf-placeholder[data-name=text-raitenbi-01] .smf-text-control,
.smf-placeholder[data-name=text-raitenbi-02] .smf-text-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}
.smf-placeholder[data-name=text-raitenbi-01] .smf-text-control:before,
.smf-placeholder[data-name=text-raitenbi-02] .smf-text-control:before {
  content: "来店希望日： ";
  display: block;
}

.smf-placeholder[data-name=select-time-01],
.smf-placeholder[data-name=select-time-02] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}
.smf-placeholder[data-name=select-time-01]:before,
.smf-placeholder[data-name=select-time-02]:before {
  content: "来店希望時間： ";
  display: block;
}

#product-items h3 {
  margin-block: 0.5rem;
}

.has-bg-product {
  background: url(../images/bgimg-product.svg) center top;
  background-size: 100vw auto;
}

.table-wrap {
  overflow-x: scroll;
}
.table-wrap .table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
  background: white;
}
.table-wrap .table th,
.table-wrap .table td {
  border: 2px solid #e8e8e8;
  padding: 8px;
}
.table-wrap .table th {
  background: #edefff;
}
.table-wrap .table td {
  text-align: right;
}

.day-calendar {
  max-width: 100%;
}
.day-calendar table {
  margin: auto;
  width: 100%;
}

#furisode-calendar {
  width: 100%;
  display: block;
  max-width: 1200px !important;
  margin: auto;
}

#sweets .smb-items__item--free {
  border: 1px solid #ccc;
  padding: 1.5rem;
}

#booking-form {
  margin-top: 3em;
}

.privacy-policy-box {
  font-size: var(--font-size-xs);
  max-height: 210px;
  overflow: scroll;
  width: 90%;
}

/* snow monkey form */
.smf-form .smf-item .smf-text-control__control:active, .smf-form .smf-item .smf-text-control__control:focus, .smf-form .smf-item .smf-text-control__control:focus-within, .smf-form .smf-item .smf-text-control__control[aria-selected=true],
.smf-form .smf-item .smf-textarea-control__control:active,
.smf-form .smf-item .smf-textarea-control__control:focus,
.smf-form .smf-item .smf-textarea-control__control:focus-within,
.smf-form .smf-item .smf-textarea-control__control[aria-selected=true] {
  border: 2px solid var(--color--outline);
}
.smf-form .smf-item.privacy-policy .smf-checkboxes-control__control::before {
  content: "※";
  color: var(--accent-color);
  font-weight: 600;
  margin-right: 0.5em;
}
.smf-form .smf-item.privacy-policy .smf-checkbox-control__control {
  --_border-radius: 0;
  border-color: #111;
}
.smf-form .smf-item.privacy-policy .smf-checkbox-control {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.smf-form .smf-item.privacy-policy .smf-checkbox-control__label {
  margin-top: 0.33333rem;
}

.require .smf-item__label__text::before {
  content: "※";
  color: var(--accent-color);
  font-weight: 600;
  margin-right: 0.5em;
}

.privacy-policy-box {
  font-size: var(--font-size-xs);
  max-height: 210px;
  overflow: scroll;
  width: 90%;
}

.smf-action .smf-button-control__control {
  font-weight: 700;
}
.smf-action .smf-button-control__control:focus-visible {
  -webkit-filter: brightness(120%);
          filter: brightness(120%);
  outline: 2px solid var(--color--outline);
}

.smb-btn-wrapper.is-style-ghost .smb-btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color--bg) !important;
  border-color: var(--color--border);
  border-radius: 0;
  color: var(--color--text-body);
  font-size: var(--font-size-sm);
  font-weight: 700;
  height: 2.5em;
  line-height: 1;
  padding: 0 1em;
  position: relative;
}
.smb-btn-wrapper.is-style-ghost .smb-btn:hover {
  background: var(--color--white) !important;
  -webkit-box-shadow: 0 0 8px 0px #aaa;
          box-shadow: 0 0 8px 0px #aaa;
  -webkit-filter: brightness(100%);
          filter: brightness(100%);
}

.smb-btn-wrapper.is-style-arrow .smb-btn {
  background: none;
  color: #ac0000;
  text-decoration: underline;
}
.smb-btn-wrapper.is-style-arrow .smb-btn .smb-btn__label::after {
  content: "　";
}
.smb-btn-wrapper.is-style-arrow .smb-btn::after {
  content: "》";
}
.smb-btn-wrapper.is-style-arrow .smb-btn:hover {
  text-decoration: none;
}

.smb-btn-wrapper.is-style-text .smb-btn {
  color: var(--color--text-body);
  text-decoration: underline;
}
.smb-btn-wrapper.is-style-text .smb-btn:hover {
  text-decoration: none;
}

.is-style-has_icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../images/icon-heading.png) no-repeat center;
  background-size: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 120px;
  vertical-align: middle;
}

.is-style-w480 {
  border-bottom: none;
  max-width: 480px !important;
  width: 480px;
}

.is-style-theme-01 .smb-items__item__figure {
  margin-bottom: 0;
}
.is-style-theme-01 .smb-items__item__body {
  background-color: #dce8f2;
  padding: 1rem;
}

.is-style-theme-02 .smb-items__item__figure {
  margin-bottom: 0;
}
.is-style-theme-02 .smb-items__item__body {
  background-color: #fff2f2;
  padding: 1rem;
}

.is-style-jcc .c-row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.is-style-lead-text {
  font-size: var(--font-size-md);
  text-align: left;
}
@media (min-width: 640px) {
  .is-style-lead-text {
    text-align: center;
  }
}

.is-style-plan-name {
  font-size: var(--font-size-md);
  font-weight: 600;
}

.is-style-price {
  font-size: var(--font-size-xl);
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  margin-top: 0 !important;
}
.is-style-price em {
  font-style: normal;
  font-size: var(--font-size-xxxl);
}

.is-style-font-size-sm {
  font-size: var(--font-size-sm);
}

.is-style-font-size-md {
  font-size: var(--font-size-md);
}

.is-style-font-size-lg {
  font-size: var(--font-size-lg);
}

.is-style-font-size-xl {
  font-size: var(--font-size-xl);
}

.is-style-font-size-xxl {
  font-size: var(--font-size-xxl);
}

.is-style-font-size-xxxl {
  font-size: var(--font-size-xxxl);
}

.ff-serif {
  font-family: var(--font-family-serif) !important;
}

.ff-alex {
  font-family: var(--font-family-alex);
}