@charset "UTF-8";
:root {
  --font-family-base: "Zen Kaku Gothic New", sans-serif;
  --font-weight-base: 400;
  --lineheight-base: 1.5;
  --font-primary: var(--font-family-base);
  --font-secondary: "Zen Old Mincho", serif;
  --font-en: "Baskervville", serif;
  --font-num: "Crimson Text", serif;
  --font-size-base: 1.4rem;
  --color-body: #4D4339;
  --color-primary: #EA641C;
  --color-sub: #3BB4AF;
  --color-sub02: #178883;
  --color-sub03: #716B5B;
  --input-border-color: #e6e6e6;
  --input-border-width: 0.1rem;
  --input-font-size: 1.6rem;
  --input-font-weight: 400;
  --input-background: #EBEBEB;
  --input-height: 6rem;
  --input-padding-y: 1.8rem;
  --input-padding-x: 2rem;
  --transition: .3s cubic-bezier(0.77, 0, 0.175, 1);
  --transition-s: .5s cubic-bezier(0.77, 0, 0.175, 1);
  --space-anchor: 10rem;
}
@media (min-width: 768px) {
  :root {
    --font-size-base: 1.6rem;
    --input-padding-x: 2.2rem;
  }
}
@media (min-width: 1200px) {
  :root {
    --space-anchor: 5rem;
  }
}

* {
  box-sizing: border-box;
  letter-spacing: 0.05em;
}

html {
  font-size: 2.6666666667vw;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  html {
    font-size: 10px;
  }
}
html.noscroll {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  background-color: #F8F3E2;
  color: var(--color-body);
  margin: 0;
  font-family: var(--font-primary);
  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;
}

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

.wrapper {
  margin-inline: auto;
  padding-inline: 2.5rem;
  width: 100%;
}
@media (min-width: 768px) {
  .wrapper {
    max-width: 114.6rem;
    padding-inline: 3rem;
  }
}

.container {
  margin-inline: auto;
  max-width: 93.6rem;
  padding-inline: 2.5rem;
  width: 100%;
}

.inner {
  margin-inline: auto;
  max-width: 75rem;
  padding-inline: 2.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: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
}
@media (min-width: 1024px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
}
@media (min-width: 1025px) {
  .d-tb-none {
    display: none !important;
  }
  .d-tb-block {
    display: block !important;
  }
  .d-tb-flex {
    display: flex !important;
  }
}
@media (min-width: 1200px) {
  .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: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 1024px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1025px) {
  .text-tb-left {
    text-align: left !important;
  }
  .text-tb-right {
    text-align: right !important;
  }
  .text-tb-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .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;
}

