@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Montserrat", "Zen Kaku Gothic New", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .header {
    height: 80px;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  height: inherit;
  padding-left: 22px;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    padding: 0;
  }
}

.header__name {
  margin-right: auto;
  width: 100px;
}
@media screen and (max-width: 1024px) {
  .header__name {
    padding-left: 25px;
  }
}

@media screen and (max-width: 1024px) {
  .header__logo {
    width: 132px;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 66px;
  }
}

.header__nav {
  height: inherit;
}

.header__items {
  display: flex;
  align-items: center;
  height: inherit;
}

.header__item {
  height: inherit;
}

.header__item:not(:first-child) {
  margin-left: 70px;
}
@media screen and (max-width: 1024px) {
  .header__item:not(:first-child) {
    margin-left: 40px;
  }
}

.header__link {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
  color: #141414;
  transition: 0.3s transform;
}
.header__link:hover {
  transform: scale(1.2);
}

.header__link.header__link--contact {
  padding: 0 24px;
  color: #ffffff;
  background-color: #ED3887;
  transition: 0.3s background-color, 0.3s box-shadow, 0.3s opacity, 0.3s transform;
}
.header__link.header__link--contact:hover {
  transform: scale(1);
  background-color: #ED3887;
  box-shadow: none;
  opacity: 0.6;
}

.hamburger {
  position: fixed;
  z-index: 9999;
  top: 30px;
  right: 15px;
  width: 25px;
  height: 16px;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  transition: 0.3s transform, 0.3s background-color;
  background-color: #141414;
}

.hamburger.is-active span {
  background-color: #141414;
}

