/*
Theme Name: Theme name
Author: Author
Author URI:
*/
/* A Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%; /*display:block*/
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  scroll-behavior: smooth;
  font-size: calc(100vw / 1600 * 16);
}
@media (1600px < width) {
  html {
    font-size: 16px;
  }
}
@media (width <= 768px) {
  html {
    font-size: calc(100vw / 375 * 16);
  }
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #222222;
  letter-spacing: 0.1em;
  line-height: 2;
}
body.is-menu-open {
  overflow: hidden;
}
body:not(.p-home) {
  background-color: #faf6f0;
}

a {
  color: #222;
  transition: 0.3s;
}
a:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

@media (width <= 768px) {
  p {
    font-size: 0.875rem;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

pre {
  white-space: pre;
}

ol,
ul {
  padding-left: 1.4em;
  margin: 0;
}
@media (width <= 768px) {
  ol,
  ul {
    font-size: 0.875rem;
  }
}

/********************************************
* Layout
********************************************/
/* Header */
.l-header {
  background: linear-gradient(to bottom, #d0b7a6 0, #d0b7a6 1.625rem, #fff 1.625rem, #fff 100%);
  padding-top: 1.625rem;
  position: relative;
}
@media (width <= 768px) {
  .l-header {
    background: linear-gradient(to bottom, #d0b7a6 0, #d0b7a6 1.25rem, #fff 1.25rem, #fff 100%);
    padding-top: 1.25rem;
  }
}
.l-header__inner {
  margin: 0 auto;
  height: 7.5rem;
  max-width: 87.5rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background-color: #fff;
}
@media (width <= 768px) {
  .l-header__inner {
    height: 3.875rem;
    padding-left: 1.25rem;
  }
}
.l-header__logo {
  width: 34.375rem;
  position: relative;
  line-height: 1;
}
@media (width <= 768px) {
  .l-header__logo {
    width: 14.625rem;
  }
}
.l-header__logo-foot {
  position: absolute;
  right: -5.3125rem;
  top: -1.25rem;
  width: 4.1625rem;
}
@media (width <= 768px) {
  .l-header__logo-foot {
    width: 1.67625rem;
    right: -2.1875rem;
    top: -0.3125rem;
  }
}
.l-header__btns {
  position: fixed;
  right: 8.375rem;
  top: 0;
  display: flex;
  z-index: 90;
}
@media (width <= 768px) {
  .l-header__btns {
    display: none;
  }
}
.l-header__btn {
  text-align: center;
  color: #fff;
  font-size: 0.875rem;
  height: 7.125rem;
  padding: 1.5rem 0 0.6875rem;
  font-weight: 700;
}
.l-header__btn span {
  display: block;
}
.l-header__btn--online {
  width: 7.125rem;
  background-color: #d1d1d1;
  font-size: 0.875rem;
  line-height: 1.1428571429;
}
.l-header__btn--contact {
  width: 7.8125rem;
  background-color: #555555;
  font-size: 0.75rem;
  line-height: 1.1666666667;
}
.l-header__btn-icon {
  margin-bottom: 0.425rem;
}
.l-header__btn-icon--online {
  width: 2.479375rem;
}
.l-header__btn-icon--contact {
  width: 2.96125rem;
  margin: 0.1875rem 0 0.625rem;
}
.l-header__btn-link {
  display: block;
  color: #fff;
  text-decoration: none;
}

.l-menu-trigger {
  width: 7.125rem;
  height: 7.125rem;
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #d0b7a6;
  z-index: 100;
}
@media (width <= 768px) {
  .l-menu-trigger {
    width: 4.375rem;
    height: 4.375rem;
  }
}
.l-menu-trigger__bar {
  display: block;
  transition: all 0.3s;
  width: 3.0625rem;
  height: 0.125rem;
  position: absolute;
  left: calc(50% - 1.53125rem);
  top: calc(50% - 0.0625rem);
  display: inline-block;
  background: #fff;
}
@media (width <= 768px) {
  .l-menu-trigger__bar {
    width: 1.875rem;
    left: calc(50% - 0.9375rem);
  }
}
.l-menu-trigger__bar:nth-of-type(1) {
  transform: translateY(-1.125rem);
}
@media (width <= 768px) {
  .l-menu-trigger__bar:nth-of-type(1) {
    transform: translateY(-0.6875rem);
  }
}
.is-menu-open .l-menu-trigger__bar:nth-of-type(1) {
  transform: translateY(0rem) rotate(45deg);
}
.is-menu-open .l-menu-trigger__bar:nth-of-type(2) {
  transform: scaleX(0);
}
.l-menu-trigger__bar:nth-of-type(3) {
  transform: translateY(1.125rem);
}
@media (width <= 768px) {
  .l-menu-trigger__bar:nth-of-type(3) {
    transform: translateY(0.6875rem);
  }
}
.is-menu-open .l-menu-trigger__bar:nth-of-type(3) {
  transform: translateY(0rem) rotate(-45deg);
}

.l-menu {
  width: 36.25rem;
  position: fixed;
  right: -100%;
  top: 0;
  background-color: #d0b7a6;
  color: #fff;
  padding: 4.6875rem;
  overflow-y: scroll;
  max-height: 100vh;
  transition: right 0.3s;
  z-index: 90;
}
@media (width <= 768px) {
  .l-menu {
    width: 22.125rem;
    padding: 3.125rem 1.25rem 1.875rem;
    background-color: rgba(208, 183, 166, 0.95);
  }
}
.is-menu-open .l-menu {
  right: 0;
}
@media (width <= 768px) {
  .l-menu__nav-list.c-list {
    padding: 0 3.125rem;
  }
}
.l-menu__nav-item {
  margin-bottom: 2.5rem;
}
@media (width <= 768px) {
  .l-menu__nav-item {
    margin-bottom: 1.25rem;
  }
}
.l-menu__nav-item, .l-menu__nav-link {
  color: #fff;
  font-size: 1.25rem;
}
@media (width <= 768px) {
  .l-menu__nav-item, .l-menu__nav-link {
    font-size: 0.75rem;
  }
}
.l-menu__nav-item .u-text--modesto, .l-menu__nav-link .u-text--modesto {
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}
@media (width <= 768px) {
  .l-menu__nav-item .u-text--modesto, .l-menu__nav-link .u-text--modesto {
    font-size: 1rem;
  }
}
.l-menu__nav-item .u-text--modesto span, .l-menu__nav-link .u-text--modesto span {
  margin-left: 1.25rem;
  text-decoration: none;
  display: inline-block;
}
@media (width <= 768px) {
  .l-menu__nav-item .u-text--modesto span, .l-menu__nav-link .u-text--modesto span {
    font-size: 0.6875rem;
    margin-left: 0.625rem;
  }
}
.l-menu__nav-icon--online {
  width: 1.239375rem;
  vertical-align: middle;
  margin: 0 0.3125rem;
}
@media (width <= 768px) {
  .l-menu__nav-icon--online {
    width: 0.75625rem;
  }
}
.l-menu__nav-sub-list.c-list {
  margin-top: 1.25rem;
}
@media (width <= 768px) {
  .l-menu__nav-sub-list.c-list {
    margin-top: 0;
  }
}
.l-menu__nav-sub-item {
  margin-bottom: 0.625rem;
}
.l-menu__nav-sub-item--invalid .l-menu__nav-sub-link {
  opacity: 0.5;
  pointer-events: none;
}
.l-menu__nav-sub-link {
  color: #fff;
}
@media (width <= 768px) {
  .l-menu__nav-sub-link {
    font-size: 0.875rem;
  }
}
@media (width <= 768px) {
  .l-menu__nav-sub-link .u-text--small .u-text--modesto {
    font-size: 0.75rem;
  }
}
.l-menu__nav-other-list.c-list {
  margin: 3.75rem 0;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}
@media (width <= 768px) {
  .l-menu__nav-other-list.c-list {
    margin: 1.25rem 0;
  }
}
.l-menu__nav-other-link {
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
}
@media (width <= 768px) {
  .l-menu__nav-other-link {
    font-size: 0.75rem;
  }
}
.l-menu__nav-sns-list.c-list {
  display: flex;
  justify-content: center;
  gap: 5.625rem;
  margin-bottom: 3.75rem;
}
@media (width <= 768px) {
  .l-menu__nav-sns-list.c-list {
    gap: 2.1875rem;
    margin-bottom: 0.625rem;
  }
}
.l-menu__nav-sns-link {
  text-align: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
}
.l-menu__nav-sns-link span {
  line-height: 1.1666666667;
  display: inline-block;
}
@media (width <= 768px) {
  .l-menu__nav-sns-link span {
    font-size: 0.625rem;
  }
}
.l-menu__nav-sns-icon {
  display: block;
  margin: 0 auto 0.3125rem;
}
.l-menu__nav-sns-icon--line {
  width: 2.5rem;
}
@media (width <= 768px) {
  .l-menu__nav-sns-icon--line {
    width: 1.5625rem;
  }
}
.l-menu__nav-sns-icon--instagram {
  width: 2.25rem;
  margin-bottom: 0;
}
@media (width <= 768px) {
  .l-menu__nav-sns-icon--instagram {
    width: 1.5625rem;
  }
}
@media (width <= 768px) {
  .l-menu__info {
    margin-right: -0.625rem;
    width: calc(100% + 0.625rem);
  }
}
.l-menu__info-item {
  font-weight: 700;
  position: relative;
  padding-left: 5rem;
  line-height: 1.5;
  margin-bottom: 0.625rem;
}
@media (width <= 768px) {
  .l-menu__info-item {
    font-size: 0.75rem;
    padding-left: 3.125rem;
    margin-bottom: 0.3125rem;
  }
}
.l-menu__info-item span {
  position: absolute;
  left: 0;
  display: inline-block;
  font-weight: 900;
}
@media (width <= 768px) {
  .l-menu__info-item span {
    font-size: 0.625rem;
  }
}

/* Footer */
.l-footer {
  position: relative;
  z-index: 1;
}
.l-footer__top {
  background-image: url(../images/common/footer-bg.jpg);
  background-size: cover;
  background-position: center top;
  padding: 5.625rem 3.75rem 3.75rem;
}
@media (width <= 768px) {
  .l-footer__top {
    padding: 1.875rem 2.1875rem;
    background-image: url(../images/common/footer-bg-sp.jpg);
  }
}
.l-footer__nav-list.c-list {
  width: 36.25rem;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  flex-direction: column;
  height: 15rem;
  gap: 0.625rem 3.75rem;
}
@media (width <= 768px) {
  .l-footer__nav-list.c-list {
    width: 100%;
    height: auto;
    gap: 0;
    padding: 0 1.5625rem;
    padding-right: 0;
    margin-bottom: 1.25rem;
  }
}
.l-footer__nav-item {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 2.5rem;
}
@media (width <= 768px) {
  .l-footer__nav-item {
    font-size: 0.875rem;
    margin-bottom: 0.625rem;
  }
}
.l-footer__nav-item .u-text--modesto {
  font-size: 1.25rem;
  margin-right: 1.25rem;
}
.l-footer__nav-item .u-text--modesto span {
  font-size: 1rem;
  font-weight: 400;
  margin-left: 1.25rem;
  text-decoration: none;
  display: inline-block;
}
@media (width <= 768px) {
  .l-footer__nav-item .u-text--modesto span {
    font-size: 0.75rem;
  }
}
.l-footer__nav-link {
  color: #fff;
}
.l-footer__nav-icon {
  margin: 0 0.3125rem;
}
.l-footer__nav-icon--online {
  width: 1.2375rem;
  vertical-align: middle;
}
@media (width <= 768px) {
  .l-footer__nav-icon--online {
    width: 0.85625rem;
  }
}
.l-footer__nav-sub-item {
  margin-bottom: 0.9375rem;
}
@media (width <= 768px) {
  .l-footer__nav-sub-item {
    margin-bottom: 0.3125rem;
  }
}
.l-footer__nav-sub-item--invalid .l-footer__nav-sub-link {
  opacity: 0.5;
  pointer-events: none;
}
.l-footer__nav-sub-link {
  color: #fff;
}
.l-footer__nav-sub-link .u-text--modesto {
  font-size: 0.875rem;
}
.l-footer__nav-sub-link span {
  display: inline-block;
  text-decoration: none;
}
.l-footer__info.c-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 7.5rem;
  gap: 0 3.125rem;
  color: #fff;
  width: 45rem;
  margin: 0 auto;
}
@media (width <= 768px) {
  .l-footer__info.c-list {
    width: 100%;
    height: auto;
  }
}
.l-footer__info-item {
  width: 15rem;
  position: relative;
  padding-left: 3.75rem;
  font-weight: 700;
  line-height: 2;
}
@media (width <= 768px) {
  .l-footer__info-item {
    width: 100%;
    padding-left: 5rem;
    font-size: 0.875rem;
    line-height: 1.4285714286;
    margin-bottom: 0.9375rem;
  }
}
@media (width <= 768px) {
  .l-footer__info-item:nth-of-type(1) {
    order: 1;
  }
}
@media (width <= 768px) {
  .l-footer__info-item:nth-of-type(2) {
    order: 3;
  }
}
@media (width <= 768px) {
  .l-footer__info-item:nth-of-type(3) {
    order: 2;
  }
}
.l-footer__info-item span {
  position: absolute;
  left: 0;
}
.l-footer__info-item--large {
  width: 30rem;
  padding-left: 5.625rem;
}
@media (width <= 768px) {
  .l-footer__info-item--large {
    width: 100%;
    padding-left: 5rem;
  }
}
.l-footer__bottom {
  background-color: #d0b7a6;
  color: #fff;
  text-align: center;
  padding: 3.125rem 3.4375rem;
}
@media (width <= 768px) {
  .l-footer__bottom {
    padding: 2.5rem 1.25rem 1.875rem;
  }
}
.l-footer__bottom-list.c-list {
  width: 37.5rem;
  margin: 0 auto 1.875rem;
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  gap: 1.25rem 3.125rem;
}
@media (width <= 768px) {
  .l-footer__bottom-list.c-list {
    width: 100%;
    gap: 1.5625rem;
    flex-direction: column;
    margin-bottom: 3.125rem;
  }
}
@media (width <= 768px) {
  .l-footer__bottom-item {
    line-height: 1;
  }
}
@media (width <= 768px) {
  .l-footer__bottom-item--icon {
    width: 15rem;
    text-align: left;
    margin: 0 auto;
  }
}
.l-footer__bottom-link {
  color: #fff;
  text-decoration: none;
}
@media (width <= 768px) {
  .l-footer__bottom-link {
    font-size: 0.875rem;
  }
}
.l-footer__bottom-icon {
  vertical-align: middle;
  margin-right: 0.3125rem;
}
@media (width <= 768px) {
  .l-footer__bottom-icon {
    margin-right: 1.25rem;
  }
}
.l-footer__bottom-icon--line {
  width: 3.125rem;
}
@media (width <= 768px) {
  .l-footer__bottom-icon--line {
    width: 2.5rem;
  }
}
.l-footer__bottom-icon--instagram {
  width: 2.875rem;
}
@media (width <= 768px) {
  .l-footer__bottom-icon--instagram {
    width: 2.375rem;
  }
}
.l-footer__bottom-icon--external {
  width: 1.25rem;
  margin-left: 0.5625rem;
}
.l-footer__copy {
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0;
}
@media (width <= 768px) {
  .l-footer__copy {
    font-size: 0.6875rem;
  }
}

/* Sidebar */
.l-page-top {
  display: none;
}
@media (width <= 768px) {
  .l-page-top {
    display: block;
    opacity: 0;
    z-index: -1;
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 4rem;
    height: 4rem;
    transition: all 0.3s;
  }
  .is-scrolled .l-page-top {
    opacity: 1;
    z-index: 10;
  }
}

/********************************************
* Wordpress
********************************************/
/* Media */
.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

/* Contact Form */
.wpcf7 .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7 .wpcf7-not-valid {
  background: pink;
}
.wpcf7 .wpcf7-response-output {
  margin: 10px 0 0;
  padding: 8px 35px 8px 14px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.wpcf7 .wpcf7-validation-errors {
  color: #b94a48;
  background-color: #f2dede;
  border: 1px solid #eed3d7;
}
.wpcf7 .wpcf7-mail-sent-ok {
  color: #3a87ad;
  background-color: #d9edf7;
  border: 1px solid #bce8f1;
}

/********************************************
* Component
********************************************/
.c-btn {
  width: 22.5rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.875rem;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  background-color: #d0b7a6;
  border-radius: 2.1875rem;
}
@media (width <= 768px) {
  .c-btn {
    width: 100%;
    height: 3.75rem;
    font-size: 0.875rem;
    border-radius: 1.5625rem;
  }
}
.c-btn--arrow-img {
  width: 4rem;
}
.c-btn--yellow {
  background-color: #fcb701;
}
.c-btn--green {
  background-color: #3b9c93;
}
.c-btn--red {
  background-color: #d24c22;
}
.c-btn--brown {
  background-color: #af7651;
}
.c-btn--white {
  background-color: #fff;
  color: #222;
}
.c-btn--line {
  background-color: #06c755;
  border-radius: 0.75rem;
  gap: 0.9375rem;
}
.c-btn--line-icon {
  width: 1.25rem;
}
.c-btn--google {
  border-radius: 999px;
  background-color: #af7651;
  gap: 0.625rem;
}
.c-btn--google-icon {
  width: 1.5rem;
}
.c-btn--invalid {
  opacity: 0.3;
  pointer-events: none;
}

.c-content {
  margin-bottom: 8.75rem;
}
@media (width <= 768px) {
  .c-content {
    margin-bottom: 6.25rem;
  }
}

.c-header {
  height: 31.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #707070;
  position: relative;
  overflow-x: clip;
}
@media (width <= 768px) {
  .c-header {
    height: 10.625rem;
  }
}
.c-header:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
}
body:not(.p-home) .c-header {
  margin-bottom: 5rem;
}
@media (width <= 768px) {
  body:not(.p-home) .c-header {
    margin-bottom: 3.75rem;
  }
}
.c-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.c-header__eng {
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
  line-height: 1;
}
@media (width <= 768px) {
  .c-header__eng {
    font-size: 1.5rem;
  }
}
.c-header__title {
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
@media (width <= 768px) {
  .c-header__title {
    font-size: 1rem;
  }
}
.c-header__p {
  font-size: 1.25rem;
}
@media (width <= 768px) {
  .c-header__p {
    font-size: 0.875rem;
  }
}
.c-header__bottom {
  position: absolute;
  left: -120rem;
  bottom: -1px;
  width: 360rem;
  max-width: inherit;
}
@media (width <= 768px) {
  .c-header__bottom {
    width: 131.78125rem;
    left: -43.9375rem;
  }
}
.c-header__icon {
  position: absolute;
}
.c-header--no-bg {
  height: 19.125rem;
  margin-bottom: 0 !important;
}
@media (width <= 768px) {
  .c-header--no-bg {
    height: 10.4375rem;
  }
}
.c-header--no-bg:after {
  display: none;
}
.c-header--no-bg02 {
  height: 15.375rem;
  margin-bottom: 0;
  padding-top: 3.125rem;
  border-bottom: 1px solid #ddc6bd;
}
@media (width <= 768px) {
  .c-header--no-bg02 {
    padding-top: 1.25rem;
    height: 8.25rem;
  }
}
.c-header--no-bg02:after {
  display: none;
}
.c-header--no-bg03 {
  height: 15.375rem;
  margin-bottom: 1.25rem !important;
  padding-top: 3.125rem;
}
@media (width <= 768px) {
  .c-header--no-bg03 {
    padding-top: 1.25rem;
    height: 8.25rem;
  }
}
.c-header--no-bg03:after {
  display: none;
}
.c-header--no-bg03 .c-header__title {
  font-size: 1.75rem;
}
@media (width <= 768px) {
  .c-header--no-bg03 .c-header__title {
    font-size: 1.25rem;
  }
}

.c-inner {
  max-width: 56.25rem;
  margin: 0 auto;
}
@media (width <= 768px) {
  .c-inner {
    padding: 0 1.25rem;
  }
}
.c-inner--medium {
  max-width: 67.5rem;
}
.c-inner--large {
  max-width: 87.5rem;
}

.c-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-list--upper-alphabet {
  list-style: upper-alpha;
}
.c-list--lower-alphabet {
  list-style: lower-alpha;
}
.c-list--upper-roman {
  list-style: upper-roman;
}
.c-list--lower-roman {
  list-style: lower-roman;
}
.c-list--none {
  list-style: none;
}
.c-list--circle {
  list-style: circle;
}
.c-list--square {
  list-style: square;
}
.c-list--decimal {
  list-style: decimal;
}
.c-list--decimal-leading-zero {
  list-style: decimal-leading-zero;
}

.c-page .c-header {
  margin-bottom: 4.375rem;
}
@media (width <= 768px) {
  .c-page .c-header {
    margin-bottom: 2.5rem;
  }
}
.c-page .c-header--no-bg {
  margin-bottom: 0;
}
@media (width <= 768px) {
  .c-page__content {
    overflow-x: clip;
  }
}
.c-page__notice {
  color: #af7651;
  font-size: 1.125rem;
  margin-bottom: 3.75rem;
}
@media (width <= 768px) {
  .c-page__notice {
    font-size: 0.875rem;
    margin-bottom: 1.875rem;
  }
}
.c-page__sub-title {
  color: #af7651;
  font-size: 1.125rem;
  margin-top: 3.125rem;
  margin-bottom: 0.625rem;
}
@media (width <= 768px) {
  .c-page__sub-title {
    margin-top: 1.875rem;
    font-size: 1rem;
  }
}
.c-page__sub-title:first-of-type {
  margin-top: 0;
}
.c-page__top {
  text-align: center;
  margin-bottom: 5rem;
}
@media (width <= 768px) {
  .c-page__top {
    margin-bottom: 2.5rem;
  }
}
.c-page__top-img {
  margin-bottom: 2.5rem;
}
@media (width <= 768px) {
  .c-page__top-img {
    margin-bottom: 1.25rem;
  }
}
.c-page__top-title {
  color: #af7651;
  font-size: 2.375rem;
  font-weight: 400;
  margin-bottom: 1.875rem;
}
@media (width <= 768px) {
  .c-page__top-title {
    font-size: 1.625rem;
    margin-bottom: 0.625rem;
  }
}
.c-page__top-booking {
  width: 13.125rem;
}
@media (width <= 768px) {
  .c-page__top-booking {
    width: 10.25rem;
  }
}
.c-page__about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5rem;
}
@media (width <= 768px) {
  .c-page__about {
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
  }
}
.c-page__about-text {
  width: 25rem;
  font-size: 1.25rem;
  font-weight: 500;
}
@media (width <= 768px) {
  .c-page__about-text {
    width: 100%;
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}
.c-page__about-thumb {
  width: 37.5rem;
  overflow: hidden;
  border-radius: 1.25rem;
}
@media (width <= 768px) {
  .c-page__about-thumb {
    width: 100%;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    border-radius: 0;
    width: 100vw;
    height: 13.75rem;
  }
}
.c-page__point {
  color: #af7651;
}
.c-page__point-inner {
  background-color: #fff;
  border-radius: 1.875rem;
  padding: 2.5rem 7.125rem;
  position: relative;
  margin-bottom: 5rem;
}
@media (width <= 768px) {
  .c-page__point-inner {
    padding: 2.5rem 1.875rem 1.25rem 1.875rem;
    margin-bottom: 1.875rem;
  }
}
.c-page__point-title {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  line-height: 1;
}
@media (width <= 768px) {
  .c-page__point-title {
    font-size: 1.25rem;
  }
}
.c-page__point-photos {
  display: flex;
  justify-content: space-between;
  align-items: start;
  max-width: 56.25rem;
  margin: 0 auto 7.5rem;
}
@media (width <= 768px) {
  .c-page__point-photos {
    margin-bottom: 3.125rem;
  }
}
.c-page__point-photos-img {
  width: 26.5625rem;
  overflow: hidden;
  border-radius: 1.875rem;
}
@media (width <= 768px) {
  .c-page__point-photos-img {
    border-radius: 0.75rem;
    width: 10.3125rem;
  }
}
.c-page__point-photos-img:first-child {
  margin-top: 3.125rem;
}
@media (width <= 768px) {
  .c-page__point-photos-img:first-child {
    margin-top: 2rem;
  }
}
.c-page__tape {
  position: absolute;
}
.c-page__tape--point01 {
  width: 15.150625rem;
  top: -6.25rem;
  left: -9.375rem;
}
@media (width <= 768px) {
  .c-page__tape--point01 {
    width: 8.0375rem;
    top: -3.75rem;
    left: -3.125rem;
  }
}
.c-page__tape--point02 {
  width: 14.733125rem;
  bottom: -8.125rem;
  right: -6.25rem;
}
@media (width <= 768px) {
  .c-page__tape--point02 {
    width: 7.81875rem;
    bottom: -6.25rem;
    right: -3.125rem;
  }
}
.c-page__tape--parking {
  width: 18.14125rem;
  top: -8.125rem;
  right: -7.5rem;
}
@media (width <= 768px) {
  .c-page__tape--parking {
    width: 12.453125rem;
    top: -3.125rem;
    right: -6.25rem;
  }
}
.c-page__h2 {
  color: #707070;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}
@media (width <= 768px) {
  .c-page__h2 {
    font-size: 1.5rem;
  }
}
.c-page__eng {
  font-size: 1rem;
  color: #ddc6bd;
  margin-bottom: 3.125rem;
}
@media (width <= 768px) {
  .c-page__eng {
    font-size: 0.875rem;
    margin-bottom: 1.5625rem;
  }
}
.c-page__h3 {
  background-color: #d0b7a6;
  border-radius: 999px;
  color: #fff;
  font-size: 1.25rem;
  width: 11.25rem;
  display: inline-block;
  margin-bottom: 1.25rem;
}
@media (width <= 768px) {
  .c-page__h3 {
    font-size: 0.875rem;
    width: 10rem;
    line-height: 2.4;
    margin-bottom: 0.625rem;
  }
}
.c-page__p {
  text-align: left;
  margin-bottom: 1em;
}
@media (width <= 768px) {
  .c-page__p {
    font-size: 0.875rem;
  }
}
.c-page__p:last-of-type {
  margin-bottom: 0;
}
.c-page__guide {
  text-align: center;
  max-width: 37.5rem;
  margin: 0 auto 7.5rem;
}
@media (width <= 768px) {
  .c-page__guide {
    margin-bottom: 3.75rem;
  }
}
.c-page__guide-p {
  font-size: 1.5rem;
  margin-bottom: 3.125rem;
}
@media (width <= 768px) {
  .c-page__guide-p {
    font-size: 1rem;
    margin-bottom: 1.5625rem;
  }
}
.c-page__guide-p--last {
  margin-bottom: 0;
}
.c-page__guide-p span {
  display: block;
  font-size: 1rem;
}
.c-page__guide .c-page__p {
  margin-bottom: 3.75rem;
}
@media (width <= 768px) {
  .c-page__guide .c-page__p {
    margin-bottom: 1.25rem;
  }
}
@media (width <= 768px) {
  .c-page__guide .c-table {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }
}
.c-page__flow {
  text-align: center;
  max-width: 37.5rem;
  margin: 0 auto 3.75rem;
}
@media (width <= 768px) {
  .c-page__flow {
    margin-bottom: 1.875rem;
  }
}
.c-page__flow-p {
  font-size: 1.25rem;
  color: #af7651;
  margin-bottom: 3.125rem;
}
.c-page__line {
  max-width: 45rem;
  margin: 0 auto 7.5rem;
  text-align: center;
}
@media (width <= 768px) {
  .c-page__line {
    margin-bottom: 3.75rem;
  }
}
.c-page__line-p {
  color: #af7651;
  font-size: 1.25rem;
  text-align: left;
  margin-bottom: 2.5rem;
}
@media (width <= 768px) {
  .c-page__line-p {
    font-size: 1rem;
  }
}
.c-page__line-inner {
  text-align: left;
  border-top: 1px solid #af7651;
  border-bottom: 1px solid #af7651;
  padding: 1.25rem 0 1.25rem;
  font-size: 1.25rem;
  color: #af7651;
  margin-bottom: 3.75rem;
}
@media (width <= 768px) {
  .c-page__line-inner {
    font-size: 1rem;
    margin-bottom: 3.125rem;
  }
}
@media (width <= 768px) {
  .c-page__line-inner ul {
    padding-left: 1em;
    line-height: 1.5;
  }
}
.c-page__line .c-page__p {
  font-size: 1rem;
  color: #222;
}
.c-page__line .c-btn {
  margin: 0 auto;
}
.c-page__parking {
  position: relative;
  padding-bottom: 6.25rem;
}
@media (width <= 768px) {
  .c-page__parking {
    padding-bottom: 3.75rem;
  }
}
.c-page__parking-inner {
  background-color: #fff;
  padding: 3.625rem 5.625rem;
  border-radius: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.75rem;
  position: relative;
  z-index: 1;
}
@media (width <= 768px) {
  .c-page__parking-inner {
    padding: 3.125rem 1.375rem;
    flex-wrap: wrap;
  }
}
.c-page__parking-thumb {
  width: 31.875rem;
}
@media (width <= 768px) {
  .c-page__parking-thumb {
    width: 100%;
    order: 2;
    margin-bottom: 1.25rem;
  }
}
.c-page__parking-text {
  width: 20.625rem;
}
@media (width <= 768px) {
  .c-page__parking-text {
    width: 100%;
    display: contents;
  }
}
.c-page__parking-title {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}
@media (width <= 768px) {
  .c-page__parking-title {
    font-size: 1.25rem;
    order: 1;
    text-align: center;
    width: 100%;
  }
}
@media (width <= 768px) {
  .c-page__parking .c-page__p {
    font-size: 1rem;
    order: 3;
  }
}
.c-page__parking .c-btn {
  margin: 0 auto;
}
.c-page__rule {
  max-width: 56.25rem;
  margin: 0 auto 6.25rem;
}
@media (width <= 768px) {
  .c-page__rule {
    max-width: 100%;
    margin-bottom: 3.75rem;
  }
}
.c-page__rule .c-page__h2 {
  text-align: center;
}
.c-page__rule .c-page__eng {
  text-align: center;
}
.c-page__rule .c-btn--line {
  margin: 3.75rem auto 0;
}
@media (width <= 768px) {
  .c-page__rule .c-btn--line {
    width: 16.25rem;
  }
}
.c-page__rule-title {
  font-size: 1.125rem;
  color: #af7651;
  margin: 2.1875rem 0 0.3125rem;
}
@media (width <= 768px) {
  .c-page__rule-title {
    margin: 1.875rem 0 0.9375rem;
  }
}
@media (width <= 768px) {
  .c-page__rule .c-page__p {
    font-size: 1rem;
  }
}
.c-page__menu {
  text-align: center;
  margin-bottom: 7.5rem;
}
@media (width <= 768px) {
  .c-page__menu {
    margin-bottom: 3.75rem;
  }
}
.c-page__menu-inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3.75rem;
  flex-wrap: wrap;
}
@media (width <= 768px) {
  .c-page__menu-inner {
    flex-wrap: wrap;
    gap: 0.625rem;
  }
}
.c-page__menu-inner--access02 {
  gap: 3.75rem 0;
}
.c-page__menu-item {
  width: 31.25rem;
}
@media (width <= 768px) {
  .c-page__menu-item {
    width: 100%;
  }
}
.c-page__menu-title {
  font-size: 1.25rem;
  color: #af7651;
  margin-bottom: 1.25rem;
}
@media (width <= 768px) {
  .c-page__menu-title {
    font-size: 1rem;
    margin-bottom: 0rem;
  }
}
.c-page__menu-title--access {
  color: #222;
  font-size: 1.5rem;
}
@media (width <= 768px) {
  .c-page__menu-title--access {
    font-size: 1.25rem;
    margin-bottom: 0.625rem;
  }
}
.c-page__menu-title--mb0 {
  margin-bottom: 0;
}
.c-page__menu-thumb {
  border: 0.1875rem solid #af7651;
}
.c-page__menu .c-btn--line {
  margin: 0 auto;
}
.c-page__menu--access .c-page__menu-thumb {
  border: none;
}
.c-page__menu--access .c-page__menu-thumb img {
  border-radius: 1.25rem;
  margin-bottom: 0.625rem;
}
.c-page__menu--access .c-page__menu-thumb .c-page__menu-p {
  text-align: left;
}
.c-page__place {
  max-width: 56.25rem;
  margin: 0 auto 9.375rem;
  position: relative;
}
.c-page__place-thumb {
  margin-bottom: 2.5rem;
}
.c-page__place .c-btn {
  margin: 0 auto;
}
.c-page__place-inner {
  margin: 5rem auto 0;
  max-width: 51.25rem;
  display: flex;
  gap: 2.125rem;
  position: relative;
}
.c-page__place-inner table {
  width: 31.25rem;
}
@media (width <= 768px) {
  .c-page__place-inner table {
    width: 100%;
  }
}
.c-page__place-inner ul {
  width: 19.375rem;
  margin: 0;
}
@media (width <= 768px) {
  .c-page__place-inner ul {
    width: 100%;
  }
}

.c-flow__list {
  text-align: left;
}
.c-flow__item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  position: relative;
  font-size: 1.1875rem;
}
@media (width <= 768px) {
  .c-flow__item {
    margin-bottom: 2rem;
    align-items: center;
    font-size: 1.125rem;
  }
}
.c-flow__item:last-of-type {
  margin-bottom: 0;
}
.c-flow__item:not(:last-of-type):after {
  position: absolute;
  content: "";
  width: 0.7125rem;
  height: 2.28125rem;
  background-image: url("../images/page/flow-arrow.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center bottom;
  right: 14.375rem;
  bottom: -2.28125rem;
}
@media (width <= 768px) {
  .c-flow__item:not(:last-of-type):after {
    right: 7.875rem;
    height: 2rem;
    bottom: -2rem;
  }
}
.c-flow__step {
  width: 4.375rem;
  height: 4.375rem;
  background-color: #af7651;
  color: #fff;
  font-size: 1.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
}
@media (width <= 768px) {
  .c-flow__step {
    width: 3.125rem;
    height: 3.125rem;
    font-size: 0.875rem;
  }
}
.c-flow__text {
  width: 30.625rem;
  height: 4.375rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 0.625rem;
  position: relative;
  font-size: 1.1875rem;
}
@media (width <= 768px) {
  .c-flow__text {
    height: 3.75rem;
    width: 16.5rem;
    border-radius: 0.875rem;
    font-size: 0.9375rem;
    line-height: 1.2;
    padding: 0 0.625rem;
  }
}
.c-flow__text:before {
  content: "";
  width: 2rem;
  height: 1.375rem;
  position: absolute;
  left: -1.25rem;
  top: 1.5rem;
  background-color: #fff;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
@media (width <= 768px) {
  .c-flow__text:before {
    top: 1.1875rem;
    left: -1rem;
    width: 1.625rem;
  }
}

.c-point__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 0.625rem 0;
}
@media (width <= 768px) {
  .c-point__list {
    padding-left: 0;
  }
}
.c-point__item {
  width: 50%;
  padding-left: 2.8125rem;
  background-image: url("../images/page/paw.png");
  background-repeat: no-repeat;
  background-position: left 0.5rem;
  background-size: 1.96875rem;
  text-decoration: underline;
  font-size: 1.375rem;
}
@media (width <= 768px) {
  .c-point__item {
    width: 100%;
    font-size: 1rem;
    background-size: 1.335rem;
    padding-left: 1.875rem;
  }
}

.c-post__list.c-list {
  margin-bottom: 3.125rem;
}
.c-post__item {
  border-bottom: 1px solid #d0b7a6;
}
.c-post__item:hover .c-post__btn {
  background-color: #d0b7a6;
  transition: 0.3s;
}
.c-post__item:hover .c-post__btn:after {
  border-top-color: #fff;
  border-right-color: #fff;
}
.c-post__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 67.5rem;
  margin: 0 auto;
  padding: 2.1875rem 0;
  padding-left: 5.625rem;
  text-decoration: none;
}
@media (width <= 768px) {
  .c-post__link {
    padding: 1.5rem 1.25rem;
  }
}
.c-post__date {
  font-size: 1rem;
}
.c-post__title {
  font-size: 1.125rem;
  color: #af7651;
  width: 38.75rem;
}
@media (width <= 768px) {
  .c-post__title {
    width: 17.5rem;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    font-size: 0.875rem;
    line-height: 1.5;
  }
}
.c-post__btn {
  width: 2.625rem;
  height: 2.625rem;
  border: 0.125rem solid #d0b7a6;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width <= 768px) {
  .c-post__btn {
    width: 1.5625rem;
    height: 1.5625rem;
  }
}
.c-post__btn:after {
  width: 0.9375rem;
  height: 0.9375rem;
  content: "";
  border-top: 0.125rem solid #d0b7a6;
  border-right: 0.125rem solid #d0b7a6;
  transform: rotate(45deg);
  margin-right: 0.3125rem;
}
@media (width <= 768px) {
  .c-post__btn:after {
    width: 0.5625rem;
    height: 0.5625rem;
    border-top: 0.125rem solid #d0b7a6;
    border-right: 0.125rem solid #d0b7a6;
    margin-right: 0.125rem;
  }
}
.c-post__pagination {
  margin-bottom: 6.25rem;
}
.c-post__pagination-list {
  max-width: 67.5rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem 3.125rem;
  flex-wrap: wrap;
}
@media (width <= 768px) {
  .c-post__pagination-list {
    gap: 0.625rem 2.5rem;
  }
}
.c-post__pagination-item--prev {
  width: 1.5rem;
  height: 1.25rem;
  background-color: #d0b7a6;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  line-height: 1;
}
@media (width <= 768px) {
  .c-post__pagination-item--prev {
    width: 0.9375rem;
    height: 0.78125rem;
  }
}
.c-post__pagination-item--next {
  width: 1.5rem;
  height: 1.25rem;
  background-color: #d0b7a6;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media (width <= 768px) {
  .c-post__pagination-item--next {
    width: 0.9375rem;
    height: 0.78125rem;
  }
}
.c-post__pagination-item--current .c-post__pagination-link {
  color: #af7651;
}
.c-post__pagination-link {
  text-decoration: none;
  color: #d0b7a6;
  font-size: 1.5rem;
}
@media (width <= 768px) {
  .c-post__pagination-link {
    font-size: 0.875rem;
  }
}

.c-pagenation {
  margin: 50px 0 0 0;
  text-align: center;
}
.c-pagenation:after, .c-pagenation__navul:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}
.c-pagenation__nav {
  margin: 0;
}
.c-pagenation__item {
  float: left;
  list-style: none outside none;
  margin-left: 3px;
  margin-bottom: 3px;
}
.c-pagenation__item:first-child {
  margin-left: 0;
}
.c-pagenation__item--active {
  background-color: #333;
  border-radius: 3px;
  color: #ffffff;
  cursor: not-allowed;
  padding: 10px 20px;
}
.c-pagenation__link {
  background: none repeat scroll 0 0 #cccccc;
  border-radius: 3px;
  color: #ffffff;
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.c-pagenation__link:hover {
  background-color: #333;
  color: #ffffff;
  opacity: 0.8;
  transition-duration: 500ms;
  transition-property: all;
  transition-timing-function: ease;
}

.c-scroll {
  overflow-x: auto;
}
.c-scroll table {
  min-width: 40rem;
  margin: 0 0 2.5rem 0;
}

.c-scroll-bar {
  overflow-y: scroll;
}
.c-scroll-bar::-webkit-scrollbar {
  width: 0.15625rem;
}
.c-scroll-bar::-webkit-scrollbar-thumb {
  background-color: #d0b7a6;
  border-radius: 999px;
}
.c-scroll-bar::-webkit-scrollbar-track {
  background-color: #999;
  border-radius: 0.15625rem;
}

.c-section {
  padding: 5.625rem 0 4.375rem;
  position: relative;
  overflow-x: clip;
}
@media (width <= 768px) {
  .c-section {
    padding: 3.75rem 0;
  }
}
.c-section--bg01 {
  background-color: #faf6f0;
}

.c-table {
  width: 100%;
  margin-bottom: 40px;
  background-color: #fff;
  border-collapse: collapse;
}
.c-table th {
  text-align: center;
  background-color: #d0b7a6;
  padding: 0.3125rem;
  border-right: 0.1875rem solid #fff;
  vertical-align: middle;
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.4;
}
@media (width <= 768px) {
  .c-table th {
    font-size: 0.875rem;
  }
}
.c-table th:last-of-type {
  border-right: none;
}
.c-table td {
  padding: 0.3125rem;
  text-align: left;
  border-right: 0.1875rem solid #f6f6f6;
  border-bottom: 0.1875rem solid #f6f6f6;
  font-size: 1.25rem;
  text-align: center;
  font-weight: 500;
}
@media (width <= 768px) {
  .c-table td {
    font-size: 1rem;
  }
}
.c-table td:last-of-type {
  border-right: none;
}
.c-table--pad td {
  padding: 1rem 0;
}

.c-table02 {
  width: 100%;
  border-top: 1px solid #af7651;
  border-collapse: collapse;
  line-height: 1.625;
}
.c-table02 th {
  border-bottom: 1px solid #af7651;
  vertical-align: top;
  color: #af7651;
  font-weight: 700;
  text-align: left;
  padding: 0.3125rem 0;
}
.c-table02 td {
  padding: 0.3125rem 0;
  border-bottom: 1px solid #af7651;
}

.c-youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.c-youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/********************************************
* Project
********************************************/
.p-home__mv {
  position: relative;
  overflow-x: clip;
  background-image: url(../images/home/mv.png);
  background-repeat: no-repeat;
  background-position: calc(50% + 1.25rem) top;
  background-size: 100.125rem;
  margin-top: -3.125rem;
  margin-bottom: 0.625rem;
}
@media (width <= 768px) {
  .p-home__mv {
    background-image: url(../images/home/mv-sp.png);
    background-repeat: no-repeat;
    background-position: calc(50% + 0.625rem) top;
    background-size: 28.875rem;
    margin-top: -1.875rem;
  }
}
.p-home__mv .c-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 65.25rem;
  position: relative;
}
@media (width <= 768px) {
  .p-home__mv .c-inner {
    height: 40.75rem;
  }
}
.p-home__mv-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (width <= 768px) {
  .p-home__mv-thumb {
    left: 1.25rem;
    width: calc(100% - 2.5rem);
  }
}
.p-home__mv-title {
  font-size: 2.125rem;
  text-align: center;
  color: #fff;
  position: relative;
  font-weight: 400;
  letter-spacing: 0.1em;
  z-index: 1;
  transform: translateY(4.375rem);
  color: #af7651;
}
@media (width <= 768px) {
  .p-home__mv-title {
    margin-top: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.5;
    transform: inherit;
  }
}
.p-home__mv-name {
  position: absolute;
  right: -1.875rem;
  bottom: 0;
  width: 25rem;
}
@media (width <= 768px) {
  .p-home__mv-name {
    width: 11.415625rem;
    right: inherit;
    left: 0.5rem;
    bottom: 8.75rem;
  }
}
.p-home__about {
  position: relative;
}
.p-home__about .c-inner {
  display: flex;
  align-items: center;
  gap: 7.5rem;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}
@media (width <= 768px) {
  .p-home__about .c-inner {
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 1.875rem;
  }
}
.p-home__about-text {
  width: 50%;
  text-align: center;
  padding-left: 4.375rem;
  padding-right: 2.5rem;
}
@media (width <= 768px) {
  .p-home__about-text {
    width: 100%;
    display: contents;
  }
}
.p-home__about-name {
  position: relative;
  margin-bottom: 1.25rem;
  width: 33.1875rem;
}
@media (width <= 768px) {
  .p-home__about-name {
    width: 20.3125rem;
    order: 1;
    margin: 0 auto;
  }
}
.p-home__about-name > img {
  width: 100%;
}
.p-home__about-foot {
  width: 5.6875rem;
  position: absolute;
  top: -3.125rem;
  right: -4.375rem;
}
@media (width <= 768px) {
  .p-home__about-foot {
    width: 3rem;
    top: -1.25rem;
    right: 0rem;
  }
}
.p-home__about-foot img {
  width: 100%;
}
.p-home__about-title {
  font-weight: 900;
  font-size: 1.25rem;
  margin-bottom: 3.125rem;
}
@media (width <= 768px) {
  .p-home__about-title {
    font-size: 1rem;
    order: 2;
    text-align: center;
    width: 100%;
    margin-bottom: 1.5625rem;
  }
}
.p-home__about-p {
  text-align: left;
  font-size: 1.125rem;
}
@media (width <= 768px) {
  .p-home__about-p {
    order: 4;
    font-size: 0.875rem;
  }
}
.p-home__about-thumb {
  width: 50%;
}
@media (width <= 768px) {
  .p-home__about-thumb {
    width: calc(100% + 1.25rem);
    order: 3;
    margin: 0 -0.625rem 1.875rem;
  }
}
.p-home__about-bg {
  height: 16.25rem;
  position: relative;
  z-index: 2;
}
@media (width <= 768px) {
  .p-home__about-bg {
    height: 25.625rem;
    margin-bottom: 1.25rem;
  }
}
.p-home__nav {
  padding: 5.625rem 1.25rem;
  position: relative;
}
@media (width <= 768px) {
  .p-home__nav {
    padding: 1.875rem 0.625rem 2.5rem;
    overflow-x: clip;
  }
}
.p-home__nav-nav {
  max-width: 61.25rem;
  margin: 0 auto;
}
.p-home__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem 2.5rem;
  position: relative;
  z-index: 2;
}
@media (width <= 768px) {
  .p-home__nav-list {
    gap: 0rem 0.5625rem;
  }
}
.p-home__nav-item {
  width: 18.75rem;
}
@media (width <= 768px) {
  .p-home__nav-item {
    width: 10.625rem;
    height: 13.125rem;
  }
}
@media (width <= 768px) {
  .p-home__nav-item img {
    height: 100%;
  }
}
.p-home__header {
  margin-bottom: 3.75rem;
  position: relative;
}
@media (width <= 768px) {
  .p-home__header {
    margin-bottom: 0.9375rem;
  }
}
.p-home__header-img {
  position: absolute;
}
@media (width <= 768px) {
  .p-home__header-img {
    position: static;
    margin-bottom: 1.25rem;
  }
}
.p-home__eng {
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media (width <= 768px) {
  .p-home__eng {
    font-size: 1.75rem;
  }
}
.p-home__title {
  font-size: 1.75rem;
}
@media (width <= 768px) {
  .p-home__title {
    font-size: 1.25rem;
  }
}
.p-home__sub-title {
  font-size: 1.5rem;
  margin-bottom: 0.625rem;
}
@media (width <= 768px) {
  .p-home__sub-title {
    font-size: 1.125rem;
  }
}
.p-home__dog-run, .p-home__dog-pool, .p-home__dog-hotel, .p-home__dog-cafe, .p-home__dog-treats {
  text-align: center;
}
.p-home__dog-run .c-inner, .p-home__dog-pool .c-inner, .p-home__dog-hotel .c-inner, .p-home__dog-cafe .c-inner, .p-home__dog-treats .c-inner {
  position: relative;
  z-index: 2;
}
.p-home__dog-run-thumb, .p-home__dog-pool-thumb, .p-home__dog-hotel-thumb, .p-home__dog-cafe-thumb, .p-home__dog-treats-thumb {
  margin-bottom: 3.75rem;
}
@media (width <= 768px) {
  .p-home__dog-run-thumb, .p-home__dog-pool-thumb, .p-home__dog-hotel-thumb, .p-home__dog-cafe-thumb, .p-home__dog-treats-thumb {
    margin: 0 -1.25rem 2.5rem;
    width: calc(100% + 2.5rem);
    display: block;
  }
}
.p-home__dog-run-p, .p-home__dog-pool-p, .p-home__dog-hotel-p, .p-home__dog-cafe-p, .p-home__dog-treats-p {
  display: block;
  text-align: left;
  max-width: 43.75rem;
  margin: 0 auto 4.375rem;
}
@media (width <= 768px) {
  .p-home__dog-run-p, .p-home__dog-pool-p, .p-home__dog-hotel-p, .p-home__dog-cafe-p, .p-home__dog-treats-p {
    margin-bottom: 1.5625rem;
  }
}
.p-home__dog-run .c-btn, .p-home__dog-pool .c-btn, .p-home__dog-hotel .c-btn, .p-home__dog-cafe .c-btn, .p-home__dog-treats .c-btn {
  margin: 0 auto;
}
.p-home__dog-run-header-img {
  width: 13.61625rem;
  top: -1.875rem;
  right: calc(50% - 23.75rem);
}
@media (width <= 768px) {
  .p-home__dog-run-header-img {
    width: 7.0575rem;
  }
}
.p-home__dog-pool-header-img {
  width: 14.1325rem;
  top: -0.625rem;
  left: calc(50% - 26.875rem);
}
@media (width <= 768px) {
  .p-home__dog-pool-header-img {
    width: 8.47375rem;
  }
}
.p-home__dog-hotel-header-img {
  width: 8.985625rem;
  top: -1.875rem;
  right: calc(50% - 23.75rem);
}
@media (width <= 768px) {
  .p-home__dog-hotel-header-img {
    width: 5.358125rem;
  }
}
.p-home__dog-cafe-header-img {
  width: 15.41125rem;
  top: -2.5rem;
  left: calc(50% - 28.75rem);
}
@media (width <= 768px) {
  .p-home__dog-cafe-header-img {
    width: 9.908125rem;
  }
}
.p-home__dog-treats-header-img {
  width: 11.2225rem;
  top: -1.25rem;
  right: calc(50% - 26.25rem);
}
@media (width <= 768px) {
  .p-home__dog-treats-header-img {
    width: 6.45875rem;
  }
}
.p-home__access {
  background-image: url("../images/home/access.jpg");
  background-size: cover;
  text-align: center;
  padding: 10rem 1.25rem;
  height: 40.625rem;
  position: relative;
}
@media (width <= 768px) {
  .p-home__access {
    background-image: url("../images/home/access-sp.jpg");
    height: 22.75rem;
    padding: 10rem 0 3.75rem;
  }
}
.p-home__access:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
}
.p-home__access .c-inner {
  position: relative;
  z-index: 2;
}
.p-home__access-title {
  font-size: 1.875rem;
  color: #d0b7a6;
  margin-bottom: 8.75rem;
}
@media (width <= 768px) {
  .p-home__access-title {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 1.875rem;
  }
}
.p-home__access-img {
  position: absolute;
  width: 8.6875rem;
  top: 1.25rem;
  left: calc(50% - 16.875rem);
}
@media (width <= 768px) {
  .p-home__access-img {
    width: 5.335rem;
    top: -6.25rem;
    left: calc(50% - 2.6875rem);
  }
}
.p-home__access .c-btn {
  margin: 0 auto;
}
.p-home__news {
  text-align: center;
  padding: 5.625rem 0 5rem;
}
@media (width <= 768px) {
  .p-home__news {
    padding: 3.75rem 0;
  }
}
.p-home__news-list.c-list {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  text-align: left;
  position: relative;
  z-index: 2;
}
@media (width <= 768px) {
  .p-home__news-list.c-list {
    margin: 0 -0.625rem;
    width: calc(100% + 1.25rem);
  }
}
.p-home__news-title {
  color: #d0b7a6;
  font-size: 1.875rem;
  margin-bottom: 3.125rem;
  line-height: 1;
}
@media (width <= 768px) {
  .p-home__news-title {
    color: #222;
    font-size: 1.75rem;
    margin-bottom: 1.875rem;
  }
}
.p-home__news-list {
  max-width: 39.375rem;
  margin: 0 auto;
}
.p-home__news-list-item {
  border-radius: 1.25rem;
  overflow: hidden;
}
.p-home__news-list-link {
  display: flex;
  text-decoration: none;
}
.p-home__news-list-text {
  background-color: #fff;
  position: relative;
  padding: 1.25rem 2.5rem;
  width: calc(100% - 5.125rem);
}
@media (width <= 768px) {
  .p-home__news-list-text {
    padding: 1.25rem;
    width: calc(100% - 3.125rem);
  }
}
.p-home__news-list-date {
  color: #d0b7a6;
  font-size: 0.875rem;
  line-height: 1;
}
@media (width <= 768px) {
  .p-home__news-list-date {
    margin-bottom: 0.3125rem;
  }
}
@media (width <= 768px) {
  .p-home__news-list-title {
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    line-height: 1.5;
  }
}
.p-home__news-list-btn {
  background-color: #d0b7a6;
  width: 5.0625rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width <= 768px) {
  .p-home__news-list-btn {
    width: 3.125rem;
  }
}
.p-home__news-list-btn:after {
  display: block;
  content: "";
  width: 0.9375rem;
  height: 0.9375rem;
  border-right: 0.125rem solid #fff;
  border-bottom: 0.125rem solid #fff;
  transform: rotate(-45deg);
}
@media (width <= 768px) {
  .p-home__news-list-btn:after {
    margin-right: 0.625rem;
  }
}
.p-home__line {
  padding: 6.25rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (width <= 768px) {
  .p-home__line {
    padding: 2.8125rem 0;
  }
}
.p-home__line-title {
  font-size: 1.75rem;
  margin-bottom: 1.875rem;
  color: #af7651;
  font-weight: 700;
}
@media (width <= 768px) {
  .p-home__line-title {
    font-size: 1.25rem;
  }
}
.p-home__line-inner {
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 33.125rem;
  margin: 0 auto 3.125rem;
}
@media (width <= 768px) {
  .p-home__line-inner {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.25rem;
  }
}
.p-home__line-p {
  color: #af7651;
  width: 25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}
@media (width <= 768px) {
  .p-home__line-p {
    font-size: 1rem;
    order: 2;
    line-height: 2;
  }
}
.p-home__line-img {
  width: 5.625rem;
}
@media (width <= 768px) {
  .p-home__line-img {
    order: 1;
    width: 5rem;
    margin-bottom: 1.25rem;
  }
}
.p-home__line .c-btn {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media (width <= 768px) {
  .p-home__line .c-btn {
    font-size: 1.125rem;
    padding: 1.4375rem 0;
    height: auto;
  }
}
.p-home__line-icon {
  width: 1.25rem;
}
.p-home__tape {
  position: absolute;
  z-index: 1;
}
.p-home__tape-mv01 {
  width: 18.031875rem;
  right: calc(50% - 56.875rem);
  top: -4.375rem;
}
@media (width <= 768px) {
  .p-home__tape-mv01 {
    display: none;
  }
}
.p-home__tape-mv02 {
  width: 16.363125rem;
  left: calc(50% - 56.25rem);
  bottom: 3.525rem;
}
@media (width <= 768px) {
  .p-home__tape-mv02 {
    width: 9.614375rem;
    left: -2.5rem;
    bottom: 6.9375rem;
  }
}
.p-home__tape-mv03 {
  width: 31.1125rem;
  right: calc(50% - 56.25rem);
  bottom: -8.75rem;
}
@media (width <= 768px) {
  .p-home__tape-mv03 {
    width: 18.920625rem;
    right: -9.8125rem;
    bottom: -3.375rem;
  }
}
.p-home__tape-about01 {
  width: 25.861875rem;
  left: calc(50% - 48.75rem);
  bottom: 8.125rem;
}
@media (width <= 768px) {
  .p-home__tape-about01 {
    width: 13.184375rem;
    left: -1.5625rem;
    bottom: 23.4375rem;
  }
}
.p-home__tape-nav01 {
  width: 25.861875rem;
  left: calc(50% - 46.25rem);
  bottom: -3.75rem;
}
@media (width <= 768px) {
  .p-home__tape-nav01 {
    width: 14.78625rem;
    left: -1.875rem;
    bottom: -4.375rem;
  }
}
.p-home__tape-nav02 {
  width: 14.79875rem;
  right: calc(50% - 41.25rem);
  top: -3.125rem;
}
@media (width <= 768px) {
  .p-home__tape-nav02 {
    width: 10.58625rem;
    top: -5.3125rem;
    right: -1.875rem;
  }
}
.p-home__tape-run01 {
  width: 20.1725rem;
  right: calc(50% - 45rem);
  top: 11.25rem;
}
@media (width <= 768px) {
  .p-home__tape-run01 {
    width: 10.668125rem;
    top: 9.8125rem;
    right: -2.5rem;
  }
}
.p-home__tape-pool01 {
  width: 21.154375rem;
  right: calc(50% - 41.25rem);
  top: 8.125rem;
}
@media (width <= 768px) {
  .p-home__tape-pool01 {
    width: 15.23875rem;
    top: 11.3125rem;
    right: -5.625rem;
  }
}
.p-home__tape-pool02 {
  width: 27.7325rem;
  right: calc(50% - 45rem);
  bottom: -5.625rem;
}
@media (width <= 768px) {
  .p-home__tape-pool02 {
    width: 17.3175rem;
    bottom: -3.75rem;
    right: -6.25rem;
  }
}
.p-home__tape-hotel01 {
  width: 26.201875rem;
  left: calc(50% - 48.75rem);
  top: 30.1875rem;
}
@media (width <= 768px) {
  .p-home__tape-hotel01 {
    width: 13.51875rem;
    top: 23.875rem;
    left: -3.75rem;
  }
}
.p-home__tape-hotel02 {
  width: 18.07375rem;
  right: calc(50% - 46.25rem);
  bottom: -12.5rem;
}
@media (width <= 768px) {
  .p-home__tape-hotel02 {
    width: 13.45625rem;
    bottom: -8.125rem;
    right: -3.125rem;
  }
}
.p-home__tape-treats01 {
  width: 16.38125rem;
  left: calc(50% - 41.25rem);
  bottom: 18.75rem;
}
@media (width <= 768px) {
  .p-home__tape-treats01 {
    width: 10.325rem;
    top: 25rem;
    left: -1.875rem;
  }
}
.p-home__tape-treats02 {
  width: 18.07375rem;
  right: calc(50% - 46.25rem);
  top: -6.25rem;
}
@media (width <= 768px) {
  .p-home__tape-treats02 {
    width: 11.875rem;
    top: -4.0625rem;
    right: -5rem;
  }
}
.p-home__tape-line01 {
  width: 26.793125rem;
  left: calc(50% - 37.5rem);
  top: -6.25rem;
}
@media (width <= 768px) {
  .p-home__tape-line01 {
    width: 15.625rem;
    top: -3.4375rem;
    left: -1.25rem;
  }
}
.p-home__tape-line02 {
  width: 20.90625rem;
  right: calc(50% - 37.5rem);
  bottom: -2.5rem;
}
@media (width <= 768px) {
  .p-home__tape-line02 {
    width: 11.65625rem;
    bottom: -4.0625rem;
    right: -0.3125rem;
  }
}

.p-dogrun .c-header {
  color: #fcb701;
}
.p-dogrun .c-page__top-img {
  width: 9.7375rem;
}
@media (width <= 768px) {
  .p-dogrun .c-page__top-img {
    width: 6.71375rem;
  }
}
.p-dogrun .c-flow__list.c-list {
  margin-bottom: 3.75rem;
}
@media (width <= 768px) {
  .p-dogrun .c-flow__list.c-list {
    margin-bottom: 0rem;
  }
}
@media (width <= 768px) {
  .p-dogrun .c-btn--line {
    width: 16.25rem;
  }
}

.p-dogpool .c-header {
  color: #3b9c93;
}
.p-dogpool .c-page__top-img {
  width: 12.8675rem;
}
@media (width <= 768px) {
  .p-dogpool .c-page__top-img {
    width: 8.54625rem;
  }
}
.p-dogpool .c-page__flow {
  margin-bottom: 6.25rem;
}
@media (width <= 768px) {
  .p-dogpool .c-page__flow {
    margin-bottom: 3.75rem;
  }
}
.p-dogpool .c-flow__list.c-list {
  margin-bottom: 3.75rem;
}
.p-dogpool .c-btn--line {
  margin: 0 auto;
}
@media (width <= 768px) {
  .p-dogpool .c-btn--line {
    width: 16.25rem;
  }
}

.p-doghotel .c-header {
  color: #d0b7a6;
}
.p-doghotel .c-page__top-img {
  width: 7.935625rem;
}
@media (width <= 768px) {
  .p-doghotel .c-page__top-img {
    width: 5.175625rem;
  }
}
.p-doghotel .c-page__top-title {
  line-height: 1.6;
}
.p-doghotel .c-page__guide {
  max-width: 56.25rem;
}
.p-doghotel .c-page__guide .c-page__guide-p--720 {
  max-width: 45rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.25rem;
}
@media (width <= 768px) {
  .p-doghotel .c-page__guide .c-page__guide-p--720 {
    max-width: 100%;
    font-size: 1rem;
  }
}
.p-doghotel .c-page__guide .c-table {
  line-height: 1.5;
}
.p-doghotel .c-page__guide .c-table--pad td {
  padding: 1rem 0;
}
@media (width <= 768px) {
  .p-doghotel .c-page__guide-p {
    text-align: center;
  }
}
@media (width <= 768px) {
  .p-doghotel .c-page__guide-p .u-color--brown {
    text-align: left;
    display: inline-block;
  }
}
@media (width <= 768px) {
  .p-doghotel__table {
    margin-left: -0.625rem;
    margin-right: -0.625rem;
    width: calc(100% + 1.25rem);
  }
  .p-doghotel__table th,
  .p-doghotel__table td {
    padding: 0.625rem 0;
  }
  .p-doghotel__table th:nth-of-type(3), .p-doghotel__table th:nth-of-type(1),
  .p-doghotel__table td:nth-of-type(3),
  .p-doghotel__table td:nth-of-type(1) {
    width: 5.625rem;
  }
}
@media (width <= 768px) {
  .p-doghotel__table--02 td {
    padding: 0.75rem 0 !important;
    line-height: 1.2;
  }
  .p-doghotel__table--02 td:nth-of-type(1) {
    width: 13.4375rem;
  }
}
.p-doghotel .c-page__flow {
  max-width: 45rem;
  margin-left: auto;
  margin-right: auto;
}
@media (width <= 768px) {
  .p-doghotel .c-page__flow {
    max-width: 100%;
  }
}
@media (width <= 768px) {
  .p-doghotel .c-page__flow-p {
    font-size: 1rem;
    text-align: left;
    margin-bottom: 1.25rem;
  }
}
.p-doghotel .c-flow__list.c-list {
  margin-bottom: 3.75rem;
}
@media (width <= 768px) {
  .p-doghotel .c-flow__list.c-list {
    margin-bottom: 2.5rem;
  }
}
.p-doghotel .c-flow__item:after {
  right: 18.75rem;
}
@media (width <= 768px) {
  .p-doghotel .c-flow__item:after {
    right: 7.875rem;
  }
}
.p-doghotel .c-flow__text {
  width: 38.125rem;
}
@media (width <= 768px) {
  .p-doghotel .c-flow__text {
    width: 16.5rem;
  }
}
@media (width <= 768px) {
  .p-doghotel .c-btn--line {
    width: 16.25rem;
  }
}

.p-dogcafe .c-header {
  color: #d24c22;
}
.p-dogcafe .c-page__top-img {
  width: 15.41125rem;
}
@media (width <= 768px) {
  .p-dogcafe .c-page__top-img {
    width: 9.1325rem;
  }
}
.p-dogcafe .c-page__guide {
  margin-bottom: 5rem;
  max-width: 40.625rem;
}
@media (width <= 768px) {
  .p-dogcafe .c-page__guide {
    margin-bottom: 1.875rem;
  }
}
.p-dogcafe .c-page__top-title {
  line-height: 1.6;
}
.p-dogcafe .c-flow__list.c-list {
  margin-bottom: 3.75rem;
}
@media (width <= 768px) {
  .p-dogcafe .c-flow__list.c-list {
    margin-bottom: 0rem;
  }
}
@media (width <= 768px) {
  .p-dogcafe .c-btn--line {
    width: 16.25rem;
  }
}
@media (width <= 768px) {
  .p-dogcafe .c-page__parking {
    padding-bottom: 0rem;
  }
}

.p-access__header-img {
  width: 19.854375rem;
  bottom: 3.75rem;
  left: calc(50% + 13.75rem);
}
@media (width <= 768px) {
  .p-access__header-img {
    left: 13.75rem;
    bottom: 0.625rem;
    width: 9.13375rem;
  }
}
.p-access__place-foot {
  position: absolute;
  width: 17.25rem;
  bottom: -1.875rem;
  left: calc(50% - 61.25rem);
}
.p-access__place-bg {
  position: absolute;
  width: 7.94875rem;
  left: -3.75rem;
  top: 35rem;
}
@media (width <= 768px) {
  .p-access__place-bg {
    width: 4.254375rem;
    left: -0.625rem;
    top: 14.6875rem;
  }
}
.p-access__place-bg2 {
  position: absolute;
  width: 11.706875rem;
  top: 8.125rem;
  right: -5rem;
}
@media (width <= 768px) {
  .p-access__place-bg2 {
    width: 6.800625rem;
    top: inherit;
    bottom: -3.75rem;
    right: 0;
  }
}
.p-access .c-page__content {
  overflow-x: clip;
}
@media (width <= 768px) {
  .p-access .c-page__place {
    margin-bottom: 6.25rem;
  }
}
@media (width <= 768px) {
  .p-access .c-page__place .c-page__place-thumb {
    margin: 0 -1.25rem 1.875rem;
    width: 100vw;
  }
}
@media (width <= 768px) {
  .p-access .c-page__place .c-btn {
    width: 12.5rem;
    padding: 0.5rem 0;
    height: auto;
  }
}
@media (width <= 768px) {
  .p-access .c-page__place .c-page__place-inner {
    flex-wrap: wrap;
    margin-top: 1.875rem;
    gap: 0;
  }
}
@media (width <= 768px) {
  .p-access .c-page__place .c-table02 {
    border-top: none;
    font-size: 0.875rem;
  }
}
.p-access .c-page__place .c-table02 th {
  width: 6.875rem;
}
@media (width <= 768px) {
  .p-access .c-page__place .c-table02 th {
    width: 5rem;
    padding: 0.4375rem 0;
  }
}
@media (width <= 768px) {
  .p-access .c-page__place .c-table02 td {
    padding: 0.4375rem 0;
  }
}
.p-access .c-page__menu--access {
  margin-bottom: 6.25rem;
  position: relative;
}
@media (width <= 768px) {
  .p-access .c-page__menu--access {
    margin-bottom: 3.75rem;
  }
}
.p-access .c-page__menu--access .c-page__p {
  max-width: 50.625rem;
  margin: 0 auto 6.25rem;
}
@media (width <= 768px) {
  .p-access .c-page__menu--access .c-page__p {
    margin-bottom: 3.125rem;
  }
}
@media (width <= 768px) {
  .p-access .c-page__menu--access .c-page__menu-p {
    margin-left: -0.3125rem;
    margin-right: -0.3125rem;
    width: calc(100% + 0.625rem);
  }
}
.p-access .c-page__menu--access .p-access__menu-foot {
  position: absolute;
  width: 119.125rem;
  top: 2.5rem;
  left: calc(50% - 59.875rem);
  max-width: inherit;
}
@media (width <= 768px) {
  .p-access .c-page__menu--access .p-access__menu-foot {
    width: 33.6rem;
    left: -6.25rem;
    top: 19.1875rem;
  }
}
@media (width <= 768px) {
  .p-access .c-page__menu--access .c-btn--line {
    width: 16.25rem;
  }
}
.p-access .c-page__menu-inner {
  margin-bottom: 6.25rem;
}
.p-access .c-page__menu-inner:last-of-type {
  margin-bottom: 3.125rem;
}
@media (width <= 768px) {
  .p-access .c-page__menu-inner:last-of-type {
    margin-bottom: 1.875rem;
  }
}
@media (width <= 768px) {
  .p-access .c-page__menu-inner--first {
    gap: 3.75rem;
    margin-bottom: 2.8125rem;
  }
}
@media (width <= 768px) {
  .p-access .c-page__menu-inner--first .c-page__menu-title {
    margin-bottom: 0.625rem;
  }
}
@media (width <= 768px) {
  .p-access .c-page__menu-inner--access02 {
    gap: 1.25rem;
  }
}
@media (width <= 768px) {
  .p-access .c-page__menu-inner--access02 .c-page__menu-p {
    text-align: left;
  }
}

.p-news .c-header {
  margin-bottom: 0 !important;
}

.p-post__header {
  margin-bottom: 5rem;
}
@media (width <= 768px) {
  .p-post__header {
    margin-bottom: 2.5rem;
  }
}
.p-post__title {
  font-size: 1.25rem;
  color: #af7651;
}
.p-post__content {
  margin-bottom: 3.75rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid #ddc6bd;
}
@media (width <= 768px) {
  .p-post__content {
    margin-bottom: 2.5rem;
    padding-bottom: 3.75rem;
  }
}
.p-post__content *:last-child {
  margin-bottom: 0;
}
.p-post__content h2,
.p-post__content h3,
.p-post__content h4,
.p-post__content h5 {
  line-height: 1.5;
}
.p-post__content p {
  margin-bottom: 2em;
}
.p-post__content table {
  border-collapse: collapse;
  margin-bottom: 2em;
}
@media (width <= 768px) {
  .p-post__content table {
    font-size: 0.875rem;
  }
}
.p-post__content table td,
.p-post__content table th {
  padding: 0.625rem 1.25rem;
  border: 1px solid #ccc;
}
.p-post__content table th {
  font-weight: 600;
}
.p-post__content table a {
  font-weight: 700;
  color: #000;
}
.p-post__content ul {
  margin-bottom: 2em;
}
.p-post__content hr {
  margin: 2em 0;
  display: block;
}
.p-post__bottom-nav {
  margin-bottom: 6.25rem;
  display: flex;
  justify-content: center;
  gap: 10rem;
  align-items: center;
}
@media (width <= 768px) {
  .p-post__bottom-nav {
    padding: 0 1.25rem;
    gap: 0;
    justify-content: space-between;
    margin-bottom: 5rem;
  }
}
.p-post__bottom-btn {
  width: 1.25rem;
  height: 1.25rem;
  border-top: 0.125rem solid #d0b7a6;
  border-right: 0.125rem solid #d0b7a6;
}
@media (width <= 768px) {
  .p-post__bottom-btn {
    width: 0.9375rem;
    height: 0.9375rem;
  }
}
.p-post__bottom-btn--prev {
  transform: rotate(45deg);
}
.p-post__bottom-btn--next {
  transform: rotate(-135deg);
}
.p-post__bottom-list {
  color: #af7651;
  border: 1px solid #ddc6bd;
  display: inline-block;
  width: 11.25rem;
  height: 3.125rem;
  padding-right: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-decoration: none;
  transition: 0.3s;
}
@media (width <= 768px) {
  .p-post__bottom-list {
    font-size: 0.75rem;
    width: 8.75rem;
    height: 2.5rem;
  }
}
.p-post__bottom-list:hover {
  background-color: #af7651;
  color: #fff;
  opacity: 1;
}
.p-post__bottom-list:after {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: calc(50% - 0.4375rem);
  width: 0.875rem;
  height: 0.875rem;
  border-top: 1px solid #d0b7a6;
  border-right: 1px solid #d0b7a6;
  transform: rotate(45deg);
}
@media (width <= 768px) {
  .p-post__bottom-list:after {
    width: 0.6875rem;
    height: 0.6875rem;
    top: calc(50% - 0.34375rem);
  }
}

.p-company {
  text-align: center;
}
@media (width <= 768px) {
  .p-company {
    text-align: left;
  }
}
.p-company__title {
  color: #af7651;
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
}
@media (width <= 768px) {
  .p-company__title {
    font-size: 1rem;
  }
}
.p-company__p {
  margin-bottom: 3.75rem;
}
@media (width <= 768px) {
  .p-company__p {
    margin-bottom: 2.5rem;
  }
}
.p-company__p--01 {
  margin-bottom: 2.5rem;
}
@media (width <= 768px) {
  .p-company__p--01 {
    margin-bottom: 1.25rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.u-pc {
  display: block;
}
@media (width <= 768px) {
  .u-pc {
    display: none;
  }
}
.u-pc--inline {
  display: inline;
}
@media (width <= 768px) {
  .u-pc--inline {
    display: none;
  }
}
.u-pc--iblock {
  display: inline-block;
}
@media (width <= 768px) {
  .u-pc--iblock {
    display: none;
  }
}
.u-pc--table {
  display: table;
}
@media (width <= 768px) {
  .u-pc--table {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media (width <= 768px) {
  .u-sp {
    display: block;
  }
}
.u-sp--inline {
  display: none;
}
@media (width <= 768px) {
  .u-sp--inline {
    display: inline;
  }
}
.u-sp--iblock {
  display: none;
}
@media (width <= 768px) {
  .u-sp--iblock {
    display: inline-block;
  }
}
.u-sp--table {
  display: none;
}
@media (width <= 768px) {
  .u-sp--table {
    display: table;
  }
}

.u-ofit img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.u-pos--absolute {
  position: absolute;
}
.u-pos--fixed {
  position: fixed;
}
.u-pos--relative {
  position: relative;
}

.u-text--default {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.u-text--mincho {
  font-family: "Zen Old Mincho", serif;
}
.u-text--modesto {
  font-family: "modesto-expanded", sans-serif;
}
.u-text--modesto-condensed {
  font-family: "modesto-condensed", sans-serif;
}
.u-text--montserrat {
  font-family: "Montserrat", sans-serif;
}
.u-text--center {
  text-align: center;
}
.u-text--left {
  text-align: left;
}
.u-text--right {
  text-align: right;
}
.u-text--thin {
  font-weight: 100;
}
.u-text--extra-light {
  font-weight: 200;
}
.u-text--light {
  font-weight: 300;
}
.u-text--regular {
  font-weight: 400;
}
.u-text--medium {
  font-weight: 500;
}
.u-text--semi-bold {
  font-weight: 600;
}
.u-text--bold {
  font-weight: 700;
}
.u-text--extra-bold {
  font-weight: 800;
}
.u-text--black {
  font-weight: 900;
}
.u-text--big {
  font-size: 1.4em;
}
.u-text--regular {
  font-size: 1em;
}
.u-text--small {
  font-size: 0.8em;
}

.u-ellipsis {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}
.u-ellipsis--2 {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.u-ellipsis--3 {
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.u-ellipsis--4 {
  -webkit-line-clamp: 4;
  line-clamp: 4;
}
.u-ellipsis--5 {
  -webkit-line-clamp: 5;
  line-clamp: 5;
}

.u-color--yellow {
  color: yellow;
}
.u-color--brown {
  color: #af7651;
}

.u-fade-in {
  opacity: 0;
  transform: translateY(1.875rem);
  transition: 0.8s;
}
@media (width <= 768px) {
  .u-fade-in {
    transform: translateY(1.875rem);
  }
}
.u-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}