.animate_animated {
  animation-duration: 1.5s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

.fadeUp {
  animation-name: fadeUp;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 12rem, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.text-split__wrap {
  display: flex;
}
.text-split__wrap span {
  animation-delay: var(--delay);
  animation-name: flipUpvertical;
  animation-duration: 0.6s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

@keyframes flipUpvertical {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateXY(0);
  }
}
@keyframes infiniteSlider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.text-split-horizontal {
  opacity: 1;
  visibility: visible;
}
.text-split-horizontal.animate_animated span {
  transform: translateY(0);
}
.text-split-horizontal__wrap {
  display: flex;
  overflow: hidden;
}
.text-split-horizontal__wrap span {
  transform: translateY(100%);
  transition: 0.5s ease;
}
.text-split-horizontal__wrap .whitespace {
  min-width: 0.25em;
}
.text-split-horizontal.--center .text-split-horizontal__wrap {
  justify-content: center;
}

.btn {
  display: inline-block;
  color: #1E1E1E;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 0;
}
.btn:focus, .btn.focus {
  outline: 0;
}
.btn.disabled, .btn:disabled {
  opacity: 0.6;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn-size-large {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  height: 7rem;
  max-width: 40rem;
  padding-inline: 2.5rem 3.2rem;
}
@media (min-width: 768px) {
  .btn-size-large {
    font-size: 1.8rem;
    height: 8rem;
    padding-inline: 3.6rem;
  }
}

.btn-size-medium {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  height: 7rem;
  max-width: 34rem;
  padding-inline: 2.5rem 3.5rem;
}
@media (min-width: 768px) {
  .btn-size-medium {
    font-size: 1.8rem;
    height: 8rem;
    padding-inline: 3.6rem;
  }
}

.btn-size-small {
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  height: 7rem;
  padding-inline: 2.5rem;
}
@media (min-width: 768px) {
  .btn-size-small {
    font-size: 1.6rem;
    height: 7.4rem;
    max-width: 23.5rem;
  }
}

.btn-primary {
  background-color: var(--button-bg-color, var(--color-primary));
  border-radius: 0.6rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-weight: 500;
  line-height: 1.375;
  width: 100%;
  position: relative;
  transition: 0.3s ease;
  text-align: left;
  z-index: 1;
}
.btn-primary:hover {
  background-color: var(--button-bg-color-hover, #AD5C31);
}
.btn-primary::before {
  content: "";
  border: 1px solid #fff;
  border-radius: 0.6rem;
  opacity: 0.3;
  position: absolute;
  inset: 0.6rem;
  z-index: -1;
}
.btn-primary::after {
  content: "";
  background: url("../images/common/icn_arw01.svg") no-repeat center/contain;
  height: 1.3rem;
  width: 0.7rem;
}

.btn-cl-sub {
  --button-bg-color: var(--color-sub);
}
.btn-cl-sub:hover {
  background-color: var(--color-sub02, #178883);
}

.btn-cl-other {
  --button-bg-color: #959185;
}
.btn-cl-other:hover {
  background-color: var(--color-sub03, #716B5B);
}

.btn-anc {
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5555555556;
  letter-spacing: 0.12em;
  text-align: left;
  width: 100%;
  position: relative;
  padding: 0 3.5rem 2rem 0;
}
@media (min-width: 768px) {
  .btn-anc {
    font-size: 2rem;
    line-height: 1.4;
    padding: 0 4.5rem 2.4rem 0;
    max-width: 26.9rem;
    transition: color 0.3s ease;
  }
  .btn-anc:hover {
    color: var(--color-primary);
  }
}
.btn-anc::before {
  content: "";
  background: url("../images/common/icn_arw.svg") no-repeat center/contain;
  width: 3rem;
  aspect-ratio: 1;
  position: absolute;
  top: calc(50% - 0.9rem);
  transform: translateY(-50%);
  right: 0;
}
@media (min-width: 768px) {
  .btn-anc::before {
    width: 4rem;
    top: calc(50% - 1.2rem);
  }
}
.btn-anc::after {
  content: "";
  background-color: var(--color-primary);
  border-radius: 0.6rem 0.6rem 0 0;
  width: 100%;
  height: 0.1rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
.btn-viewmore {
  border-bottom: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding-bottom: 0.6rem;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .btn-viewmore {
    gap: 3rem;
    font-size: 1.8rem;
    padding-bottom: 1rem;
  }
}
.btn-viewmore:hover {
  color: var(--color-primary);
}
.btn-viewmore::after {
  content: "";
  background-color: currentColor;
  -webkit-mask: url("../images/common/icn_arw01.svg") no-repeat center/contain;
  mask: url("../images/common/icn_arw01.svg") no-repeat center/contain;
  aspect-ratio: 7/13;
  width: 0.6rem;
}
@media (min-width: 768px) {
  .btn-viewmore::after {
    width: 0.7rem;
  }
}

.btn-anchor {
  background-color: #fff;
  border-radius: 0.2rem 0.6rem 0.6rem 0.2rem;
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4444444444;
  letter-spacing: 0.12em;
  text-align: left;
  width: 100%;
  position: relative;
  padding: 2.4rem 3rem;
  display: flex;
  gap: 1.8rem;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .btn-anchor {
    border-radius: 0.2rem 0.2rem 0.6rem 0.6rem;
    font-size: 2.2rem;
    flex-direction: column;
    line-height: 1.4545454545;
    padding: 2.8rem 2rem 2.6rem;
    max-width: 43.3rem;
    transition: background-color 0.3s ease;
  }
  .btn-anchor:hover {
    background-color: #EDE8C9;
  }
  .btn-anchor:hover::after {
    top: 0.5rem;
  }
}
@media (min-width: 768px) {
  .btn-anchor > span {
    text-align: center;
  }
}
.btn-anchor > span span {
  color: var(--color-primary);
}
.btn-anchor::before {
  content: "";
  background-color: var(--color-primary);
  border-radius: 0.6rem 0 0 0.6rem;
  height: 100%;
  width: 0.2rem;
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  .btn-anchor::before {
    border-radius: 0.6rem 0.6rem 0 0;
    height: 0.2rem;
    width: 100%;
  }
}
.btn-anchor::after {
  content: "";
  background: url("../images/common/icn_arw.svg") no-repeat center/contain;
  width: 3rem;
  aspect-ratio: 1;
  position: relative;
}
@media (min-width: 768px) {
  .btn-anchor::after {
    width: 4rem;
    top: 0;
    transition: top 0.3s ease;
  }
}
.btn-anchor--sub > span span {
  color: var(--color-sub);
}
.btn-anchor--sub::before {
  background-color: var(--color-sub);
}
.btn-anchor--sub::after {
  background-image: url("../images/common/icn_arw_sub.svg");
}

.p-header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
@media (min-width: 1024px) {
  .p-header {
    width: 28rem;
    height: 100vh;
    overflow-y: auto;
  }
}
@media (max-width: 1023px) {
  .p-header {
    right: 0;
  }
}
@media (min-width: 1024px) {
  .p-header__wrap {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5.4rem 3rem 5rem;
  }
}
@media (max-width: 1023px) {
  .p-header__wrap {
    display: flex;
    align-items: center;
    height: 7rem;
    padding: 0 2rem;
  }
}
@media (max-width: 1023px) {
  .p-header__info {
    overflow-y: auto;
    background-color: #fff;
    position: absolute;
    right: 0;
    top: 100%;
    height: calc(100svh - 7rem);
    max-width: 37.5rem;
    padding: 7rem 2.5rem 5rem;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    width: 100%;
  }
  .is-showmenu .p-header__info {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
  }
}
@media (min-width: 1024px) {
  .p-header__logo {
    margin-bottom: 4.4rem;
    text-align: center;
  }
}
.p-header__logo img {
  width: 18.3rem;
}
@media (min-width: 1024px) {
  .p-header__logo img {
    width: 16.2rem;
  }
}
.p-header .nav-list {
  border-top: 1px solid #D1C9C5;
  margin-bottom: 4rem;
}
.p-header .nav-item {
  border-bottom: 1px solid #D1C9C5;
}
.p-header .nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.7rem;
  line-height: 1.41;
  letter-spacing: 0.08em;
  padding: 2rem 1.5rem;
}
@media (min-width: 768px) {
  .p-header .nav-link {
    gap: 1.5rem;
    padding: 2rem 1rem;
    transition: 0.3s ease;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-header .nav-link:hover {
    color: var(--color-primary);
  }
}
.p-header .nav-social {
  display: flex;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .p-header .nav-social {
    gap: 1rem;
    flex-direction: column;
  }
}
.p-header .nav-social__link {
  border-radius: 0.6rem;
  color: #fff;
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  height: 11rem;
}
@media (min-width: 768px) {
  .p-header .nav-social__link {
    gap: 0.5rem;
    flex-direction: column;
    height: 7.8rem;
    padding: 0;
    transition: background-color 0.3s ease-in-out;
  }
}
.p-header .nav-social__link.--social {
  background-color: #EA641C;
}
@media (hover: hover) and (pointer: fine) {
  .p-header .nav-social__link.--social:hover {
    background-color: #AD5C31;
  }
}
.p-header .nav-social__link.--line {
  background-color: #00B900;
}
@media (hover: hover) and (pointer: fine) {
  .p-header .nav-social__link.--line:hover {
    background-color: #05A005;
  }
}
.p-header .nav-social__link-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
}
.p-header .nav-social__link-icons .icon-ins {
  width: 2rem;
}
.p-header .nav-social__link-icons .icon-x {
  width: 1.761rem;
}
.p-header .nav-social__link-icons .icon-fb {
  width: 2.385rem;
}
.p-header .nav-social__link-icons .icon-line {
  width: 2.8rem;
}
.p-header .nav-social__link-txt {
  font-size: 1.8rem;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (min-width: 768px) {
  .p-header .nav-social__link-txt {
    font-size: 1.6rem;
  }
}

.hamburger-box {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #4D4339;
  border: 0;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.8rem;
  cursor: pointer;
  margin: 0;
  padding: 0;
  height: 7rem;
  width: 7rem;
  z-index: 1100;
}
@media (max-width: 767px) {
  .hamburger-box {
    padding-top: 0.7rem;
  }
}
@media (min-width: 1024px) {
  .hamburger-box {
    display: none;
  }
}
.hamburger-box::after {
  content: "MENU";
  color: #fff;
  display: block;
  font-family: var(--font-en);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
.hamburger-box.is-active::after {
  content: "CLOSE";
}
.hamburger-box.is-active .hamburger-inner {
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger-box.is-active .hamburger-inner:before {
  transition: top 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  top: 0.5rem;
  transform: rotate(30deg);
}
.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(-30deg);
  bottom: 0.5rem;
}

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

.hamburger-inner:after, .hamburger-inner:before {
  width: 4rem;
  height: max(1px, 0.1rem);
  background-color: #fff;
  transition: transform 0.15s ease;
  border-radius: 1rem;
}

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

.p-footer {
  background-color: #AD5C31;
  margin-top: 20rem;
  padding-block: 3rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .p-footer {
    margin-top: 30rem;
    padding-bottom: 5rem;
  }
}
.p-footer .parallax-footer01 {
  background: url("../images/common/bg_icon01_sp.svg") no-repeat left center/contain;
  position: absolute;
  left: 0;
  z-index: -1;
}
@media (min-width: 768px) {
  .p-footer .parallax-footer01 {
    background-image: url("../images/common/bg_icon01.svg");
    aspect-ratio: 200/162;
    width: 20rem;
    top: 41.2rem;
  }
}
@media (max-width: 767px) {
  .p-footer .parallax-footer01 {
    aspect-ratio: 331/277;
    width: 33.1rem;
    left: 1.7rem;
    top: 66.9rem;
  }
}
.p-footer .parallax-footer02 {
  background: url("../images/common/bg_icon02_sp.svg") no-repeat right center/contain;
  aspect-ratio: 80/51;
  width: 8rem;
  position: absolute;
  right: 0;
  top: 66rem;
  z-index: -1;
}
@media (min-width: 768px) {
  .p-footer .parallax-footer02 {
    background-image: url("../images/common/bg_icon02.svg");
    aspect-ratio: 187/207;
    width: 18.7rem;
    top: 48rem;
  }
}
.p-footer .footer-box {
  background-color: #fff;
  border-radius: 0.6rem;
  margin-block: -13rem 4rem;
  padding: 4rem 3rem 3rem;
}
@media (min-width: 768px) {
  .p-footer .footer-box {
    margin: -17rem auto 6rem;
  }
}
@media (min-width: 1200px) {
  .p-footer .footer-box {
    padding: 6rem;
  }
}
.p-footer .footer-box__wrap {
  display: grid;
  gap: 3.4rem;
}
@media (min-width: 768px) {
  .p-footer .footer-box__wrap {
    grid-template-columns: 1fr 50%;
    gap: 2rem;
  }
}
@media (min-width: 1200px) {
  .p-footer .footer-box__wrap {
    gap: 6rem;
    padding-left: 2rem;
  }
}
.p-footer .footer-box__wrap iframe {
  border-radius: 1rem;
  height: 24rem;
  width: 100%;
}
@media (min-width: 768px) {
  .p-footer .footer-box__wrap iframe {
    border-radius: 0.6rem;
    height: 100%;
  }
}
.p-footer .footer-box__logo {
  margin-bottom: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .p-footer .footer-box__logo {
    margin-bottom: 3rem;
    text-align: left;
  }
}
.p-footer .footer-box__logo img {
  width: 21rem;
}
@media (min-width: 1200px) {
  .p-footer .footer-box__logo img {
    width: 26.2rem;
  }
}
.p-footer .footer-box__txt {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.12em;
  margin-bottom: 2.6rem;
  text-align: center;
}
@media (min-width: 768px) {
  .p-footer .footer-box__txt {
    line-height: 1.733;
    margin-bottom: 3rem;
    text-align: left;
  }
}
@media (max-width: 1199px) {
  .p-footer .footer-box__txt {
    display: grid;
    row-gap: 1.6rem;
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .p-footer .footer-box__txt {
    font-size: 1.4rem;
  }
}
.p-footer .footer-box__txt-row {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-footer .footer-box__txt-row {
    align-items: flex-start;
  }
}
@media (min-width: 1200px) {
  .p-footer .footer-box__txt-row {
    flex-direction: row;
  }
}
.p-footer .footer-box__txt-row .label {
  flex-shrink: 0;
}
.p-footer .footer-box__txt-row span {
  display: inline-block;
}
.p-footer .footer-box__list > li {
  border-bottom: 1px solid #D1C9C5;
  padding-bottom: 1rem;
}
@media (min-width: 1200px) {
  .p-footer .footer-box__list > li {
    padding-bottom: 1.2rem;
  }
}
.p-footer .footer-box__list > li:not(:last-child) {
  margin-bottom: 2rem;
}
@media (min-width: 1200px) {
  .p-footer .footer-box__list > li:not(:last-child) {
    margin-bottom: 3rem;
  }
}
.p-footer .footer-box__name {
  font-family: var(--font-sec);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
}
@media (min-width: 1200px) {
  .p-footer .footer-box__name {
    font-size: 2rem;
  }
}
.p-footer .footer-box__tel a {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-num);
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .p-footer .footer-box__tel a {
    font-size: 3.4rem;
    gap: 0.9rem;
  }
}
.p-footer .footer-box__tel a::before {
  content: "";
  background: url("../images/common/icn_phone.svg") no-repeat center/contain;
  aspect-ratio: 1;
  width: 1.6rem;
}
@media (min-width: 768px) {
  .p-footer .footer-box__tel a::before {
    width: 2rem;
  }
}
.p-footer .footer-box__tel img {
  width: 15.8rem;
}
@media (min-width: 768px) {
  .p-footer .footer-box__tel img {
    width: 19.1rem;
  }
}
.p-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .p-footer__nav {
    flex-direction: row-reverse;
    justify-content: space-between;
    max-width: 56.6rem;
    margin: 0 auto;
    padding: 0;
  }
}
.p-footer__nav a {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  line-height: 1.625;
  display: flex;
  position: relative;
}
@media (min-width: 768px) {
  .p-footer__nav a {
    gap: 1.4rem;
    font-size: 1.8rem;
    letter-spacing: 0.22em;
    line-height: 1.4;
    writing-mode: vertical-rl;
  }
}
.p-footer__nav a::before {
  content: "";
  background-color: #fff;
  border-radius: 1rem;
  flex-shrink: 0;
  height: 1px;
  width: 2rem;
  position: relative;
  top: 1.2rem;
}
@media (min-width: 768px) {
  .p-footer__nav a::before {
    height: 2rem;
    width: 1px;
    right: 1.2rem;
    top: 0;
  }
}
.p-footer__gallery {
  margin-top: 4rem;
}
.p-footer__gallery .slick-list {
  overflow: visible;
  width: 100%;
}
@media (min-width: 768px) {
  .p-footer__gallery .slick-list {
    width: calc(100% - 28rem);
  }
}
.p-footer__gallery .slick-slide {
  width: 15.5rem;
  margin-inline: 0.5rem;
}
@media (min-width: 768px) {
  .p-footer__gallery .slick-slide {
    width: 20.2rem;
    margin-inline: 1rem;
  }
}
.p-footer__other {
  color: #fff;
  margin-top: 3rem;
  padding-inline: 2.5rem;
}
@media (min-width: 768px) {
  .p-footer__other {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    margin-top: 5rem;
    padding-inline: 10rem 4rem;
  }
}
.p-footer__other-nav {
  text-align: center;
}
@media (min-width: 768px) {
  .p-footer__other-nav {
    text-align: left;
  }
}
.p-footer__other-nav a {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
}
.p-footer__other-nav a::after {
  content: "";
  background: url("../images/common/icn_blank.svg") no-repeat center/contain;
  height: 0.9rem;
  width: 0.9rem;
}
.p-footer__other .copyright {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.83;
}
@media (min-width: 768px) {
  .p-footer__other .copyright {
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .p-footer__other .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .page-top {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}
.page-top a {
  background-color: #4D4339;
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-en);
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  width: 6rem;
  aspect-ratio: 1;
  display: inline-flex;
  gap: 0.5rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (min-width: 768px) {
  .page-top a {
    gap: 0.7rem;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    line-height: 1.1666666667;
    width: 7rem;
    transition: background-color 0.3s ease;
  }
  .page-top a:hover {
    background-color: var(--color-primary);
  }
}
.page-top a::before {
  content: "";
  background: url("../images/common/icn_arw02.svg") no-repeat center/contain;
  height: 0.5rem;
  width: 1rem;
  transform: rotate(180deg);
}
@media (min-width: 768px) {
  .page-top a::before {
    height: 0.7rem;
    width: 1.4rem;
  }
}
.page-top.is-fixed {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1000;
}
@media (min-width: 768px) {
  .page-top.is-fixed {
    right: 4rem;
    bottom: 3rem;
  }
}

.form-control {
  background-color: var(--input-background);
  background-clip: padding-box;
  border: var(--input-border-width) solid var(--input-border-color);
  border-radius: 0.6rem;
  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: 0 var(--input-padding-x);
  width: 100%;
  height: var(--input-height);
}
.form-control:focus {
  border-color: #D1C9C5;
  outline: 0;
}
.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: #959185;
  opacity: 1;
}
.form-control::placeholder {
  color: #959185;
  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;
}

textarea.form-control {
  min-height: 18rem;
  padding-block: var(--input-padding-y);
}
@media (min-width: 768px) {
  textarea.form-control {
    min-height: 22rem;
  }
}

.checkbox-custom {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  position: relative;
}
.checkbox-custom input {
  opacity: 0;
  position: absolute;
}
.checkbox-custom input:checked ~ .checkbox-custom__mark {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.checkbox-custom input:checked ~ .checkbox-custom__mark::after {
  opacity: 1;
}
.checkbox-custom__mark {
  aspect-ratio: 1;
  background-color: #EBEBEB;
  border: 1px solid #D1C9C5;
  border-radius: 0.4rem;
  flex-shrink: 0;
  width: 2.8rem;
  position: relative;
  top: -0.2rem;
}
@media (min-width: 768px) {
  .checkbox-custom__mark {
    top: 0;
  }
}
.checkbox-custom__mark::after {
  content: "";
  background: url("../images/common/icn_check.svg") no-repeat center/contain;
  aspect-ratio: 15/12;
  width: 1.5rem;
  opacity: 0;
  transition: 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.checkbox-custom__txt {
  font-family: var(--font-secondary);
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  line-height: 1.375;
}
@media (min-width: 768px) {
  .checkbox-custom__txt {
    font-size: 1.8rem;
  }
}

.c-error-parent {
  position: relative;
}
.c-error-parent label.error {
  background-color: rgba(37, 37, 37, 0.8);
  box-shadow: 0px 0px 6px #888;
  padding: 0.6rem 1rem;
  color: #fff;
  font-size: 1.1rem;
  position: absolute;
  bottom: 100%;
  left: 0;
  z-index: 10;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table-basic01 {
  width: 100%;
  overflow-x: auto;
}
.table-basic01.table-basic01--line td {
  border-right: 1px solid #D1C9C5;
  text-align: center;
}
.table-basic01.table-basic01--line td:last-child {
  border-right: 0;
}
.table-basic01 table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: #fff;
  letter-spacing: 0.05em;
  border-radius: 0.8rem;
}
@media (min-width: 768px) {
  .table-basic01 table {
    border-radius: 0.6rem;
  }
}
@media (min-width: 768px) {
  .table-basic01 tr {
    border-bottom: 1px solid #D1C9C5;
  }
  .table-basic01 tr:last-child {
    border-bottom: none;
  }
}
.table-basic01 th,
.table-basic01 td {
  font-size: 1.5rem;
  line-height: 1.6;
  padding: 1.6rem 2rem;
}
@media (min-width: 768px) {
  .table-basic01 th,
  .table-basic01 td {
    padding: 2.4rem 3rem;
    font-size: 1.6rem;
    line-height: 1.625;
  }
}
@media (max-width: 767px) {
  .table-basic01 th,
  .table-basic01 td {
    display: block;
  }
}
.table-basic01 th {
  background-color: #EDE8C9;
  font-weight: 500;
}
@media (min-width: 768px) {
  .table-basic01 th {
    width: 26rem;
  }
}
@media (max-width: 767px) {
  .table-basic01 th {
    padding-block: 1.6rem;
  }
}

.table-basic02 {
  width: 100%;
  overflow-x: auto;
}
.table-basic02 table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: #fff;
  letter-spacing: 0.05em;
  border-radius: 0.8rem;
}
@media (min-width: 768px) {
  .table-basic02 table {
    border-radius: 0.6rem;
  }
}
.table-basic02 tr {
  border-bottom: 1px solid #D1C9C5;
}
@media (min-width: 768px) {
  .table-basic02 tr:last-child {
    border-bottom: none;
  }
}
.table-basic02 th,
.table-basic02 td {
  font-size: 1.5rem;
  line-height: 1.6;
  padding: 1.5rem 1rem;
}
@media (min-width: 768px) {
  .table-basic02 th,
  .table-basic02 td {
    padding: 2.4rem 3rem;
    font-size: 1.6rem;
    line-height: 1.625;
  }
}
.table-basic02 th {
  background-color: #EDE8C9;
  font-weight: 500;
  width: 10rem;
}
@media (min-width: 768px) {
  .table-basic02 th {
    width: 26rem;
  }
}

.hline03-en {
  margin-bottom: 6rem;
  text-align: center;
}
@media (min-width: 768px) {
  .hline03-en {
    margin-bottom: 7rem;
  }
}
.hline03-en__ttl {
  color: var(--color-primary);
  display: block;
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 1.3rem;
}
@media (min-width: 768px) {
  .hline03-en__ttl {
    font-size: 2.2rem;
    margin-bottom: 1.3rem;
  }
}
.hline03-en__ttl .c-icon {
  margin-top: 0.8rem;
  margin-inline: auto;
}
.hline03-en__txt {
  display: block;
  font-size: 2.6rem;
  font-weight: 400;
  font-family: var(--font-secondary);
  letter-spacing: 0.1em;
  line-height: 1.46;
}
@media (min-width: 768px) {
  .hline03-en__txt {
    font-size: 3.6rem;
    line-height: 1.6666666667;
    letter-spacing: 0.12em;
  }
}
@media (min-width: 768px) {
  .hline03-en--side {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .hline03-en--side .hline03-en__ttl {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 0;
  }
  .hline03-en--side .hline03-en__ttl .c-icon {
    margin-top: 0;
  }
}
.hline03-en--left {
  text-align: left;
}
.hline03-en--left .hline03-en__ttl .c-icon {
  margin-inline: 0;
}

.hline03-jp {
  display: flex;
  -moz-column-gap: 1.6rem;
  column-gap: 1.6rem;
  justify-content: flex-end;
  flex-direction: row-reverse;
  font-family: var(--font-secondary);
  font-size: 2.4rem;
  line-height: 1.4166666667;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .hline03-jp {
    -moz-column-gap: 2rem;
    column-gap: 2rem;
    font-size: 3.6rem;
    letter-spacing: 0.12em;
    line-height: 1.6666666667;
    margin-bottom: 6rem;
  }
}
.hline03-jp:not(.hline03-jp--center) .c-icon {
  position: relative;
  top: 1.5rem;
}
@media (min-width: 768px) {
  .hline03-jp:not(.hline03-jp--center) .c-icon {
    top: 2.7rem;
  }
}
.hline03-jp--center {
  align-items: center;
  flex-direction: column;
  row-gap: 1.6rem;
  text-align: center;
}
@media (min-width: 768px) {
  .hline03-jp--center {
    row-gap: 2.8rem;
  }
}

.hline04 {
  border-bottom: 1px solid #D1C9C5;
  font-family: var(--font-secondary);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 4rem;
  position: relative;
  padding-bottom: 1.8rem;
}
@media (min-width: 768px) {
  .hline04 {
    font-size: 2.6rem;
    line-height: 1.3846153846;
    margin-bottom: 5rem;
    padding-bottom: 2rem;
  }
}
.hline04::after {
  content: "";
  background-color: var(--color-primary);
  width: 5rem;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
}
@media (min-width: 768px) {
  .hline04::after {
    width: 10rem;
  }
}

.hline05 {
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.44;
  letter-spacing: 0.12em;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2.4rem;
}
@media (min-width: 768px) {
  .hline05 {
    font-size: 2.2rem;
    gap: 1.8rem;
    line-height: 1.45;
    margin-bottom: 2rem;
  }
}
.hline05::before {
  content: "";
  background-color: var(--color-primary);
  border-radius: 0.2rem;
  width: 0.6rem;
  aspect-ratio: 1;
  flex-shrink: 0;
  position: relative;
  top: 1.2rem;
}
@media (min-width: 768px) {
  .hline05::before {
    width: 0.8rem;
  }
}

.c-breadcrumb {
  max-width: 79.1rem;
}
.c-breadcrumb__item {
  display: inline;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.c-breadcrumb__item:not(:last-child)::after {
  content: "";
  background-color: #fff;
  border-radius: 1rem;
  display: inline-block;
  vertical-align: middle;
  width: 1.4rem;
  height: 0.1rem;
  position: relative;
  top: -0.1rem;
  margin-inline: 1rem 0.5rem;
}
@media (min-width: 768px) {
  .c-breadcrumb__item:not(:last-child)::after {
    width: 3rem;
    margin-inline: 1.4rem 1rem;
  }
}
.c-breadcrumb a {
  color: #fff;
}
@media (min-width: 768px) {
  .c-breadcrumb a {
    transition: color 0.3s ease;
  }
  .c-breadcrumb a:hover {
    color: var(--cl-secondary);
  }
}

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

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

@media (min-width: 1200px) {
  .tablet {
    display: none !important;
  }
}

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

.hover {
  transition: 0.3s ease;
}
.hover:hover {
  opacity: 0.7;
}

.font-en {
  font-family: var(--font-en) !important;
}

.cl-primary {
  color: var(--color-primary);
}

.openSideBarButton {
  top: 8.5rem !important;
  z-index: 500 !important;
}
@media (min-width: 1024px) {
  .openSideBarButton {
    top: 3.4rem !important;
  }
}

.l-main {
  overflow: hidden;
  padding-top: 7rem;
}
@media (min-width: 1024px) {
  .l-main {
    padding-top: 0;
    width: calc(100% - 28rem);
    margin-left: auto;
  }
}

.page-ttl {
  display: none;
}
@media (min-width: 1024px) {
  .page-ttl {
    color: #fff;
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    position: absolute;
    right: 2rem;
    top: 1rem;
    z-index: 500;
  }
}

.object-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-headline {
  margin-bottom: 6.1rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .c-headline {
    margin-bottom: 10rem;
  }
}
.c-headline__cover {
  position: absolute;
  inset: 0;
  width: 100%;
  z-index: -1;
}
.c-headline__cover img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-headline__content {
  padding-block: 7.2rem 6.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .c-headline__content {
    padding-block: 14.6rem 13.3rem;
  }
}
@media (min-width: 1200px) {
  .c-headline__content .container {
    padding-inline: 10rem;
    max-width: 100%;
  }
}
.c-headline__name {
  display: flex;
  row-gap: 1.1rem;
  flex-direction: column;
}
@media (min-width: 768px) {
  .c-headline__name {
    row-gap: 1.2rem;
  }
}
.c-headline__name-en {
  color: #fff;
  font-family: var(--font-en);
  font-weight: normal;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .c-headline__name-en {
    font-size: 2.2rem;
  }
}
.c-headline__name-jp {
  color: #fff;
  font-size: 2.6rem;
  font-family: var(--font-secondary);
  font-weight: normal;
  line-height: 1.38;
  letter-spacing: 0.12em;
}
@media (min-width: 768px) {
  .c-headline__name-jp {
    font-size: 4rem;
    line-height: 1.2;
  }
}
.c-headline .c-breadcrumb {
  margin-top: 2.8rem;
}
@media (min-width: 768px) {
  .c-headline .c-breadcrumb {
    margin-top: 3rem;
  }
}

.c-anc__list {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .c-anc__list {
    gap: 3.97rem;
  }
}
@media (min-width: 768px) {
  .c-anc__item {
    max-width: 26.8rem;
  }
}

.c-txt {
  font-size: 1.7rem;
  line-height: 1.7647;
}
@media (min-width: 768px) {
  .c-txt {
    font-size: 1.6rem;
    line-height: 2.125;
  }
}

.c-note {
  display: flex;
}
.c-note::before {
  content: "※";
  flex-shrink: 0;
}

.c-icon {
  display: flex;
  height: 0.8rem;
  width: 1.4rem;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .c-icon {
    height: 1rem;
    width: 1.7rem;
  }
}
.c-icon::before, .c-icon::after {
  content: "";
  aspect-ratio: 1;
  border-radius: 50%;
  width: 0.8rem;
}
@media (min-width: 768px) {
  .c-icon::before, .c-icon::after {
    width: 1rem;
  }
}
.c-icon::before {
  background-color: var(--color-primary);
}
.c-icon::after {
  background-color: var(--color-sub);
  margin-left: -0.3rem;
}

.c-link {
  border-bottom: 1px solid currentColor;
  color: var(--color-primary);
}

.icn-parallax {
  position: absolute;
  z-index: -1;
}

.faq-item {
  background-color: #fff;
  border-radius: 0.6rem;
  padding: 2.2rem 2rem;
}
@media (min-width: 768px) {
  .faq-item {
    padding: 2.6rem 3rem 3rem;
  }
}
.faq-item__head {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-secondary);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.12em;
}
@media (min-width: 768px) {
  .faq-item__head {
    font-size: 1.8rem;
    transition: color 0.3s ease;
  }
  .faq-item__head:hover {
    color: var(--color-primary);
  }
}
.faq-item__head::before {
  content: "Q.";
  align-self: start;
  color: var(--color-primary);
  font-family: var(--font-en);
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .faq-item__head::before {
    font-size: 2.6rem;
    margin-right: 0.6rem;
  }
}
.faq-item__head:hover .icon-expand {
  background-color: #AD5C31;
}
.faq-item__head.is-active .icon-expand::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq-item__head .icon-expand {
  aspect-ratio: 1;
  background-color: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: auto;
  width: 2.6rem;
  position: relative;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .faq-item__head .icon-expand {
    width: 4rem;
  }
}
.faq-item__head .icon-expand::before, .faq-item__head .icon-expand::after {
  content: "";
  background-color: #fff;
  border-radius: 1rem;
  width: 1.3rem;
  height: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .faq-item__head .icon-expand::before, .faq-item__head .icon-expand::after {
    width: 1.5rem;
  }
}
.faq-item__head .icon-expand::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.faq-item__body {
  display: none;
  background-color: #F8F3E2;
  border-radius: 0.6rem;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.875;
  margin-top: 2rem;
  padding: 2rem;
}
@media (min-width: 768px) {
  .faq-item__body {
    margin-top: 2.3rem;
    padding: 3rem;
  }
}
.faq-item__txt {
  display: grid;
  row-gap: 1.6rem;
  line-height: 1.625;
  position: relative;
  padding-left: 2.6rem;
}
@media (min-width: 768px) {
  .faq-item__txt {
    line-height: 1.875;
    row-gap: 2.4rem;
    padding-left: 4.2rem;
  }
}
.faq-item__txt::before {
  content: "A.";
  align-self: start;
  color: var(--color-sub);
  font-family: var(--font-en);
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1;
  position: absolute;
  left: 0;
  top: 0.7rem;
}
@media (min-width: 768px) {
  .faq-item__txt::before {
    font-size: 2.6rem;
    top: 0.3rem;
  }
}
@media (max-width: 767px) {
  .faq-item__over {
    margin-left: -2.6rem;
  }
}

.c-star {
  display: flex;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .c-star {
    gap: 1rem;
  }
}
.c-star li {
  display: flex;
  gap: 0.3rem;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .c-star li {
    line-height: 1.5;
  }
}
.c-star li::before {
  content: "※";
}
.c-star--row {
  flex-direction: column;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .c-star--row {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.event-card {
  display: block !important;
  transition: var(--transition-s);
}
.event-card:hover {
  color: var(--color-primary);
}
.event-card:hover .event-card__img img {
  transform: scale(1.15);
}
.event-card__img {
  overflow: hidden;
  margin-bottom: 1.6rem;
}
@media (min-width: 768px) {
  .event-card__img {
    margin-bottom: 2.2rem;
  }
}
.event-card__img img {
  aspect-ratio: 360/270;
  transform: scale(1);
  transition: var(--transition-s);
}
.event-card__ttl {
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.444;
  margin-bottom: 0.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (min-width: 768px) {
  .event-card__ttl {
    font-size: 2.2rem;
  }
}
.event-card__date {
  color: #959185;
  font-size: 1.5rem;
  font-weight: 500;
}

.slider-pagi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .slider-pagi {
    margin: 3rem auto 0;
  }
}
.slider-pagi .slick-arrow {
  background-color: var(--color-primary);
  border-radius: 50%;
  border: 0;
  color: transparent;
  cursor: pointer;
  font-size: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  height: 3rem;
  width: 3rem;
  transition: var(--transition);
}
@media (min-width: 768px) {
  .slider-pagi .slick-arrow {
    height: 4rem;
    width: 4rem;
  }
}
.slider-pagi .slick-arrow:hover {
  background-color: #AD5C31;
}
.slider-pagi .slick-arrow::after {
  content: "";
  background: url("../images/common/icn_arw01.svg") no-repeat center/contain;
  aspect-ratio: 7/13;
  width: 0.5rem;
}
@media (min-width: 768px) {
  .slider-pagi .slick-arrow::after {
    width: 0.7rem;
  }
}
.slider-pagi .slick-prev::after {
  transform: scaleX(-1);
}
.slider-pagi .slick-next {
  order: 2;
}
.slider-pagi .slick-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}
@media (min-width: 768px) {
  .slider-pagi .slick-dots {
    gap: 1rem;
  }
}
.slider-pagi .slick-dots .slick-active button {
  background-color: var(--color-primary);
}
.slider-pagi .slick-dots button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #D1C9C5;
  border-radius: 1rem;
  border: 0;
  color: transparent;
  display: block;
  cursor: pointer;
  font-size: 0;
  height: 0.2rem;
  width: 3rem;
}
@media (min-width: 768px) {
  .slider-pagi .slick-dots button {
    width: 6rem;
  }
}