.hamburger.is-active {
  top: 25px;
  right: 15px;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
  transition: 0.3s opacity;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.is-active span:nth-child(1) {
  top: 15px;
  transform: rotate(-45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 15px;
  transform: rotate(45deg);
}

.drawer-menu {
  position: absolute;
  z-index: 5000;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background-color: #FEF9FB;
}

.drawer-menu__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: inherit;
}

.drawer-menu__items {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.drawer-menu__item {
  display: inline-block;
}

.drawer-menu__item:not(:first-child) {
  margin-top: 25px;
}

.drawer-menu__link {
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  width: 200px;
  padding-bottom: 25px;
  text-align: center;
  letter-spacing: 0.05em;
  color: #141414;
  border-bottom: 1px solid #868686;
}

.drawer-menu__link.drawer-menu__link--contact {
  padding: 14px;
  transition: 0.3s background-color;
  border: none;
  background-color: #ED3887;
  transition: 0.3s background-color, 0.3s box-shadow, 0.3s opacity;
}
.drawer-menu__link.drawer-menu__link--contact:hover {
  background-color: #ED3887;
  box-shadow: none;
  opacity: 0.6;
}

.mv {
  width: 100%;
  height: 100vh;
}

.mv__inner {
  position: relative;
  width: 100%;
  height: inherit;
}

.mv__slider,
.mv__swiper-slide picture,
.mv__swiper-slide img {
  height: inherit;
}

.mv__swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
}

.mv__title-wrap {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  color: #141414;
}

.mv__title {
  font-size: 60px;
  margin-top: 20px;
  padding-left: 60%;
  color: #141414;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 1024px) {
  .mv__title {
    padding-left: 0;
    text-align: center;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) {
  .mv__title {
    font-size: 30px;
    padding-left: 0;
    line-height: 1.875;
    text-align: center;
  }
}

.mv__title-large,
.mv__title-strong {
  font-size: 60px;
  line-height: 1.875;
}
@media screen and (max-width: 1024px) {
  .mv__title-large,
.mv__title-strong {
    font-size: 38px;
    line-height: 1.875;
  }
}

.feature {
  padding: 100px 0;
  background-color: #FEF9FB;
}
@media screen and (max-width: 767px) {
  .feature {
    padding: 50px 0;
  }
}

.feature__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .feature__inner {
    padding: 0 10px;
  }
}

.feature__container {
  padding-top: 40px;
  display: flex;
  align-items: flex-start;
}

.feature__body {
  margin: 0 auto;
}

.feature__sub-title {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .feature__sub-title {
    margin: 26px auto 0;
    width: 260px;
  }
}
@media screen and (max-width: 450px) {
  .feature__sub-title {
    margin: 26px auto 0;
  }
}

.feature__text {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .feature__text {
    margin-top: 40px;
  }
}
@media screen and (max-width: 450px) {
  .feature__text {
    margin-top: 26px;
  }
}

.feature__img {
  width: 35%;
  margin-left: 80px;
}
@media screen and (max-width: 1024px) {
  .feature__img {
    margin-top: 30px;
  }
}

.service {
  padding: 105px 0 100px;
  background-color: #F7F3E9;
}
@media screen and (max-width: 767px) {
  .service {
    padding: 50px 0;
  }
}

.service__container {
  margin-top: 50px;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  -moz-column-gap: 50px;
       column-gap: 50px;
}
@media screen and (max-width: 1024px) {
  .service__container {
    -moz-column-gap: 25px;
         column-gap: 25px;
  }
}
@media screen and (max-width: 767px) {
  .service__container {
    margin-top: 40px;
    padding: 0 13px;
    row-gap: 30px;
  }
}

.service__item {
  position: relative;
}

.service__img {
  width: inherit;
  height: auto;
  aspect-ratio: 630/377;
  box-shadow: 2px 2px 4px rgba(134, 134, 134, 0.16);
}

.service__name {
  z-index: 2;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 70%;
  text-align: center;
}

.service__text {
  border-bottom: solid 5px white;
}

.shop {
  padding: 105px 0 100px;
  background-color: #FEF9FB;
}
@media screen and (max-width: 767px) {
  .shop {
    padding: 50px 0;
  }
}

.shop__lists {
  margin-top: 50px;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(320px, 2fr));
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media screen and (max-width: 1024px) {
  .shop__lists {
    margin-top: 40px;
    padding: 0 13px;
    row-gap: 30px;
  }
}

.shop__list {
  background-color: #ffffff;
  box-shadow: 2px 2px 4px rgba(134, 134, 134, 0.16);
}

.list__inner {
  padding: 0 20px;
}

.list__title {
  border-bottom: solid 3px #ed3887;
  text-align: center;
  padding: 10px 0;
}

.list__body {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 1440px) {
  .list__body {
    flex-direction: column;
  }
}

.list__img {
  width: 247px;
  height: auto;
  aspect-ratio: 13/10;
  border-radius: 5px;
}
@media screen and (max-width: 1440px) {
  .list__img {
    width: 100%;
    max-width: 318px;
    display: block;
    margin: 0 auto;
  }
}

.list__detail {
  margin: 0 auto;
}

.detail__parts {
  display: flex;
  align-items: flex-start;
}

.detail__text {
  min-width: 80px;
  align-items: flex-start;
}

.detail__text a {
  color: #141414;
}

.list__buttons {
  display: flex;
  justify-content: center;
  -moz-column-gap: 50px;
       column-gap: 50px;
  padding: 30px 0 10px;
}
@media screen and (max-width: 1440px) {
  .list__buttons {
    flex-direction: column;
    justify-content: center;
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 20px;
  }
}
@media screen and (max-width: 450px) {
  .list__buttons {
    text-align: center;
  }
}

.list__button {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .list__button {
    margin: 0 auto;
  }
}

.list__link {
  text-align: right;
  padding-right: 40px;
  padding-bottom: 20px;
}
@media screen and (max-width: 1440px) {
  .list__link {
    text-align: center;
    padding-right: 0;
  }
}

.list__link a {
  color: #ED3887;
}

.list__link.list__link--shop {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .list__link.list__link--shop {
    text-align: center;
  }
}

.news {
  padding: 105px 0 166px;
  background-color: #F7F3E9;
}
@media screen and (max-width: 767px) {
  .news {
    padding: 50px 0;
  }
}

.news--pink {
  background-color: #FEF9FB;
  min-height: calc(100vh - 250px - 61.35px - 136px);
}

.news--beige {
  background-color: #F7F3E9;
}

.card {
  overflow: hidden;
}

.news__cards {
  display: grid;
  margin-top: 50px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  -moz-column-gap: 35px;
       column-gap: 35px;
  row-gap: 50px;
}
@media screen and (max-width: 767px) {
  .news__cards {
    margin-top: 40px;
    padding: 0 13px;
    row-gap: 30px;
  }
}

.news__card {
  max-width: 440px;
  margin: 0 auto;
  width: inherit;
  height: auto;
}

.card__img {
  box-shadow: 2px 2px 4px rgba(134, 134, 134, 0.16);
  aspect-ratio: 8/5;
  overflow: hidden;
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.card__body {
  padding: 16px;
}

.card__date {
  font-family: "Montserrat", "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #ED3887;
}

.card__text {
  font-family: "Montserrat", "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  line-height: 1.875;
  font-weight: 500;
  margin-top: 12px;
  color: #141414;
  word-wrap: break-word;
}
@media screen and (max-width: 767px) {
  .card__text {
    width: 100%;
  }
}

.news__more {
  margin-top: 80px;
  text-align: center;
}

.more__text {
  display: inline-block;
  padding: 0 20px;
  color: #ED3887;
  border-bottom: solid 3px #ed3887;
  transition: 0.3s background-color, 0.3s box-shadow, 0.3s opacity, 0.3s transform;
}
.more__text::after {
  content: "▶";
}
.more__text:hover {
  transform: scale(1.2);
  background-color: transparent;
  box-shadow: none;
  opacity: 0.6;
}

.banner {
  padding: 55px 0;
  background-color: #FEF9FB;
}
@media screen and (max-width: 767px) {
  .banner {
    padding: 30px 0;
  }
}

.banner__body {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.banner__body:nth-child(2) {
  margin-top: 30px;
}

.pagination {
  display: flex;
  justify-content: center;
  padding: 100px;
}

.nav-links {
  display: flex;
}

.page-numbers {
  display: inline-block;
  margin-right: 10px;
  padding: 10px 20px;
  color: #868686;
  border-radius: 3px;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .page-numbers {
    padding: 5px 10px;
  }
}

.page-numbers.current {
  padding: 10px 20px;
  background-color: #ED3887;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .page-numbers.current {
    padding: 5px 10px;
  }
}

.page-numbers.prev,
.page-numbers.next {
  background: transparent;
  box-shadow: none;
  border: none;
  color: #141414;
}

.page-numbers.dots {
  background: transparent;
  box-shadow: none;
  border: none;
  color: #141414;
}

.post {
  padding: 205px 0 100px;
  background-color: #FEF9FB;
}
@media screen and (max-width: 767px) {
  .post {
    padding: 150px 0 100px;
  }
}

.post__inner {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  padding: 0 25px;
}

.post__body {
  min-height: calc(100vh - 205px - 100px - 136px);
}
@media screen and (max-width: 767px) {
  .post__body {
    min-height: calc(100vh - 150px - 100px - 36px);
  }
}

.post__title {
  word-wrap: break-word;
  padding: 0 50px;
  color: #141414;
}

.post__date {
  word-wrap: break-word;
  padding: 0 50px;
}

.post__thumbnail {
  width: 80%;
  height: auto;
  margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
  .post__thumbnail {
    width: 100%;
  }
}

.post__content {
  padding: 50px;
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media screen and (max-width: 767px) {
  .post__content {
    padding: 15px 0;
  }
}

.post__content h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 32px;
  padding: 8px 16px;
  color: #141414;
  border-top: 2px solid #ed3887;
  border-bottom: 2px solid #ed3887;
}

.post__content h2 {
  font-size: 24px;
  margin-bottom: 32px;
  padding: 8px 16px;
  color: #ffffff;
  background-color: #ed3887;
}

.post__content h3 {
  font-size: 20px;
  margin-bottom: 32px;
  padding: 0 16px 8px;
  border-bottom: 2px solid #ed3887;
  color: #141414;
}

.post__content h4,
.post__content h5,
.post__content h6 {
  font-size: 16px;
  margin-bottom: 32px;
  padding: 0 16px 8px;
  border-bottom: 2px solid #ed3887;
  color: #141414;
}

.post__content p {
  margin-bottom: 24px;
  color: #141414;
}

.post__content a {
  display: block;
  text-decoration: underline;
  color: #ED3887;
}

.post__content ul,
.post__content ol {
  margin-bottom: 24px;
  color: #141414;
}

.post__content li {
  position: relative;
  padding-left: 1em;
  color: #141414;
}

.post__content li::after {
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 4px;
  background-color: #ED3887;
}

.post__content li + li {
  margin-top: 4px;
  color: #141414;
}

.post__content img {
  max-width: 100%;
  width: 100%;
  width: auto;
  height: auto;
  display: block;
  margin-bottom: 24px;
}

.post__content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.post__content th,
.post__content td {
  padding: 12px 16px;
  border: 2px solid #ed3887;
}

.post__content th {
  background-color: #ed3887;
  color: #ffffff;
  text-align: left;
}
.post__content th a {
  color: #ffffff;
}

.post__content td {
  background-color: #FEF9FB;
}

.post__content dl {
  margin-bottom: 24px;
}

.post__content dt {
  font-weight: 700;
}

.post__content dl,
.post__content dt,
.post__content dd {
  color: #141414;
}

.post__content blockquote {
  position: relative;
  padding: 28px 26px 28px 74px;
  box-sizing: border-box;
  color: #141414;
  background-color: #F7F3E9;
  line-height: 1.875;
  margin-bottom: 30px;
}

.post__content blockquote:before {
  display: inline-block;
  position: absolute;
  top: 16px;
  left: 17px;
  content: "";
  font-family: "Font Awesome 5 Free";
  color: #141414;
  font-size: 25px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-weight: 700;
}

.post__other {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.post__prev,
.post__next,
.post__return {
  color: #141414;
  font-weight: 700;
}

.contact {
  padding: 200px 0 100px;
  background-color: #FEF9FB;
  min-height: calc(100vh - 136px);
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 100px 0 0;
    min-height: calc(100vh - 36px);
  }
}

.contact__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .contact__inner {
    padding: 0 15px;
  }
}

.contact__reserve {
  margin-top: 50px;
  padding: 50px;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .contact__reserve {
    padding: 15px 4px;
  }
}

.reserve__lists {
  padding: 30px;
}

.reserve__text--pink,
.reserve__list--pink {
  color: #ED3887;
}

.contact-form {
  background-color: #FEF9FB;
  min-height: calc(100vh - 136px);
}
@media screen and (max-width: 767px) {
  .contact-form {
    padding: 100px 0;
    min-height: calc(100vh - 36px);
  }
}

.contact-form__inner {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  padding: 200px 25px;
}
@media screen and (max-width: 767px) {
  .contact-form__inner {
    padding: 0px 15px;
  }
}

.form__list {
  margin-top: 40px;
}

.form__field + .form__field,
.form__acceptance {
  margin-top: 24px;
}

.form__required {
  color: #ED3887;
}

.form__input::-moz-placeholder {
  color: #ffffff;
}

.form__input::placeholder {
  color: #ffffff;
}

.form__textarea {
  height: 160px;
}

.form__input,
.form__select,
.form__textarea {
  font-size: 14px;
  width: 100%;
  padding: 12px;
  border: 1px solid #141414;
  border-radius: 4px;
  background-color: #ffffff;
}

.form__acceptance {
  overflow-y: auto;
  height: 120px;
  background-color: #ffffff;
  border: 1px solid #141414;
}

.form__acceptance-text {
  font-size: 16px;
  line-height: 1.875;
  width: 100%;
}

.form__select {
  padding-right: 35px;
}

.form__data-select {
  position: relative;
}

.form__data-select::after {
  position: absolute;
  top: 46%;
  right: 15px;
  width: 10px;
  height: 10px;
  content: "";
  transform: translateY(-50%) rotate(135deg);
  border-top: solid 2px #141414;
  border-right: solid 2px #141414;
}

.form__data-radio {
  display: flex;
  flex-wrap: wrap;
}

.form__data,
.form__data-radio,
.form__data-select,
.form__data-check {
  margin-top: 4px;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control-wrap[data-name=privacy] .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  padding-left: 24px;
}

.wpcf7-form-control-wrap[data-name=privacy] .wpcf7-list-item-label::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  content: "";
  border: 1px solid #141414;
  border-radius: 3px;
}

