@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Noto Sans Japanese", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo;
  overflow-x: hidden;
  color: #0c0c0c;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 7.5rem;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4035087719vw;
    scroll-padding-top: 10rem;
  }
}
@media (min-width: 1140px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

br.sbr {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  br.sbr {
    display: none;
  }
}
br.pbr {
  display: none;
}
@media screen and (min-width: 768px) {
  br.pbr {
    display: inline-block;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          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 */
/* 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]) {
  text-decoration-skip-ink: auto;
}

/* 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: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          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;
}

.l-archive {
  margin-bottom: 80px;
  margin-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .l-archive {
    margin-bottom: 7.5rem;
  }
}
@media screen and (min-width: 768px) {
  .l-archive {
    display: grid;
    grid-template-columns: 1fr 13.75rem;
    gap: 2.5rem;
  }
}

.body__fixed {
  -ms-touch-action: none;
      touch-action: none;
  -webkit-overflow-scrolling: none;
  overflow: hidden;
  overscroll-behavior: none;
}
.body__fixed .c-header__logo svg {
  fill: #fff;
}

body.contact .p-footer__fixed {
  display: none !important;
}

.l-footer {
  background: #888888;
  color: #fff;
}
.l-footer__inner {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .l-footer__inner {
    padding-top: 2.5rem;
    padding-bottom: 4rem;
  }
}

.l-header {
  width: 100%;
  background: #ffffff;
  position: fixed;
  z-index: 999;
  height: 56px;
  height: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 5rem;
  }
}
.l-header__inner {
  width: 100%;
  height: 100%;
  margin: auto;
  position: relative;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    padding: 0 25px;
  }
}
.l-header__mobile-menu {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  display: block;
  overflow-y: scroll;
}
@media screen and (min-width: 768px) {
  .l-header__mobile-menu {
    width: 100%;
    max-width: 25rem;
    right: 0;
    left: auto;
    height: 100vh;
  }
}
.l-header__mobile-menu.visible {
  visibility: visible;
  right: 0;
  -webkit-animation: fade-in cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
          animation: fade-in cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
}
@media screen and (min-width: 768px) {
  .l-header__mobile-menu.visible {
    max-width: 25rem;
  }
}
.l-header__mobile-menu.fade-out {
  -webkit-animation: fade-out cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s forwards;
          animation: fade-out cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s forwards;
  visibility: visible;
}

@-webkit-keyframes fade-in {
  0% {
    visibility: visible;
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fade-in {
  0% {
    visibility: visible;
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fade-out {
  0% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    visibility: visible;
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes fade-out {
  0% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    visibility: visible;
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.l-inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1190px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.l-main {
  padding-top: 56px;
  padding-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .l-main {
    padding-top: 5rem;
  }
}

.l-sidebar {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-sidebar .sidebar__inner {
    position: sticky;
    top: 7.5rem;
  }
}
.l-sidebar h2 {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  color: #fff;
  display: inline-block;
  padding: 4px 8px;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  background-color: #999;
}
@media screen and (min-width: 768px) {
  .l-sidebar h2 {
    font-size: 0.875rem;
  }
}
.l-sidebar li {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .l-sidebar li {
    font-size: 1rem;
  }
}
.l-sidebar .wp-block-categories-list > * + * {
  margin-top: 6px;
  margin-top: 0.375rem;
}

.l-single {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  gap: 64px;
  gap: 4rem;
}
@media screen and (min-width: 768px) {
  .l-single {
    display: grid;
    grid-template-columns: 1fr 13.75rem;
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
    min-height: 31.25rem;
  }
}

.c-accordion {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .c-accordion {
    margin-top: 4rem;
  }
}

.c-accordion__container {
  width: 100%;
  margin: 0 auto;
}
.c-accordion__container > * + * {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .c-accordion__container > * + * {
    margin-top: 1.5rem;
  }
}

.c-accordion__question {
  background: #f2f0e8;
  padding: 16px 40px 16px 12px;
  padding: 1rem 2.5rem 1rem 0.75rem;
  border-radius: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-accordion__question {
    padding: 1.25rem 5rem 1.25rem 2.0625rem;
  }
}
.c-accordion__question.is-active {
  border-radius: 0.75rem 0.75rem 0 0;
}
.c-accordion__question:hover {
  cursor: pointer;
}
.c-accordion__question span {
  font-size: 20px !important;
  font-size: 1.25rem !important;
  color: #c7a877;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  margin-right: 12px;
  margin-right: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-accordion__question span {
    margin-right: 1.25rem;
    font-size: 1.75rem !important;
  }
}

.c-accordion__title {
  font-size: 15px;
  font-size: 0.9375rem;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (min-width: 768px) {
  .c-accordion__title {
    font-size: 1.125rem;
  }
}

.c-accordion__question::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
  height: 12px;
  right: 12px;
  background: url(../images/common/-after.png);
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .c-accordion__question::after {
    width: 16px;
    height: 16px;
    right: 25px;
  }
}

.c-accordion__question.is-active::after {
  width: 12px;
  height: 12px;
  background: url(../images/common/-.png);
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .c-accordion__question.is-active::after {
    width: 16px;
    height: 16px;
  }
}

.c-accordion__content {
  padding: 16px 14px;
  padding: 1rem 0.875rem;
  height: 100%;
  overflow: hidden;
  background: #f2f0e8;
  border-radius: 0 0 0.5rem 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-accordion__content {
    padding: 1.25rem 2.0625rem;
    border-radius: 0 0 0.75rem 0.75rem;
  }
}
.c-accordion__content:after {
  content: "";
  position: absolute;
  width: calc(100% - 1.75rem);
  height: 1px;
  background: #d9d9d9;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .c-accordion__content:after {
    width: calc(100% - 4.125rem);
  }
}
.c-accordion__content span {
  font-size: 20px !important;
  font-size: 1.25rem !important;
  color: #000000;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  margin-right: 12px;
  margin-right: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-accordion__content span {
    margin-right: 1.25rem;
    font-size: 1.75rem !important;
  }
}

.c-accordion__head {
  padding: 24px 16px 40px 20px;
  padding: 1.5rem 1rem 2.5rem 1.25rem;
  background: #fff;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-accordion__head {
    border-radius: 1.25rem;
    padding: 3rem 2.5rem 4rem;
  }
}
.c-accordion__wrapper {
  margin-top: 28px;
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
@media screen and (min-width: 768px) {
  .c-accordion__wrapper {
    grid-template-columns: 1fr 1fr;
    margin-top: 4rem;
    gap: 0.75rem;
  }
}
.c-accordion__text {
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .c-accordion__text {
    font-size: 1rem;
  }
}
.c-accordion__link a {
  width: 100%;
  height: 100%;
  display: block;
  margin: 30px auto 0;
  margin: 1.875rem auto 0;
}
@media screen and (min-width: 768px) {
  .c-accordion__link a {
    max-width: 34.0625rem;
    margin: 1.875rem auto 0;
  }
}
.c-accordion__link a:hover {
  opacity: 1;
}
.c-accordion__link a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-breadcrumbs__inner {
  padding: 6px 20px 16px;
  padding: 0.375rem 20px 1rem;
}
@media screen and (min-width: 768px) {
  .c-breadcrumbs__inner {
    padding: 0.5rem 25px 1rem;
  }
}
.c-breadcrumbs span {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-breadcrumbs span {
    font-size: 1rem;
  }
}

.c-button__primary {
  display: inline-block;
  padding: 12px 48px;
  padding: 0.75rem 3rem;
  border: solid 2px #c7a877;
  background: #fff;
  font-weight: 700;
  border-radius: 9999px;
  color: #d5a47e;
  position: relative;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-button__primary {
    padding: 0.75rem 4rem;
  }
}
@media (hover: hover) {
  .c-button__primary {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .c-button__primary:hover {
    background: #c7a877;
    color: #fff;
    opacity: 1;
  }
  .c-button__primary:hover:after {
    right: 1.25rem;
  }
}
.c-button__primary:after {
  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  top: 50%;
  right: 24px;
  right: 1.5rem;
  left: auto;
  bottom: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-button__primary--lg {
  padding: 14px 48px;
  padding: 0.875rem 3rem;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-button__primary--lg {
    padding: 0.875rem 5.625rem;
    font-size: 1.25rem;
  }
}
.c-button__more {
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-button__more {
    font-size: 0.875rem;
  }
}
.c-button__more:after {
  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  top: 50%;
  left: auto;
  bottom: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  right: -16px;
  right: -1rem;
}
@media (hover: hover) {
  .c-button__more {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .c-button__more:hover {
    opacity: 1;
  }
}
.c-button__download {
  display: inline-block;
  padding: 12px 48px;
  padding: 0.75rem 3rem;
  background: #c7a877;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .c-button__download {
    font-size: 0.875rem;
  }
}
.c-button__send {
  display: inline-block;
  padding: 12px 48px;
  padding: 0.75rem 3rem;
  border: solid 2px #c7a877;
  background: #fff;
  font-weight: 700;
  border-radius: 9999px;
  color: #333;
  background: #c7a877;
}

.c-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  border-radius: 0 1.5rem 0 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-card {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media screen and (min-width: 768px) {
  .c-card:hover {
    -webkit-transform: translate(0, -5px);
            transform: translate(0, -5px);
  }
}
.c-card__head {
  width: 100%;
  height: 100%;
  height: 180px;
  height: 11.25rem;
  overflow: hidden;
}
.c-card__head img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .c-card__head {
    height: 12.5rem;
  }
}
.c-card__head img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.c-card__body {
  padding: 12px 0;
  padding: 0.75rem 0;
}
.c-card__categories {
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
.c-card__date {
  font-weight: 700;
  font-size: 12px;
  font-size: 0.75rem;
  display: block;
  margin-right: 16px;
  margin-right: 1rem;
}
@media screen and (min-width: 768px) {
  .c-card__date {
    font-size: 0.875rem;
  }
}
.c-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 4px;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .c-card__meta {
    margin-top: 0;
  }
}
.c-card__category {
  display: inline-block;
  background-color: #2c79ac;
  color: #fff;
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
  padding: 4px 12px;
  padding: 0.25rem 0.75rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-card__category {
    font-size: 0.875rem;
  }
}
.c-card__text--sm {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-right: -0.04em;
}
@media screen and (min-width: 768px) {
  .c-card__text--sm {
    font-size: 0.875rem;
  }
}
.c-card__title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  min-height: 48px;
  min-height: 3rem;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-card__title {
    font-size: 1.125rem;
    min-height: 3.125rem;
    -webkit-line-clamp: 2;
  }
}
@media screen and (min-width: 768px) {
  .c-card__list > * + * {
    margin-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.c-card__item {
  border-bottom: solid 1px #d9d9d9;
  margin-top: 16px;
  margin-top: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  padding-right: 40px;
  padding-right: 2.5rem;
  position: relative;
}
.c-card__item:after {
  content: "";
  position: absolute;
  right: 0;
  top: 35%;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  background: url(../images/front-page/blog-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .c-card__item:after {
    top: 20%;
    width: 1.75rem;
    height: 1.75rem;
  }
}
.c-card__item:nth-child(1) {
  display: block;
  margin-top: 0;
  padding-bottom: 16px;
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .c-card__item:nth-child(1) {
    display: none;
  }
}
.c-card__item-title {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-card__item-title {
    font-size: 1rem;
  }
}

.c-contact-part .l-inner {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .c-contact-part .l-inner {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
}

.c-contact-part__container {
  position: relative;
  background: url(../images/common/contact_part_bg.png.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  padding-block: 48px;
  padding-block: 3rem;
  padding-inline: 16px;
  padding-inline: 1rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-contact-part__container {
    padding-block: 4rem;
  }
}
.c-contact-part__container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  z-index: 1;
  border-radius: 1.5rem;
  -webkit-transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.c-contact-part__container::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/common/contact_part_bg_hover.png.webp) no-repeat center center;
  background-size: cover;
  z-index: 0;
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  .c-contact-part__container::after {
    -webkit-transition: top 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: top 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
.c-contact-part__container .c-contact-part__heading,
.c-contact-part__container .c-contact-part__button {
  position: relative;
  z-index: 2;
}
.c-contact-part__container.is-hover::after {
  top: 0;
  visibility: visible;
}
.c-contact-part__container.is-hover::before {
  background-color: rgba(0, 0, 0, .4);
}
.c-contact-part__container.is-leave::after {
  top: 100%;
  visibility: visible;
}

.c-contact-part__heading .c-contact-part__sub-title {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-contact-part__heading .c-contact-part__sub-title {
    font-size: 1rem;
  }
}
.c-contact-part__heading .c-contact-part__title {
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-contact-part__heading .c-contact-part__title {
    font-size: 2rem;
  }
}

.c-contact-part__button {
  margin-top: 36px;
  margin-top: 2.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-contact-part__button {
    margin-top: 3rem;
  }
}
.c-contact-part__button .c-button__contact-part {
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  padding: 12px 32px;
  padding: 0.75rem 2rem;
  border-radius: 0.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-contact-part__button .c-button__contact-part {
    padding: 1rem 3rem;
    font-size: 1rem;
  }
}
.c-contact-part__button .c-button__contact-part:hover {
  background-color: #c7a877;
  color: #fff;
  border-color: #c7a877;
  opacity: 1;
}

.c-cta__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 32px;
  gap: 2rem;
  -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, .25);
          box-shadow: 0px 5px 15px rgba(0, 0, 0, .25);
  background: #fff;
  padding: 32px 12px;
  padding: 2rem 0.75rem;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-cta__wrapper {
    grid-template-columns: 1fr 1fr;
    padding: 3.5rem 5rem;
  }
}
.c-cta__tel {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-cta__form {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-cta__tel-text {
  font-size: 40px;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
}
@media screen and (min-width: 768px) {
  .c-cta__tel-text {
    font-size: 2.75rem;
  }
}
.c-cta__tel-text {
  color: #4c88ad;
  font-weight: 700;
}
.c-cta__icon {
  margin-right: 8px;
  margin-right: 0.5rem;
}
.c-cta__text {
  font-size: 18px;
  font-size: 1.125rem;
}
.c-cta__text--sm {
  font-size: 14px;
  font-size: 0.875rem;
}
.c-cta__text--bold {
  font-weight: 700;
}
.c-cta__text--gray {
  color: #909090;
}
.c-cta__btn {
  text-align: center;
  margin: 8px 0;
  margin: 0.5rem 0;
}
.c-cta__btn .c-button__primary {
  background: #f0858a;
  border-color: #f0858a;
  position: relative;
}
.c-cta__btn .c-button__primary .p-top-cta__mail {
  fill: #fff;
  position: relative;
  left: -12px;
  left: -0.75rem;
  top: 2px;
  top: 0.125rem;
}
.c-cta__btn .c-button__primary:hover {
  background: #fff;
  color: #f0858a;
}
.c-cta__btn .c-button__primary:hover .p-top-cta__mail {
  fill: #f0858a;
}

.c-fnav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  gap: 12px 20px;
  gap: 0.75rem 1.25rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-fnav__list {
    padding-bottom: 0;
    gap: 1rem 1.5rem;
  }
}
.c-fnav__item a {
  font-weight: 700;
  font-size: 13px;
  font-size: 0.8125rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-fnav__item a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .c-fnav__item a {
    font-size: 0.9375rem;
  }
}

.c-footer__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  gap: 32px;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .c-footer__wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.c-footer__logo {
  width: 80px;
  width: 5rem;
  height: auto;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
.c-footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .c-footer__link {
    margin-left: auto;
  }
}
.c-footer__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
}
@media screen and (min-width: 768px) {
  .c-footer__text {
    font-size: 1rem;
  }
}
.c-footer__address {
  font-style: normal;
}
.c-footer__copyright {
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  text-align: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}
.c-footer__sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-footer__sns-item {
  margin-right: 24px;
  margin-right: 1.5rem;
  margin-top: 24px;
  margin-top: 1.5rem;
}
.c-footer__sns-item:last-child {
  margin-right: 0;
}
.c-footer__sns-item a {
  background: #fff;
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  border-radius: 62.4375rem;
  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;
}
@media screen and (min-width: 768px) {
  .c-footer__sns-item a {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.c-gallery {
  margin: 80px 0 40px;
  margin: 5rem 0 2.5rem;
}
@media screen and (min-width: 768px) {
  .c-gallery {
    margin: 9.375rem 0 5rem;
  }
}
.c-gallery__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .c-gallery__container {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .c-gallery__container--page {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.c-gallery__link {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 1rem;
}
.c-gallery__link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-gallery__thumbnail {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 1rem;
  opacity: 0;
  -webkit-transform: translateY(1.25rem);
          transform: translateY(1.25rem);
  -webkit-transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
  position: relative;
}
.c-gallery__thumbnail.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.c-gallery__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.c-gallery__thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  -webkit-transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.c-gallery__thumbnail::after {
  content: "View more";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  opacity: 0;
  -webkit-transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .c-gallery__thumbnail:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .c-gallery__thumbnail:hover::before {
    opacity: 1;
  }
  .c-gallery__thumbnail:hover::after {
    opacity: 1;
  }
}
.c-gallery__btn {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .c-gallery__btn {
    margin-top: 4rem;
  }
}
.c-gallery .lg-backdrop {
  z-index: 10000 !important;
}
.c-gallery .lg-container {
  z-index: 10001 !important;
}

.c-hamburger {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  width: 56px;
  width: 3.5rem;
  height: 56px;
  height: 3.5rem;
  background: #78623e;
}
@media screen and (min-width: 768px) {
  .c-hamburger {
    display: none;
  }
}
.c-hamburger__line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 32px;
  width: 2rem;
  height: 1px;
  height: 0.0625rem;
  background: #fff;
}
.c-hamburger__line:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  position: absolute;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  top: -6px;
  top: -0.375rem;
}
.c-hamburger__line:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  position: absolute;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  bottom: -6px;
  bottom: -0.375rem;
}
.c-hamburger__menu {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.c-hamburger[aria-expanded=true] .c-hamburger__line {
  background-color: transparent;
}
.c-hamburger[aria-expanded=true] .c-hamburger__line:before {
  top: 0;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-hamburger[aria-expanded=true] .c-hamburger__line:after {
  top: 0;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.c-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .c-header__nav {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 5rem;
  }
}
@media screen and (min-width: 768px) {
  .c-header__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .c-header__item {
    margin-right: 2.5rem;
    font-size: 1rem;
  }
}
.c-header__item:last-child {
  margin-right: 0;
}
.c-header__item a {
  font-weight: 700;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-header__item a:after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: #000000;
    bottom: -8px;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
}
@media screen and (min-width: 768px) {
  .c-header__item a:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}
.c-header__logo {
  width: 100px;
  width: 6.25rem;
  height: 30px;
  height: 1.875rem;
  position: relative;
  z-index: 9999;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 768px) {
  .c-header__logo {
    margin-bottom: 0;
    width: 9.375rem;
    height: 2.5rem;
  }
}
.c-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-heading {
  -webkit-margin-after: 32px;
          margin-block-end: 32px;
  -webkit-margin-after: 2rem;
          margin-block-end: 2rem;
}
@media screen and (min-width: 768px) {
  .c-heading {
    -webkit-margin-after: 4rem;
            margin-block-end: 4rem;
  }
}
.c-heading__subtitle {
  font-size: 14px;
  font-size: 0.875rem;
  color: #c7a877;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 768px) {
  .c-heading__subtitle {
    font-size: 1rem;
  }
}
.c-heading__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-heading__title {
    font-size: 2rem;
  }
}
.c-heading__text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-block;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.c-info__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 16px;
  gap: 1rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  border-bottom: solid 1px #d9d9d9;
  border-bottom: solid 0.0625rem #d9d9d9;
}
@media screen and (min-width: 768px) {
  .c-info__list {
    grid-template-columns: 11.25rem 1fr;
    gap: 2.5rem;
  }
}
.c-info__list:nth-child(1) {
  padding-top: 24px;
  padding-top: 1.5rem;
  border-top: solid 1px #d9d9d9;
  border-top: solid 0.0625rem #d9d9d9;
}
.c-info__term {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-info__term {
    font-size: 1rem;
  }
}
.c-info__description {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-info__description {
    font-size: 1rem;
  }
}

.c-modal__block {
  background: #fff;
  overflow-y: auto;
  padding: 20px 25px;
  width: 90%;
  max-width: 500px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-height: 540px;
  -webkit-animation: show 0.6s linear 0s;
          animation: show 0.6s linear 0s;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="6" /><feOffset dx="1" dy="3" result="offsetblur" /><feFlood flood-color="rgba(119,119,119,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0px 2px 6px #777);
          filter: drop-shadow(0px 2px 6px #777);
}
@media screen and (min-width: 768px) {
  .c-modal__block {
    max-width: 600px;
    max-height: 860px;
  }
}
.c-modal__content {
  display: none;
  position: fixed;
  z-index: 8887;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, .7);
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.c-modal__close {
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
  font-size: 20px;
  z-index: 1000;
}
@-webkit-keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.c-modal__small-image {
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  width: 100%;
  height: 100%;
  border-radius: 0.3125rem;
  overflow: hidden;
}
.c-modal__small-image img {
  width: 100%;
  height: 100%;
}
.c-modal__profile {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  position: relative;
}
.c-modal__profile:after {
  content: attr(data-title);
  font-size: 32px;
  font-size: 2rem;
  font-family: "Noto Sans Japanese", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo;
  font-weight: 300;
  color: #dbdbdb;
  position: absolute;
  right: 0;
  top: 0;
}
.c-modal__title {
  font-family: "Noto Sans Japanese", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .c-modal__title {
    font-size: 1.125rem;
  }
}
.c-modal__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
.c-modal__description .c-modal__text {
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-modal__description .c-modal__text {
    font-size: 0.875rem;
  }
}
.c-modal__description .c-modal__text:last-child {
  margin-bottom: 0;
}
.c-modal__text {
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  font-weight: 300;
  font-family: "Noto Sans Japanese", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo;
}
@media screen and (min-width: 768px) {
  .c-modal__text {
    font-size: 0.875rem;
  }
}
.c-modal__good-menu {
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
.c-modal__good-menu-title {
  font-size: 16px;
  font-size: 1rem;
  background: #98784d;
  color: #fff;
  display: inline-block;
  padding: 4px 24px;
  padding: 0.25rem 1.5rem;
  font-family: "Noto Sans Japanese", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo;
}
@media screen and (min-width: 768px) {
  .c-modal__good-menu-title {
    font-size: 1.125rem;
  }
}
.c-modal__list {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
}
@media screen and (min-width: 768px) {
  .c-modal__list {
    font-size: 1rem;
  }
}
.c-modal__btn {
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-modal__btn a {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  margin-left: auto;
  margin-right: auto;
}
.c-modal__btn a:last-child {
  margin-bottom: 0;
}

.c-nav {
  width: 100%;
  height: 100%;
  margin-top: 100px;
  margin-top: 6.25rem;
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-nav {
    margin-top: 0;
    padding-left: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .c-nav > * + * {
    margin-left: 1.75rem;
  }
}
.c-nav__list > * + * {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .c-nav__list > * + * {
    margin-top: 1.5rem;
  }
}
.c-nav__list:nth-child(1) {
  margin-left: 48px;
  margin-left: 3rem;
}
@media screen and (min-width: 768px) {
  .c-nav__list:nth-child(1) {
    margin-left: 0;
  }
}
.c-nav__item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-nav__item:last-child a:after {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .c-nav__item--products:hover .c-nav__dropdown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media screen and (min-width: 768px) {
  .c-nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform: translateY(0.625rem);
            transform: translateY(0.625rem);
    background: #fff;
    min-width: 12.5rem;
    padding: 1rem 0;
    border-radius: 0.25rem;
    -webkit-box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, .1);
            box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, .1);
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(1.25rem);
            transform: translateY(1.25rem);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 100;
  }
}
@media screen and (min-width: 768px) {
  .c-nav__dropdown-item {
    padding: 0.5rem 1.5rem;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .c-nav__dropdown-item:hover {
    background-color: rgba(199, 168, 119, .1);
  }
  .c-nav__dropdown-item a {
    display: block;
    font-size: 0.875rem;
    color: #333;
    white-space: nowrap;
  }
}
.c-nav__item a {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-nav__item a {
    font-size: 1rem;
    color: #000000;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.opening {
  width: 100%;
  height: 100vh;
  position: relative;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  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;
}

.opening__mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 1;
}

.opening__logo {
  display: block;
  width: 300px;
  height: auto;
  z-index: 2;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0); /*予め切り取り*/
  -webkit-transform: scale(1.1);
          transform: scale(1.1); /*予め大きくしておく*/
  opacity: 0; /*予め透明に*/
}

.c-section-subheader {
  position: relative;
}
.c-section-subheader__image {
  width: 70%;
  height: 100%;
  margin-left: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-section-subheader__image {
    width: calc(100% - 17.0625rem);
    height: 100%;
  }
}
.c-section-subheader__image:after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(314deg, rgba(118, 103, 90, .5) 0%, rgba(90, 73, 60, .5) 100%);
  position: absolute;
  inset: 0;
}
@media screen and (min-width: 768px) {
  .c-section-subheader__image:after {
    display: none;
  }
}
.c-section-subheader__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-section-subheader__catch-copy {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 5%;
}
.c-section-subheader__title {
  margin: auto;
  z-index: 2;
  font-weight: 700;
  font-size: clamp(32px, 9.091px + 7.1588vw, 64px);
  font-size: clamp(2rem, 0.5682rem + 7.1588vw, 4rem);
}
@media screen and (min-width: 768px) {
  .c-section-subheader__title {
    left: 2.5rem;
    font-size: clamp(4rem, 3.5294rem + 0.9804vw, 5rem);
  }
}
.c-section-subheader__subtitle {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-section-subheader__subtitle {
    font-size: 1rem;
  }
}

.c-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-slider .slick-slide {
  width: 340px !important;
  width: 21.25rem !important;
  height: 262px !important;
  height: 16.375rem !important;
  padding: 0 24px;
}
.c-slider__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-sub-header {
  width: 100%;
  height: 250px;
  height: 15.625rem;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-sub-header {
    height: 25rem;
  }
}
.c-sub-header[class*="--"] {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.c-sub-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .5) 100%);
  z-index: 1;
}
.c-sub-header.--about {
  background: url(../images/about/sub-header.png.webp);
  background-position: bottom;
}
.c-sub-header.--sauna {
  background: url(../images/sauna/sub-header.png.webp);
  background-position: center;
}
.c-sub-header.--blog {
  background: url(../images/blog/sub-header.jpg.webp);
}
.c-sub-header.--stove {
  background: url(../images/stove/sub-header.jpg.webp);
}
.c-sub-header.--option {
  background: url(../images/option/sub-header.png.webp);
  background-position: center;
}
.c-sub-header.--gallery {
  background: url(../images/gallery/sub-header.jpg.webp);
  background-position: center;
}
.c-sub-header.--policy {
  background: url(../images/policy/sub-header.jpg.webp);
  background-position: center;
}
.c-sub-header .l-inner {
  position: relative;
  z-index: 2;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
.c-sub-header__title {
  position: relative;
  z-index: 3;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .3);
  padding-bottom: 16px;
  padding-bottom: 1rem;
  opacity: 0;
  -webkit-transform: translateY(1.5rem);
          transform: translateY(1.5rem);
  -webkit-transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
@media screen and (min-width: 768px) {
  .c-sub-header__title {
    font-size: 2.25rem;
  }
}
.is-loaded .c-sub-header__title {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.c-sub-header__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 120px;
  width: 7.5rem;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#c7a877), color-stop(50%, rgba(255, 255, 255, .8)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, #c7a877 0%, rgba(255, 255, 255, .8) 50%, rgba(255, 255, 255, 0) 100%);
  border-radius: 2px;
}
.c-sub-header__sub-title {
  position: relative;
  z-index: 3;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
  color: #fff;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .3);
  margin-top: 24px;
  margin-top: 1.5rem;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
  background: rgba(199, 168, 119, .2);
  border-radius: 4px;
  backdrop-filter: blur(4px);
  opacity: 0;
  -webkit-transform: translateY(1.5rem);
          transform: translateY(1.5rem);
  -webkit-transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  will-change: opacity, transform;
}
@media screen and (min-width: 768px) {
  .c-sub-header__sub-title {
    font-size: 1.125rem;
  }
}
.is-loaded .c-sub-header__sub-title {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-tab {
  margin: 40px auto;
  margin: 2.5rem auto;
  /* タブメニュー */
  /* is-activeがついている時のスタイル */
  /* タブパネル */
  /* is-showがついている時のスタイル */
}
.c-tab__menu {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 50px;
  min-height: 3.125rem; /* メニュー切替時にタブがズレないように */
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .c-tab__menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end; /* メニューを下揃え&高さを調整 */
  }
}
.c-tab__menu-item {
  list-style: none;
  display: inline-block;
  padding: 12px 12px;
  padding: 0.75rem 0.75rem;
  width: 100%;
  max-width: 320px;
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  border-radius: 0.375rem;
  text-align: center;
  color: #c7a877;
  background-color: #f2f0e8;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; /* アニメーション */
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-tab__menu-item {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    margin-right: 1.5rem;
    margin-left: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .c-tab__menu-item:last-of-type {
    margin-right: 0;
  }
}
.c-tab__menu-item.is-active {
  background-color: #c7a877;
  color: #000000;
  padding: 12px 12px;
  padding: 0.75rem 0.75rem;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-tab__menu-item.is-active {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
}
.c-tab__panel {
  width: 100%;
  margin-top: 64px;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .c-tab__panel {
    margin-top: 3rem;
    max-width: 47.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.c-tab__panel-box01 {
  display: none;
}
.c-tab__panel-box02 {
  display: none;
}
.c-tab__panel-box03 {
  display: none;
}
.c-tab__panel-box.is-show {
  display: block;
}

/* エラーメッセージの上部を消去 */
div.screen-reader-response {
  display: none;
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7-form-control-wrap {
  display: block;
}

/* ラジオボタンの各項目のスタイル */
.wpcf7-list-item {
  margin-bottom: 0.5em;
  /* 項目間のスペース */
}

/* ラジオボタンのラベルスタイル */
.wpcf7-list-item label {
  display: inline-block;
  /* ラベルをブロック要素に */
  cursor: pointer;
  /* ホバー時にカーソルをポインターに */
  position: relative;
  /* ラジオボタンのカスタムスタイルの位置決めに使用 */
  line-height: 1.2;
  /* ラベルの行間 */
}

.p-contact__radio .wpcf7-list-item label {
  padding-left: 1.5em;
}

/* ラジオボタンのデフォルトスタイルを隠す */
.wpcf7-list-item input[type=radio] {
  position: absolute;
  /* 絶対位置 */
  opacity: 0;
  /* 透明にすることで非表示に */
  cursor: pointer;
  /* ホバー時にカーソルをポインターに */
}

/* カスタムラジオボタンのデザイン */
.wpcf7-list-item input[type=radio] + .wpcf7-list-item-label::before {
  content: "";
  /* 擬似要素のコンテンツ */
  position: absolute;
  /* 絶対位置 */
  left: 0;
  /* 左から0の位置に */
  top: 50%;
  /* 上から50%の位置に（中央に見えるように調整） */
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  /* Y軸で50%移動して中央に */
  width: 1em;
  /* 擬似要素の幅 */
  height: 1em;
  /* 擬似要素の高さ */
  border: 1px solid #ccc;
  /* 境界線のスタイル */
  border-radius: 50%;
  /* 円形に */
  background-color: #fff;
  /* 背景色 */
}

/* チェックされたときのカスタムラジオボタンのデザイン */
.wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::after {
  content: "";
  /* 擬似要素のコンテンツ */
  position: absolute;
  /* 絶対位置 */
  left: 0.25em;
  /* 左からの位置 */
  top: 50%;
  /* 上から50%の位置に */
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  /* Y軸で50%移動して中央に */
  width: 0.5em;
  /* 内側の円の幅 */
  height: 0.5em;
  /* 内側の円の高さ */
  border-radius: 50%;
  /* 円形に */
  background-color: #333;
  /* 内側の円の色 */
}

span.wpcf7-list-item {
  margin: 0 30px 0 0;
  /* 項目右側の余白設定と、デフォルトの左側の余白を打ち消す */
  position: relative;
}

.wpcf7-list-item-label {
  cursor: pointer;
  /* labelにhoverした時にカーソルを表示させる */
  font-size: 16px;
  /* 項目のフォントサイズ */
}

input[type=checkbox] {
  opacity: 0;
  /* デフォルトのチェックボックスを見えなくする */
  position: absolute;
}

.wpcf7-list-item-label::before {
  /* チェックボックスのデザイン */
  border: 1px solid #d9d9d9;
  content: "";
  display: inline-block;
  height: 20px;
  margin-right: 10px;
  position: relative;
  top: 4px;
  vertical-align: middle;
  width: 20px;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  /* チェックアイコン */
  background: url(../images/common/check.png) no-repeat center;
  background-size: contain;
  content: "";
  height: 15px;
  left: 2px;
  position: absolute;
  top: 6px;
  width: 15px;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  /* チェックしたボックスの背景色を設定 */
  background-color: #fff;
}

.wpcf7-form-control.wpcf7-radio.p-contact__radio-button {
  display: grid;
  grid-template-columns: 7.5rem 7.5rem;
  grid-template-rows: 1fr;
  gap: 16px 20px;
  gap: 1rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .wpcf7-form-control.wpcf7-radio.p-contact__radio-button {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    max-width: 12.5rem;
    width: 100%;
  }
}

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

.wpcf7-list-item-label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .wpcf7-list-item-label {
    font-size: 1rem;
  }
}

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

.wpcf7-form dl {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  margin-bottom: 32px;
  margin-bottom: 2rem;
  gap: 12px;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .wpcf7-form dl {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
}
.wpcf7-form dl:first-child {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.wpcf7-form dl:nth-child(5) {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.wpcf7-form dl:last-child {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 0;
}
.wpcf7-form dt {
  font-weight: 700;
}

.wpcf7-not-valid-tip {
  margin-top: 12px;
  margin-top: 0.75rem;
  display: inline-block;
  padding: 2px 8px;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  background: #222;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .wpcf7-not-valid-tip {
    font-size: 0.875rem;
  }
}

/* デフォルトのボタン */
input[type=radio] {
  opacity: 0;
  /* デフォルトのボタンを非表示 */
  position: absolute;
}

/* チェック前のボタン */
.p-contact__radio-button .wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #000000;
  border-radius: 100%;
  /* ラジオボタンっぽく丸くする */
  content: "";
  height: 1.2em;
  margin-bottom: auto;
  margin-right: 0.5em;
  margin-top: auto;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
  /* 色をじんわり変化させる */
  width: 1.2em;
}

/* チェック後のボタン */
.p-contact__radio-button input[type=radio]:checked + .wpcf7-list-item-label::before {
  background-color: #c7a877;
  /* チェック後の中心の色 */
  -webkit-box-shadow: inset 0 0 0 3px #fff;
          box-shadow: inset 0 0 0 3px #fff;
  /* 中心の色のスタイル */
}

.wpcf7-acceptance span.wpcf7-list-item {
  margin: 0 0 0 0;
  /* 項目右側の余白設定と、デフォルトの左側の余白を打ち消す */
  position: relative;
}
.wpcf7-acceptance .wpcf7-list-item-label {
  cursor: pointer;
  /* labelにhoverした時にカーソルを表示させる */
  font-size: 14px;
  /* 項目のフォントサイズ */
}
@media screen and (min-width: 768px) {
  .wpcf7-acceptance .wpcf7-list-item-label {
    font-size: 16px;
    /* 項目のフォントサイズ */
  }
}
.wpcf7-acceptance input[type=checkbox] {
  opacity: 0;
  /* デフォルトのチェックボックスを見えなくする */
  position: absolute;
}
.wpcf7-acceptance .wpcf7-list-item-label::before {
  /* チェックボックスのデザイン */
  border: 1px solid #d9d9d9;
  content: "";
  display: inline-block;
  height: 20px;
  height: 1.25rem;
  margin-right: 10px;
  position: relative;
  top: 2px;
  top: 0.125rem;
  vertical-align: middle;
  width: 20px;
  width: 1.25rem;
  background: #fff;
}
.wpcf7-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  /* チェックアイコン */
  background: url(../images/common/check.png) no-repeat center;
  background-size: contain;
  content: "";
  height: 14px;
  height: 0.875rem;
  left: 2px;
  left: 0.125rem;
  position: absolute;
  top: 4px;
  top: 0.25rem;
  width: 14px;
  width: 0.875rem;
}
.wpcf7-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  /* チェックしたボックスの背景色を設定 */
  background-color: #fff;
}

.wp-pagenavi {
  text-align: center;
}
.wp-pagenavi span {
  padding: 8px 16px;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  margin: 8px;
  margin: 0.5rem;
  border: solid 2px #222;
}
.wp-pagenavi .current {
  border-color: #222;
  color: #fff;
  background-color: #222;
}
.wp-pagenavi a {
  border-color: #222;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
  margin: 8px;
  margin: 0.5rem;
  border-radius: 0.25rem;
  border: solid 2px #222;
  color: #222;
  font-weight: 700;
}
.wp-pagenavi .wp-pagenavi span.current {
  border-color: #222 !important;
}

.p-error__inner {
  padding-top: 64px;
  padding-top: 4rem;
  padding-bottom: 64px;
  padding-bottom: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-error__inner {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.p-error__wrapper {
  margin-top: 64px;
  margin-top: 4rem;
}
.p-error__wrapper:last-child {
  margin-top: 80px;
  margin-top: 5rem;
}
.p-error__head {
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-error__head {
    margin-bottom: 2.5rem;
  }
}
.p-error__body {
  text-align: left;
}
@media screen and (min-width: 600px) {
  .p-error__body {
    text-align: center;
  }
}
.p-error__foot {
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  text-align: center;
}
.p-error__title {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-error__title {
    font-size: 1.5rem;
  }
}
.p-error__text {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-error__text {
    font-size: 1rem;
  }
}

.p-about-info {
  padding: 80px 0;
  padding: 5rem 0;
  background-color: #d1c8b9;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .p-about-info {
    padding: 9.375rem 0;
  }
}
.p-about-info__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  gap: 5rem;
  max-width: 100%;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-about-info__container {
    gap: 7.5rem;
    padding: 0 2.5rem;
  }
}
.p-about-info__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  gap: 2rem;
  background-color: #fff;
  padding: 30px;
  padding: 1.875rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
          box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
  opacity: 0;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
  max-width: 100%;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  will-change: transform, opacity;
}
.p-about-info__content.is-visible {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
@media screen and (min-width: 768px) {
  .p-about-info__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3rem;
    padding: 2.5rem;
    width: 100%;
  }
  .p-about-info__content:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.p-about-info__desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0.3s;
  transition: opacity 0.8s ease 0.3s;
  max-width: 100%;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  will-change: opacity;
}
.is-visible .p-about-info__desc {
  opacity: 1;
}
.p-about-info__sub-title {
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: #c7a877;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  -webkit-box-shadow: 0 2px 8px rgba(199, 168, 119, .2);
          box-shadow: 0 2px 8px rgba(199, 168, 119, .2);
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .p-about-info__sub-title {
    font-size: 1rem;
    margin-bottom: 1rem;
    padding: 0.625rem 1.25rem;
  }
}
.p-about-info__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  line-height: 1.4;
  color: #333;
  position: relative;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  max-width: 100%;
  overflow: hidden;
  word-wrap: break-word;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.p-about-info__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  width: 2.5rem;
  height: 2px;
  background-color: #c7a877;
}
@media screen and (min-width: 768px) {
  .p-about-info__title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
}
.p-about-info__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  color: #666;
  letter-spacing: 0.05em;
  max-width: 100%;
  overflow: hidden;
  word-wrap: break-word;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .p-about-info__text {
    font-size: 1rem;
  }
}
.p-about-info__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0.3s;
  transition: opacity 0.8s ease 0.3s;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  will-change: opacity;
}
.p-about-info__image--video {
  overflow: visible;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
}
.p-about-info__image video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  will-change: transform;
  border-radius: 0.5rem;
}
.is-visible .p-about-info__image {
  opacity: 1;
}
.p-about-info__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  will-change: transform;
}
.p-about-info__image img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.p-about-intro {
  margin: 80px 0;
  margin: 5rem 0;
}
@media screen and (min-width: 768px) {
  .p-about-intro {
    margin: 9.375rem 0;
  }
}
.p-about-intro .c-heading {
  text-align: center;
  margin-bottom: 48px;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .p-about-intro .c-heading {
    margin-bottom: 5rem;
  }
}
.p-about-intro__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  gap: 1.5rem;
  overflow-x: auto;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 4px 20px;
  padding: 0.25rem 0.25rem 1.25rem;
  margin: -4px -4px -20px;
  margin: -0.25rem -0.25rem -1.25rem;
}
.p-about-intro__links::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-about-intro__links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    overflow-x: visible;
    -ms-scroll-snap-type: none;
        scroll-snap-type: none;
    padding: 0;
    margin: 0;
  }
}
.p-about-intro__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-about-intro__title-wrap {
    gap: 1.5rem;
  }
}
.p-about-intro__title {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #c7a877;
}
@media screen and (min-width: 768px) {
  .p-about-intro__title {
    font-size: 1.125rem;
  }
}
.p-about-intro__icon {
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  background-color: #c7a877;
  border-radius: 50%;
  padding: 6px;
  padding: 0.375rem;
  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;
}
@media screen and (min-width: 768px) {
  .p-about-intro__icon {
    width: 3rem;
    height: 3rem;
    padding: 0.5rem;
  }
}
.p-about-intro__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .p-about-intro__text {
    font-size: 1rem;
  }
}
.p-about-intro a {
  display: block;
  background: #fff;
  padding: 24px;
  padding: 1.5rem;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, .1);
          box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, .1);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  scroll-snap-align: center;
  width: calc(100% - 2rem);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media screen and (min-width: 768px) {
  .p-about-intro a {
    width: 100%;
  }
}
@media (hover: hover) {
  .p-about-intro a:hover {
    -webkit-transform: translateY(-0.25rem);
            transform: translateY(-0.25rem);
    background: #f7f7f7;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
  }
}

