* {
  box-sizing: border-box;
}

html, html body {
  font-family: "Noto Serif JP", serif;
  font-size: 100%;
}

h1, h2, h3, h4, h5, h6, p, figure, figcaption, ul, ol, li, dl, dt, dd {
  font-size: initial;
  margin: 0;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
}

.body-container {
  overflow-x: hidden;
  width: 100vw;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.125rem;
  justify-content: flex-start;
  width: 100%;
}
.card-item {
  background: #fff;
  border-radius: 0.625rem;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  height: 300px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 450px) and (max-width: 768px) {
  .card-item {
    height: 250px;
    width: calc((100% - 1.125rem) / 2);
  }
}
@media screen and (min-width: 769px) {
  .card-item {
    width: calc((100% - 2.25rem) / 3);
  }
}
.card-link {
  display: block;
  height: 100%;
  text-decoration: none;
  transition: opacity 0.3s;
}
.card-link:hover {
  opacity: 0.7;
}
.card-link:hover .card-thumbnail-image {
  transform: scale(1.1);
  transition: 0.3s;
}
.card-link-text {
  bottom: 0.75rem;
  color: #585858;
  font-size: 0.875rem;
  position: absolute;
  right: 1rem;
  transition: opacity 0.3s;
  z-index: 20;
}
.card-link-text:hover {
  opacity: 0.7;
}
@media screen and (min-width: 450px) and (max-width: 768px) {
  .card-link-text {
    bottom: 0.75rem;
    right: 1rem;
  }
}
@media screen and (min-width: 769px) {
  .card-link-text {
    bottom: 1rem;
    right: 1.5rem;
  }
}
.card-thumbnail {
  background: #efefef;
  height: 40vw;
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 450px) and (max-width: 768px) {
  .card-thumbnail {
    height: 120px;
  }
}
@media screen and (min-width: 769px) {
  .card-thumbnail {
    height: 160px;
  }
}
.card-thumbnail-image {
  aspect-ratio: 2/1;
  height: 100%;
  filter: grayscale(70%);
  object-fit: cover;
  transition: 0.3s;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .card-thumbnail-image {
    aspect-ratio: 16/9;
    height: 100%;
    width: 100%;
  }
}
.card-information {
  bottom: 0;
  left: 0;
  height: auto;
  padding: 1rem;
}
@media screen and (min-width: 450px) and (max-width: 768px) {
  .card-information {
    padding: 0.875rem;
  }
}
.card-title {
  color: #585858;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.015rem;
}
@media screen and (min-width: 450px) and (max-width: 768px) {
  .card-title {
    font-size: 0.875rem;
    letter-spacing: -0.025rem;
    margin: 0 auto 0.25rem;
  }
}
.card-category {
  color: #737373;
  font-size: 0.75rem;
  font-weight: 300;
}
@media screen and (min-width: 450px) and (max-width: 768px) {
  .card-category {
    font-size: 0.6875rem;
    line-height: 1.5;
    margin: 0 auto 0.5rem;
  }
}
.card-category-item {
  display: inline-block;
}
.card-category-item::after {
  content: ",";
  display: inline-block;
  margin: 0 0.25rem 0 0;
}
.card-category-item:last-of-type::after {
  display: none;
}
.card-tag {
  background: rgb(200, 180, 0);
  border-radius: 9999px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  left: 1rem;
  letter-spacing: 0.05rem;
  padding: 0 0.75rem;
  position: absolute;
  top: 1rem;
}
.card-singlepage-container {
  background: #fff;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  margin-block-start: initial;
  min-height: calc(100vh - 16rem);
  padding: 2rem;
  width: 100%;
}
.card-singlepage-title {
  color: #585858;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.015rem;
  margin: 0 auto 2rem;
}