.wpcf7-form-control-wrap[data-name=privacy] .wpcf7-list-item-label::after {
  position: absolute;
  top: 9.25px;
  left: 5px;
  width: 10px;
  height: 5px;
  content: "";
  transform: rotate(-45deg);
  opacity: 0;
  border-bottom: 2px solid #141414;
  border-left: 2px solid #141414;
}

.form__checkbox:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.form__submit-button {
  margin-top: 40px;
  text-align: center;
}

.form__submit-input {
  display: inline-block;
  width: 100%;
  max-width: 500px;
  padding: 16px 20px;
  transition: opacity 0.3s;
  color: #ffffff;
  border-radius: 4px;
  background-color: #ED3887;
}
.form__submit-input:hover {
  transition: opacity 0.3s;
  opacity: 0.7;
}

.contact__text {
  text-align: center;
}

.contact__list {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .contact__item:last-child {
    flex-direction: column;
  }
}

.contact__term {
  display: block;
  width: 200px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .contact__term {
    flex-direction: column;
  }
}

.contact__definition {
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .contact__definition {
    width: 345px;
  }
}

.contact__buttons {
  margin-top: 50px;
}

.contact__back-button,
.contact__submit-input {
  display: block;
  width: 100%;
  max-width: 240px;
  padding: 16px 20px;
  transition: opacity 0.3s;
  color: #ffffff;
  border-radius: 4px;
  background-color: #ED3887;
  text-align: center;
  margin: 0 auto;
}
.contact__back-button:hover,
.contact__submit-input:hover {
  transition: opacity 0.3s;
  opacity: 0.7;
}

