@charset "UTF-8";
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  font-size: 100%;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3536379019vw;
  }
}
@media (min-width: 1182px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "游ゴシック体", "Lucida Grande", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #C0670A;
}
body.on-lock {
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
@media (hover: hover) {
  a,
  button {
    cursor: pointer;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
}

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

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

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
}
.l-inner {
  width: 100%;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1182px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.c-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 0.375rem;
  border-radius: 2rem;
  border: 1px solid #F29C9F;
  background: #F29C9F;
  color: #fff;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
  width: 20.5625rem;
}
.c-btn::after {
  content: "";
  width: 1.75rem;
  height: 1.75rem;
  -webkit-mask-image: url(../images/icon_mark.svg);
          mask-image: url(../images/icon_mark.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  background: #fff;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media (hover: hover) {
  .c-btn:hover {
    background: #fff;
    color: #F29C9F;
  }
  .c-btn:hover::after {
    background: #F29C9F;
  }
}

.c-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.c-form__item:not(:first-child) {
  margin-top: 1.25rem;
}

.c-form__label {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-form__required {
  display: inline-block;
  font-size: max(0.75rem, 10px);
  font-weight: 500;
  line-height: 1.6666666667;
  color: #C0670A;
  background: #fff;
  padding: 0 0.625rem;
  border-radius: 3.125rem;
  margin-left: 0.25rem;
}

.c-form__input {
  background: #fff;
  padding: 0.125rem 1rem;
  margin-top: 0.5rem;
  border: none;
  border-radius: 0.25rem;
  font-size: 1rem;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "游ゴシック体", "Lucida Grande", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 2;
  width: 100%;
}

.c-form__textarea {
  width: 100%;
  background: #fff;
  padding: 0.3125rem 1rem;
  margin-top: 0.5rem;
  border: none;
  border-radius: 0.25rem;
  height: 7.25rem;
}

.c-form__radio input,
.c-form__radio input {
  display: none;
}

.c-form__radio {
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.875rem;
  color: #fff;
}

.c-form__radio .wpcf7-list-item {
  padding-left: 2.125rem;
  font-size: max(0.875rem, 10px);
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "游ゴシック体", "Lucida Grande", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
}
.c-form__radio .wpcf7-list-item label {
  cursor: pointer;
}

.c-form__radio .wpcf7-list-item::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.c-form__radio .wpcf7-list-item::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 4px;
  width: 10px;
  height: 10px;
  background: #C0670A;
  border-radius: 50%;
  -webkit-transform: translateY(-50%) scale(0);
          transform: translateY(-50%) scale(0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.c-form__radio .wpcf7-list-item:has(input:checked)::after {
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
}

.c-form__submit {
  margin-top: 2rem;
  text-align: center;
  position: relative;
}
.c-form__submit:after {
  content: "";
  width: 1.75rem;
  height: 1.75rem;
  -webkit-mask-image: url(../images/icon_mark.svg);
          mask-image: url(../images/icon_mark.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  background: #C0670A;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 2.5rem;
  display: block;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.c-form__submit input {
  width: 100%;
  background: #fff;
  color: #C0670A;
  text-align: center;
  font-size: 1rem;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "游ゴシック体", "Lucida Grande", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700;
  line-height: 1.5;
  padding: 0.625rem 4.75rem 0.625rem 2.875rem;
  border: 1px solid #fff;
  border-radius: 3rem;
  cursor: pointer;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
@media (hover: hover) {
  .c-form__submit:hover::after {
    background: #fff;
  }
  .c-form__submit:hover input {
    background: #C0670A;
    color: #fff;
  }
}

.c-form__label-text {
  display: block;
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}

.c-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2.3333333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.c-title span {
  font-size: 3rem;
  font-weight: 400;
  font-family: "Bad Script", cursive;
  line-height: 1.25;
}

.p-bg {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-bg {
    padding-top: 3.75rem;
    padding-bottom: 2.5rem;
    background: #FFE8CA;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/bg.jpg) no-repeat center bottom/cover;
    overflow-y: auto;
  }
  .p-bg::after {
    content: "";
    display: block;
    width: 5.375rem;
    height: 9.3125rem;
    background: url(../images/icon_marks.svg) no-repeat center center/contain;
    position: absolute;
    top: 10.5625rem;
    left: calc(50% + 23.375rem);
    z-index: -1;
  }
}

.p-bg__content {
  position: relative;
  width: 18rem;
}
.p-bg__content::after {
  content: "";
  display: block;
  width: 5.375rem;
  height: 9.3125rem;
  background: url(../images/icon_marks.svg) no-repeat center center/contain;
  position: absolute;
  bottom: -6.3125rem;
  right: -2.125rem;
  z-index: -1;
}

.p-bg__title {
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-bg__title-sm {
  font-size: 1rem;
  line-height: 1.625;
}

.p-bg__title-lg {
  font-size: 1.5rem;
  line-height: 1.6666666667;
  margin-top: 0.5rem;
}

.p-bg__logo {
    width: fit-content;
  margin-top: 1rem;
}
.p-bg__logo img {
  width: 100%;
	    max-height: 100px;
}

.p-bg__links {
  margin-top: 3.75rem;
  display: grid;
  gap: 1rem;
}

.p-bg__link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 0.4375rem 1rem;
  background: #C0670A;
  border-radius: 0.25rem;
  border: 1px solid #C0670A;
  color: #fff;
  width: 13.125rem;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
.p-bg__link a::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  -webkit-mask-image: url(../images/icon_cat.svg);
          mask-image: url(../images/icon_cat.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  background: #fff;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media (hover: hover) {
  .p-bg__link a:hover {
    background: #fff;
    color: #C0670A;
  }
  .p-bg__link a:hover::before {
    background: #C0670A;
  }
}

.p-bg__menu {
  width: 18.25rem;
  margin-left: auto;
/*   margin-top: auto; */
	    margin-top: -5rem;
}

.p-bg__menu-title {
  font-size: 2rem;
  font-weight: 400;
  font-family: "Bad Script", cursive;
  line-height: 1.875;
}

.p-bg__menu-list {
  margin-top: 0.25rem;
}

.p-bg__menu-item a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3em;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 0.25rem 0;
}
.p-bg__menu-item a::before {
  content: "ー";
}
@media (hover: hover) {
  .p-bg__menu-item a:hover {
    opacity: 0.7;
  }
}

.p-company {
  background: #744F29;
  padding-top: 3.125rem;
  color: #fff;
}

.p-company__inner {
  padding-inline: 1.75rem;
}

.p-company__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-company__table {
  margin-top: 0.5rem;
}

.p-company__term {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 1rem;
}

.p-company__desc {
  margin-top: 0.5rem;
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  line-height: 1.5;
}

.p-contact {
  padding: 4.6875rem 0 3.375rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(4.6875rem, #fff), color-stop(4.6875rem, #C0670A), to(#C0670A));
  background: linear-gradient(to bottom, #fff 0, #fff 4.6875rem, #C0670A 4.6875rem, #C0670A 100%);
  position: relative;
}
.p-contact::before {
  content: "";
  position: absolute;
  width: 11.5rem;
  height: 4rem;
  background: url(../images/contact_ear.svg) no-repeat center center/contain;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 2.75rem;
}

.p-contact__title {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.p-contact__title::before, .p-contact__title::after {
  content: "";
  width: 2.125rem;
  height: 4.125rem;
  background: url(../images/contact_deco.svg) no-repeat center center/contain;
}
.p-contact__title::after {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.p-contact__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  margin-top: 2rem;
}

.p-contact__form {
  margin: 2rem auto 0;
  width: 17.6875rem;
}

.p-faq {
  padding: 4.375rem 0 2.5rem;
}

.p-faq__list {
  margin-top: 2.5rem;
}

.p-faq__item:not(:first-child) {
  margin-top: 1.5rem;
}

.p-faq__question {
  font-size: max(0.75rem, 10px);
  font-weight: 500;
  line-height: 1.5;
  padding: 0.5rem 2.375rem 0.5rem 1rem;
  background: #C0670A;
  color: #fff;
  border-radius: 0.25rem;
  cursor: pointer;
  position: relative;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-faq__question::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1rem;
  height: 0.5625rem;
  background: url(../images/icon_arrow.svg) no-repeat center center/contain;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-faq__question.is-active::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
@media (hover: hover) {
  .p-faq__question:hover {
    opacity: 0.7;
  }
}

.p-faq__content {
  display: none;
  padding: 1rem 1rem 0;
}

.p-faq__text {
  font-size: max(0.75rem, 10px);
  font-weight: 500;
  line-height: 1.5;
  color: #C0670A;
}

.p-feature {
  padding: 6.4375rem 0 0;
}

.p-feature__list {
  margin-top: 2.5rem;
}

.p-feature__item:not(:first-child) {
  margin-top: 3rem;
}
.p-feature__item:nth-child(1) .p-feature__img {
  -webkit-mask-image: url(../images/feature_mask01.png);
          mask-image: url(../images/feature_mask01.png);
}
.p-feature__item:nth-child(2) {
  width: 20.5625rem;
  margin-inline: auto;
}
.p-feature__item:nth-child(2) .p-feature__img {
  -webkit-mask-image: url(../images/feature_mask02.png);
          mask-image: url(../images/feature_mask02.png);
}
.p-feature__item:nth-child(2) .p-feature__item-text {
  text-align: center;
}
.p-feature__item:nth-child(3) {
  width: 16.5625rem;
  margin-inline: auto;
}
.p-feature__item:nth-child(3) .p-feature__img {
  -webkit-mask-image: url(../images/cat_balcony2.png);
          mask-image: url(../images/cat_balcony2.png);
}

.p-feature__img {
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
}
.p-feature__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-feature__item-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  margin: -0.75rem auto 0;
  background: #C0670A;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 4rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-feature__item-text {
  font-size: max(10px, 0.875rem);
  font-weight: 500;
  line-height: 1.5;
  margin-top: 1rem;
}

.p-feature__point {
  margin: 2.5rem auto 0;
  width: max(17.0625rem, 180px);
}

.p-feature__point-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2.3333333333;
  text-align: center;
}

.p-feature__point-list {
  margin-top: 1.5rem;
}

.p-feature__point-item {
  display: grid;
  grid-template-columns: 2.8125rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
.p-feature__point-item:not(:first-child) {
  margin-top: 1.0625rem;
}

.p-feature__icon img {
  width: 100%;
}

.p-feature__point-text {
  font-size: max(10px, 0.875rem);
  font-weight: 500;
  line-height: 1.5;
}
.p-feature__point-text span {
  font-weight: 700;
}

.p-feature__link {
  margin-top: 2.5rem;
  text-align: center;
}

.p-footer {
  background: #744F29;
  padding: 3.75rem 0 2.0625rem;
  color: #fff;
}

.p-footer__inner {
  padding-inline: 1.75rem;
}

.p-footer__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-footer__list {
  margin-top: 1.25rem;
}

.p-footer__item a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3em;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 0.25rem 0;
}
.p-footer__item a::before {
  content: "ー";
}
@media (hover: hover) {
  .p-footer__item a:hover {
    opacity: 0.7;
  }
}

.p-footer__copy {
  margin-top: 2.25rem;
  text-align: center;
}

.p-footer__copyright {
  font-size: max(10px, 0.875rem);
  line-height: 1.5;
  font-weight: 500;
}

.p-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
  padding: 0.625rem 0;
}
@media screen and (min-width: 768px) {
  .p-header {
    width: max(23.4375rem, 280px);
  }
}

.p-header__inner {
  padding-left: 1.25rem;
  padding-right: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-header__logo {
  width: 3.75rem;
  position: relative;
  z-index: 100;
}
.p-header__logo img {
  width: 100%;
	max-height: 40px;
}

.p-header__cta {
  position: relative;
  z-index: 100;
  margin-left: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-header__cta a {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.1875rem;
  padding: 0.125rem 0.875rem 0.125rem 0.375rem;
  background: #fff;
  border-radius: 2.5rem;
  color: #F29C9F;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
.p-header__cta a::before {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  -webkit-mask-image: url(../images/icon_mark.svg);
          mask-image: url(../images/icon_mark.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  background: #F29C9F;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media screen and (min-width: 768px) and (hover: hover) {
  .p-header__cta a:hover {
    background: #F29C9F;
    color: #fff;
  }
  .p-header__cta a:hover::before {
    -webkit-mask-image: url(../images/icon_mark.svg);
            mask-image: url(../images/icon_mark.svg);
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center center;
            mask-position: center center;
    background: #fff;
  }
}

.p-header__hamburger {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 3px;
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  z-index: 100;
  padding: 0 0.1875rem;
  margin-left: 0.8125rem;
}
.p-header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #C0670A;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

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

.p-header__hamburger.is-active span:nth-child(1) {
  -webkit-transform: translateY(5px) rotate(45deg);
          transform: translateY(5px) rotate(45deg);
}

.p-header__hamburger.is-active span:nth-child(3) {
  -webkit-transform: translateY(-5px) rotate(-45deg);
          transform: translateY(-5px) rotate(-45deg);
}

.p-mv {
  padding: 5.375rem 0 7.0625rem;
  background: url(../images/mv_bg.jpg) no-repeat center center/cover;
}

.p-mv__title {
  font-size: 2.6875rem;
  font-weight: 700;
  line-height: 1.3953488372;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3125rem;
}
.p-mv__title span {
  font-size: 1rem;
  line-height: 1.625;
}

.p-mv__categories {
  margin-top: 13.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.875rem;
}

.p-mv__category {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  border-radius: 2rem;
  border: 1px solid #C0670A;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 0.25rem 0.9375rem;
}

.p-nav {
  display: none;
  background: #FFE8CA;
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  padding: 7rem 1rem 6.25rem;
  overflow-y: auto;
}
@media screen and (min-width: 768px) {
  .p-nav {
    width: 100%;
  }
}

.p-nav__item a {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 0.75rem 0;
  text-align: center;
}
@media (hover: hover) {
  .p-nav__item a:hover {
    opacity: 0.7;
  }
}

.p-nav__cta {
  margin-top: 4.4375rem;
}
.p-nav__cta a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 0.5625rem 0;
  border-radius: 2rem;
  border: 1px solid #F29C9F;
  background: #F29C9F;
  color: #fff;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
.p-nav__cta a::after {
  content: "";
  width: 1.75rem;
  height: 1.75rem;
  -webkit-mask-image: url(../images/icon_mark.svg);
          mask-image: url(../images/icon_mark.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  background: #fff;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media (hover: hover) {
  .p-nav__cta a:hover {
    background: #fff;
    color: #F29C9F;
  }
  .p-nav__cta a:hover::after {
    background: #F29C9F;
  }
}

.p-philosophy {
  padding-top: 4.875rem;
}

.p-philosophy__img {
  border-radius: 0.75rem;
  overflow: hidden;
}
.p-philosophy__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 342/223;
}

.p-philosophy__title {
  margin-top: 2.5rem;
}

.p-philosophy__text {
  margin-top: 2.5rem;
  font-size: max(0.9375rem, 10px);
  font-weight: 500;
  line-height: 2.2666666667;
}

.p-room-detail__item {
  padding-top: 2.5rem;
}

.p-room-detail__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 0.5rem 1rem;
  background: #C0670A;
  border-radius: 0.25rem;
  color: #fff;
}
.p-room-detail__title::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background: url(../images/icon_cat.svg) no-repeat center center/contain;
}

.p-room-detail__slider {
  margin-top: 2rem;
}

.p-room-detail__img {
  border-radius: 0.375rem;
  overflow: hidden;
}
.p-room-detail__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 343/230;
}

.p-room-detail__thumbnail {
  margin-top: 0.75rem;
  margin-right: -0.9375rem;
}
.p-room-detail__thumbnail .swiper {
  padding-right: 0.9375rem;
}
.p-room-detail__thumbnail .swiper-slide {
  opacity: 0.5;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-room-detail__thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.p-room-detail__table {
  margin-top: 2rem;
}

.p-room-detail__table-wrap {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  border-bottom: 1px solid rgba(192, 103, 10, .5);
  padding-bottom: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.125;
}
.p-room-detail__table-wrap:not(:first-child) {
  margin-top: 0.625rem;
}
.p-room-detail__table-wrap:last-child {
  grid-template-columns: 1fr;
}
.p-room-detail__table-wrap:last-child .p-room-detail__desc {
  margin-top: 0.75rem;
  text-align: left;
  padding-right: 0;
  font-size: max(0.875rem, 10px);
  line-height: 1.7142857143;
}

.p-room-detail__desc {
  padding-right: 3.25rem;
  text-align: right;
}

.p-room-detail__link {
  margin-top: 2rem;
  text-align: center;
}

.p-room {
  padding-top: 4.625rem;
  padding-bottom: 4.375rem;
  overflow: hidden;
}

.p-room__img {
  border-radius: 0.75rem;
  overflow: hidden;
}
.p-room__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 343/228;
}

.p-room__title {
  margin-top: 2.5rem;
}

.p-room__table {
  margin-top: 1.5rem;
}

.p-room__table-wrap {
  display: grid;
  grid-template-columns: 7.25rem 1fr;
  border-bottom: 1px solid rgba(192, 103, 10, .5);
  padding-bottom: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.125;
}
.p-room__table-wrap:not(:first-child) {
  margin-top: 0.625rem;
}

.p-room__map {
  margin-top: 1.5rem;
}
.p-room__map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 343/230;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-room__list {
  margin-top: 1.5rem;
}

.p-room__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.2222222222;
}
.p-room__item::before {
  content: "・";
}

.p-wrapper {
  width: 100%;
  position: relative;
  z-index: 5;
  background: #fff;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-wrapper {
    width: max(23.4375rem, 280px);
    margin: 0 auto;
    -webkit-box-shadow: 0 4px 61px 8px rgba(0, 0, 0, .15);
            box-shadow: 0 4px 61px 8px rgba(0, 0, 0, .15);
  }
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

.hidden-fields-container{
	display:none;
}

.c-form__submit p{
	display:flex;
}
/*# sourceMappingURL=styles.css.map */