.profile-thumbnail-container {
  background: url(./assets/images/img-profile-thumbnail.png) no-repeat center center/cover;
  border-radius: 50%;
  height: 80px;
  margin: 0 auto 1rem;
  overflow: hidden;
  width: 80px;
}
@media screen and (min-width: 993px) {
  .profile-thumbnail-container {
    height: 160px;
    width: 160px;
  }
}
.profile-name-container {
  margin: 0 auto 1.5rem;
  text-align: center;
}
@media screen and (min-width: 993px) {
  .profile-name-container {
    margin: 0 auto 2rem;
  }
}
.profile-name-title {
  color: #585858;
  font-weight: 700;
}
.profile-name-ruby {
  display: block;
  font-family: "Montserrat";
  font-size: 0.75rem;
  font-weight: 300;
}
.profile-dialog-container {
  background: #fff;
  border-radius: 8px;
  display: none;
  left: 50%;
  padding: 1.5rem 1.5rem;
  position: fixed;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 2rem);
  z-index: 100;
}
@media screen and (min-width: 993px) {
  .profile-dialog-container {
    padding: 3.5rem 2rem;
    width: 800px;
  }
}
.profile-dialog-container.is-show {
  display: block;
}
.profile-description-container {
  margin: 0 auto 1.5rem;
}
@media screen and (min-width: 993px) {
  .profile-description-container {
    margin: 0 auto 2rem;
  }
}
.profile-description-text {
  font-size: 0.75rem;
}
@media screen and (min-width: 993px) {
  .profile-description-text {
    font-size: 0.875rem;
  }
}
.profile-skill-title {
  color: #585858;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 auto 0.875rem;
}
@media screen and (min-width: 993px) {
  .profile-skill-title {
    margin: 0 auto 1.5rem;
  }
}
.profile-skill-text {
  font-size: 0.75rem;
}
@media screen and (min-width: 993px) {
  .profile-skill-text {
    font-size: 0.875rem;
  }
}
.profile-close {
  color: #737373;
  cursor: pointer;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1;
  position: absolute;
  right: 1rem;
  top: 0.875rem;
  z-index: 100;
}
.profile-background {
  background: rgba(0, 0, 0, 0.5);
  display: none;
  height: 0;
  left: 0;
  top: 0;
  width: 0;
  z-index: 50;
}
.profile-background.is-visible {
  display: block;
  height: 100vh;
  position: fixed;
  width: 100%;
}

.header-container {
  width: 100%;
}
.header-body {
  background: #fff;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 1160px) {
  .header-inner {
    margin: 0 auto;
    position: relative;
    width: 1080px;
  }
}
.header-profile-container {
  position: absolute;
  right: 1.25rem;
  top: calc(50% - 2px);
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .header-profile-container {
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 1160px) {
  .header-profile-container {
    right: 0;
  }
}
.header-profile-open {
  color: #737373;
  cursor: pointer;
  font-size: 0.6875rem;
  text-decoration: none;
  transition: opacity 0.5s;
}
@media screen and (min-width: 768px) {
  .header-profile-open {
    font-size: 0.75rem;
  }
}
.header-profile-open:hover {
  color: #737373;
  opacity: 0.5;
}
.header-title {
  align-items: center;
  display: flex;
  font-size: 2rem;
  height: 50px;
  justify-content: flex-start;
  padding: 0 1.875rem 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .header-title {
    justify-content: center;
    padding: 0;
  }
}
.header-title-link {
  color: #323232;
  display: inline-block;
  font-size: 2rem;
  font-family: "Montserrat";
  font-weight: 700;
  text-decoration: none;
  width: 6.9375rem;
}
.header-title-link:active, .header-title-link:hover, .header-title-link:visited {
  color: #323232;
}
.header-title-subtext {
  color: #737373;
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 300;
  margin: 0 0 0 1rem;
  padding: 0;
  position: relative;
  text-align: center;
  width: fit-content;
}
.header-title-subtext:before {
  background: #d7d7d7;
  content: "";
  display: block;
  height: 1.25rem;
  left: -0.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}
.header-title-subtext.is-loading {
  left: 50%;
  margin: 0;
  position: absolute;
  top: calc(50% + 10px);
  transform: translate(-50%, -50%);
}
.header-title-subtext.is-loading:before {
  display: none;
}
.header-title-logo.is-loading {
  left: 50%;
  position: absolute;
  top: calc(50% - 3rem);
  transform: translate(-50%, -50%);
  width: 300px;
  animation: lineToFillToRight 0.5s ease;
}
.header-title-logo-svg {
  max-width: 100%;
}
.header-title-logo-svg .stroke-target {
  stroke-dasharray: 1000px;
  stroke: #323232;
  stroke-width: 1px;
  animation: lineToFill 1.5s linear;
}
@keyframes lineToFill {
  0% {
    stroke-dashoffset: 1000px;
    fill: transparent;
  }
  50% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #323232;
  }
}
@keyframes lineToFillToRight {
  0% {
    left: calc(50% - 1rem);
  }
  100% {
    left: 50%;
  }
}
.header-navigation {
  height: 21px;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 70;
}
.header-navigation.is-open {
  position: fixed;
  top: 25px;
}
.header-navigation-label {
  display: inline-block;
  position: relative;
}
.header-navigation-icon-container {
  display: block;
  height: 21px;
  position: relative;
  width: 21px;
}
.header-navigation-icon {
  backface-visibility: hidden;
  background: #323232;
  border-radius: 2px;
  height: 1px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: 0 25%;
  transition: all 0.3s;
  width: 21px;
  will-change: transform;
  -webkit-backface-visibility: hidden;
}
.header-navigation-icon.is-top {
  top: 15%;
}
.header-navigation-icon.is-middle {
  top: 50%;
}
.header-navigation-icon.is-bottom {
  top: 89%;
}
.header-navigation-check {
  cursor: pointer;
  display: block;
  height: 48px;
  left: 50%;
  margin: 0;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  z-index: 10;
}
.header-navigation-check:checked ~ .header-navigation-icon-container > .is-top {
  top: 50.125%;
  transform: rotate(45deg) translate(-50%, -50%);
}
.header-navigation-check:checked ~ .header-navigation-icon-container > .is-middle {
  opacity: 0;
}
.header-navigation-check:checked ~ .header-navigation-icon-container > .is-bottom {
  top: 50.125%;
  transform: rotate(-45deg) translate(-50%, -50%);
}