.contact__thanks {
  margin-top: 50px;
}

.contact__top {
  display: block;
  margin-top: 20px;
}

.footer {
  width: 100%;
  height: 130px;
  background-color: #FEF9FB;
}
@media screen and (max-width: 767px) {
  .footer {
    height: 36px;
  }
}

.footer__body {
  display: flex;
  align-items: center;
  height: 100px;
  padding-left: 22px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .footer__body {
    display: none;
  }
}

.footer__name {
  margin-top: 10px;
  margin-right: auto;
  width: 80px;
}

.footer__nav {
  height: inherit;
}

.footer__items {
  display: flex;
  align-items: center;
  height: inherit;
}

.footer__item {
  height: inherit;
}

.footer__item:not(:first-child) {
  margin-left: 70px;
}
@media screen and (max-width: 1024px) {
  .footer__item:not(:first-child) {
    margin-left: 40px;
  }
}

.footer__link {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
  color: #141414;
  transition: 0.3s transform;
}
.footer__link:hover {
  transform: scale(1.2);
}

.footer__link.footer__link--contact {
  padding: 0 24px;
  color: #ffffff;
  background-color: #ED3887;
  transition: 0.3s background-color, 0.3s box-shadow, 0.3s opacity, 0.3s transform;
}
.footer__link.footer__link--contact:hover {
  transform: scale(1);
  background-color: #ED3887;
  box-shadow: none;
  opacity: 0.6;
}

