:root {
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-weight-base: 400;
  --lineheight-base: 1.5;
  --font-size-base: 2.6rem;
  --color-black: #000;
  --color-white: #fff;
  --color-warning: #f00;
  --input-border-color: #e6e6e6;
  --input-border-width: 0.1rem;
  --input-font-size: 20px;
  --input-font-weight: 300;
  --input-background: #fff;
}
@media (min-width: 769px) {
  :root {
    --font-size-base: 1.6rem;
  }
}

* {
  box-sizing: border-box;
}

html {
  font-size: 1.3333333333vw;
  overflow-x: hidden;
}
@media (min-width: 769px) and (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media (min-width: 1441px) {
  html {
    font-size: 10px;
  }
}
html.noscroll {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  background-color: #F6F2E8;
  color: #000;
  margin: 0;
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-base);
  font-feature-settings: "palt" 1, "pkna" 1, "pwid" 1, "pkna" 1;
  font-size: var(--font-size-base);
  line-height: var(--lineheight-base);
  text-align: left;
  position: relative;
  overflow-x: hidden;
  padding-top: 18.9rem;
}
@media (min-width: 769px) {
  body {
    padding-top: 20.5rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  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;
}

img.aligncenter {
  display: block;
  margin: auto;
}
img.alignright {
  display: block;
  margin-left: auto;
}
img.alignleft {
  display: block;
  margin-right: auto;
}

.container {
  margin: auto;
  max-width: 123rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  width: 100%;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
}
@media (min-width: 769px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
}
@media (min-width: 1441px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
}
.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 769px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1441px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-underline {
  text-decoration: underline;
}

.fadeinDdown {
  filter: blur(10px);
  opacity: 0;
  transform: translateY(-50px);
}
.fadeinDdown.is-active {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
  transition: transform 1s, filter 2s, opacity 1s;
}

.fadeinTextDdown {
  opacity: 0;
  transform: translateY(-50px);
}
.fadeinTextDdown.is-active {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1s, opacity 1.5s;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}
.modal.show .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: none;
}
.modal-backdrop {
  opacity: 0.5;
  pointer-events: none;
  background-color: var(--color-black);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  z-index: 1050;
}
.modal-backdrop.fade {
  pointer-events: all;
  transition: opacity 0.15s linear;
  opacity: 0.5;
}
.modal-dialog {
  display: flex;
  align-items: center;
  position: relative;
  width: auto;
  margin: 1.5rem;
  pointer-events: none;
  max-width: 62rem;
  margin-right: auto;
  margin-left: auto;
  min-height: calc(100% - 1.5rem * 2);
}
@media (min-width: 769px) {
  .modal-dialog {
    max-width: 73.6rem;
    margin-right: auto;
    margin-left: auto;
  }
}
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: var(--color-white);
  filter: drop-shadow(0 0 6rem rgba(111, 85, 36, 0.25));
  border-radius: 3rem;
  background-clip: padding-box;
  outline: 0;
}
@media (max-width: 768px) {
  .modal-content {
    padding: 1.5rem;
    max-height: 100%;
    overflow-y: auto;
  }
}
.modal-close {
  border: none;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  width: 3.8rem;
  aspect-ratio: 1;
  position: absolute;
  top: 2.3rem;
  right: 2rem;
}

.btn {
  background-color: transparent;
  border: 1px solid transparent;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-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: var(--color-black);
  color: var(--color-white);
  flex-direction: column;
  filter: drop-shadow(0 0 6rem rgba(111, 85, 36, 0.25));
  width: 100%;
  max-width: 42.4rem;
  height: 10.7rem;
}
@media (min-width: 769px) {
  .btn--primary {
    max-width: 32.5rem;
    height: 8.2rem;
  }
}
.btn-txten {
  font-family: "Baskervville", serif;
  font-weight: 500;
  font-size: 4.3rem;
  line-height: 1;
  letter-spacing: 0.06em;
  margin-top: -0.3rem;
}
@media (min-width: 769px) {
  .btn-txten {
    font-size: 3.3rem;
  }
}
.btn-txtjp {
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.06em;
  margin-top: 0.5rem;
}
@media (min-width: 769px) {
  .btn-txtjp {
    font-size: 1.4rem;
    margin-top: 0.5rem;
  }
}