.p-archive__inner {
  padding-top: 64px;
  padding-top: 4rem;
  padding-bottom: 64px;
  padding-bottom: 4rem;
  max-width: 400px;
  max-width: 25rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-archive__inner {
    max-width: 100%;
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}
.p-archive__wrapper a:last-child {
  border-bottom: solid 1px #707070;
  padding-bottom: 16px;
  padding-bottom: 1rem;
}
.p-archive__wrapper > * + * {
  border-top: solid 1px #707070;
  margin-top: 16px;
  margin-top: 1rem;
  padding-top: 16px;
  padding-top: 1rem;
}
.p-archive__card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-archive__card-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
}
.p-archive__pagenation {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-archive__pagenation {
    margin-top: 4rem;
  }
}
.p-archive__foot {
  margin-top: 64px;
  margin-top: 4rem;
}

.p-contact__inner {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 48px;
  padding-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .p-contact__inner {
    padding-top: 11.25rem;
    padding-bottom: 5rem;
  }
}
.p-contact__heading {
  position: relative;
  text-align: center;
}
.p-contact__heading:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -80px;
  top: -5rem;
  margin: auto;
  width: auto;
  height: 80px;
  height: 5rem;
  width: 291px;
  width: 18.1875rem;
  background-image: url(../images/contact/form.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-contact__heading:after {
    top: -5rem;
    width: 32.375rem;
    height: 8.875rem;
  }
}
.p-contact__heading-subtitle {
  font-size: 14px;
  font-size: 0.875rem;
  color: #c7a877;
  font-weight: 700;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .p-contact__heading-subtitle {
    font-size: 1rem;
  }
}
.p-contact__heading-title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .p-contact__heading-title {
    font-size: 2.5rem;
  }
}
.p-contact__wrapper {
  width: 100%;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact__wrapper {
    margin-top: 4rem;
    max-width: 48.125rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-contact__head {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-contact__head {
    text-align: center;
    margin-bottom: 3rem;
  }
}
.p-contact__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-contact__foot {
  text-align: center;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-contact__foot {
    margin-top: 2.5rem;
  }
}
.p-contact__foot input {
  margin-left: auto;
  margin-right: auto;
}
.p-contact__input {
  border: solid 1px #d9d9d9;
  border: solid 0.0625rem #d9d9d9;
  border-radius: 0.5rem;
  font-size: 16px;
  font-size: 1rem;
  width: 100%;
  max-width: 100%;
  padding: 12px 14px;
  padding: 0.75rem 0.875rem;
  letter-spacing: 0.07em;
  margin-right: -0.07em;
  background: #fff;
}
@media screen and (min-width: 600px) {
  .p-contact__input {
    max-width: 23.75rem;
  }
}
@media screen and (min-width: 768px) {
  .p-contact__input {
    max-width: 100%;
    padding: 0.875rem 1.25rem;
  }
}
.p-contact__input::-webkit-input-placeholder {
  color: #cecece;
  font-size: 14px;
  font-size: 0.875rem;
}
.p-contact__input::-moz-placeholder {
  color: #cecece;
  font-size: 14px;
  font-size: 0.875rem;
}
.p-contact__input::-ms-input-placeholder {
  color: #cecece;
  font-size: 14px;
  font-size: 0.875rem;
}
.p-contact__input::placeholder {
  color: #cecece;
  font-size: 14px;
  font-size: 0.875rem;
}
.p-contact__input:focus::-webkit-input-placeholder {
  color: #555;
  opacity: 0.6;
}
.p-contact__input:focus::-moz-placeholder {
  color: #555;
  opacity: 0.6;
}
.p-contact__input:focus::-ms-input-placeholder {
  color: #555;
  opacity: 0.6;
}
.p-contact__input:focus::placeholder {
  color: #555;
  opacity: 0.6;
}
.p-contact__textarea {
  border: solid 1px #d9d9d9;
  border: solid 0.0625rem #d9d9d9;
  border-radius: 0.5rem;
  font-size: 16px;
  font-size: 1rem;
  width: 100%;
  max-width: 100%;
  padding: 12px 14px;
  padding: 0.75rem 0.875rem;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-contact__textarea {
    max-width: 100%;
    padding: 0.875rem 1.25rem;
  }
}
.p-contact__textarea::-webkit-input-placeholder {
  color: #cecece;
  font-size: 14px;
  font-size: 0.875rem;
}
.p-contact__textarea::-moz-placeholder {
  color: #cecece;
  font-size: 14px;
  font-size: 0.875rem;
}
.p-contact__textarea::-ms-input-placeholder {
  color: #cecece;
  font-size: 14px;
  font-size: 0.875rem;
}
.p-contact__textarea::placeholder {
  color: #cecece;
  font-size: 14px;
  font-size: 0.875rem;
}
.p-contact__textarea:focus::-webkit-input-placeholder {
  color: #555;
  opacity: 0.6;
}
.p-contact__textarea:focus::-moz-placeholder {
  color: #555;
  opacity: 0.6;
}
.p-contact__textarea:focus::-ms-input-placeholder {
  color: #555;
  opacity: 0.6;
}
.p-contact__textarea:focus::placeholder {
  color: #555;
  opacity: 0.6;
}
.p-contact__textarea--address {
  height: 80px;
  height: 5rem;
  padding: 4px 14px;
  padding: 0.25rem 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-contact__textarea--address {
    padding: 0.75rem 1.25rem;
  }
}
.p-contact__radio {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact__radio {
    max-width: 21.875rem;
    grid-template-columns: 1fr 1fr;
  }
}
.p-contact__radio span.wpcf7-list-item {
  margin: 0;
}
.p-contact__checkbox {
  position: relative;
  display: block;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 24px;
  gap: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-contact__checkbox {
    grid-template-columns: 12.5rem 12.5rem;
  }
}
.p-contact__checkbox input {
  display: none;
}
.p-contact__checkbox input:checked + .c-button__checkmark:after {
  opacity: 1;
}
.p-contact__checkbox span.wpcf7-list-item {
  margin-right: 0;
}
.p-contact__title {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-right: -0.01em;
}
@media screen and (min-width: 768px) {
  .p-contact__title {
    font-size: 1rem;
  }
}
.p-contact__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
}
@media screen and (min-width: 768px) {
  .p-contact__text {
    font-size: 1rem;
  }
}
.p-contact__text--primary {
  background: #f94b4b;
  color: #fff;
  display: inline-block;
  padding: 2px 10px;
  padding: 0.125rem 0.625rem;
  font-size: 12px;
  font-size: 0.75rem;
  margin-left: 12px;
  margin-left: 0.75rem;
  border-radius: 0.25rem;
}
.p-contact__text--secondary {
  background: #909090;
  color: #fff;
  display: inline-block;
  padding: 2px 10px;
  padding: 0.125rem 0.625rem;
  font-size: 12px;
  font-size: 0.75rem;
  margin-left: 12px;
  margin-left: 0.75rem;
  border-radius: 0.25rem;
}
.p-contact__pp {
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  background: #fafafa;
  margin-top: 48px;
  margin-top: 3rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact__pp {
    margin-top: 2.5rem;
  }
}
.p-contact__pp a {
  text-decoration: underline;
  color: #3952d2;
}
.p-contact__day {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 4px;
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__day {
    grid-template-columns: 5rem 1fr;
    gap: 1.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-contact dd .p-contact__day {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact dd .p-contact__day {
    margin-bottom: 1rem;
  }
}
.p-contact dd .p-contact__day:last-child {
  margin-bottom: 0;
}

.grecaptcha-badge {
  visibility: hidden;
}

.p-footer {
  background: #726c64;
  color: #fff;
  position: relative;
}
.p-footer__info {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__info {
    margin-bottom: 0;
  }
}
.p-footer__wrap {
  margin-left: auto;
}
.p-footer__tel a {
  font-size: 48px;
  font-size: 3rem;
  font-weight: 600;
}
.p-footer__title {
  font-size: 48px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .p-footer__title {
    font-size: 4rem;
  }
}
.p-footer__logo {
  width: 120px;
  width: 7.5rem;
  height: auto;
}
.p-footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-footer__text {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__text {
    font-size: 1rem;
  }
}
.p-footer__text--lg {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}
.p-footer__text--sm {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 24px;
  margin-top: 1.5rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-footer__text--sm {
    font-size: 0.875rem;
  }
}
.p-footer__copy-text {
  color: #c8c8c8;
  font-size: 12px;
  font-size: 0.75rem;
  position: relative;
  z-index: 3;
}
.p-footer__copyright {
  padding: 24px 0;
  padding: 1.5rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.p-footer__nav-inner {
  padding-top: 48px;
  padding-top: 3rem;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .p-footer__nav-inner {
    padding-top: 5rem;
    padding-bottom: 5rem;
    display: grid;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    grid-template-columns: 23.75rem 1fr;
    gap: 2.5rem;
  }
}
.p-footer__fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 100;
  width: 100%;
  background: rgba(0, 0, 0, .8);
  display: none;
}
@media screen and (min-width: 768px) {
  .p-footer__fixed-container {
    display: grid;
    max-width: 75rem;
    padding: 0.75rem 1.25rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: auto;
    grid-template-columns: 0.16fr 1fr 0.8fr;
    gap: 2rem;
  }
}
.p-footer__fixed-container img {
  height: auto;
  width: 100%;
}
.p-footer__fixed-mobile-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.p-footer__fixed-textarea .p-footer__text {
  margin-top: 12px;
  margin-top: 0.75rem;
  font-size: 15px;
  font-size: 0.9375rem;
}
.p-footer__fixed-link {
  background: #C04F15;
  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;
  height: 100%;
  width: 100%;
  border-radius: 0.5rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
}
.p-footer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 56px;
  height: 3.5rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-footer__link:hover {
  opacity: 0.8;
}
.p-footer__link:nth-child(1) {
  background: #06c755;
}
.p-footer__link:nth-child(1) figure {
  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;
  margin: auto;
  width: 117px;
  width: 7.3125rem;
  height: 18px;
  height: 1.125rem;
}
.p-footer__link:nth-child(1) svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-footer__link:nth-child(2) {
  background: #c7a877;
}
.p-footer__link:nth-child(2) figure {
  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;
  margin: auto;
  width: 123px;
  width: 7.6875rem;
  height: 15px;
  height: 0.9375rem;
}
.p-footer__link:nth-child(2) svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-footer__link a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-about {
  margin: 80px 0;
  margin: 5rem 0;
}
@media screen and (min-width: 768px) {
  .p-about {
    margin: 7.5rem 0;
  }
}
.p-about__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .p-about__container {
    grid-template-columns: 1fr 1fr;
  }
}
.p-about__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-about__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}
.p-about__item {
  position: relative;
  padding-left: 24px;
  padding-left: 1.5rem;
  line-height: 1.7;
}
.p-about__item {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
}
@media screen and (min-width: 768px) {
  .p-about__item {
    font-size: 1rem;
  }
}
.p-about__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  top: 0.5rem;
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  background-color: #c7a877;
  border-radius: 50%;
}
.p-about__btn {
  margin-top: 32px;
  margin-top: 2rem;
}
.p-about__images {
  position: relative;
  width: 100%;
  height: auto;
}
.p-about__images .slick-slide {
  height: 100%;
}
.p-about__images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-about .c-heading {
  text-align: left;
}