.footer__copyright {
  display: block;
  text-align: center;
  font-size: 12px;
  line-height: 3;
  background-color: #FEF9FB;
  font-weight: 500;
}

.footer--contact {
  height: 36px;
  position: fixed;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .footer--contact {
    position: static;
  }
}

.footer__body--contact {
  display: none;
}

.shop-name {
  height: 250px;
  text-align: center;
  align-items: center;
  background-color: #FEF9FB;
}

.shop-name__text {
  color: #141414;
  padding-top: 130px;
}

.shop-mv {
  background-color: #FEF9FB;
}

.shop-mv__slider {
  max-height: 600px;
  position: relative;
}

.shop-mv__slider.swiper-button-next,
.shop-mv__slider.swiper-button-prev {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ED3887;
  box-shadow: 3px 3px 10px rgba(254, 249, 251, 0.3);
}

@media screen and (max-width: 767px) {
  .shop-mv__slider.swiper-button-next {
    right: auto;
    left: calc(50% + 25vw);
  }
}

@media screen and (max-width: 767px) {
  .shop-mv__slider.swiper-button-prev {
    left: auto;
    right: calc(50% + 25vw);
  }
}

.shop-mv__slider.swiper-button-next::after,
.shop-mv__slider.swiper-button-prev::after {
  content: "";
  width: 15px;
  height: 15px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
}

