:root {
  --font-primary: "Shippori Mincho", serif;
  --font-second: "Noto Serif JP", serif;
  --font-third: "Noto Sans", sans-serif;
  --font-en: "Roboto", serif;
  --font-montserrat: "Montserrat", sans-serif;
  --font-family-base: var(--font-primary);
  --font-weight-base: 400;
  --lineheight-base: 2;
  --font-size-base: 1.5rem;
  --color-primary: #1E1E1E;
  --color-body: #0A0A0A;
  --input-border-color: #e6e6e6;
  --input-border-width: 0.1rem;
  --input-font-size: 15px;
  --input-font-weight: 400;
  --input-background: #fff;
  --input-height: 5rem;
  --input-padding-x: 2rem;
  --input-padding-y: 1rem;
}
@media (min-width: 768px) {
  :root {
    --font-size-base: 1.6rem;
  }
}

* {
  box-sizing: border-box;
  letter-spacing: 0.05em;
}

html {
  font-size: 2.6666666667vw;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  html {
    font-size: 0.78125vw;
  }
}
@media (min-width: 1280px) {
  html {
    font-size: 10px;
  }
}
html.noscroll {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  background-color: #fff;
  color: var(--color-body);
  margin: 0;
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-base);
  font-size: var(--font-size-base);
  line-height: var(--lineheight-base);
  text-align: left;
  position: relative;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
  margin: 0;
}

ol,
ul,
dl {
  list-style-type: none;
  margin: 0;
  padding-left: 0;
}

b,
strong {
  font-weight: 700;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
}