.p-company {
  margin: 80px 0 48px;
  margin: 5rem 0 3rem;
}
@media screen and (min-width: 768px) {
  .p-company {
    margin: 7.5rem 0 4rem;
  }
}
.p-company .l-inner {
  max-width: 800px;
  max-width: 50rem;
}
.p-company .c-heading {
  text-align: center;
}

.p-faq {
  margin: 80px 0;
  margin: 5rem 0;
}
@media screen and (min-width: 768px) {
  .p-faq {
    margin: 7.5rem 0;
  }
}
.p-faq .c-heading {
  text-align: center;
}

.p-mainview {
  position: relative;
  width: 100%;
  height: calc(100vh - 2.5rem);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-mainview {
    height: calc(100vh - 3.9375rem);
  }
}
.p-mainview__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.p-mainview__video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .6) 100%);
  z-index: 2;
}
.p-mainview__video-content {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 8s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.is-loaded .p-mainview__video-content {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.p-mainview img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-mainview__title {
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
  line-height: 1.85;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .3);
  opacity: 0;
  -webkit-transform: translateY(1.25rem);
          transform: translateY(1.25rem);
  -webkit-transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  will-change: transform, opacity;
}
@media screen and (min-width: 768px) {
  .p-mainview__title {
    font-size: 2rem;
  }
}
.is-loaded .p-mainview__title {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.p-mainview__title::after {
  content: "";
  display: block;
  width: 120px;
  width: 7.5rem;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#c7a877), color-stop(50%, rgba(255, 255, 255, .8)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, #c7a877 0%, rgba(255, 255, 255, .8) 50%, rgba(255, 255, 255, 0) 100%);
  margin-top: 16px;
  margin-top: 1rem;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
  transition: -webkit-transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s, -webkit-transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
  border-radius: 2px;
}
.is-loaded .p-mainview__title::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.p-mainview__sub-title {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
  -webkit-margin-before: 16px;
          margin-block-start: 16px;
  -webkit-margin-before: 1rem;
          margin-block-start: 1rem;
  line-height: 2;
  letter-spacing: 0.1em;
  opacity: 0;
  -webkit-transform: translateY(1.25rem);
          transform: translateY(1.25rem);
  -webkit-transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
  will-change: transform, opacity;
  position: relative;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-mainview__sub-title {
    font-size: 1rem;
  }
}
.p-mainview__sub-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(199, 168, 119, .4) 0%, rgba(199, 168, 119, .2) 50%, rgba(199, 168, 119, .1) 100%);
  backdrop-filter: blur(4px);
  border-radius: 4px;
  z-index: -1;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
          box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}
