:root {
  --font-primary: "Noto Sans JP", sans-serif;
  --font-en: "Lexend Deca", sans-serif;
  --font-family-base: var(--font-primary);
  --font-weight-base: 400;
  --lineheight-base: 1.5;
  --font-size-base: 1.4rem;
  --color-primary: #1D3958;
  --color-secondary: #ED8840;
  --color-third: #E3A704;
  --color-body: var(--color-primary);
  --input-height: 6.6rem;
  --input-font-size: 1.6rem;
  --input-background-color: #DDDDDD;
  --input-border-radius: 1rem;
  --input-border-color: #CCCDD0;
  --input-border-padding-x: 3rem;
  --input-border-padding-y: 2.2rem;
}
@media (min-width: 768px) {
  :root {
    --font-size-base: 1.6rem;
    --input-height: 7.6rem;
    --input-border-padding-y: 2.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.8576329331vw;
  }
}
@media screen and (min-width: 1216px) {
  html {
    font-size: 10px;
  }
}
html.noscroll {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  background-color: #F5EFE1;
  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;
}

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

.container-fluid {
  margin: 0 auto;
  padding-inline: 2.5rem;
  width: 100%;
}
@media (min-width: 768px) {
  .container-fluid {
    padding-inline: 6rem;
  }
}

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

.inner {
  margin: 0 auto;
  max-width: 105rem;
  padding-inline: 2.5rem;
  width: 100%;
}

.wow {
  visibility: hidden;
}

.animate_animated {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-timing-function: ease;
}

.fadeScale {
  animation-duration: 0.5s;
  animation-name: fadeScale;
  opacity: 0;
  transform: scale(0.8);
}

.fadeInRight {
  animation-name: fadeInRight;
  opacity: 0;
  transform: translateX(-2rem);
}

.split-txt {
  overflow: hidden;
  visibility: hidden;
}
.split-txt.animate_animated .js-char {
  transform: translateY(0);
}
.split-txt .js-char {
  transform: translateY(100%);
  transition: 0.5s ease;
}

.floatCloud {
  animation: floatCloud 4s ease-in-out infinite;
}