.btn-seemore {
  font-family: "Baskervville", serif;
  font-size: 3rem;
  display: inline-flex;
  flex-direction: column;
  position: relative;
  line-height: 1;
  letter-spacing: 0.06em;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 769px) {
  .btn-seemore {
    font-size: 1.8rem;
  }
}
.btn-seemore__txt {
  display: block;
  margin-bottom: 1.4rem;
}
@media (min-width: 769px) {
  .btn-seemore__txt {
    margin-bottom: 0.8rem;
  }
}
.btn-seemore__ic {
  display: block;
  width: calc(100% + 5.1rem);
  position: relative;
  transition: 0.3s;
}
@media (min-width: 769px) {
  .btn-seemore__ic {
    width: calc(100% + 3rem);
  }
}
.btn-seemore__ic::before {
  background-color: var(--color-black);
  content: "";
  position: absolute;
  right: -0.3rem;
  bottom: 0.9rem;
  transform: rotate(45deg);
  width: 2.7rem;
  height: 1px;
}
@media (min-width: 769px) {
  .btn-seemore__ic::before {
    bottom: 0.5rem;
    transform: rotate(50deg);
    width: 1.6rem;
  }
}
.btn-seemore__ic::after {
  background-color: var(--color-black);
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
}
.btn-seemore:hover .btn-seemore__ic {
  width: calc(100% + 3.5rem);
}