.shop-mv__slider.swiper-button-next::after {
  transform: translate(calc(-50% - 3px), -50%) rotate(45deg);
}

.shop-mv__slider.swiper-button-prev::after {
  transform: translate(calc(-50% + 3px), -50%) rotate(-135deg);
}

.shop-mv__slider .swiper-slide::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: opacity 0.3s ease-in-out;
}

.shop-mv__slider .swiper-slide-active::before {
  opacity: 0;
}

.shop-mv__slider .swiper-pagination-bullet {
  background-color: #FEF9FB;
  opacity: 1;
}

.shop-mv__slider .swiper-pagination-bullet-active {
  background-color: #ED3887;
}

@media screen and (max-width: 767px) {
  .shop-mv__slider .swiper-button-next {
    right: 3px;
  }
}

@media screen and (max-width: 767px) {
  .shop-mv__slider .swiper-button-prev {
    left: 3px;
  }
}

.schedule {
  padding: 105px 0 100px;
  background-color: #F7F3E9;
}
@media screen and (max-width: 767px) {
  .schedule {
    padding: 50px 0;
  }
}

.schedule__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .schedule__inner {
    padding: 0 15px;
  }
}

.schedule__body {
  margin-top: 50px;
}

.schedule__sub {
  margin-top: 20px;
  padding: 0 10px;
}

.schedule__text {
  background-color: #F7F3E9;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .schedule__text {
    padding: 0;
  }
}

.schedule__check {
  width: 350px;
  margin: 0 auto;
}

.check__item::before {
  content: "・";
  margin-right: 0.5em;
}

.schedule__calender {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  padding-top: 70%;
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .schedule__calender {
    padding-top: 75%;
    /* より縦長の画面用にアスペクト比を調整 */
  }
}
@media screen and (max-width: 450px) {
  .schedule__calender {
    padding-top: 100%;
    /* 小さな画面向けにさらに縦長に */
  }
}

.schedule__calender iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
  border: solid 2px rgba(134, 134, 134, 0.16);
}

.schedule__buttons {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.schedule__button {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .schedule__button {
    display: block;
    margin: 0 auto;
  }
}

.schedule__link {
  text-align: center;
  padding: 10px;
}

.schedule__link a {
  color: #ED3887;
}

.shop-info {
  padding: 105px 0 100px;
  background-color: #FEF9FB;
}
@media screen and (max-width: 767px) {
  .shop-info {
    padding: 50px 0;
  }
}

.shop-info__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .shop-info__inner {
    padding: 0 15px;
  }
}

.shop-info__body {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media screen and (max-width: 767px) {
  .shop-info__body {
    flex-direction: column;
  }
}

.shop-info__map {
  min-width: 50%;
}

.map__container {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 85%;
}

.map__container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .shop-info__contents {
    margin-top: 20px;
  }
}

.shop-info__text {
  margin-top: 20px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.05em;
}

.list__buttons--column {
  display: block;
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .list__buttons--column {
    display: flex;
    justify-content: center;
    row-gap: 20px;
  }
}

.list__button--left {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .list__button--left {
    display: block;
    margin: 0 auto;
  }
}

.list__button--left:nth-child(2) {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .list__button--left:nth-child(2) {
    margin-top: 0;
  }
}

.news--shop {
  background-color: #FEF9FB;
}

.bannar--shop {
  background-color: #FEF9FB;
}

.registration {
  padding: 105px 0 100px;
  background-color: #FEF9FB;
}
@media screen and (max-width: 767px) {
  .registration {
    padding: 50px 0;
  }
}