.imgFadeIn {
  animation-name: imgFadeIn;
  animation-duration: 2s;
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.imgFadeIn-outer {
  overflow: hidden;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(-2rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes zoom-out {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes floatCloud {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-1.5rem);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes imgFadeIn {
  0% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
    transform: scale(1.3);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    transform: scale(1);
  }
}
.btn .icon-download, .btn .icon {
  flex-shrink: 0;
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--btn-icon-size, 4rem);
}

.btn {
  background-color: var(--btn-background-color, var(--color-primary));
  border-radius: 10rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.47;
  letter-spacing: 0.025em;
  height: 6rem;
  width: 100%;
  padding-inline: 3rem 1.5rem;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .btn {
    font-size: 1.8rem;
    height: 8rem;
    width: 32rem;
    max-width: 100%;
    padding-inline: 3.4rem 2rem;
  }
}
.btn:focus, .btn.focus {
  outline: 0;
}
.btn.disabled, .btn:disabled {
  opacity: 0.6;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.btn:hover {
  background-color: var(--btn-background-color-hover);
}
.btn:hover .icon::after,
.btn:hover .icon-download::after {
  background-color: var(--btn-background-color-hover);
}
.btn.btn--small {
  --btn-icon-size: 3rem;
  font-size: 1.3rem;
  height: 5rem;
  padding-inline: 1.8rem 1.2rem;
}
@media (min-width: 768px) {
  .btn.btn--small {
    --btn-icon-size: 2.6rem;
    height: 6rem;
    font-size: 1.5rem;
    padding-inline: 3.4rem 2rem;
  }
}
.btn.btn--small .icon::after {
  width: 0.6rem;
}
.btn[target=_blank] .icon::after {
  -webkit-mask-image: url("../images/common/icon_blank.svg");
  mask-image: url("../images/common/icon_blank.svg");
  aspect-ratio: 1;
  width: 1.4rem;
}
.btn .icon::after {
  content: "";
  aspect-ratio: 8/14;
  background-color: var(--btn-background-color);
  -webkit-mask: url("../images/common/icon_arrow01.svg") no-repeat center/contain;
  mask: url("../images/common/icon_arrow01.svg") no-repeat center/contain;
  width: 0.7rem;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .btn .icon::after {
    width: 0.8rem;
  }
}
.btn .icon-download::after {
  content: "";
  aspect-ratio: 1;
  background-color: var(--btn-background-color);
  -webkit-mask: url("../images/common/icon_download.svg") no-repeat center/contain;
  mask: url("../images/common/icon_download.svg") no-repeat center/contain;
  width: 1.2rem;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .btn .icon-download::after {
    width: 1.4rem;
  }
}

.btn-primary {
  --btn-background-color: var(--color-primary);
  --btn-background-color-hover: var(--color-secondary);
  --btn-icon-size: 3rem;
  border: 0;
}
@media (min-width: 768px) {
  .btn-primary {
    --btn-icon-size: 4rem;
  }
}
.btn-primary.btn-primary--small {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .btn-primary.btn-primary--small {
    font-size: 1.7rem;
  }
}
.btn-primary.btn-primary--smaller {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .btn-primary.btn-primary--smaller {
    height: 6rem;
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .btn-primary.btn-primary--smaller .icon {
    --btn-icon-size: 3rem;
  }
  .btn-primary.btn-primary--smaller .icon::after {
    width: 0.6rem;
  }
}

.btn-secondary {
  --btn-background-color: var(--color-secondary);
  --btn-background-color-hover: var(--color-primary);
  --btn-icon-size: 3rem;
}
@media (min-width: 768px) {
  .btn-secondary {
    --btn-icon-size: 4rem;
  }
}

.btn-anchor {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  max-width: 48rem;
  padding: 2.2rem 5.5rem 2.2rem 2.4rem;
  background-color: #FFF;
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .btn-anchor {
    padding: 2.2rem 8rem 2.2rem 5rem;
    transition: 0.3s ease;
  }
  .btn-anchor:hover {
    background-color: var(--color-secondary);
    transform: translateY(0.4rem);
  }
  .btn-anchor:hover::before {
    background-color: #FFF;
  }
  .btn-anchor:hover::after {
    background-color: var(--color-secondary);
  }
  .btn-anchor:hover .btn-anchor__en,
  .btn-anchor:hover .btn-anchor__ttl,
  .btn-anchor:hover .btn-anchor__txt {
    color: #FFF;
  }
}
.btn-anchor::before {
  position: absolute;
  right: 2.4rem;
  top: 50%;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 4rem;
  background-color: var(--color-secondary);
  transform: translateY(-50%);
  transition: 0.3s background-color ease;
  content: "";
}
@media (min-width: 768px) {
  .btn-anchor::before {
    right: 4rem;
    width: 3.6rem;
    height: 3.6rem;
  }
}
.btn-anchor::after {
  position: absolute;
  right: 2.4rem;
  top: 50%;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 4rem;
  background-color: #FFF;
  -webkit-mask: url("../images/common/icon_arrow03.svg") no-repeat center/contain;
  mask: url("../images/common/icon_arrow03.svg") no-repeat center/contain;
  -webkit-mask-size: 1rem auto;
  mask-size: 1rem auto;
  transform: translateY(-50%);
  content: "";
}
@media (min-width: 768px) {
  .btn-anchor::after {
    right: 4rem;
    width: 3.6rem;
    height: 3.6rem;
    -webkit-mask-size: 1.8rem auto;
    mask-size: 1.8rem auto;
  }
}
.btn-anchor__en {
  font-family: var(--font-en);
  font-size: 1.4rem;
  line-height: 1.7142857143;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-secondary);
}
@media (min-width: 768px) {
  .btn-anchor__en {
    font-size: 1.8rem;
    line-height: 1.3333333333;
    transition: 0.3s color ease;
  }
}
.btn-anchor__ttl {
  font-size: 1.8rem;
  line-height: 1.3333333333;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .btn-anchor__ttl {
    font-size: 2.4rem;
    line-height: 1.5;
    transition: 0.3s color ease;
  }
}
.btn-anchor__txt {
  font-size: 1.8rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .btn-anchor__txt {
    font-size: 2rem;
    transition: 0.3s color ease;
  }
}

.btn-link {
  background-color: #F5EFE1;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .btn-link {
    height: 14rem;
    padding-right: 4rem;
  }
}
@media (max-width: 767px) {
  .btn-link {
    flex-direction: column;
    text-align: center;
    gap: 1.8rem;
    padding-bottom: 2.2rem;
  }
}
.btn-link:hover {
  color: var(--color-secondary);
}
.btn-link:hover .c-icon {
  background-color: #D85C1A;
}
.btn-link:hover .btn-link__img.img-guide img {
  transform: rotate(15deg);
}
.btn-link:hover .btn-link__img.img-reserve img {
  transform: rotate(30deg);
}
.btn-link__txt {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.333;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .btn-link__txt {
    flex: 1;
    font-size: 2.6rem;
  }
}
.btn-link__img {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .btn-link__img {
    padding-inline: 2rem 3rem;
    margin-right: 3rem;
  }
}
@media (max-width: 767px) {
  .btn-link__img {
    padding-block: 1.2rem 1.6rem;
  }
}
.btn-link__img::before {
  content: "";
  background-color: #fff;
  border-radius: 50%;
  aspect-ratio: 1;
  opacity: 0.5;
  width: 12rem;
  position: absolute;
  z-index: -1;
}
@media (min-width: 768px) {
  .btn-link__img::before {
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 16rem;
  }
}
@media (max-width: 767px) {
  .btn-link__img::before {
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
  }
}
.btn-link__img img {
  transition: 0.3s ease;
}
.btn-link__img.img-guide img {
  width: 3.2rem;
  transform: rotate(4deg);
}
@media (min-width: 768px) {
  .btn-link__img.img-guide img {
    width: 5rem;
  }
}
.btn-link .c-icon {
  align-self: center;
}

.p-header {
  position: fixed;
  top: 0;
  left: 2rem;
  right: 2rem;
  z-index: 500;
}
@media (min-width: 768px) {
  .p-header {
    background-color: #fff;
    border-radius: 0 0 2rem 2rem;
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
  }
}
@media (min-width: 1200px) {
  .p-header {
    padding-inline: 5rem;
    left: 4rem;
    right: 4rem;
  }
}
@media (max-width: 767px) {
  .p-header__wrap {
    background-color: #fff;
    border-radius: 0 0 2rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.4rem 2.4rem 2.4rem 1.8rem;
    position: relative;
    z-index: 15;
  }
}
@media (max-width: 767px) {
  .p-header__top {
    display: flex;
    align-items: center;
    gap: 1.6rem;
  }
}
.p-header__map img {
  width: 1.8rem;
}
.p-header__logo img {
  width: 21.6rem;
}
@media (min-width: 768px) {
  .p-header__logo img {
    width: 31.5rem;
  }
}
@media (min-width: 768px) {
  .p-header__nav {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}
@media (max-width: 767px) {
  .p-header__nav {
    transition: 0.3s ease;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
    padding: 11rem 2.5rem 6rem;
    background-color: #EDE5D3;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
  }
  .is-open .p-header__nav {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}
.p-header__other {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .p-header__other {
    order: -1;
    display: flex;
    align-items: center;
    gap: 2.2rem;
    margin-bottom: 1.3rem;
  }
}
.p-header__sns {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
@media (min-width: 768px) {
  .p-header__sns {
    order: -1;
    gap: 1.6rem;
  }
}
@media (max-width: 767px) {
  .p-header__sns a {
    background-color: #fff;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 6rem;
    flex: 1;
  }
}
.p-header__sns .f_logo {
  width: 3rem;
}
@media (min-width: 768px) {
  .p-header__sns .f_logo {
    width: 2.6rem;
  }
}
.p-header__sns .ins_logo {
  width: 2.8rem;
}
@media (min-width: 768px) {
  .p-header__sns .ins_logo {
    width: 2.4rem;
  }
}
.p-header__sns .x_logo {
  width: 2.2rem;
}
@media (min-width: 768px) {
  .p-header__sns .x_logo {
    width: 2rem;
  }
}
.p-header__sns .line_logo {
  width: 2.8rem;
}
@media (min-width: 768px) {
  .p-header__sns .line_logo {
    width: 2.4rem;
  }
}
.p-header__action {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .p-header__action {
    margin-bottom: 0;
  }
}
.p-header__btn {
  background-color: var(--btn-color);
  border-radius: 1rem;
  color: #fff;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.025em;
  line-height: 1.23;
  padding: 1.4rem 0 1.2rem;
  flex: 1;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .p-header__btn {
    border-radius: 10rem;
    font-size: 1.4rem;
    flex-direction: row;
    justify-content: center;
    gap: 0.8rem;
    padding: 0;
    height: 4rem;
    width: 18rem;
  }
}
.p-header__btn:hover {
  background-color: var(--btn-color-hover);
}
.p-header__btn.btn-notice {
  --btn-color: var(--color-primary);
  --btn-color-hover: #091A2E;
}
.p-header__btn.btn-notice .icon::before {
  content: "";
  background: url("../images/common/icon_speaker.svg") no-repeat center/contain;
  display: block;
  height: 1.6rem;
  width: 1.7rem;
}
.p-header__btn.btn-ticket {
  --btn-color: #ED8840;
  --btn-color-hover: #D85C1A;
}
.p-header__btn.btn-ticket .icon::before {
  content: "";
  background: url("../images/common/icon_ticket.svg") no-repeat center/contain;
  display: block;
  height: 1.2rem;
  width: 1.8rem;
}
.p-header__btn.btn-reserve {
  --btn-color: #E3A704;
  --btn-color-hover: #BE8B01;
}
.p-header__btn.btn-reserve .icon::before {
  content: "";
  background: url("../images/common/icon_calendar.svg") no-repeat center/contain;
  display: block;
  height: 1.6rem;
  width: 1.4rem;
}
.p-header__btn-txt {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .p-header .nav-list {
    display: flex;
    gap: 3rem;
  }
}
@media (max-width: 767px) {
  .p-header .nav-list {
    margin-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .p-header .nav-item {
    margin-bottom: 0.8rem;
  }
  .p-header .nav-item:last-child {
    margin-bottom: 0;
  }
}
.p-header .nav-link {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .p-header .nav-link {
    transition: 0.3s ease;
  }
  .p-header .nav-link:hover {
    color: var(--color-secondary);
  }
}
@media (min-width: 1200px) {
  .p-header .nav-link {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .p-header .nav-link {
    background-color: #fff;
    border-radius: 1rem;
    display: flex;
    padding: 1.8rem 2.4rem;
    position: relative;
  }
  .p-header .nav-link::after {
    content: "";
    background: url("../images/common/icon_arrow_circle.svg") no-repeat center/contain;
    aspect-ratio: 1;
    width: 2.4rem;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
  }
}

.hamburger-box {
  background: none;
  border: 0;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  height: 1.8rem;
  width: 2.2rem;
  z-index: 10;
}
.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.2rem;
  height: 0.2rem;
  background-color: var(--color-secondary);
  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;
}
.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);
}

.nav-fixed {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
}
@media (min-width: 768px) {
  .nav-fixed {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
}
.nav-fixed__btn {
  flex: 1;
  background-color: var(--btn-color);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.025em;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  gap: 0.3rem;
  height: 5rem;
  padding-bottom: 0.7rem;
}
.nav-fixed__btn.btn-notice {
  --btn-color: var(--color-primary);
}
.nav-fixed__btn.btn-notice .icon::before {
  content: "";
  background: url("../images/common/icon_speaker.svg") no-repeat center/contain;
  display: block;
  height: 1.3rem;
  width: 1.2rem;
}
.nav-fixed__btn.btn-ticket {
  --btn-color: #ED8840;
}
.nav-fixed__btn.btn-ticket .icon::before {
  content: "";
  background: url("../images/common/icon_ticket.svg") no-repeat center/contain;
  display: block;
  height: 1rem;
  width: 1.5rem;
}
.nav-fixed__btn.btn-reserve {
  --btn-color: #E3A704;
}
.nav-fixed__btn.btn-reserve .icon::before {
  content: "";
  background: url("../images/common/icon_calendar.svg") no-repeat center/contain;
  display: block;
  height: 1.2rem;
  width: 1.3rem;
}

.p-footer {
  background-color: var(--color-primary);
  color: #fff;
  margin-top: 8rem;
  padding: 6rem 0 13rem;
}
@media (min-width: 768px) {
  .p-footer {
    margin-top: 14rem;
    padding: 5rem 0 3rem;
  }
}
@media (min-width: 1200px) {
  .p-footer {
    padding-inline: 5rem;
  }
}
.p-footer__wrap {
  display: grid;
  gap: 4rem;
}
@media (min-width: 768px) {
  .p-footer__wrap {
    grid-template-columns: 1fr 53.3rem;
    gap: 5rem;
    grid-template-areas: "footerInfo footerMap" "footerNav footerMap" "footerOther footerMap";
  }
}
@media (min-width: 1200px) {
  .p-footer__wrap {
    gap: 5rem 10rem;
    margin-right: -5rem;
  }
}
.p-footer__map {
  min-height: 26rem;
  margin-inline: -2.5rem;
}
@media (min-width: 768px) {
  .p-footer__map {
    grid-area: footerMap;
    margin: 0 0 2rem;
  }
}
.p-footer__map iframe {
  height: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  .p-footer__map iframe {
    border-radius: 1rem;
  }
}
.p-footer__nav {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .p-footer__nav {
    gap: 3rem;
    grid-template-columns: repeat(2, 1fr);
    grid-area: footerNav;
  }
}
@media (min-width: 1200px) {
  .p-footer__nav {
    gap: 5rem;
  }
}
.p-footer__nav li {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .p-footer__nav li {
    margin-bottom: 2rem;
  }
}
.p-footer__nav li:last-child {
  margin-bottom: 0;
}
.p-footer__nav a {
  display: flex;
  align-items: flex-start;
  font-size: 1.5rem;
  font-weight: 500;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .p-footer__nav a {
    font-size: 1.6rem;
  }
}
.p-footer__nav a:hover {
  color: var(--color-secondary);
}
.p-footer__nav a:not([target=_blank])::before {
  content: "";
  aspect-ratio: 1;
  background-color: var(--color-secondary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 1.2rem;
  width: 0.6rem;
  position: relative;
  top: 0.8rem;
}
@media (min-width: 768px) {
  .p-footer__nav a:not([target=_blank])::before {
    margin-right: 1.4rem;
    top: 1rem;
    width: 0.8rem;
  }
}
.p-footer__nav a[target=_blank]::before {
  content: "";
  aspect-ratio: 1;
  background: url("../images/common/icon_blank.svg") no-repeat center/contain;
  flex-shrink: 0;
  margin-right: 0.7rem;
  width: 1.2rem;
  position: relative;
  top: 0.5rem;
}
@media (min-width: 768px) {
  .p-footer__nav a[target=_blank]::before {
    margin-right: 0.9rem;
    width: 1.4rem;
  }
}
.p-footer__other {
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 1.4rem;
  padding-top: 2.4rem;
}
@media (min-width: 768px) {
  .p-footer__other {
    grid-area: footerOther;
    flex-direction: row;
    padding-top: 3rem;
  }
}
@media (min-width: 768px) {
  .p-footer__map {
    -ms-grid-row: 1;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .p-footer__nav {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .p-footer__other {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
}
.p-footer__other .copyright {
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 768px) {
  .p-footer__other .copyright {
    font-size: 1.6rem;
    text-align: left;
  }
}
.p-footer__sns {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .p-footer__sns {
    gap: 2.4rem;
  }
}
.p-footer__sns img.ins_logo {
  width: 2.6rem;
}
@media (min-width: 768px) {
  .p-footer__sns img.ins_logo {
    width: 3rem;
  }
}
.p-footer__sns img.f_logo {
  width: 2.8rem;
}
@media (min-width: 768px) {
  .p-footer__sns img.f_logo {
    width: 3.4rem;
  }
}
.p-footer__sns img.x_logo {
  width: 2rem;
}
@media (min-width: 768px) {
  .p-footer__sns img.x_logo {
    width: 2.4rem;
  }
}
.p-footer__sns img.line_logo {
  width: 2.6rem;
}
@media (min-width: 768px) {
  .p-footer__sns img.line_logo {
    width: 3rem;
  }
}
.p-footer__info {
  margin-bottom: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .p-footer__info {
    margin-bottom: 0;
    padding-top: 5rem;
    text-align: left;
  }
}
.p-footer__logo {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .p-footer__logo {
    margin-bottom: 5rem;
  }
}
.p-footer__logo img {
  width: 27.5rem;
}
@media (min-width: 768px) {
  .p-footer__logo img {
    width: 39.4rem;
  }
}
.p-footer__name {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 1.9rem;
}
@media (min-width: 768px) {
  .p-footer__name {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
  }
}
.p-footer__name small {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .p-footer__name small {
    font-size: 1.4rem;
  }
}
.p-footer__txt {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.57;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .p-footer__txt {
    font-size: 1.5rem;
    line-height: 1.8667;
    margin-bottom: 3.5rem;
  }
}
.p-footer .footer-btn {
  background-color: #fff;
  border-radius: 10rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  height: 6rem;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .p-footer .footer-btn {
    gap: 1.2rem;
    font-size: 2rem;
    height: 7rem;
  }
}
.p-footer .footer-btn::before {
  content: "";
  background-color: var(--color-primary);
  -webkit-mask: url("../images/common/icon_mail.svg") no-repeat center/contain;
  mask: url("../images/common/icon_mail.svg") no-repeat center/contain;
  height: 1.4rem;
  width: 1.8rem;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .p-footer .footer-btn::before {
    height: 1.6rem;
    width: 2rem;
  }
}
.p-footer .footer-btn:hover {
  background-color: var(--color-secondary);
  color: #fff;
}
.p-footer .footer-btn:hover::before {
  background-color: #fff;
}

.fixed-wrap {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  position: fixed;
  right: 1.6rem;
  bottom: 6rem;
  z-index: 300;
}
@media (min-width: 768px) {
  .fixed-wrap {
    gap: 2rem;
    right: 3rem;
    bottom: 5rem;
  }
}
.fixed-wrap.is-active {
  opacity: 1;
  visibility: visible;
}
.fixed-wrap .gt_float_switcher {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .fixed-wrap .gt_float_switcher {
    font-size: 2rem;
  }
}
.fixed-wrap .gt_float_switcher .gt-selected .gt-current-lang {
  padding: 0.8rem 1.5rem;
}
.fixed-wrap .gt_float_switcher img {
  width: 2rem;
}
@media (min-width: 768px) {
  .fixed-wrap .gt_float_switcher img {
    width: 3rem;
  }
}

.page-top a {
  aspect-ratio: 1;
  background-color: var(--color-primary);
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.125;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 6rem;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .page-top a {
    font-size: 1.6rem;
    width: 8rem;
  }
  .page-top a:hover {
    background-color: var(--color-secondary);
  }
}

.c-breadcrumb {
  background-color: #EDE5D3;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 6rem;
  padding-block: 1.8rem;
}
@media (min-width: 768px) {
  .c-breadcrumb {
    font-size: 1.4rem;
    margin-bottom: 10rem;
    padding-block: 2rem;
  }
}
.c-breadcrumb li {
  display: inline;
}
.c-breadcrumb li:not(:last-child)::after {
  content: "";
  background: url("../images/common/icon_arrow01.svg") no-repeat center/contain;
  aspect-ratio: 7/12;
  display: inline-flex;
  margin-inline: 1.2rem 1rem;
  width: 0.6rem;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .c-breadcrumb li:not(:last-child)::after {
    margin-inline: 2rem 1.8rem;
    width: 0.7rem;
  }
}

.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: 0.5rem 1rem;
  width: 100%;
  height: 6rem;
}
.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%;
}

.tbl-primary {
  width: 100%;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .tbl-primary {
    margin-bottom: 8rem;
  }
}
.tbl-primary tbody tr:first-child th {
  border-top-left-radius: 0.6rem;
  border-top-right-radius: 0.6rem;
}
@media (min-width: 768px) {
  .tbl-primary tbody tr:first-child th {
    border-top-right-radius: 0;
  }
}
@media (min-width: 768px) {
  .tbl-primary tbody tr:first-child td {
    border-top-right-radius: 0.6rem;
  }
}
@media (min-width: 768px) {
  .tbl-primary tbody tr:last-child th {
    border-bottom-left-radius: 0.6rem;
    border-bottom: 0;
  }
}
.tbl-primary tbody tr:last-child td {
  border-bottom-left-radius: 0.6rem;
  border-bottom-right-radius: 0.6rem;
}
@media (min-width: 768px) {
  .tbl-primary tbody tr:last-child td {
    border-bottom: 0;
  }
}
@media (max-width: 767px) {
  .tbl-primary tbody tr {
    display: flex;
    flex-direction: column;
  }
}
.tbl-primary tbody th, .tbl-primary tbody td {
  padding: 1.4rem 2.4rem;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .tbl-primary tbody th, .tbl-primary tbody td {
    padding: 2.2rem 3rem;
    font-size: 1.6rem;
    line-height: 1.5;
    vertical-align: baseline;
  }
}
.tbl-primary tbody th {
  background-color: var(--color-secondary);
  color: #FFF;
  font-weight: 700;
}
@media (min-width: 768px) {
  .tbl-primary tbody th {
    width: 26rem !important;
    border-bottom: 2px solid #FFF;
  }
}
.tbl-primary tbody td {
  color: var(--color-primary);
  font-weight: 500;
  background-color: #FFF;
}
@media (min-width: 768px) {
  .tbl-primary tbody td {
    border-bottom: 2px solid #CCCDD0;
  }
}
.tbl-primary__iframe {
  margin-top: 1rem;
  margin-bottom: 1rem;
  aspect-ratio: 277/200;
  border-radius: 1rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .tbl-primary__iframe {
    margin-bottom: 0.4rem;
    margin-top: 1.4rem;
    aspect-ratio: 68/30;
  }
}
.tbl-primary__iframe iframe {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.tbl-style01 {
  table-layout: fixed;
  width: 100%;
}
.tbl-style01 thead th:first-child {
  border-top-left-radius: 0.6rem;
}
.tbl-style01 thead th:last-child {
  border-right-color: var(--color-secondary);
  border-top-right-radius: 0.6rem;
}
.tbl-style01 tbody tr:last-child th {
  border-bottom-left-radius: 0.6rem;
  border-bottom-color: var(--color-secondary);
}
.tbl-style01 tbody tr:last-child td:last-child {
  border-bottom-right-radius: 0.6rem;
}
.tbl-style01 tbody th {
  border-right-color: var(--color-secondary);
}
.tbl-style01 tr {
  display: flex;
  width: 100%;
}
.tbl-style01 th, .tbl-style01 td {
  font-size: 1.5rem;
  line-height: 1.6;
  padding: 2rem;
  flex: 1;
}
.tbl-style01 th {
  background-color: var(--color-secondary);
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  color: #fff;
  font-weight: bold;
}
.tbl-style01 td {
  border-bottom: 2px solid #CCCDD0;
  border-right: 2px solid #CCCDD0;
  font-weight: 500;
}

.hline01 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .hline01 {
    gap: 1rem;
    margin-bottom: 7rem;
  }
}
.hline01.hline01--horizontal {
  flex-direction: row;
  justify-content: flex-start;
  gap: 1.6rem;
}
@media (min-width: 768px) {
  .hline01.hline01--horizontal {
    gap: 2.4rem;
  }
}
.hline01__ttl {
  color: var(--color-secondary);
  display: block;
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: bold;
  text-transform: capitalize;
}
.hline01__ttl span {
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .hline01__ttl {
    font-size: 2.4rem;
  }
}
.hline01__sub {
  display: block;
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.2857;
  text-align: center;
  text-transform: capitalize;
}
.hline01__sub span {
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .hline01__sub {
    font-size: 4rem;
  }
}

.hline02 {
  margin-bottom: 3rem;
  padding: 1.7rem 1.9rem;
  background-color: #FFF;
  border-radius: 0.6rem;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .hline02 {
    margin-bottom: 6rem;
    padding: 2rem 3rem;
    font-size: 2.2rem;
    line-height: 1.5454545455;
  }
}

.hline03 {
  position: relative;
  margin-bottom: 2.4rem;
  padding-bottom: 1.5rem;
  padding-left: 2rem;
  border-bottom: 2px solid #CCCDD0;
  font-size: 1.8rem;
  line-height: 1.3333333333;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .hline03 {
    margin-bottom: 2.7rem;
    padding-bottom: 2rem;
    padding-left: 2.4rem;
    font-size: 2rem;
    line-height: 1.6;
  }
}
.hline03::after {
  position: absolute;
  left: 0;
  top: 1rem;
  width: 0.8rem;
  border-radius: 1rem;
  aspect-ratio: 1/1;
  background-color: #ED8840;
  content: "";
}
@media (min-width: 768px) {
  .hline03::after {
    width: 1rem;
    top: 1.1rem;
  }
}

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

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

.mb-0 {
  margin-bottom: 0 !important;
}

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

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

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

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

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

.c-mv {
  padding-block: 11rem 4rem;
  position: relative;
  z-index: 5;
}
@media (min-width: 768px) {
  .c-mv {
    padding-block: 17rem 5rem;
  }
}
.c-mv .container-fluid {
  position: relative;
}
.c-mv__head {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .c-mv__head {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
}
.c-mv__ttl {
  color: var(--color-secondary);
  font-family: var(--font-en);
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.25;
  letter-spacing: 0.02em;
}
.c-mv__ttl span {
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .c-mv__ttl {
    font-size: 6rem;
  }
}
.c-mv__sub {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.c-mv__sub span {
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .c-mv__sub {
    font-size: 2.4rem;
  }
}
.c-mv__media {
  position: absolute;
  right: var(--offset-right, 1.6rem);
  bottom: var(--offset-bottom, -5rem);
  z-index: 1;
}
@media (min-width: 768px) {
  .c-mv__media {
    right: var(--offset-right, 4rem);
    bottom: var(--offset-bottom, -6.3rem);
  }
}
.c-mv__media img {
  width: var(--mv-size, 13.4rem);
}
@media (min-width: 768px) {
  .c-mv__media img {
    width: var(--mv-size, 25.4rem);
  }
}

.c-icon {
  --icon-size-pc: 0.8rem;
  --icon-size-sp: 0.7rem;
  --icon-width-pc: 3.6rem;
  --icon-width-sp: 3rem;
  background-color: var(--color-secondary);
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--icon-width-sp);
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .c-icon {
    width: var(--icon-width-pc);
  }
}
.c-icon:hover {
  background-color: #D85C1A;
}
.c-icon::after {
  content: "";
  background-color: #fff;
  -webkit-mask: url("../images/common/icon_arrow01.svg") no-repeat center/contain;
  mask: url("../images/common/icon_arrow01.svg") no-repeat center/contain;
  aspect-ratio: 8/14;
  width: var(--icon-size-sp);
}
@media (min-width: 768px) {
  .c-icon::after {
    width: var(--icon-size-pc);
  }
}

.cate-course {
  --cate-color: #ED8840;
}

.cate-culture {
  --cate-color: #E3A704;
}

.cate-recruit {
  --cate-color: var(--color-primary);
}

.cate-about {
  --cate-color: #0A72BE;
}

.cate-events {
  --cate-color: #C4A45C;
}

.cate-continuous_courses {
  --cate-color: #ED8840;
}

.cate-other {
  --cate-color: #919191;
}

.offset-anchor {
  margin-top: calc(-7.3rem - var(--paddingTop));
  padding-top: calc(7.3rem + var(--paddingTop));
}
@media (min-width: 768px) {
  .offset-anchor {
    margin-top: calc(-12rem - var(--paddingTop));
    padding-top: calc(12rem + var(--paddingTop));
  }
}

.p-anchor {
  padding-block: 0 7rem;
  background-color: #F5EFE1;
}
@media (min-width: 768px) {
  .p-anchor {
    gap: 2rem;
    padding-block: 0 10rem;
  }
}
.p-anchor__inner {
  display: flex;
  gap: 0.8rem;
  flex-direction: column;
  max-width: 103rem;
  margin-inline: auto;
  padding-inline: 2.5rem;
}
@media (min-width: 768px) {
  .p-anchor__inner {
    flex-direction: inherit;
    gap: 2rem;
  }
}
@media (min-width: 768px) {
  .p-anchor .btn-anchor {
    min-width: inherit;
    width: calc(50% - 1rem);
  }
}

.p-txt-intro {
  margin-bottom: 1.5rem;
  font-family: 1.5rem;
  line-height: 1.7333333333;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .p-txt-intro {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.7777777778;
  }
}

.c-txt {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  line-height: 1.7333333333;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .c-txt {
    margin-bottom: 3rem;
    font-size: 1.6rem;
    line-height: 2;
  }
}

.c-link {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: var(--font-en);
  color: var(--color-secondary);
  text-decoration: underline;
}
@media (min-width: 768px) {
  .c-link {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .c-link:hover {
    color: #D85C1A;
  }
}

.l-circle {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .l-circle {
    gap: 0.6rem;
  }
}
.l-circle__item {
  position: relative;
  padding-left: 1.8rem;
  font-size: 1.5rem;
  line-height: 1.4666666667;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .l-circle__item {
    font-size: 1.6rem;
    line-height: 1.625;
  }
}
.l-circle__item::after {
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.8rem;
  border-radius: 1rem;
  aspect-ratio: 1/1;
  background-color: #ED8840;
  content: "";
}
@media (min-width: 768px) {
  .l-circle__item::after {
    top: 1rem;
  }
}

.scrollable {
  position: relative;
}
@media (max-width: 767px) {
  .scrollable {
    overflow: auto;
  }
  .scrollable::before {
    content: "";
    background: url("../images/common/hint_img.svg") no-repeat center/contain;
    aspect-ratio: 1;
    width: 12rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: 0.3s ease;
  }
  .scrollable.is-scrolling::before {
    opacity: 0;
  }
}
.scrollable__wrap {
  overflow-x: auto;
  margin-inline: -3rem;
  padding-inline: 3rem;
}

.c-pagination {
  background-color: #fff;
  border-radius: 10rem;
  margin-top: 5rem;
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .c-pagination {
    max-width: 60rem;
    margin: 8rem auto 0;
    padding: 1.6rem;
  }
}
.c-pagination ul {
  display: flex;
  justify-content: center;
}
.c-pagination .page-numbers {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 600;
  width: 4rem;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .c-pagination .page-numbers {
    font-size: 2.4rem;
    width: 5rem;
  }
}
.c-pagination .page-numbers:not(.current):hover {
  color: var(--color-secondary);
}
.c-pagination .page-numbers.current {
  background-color: var(--color-secondary);
  border-radius: 50%;
  color: #fff;
}
.c-pagination__btn a, .c-pagination__btn span {
  background-color: #DBCDAD;
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .c-pagination__btn a, .c-pagination__btn span {
    width: 5rem;
  }
  .c-pagination__btn a:hover, .c-pagination__btn span:hover {
    background-color: var(--color-secondary);
  }
}
.c-pagination__btn a::after, .c-pagination__btn span::after {
  content: "";
  background-color: #fff;
  -webkit-mask: url("../images/common/icon_arrow01.svg") no-repeat center/contain;
  mask: url("../images/common/icon_arrow01.svg") no-repeat center/contain;
  aspect-ratio: 8/14;
  width: 0.8rem;
}
.c-pagination__btn span {
  opacity: 0;
  visibility: hidden;
}
.c-pagination__btn.next {
  margin-left: auto;
}
.c-pagination__btn.prev {
  margin-right: auto;
}
.c-pagination__btn.prev a::after {
  transform: scaleX(-1);
}

.single-nav {
  background-color: #fff;
  border-radius: 10rem;
  display: flex;
  justify-content: space-between;
  margin-top: 5rem;
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .single-nav {
    max-width: 60rem;
    margin: 8rem auto 0;
    padding: 1.6rem;
  }
}
.single-nav__btn {
  background-color: var(--color-secondary);
  border-radius: 10rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  height: 4rem;
  width: 18rem;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .single-nav__btn {
    font-size: 1.8rem;
    height: 5rem;
    width: 24rem;
  }
  .single-nav__btn:hover {
    background-color: #D85C1A;
  }
}
.single-nav__arrow {
  background-color: #DBCDAD;
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .single-nav__arrow {
    width: 5rem;
  }
  .single-nav__arrow:hover {
    background-color: var(--color-secondary);
  }
}
.single-nav__arrow::after {
  content: "";
  background-color: #fff;
  -webkit-mask: url("../images/common/icon_arrow01.svg") no-repeat center/contain;
  mask: url("../images/common/icon_arrow01.svg") no-repeat center/contain;
  aspect-ratio: 8/14;
  width: 0.8rem;
}
.single-nav__arrow--prev::after {
  transform: scaleX(-1);
}
.single-nav__arrow.disabled {
  opacity: 0;
}

.detail-box {
  background-color: #fff;
  border-radius: 1rem;
  position: relative;
  padding: 3.2rem 3rem 6rem;
}
@media (min-width: 768px) {
  .detail-box {
    padding: 5rem 6rem 10rem;
  }
}
.detail-box::before, .detail-box::after {
  content: "";
  aspect-ratio: 1;
  background-color: var(--color-secondary);
  border-radius: 50%;
  width: 0.6rem;
  position: absolute;
  top: 1rem;
}
@media (min-width: 768px) {
  .detail-box::before, .detail-box::after {
    top: 1.4rem;
    width: 0.8rem;
  }
}
.detail-box::before {
  left: 1rem;
}
@media (min-width: 768px) {
  .detail-box::before {
    left: 1.4rem;
  }
}
.detail-box::after {
  right: 1rem;
}
@media (min-width: 768px) {
  .detail-box::after {
    right: 1.4rem;
  }
}
.detail-box__cover::before, .detail-box__cover::after {
  content: "";
  aspect-ratio: 1;
  background-color: var(--color-secondary);
  border-radius: 50%;
  width: 0.6rem;
  position: absolute;
  bottom: 1rem;
}
@media (min-width: 768px) {
  .detail-box__cover::before, .detail-box__cover::after {
    bottom: 1.4rem;
    width: 0.8rem;
  }
}
.detail-box__cover::before {
  left: 1rem;
}
@media (min-width: 768px) {
  .detail-box__cover::before {
    left: 1.4rem;
  }
}
.detail-box__cover::after {
  right: 1rem;
}
@media (min-width: 768px) {
  .detail-box__cover::after {
    right: 1.4rem;
  }
}
.detail-box__head {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1rem 2.2rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  position: relative;
}
@media (min-width: 768px) {
  .detail-box__head {
    flex-direction: row;
    align-items: center;
    gap: 1rem 2.2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
  }
}
.detail-box__head::after {
  content: "";
  background-color: #EDE5D3;
  border-radius: 10rem;
  height: 0.2rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.detail-box__cate {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.detail-box__cate span {
  background-color: var(--cate-color, #919191);
  border-radius: 0.4rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.8rem;
}
@media (min-width: 768px) {
  .detail-box__cate span {
    font-size: 1.4rem;
  }
}
.detail-box__date {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .detail-box__date {
    font-size: 2rem;
  }
}
.detail-box__ttl {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.36;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .detail-box__ttl {
    font-size: 2.8rem;
    line-height: 1.57;
    margin-bottom: 4.9rem;
  }
}
.detail-box__thumb {
  margin-bottom: 3rem;
  text-align: center;
}
@media (min-width: 768px) {
  .detail-box__thumb {
    margin-bottom: 6rem;
  }
}
.detail-box__thumb img {
  border-radius: 1rem;
  width: 100%;
}
@media (min-width: 768px) {
  .detail-box__thumb img {
    width: 36rem;
  }
}
.detail-box__body {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.73;
}
@media (min-width: 768px) {
  .detail-box__body {
    font-size: 1.6rem;
    line-height: 2;
  }
}
.detail-box__body > * {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .detail-box__body > * {
    margin-bottom: 4.8rem;
  }
}
.detail-box__body > *:last-child {
  margin-bottom: 0;
}
.detail-box__body h3 {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.36;
  margin-block: 6rem 4rem;
  padding-left: 2.6rem;
  position: relative;
}
@media (min-width: 768px) {
  .detail-box__body h3 {
    font-size: 3.2rem;
    line-height: 1.45;
    margin-block: 9rem 7rem;
    padding-left: 3.2rem;
  }
}
.detail-box__body h3::before {
  content: "";
  background-color: var(--color-secondary);
  border-radius: 10rem;
  width: 0.4rem;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
.detail-box__body h4 {
  background-color: #F5EFE1;
  border-radius: 1rem;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.44;
  margin-bottom: 3rem;
  padding: 1.6rem 2rem;
}
@media (min-width: 768px) {
  .detail-box__body h4 {
    font-size: 2.2rem;
    line-height: 1.5;
    margin-bottom: 4.8rem;
    padding: 2.2rem 3rem;
  }
}
.detail-box__body h5 {
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-block: 3rem 2.4rem;
  padding-bottom: 1.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .detail-box__body h5 {
    font-size: 2rem;
    gap: 1.4rem;
    margin-block: 6rem 3.2rem;
    padding-bottom: 2rem;
  }
}
.detail-box__body h5::before {
  content: "";
  background-color: var(--color-secondary);
  border-radius: 50%;
  aspect-ratio: 1;
  flex-shrink: 0;
  width: 0.8rem;
}
@media (min-width: 768px) {
  .detail-box__body h5::before {
    width: 1rem;
  }
}
.detail-box__body h5::after {
  content: "";
  background-color: #CCCDD0;
  border-radius: 10rem;
  height: 0.2rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.detail-box__body .box {
  border: 2px solid #EDE5D3;
  border-radius: 0.6rem;
  margin-bottom: 5rem;
  padding: 3rem 2.6rem;
}
@media (min-width: 768px) {
  .detail-box__body .box {
    margin-top: 6rem;
    margin-bottom: 8rem;
    padding: 5rem;
  }
}
.detail-box__body mark {
  background: linear-gradient(180deg, transparent 65%, #FFEEA7 0, #FFEEA7);
  color: inherit;
  position: relative;
}
.detail-box__body a:not(.btn) {
  display: inline-block;
  color: var(--color-secondary);
  margin-top: 2rem;
  text-decoration: underline;
}
.detail-box__body a:not(.btn):hover {
  text-decoration: none;
}
.detail-box__body img {
  border-radius: 1rem;
}
.detail-box__body .list-btn {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}
@media (min-width: 768px) {
  .detail-box__body .list-btn {
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 2rem;
  }
}
.detail-box__body .list-btn .btn {
  width: 100%;
}
.detail-box__body .img-with-txt {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .detail-box__body .img-with-txt {
    flex-direction: row;
    gap: 5rem;
    margin-bottom: 8rem;
  }
}
.detail-box__body .img-with-txt__img {
  width: 100%;
}
@media (min-width: 768px) {
  .detail-box__body .img-with-txt__img {
    flex-shrink: 0;
    width: 22rem;
  }
}
@media (max-width: 767px) {
  .detail-box__body .scrollable {
    margin-inline: -3rem;
    padding-inline: 3rem;
  }
}
.detail-box__body .scrollable table {
  min-width: 70.6rem;
}
.detail-box__body table:not(.tbl-style01) {
  width: 100%;
}
@media (max-width: 767px) {
  .detail-box__body table:not(.tbl-style01).table-2col tr {
    flex-direction: column;
  }
  .detail-box__body table:not(.tbl-style01).table-2col tr:first-child td:first-child {
    border-radius: 0.6rem 0.6rem 0 0 !important;
  }
  .detail-box__body table:not(.tbl-style01).table-2col tr:last-child td:last-child {
    border-bottom: 2px solid #CCCDD0 !important;
    border-radius: 0 0 0.6rem 0.6rem !important;
  }
}
.detail-box__body table:not(.tbl-style01).table-2col td {
  padding: 1.4rem 2.4rem;
  text-align: left;
}
@media (min-width: 768px) {
  .detail-box__body table:not(.tbl-style01).table-2col td {
    font-size: 1.6rem;
    padding: 2rem 3rem;
  }
}
@media (max-width: 767px) {
  .detail-box__body table:not(.tbl-style01).table-2col td {
    border-radius: 0 !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
    border-left: 2px solid #CCCDD0;
    border-right: 2px solid #CCCDD0;
  }
}
@media (min-width: 768px) {
  .detail-box__body table:not(.tbl-style01).table-2col td:first-child {
    flex: 0 26rem;
    width: 26rem !important;
  }
}
@media (max-width: 767px) {
  .detail-box__body table:not(.tbl-style01).table-2col td:first-child {
    border-left: 0 !important;
  }
}
.detail-box__body table:not(.tbl-style01) tr {
  height: auto !important;
  display: flex;
  width: 100%;
}
.detail-box__body table:not(.tbl-style01) tr:first-child td {
  border-top: 2px solid #CCCDD0;
}
.detail-box__body table:not(.tbl-style01) tr:first-child td:first-child {
  border-top-color: var(--color-secondary);
  border-top-left-radius: 0.6rem;
}
.detail-box__body table:not(.tbl-style01) tr:first-child td:last-child {
  border-top-right-radius: 0.6rem;
}
.detail-box__body table:not(.tbl-style01) tr:last-child td {
  border-bottom: 2px solid #CCCDD0;
}
.detail-box__body table:not(.tbl-style01) tr:last-child td:first-child {
  border-bottom-color: var(--color-secondary);
  border-bottom-left-radius: 0.6rem;
}
.detail-box__body table:not(.tbl-style01) tr:last-child td:last-child {
  border-bottom-right-radius: 0.6rem;
}
.detail-box__body table:not(.tbl-style01) td {
  border-bottom: 2px solid #CCCDD0;
  border-right: 2px solid #CCCDD0;
  flex: 1;
  font-size: 1.4rem;
  line-height: 1.42;
  height: auto !important;
  width: auto !important;
  padding: 1.4rem 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .detail-box__body table:not(.tbl-style01) td {
    font-size: 1.5rem;
    line-height: 1.6;
    padding-block: 2rem;
  }
}
.detail-box__body table:not(.tbl-style01) td:first-child {
  background-color: var(--color-secondary);
  border-bottom-color: #fff;
  border-right: 0;
  color: #fff;
  font-weight: bold;
}