.p-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
.p-header::after {
  content: "";
  background: #F6F1E8;
  background: linear-gradient(180deg, rgb(246, 241, 232) 0%, rgb(246, 241, 232) 50%, rgba(246, 241, 232, 0) 100%);
  width: 100%;
  height: 18.7rem;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: -1;
}
@media (min-width: 769px) {
  .p-header::after {
    height: 14.9rem;
  }
}
.p-header__inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 3.3rem 2.2rem 8.6rem 4rem;
}
@media (min-width: 769px) {
  .p-header__inner {
    padding: 3.6rem 5.6rem 6rem 3.8rem;
  }
}
.p-header__logo {
  width: 100%;
  max-width: 40.23771rem;
}
@media (min-width: 769px) {
  .p-header__logo {
    max-width: 31.3rem;
  }
}
.p-header__nav {
  display: inline-flex;
  gap: 2.2rem;
  align-items: center;
  margin-top: -0.6rem;
}
@media (min-width: 769px) {
  .p-header__nav {
    gap: 2.4rem;
  }
}
.p-header__nav-item {
  display: flex;
  gap: 2.4rem;
  align-items: center;
}
@media (min-width: 769px) {
  .p-header__nav-item {
    gap: 1.4rem;
  }
}
.p-header__nav-item .ic {
  width: 7.7rem;
  aspect-ratio: 1;
}
@media (min-width: 769px) {
  .p-header__nav-item .ic {
    width: 4rem;
  }
}
.p-header__nav-item .txt span {
  display: block;
}
.p-header__nav-item .txt-en {
  font-family: "Baskervville", serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media (min-width: 769px) {
  .p-header__nav-item .txt-en {
    font-size: 2rem;
  }
}
.p-header__nav-item .txt-jp {
  font-family: "Baskervville", serif;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media (min-width: 769px) {
  .p-header__nav-item .txt-jp {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}
.p-header.is-fixed::after {
  opacity: 1;
  visibility: visible;
}

.hamburger-box {
  border-left: 0.1rem solid #e6e6e6;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: auto;
  height: 7rem;
  width: 7rem;
  z-index: 1100;
}
.hamburger-box.is-active .hamburger-inner {
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: rotate(45deg);
}
.hamburger-box.is-active .hamburger-inner:before {
  transition: top 75ms ease, opacity 75ms ease 0.12s;
  opacity: 0;
  top: 0;
}
.hamburger-box.is-active .hamburger-inner:after {
  transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transform: rotate(-90deg);
  bottom: 0;
}

.hamburger-inner:after, .hamburger-inner:before {
  display: block;
  content: "";
}

.hamburger-inner:after, .hamburger-inner:before, .hamburger-inner {
  width: 2.8rem;
  height: 0.2rem;
  background-color: #000;
  transition: transform 0.15s ease;
  border-radius: 1.5px;
}

.hamburger-inner {
  position: relative;
  display: block;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 75ms;
}
.hamburger-inner:before {
  position: absolute;
  top: -0.8rem;
  transition: top 75ms ease 0.12s, opacity 75ms ease;
}
.hamburger-inner:after {
  position: absolute;
  bottom: -0.8rem;
  transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.p-footer {
  background-color: var(--color-black);
  position: relative;
  overflow: hidden;
}
.p-footer::after {
  content: "";
  background: url("../images/logo_ic_gray.svg") no-repeat center/contain;
  width: 49.4rem;
  height: 35.9rem;
  position: absolute;
  top: -3rem;
  left: -4.3rem;
}
@media (min-width: 769px) {
  .p-footer::after {
    top: 50%;
    transform: translateY(-50%);
    left: 9rem;
  }
}
.p-footer__inner {
  padding: 29.2rem 6.1rem 6.1rem;
}
@media (min-width: 769px) {
  .p-footer__inner {
    padding: 5.8rem 16rem;
  }
}
.p-footer__logo {
  display: block;
  max-width: 51.9rem;
  margin-left: auto;
}
@media (min-width: 769px) {
  .p-footer__logo {
    max-width: 31.3rem;
  }
}
.p-footer__txt {
  color: var(--color-white);
  font-size: 1.66rem;
  text-align: right;
  margin-top: 3rem;
  letter-spacing: 0.06em;
}
@media (min-width: 769px) {
  .p-footer__txt {
    font-size: 1rem;
    margin-top: 4.6rem;
  }
}

.form-control {
  background-color: var(--input-background);
  background-clip: padding-box;
  border: var(--input-border-width) solid transparent;
  color: #000;
  display: block;
  font-family: var(--font-family-base);
  font-size: 2.6rem;
  font-weight: var(--input-font-weight);
  line-height: 1.5;
  padding: 3rem 3.5rem;
  width: 100%;
  height: 8.6rem;
}
@media (min-width: 769px) {
  .form-control {
    height: 5.6rem;
    font-size: var(--input-font-size);
    padding: 1.7rem 2.3rem;
  }
}
.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: #cbcbcb;
  opacity: 1;
}
.form-control::placeholder {
  color: #cbcbcb;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #1E1E1E;
  opacity: 1;
}
.form-control:focus-visible {
  outline: none;
}
.form-control--texterea {
  border: none;
  padding: 0;
  max-width: 100%;
  height: 21rem;
  max-height: 21rem;
  overflow-y: auto;
}
@media (min-width: 769px) {
  .form-control--texterea {
    height: 14rem;
    max-height: 14rem;
    padding: 0 1rem;
  }
}
.form-control--texterea::-webkit-scrollbar-track {
  border-radius: 0.6rem;
  background-color: #F5F5F5;
}
.form-control--texterea::-webkit-scrollbar {
  width: 0.6rem;
  background-color: #F5F5F5;
}
.form-control--texterea::-webkit-scrollbar-thumb {
  border-radius: 0.6rem;
  background-color: var(--color-black);
}
.form-control--texterea2 {
  height: 43rem;
  max-height: 43rem;
}
@media (min-width: 769px) {
  .form-control--texterea2 {
    height: 37.3rem;
    max-height: 37.3rem;
  }
}

textarea {
  resize: none;
}

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;
}

.c-radio {
  cursor: pointer;
  display: inline-flex;
  align-items: flex-start;
  font-size: 2.6rem;
  letter-spacing: 0.06em;
}
@media (min-width: 769px) {
  .c-radio {
    font-size: 1.6rem;
  }
}
@media (min-width: 769px) {
  .c-radio__txt {
    padding-top: 0.5rem;
  }
}
.c-radio__txt span {
  font-size: 2.2rem;
  font-family: "Baskervville", serif;
}
@media (max-width: 768px) {
  .c-radio__txt span {
    display: block;
  }
}
@media (min-width: 769px) {
  .c-radio__txt span {
    font-size: 1.4rem;
    margin-left: 1rem;
  }
}
.c-radio input {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
.c-radio input:checked ~ .c-radio__ic::after {
  opacity: 1;
}
.c-radio__ic {
  background-color: var(--color-white);
  border-radius: 50%;
  aspect-ratio: 1;
  margin-right: 2rem;
  flex-shrink: 0;
  width: 5.5rem;
  position: relative;
  top: 0.2rem;
}
@media (min-width: 769px) {
  .c-radio__ic {
    width: 3rem;
    margin-right: 2.4rem;
  }
}
.c-radio__ic::after {
  content: "";
  background-color: var(--color-black);
  border-radius: 50%;
  width: 2.8rem;
  height: 2.8rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
@media (min-width: 769px) {
  .c-radio__ic::after {
    width: 1.5rem;
    height: 1.5rem;
  }
}

label.error {
  color: var(--color-warning);
  display: block;
  margin-top: 0.5rem;
}

.table {
  width: 100%;
}

.c-hline {
  display: flex;
  gap: 2.4rem;
  align-items: center;
}
@media (min-width: 769px) {
  .c-hline {
    gap: 2rem;
  }
}
.c-hline__en {
  font-family: "the-seasons", serif;
  font-weight: normal;
  font-size: 12.69rem;
  line-height: 1;
}
@media (min-width: 769px) {
  .c-hline__en {
    font-size: 9.1rem;
  }
}
.c-hline__jp {
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: 0.06em;
  position: relative;
  top: -0.5rem;
  left: 0.1rem;
}
@media (min-width: 769px) {
  .c-hline__jp {
    font-size: 1.6rem;
    top: -0.4rem;
    left: -0.1rem;
  }
}
.c-hline--small .c-hline__en {
  font-size: 7.175rem;
}
@media (min-width: 769px) {
  .c-hline--small .c-hline__en {
    font-size: 5.3rem;
  }
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

@media (min-width: 769px) {
  .sp {
    display: none;
  }
}

.full-image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 100% 0;
  object-position: 100% 0;
}

.c-txtEN {
  font-family: "Baskervville", serif;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.c-txtEN--medium {
  font-size: 2.6rem;
  line-height: 1.75;
}
@media (min-width: 769px) {
  .c-txtEN--medium {
    font-size: 1.5rem;
    line-height: 1.7333333333;
  }
}
.c-txtEN--small {
  font-size: 2.3rem;
  line-height: 1.6086956522;
}
@media (min-width: 769px) {
  .c-txtEN--small {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.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);
}

@media (min-width: 769px) {
  .hover:hover {
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
}

.p-backtop {
  cursor: pointer;
  width: 9.4rem;
  aspect-ratio: 1;
  position: fixed;
  right: 3.6rem;
  bottom: 3.6rem;
  transform: translate3d(0, 300px, 0);
  transition: transform 0.4s cubic-bezier(0.55, 0, 0.1, 1) 0s;
  z-index: 98;
  opacity: 0;
}
.p-backtop.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
/*# sourceMappingURL=maps/style.css.map */