.is-loaded .p-mainview__sub-title {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.p-mainview__btn {
  margin-top: 40px;
  margin-top: 2.5rem;
  opacity: 0;
  -webkit-transform: translateY(1.25rem);
          transform: translateY(1.25rem);
  -webkit-transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
  will-change: transform, opacity;
}
.is-loaded .p-mainview__btn {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.p-mainview__btn .c-button__primary {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-mainview__btn .c-button__primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, .2)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-mainview__btn .c-button__primary:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
          box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
}
.p-mainview__btn .c-button__primary:hover::before {
  left: 100%;
}
.p-mainview .l-inner {
  position: relative;
  height: 100%;
  max-width: 100%;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 3;
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-mainview .l-inner {
    margin-left: 5rem;
    padding: 0;
  }
}

.p-mainview__title, .p-mainview__sub-title, .p-mainview__btn {
  opacity: 0;
  -webkit-transform: translateY(1.25rem);
          transform: translateY(1.25rem);
}
.p-mainview__title::after {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.p-mainview.is-loaded .p-mainview__title,
.p-mainview.is-loaded .p-mainview__sub-title,
.p-mainview.is-loaded .p-mainview__btn {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.p-mainview.is-loaded .p-mainview__title::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.p-news {
  margin: 80px 0;
  margin: 5rem 0;
}
@media screen and (min-width: 768px) {
  .p-news {
    margin: 9.375rem 0;
  }
}
.p-news.--category {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .p-news.--category .p-news__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    overflow-x: visible;
    -ms-scroll-snap-type: none;
        scroll-snap-type: none;
    padding: 0;
    margin: 0;
  }
  .p-news.--category .p-news__item {
    width: 100%;
  }
}
.p-news.--top {
  margin-bottom: 0;
}
.p-news .c-heading {
  text-align: center;
}
.p-news__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
  overflow-x: auto;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 8px 24px;
  padding: 0.5rem 0.5rem 1.5rem;
  margin: -8px -8px -24px;
  margin: -0.5rem -0.5rem -1.5rem;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}
.p-news__container::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}
@media screen and (min-width: 768px) {
  .p-news__container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    overflow-x: visible;
    -ms-scroll-snap-type: none;
        scroll-snap-type: none;
    padding: 0;
    margin: 0;
  }
}
.p-news__item {
  display: block;
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, .1);
          box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, .1);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  scroll-snap-align: center;
  width: calc(100% - 2rem);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media screen and (min-width: 768px) {
  .p-news__item {
    width: 100%;
  }
}
@media (hover: hover) {
  .p-news__item:hover {
    -webkit-transform: translateY(-0.25rem);
            transform: translateY(-0.25rem);
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
  }
  .p-news__item:hover .c-button__more:after {
    right: -1.25rem;
  }
}
.p-news__thumbnail {
  width: 100%;
  height: 200px;
  height: 12.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-news__thumbnail {
    height: 15rem;
  }
}
.p-news__body {
  padding: 20px;
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-news__body {
    padding: 1.5rem;
  }
}
.p-news__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  gap: 0.5rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}
.p-news__category {
  display: inline-block;
  padding: 4px 8px;
  padding: 0.25rem 0.5rem;
  background: #c7a877;
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  border-radius: 0.25rem;
}
.p-news__tag {
  display: inline-block;
  padding: 4px 8px;
  padding: 0.25rem 0.5rem;
  background: #333;
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  border-radius: 0.25rem;
}
.p-news__title {
  font-weight: 700;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-news__title {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
}
@media screen and (min-width: 768px) {
  .p-news__title {
    font-size: 1.25rem;
  }
}
.p-news__text {
  color: #333;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-news__text {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
}
@media screen and (min-width: 768px) {
  .p-news__text {
    font-size: 1rem;
  }
}

.p-top-archive {
  margin: 80px 0;
  margin: 5rem 0;
}
@media screen and (min-width: 768px) {
  .p-top-archive {
    margin: 9.375rem 0;
  }
}
.p-top-archive .c-heading {
  text-align: center;
}
.p-top-archive__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .p-top-archive__container {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}
.p-top-archive__item {
  text-align: center;
  -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;
}
@media (hover: hover) {
  .p-top-archive__item:hover {
    -webkit-transform: translateY(-0.25rem);
            transform: translateY(-0.25rem);
  }
  .p-top-archive__item:hover .c-button__primary {
    background: #c7a877;
    color: #fff;
    opacity: 1;
  }
  .p-top-archive__item:hover .c-button__primary:after {
    right: 1.25rem;
  }
}
.p-top-archive a {
  display: block;
  width: 100%;
  height: auto;
}
.p-top-archive a img {
  width: 100%;
  height: auto;
}
.p-top-archive__item--small {
  max-width: 800px;
  max-width: 50rem;
  margin-inline: auto;
}
.p-top-archive__textarea {
  margin-top: 24px;
  margin-top: 1.5rem;
}
.p-top-archive__textarea > * + * {
  margin-top: 12px;
  margin-top: 0.75rem;
}
.p-top-archive__title {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-right: -0.05em;
}
@media screen and (min-width: 768px) {
  .p-top-archive__title {
    font-size: 1.25rem;
  }
}
.p-top-archive__text {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
}
.p-top-archive__btn {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-sub-header {
  width: 100%;
  height: 100%;
}
.p-sub-header img {
  width: 100%;
  height: 100%;
}

.p-privacy-policy__inner {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy__inner {
    padding-top: 0;
    padding-bottom: 7.5rem;
  }
}
.p-privacy-policy__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy__wrapper {
    margin-top: 4rem;
  }
}
.p-privacy-policy__content {
  margin-bottom: 48px;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy__content {
    margin-bottom: 4.375rem;
  }
}
.p-privacy-policy__content:last-child {
  margin-bottom: 0;
}
.p-privacy-policy__head {
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy__head {
    margin-bottom: 1rem;
  }
}
.p-privacy-policy__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-right: -0.04em;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy__title {
    font-size: 1.5rem;
  }
}
.p-privacy-policy__text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-right: -0.04em;
  line-height: 1.75;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy__text {
    font-size: 1rem;
  }
}