.registration__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 0 auto;
  width: 100%;
  max-width: 630px;
}
@media screen and (max-width: 767px) {
  .registration__body {
    display: block;
  }
}

.registration__img {
  width: 132px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .registration__img {
    display: none;
  }
}

.detail__parts--registration {
  border-top: solid 2px rgba(134, 134, 134, 0.16);
  border-collapse: collapse;
}

.detail__parts--registration:last-child {
  border-bottom: solid 2px rgba(134, 134, 134, 0.16);
}

.detail__text--registration {
  min-width: 170px;
}
@media screen and (max-width: 767px) {
  .detail__text--registration {
    min-width: 135px;
  }
}

.service-name {
  height: 500px;
}
@media screen and (max-width: 767px) {
  .service-name {
    height: 100vh;
  }
}

.service-name.service-name--trimming {
  background-image: url("/wp-content/themes/mamix_dogroom/assets/images/trimming-top_pc.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .service-name.service-name--trimming {
    background-image: url("/wp-content/themes/mamix_dogroom/assets/images/trimming-top_sp.jpg");
  }
}

.service-name.service-name--care {
  background-image: url("/wp-content/themes/mamix_dogroom/assets/images/care-top_pc.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .service-name.service-name--care {
    background-image: url("/wp-content/themes/mamix_dogroom/assets/images/care-top_sp.jpg");
  }
}