th {
  font-weight: 400;
  text-align: inherit;
  text-align: -webkit-match-parent;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

[hidden] {
  display: none !important;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

.alignleft {
  text-align: left;
}

.mb-0 {
  margin-bottom: 0 !important;
}

img.aligncenter {
  display: block;
  margin: auto;
}
img.alignright {
  display: block;
  margin-left: auto;
}
img.alignleft {
  display: block;
  margin-right: auto;
}

.container {
  margin: 0 auto;
  max-width: 128.5rem;
  padding-inline: 4.25rem;
  width: 100%;
}

.inner {
  margin: 0 auto;
  max-width: 93.1rem;
  padding-inline: 4.25rem;
  width: 100%;
}

.inner-second {
  margin: 0 auto;
  max-width: 71.5rem;
  padding-inline: 4.25rem;
  width: 100%;
}

.animate_animated {
  animation-duration: 1.5s;
  animation-fill-mode: both;
  animation-timing-function: ease;
}

.animate__imageScale {
  animation-name: imageScale;
}

@keyframes imageScale {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes line_anim {
  0% {
    transform: scaleX(1);
    transform-box: fill-box;
    transform-origin: 100% 0;
  }
  48% {
    transform: scaleX(0);
    transform-box: fill-box;
    transform-origin: 100% 0;
  }
  52% {
    transform: scaleX(0);
    transform-box: fill-box;
    transform-origin: 0 0;
  }
  to {
    transform: scaleX(1);
    transform-box: fill-box;
    transform-origin: 0 0;
  }
}
.running-txt {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
}
.running-txt__wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.running-txt__wrap > * {
  display: flex;
  align-items: center;
}

@keyframes runningText {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes runningText-lr {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
.btn {
  background-color: transparent;
  border: 1px solid transparent;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.btn:focus, .btn.focus {
  outline: 0;
}
.btn.disabled, .btn:disabled {
  opacity: 0.6;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.btn--primary {
  background-color: rgb(80, 80, 80);
  font-size: 1.2rem;
  font-weight: 500;
  gap: 0.8rem;
  width: -moz-fit-content;
  width: fit-content;
  height: 3.7rem;
  padding-inline: 2.5rem;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .btn--primary {
    font-size: 1.6rem;
    gap: 1.5rem;
    height: 5.2rem;
    padding-inline: 4rem 3.8rem;
    transition: background-color 0.3s ease-in-out;
  }
  .btn--primary:hover {
    background-color: rgba(80, 80, 80, 0.8);
  }
}
.btn--primary::after {
  content: "";
  background: url("../images/common/icon_arrow.svg") no-repeat center/contain;
  aspect-ratio: 1;
  width: 1.5rem;
}
@media (min-width: 768px) {
  .btn--primary::after {
    width: 2.6rem;
  }
}
.btn--outline {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.2rem;
  font-weight: 500;
  gap: 1.8rem;
  border-bottom: 1px solid #1E1E1E;
  color: #1E1E1E;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .btn--outline {
    font-size: 1.6rem;
    gap: 1.6rem;
    height: 3.8rem;
    padding-bottom: 1.2rem;
  }
}
.btn--outline::after {
  content: "";
  background-color: var(--color-primary);
  -webkit-mask: url("../images/common/icon_arrow.svg") no-repeat center/contain;
  mask: url("../images/common/icon_arrow.svg") no-repeat center/contain;
  aspect-ratio: 1;
  width: 1.5rem;
}
@media (min-width: 768px) {
  .btn--outline::after {
    width: 2.6rem;
  }
}
.btn--info {
  background-color: #AFA47D;
  color: #FFF;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  width: 100%;
  max-width: 28.9rem;
  height: 4.2rem;
  margin-inline: auto;
  position: relative;
}
@media (min-width: 768px) {
  .btn--info {
    font-size: 2rem;
    max-width: 48rem;
    height: 7.2rem;
    transition: background-color 0.3s ease-in-out;
  }
  .btn--info:hover {
    background-color: rgba(175, 164, 125, 0.8);
  }
}
.btn--info::after {
  content: "";
  background-color: #FFF;
  -webkit-mask-image: url("../images/common/icon_arrow_right.svg");
  mask-image: url("../images/common/icon_arrow_right.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: cover;
  aspect-ratio: 6/12;
  width: 0.6rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
}
@media (min-width: 768px) {
  .btn--info::after {
    right: 2.2rem;
  }
}

.btn-second {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.2rem 2.8rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  background-color: #CDCACA;
  color: #505050;
  line-height: 1;
}
@media (min-width: 768px) {
  .btn-second {
    padding: 1.4rem 3.2rem;
    font-size: 1.4rem;
    transition: 0.3s ease opacity;
  }
  .btn-second:hover {
    opacity: 0.8;
  }
}

.p-header {
  display: flex;
  justify-content: center;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  background-color: #FFF;
  border-bottom: 2px solid #1E1E1E;
}
@media (min-width: 768px) {
  .p-header {
    justify-content: space-between;
    height: 9rem;
    padding-left: 4rem;
    padding-right: 10rem;
  }
}
.p-header__logo {
  display: flex;
  align-items: flex-end;
  padding-bottom: 1.6rem;
}
.p-header__logo img {
  display: block;
  width: 18.5rem;
}
@media (min-width: 768px) {
  .p-header__logo img {
    width: 24.5rem;
  }
}
.p-header__block {
  display: flex;
  align-items: flex-end;
}

.p-hamburger {
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  z-index: 100;
  width: 8rem;
  height: 8rem;
  caret-color: transparent;
  transform: translateZ(0);
  cursor: pointer;
}
@media (min-width: 768px) {
  .p-hamburger {
    top: 0;
    right: 0;
    width: 9rem;
    height: 9rem;
  }
}
.p-hamburger span {
  display: block;
  position: absolute;
  right: 2.7rem;
  width: 2.6rem;
  height: 3px;
  background-color: var(--color-primary);
  transition: 0.2s transform ease, 0.2s background-color ease;
  transform: translateZ(0);
  backface-visibility: hidden;
}
@media (min-width: 768px) {
  .p-hamburger span {
    right: 2.4rem;
    width: 4rem;
  }
}
.p-hamburger span:nth-child(1) {
  transform: translateY(2.8rem);
}
@media (min-width: 768px) {
  .p-hamburger span:nth-child(1) {
    transform: translateY(3rem);
  }
}
.p-hamburger span:nth-child(2) {
  transform: translateY(3.8rem);
}
@media (min-width: 768px) {
  .p-hamburger span:nth-child(2) {
    transform: translateY(4.4rem);
  }
}
.p-hamburger span:nth-child(3) {
  transform: translateY(4.8rem);
}
@media (min-width: 768px) {
  .p-hamburger span:nth-child(3) {
    transform: translateY(5.8rem);
  }
}
.p-hamburger.is-active span {
  width: 4rem;
}
@media (max-width: 767px) {
  .p-hamburger.is-active span {
    background-color: #FFF;
  }
}
.p-hamburger.is-active span:nth-child(1) {
  right: 2rem;
  transform: translateY(3.9rem) rotate(45deg);
}
@media (min-width: 768px) {
  .p-hamburger.is-active span:nth-child(1) {
    transform: translateY(4.3rem) rotate(45deg);
    right: 3rem;
  }
}
.p-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.p-hamburger.is-active span:nth-child(3) {
  transform: translateY(3.9rem) rotate(-45deg);
  right: 2rem;
}
@media (min-width: 768px) {
  .p-hamburger.is-active span:nth-child(3) {
    transform: translateY(4.3rem) rotate(-45deg);
    right: 3rem;
  }
}

.p-navi {
  display: none;
}
@media (min-width: 768px) {
  .p-navi {
    display: flex;
    gap: 0.8rem;
  }
}
.p-navi__item {
  position: relative;
  display: flex;
  width: 22rem;
  height: 6rem;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-navi__item:hover::after {
    opacity: 1;
  }
  .p-navi__item:hover::before {
    opacity: 0;
  }
  .p-navi__item:hover .p-navi__ttl {
    background-color: #FFF;
  }
  .p-navi__item:hover .p-navi__sub {
    color: #FFF;
  }
  .p-navi__item:hover .p-navi__icon.--ranch {
    background-color: #1D3966;
  }
  .p-navi__item:hover .p-navi__icon.--membership {
    background-color: #345130;
  }
  .p-navi__item:hover .p-navi__icon.--cafe {
    background-color: #716747;
  }
  .p-navi__item.is-active {
    pointer-events: none;
    cursor: inherit;
  }
  .p-navi__item.is-active::after {
    opacity: 1;
  }
  .p-navi__item.is-active::before {
    opacity: 0;
  }
  .p-navi__item.is-active .p-navi__ttl {
    background-color: #FFF;
  }
  .p-navi__item.is-active .p-navi__sub {
    color: #FFF;
  }
  .p-navi__item.is-active .p-navi__icon.--ranch {
    background-color: #1D3966;
  }
  .p-navi__item.is-active .p-navi__icon.--membership {
    background-color: #345130;
  }
  .p-navi__item.is-active .p-navi__icon.--cafe {
    background-color: #716747;
  }
}
.p-navi__item::after, .p-navi__item::before {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s opacity ease;
  content: "";
}
.p-navi__item::before {
  background: linear-gradient(to bottom, #D2D2D2, #FFFEFE);
  opacity: 1;
}
.p-navi__item::after {
  opacity: 0;
}
.p-navi__item.--ranch::after {
  background: linear-gradient(to bottom, #253E66, #3C547A);
}
.p-navi__item.--membership::after {
  background: linear-gradient(to bottom, #345130, #53744D);
}
.p-navi__item.--cafe::after {
  background: linear-gradient(to bottom, #716747, #9C916D);
}
.p-navi__link {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-block: 1rem 0.7rem;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.p-navi__icon {
  display: inline-block;
  position: absolute;
  z-index: 0;
  right: 0;
  -webkit-mask-position: right bottom;
  mask-position: right bottom;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: #CDCACA;
  transition: 0.3s background-color ease;
}
.p-navi__icon.--ranch {
  bottom: 0;
  width: 4.6rem;
  height: 5rem;
  -webkit-mask-image: url("../images/common/icon_menu_ranch.svg");
  mask-image: url("../images/common/icon_menu_ranch.svg");
}
.p-navi__icon.--membership {
  bottom: 0.4rem;
  width: 6.9rem;
  height: 4.7rem;
  -webkit-mask-image: url("../images/common/icon_menu_membership.svg");
  mask-image: url("../images/common/icon_menu_membership.svg");
}
.p-navi__icon.--cafe {
  width: 6rem;
  height: 4.2rem;
  bottom: 0.6rem;
  -webkit-mask-image: url("../images/common/icon_menu_cafe.svg");
  mask-image: url("../images/common/icon_menu_cafe.svg");
}
.p-navi__ttl {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 3rem;
  background-color: #505050;
  -webkit-mask-size: auto 3rem;
  mask-size: auto 3rem;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: 0.3s ease background-color;
}
.p-navi__ttl.--ranch {
  -webkit-mask-image: url("../images/common/text_ranch.svg");
  mask-image: url("../images/common/text_ranch.svg");
}
.p-navi__ttl.--membership {
  -webkit-mask-image: url("../images/common/text_membership.svg");
  mask-image: url("../images/common/text_membership.svg");
}
.p-navi__ttl.--cafe {
  -webkit-mask-image: url("../images/common/text_cafe.svg");
  mask-image: url("../images/common/text_cafe.svg");
}
.p-navi__sub {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-family: var(--font-second);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 900;
  transition: 0.3s ease color;
}

.p-menu {
  position: fixed;
  z-index: 99;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100dvh;
  padding: 14rem 5.5rem 11rem;
  background-color: rgba(0, 0, 0, 0.7);
  transform: translate(0, -100%);
  opacity: 0;
  transition: 0.3s ease transform, 0.3s ease opacity;
  pointer-events: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
@media (min-width: 768px) {
  .p-menu {
    top: 9rem;
    width: 40rem;
    height: calc(100vh - 9rem);
    padding: 7.5rem 6rem;
    transform: translate(100%, 0);
    background-color: #505050;
  }
}
.p-menu.is-active {
  opacity: 1;
  pointer-events: all;
  transform: translate(0, 0);
}
.p-menu__hline {
  display: inline-block;
  margin-bottom: 2rem;
  padding: 0.6rem 2.2rem 0.6rem;
  border: 1px solid #FFF;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  font-family: var(--font-en);
  color: #FFF;
  line-height: 1;
}
.p-menu__list {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}
.p-menu__link {
  display: block;
  width: 100%;
  padding-block: 1.7rem 2rem;
  color: #FFF;
  border-bottom: 1px solid #FFF;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.p-menu__logo {
  display: inline-block;
  margin-bottom: 2.2rem;
}

.p-overlay-header {
  position: fixed;
  z-index: 98;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .p-overlay-header {
    top: 9rem;
    height: calc(100% - 9rem);
  }
}
.p-overlay-header.is-active {
  opacity: 1;
  pointer-events: all;
}

.p-navi-sp {
  display: flex;
  position: fixed;
  z-index: 50;
  left: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to bottom, #D2D2D2, #FFFEFE);
  pointer-events: none;
  opacity: 0;
  transform: translateY(100%);
  transition: 0.3s ease opacity, 0.3s ease transform;
}
.p-navi-sp__link {
  flex: 1;
  position: relative;
  aspect-ratio: 125/110;
}
.p-navi-sp__link::after {
  position: absolute;
  right: 0;
  top: 0;
  width: 0.6rem;
  height: 100%;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
  pointer-events: none;
  content: "";
}
.p-navi-sp__link img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-navi-sp__link.is-active {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.p-navi-sp__link.is-active img {
  opacity: 0;
}
.p-navi-sp__link.is-active.--ranch {
  background-image: url("../images/common/img_navi_ranch_active.svg");
}
.p-navi-sp__link.is-active.--membership {
  background-image: url("../images/common/img_navi_membership_active.svg");
}
.p-navi-sp__link.is-active.--cafe {
  background-image: url("../images/common/img_navi_cafe_active.svg");
}
.p-navi-sp__link.--cafe::after {
  display: none;
}
.p-navi-sp.is-active {
  pointer-events: all;
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 768px) {
  .p-navi-sp {
    display: none;
  }
}

.p-footer {
  padding-bottom: 12.5rem;
  color: var(--color-primary);
  border-top: 2px solid var(--color-primary);
}
@media (min-width: 768px) {
  .p-footer {
    padding-bottom: 0;
    border-top: 0;
    background-color: #1E1E1E;
    color: #FFF;
  }
}
.p-footer__inner {
  position: relative;
  max-width: 100%;
  width: 100%;
  margin-inline: auto;
  padding: 3rem;
}
@media (min-width: 768px) {
  .p-footer__inner {
    padding-block: 4rem;
    padding-inline: 6rem 4rem;
  }
}
.p-footer__access {
  margin-bottom: 1.8rem;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-weight: 400;
}
@media (min-width: 768px) {
  .p-footer__access {
    margin-bottom: 4.3rem;
    font-size: 1.2rem;
  }
}
.p-footer__address {
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .p-footer__address {
    margin-bottom: 10rem;
  }
}
.p-footer__ttl {
  margin-bottom: 0.4rem;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-weight: 400;
}
@media (min-width: 768px) {
  .p-footer__ttl {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    line-height: 1.8333333333;
  }
}
.p-footer__txt {
  margin-bottom: 0.4rem;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .p-footer__txt {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    line-height: 1.4285714286;
    letter-spacing: 0.1em;
  }
}
.p-footer__txt .phone {
  pointer-events: all;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .p-footer__txt .phone {
    pointer-events: none;
    letter-spacing: 0.1em;
  }
}
.p-footer__txt-2 {
  margin-bottom: 0.2rem;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1.6666666667;
  font-weight: 400;
}
@media (min-width: 768px) {
  .p-footer__txt-2 {
    margin-bottom: 0.5rem;
    font-size: 2rem;
    line-height: 1.5;
  }
}
.p-footer__copyright {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}
.p-footer .c-social {
  position: absolute;
  right: 4.2rem;
  top: 3.4rem;
}
@media (max-width: 767px) {
  .p-footer .c-social {
    display: none;
  }
}

.form-control {
  background-color: var(--input-background);
  background-clip: padding-box;
  border: var(--input-border-width) solid var(--input-border-color);
  color: #000;
  display: block;
  font-family: var(--font-family-base);
  font-size: var(--input-font-size);
  font-weight: var(--input-font-weight);
  line-height: 1.5;
  padding: var(--input-padding-y) var(--input-padding-x);
  height: var(--input-height);
  width: 100%;
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
.form-control::-moz-placeholder {
  color: #e6e6e6;
  opacity: 1;
}
.form-control::placeholder {
  color: #e6e6e6;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #1E1E1E;
  opacity: 1;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.table {
  width: 100%;
}

.hline01 {
  position: relative;
}
.hline01::after {
  position: absolute;
  z-index: 0;
  top: calc(50% + 2px);
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-primary);
  content: "";
}
.hline01__ttl {
  position: relative;
  z-index: 1;
  padding: 0.6rem 1.8rem;
  background-color: #FFF;
  border: 1px solid var(--color-primary);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color-primary);
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .hline01__ttl {
    padding: 0.8rem 1.9rem;
    font-size: 1.2rem;
  }
}
.hline01__num {
  display: none;
}
@media (min-width: 768px) {
  .hline01__num {
    display: inline-block;
    position: absolute;
    right: 0;
    top: -0.3rem;
    font-family: var(--font-montserrat);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.1em;
    color: var(--color-primary);
  }
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

.p-wrapper {
  padding-top: var(--headH);
}

.nospace::before, .nospace::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.nospace::before {
  margin-block-end: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}
.nospace::after {
  margin-block-start: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

.img-cover {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.font-en {
  font-family: "Roboto", serif;
  font-optical-sizing: auto;
}

@media (min-width: 768px) {
  .hover {
    transition: opacity 0.3s ease-in-out;
  }
  .hover:hover {
    opacity: 0.7;
  }
}

.c-txt {
  font-size: 1.2rem;
  line-height: 2;
}
@media (min-width: 768px) {
  .c-txt {
    font-size: 1.5rem;
  }
}

.c-link {
  text-decoration: underline;
}

.letter-0 {
  letter-spacing: 0;
}

.c-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 1rem;
  padding: 2.3rem 3rem 1rem;
}
@media (min-width: 768px) {
  .c-breadcrumb {
    padding: 1.8rem 4rem;
  }
}
.c-breadcrumb li {
  color: var(--color-primary);
  display: inline;
  line-height: 1.3;
  font-size: 1rem;
  font-family: var(--font-third);
}
.c-breadcrumb li:not(:last-child)::after {
  content: ">";
  display: inline-block;
  margin-inline: 1rem;
}
.c-breadcrumb li a {
  text-decoration: underline;
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .c-breadcrumb li a:hover {
    text-decoration: none;
  }
}

.c-social {
  display: flex;
  gap: 1rem;
}
.c-social__link {
  display: inline-flex;
  width: 2.6rem;
  height: 2.6rem;
  transition: 0.3s opacity ease;
}
@media (min-width: 768px) {
  .c-social__link:hover {
    opacity: 0.8;
  }
}

.c-map {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  font-family: var(--font-third);
}
@media (min-width: 768px) {
  .c-map {
    gap: 0.9rem;
    font-size: 1.1rem;
    line-height: 1.1818181818;
    color: #FFF;
  }
  .c-map:hover::before {
    animation: line_anim 0.45s 1;
    animation-fill-mode: forwards;
    background-color: currentColor;
  }
}
.c-map::before {
  display: inline-block;
  background-color: currentColor;
  bottom: 0;
  height: 1px;
  left: 0px;
  position: absolute;
  width: calc(100% - 2.2rem);
  transform: scaleX(1);
  transform-origin: 0px 0px;
  transition: transform 0.3s cubic-bezier(0.13, 0.78, 0.38, 0.98);
  content: "";
}
@media (min-width: 768px) {
  .c-map::before {
    width: calc(100% - 2.6rem);
  }
}
.c-map::after {
  position: relative;
  top: 1px;
  display: inline-block;
  width: 1.2rem;
  aspect-ratio: 1/1;
  background-color: var(--color-primary);
  -webkit-mask: url("../images/common/icon_blank.svg") no-repeat center;
  mask: url("../images/common/icon_blank.svg") no-repeat center;
  -webkit-mask-size: 1.2rem;
  mask-size: 1.2rem;
  content: "";
}
@media (min-width: 768px) {
  .c-map::after {
    top: auto;
    width: 1.7rem;
    background-color: #FFF;
    -webkit-mask-size: 1.7rem;
    mask-size: 1.7rem;
  }
}

.c-keyv {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  width: 100%;
  height: calc(100svh - var(--headH));
  aspect-ratio: 375/560;
}
@media (min-width: 768px) {
  .c-keyv {
    align-items: center;
    justify-content: flex-end;
    height: calc(100vh - var(--headH));
    aspect-ratio: 1280/732;
  }
}
.c-keyv__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  margin-bottom: 3.6rem;
  z-index: 2;
}
@media (min-width: 768px) {
  .c-keyv__box {
    gap: 1.8rem;
    align-items: flex-start;
    margin-bottom: 0;
    margin-right: 12.6rem;
  }
}
.c-keyv__txt {
  font-size: 1.4rem;
  line-height: 1.1428571429;
  letter-spacing: 0.1em;
  color: #FFF;
  font-weight: 400;
}
@media (min-width: 768px) {
  .c-keyv__txt {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
.c-keyv__image {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .c-keyv .c-breadcrumb {
    position: absolute;
    z-index: 2;
    left: 4rem;
    top: 1.8rem;
  }
}
@media (max-width: 767px) {
  .c-keyv .c-breadcrumb {
    display: none;
  }
}

.c-intro {
  padding-block: 5rem 6rem;
}
@media (min-width: 768px) {
  .c-intro {
    padding-block: 9rem 6rem;
  }
}
.c-intro__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.c-intro__content {
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .c-intro__content {
    margin-bottom: 7rem;
  }
}
.c-intro__btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .c-intro__btns {
    gap: 4rem;
  }
}

.c-accor {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 768px) {
  .c-accor {
    gap: 3.8rem;
  }
}
.c-accor__item.is-active .c-accor__ttl::before {
  opacity: 0;
}
.c-accor__head {
  border-bottom: 1px dashed var(--color-primary);
  cursor: pointer;
}
.c-accor__quest {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  font-family: var(--font-en);
}
.c-accor__quest.--farm {
  color: #2D466E;
}
.c-accor__quest.--cafe {
  color: #43653D;
}
.c-accor__ttl {
  position: relative;
  padding-right: 8rem;
  padding-block: 2rem;
  font-size: 1.4rem;
  line-height: 1.7857142857;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .c-accor__ttl {
    padding-right: 4rem;
    font-size: 1.8rem;
    line-height: 1.7777777778;
  }
}
.c-accor__ttl::before {
  position: absolute;
  top: 50%;
  right: 2.6rem;
  height: 2rem;
  width: 0.2rem;
  background-color: var(--color-primary);
  transform: translateY(-50%);
  transition: 0.3s ease opacity;
  content: "";
}
@media (min-width: 768px) {
  .c-accor__ttl::before {
    right: 1.7rem;
  }
}
.c-accor__ttl::after {
  position: absolute;
  top: 50%;
  right: 1.7rem;
  width: 2rem;
  height: 0.2rem;
  background-color: var(--color-primary);
  transform: translateY(-50%);
  content: "";
}
@media (min-width: 768px) {
  .c-accor__ttl::after {
    right: 0.8rem;
  }
}
.c-accor__content {
  display: none;
  padding-top: 1.4rem;
}
@media (min-width: 768px) {
  .c-accor__content {
    padding-top: 2.4rem;
  }
}
.c-accor__ans {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 1.4rem;
  border: 2px solid #3C3C3C;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  font-family: var(--font-en);
  color: #FFF;
}
@media (min-width: 768px) {
  .c-accor__ans {
    margin-bottom: 1.9rem;
  }
}
.c-accor__ans.--farm {
  background-color: #2D466E;
}
.c-accor__ans.--cafe {
  background-color: #43653D;
}
.c-accor__txt {
  font-family: var(--font-third);
  font-size: 1.1rem;
  line-height: 2;
  color: var(--color-primary);
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .c-accor__txt {
    font-size: 1.3rem;
    line-height: 2.1538461538;
  }
}

.c-event {
  padding-block: 6rem;
}
@media (min-width: 768px) {
  .c-event {
    padding-block: 13rem 8rem;
  }
}
.c-event__wrap {
  margin-inline: auto;
}
@media (min-width: 768px) {
  .c-event__wrap {
    padding-inline: 4.2rem 4.3rem;
    max-width: 104rem;
  }
}
.c-event__ttl {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.2rem;
}
@media (min-width: 768px) {
  .c-event__ttl {
    gap: 1.3rem;
    margin-bottom: 2.2rem;
  }
}
.c-event__ttl-en {
  font-size: 2.8rem;
  font-weight: normal;
  line-height: 1.6428571429;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .c-event__ttl-en {
    font-size: 3.8rem;
    line-height: 1.2105263158;
  }
}
.c-event__ttl-jp {
  font-size: 1.1rem;
  font-weight: normal;
  line-height: 2.1818181818;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .c-event__ttl-jp {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
.c-event__dt {
  height: 43rem;
  margin-top: 1.7rem;
}
@media (min-width: 768px) {
  .c-event__dt {
    margin-top: 2.4rem;
    height: 56rem;
  }
}
.c-event__dt iframe {
  width: 100%;
  height: 100%;
}