.drawer-container {
  background: #fff;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  height: 100vh;
  padding: 3.5rem 2rem 2rem;
  position: fixed;
  right: -300px;
  top: 0;
  transition: right 0.3s;
  width: 200px;
  z-index: 50;
}
.drawer-container.is-open {
  right: 0;
}
.drawer-title {
  font-family: "Montserrat";
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 1rem;
  text-align: left;
}
.drawer-background {
  background: rgba(0, 0, 0, 0.5);
  display: none;
  height: 0;
  top: 0;
  width: 0;
  z-index: 10;
}
.drawer-background.is-visible {
  display: block;
  height: 100vh;
  left: 0;
  position: fixed;
  width: 100%;
}
.drawer-list {
  list-style-type: none;
}
.drawer-list-link {
  color: rgb(34, 34, 34);
  text-decoration: none;
  transition: opacity 0.3s;
}
.drawer-list-link:hover, .drawer-list-link:visited, .drawer-list-link:active, .drawer-list-link:focus {
  color: rgb(34, 34, 34);
  text-decoration: none;
}
.drawer-list-link:hover {
  opacity: 0.7;
}

.main-body {
  background: #f8fafa;
  min-height: calc(100vh - 6.9375rem);
  padding: 3rem 0;
  width: 100%;
}
.main-body.is-archive, .main-body.is-singlepage {
  padding: 1.5rem 0 3rem;
}

.footer-containrer {
  width: 100%;
}
.footer-body {
  background: #323232;
  color: #fff;
  width: 100%;
}
.footer-information {
  padding: 1rem 0;
  text-align: center;
}
.footer-link {
  color: #fff;
  font-family: "Montserrat";
  font-size: 0.75rem;
  font-weight: 300;
  text-decoration: none;
}
.footer-link:active, .footer-link:hover, .footer-link:visited {
  color: #fff;
}

.loading-overlay {
  animation: loadFade 2s ease;
  animation-fill-mode: forwards;
  background: #F8F8F0;
  height: 100vh;
  opacity: 1;
  position: fixed;
  right: 0;
  width: 100%;
  z-index: 100;
}

@keyframes loadFade {
  0% {
    opacity: 1;
    right: 0;
  }
  40% {
    opacity: 1;
  }
  85% {
    opacity: 1;
    right: 0;
  }
  100% {
    display: none;
    opacity: 0;
    right: -100vw;
  }
}
.breadcrumb-container {
  display: block;
  font-size: 0.75rem;
  margin: 0 0 1.25rem;
  padding: 0 0 0 1rem;
  width: 100%;
}
@media screen and (min-width: 1081px) {
  .breadcrumb-container {
    padding: 0;
  }
}