.p-sauna-lineup {
  padding: 60px 0;
  padding: 3.75rem 0;
  background: #fafafa;
}
@media screen and (min-width: 768px) {
  .p-sauna-lineup {
    padding: 5rem 0;
  }
}
.p-sauna-lineup__conttainer {
  margin-top: 32px;
  margin-top: 2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-sauna-lineup__conttainer {
    margin-top: 2.5rem;
  }
}
.p-sauna-lineup__section {
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(199, 168, 119, .1);
}
@media screen and (min-width: 768px) {
  .p-sauna-lineup__section {
    margin-bottom: 5rem;
    padding-bottom: 3.75rem;
  }
}
.p-sauna-lineup__section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.p-sauna-lineup__section-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  color: #1a1a1a;
  text-align: center;
  position: relative;
  padding-bottom: 16px;
  padding-bottom: 1rem;
}
.p-sauna-lineup__section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40px;
  width: 2.5rem;
  height: 2px;
  height: 0.125rem;
  background: -webkit-gradient(linear, left top, right top, from(#c7a877), to(#e5c9a7));
  background: linear-gradient(90deg, #c7a877, #e5c9a7);
  border-radius: 0.125rem;
}
@media screen and (min-width: 768px) {
  .p-sauna-lineup__section-title {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.25rem;
  }
  .p-sauna-lineup__section-title::after {
    width: 3.75rem;
  }
}
.p-sauna-lineup__content {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-sauna-lineup__content {
    margin-bottom: 3.75rem;
  }
}
.p-sauna-lineup__content--indoor {
  margin-top: 60px;
  margin-top: 3.75rem;
  padding-top: 40px;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(199, 168, 119, .1);
}
@media screen and (min-width: 768px) {
  .p-sauna-lineup__content--indoor {
    margin-top: 5rem;
    padding-top: 3.75rem;
  }
}
.p-sauna-lineup__desc {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-sauna-lineup__desc {
    margin-bottom: 0;
  }
}
.p-sauna-lineup__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  color: #1a1a1a;
  position: relative;
  padding-left: 12px;
  padding-left: 0.75rem;
  letter-spacing: -0.02em;
}
.p-sauna-lineup__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2px;
  width: 0.125rem;
  height: 24px;
  height: 1.5rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#c7a877), to(#e5c9a7));
  background: linear-gradient(to bottom, #c7a877, #e5c9a7);
  border-radius: 0.125rem;
}
@media screen and (min-width: 768px) {
  .p-sauna-lineup__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
  }
  .p-sauna-lineup__title::before {
    width: 0.1875rem;
    height: 1.75rem;
  }
}
.p-sauna-lineup__title--small {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  color: #c7a877;
  padding-left: 0;
  background: linear-gradient(45deg, #c7a877, #e5c9a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-sauna-lineup__title--small::before {
  display: none;
}
.p-sauna-lineup__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  gap: 0.5rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(199, 168, 119, .2);
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
@media screen and (min-width: 768px) {
  .p-sauna-lineup__tab {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
  }
}
.p-sauna-lineup__tab::-webkit-scrollbar {
  display: none;
}
.p-sauna-lineup__tab-btn {
  padding: 8px 16px;
  padding: 0.5rem 1rem;
  background: transparent;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #666;
  position: relative;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-sauna-lineup__tab-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
  }
}
.p-sauna-lineup__tab-btn.is-active {
  color: #c7a877;
  font-weight: 700;
  background: rgba(199, 168, 119, .1);
}
.p-sauna-lineup__tab-btn.is-active::after {
  content: "";
  position: absolute;
  bottom: -11px;
  bottom: -0.6875rem;
  left: 0;
  width: 100%;
  height: 2px;
  height: 0.125rem;
  background: -webkit-gradient(linear, left top, right top, from(#c7a877), to(#e5c9a7));
  background: linear-gradient(90deg, #c7a877, #e5c9a7);
  border-radius: 0.125rem;
}
@media screen and (min-width: 768px) {
  .p-sauna-lineup__tab-btn.is-active::after {
    bottom: -0.8125rem;
  }
}
.p-sauna-lineup__tab-btn:hover {
  color: #c7a877;
  background: rgba(199, 168, 119, .05);
}
.p-sauna-lineup__tab-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  gap: 1.5rem;
  -webkit-animation: fadeIn 0.5s ease-out;
          animation: fadeIn 0.5s ease-out;
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-sauna-lineup__tab-panel {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
.p-sauna-lineup__tab-panel.is-active {
  opacity: 1;
  visibility: visible;
  height: auto;
}
.p-sauna-lineup__tab-content {
  position: relative;
}
.p-sauna-lineup__text {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: #666;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-sauna-lineup__text {
    font-size: 0.875rem;
  }
}
.p-sauna-lineup__text--lg {
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  background: #fff;
  border-radius: 0.75rem;
  padding: 16px;
  padding: 1rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #333;
  border: 1px solid rgba(199, 168, 119, .2);
  -webkit-box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, .03);
          box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, .03);
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-sauna-lineup__text--lg {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    padding: 1.5rem;
  }
}
.p-sauna-lineup__text--item {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  margin: 0;
  color: #333;
}
.p-sauna-lineup__text--price {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 6px;
  gap: 0.375rem;
  background: linear-gradient(45deg, #c7a877, #e5c9a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-sauna-lineup__text--price span {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: normal;
  color: #666;
  -webkit-text-fill-color: #666;
}
.p-sauna-lineup__text--size {
  font-size: 15px;
  font-size: 0.9375rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
  padding: 12px;
  padding: 0.75rem;
  background: #f8f8f8;
  border-radius: 0.5rem;
  border: 1px solid rgba(199, 168, 119, .1);
}
.p-sauna-lineup__text--size span {
  color: #666;
  font-size: 13px;
  font-size: 0.8125rem;
}
.p-sauna-lineup__info {
  background: #fff;
  border-radius: 0.75rem;
  padding: 12px;
  padding: 0.75rem;
  -webkit-box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, .03);
          box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, .03);
}
@media screen and (min-width: 768px) {
  .p-sauna-lineup__info {
    padding: 1.5rem;
  }
}
.p-sauna-lineup__header {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(199, 168, 119, .1);
}
.p-sauna-lineup--small {
  margin-bottom: 0;
  padding-bottom: 0;
}
.p-sauna-lineup__product-name {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-sauna-lineup__product-name {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
}
.p-sauna-lineup__price {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 6px;
  gap: 0.375rem;
  background: linear-gradient(45deg, #c7a877, #e5c9a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .p-sauna-lineup__price {
    font-size: 1.75rem;
    gap: 0.5rem;
  }
}
.p-sauna-lineup__price span {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: normal;
  color: #666;
  -webkit-text-fill-color: #666;
}
@media screen and (min-width: 768px) {
  .p-sauna-lineup__price span {
    font-size: 0.875rem;
  }
}
.p-sauna-lineup__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  gap: 0.5rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  padding: 16px;
  padding: 1rem;
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid rgba(199, 168, 119, .08);
  -webkit-box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, .02);
          box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, .02);
}
@media screen and (min-width: 768px) {
  .p-sauna-lineup__specs {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
  }
}
.p-sauna-lineup__spec-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  gap: 0.125rem;
  padding: 10px;
  padding: 0.625rem;
  background: #fafafa;
  border-radius: 0.375rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-sauna-lineup__spec-item {
    padding: 0.75rem;
  }
}
.p-sauna-lineup__spec-item:hover {
  background: #f5f5f5;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.p-sauna-lineup__spec-label {
  font-size: 11px;
  font-size: 0.6875rem;
  color: #888;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
  margin-bottom: 0.125rem;
}
@media screen and (min-width: 768px) {
  .p-sauna-lineup__spec-label {
    font-size: 0.75rem;
  }
}
.p-sauna-lineup__spec-value {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #333;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-sauna-lineup__spec-value {
    font-size: 0.9375rem;
  }
}
.p-sauna-lineup__block {
  margin-bottom: 16px;
  margin-bottom: 1rem;
  padding: 16px;
  padding: 1rem;
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid rgba(199, 168, 119, .08);
  -webkit-box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, .02);
          box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, .02);
}
@media screen and (min-width: 768px) {
  .p-sauna-lineup__block {
    margin-bottom: 1.25rem;
    padding: 1.25rem;
  }
}
.p-sauna-lineup__block:last-child {
  margin-bottom: 0;
}
.p-sauna-lineup__block--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  gap: 0.75rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
  border: none;
}
@media screen and (min-width: 768px) {
  .p-sauna-lineup__block--grid {
    gap: 1rem;
  }
}
.p-sauna-lineup__notice {
  background: #fff8f0;
  border-color: rgba(199, 168, 119, .2);
}
.p-sauna-lineup__notice .p-sauna-lineup__title--small {
  color: #c7a877;
}
.p-sauna-lineup__notice-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-sauna-lineup__notice-list li {
  font-size: 14px;
  font-size: 0.875rem;
  color: #666;
  line-height: 1.6;
  padding-left: 16px;
  padding-left: 1rem;
  position: relative;
}
.p-sauna-lineup__notice-list li::before {
  content: "※";
  position: absolute;
  left: 0;
  color: #c7a877;
}
.p-sauna-lineup__notice-list li + li {
  margin-top: 8px;
  margin-top: 0.5rem;
}
.p-sauna-lineup__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  gap: 0.75rem;
  padding: 16px;
  padding: 1rem;
  background: #fff;
  border-radius: 0.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid rgba(199, 168, 119, .1);
  -webkit-box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, .02);
          box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, .02);
}
.p-sauna-lineup__item:hover {
  background: #fafafa;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, .03);
          box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, .03);
}
@media screen and (min-width: 768px) {
  .p-sauna-lineup__item {
    padding: 1.25rem;
  }
}
.p-sauna-lineup__icon {
  width: 28px;
  width: 1.75rem;
  height: 28px;
  height: 1.75rem;
  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;
  background: #fff;
  border-radius: 0.375rem;
  padding: 5px;
  padding: 0.3125rem;
  -webkit-box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, .03);
          box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, .03);
  border: 1px solid rgba(199, 168, 119, .1);
}
.p-sauna-lineup__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-sauna-lineup__images {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
@media screen and (min-width: 768px) {
  .p-sauna-lineup__images {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.p-sauna-lineup__slider {
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-sauna-lineup__slider {
    margin-bottom: 1rem;
  }
}
.p-sauna-lineup__slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
  -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-sauna-lineup__slide img:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.p-sauna-lineup__thumbnails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  gap: 0.375rem;
  padding: 2px;
  padding: 0.125rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 12px;
  padding: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-sauna-lineup__thumbnails {
    gap: 0.5rem;
    padding: 0.5rem;
  }
}
.p-sauna-lineup__thumbnails::-webkit-scrollbar {
  display: none;
}
.p-sauna-lineup__thumb {
  width: 70px;
  width: 4.375rem;
  height: 52px;
  height: 3.25rem;
  cursor: pointer;
  opacity: 0.6;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0.375rem;
  overflow: hidden;
  border: 2px solid transparent;
}
@media screen and (min-width: 768px) {
  .p-sauna-lineup__thumb {
    width: 5rem;
    height: 3.75rem;
  }
}
.p-sauna-lineup__thumb.is-active {
  opacity: 1;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  border-color: #c7a877;
  -webkit-box-shadow: 0 0.125rem 0.5rem rgba(199, 168, 119, .15);
          box-shadow: 0 0.125rem 0.5rem rgba(199, 168, 119, .15);
}
.p-sauna-lineup__thumb:hover {
  opacity: 0.8;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.p-sauna-lineup__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -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-sauna-lineup__thumb img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.p-sauna-lineup__title--small {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  color: #333;
  padding-left: 0;
  background: none;
  -webkit-text-fill-color: #333;
}
.p-sauna-lineup__title--small::before {
  display: none;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-single__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-single__meta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 1rem;
  }
}
.p-single__category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  gap: 0.5rem;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-single__category-list {
    margin-top: 0rem;
  }
}
.p-single__category-item {
  display: inline-block;
  padding: 4px 12px;
  padding: 0.25rem 0.75rem;
  font-size: 11px;
  font-size: 0.6875rem;
  color: #fff;
  border-radius: 0.25rem;
  background: rgba(152, 120, 77, .7176470588);
}
@media screen and (min-width: 768px) {
  .p-single__category-item {
    font-size: 0.75rem;
  }
}
.p-single__body {
  margin-bottom: 48px;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .p-single__body {
    margin-bottom: 6rem;
  }
}
.p-single__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-single__description h1 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-top: 24px;
  margin-top: 1.5rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  font-weight: 700;
  border-bottom: solid 1px #c7a877;
  border-bottom: solid 0.0625rem #c7a877;
}
@media screen and (min-width: 768px) {
  .p-single__description h1 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
  }
}
.p-single__description h2 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-top: 24px;
  margin-top: 1.5rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  font-weight: 700;
  border-bottom: solid 1px #c7a877;
  border-bottom: solid 0.0625rem #c7a877;
}
@media screen and (min-width: 768px) {
  .p-single__description h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
  }
}
.p-single__description h3 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-top: 24px;
  margin-top: 1.5rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  padding: 8px 12px 8px 16px;
  padding: 0.5rem 0.75rem 0.5rem 1rem;
  font-weight: 700;
  border-left: solid 2px #c7a877;
  border-left: solid 0.125rem #c7a877;
  background: #f8f8f8;
}
@media screen and (min-width: 768px) {
  .p-single__description h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1rem 0.75rem 1.5rem;
  }
}
.p-single__description h4 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 24px;
  margin-top: 1.5rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: #c7a877;
}
@media screen and (min-width: 768px) {
  .p-single__description h4 {
    font-size: 1.125rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
}
.p-single__description h5 {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-top: 24px;
  margin-top: 1.5rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: #c7a877;
}
@media screen and (min-width: 768px) {
  .p-single__description h5 {
    font-size: 1.0625rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
}
.p-single__description h6 {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 24px;
  margin-top: 1.5rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: #c7a877;
}
@media screen and (min-width: 768px) {
  .p-single__description h6 {
    font-size: 1rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
}
.p-single__description p {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.8;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-single__description p {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
}
.p-single__description p + figure {
  margin-top: 0;
}
.p-single__description p + figure {
  margin-top: 0;
}
.p-single__description p:has(+ figure) {
  margin-bottom: 0;
}
.p-single__description ul {
  margin-top: 16px;
  margin-top: 1rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  list-style: disc;
  margin-left: 20px;
  margin-left: 1.25rem;
  padding-left: 4px;
  padding-left: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-single__description ul {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
  }
}
.p-single__description ul + figure {
  margin-top: 0;
}
.p-single__description ul:has(+ figure) {
  margin-bottom: 0;
}
.p-single__description li {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.8;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-single__description li {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }
}
.p-single__description dl {
  margin-top: 16px;
  margin-top: 1rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-single__description dl {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.p-single__description dl + figure {
  margin-top: 0;
}
.p-single__description dl:has(+ figure) {
  margin-bottom: 0;
}
.p-single__description dt {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-single__description dt {
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
  }
}
.p-single__description dd {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.8;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-single__description dd {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
}
.p-single__description dd + figure {
  margin-top: 0;
}
.p-single__description dd:has(+ figure) {
  margin-bottom: 0;
}
.p-single__description h1 + figure,
.p-single__description h2 + figure,
.p-single__description h3 + figure,
.p-single__description h4 + figure,
.p-single__description h5 + figure,
.p-single__description h6 + figure {
  margin-top: 0;
}
.p-single__description h1:has(+ figure),
.p-single__description h2:has(+ figure),
.p-single__description h3:has(+ figure),
.p-single__description h4:has(+ figure),
.p-single__description h5:has(+ figure),
.p-single__description h6:has(+ figure) {
  margin-bottom: 0;
}
.p-single__description img {
  margin-top: 24px;
  margin-top: 1.5rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-single__description img {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
.p-single__thumbnail {
  margin-bottom: 32px;
  margin-bottom: 2rem;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-single__thumbnail {
    margin-bottom: 3rem;
  }
}
.p-single__thumbnail img {
  width: 100%;
  height: auto;
}
.p-single__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-single__title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
}
.p-single__date {
  font-size: 11px;
  font-size: 0.6875rem;
  color: #666;
}
@media screen and (min-width: 768px) {
  .p-single__date {
    font-size: 0.75rem;
  }
}
.p-single__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 48px;
  margin-top: 3rem;
  padding-top: 24px;
  padding-top: 1.5rem;
  border-top: solid 1px #eee;
  border-top: solid 0.0625rem #eee;
}
@media screen and (min-width: 768px) {
  .p-single__foot {
    margin-top: 4rem;
    padding-top: 2rem;
  }
}
.p-single__prev {
  width: 33.3333%;
  text-align: left;
}
.p-single__prev a {
  font-size: 12px;
  font-size: 0.75rem;
  color: #666;
}
@media screen and (min-width: 768px) {
  .p-single__prev a {
    font-size: 0.8125rem;
  }
}
.p-single__archive {
  width: 33.3333%;
  text-align: center;
}
.p-single__archive a {
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-single__archive a {
    font-size: 0.8125rem;
  }
}
.p-single__next {
  width: 33.3333%;
  text-align: right;
}
.p-single__next a {
  font-size: 12px;
  font-size: 0.75rem;
  color: #666;
}
@media screen and (min-width: 768px) {
  .p-single__next a {
    font-size: 0.8125rem;
  }
}

.p-thanks__inner {
  padding-top: 120px;
  padding-top: 7.5rem;
  padding-bottom: 64px;
  padding-bottom: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-thanks__inner {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.p-thanks__wrapper {
  height: calc(100vh - 28.125rem);
  min-height: 400px;
  min-height: 25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-thanks__wrapper {
    height: calc(100vh - 28.125rem);
    min-height: 33.75rem;
  }
}
.p-thanks__heading {
  font-size: 32px;
  font-size: 2rem;
  color: #c7a877;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-right: -0.04em;
}
@media screen and (min-width: 768px) {
  .p-thanks__heading {
    font-size: 4.0625rem;
  }
}
.p-thanks__head {
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-thanks__head {
    margin-bottom: 2rem;
  }
}
.p-thanks__body {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-thanks__body {
    text-align: center;
  }
}
.p-thanks__foot {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}
.p-thanks__title {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-right: -0.04em;
}
@media screen and (min-width: 768px) {
  .p-thanks__title {
    font-size: 1.625rem;
  }
}
.p-thanks__text {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  margin-right: -0.04em;
  line-height: 1.75;
  font-weight: 400;
  color: #4D4D4D;
}
@media screen and (min-width: 768px) {
  .p-thanks__text {
    font-size: 1rem;
  }
}

.u-delay-time1 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.u-delay-time2 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.u-delay-time3 {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

.u-delay-time4 {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.u-delay-time5 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.u-delay-time6 {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

.u-delay-time7 {
  -webkit-animation-delay: 2.1s;
          animation-delay: 2.1s;
}

.u-delay-time8 {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}

.u-delay-time9 {
  -webkit-animation-delay: 2.7s;
          animation-delay: 2.7s;
}

.u-delay-time10 {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.u-block {
  display: block;
}

@media screen and (max-width: 767px) {
  .u-mobile-block {
    display: block;
  }
}

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

.u-inline-block {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .u-mobile-inline-block {
    display: inline-block;
  }
}

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

.u-inline {
  display: inline;
}

@media screen and (max-width: 767px) {
  .u-mobile-inline {
    display: inline;
  }
}

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

.u-scroll-fade {
  opacity: 0;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.u-scroll-fade.done {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.u-scroll-up {
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.u-scroll-up.done {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.u-load-fade {
  opacity: 0;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.u-load-fade.done {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.u-load-fadeup {
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.u-load-fadeup.done {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 768px) {
  .u-desktop-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .u-mobile-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.u-flex-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 768px) {
  .u-desktop-flex-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .u-mobile-flex-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.u-flex-center-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.u-flex-center-row {
  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;
}

.u-text-xs {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 16px;
  line-height: 1rem;
}

@media screen and (max-width: 767px) {
  .u-mobile-text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}

.u-text-sm {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 20px;
  line-height: 1.25rem;
}

@media screen and (max-width: 767px) {
  .u-mobile-text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

.u-text-base {
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
}

@media screen and (max-width: 767px) {
  .u-mobile-text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.u-text-lg {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28px;
  line-height: 1.75rem;
}

@media screen and (max-width: 767px) {
  .u-mobile-text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

.u-text-xl {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 28px;
  line-height: 1.75rem;
}

@media screen and (max-width: 767px) {
  .u-mobile-text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.u-text-2xl {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 32px;
  line-height: 2rem;
}

@media screen and (max-width: 767px) {
  .u-mobile-text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.u-text-3xl {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 36px;
  line-height: 2.25rem;
}

@media screen and (max-width: 767px) {
  .u-mobile-text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

.u-text-4xl {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 40px;
  line-height: 2.5rem;
}

@media screen and (max-width: 767px) {
  .u-mobile-text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

.u-text-5xl {
  font-size: 48px;
  font-size: 3rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .u-mobile-text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
}

.u-text-6xl {
  font-size: 60px;
  font-size: 3.75rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .u-mobile-text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
}

.u-text-7xl {
  font-size: 72px;
  font-size: 4.5rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .u-mobile-text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }
}

.u-text-8xl {
  font-size: 96px;
  font-size: 6rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .u-mobile-text-8xl {
    font-size: 6rem;
    line-height: 1;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-text-8xl {
    font-size: 6rem;
    line-height: 1;
  }
}

.u-text-9xl {
  font-size: 128px;
  font-size: 8rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .u-mobile-text-9xl {
    font-size: 8rem;
    line-height: 1;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-text-9xl {
    font-size: 8rem;
    line-height: 1;
  }
}

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

@media screen and (min-width: 768px) {
  .u-desktop-text-bold {
    font-weight: 700;
  }
}

@media screen and (max-width: 767px) {
  .u-mobile-bold {
    font-weight: 700;
  }
}

.u-text-normal {
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .u-desktop-text-normal {
    font-weight: 400;
  }
}

@media screen and (max-width: 767px) {
  .u-mobile-text-normal {
    font-weight: 400;
  }
}

.u-text-light {
  font-weight: 300;
}

@media screen and (min-width: 768px) {
  .u-desktop-text-light {
    font-weight: 300;
  }
}

@media screen and (max-width: 767px) {
  .u-mobile-text-light {
    font-weight: 300;
  }
}

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

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

.u-hidden {
  display: none;
}

.u-lineheight-s {
  line-height: 1.2;
}

.u-lineheight-m {
  line-height: 1.5;
}

.u-lineheight-l {
  line-height: 1.8;
}

.u-lineheight-xl {
  line-height: 2;
}

.u-pt0 {
  padding-top: 0px;
}

.u-pt4 {
  padding-top: 4px;
}

.u-pt5 {
  padding-top: 5px;
}

.u-pt8 {
  padding-top: 8px;
}

.u-pt10 {
  padding-top: 10px;
}

.u-pt12 {
  padding-top: 12px;
}

.u-pt15 {
  padding-top: 15px;
}

.u-pt16 {
  padding-top: 16px;
}

.u-pt20 {
  padding-top: 20px;
}

.u-pt24 {
  padding-top: 24px;
}

.u-pt25 {
  padding-top: 25px;
}

.u-pt28 {
  padding-top: 28px;
}

.u-pt30 {
  padding-top: 30px;
}

.u-pt32 {
  padding-top: 32px;
}

.u-pt35 {
  padding-top: 35px;
}

.u-pt36 {
  padding-top: 36px;
}

.u-pt40 {
  padding-top: 40px;
}

.u-pt44 {
  padding-top: 44px;
}

.u-pt45 {
  padding-top: 45px;
}

.u-pt48 {
  padding-top: 48px;
}

.u-pt50 {
  padding-top: 50px;
}

.u-pt52 {
  padding-top: 52px;
}

.u-pt55 {
  padding-top: 55px;
}

.u-pt56 {
  padding-top: 56px;
}

.u-pt60 {
  padding-top: 60px;
}

.u-pt64 {
  padding-top: 64px;
}

.u-pt65 {
  padding-top: 65px;
}

.u-pt68 {
  padding-top: 68px;
}

.u-pt70 {
  padding-top: 70px;
}

.u-pt72 {
  padding-top: 72px;
}

.u-pt75 {
  padding-top: 75px;
}

.u-pt76 {
  padding-top: 76px;
}

.u-pt80 {
  padding-top: 80px;
}

.u-pt84 {
  padding-top: 84px;
}

.u-pt85 {
  padding-top: 85px;
}

.u-pt88 {
  padding-top: 88px;
}

.u-pt90 {
  padding-top: 90px;
}

.u-pt92 {
  padding-top: 92px;
}

.u-pt95 {
  padding-top: 95px;
}

.u-pt96 {
  padding-top: 96px;
}

.u-pt100 {
  padding-top: 100px;
}

.u-pb0 {
  padding-bottom: 0px;
}

.u-pb4 {
  padding-bottom: 4px;
}

.u-pb5 {
  padding-bottom: 5px;
}

.u-pb8 {
  padding-bottom: 8px;
}

.u-pb10 {
  padding-bottom: 10px;
}

.u-pb12 {
  padding-bottom: 12px;
}

.u-pb15 {
  padding-bottom: 15px;
}

.u-pb16 {
  padding-bottom: 16px;
}

.u-pb20 {
  padding-bottom: 20px;
}

.u-pb24 {
  padding-bottom: 24px;
}

.u-pb25 {
  padding-bottom: 25px;
}

.u-pb28 {
  padding-bottom: 28px;
}

.u-pb30 {
  padding-bottom: 30px;
}

.u-pb32 {
  padding-bottom: 32px;
}

.u-pb35 {
  padding-bottom: 35px;
}

.u-pb36 {
  padding-bottom: 36px;
}

.u-pb40 {
  padding-bottom: 40px;
}

.u-pb44 {
  padding-bottom: 44px;
}

.u-pb45 {
  padding-bottom: 45px;
}

.u-pb48 {
  padding-bottom: 48px;
}

.u-pb50 {
  padding-bottom: 50px;
}

.u-pb52 {
  padding-bottom: 52px;
}

.u-pb55 {
  padding-bottom: 55px;
}

.u-pb56 {
  padding-bottom: 56px;
}

.u-pb60 {
  padding-bottom: 60px;
}

.u-pb64 {
  padding-bottom: 64px;
}

.u-pb65 {
  padding-bottom: 65px;
}

.u-pb68 {
  padding-bottom: 68px;
}

.u-pb70 {
  padding-bottom: 70px;
}

.u-pb72 {
  padding-bottom: 72px;
}

.u-pb75 {
  padding-bottom: 75px;
}

.u-pb76 {
  padding-bottom: 76px;
}

.u-pb80 {
  padding-bottom: 80px;
}

.u-pb84 {
  padding-bottom: 84px;
}

.u-pb85 {
  padding-bottom: 85px;
}

.u-pb88 {
  padding-bottom: 88px;
}

.u-pb90 {
  padding-bottom: 90px;
}

.u-pb92 {
  padding-bottom: 92px;
}

.u-pb95 {
  padding-bottom: 95px;
}

.u-pb96 {
  padding-bottom: 96px;
}

.u-pb100 {
  padding-bottom: 100px;
}

.u-pl0 {
  padding-left: 0px;
}

.u-pl4 {
  padding-left: 4px;
}

.u-pl5 {
  padding-left: 5px;
}

.u-pl8 {
  padding-left: 8px;
}

.u-pl10 {
  padding-left: 10px;
}

.u-pl12 {
  padding-left: 12px;
}

.u-pl15 {
  padding-left: 15px;
}

.u-pl16 {
  padding-left: 16px;
}

.u-pl20 {
  padding-left: 20px;
}

.u-pl24 {
  padding-left: 24px;
}

.u-pl25 {
  padding-left: 25px;
}

.u-pl28 {
  padding-left: 28px;
}

.u-pl30 {
  padding-left: 30px;
}

.u-pl32 {
  padding-left: 32px;
}

.u-pl35 {
  padding-left: 35px;
}

.u-pl36 {
  padding-left: 36px;
}

.u-pl40 {
  padding-left: 40px;
}

.u-pl44 {
  padding-left: 44px;
}

.u-pl45 {
  padding-left: 45px;
}

.u-pl48 {
  padding-left: 48px;
}

.u-pl50 {
  padding-left: 50px;
}

.u-pl52 {
  padding-left: 52px;
}

.u-pl55 {
  padding-left: 55px;
}

.u-pl56 {
  padding-left: 56px;
}

.u-pl60 {
  padding-left: 60px;
}

.u-pl64 {
  padding-left: 64px;
}

.u-pl65 {
  padding-left: 65px;
}

.u-pl68 {
  padding-left: 68px;
}

.u-pl70 {
  padding-left: 70px;
}

.u-pl72 {
  padding-left: 72px;
}

.u-pl75 {
  padding-left: 75px;
}

.u-pl76 {
  padding-left: 76px;
}

.u-pl80 {
  padding-left: 80px;
}

.u-pl84 {
  padding-left: 84px;
}

.u-pl85 {
  padding-left: 85px;
}

.u-pl88 {
  padding-left: 88px;
}

.u-pl90 {
  padding-left: 90px;
}

.u-pl92 {
  padding-left: 92px;
}

.u-pl95 {
  padding-left: 95px;
}

.u-pl96 {
  padding-left: 96px;
}

.u-pl100 {
  padding-left: 100px;
}

.u-pr0 {
  padding-right: 0px;
}

.u-pr4 {
  padding-right: 4px;
}

.u-pr5 {
  padding-right: 5px;
}

.u-pr8 {
  padding-right: 8px;
}

.u-pr10 {
  padding-right: 10px;
}

.u-pr12 {
  padding-right: 12px;
}

.u-pr15 {
  padding-right: 15px;
}

.u-pr16 {
  padding-right: 16px;
}

.u-pr20 {
  padding-right: 20px;
}

.u-pr24 {
  padding-right: 24px;
}

.u-pr25 {
  padding-right: 25px;
}

.u-pr28 {
  padding-right: 28px;
}

.u-pr30 {
  padding-right: 30px;
}

.u-pr32 {
  padding-right: 32px;
}

.u-pr35 {
  padding-right: 35px;
}

.u-pr36 {
  padding-right: 36px;
}

.u-pr40 {
  padding-right: 40px;
}

.u-pr44 {
  padding-right: 44px;
}

.u-pr45 {
  padding-right: 45px;
}

.u-pr48 {
  padding-right: 48px;
}

.u-pr50 {
  padding-right: 50px;
}

.u-pr52 {
  padding-right: 52px;
}

.u-pr55 {
  padding-right: 55px;
}

.u-pr56 {
  padding-right: 56px;
}

.u-pr60 {
  padding-right: 60px;
}

.u-pr64 {
  padding-right: 64px;
}

.u-pr65 {
  padding-right: 65px;
}

.u-pr68 {
  padding-right: 68px;
}

.u-pr70 {
  padding-right: 70px;
}

.u-pr72 {
  padding-right: 72px;
}

.u-pr75 {
  padding-right: 75px;
}

.u-pr76 {
  padding-right: 76px;
}

.u-pr80 {
  padding-right: 80px;
}

.u-pr84 {
  padding-right: 84px;
}

.u-pr85 {
  padding-right: 85px;
}

.u-pr88 {
  padding-right: 88px;
}

.u-pr90 {
  padding-right: 90px;
}

.u-pr92 {
  padding-right: 92px;
}

.u-pr95 {
  padding-right: 95px;
}

.u-pr96 {
  padding-right: 96px;
}

.u-pr100 {
  padding-right: 100px;
}

.u-mt0 {
  margin-top: 0px;
}

.u-mt4 {
  margin-top: 4px;
}

.u-mt5 {
  margin-top: 5px;
}

.u-mt8 {
  margin-top: 8px;
}

.u-mt10 {
  margin-top: 10px;
}

.u-mt12 {
  margin-top: 12px;
}

.u-mt15 {
  margin-top: 15px;
}

.u-mt16 {
  margin-top: 16px;
}

.u-mt20 {
  margin-top: 20px;
}

.u-mt24 {
  margin-top: 24px;
}

.u-mt25 {
  margin-top: 25px;
}

.u-mt28 {
  margin-top: 28px;
}

.u-mt30 {
  margin-top: 30px;
}

.u-mt32 {
  margin-top: 32px;
}

.u-mt35 {
  margin-top: 35px;
}

.u-mt36 {
  margin-top: 36px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mt44 {
  margin-top: 44px;
}

.u-mt45 {
  margin-top: 45px;
}

.u-mt48 {
  margin-top: 48px;
}

.u-mt50 {
  margin-top: 50px;
}

.u-mt52 {
  margin-top: 52px;
}

.u-mt55 {
  margin-top: 55px;
}

.u-mt56 {
  margin-top: 56px;
}

.u-mt60 {
  margin-top: 60px;
}

.u-mt64 {
  margin-top: 64px;
}

.u-mt65 {
  margin-top: 65px;
}

.u-mt68 {
  margin-top: 68px;
}

.u-mt70 {
  margin-top: 70px;
}

.u-mt72 {
  margin-top: 72px;
}

.u-mt75 {
  margin-top: 75px;
}

.u-mt76 {
  margin-top: 76px;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mt84 {
  margin-top: 84px;
}

.u-mt85 {
  margin-top: 85px;
}

.u-mt88 {
  margin-top: 88px;
}

.u-mt90 {
  margin-top: 90px;
}

.u-mt92 {
  margin-top: 92px;
}

.u-mt95 {
  margin-top: 95px;
}

.u-mt96 {
  margin-top: 96px;
}

.u-mt100 {
  margin-top: 100px;
}

.u-mb0 {
  margin-bottom: 0px;
}

.u-mb4 {
  margin-bottom: 4px;
}

.u-mb5 {
  margin-bottom: 5px;
}

.u-mb8 {
  margin-bottom: 8px;
}

.u-mb10 {
  margin-bottom: 10px;
}

.u-mb12 {
  margin-bottom: 12px;
}

.u-mb15 {
  margin-bottom: 15px;
}

.u-mb16 {
  margin-bottom: 16px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mb24 {
  margin-bottom: 24px;
}

.u-mb25 {
  margin-bottom: 25px;
}

.u-mb28 {
  margin-bottom: 28px;
}

.u-mb30 {
  margin-bottom: 30px;
}

.u-mb32 {
  margin-bottom: 32px;
}

.u-mb35 {
  margin-bottom: 35px;
}

.u-mb36 {
  margin-bottom: 36px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mb44 {
  margin-bottom: 44px;
}

.u-mb45 {
  margin-bottom: 45px;
}

.u-mb48 {
  margin-bottom: 48px;
}

.u-mb50 {
  margin-bottom: 50px;
}

.u-mb52 {
  margin-bottom: 52px;
}

.u-mb55 {
  margin-bottom: 55px;
}

.u-mb56 {
  margin-bottom: 56px;
}

.u-mb60 {
  margin-bottom: 60px;
}

.u-mb64 {
  margin-bottom: 64px;
}

.u-mb65 {
  margin-bottom: 65px;
}

.u-mb68 {
  margin-bottom: 68px;
}

.u-mb70 {
  margin-bottom: 70px;
}

.u-mb72 {
  margin-bottom: 72px;
}

.u-mb75 {
  margin-bottom: 75px;
}

.u-mb76 {
  margin-bottom: 76px;
}

.u-mb80 {
  margin-bottom: 80px;
}

.u-mb84 {
  margin-bottom: 84px;
}

.u-mb85 {
  margin-bottom: 85px;
}

.u-mb88 {
  margin-bottom: 88px;
}

.u-mb90 {
  margin-bottom: 90px;
}

.u-mb92 {
  margin-bottom: 92px;
}

.u-mb95 {
  margin-bottom: 95px;
}

.u-mb96 {
  margin-bottom: 96px;
}

.u-mb100 {
  margin-bottom: 100px;
}

.u-ml0 {
  margin-left: 0px;
}

.u-ml4 {
  margin-left: 4px;
}

.u-ml5 {
  margin-left: 5px;
}

.u-ml8 {
  margin-left: 8px;
}

.u-ml10 {
  margin-left: 10px;
}

.u-ml12 {
  margin-left: 12px;
}

.u-ml15 {
  margin-left: 15px;
}

.u-ml16 {
  margin-left: 16px;
}

.u-ml20 {
  margin-left: 20px;
}

.u-ml24 {
  margin-left: 24px;
}

.u-ml25 {
  margin-left: 25px;
}

.u-ml28 {
  margin-left: 28px;
}

.u-ml30 {
  margin-left: 30px;
}

.u-ml32 {
  margin-left: 32px;
}

.u-ml35 {
  margin-left: 35px;
}

.u-ml36 {
  margin-left: 36px;
}

.u-ml40 {
  margin-left: 40px;
}

.u-ml44 {
  margin-left: 44px;
}

.u-ml45 {
  margin-left: 45px;
}

.u-ml48 {
  margin-left: 48px;
}

.u-ml50 {
  margin-left: 50px;
}

.u-ml52 {
  margin-left: 52px;
}

.u-ml55 {
  margin-left: 55px;
}

.u-ml56 {
  margin-left: 56px;
}

.u-ml60 {
  margin-left: 60px;
}

.u-ml64 {
  margin-left: 64px;
}

.u-ml65 {
  margin-left: 65px;
}

.u-ml68 {
  margin-left: 68px;
}

.u-ml70 {
  margin-left: 70px;
}

.u-ml72 {
  margin-left: 72px;
}

.u-ml75 {
  margin-left: 75px;
}

.u-ml76 {
  margin-left: 76px;
}

.u-ml80 {
  margin-left: 80px;
}

.u-ml84 {
  margin-left: 84px;
}

.u-ml85 {
  margin-left: 85px;
}

.u-ml88 {
  margin-left: 88px;
}

.u-ml90 {
  margin-left: 90px;
}

.u-ml92 {
  margin-left: 92px;
}

.u-ml95 {
  margin-left: 95px;
}

.u-ml96 {
  margin-left: 96px;
}

.u-ml100 {
  margin-left: 100px;
}

.u-mr0 {
  margin-right: 0px;
}

.u-mr4 {
  margin-right: 4px;
}

.u-mr5 {
  margin-right: 5px;
}

.u-mr8 {
  margin-right: 8px;
}

.u-mr10 {
  margin-right: 10px;
}

.u-mr12 {
  margin-right: 12px;
}

.u-mr15 {
  margin-right: 15px;
}

.u-mr16 {
  margin-right: 16px;
}

.u-mr20 {
  margin-right: 20px;
}

.u-mr24 {
  margin-right: 24px;
}

.u-mr25 {
  margin-right: 25px;
}

.u-mr28 {
  margin-right: 28px;
}

.u-mr30 {
  margin-right: 30px;
}

.u-mr32 {
  margin-right: 32px;
}

.u-mr35 {
  margin-right: 35px;
}

.u-mr36 {
  margin-right: 36px;
}

.u-mr40 {
  margin-right: 40px;
}

.u-mr44 {
  margin-right: 44px;
}

.u-mr45 {
  margin-right: 45px;
}

.u-mr48 {
  margin-right: 48px;
}

.u-mr50 {
  margin-right: 50px;
}

.u-mr52 {
  margin-right: 52px;
}

.u-mr55 {
  margin-right: 55px;
}

.u-mr56 {
  margin-right: 56px;
}

.u-mr60 {
  margin-right: 60px;
}

.u-mr64 {
  margin-right: 64px;
}

.u-mr65 {
  margin-right: 65px;
}

.u-mr68 {
  margin-right: 68px;
}

.u-mr70 {
  margin-right: 70px;
}

.u-mr72 {
  margin-right: 72px;
}

.u-mr75 {
  margin-right: 75px;
}

.u-mr76 {
  margin-right: 76px;
}

.u-mr80 {
  margin-right: 80px;
}

.u-mr84 {
  margin-right: 84px;
}

.u-mr85 {
  margin-right: 85px;
}

.u-mr88 {
  margin-right: 88px;
}

.u-mr90 {
  margin-right: 90px;
}

.u-mr92 {
  margin-right: 92px;
}

.u-mr95 {
  margin-right: 95px;
}

.u-mr96 {
  margin-right: 96px;
}

.u-mr100 {
  margin-right: 100px;
}

@media screen and (max-width: 767px) {
  .u-mobile-m-auto {
    margin: auto !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-m0 {
    margin: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-mt-auto {
    margin-top: auto !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-mt0 {
    margin-top: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-mb-auto {
    margin-bottom: auto !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-mb0 {
    margin-bottom: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-ml-auto {
    margin-left: auto !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-ml0 {
    margin-left: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-mr-auto {
    margin-right: auto !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-mr0 {
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-p0 {
    padding: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-pt0 {
    padding-top: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-pb0 {
    padding-bottom: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-pl0 {
    padding-left: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mobile-pr0 {
    padding-right: 0 !important;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-m-auto {
    margin: auto !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-m0 {
    margin: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-mt-auto {
    margin-top: auto !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-mt0 {
    margin-top: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-mb-auto {
    margin-bottom: auto !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-mb0 {
    margin-bottom: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-ml-auto {
    margin-left: auto !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-ml0 {
    margin-left: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-mr-auto {
    margin-right: auto !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-mr0 {
    margin-right: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-p0 {
    padding: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-pt0 {
    padding-top: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-pb0 {
    padding-bottom: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-pl0 {
    padding-left: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop-pr0 {
    padding-right: 0 !important;
  }
}

.u-fixed {
  position: fixed;
}

.u-relative {
  position: relative;
}

.u-absolute {
  position: absolute;
}

.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: left;
}

.u-text-right {
  text-align: right;
}

.u-text-bottom {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .u-mobile-text-center {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .u-mobile-text-left {
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .u-mobile-text-right {
    text-align: right;
  }
}

@media screen and (max-width: 767px) {
  .u-mobile-text-bottom {
    text-align: right;
  }
}

@media screen and (min-width: 768px) {
  .u-desktop-text-center {
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile-text-left {
    text-align: left;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile-text-right {
    text-align: right;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile-text-bottom {
    text-align: right;
  }
}
/*# sourceMappingURL=styles.css.map */