.service-name__title {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.main-title__main {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #141414;
}

.main-title__sub {
  font-size: 16px;
  font-weight: 500;
  color: #ED3887;
}
@media screen and (max-width: 767px) {
  .main-title__sub {
    font-size: 10px;
  }
}

.main-title.main-title--center {
  text-align: center;
}

.service-main {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.service-features {
  padding: 100px 0;
  background-color: #FEF9FB;
}
@media screen and (max-width: 767px) {
  .service-features {
    padding: 50px 0;
  }
}

.service-features__item-text a {
  font-weight: 700;
  color: #ED3887;
  text-decoration: underline;
}

.service-features__text {
  padding: 100px 80px;
  background-color: #FEF9FB;
}
@media screen and (max-width: 767px) {
  .service-features__text {
    padding: 50px 0;
  }
}

.service-features__text--anchor {
  padding: 100px 0;
}

.service-features__text a {
  font-weight: 700;
  color: #ED3887;
  text-decoration: underline;
}

.service-features__items {
  padding: 50px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 50px;
}

.service-features__item {
  position: relative;
}

.service-features__item-img {
  width: 100%;
  height: auto;
}

.service-features__item-title {
  margin-top: 50px;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service-features__item-title {
    margin-top: 30px;
  }
}

.service-features__item-title span {
  padding-bottom: 10px;
  font-size: 12px;
  color: #ED3887;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.5em;
  display: block;
  font-weight: 500;
}

.service-features__item-text {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .service-features__item-text {
    margin-top: 10px;
  }
}

.premium {
  padding: 100px 0;
  background-color: #F7F3E9;
}
@media screen and (max-width: 767px) {
  .premium {
    padding: 50px 0;
  }
}

.premium__title--gold {
  color: transparent;
  background: linear-gradient(0deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
  -webkit-background-clip: text;
          background-clip: text;
}

.premium__text {
  padding: 100px 80px;
}
@media screen and (max-width: 767px) {
  .premium__text {
    padding: 50px 0;
  }
}

.premium__items {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(345px, 1fr));
  -moz-column-gap: 50px;
       column-gap: 50px;
  row-gap: 20px;
}

.premium__item {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 2px 2px 4px rgba(134, 134, 134, 0.5);
}

.premium__item-title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}

.premium__item-images {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .premium__item-images {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

.premium__item-img {
  width: 48%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .premium__item-img {
    width: 100%;
  }
}

.premium__item-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.premium__item-img span {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: #ED3887;
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
}

.premium__item-text {
  margin-top: 40px;
}

.dental {
  padding: 100px 0 200px;
  background-color: #F7F3E9;
}
@media screen and (max-width: 767px) {
  .dental {
    padding: 50px 0;
  }
}

.dental__title--gold {
  color: transparent;
  background: linear-gradient(0deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
  -webkit-background-clip: text;
          background-clip: text;
}

.dental__text {
  padding: 100px 0;
  max-width: 750px;
  min-width: 345px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .dental__text {
    padding: 50px 0;
  }
}

.dental__items {
  padding: 100px 0;
  max-width: 670px;
  min-width: 345px;
  margin: 0 auto;
}

.dental__item {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 2px 2px 4px rgba(134, 134, 134, 0.5);
}

.dental__item-title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}

.dental__item-images {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .dental__item-images {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

.dental__item-img {
  width: 48%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .dental__item-img {
    width: 100%;
  }
}

.dental__item-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.dental__item-img span {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: #ED3887;
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
}

.dental__item-text {
  margin-top: 40px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  padding: 20px 0;
  word-break: break-all;
  background-color: #FEF9FB;
}

.breadcrumb--beige {
  background-color: #F7F3E9;
}

.breadcrumb span[property=name] {
  color: #141414;
}

.breadcrumb__inner .post {
  all: unset;
  display: inline;
}

.breadcrumb--post {
  padding-top: 200px;
}

.error {
  padding: 250px 0 100px;
  background-color: #FEF9FB;
  min-height: calc(100vh - 136px);
}
@media screen and (max-width: 767px) {
  .error {
    padding: 150px 0;
    min-height: calc(100vh - 36px);
  }
}

.error__inner {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .error__inner {
    padding: 0 15px;
  }
}

.error__text {
  padding: 50px 0;
}

.error__button {
  color: #ED3887;
}

.inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 15px;
  }
}

.section-title__main {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.section-title__sub {
  font-size: 16px;
  font-weight: 500;
  color: #ED3887;
}
@media screen and (max-width: 767px) {
  .section-title__sub {
    font-size: 10px;
  }
}

.section-title.section-title--center {
  text-align: center;
}

.text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .text {
    font-size: 14px;
    line-height: 2.143;
  }
}

.text.text--small {
  font-size: 12px;
  line-height: 1.75;
}

.text.text--large {
  font-size: 24px;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .text.text--large {
    font-size: 20px;
    line-height: 1.9;
  }
}

.text.text--extra-large {
  font-size: 42px;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .text.text--extra-large {
    font-size: 24px;
    line-height: 1.9;
  }
}

.text.text--reverse {
  color: #ffffff;
}

.text.text--bold {
  font-weight: 700;
}

.button {
  font-size: 20px;
  width: 300px;
  display: inline-block;
  text-align: center;
  padding: 15px;
  transition: 0.3s background-color, 0.3s box-shadow, 0.3s opacity;
  color: #ffffff;
  background-color: #ED3887;
  letter-spacing: 0.05em;
  box-shadow: 2px 2px 4px rgba(134, 134, 134, 0.5);
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .button {
    width: 240px;
  }
}
.button:hover {
  background-color: #ED3887;
  box-shadow: none;
  opacity: 0.6;
}

.button--line {
  background-color: #07b53b;
}
.button--line:hover {
  background-color: #07b53b;
  box-shadow: none;
  opacity: 0.6;
}

.button--center {
  margin: 0 auto;
}

.form-button {
  font-size: 20px;
  width: 235px;
  display: inline-block;
  padding: 15px;
  transition: 0.3s background-color, 0.3s box-shadow;
  color: #ffffff;
  background-color: #ED3887;
  letter-spacing: 0.05em;
  box-shadow: 2px 2px 4px rgba(134, 134, 134, 0.5);
}
.form-button:hover {
  background-color: #ED3887;
  box-shadow: none;
  opacity: 0.6;
}

@media screen and (max-width: 767px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 767px) {
  .md-show {
    display: block;
  }
}

.lg-show {
  display: none;
}
@media screen and (max-width: 1024px) {
  .lg-show {
    display: block;
  }
}

.sp-show {
  display: none;
}
@media screen and (max-width: 450px) {
  .sp-show {
    display: block;
  }
}

/* fadeUp */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}