.wp-block-categories-list {
  list-style-type: none;
}
.wp-block-categories-list .cat-item {
  font-size: 0.75rem;
  text-align: left;
}
.wp-block-categories-list .cat-item > a {
  color: #323232;
  text-decoration: none;
  transition: opacity 0.3s;
}
.wp-block-categories-list .cat-item > a:hover {
  opacity: 0.7;
}

body main .dialog-container {
  background: #fff;
  display: none;
  left: 50%;
  margin: 0;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
}
body main .dialog-container.is-open {
  animation: fadeDialog 0.5s cubic-bezier(0.5, 1, 0.75, 1) 1 forwards;
  display: block;
}
body main .dialog-background {
  background: rgba(0, 0, 0, 0.5);
  display: none;
  height: 100%;
  left: 0;
  margin: 0;
  max-width: 100%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
body main .dialog-background.is-open {
  animation: fadeDialog 0.5s cubic-bezier(0.5, 1, 0.75, 1) 1 forwards;
  display: block;
}
body main .dialog-background.is-close {
  animation: fadeOutDialog 0.5s linear forwards;
  display: block;
  opacity: 1;
}

@keyframes fadeDialog {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOutDialog {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    z-index: -10;
  }
}
.swiper-parent {
  background: #fff;
  border-radius: 0.5rem;
  display: block;
  left: -200vw;
  margin: 0;
  overflow: hidden;
  position: absolute;
  top: 50%;
  width: calc(100% - 2rem);
  z-index: 110;
}
@media screen and (min-width: 769px) {
  .swiper-parent {
    width: 1000px;
  }
}
.swiper-parent.is-open {
  animation: fadeDialog 0.5s cubic-bezier(0.5, 1, 0.75, 1) 1 forwards;
  display: block;
  left: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
}
.swiper-parent.is-close {
  animation: fadeOutDialog 0.5s linear forwards;
  left: -200vw;
}
.swiper-slide {
  padding: 2rem;
  width: 1000px;
}
.swiper-thumbnail-container {
  margin: 0 auto 1rem;
  width: 100%;
}
@media screen and (min-width: 993px) {
  .swiper-thumbnail-container {
    width: 800px;
  }
}
.swiper-thumbnail-item {
  display: block;
  width: 100%;
}
.swiper-description {
  font-size: 0.875rem;
  margin: 0 auto 1rem;
  width: 100%;
}
@media screen and (min-width: 993px) {
  .swiper-description {
    width: 800px;
  }
}
.swiper-movie {
  border: 1px solid #c8c8c8;
  display: block;
  height: 360px;
  margin: 0 auto;
  width: 80%;
}
.swiper-close {
  color: #737373;
  cursor: pointer;
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1;
  position: absolute;
  right: 1rem;
  top: 0.875rem;
  z-index: 100;
}

body .swiper-button-prev,
body .swiper-button-next {
  height: 24px;
  width: 24px;
}
body .swiper-button-prev::before, body .swiper-button-prev::after,
body .swiper-button-next::before,
body .swiper-button-next::after {
  font-size: 1.5rem;
}

.introduction-thumbnail-container {
  width: 100%;
}
.introduction-thumbnail-item {
  display: block;
  width: 100%;
}
.introduction-dialog-open {
  cursor: pointer;
  display: block;
  width: fit-content;
}
.introduction-dialog-open-anker {
  display: inline-block;
  font-size: 0.875rem;
  margin: 1rem auto 0;
}
.introduction-body {
  margin: 2rem auto 0;
}
.introduction-text {
  font-size: 0.875rem;
}
.introduction-title-middle {
  color: #585858;
  font-size: 1.25rem;
  margin: 0 0 1.5rem;
}
.introduction-title-sub {
  color: #585858;
  font-size: 1rem;
  margin: 0 0 0.5rem;
}
.introduction-list {
  list-style-type: none;
  margin: 0 0 2rem;
}
.introduction-list-item {
  display: block;
  font-size: 0.75rem;
}
.introduction-notice {
  color: #323232;
  font-size: 0.625rem;
}
.introduction-paragraph-others {
  margin: 0 0 2rem;
}

.section-container {
  margin: 0 auto 2.5rem;
}
.section-container:last-of-type {
  margin: 0 auto;
}
.section-title {
  color: #585858;
  font-size: 1.25rem;
  margin: 0 auto 1.5rem;
  padding: 0 0 0 0.75rem;
  position: relative;
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  .section-title {
    font-size: 1.125rem;
  }
}
.section-title::before {
  background: #d7d7d7;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
}
@media screen and (min-width: 768px) {
  .section-title::before {
    height: 100%;
  }
}
@media screen and (min-width: 993px) {
  .section-title::before {
    height: 100%;
  }
}
.section-title-subtext {
  color: #737373;
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 300;
  margin: 0 0 0 0;
  padding: 0;
  position: relative;
  text-align: left;
  transform: translateY(-25%);
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .section-title-subtext {
    font-size: 0.6875rem;
  }
}
.section-title-subtext.is-first {
  margin: 0.75rem 0 0 0;
}
@media screen and (min-width: 501px) {
  .section-title-subtext.is-first {
    margin: 0.75rem 0 0 1.5rem;
  }
}
@media screen and (min-width: 541px) {
  .section-title-subtext.is-first {
    margin: 0 0 0 1.5rem;
  }
}
.section-title-subtext.is-second {
  margin: 0.75rem 0 0 0;
}
@media screen and (min-width: 859px) {
  .section-title-subtext.is-second {
    margin: 0 0 0 1.5rem;
    top: 0.5rem;
  }
}
@media screen and (min-width: 993px) {
  .section-title-subtext.is-second {
    margin: 0 0 0 1.5rem;
    top: initial;
  }
}
@media screen and (max-width: 767px) {
  .section-title-subtext.is-second::before {
    display: none;
  }
}
.section-title-subtext.is-third {
  margin: 0.75rem 0 0 0;
}
@media screen and (min-width: 501px) {
  .section-title-subtext.is-third {
    margin: 0 0 0 1.5rem;
  }
}
.section-title-subtext::before {
  background: #d7d7d7;
  content: "";
  display: none;
  height: 0.5rem;
  left: -0.75rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  width: 1px;
}
@media screen and (min-width: 501px) {
  .section-title-subtext::before {
    display: block;
  }
}

@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url("https://pastures.tedate.jp/assets/fonts/Montserrat-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url("https://pastures.tedate.jp/assets/fonts/Montserrat-Bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
  src: url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500&family=WindSong:wght@400;500&display=swap");
}
.section-heading {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.section-heading.is-philosophy {
  margin: 0 auto 5rem;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}
.section-heading.is-salon {
  font-size: 1.75rem;
}
.section-subheading {
  display: block;
  font-size: 0.875rem;
  font-weight: 300;
  margin: 0.75rem auto 0;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .section-subheading {
    font-size: 1rem;
  }
}
.section-container {
  font-size: 0.875rem;
  padding: 2.5rem 1rem;
}
.section-container.is-philosophy {
  background-image: url(/wp-content/themes/OwnHybrid/assets/img/img-bg-philosophy-sp.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  font-size: 0.875rem;
  height: 100%;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .section-container.is-philosophy {
    background-image: url(/wp-content/themes/OwnHybrid/assets/img/img-bg-philosophy-pc.png);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
.section-container.is-location {
  padding: 2.5rem 0;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .section-container.is-location {
    padding: 0;
  }
}
.section-container.is-prospect {
  padding: 2.5rem 0;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .section-container.is-prospect {
    padding: 0;
  }
}
.section-container.is-reception {
  background: #F8F8F0;
  padding: 2.5rem 0;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .section-container.is-reception {
    padding: 0;
  }
}
.section-container.is-attendance {
  background: #F8F8F0;
}

.philosophy-text {
  font-size: 0.75rem;
  letter-spacing: -0.05rem;
  line-height: 1.9;
  margin: 0 auto 2.5rem;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 992px) {
  .philosophy-text {
    font-size: 1rem;
  }
}

body .is-break-sp,
body .is-show-sp {
  display: inline-block;
}
@media screen and (min-width: 992px) {
  body .is-break-sp,
  body .is-show-sp {
    display: none;
  }
}

.is-show-pc {
  display: none;
}
@media screen and (min-width: 992px) {
  .is-show-pc {
    display: block;
  }
}

@media screen and (min-width: 992px) {
  .location-container {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
}
.location-figure {
  aspect-ratio: 16/9;
  height: auto;
  margin: 0 auto 2.5rem;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .location-figure {
    margin: 0 auto;
    width: 280px;
  }
}
@media screen and (min-width: 992px) {
  .location-content {
    width: calc(100% - 280px);
  }
}
.location-text {
  line-height: 1.9;
  margin: 0 auto 1.5rem;
}
.location-text:last-of-type {
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .location-text {
    display: block;
    font-size: 1rem;
    text-align: center;
    width: fit-content;
  }
}

@media screen and (min-width: 992px) {
  .reception-container {
    align-items: center;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
.reception-figure {
  aspect-ratio: 16/9;
  height: auto;
  filter: grayscale(80%);
  margin: 0 auto 2.5rem;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .reception-figure {
    margin: 0 auto;
    width: 280px;
  }
}
@media screen and (min-width: 992px) {
  .reception-content {
    width: calc(100% - 280px);
  }
}
.reception-text {
  line-height: 1.9;
  margin: 0 auto 1.5rem;
}
.reception-text:last-of-type {
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .reception-text {
    display: block;
    font-size: 1rem;
    text-align: center;
    width: fit-content;
  }
}

@media screen and (min-width: 992px) {
  .prospect-container {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
}
.prospect-figure {
  aspect-ratio: 16/9;
  height: auto;
  filter: grayscale(80%);
  margin: 0 auto 2.5rem;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .prospect-figure {
    margin: 0 auto;
    width: 280px;
  }
}
@media screen and (min-width: 992px) {
  .prospect-content {
    width: calc(100% - 280px);
  }
}
.prospect-text {
  letter-spacing: -0.015rem;
  line-height: 1.9;
  margin: 0 auto 1.5rem;
  padding: 0 1rem;
}
@media screen and (min-width: 992px) {
  .prospect-text {
    display: block;
    font-size: 1rem;
    text-align: center;
    width: 600px;
  }
}
.prospect-text:last-of-type {
  margin: 0 auto 0.75rem;
}
.prospect-notice {
  display: block;
  font-size: 0.75rem;
  letter-spacing: -0.015rem;
  margin: 0 1rem;
  text-align: left;
  text-indent: -0.625rem;
  padding: 0 0 0 0.625rem;
}
@media screen and (min-width: 992px) {
  .prospect-notice {
    margin: 0 auto;
    width: 370px;
  }
}

.place-container {
  background: #e1e1e1;
  filter: grayscale(100%);
}
@media screen and (min-width: 992px) {
  .place-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1rem;
    margin: 0 auto;
    width: 900px;
  }
}
.place-text {
  margin: 0 auto 2rem;
  text-align: center;
}
.place-card {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  margin: 0 auto 2.5rem;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .place-card {
    max-height: 300px;
    width: calc(33.33333% - 1rem);
  }
}
.place-card-bottom {
  align-items: center;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  height: 150px;
  justify-content: center;
  padding: 0 2rem 0 0;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .place-card-bottom {
    max-height: 120px;
    padding: 0 1rem 0 0;
  }
}
.place-figure {
  height: 250px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .place-figure {
    max-height: 180px;
  }
}
.place-name {
  display: block;
  font-size: 1.25rem;
  text-align: center;
  width: 100%;
}
.place-series {
  display: block;
  font-size: 0.875rem;
  font-weight: 300;
  margin: 0.75rem auto 0;
}
.place-link {
  border: 1px solid #323232;
  border-radius: 8px;
  color: #323232;
  cursor: pointer;
  display: block;
  margin: 5rem auto 2.75rem;
  padding: 1rem 0;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s;
  width: 280px;
}
.place-link:hover, .place-link:active, .place-link:visited {
  color: #323232;
}
.place-link:hover {
  opacity: 0.7;
}
.place-link-bottom {
  display: none;
}
@media screen and (min-width: 992px) {
  .place-link-bottom {
    cursor: pointer;
    display: block;
    font-size: 1.25rem;
    font-weight: 300;
    text-align: center;
    text-decoration: none;
  }
}
.place-accordion-content {
  display: none;
}
@media screen and (min-width: 992px) {
  .place-accordion-content {
    display: block;
  }
}
.place-accordion-trigger {
  cursor: pointer;
  display: block;
  font-size: 1.25rem;
  font-weight: 300;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .place-accordion-trigger {
    display: none;
  }
}

.header-container {
  align-items: center;
  background: rgba(255, 255, 255, 0.975);
  border-bottom: 1px solid #E4CC32;
  border-top: 1px solid #E4CC32;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  display: flex;
  height: 50px;
  justify-content: space-between;
  left: 0;
  padding: 0 1rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
.header-container::after {
  background: #E4CC32;
  bottom: 2px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 100vw;
}
@media screen and (min-width: 992px) {
  .header-container {
    background: rgba(255, 255, 255, 0.975);
    border-bottom: 1px solid #E4CC32;
    border-top: none;
    height: 56px;
    left: 0;
    position: absolute;
    top: 0;
  }
  .header-container::after {
    background: #E4CC32;
    bottom: 2px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 100vw;
  }
}
.header-catchcopy {
  align-items: center;
  display: flex;
  font-size: 0.625rem;
  height: 100%;
}
.header-catchcopy-text {
  font-weight: 300;
}
.header-logo {
  color: #E4CC32;
  font-family: "WindSong", cursive;
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0 1.25rem 0 0;
}
@media screen and (min-width: 992px) {
  .header-logo {
    font-size: 1.5rem;
    margin: 0 3rem 0 1rem;
    position: relative;
    top: -2px;
  }
}
.header-link {
  color: #E4CC32;
  text-decoration: none;
}
.header-link:hover, .header-link:active, .header-link:visited {
  color: #E4CC32;
}
.header-menu-trigger {
  cursor: pointer;
  display: block;
  line-height: 0.875;
  text-align: center;
}
.header-menu-trigger-icon {
  margin: 0 auto;
  left: 50%;
  position: absolute;
  top: 45%;
  transform: translate(-50%, -50%);
  width: 0.5rem;
}
.header-menu-trigger-text {
  font-size: 0.625rem;
  font-weight: 300;
}
.header-menu-list {
  display: none;
}

.footer-container {
  background: #191919;
  color: #D7C300;
  padding: 80px 1rem 1rem;
  position: relative;
  text-align: center;
}
.footer-trademark {
  height: auto;
  margin: 0 auto 80px;
  width: 300px;
}
.footer-trademark-image {
  height: 100%;
  width: 100%;
}
.footer-name {
  display: block;
  font-family: "WindSong", cursive;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (min-width: 992px) {
  .footer-name {
    font-size: 1.5rem;
  }
}
.footer-description {
  color: #fff;
  font-size: 0.6875rem;
}
.footer-trademark-image {
  margin: 0 auto 1.5rem auto;
  width: 120px;
  padding: 0 0 0 1rem;
}
.footer-copyright {
  font-size: 0.75rem;
}
.footer-back-to-top {
  bottom: 3rem;
  cursor: pointer;
  font-size: 0.75rem;
  position: absolute;
  right: 1.25rem;
  z-index: 10;
}
@media screen and (min-width: 992px) {
  .footer-back-to-top {
    bottom: 1rem;
    right: 5.5rem;
  }
}

.firstview-container {
  height: calc(100vh - 50px);
  position: relative;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .firstview-container {
    height: 100vh;
  }
}
.firstview-video-container {
  filter: grayscale(78%);
  height: calc(100vh - 50px);
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .firstview-video-container {
    height: 100vh;
  }
}
.firstview-video-item {
  height: 100vh;
  object-fit: cover;
  width: 100%;
}
.firstview-trademark {
  color: #fff;
  left: 50%;
  position: absolute;
  text-align: center;
  top: 38%;
  transform: translate(-50%, -50%);
  width: 100%;
}
@media screen and (min-width: 992px) {
  .firstview-trademark {
    top: calc(50px + 12rem);
    transform: translateX(-50%);
  }
}
.firstview-trademark-image {
  margin: 0 auto 1.5rem auto;
  width: 120px;
  padding: 0 0 0 1rem;
}
.firstview-name {
  display: block;
  font-family: "WindSong", cursive;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (min-width: 992px) {
  .firstview-name {
    font-size: 1.5rem;
  }
}
.firstview-description {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 0.6875rem;
  font-weight: 300;
}
.firstview-catchcopy {
  bottom: 3.5rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 0.9875rem;
  font-weight: 700;
  left: 50%;
  letter-spacing: -0.0875rem;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
}
@media screen and (min-width: 992px) {
  .firstview-catchcopy {
    display: inline-block;
    font-size: 1.5rem;
    left: calc(50% + 0.75rem);
    width: fit-content;
  }
}

.attendance-container {
  margin: 0 auto;
  width: calc(100% - 2rem);
}
@media screen and (min-width: 992px) {
  .attendance-container {
    width: fit-content;
  }
}
.attendance-container .wpcf7-form {
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .attendance-container .wpcf7-form {
    width: 560px;
  }
}
.attendance-container .wpcf7-text {
  border: 1px solid #e1e1e1;
  border-radius: 0.5rem;
  height: 38px;
  padding: 0.5rem;
  width: 100%;
}
.attendance-container .wpcf7-textarea {
  border: 1px solid #e1e1e1;
  border-radius: 0.5rem;
  resize: none;
  padding: 0.5rem;
  width: 100%;
}
.attendance-container .wpcf7-submit {
  background: #1a1a1a;
  border: none;
  border-radius: 0.5rem;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: block;
  height: 56px;
  margin: 1.25rem auto 0;
  max-width: 480px;
  transition: opacity 0.3s;
  width: calc(100% - 2rem);
}
.attendance-container .wpcf7-submit:hover {
  opacity: 0.7;
}
.attendance-container .wpcf7-list-item input[type=radio] {
  display: none;
}
.attendance-container .wpcf7-list-item input[type=radio] + .wpcf7-list-item-label {
  margin: 0 1.5rem 0 0;
  position: relative;
}
.attendance-container .wpcf7-list-item input[type=radio] + .wpcf7-list-item-label::before {
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid #e1e1e1;
  content: "";
  display: inline-block;
  height: 1rem;
  left: -1.75rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  z-index: 10;
}
.attendance-container .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::after {
  background: #1a1a1a;
  border-radius: 0.5rem;
  border: 1px solid #e1e1e1;
  content: "";
  display: inline-block;
  height: 0.5rem;
  left: -1.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.5rem;
  z-index: 20;
}
.attendance-container.is-answered {
  text-align: center;
}
.attendance-label {
  display: block;
  margin: 0 auto 2rem;
}
.attendance-radio-container {
  display: block;
  margin: 0 auto 2rem;
}
.attendance-radio-container .wpcf7-form-control-wrap {
  display: block;
  text-align: center;
}
.attendance-button-container {
  position: relative;
  text-align: center;
  width: 100%;
}
.attendance-button-container .wpcf7-spinner {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.salon-container {
  margin: 5rem auto 3.5rem;
  text-align: center;
}
.salon-name {
  font-size: 1.25rem;
  font-weight: 700;
}
.salon-link {
  color: #323232;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 300;
  text-decoration: none;
}
.salon-link:hover, .salon-link:active, .salon-link:visited {
  color: #323232;
  cursor: pointer;
  text-decoration: none;
}

.grand-row-container {
  display: none;
}
@media screen and (min-width: 992px) {
  .grand-row-container {
    background: rgba(255, 255, 255, 0.5);
    display: block;
    height: 100%;
    left: initial;
    padding: 100px 0 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 66px;
    z-index: 50;
  }
}

@media screen and (min-width: 992px) {
  .main-container {
    width: 0 66px 0 0;
  }
}

.recaptcha-notice {
  font-size: 0.625rem;
  margin: 2rem auto;
  width: fit-content;
}

.grecaptcha-badge {
  visibility: hidden;
}

.fadein {
  bottom: -2rem;
  opacity: 0;
  position: relative;
  transition: opacity 0.8s, bottom 0.8s;
}
.fadein .place-container {
  opacity: 0.75;
}
.fadein.is-active {
  bottom: 0;
  opacity: 1;
}

.is-break-md {
  display: none;
}
@media screen and (min-width: 500px) and (max-width: 992px) {
  .is-break-md {
    display: block;
  }
}
@media screen and (min-width: 993px) {
  .is-break-md {
    display: none;
  }
}

.utility-text-875 {
  font-size: 0.875rem;
}
.utility-text-spacing {
  margin: 0 -0.75rem 0 0;
}

.contents-container {
  padding: 5.75rem 0 2rem;
}
.contents-heading {
  font-weight: 700;
  margin: 0 0 1rem;
}

body .entrance-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1rem;
  justify-content: space-between;
  width: 100%;
}
body .entrance-heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
}
body .entrance-item {
  width: calc(50% - 1rem);
}
body .entrance-thumbnail {
  margin: 1rem 0 0;
  width: 100%;
}

.map-container {
  border: 1px solid #e1e1e1;
  margin: 1rem auto 2rem;
}

.is-blossom {
  color: pink;
}

.is-burgeoning {
  color: greenyellow;
}

.is-brilliant {
  color: gold;
}