@charset "UTF-8";
:root {
  --font-family-base: Noto Sans JP, sans-serif;
  --font-weight-base: 400;
  --lineheight-base: 1.5;
  --font-en: Arvo, serif;
  --font-number: Inter, sans-serif;
  --font-size-base: 1.4rem;
  --cl-body: #333;
  --cl-primary: #237664;
  --cl-secondary: #1C7AA6;
  --cl-danger: #dc4240;
  --cl-warning: #e5bb5e;
  --cl-border: #E0E0DC;
  --input-border-color: #ccc;
  --input-border-width: 0.1rem;
  --input-font-size: 14px;
  --input-font-weight: 400;
  --input-background: #fff;
}
@media (min-width: 768px) {
  :root {
    --font-size-base: 1.6rem;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  overscroll-behavior-y: none;
}

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: #f7f7f2;
  color: #333;
  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;
  letter-spacing: 0.04em;
  font-feature-settings: "palt" 1, "pkna" 1, "pwid" 1, "pkna" 1;
}

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

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

.inner {
  padding-inline: 2rem;
}
@media (min-width: 768px) {
  .inner {
    padding-inline: min(3.3333333333vw, 48px);
  }
}
@media (min-width: 768px) {
  .inner.--smaller {
    padding-inline: 9.8rem;
  }
}

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

.img-scale {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}

.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: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
}
@media (min-width: 1341px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
}
@media (min-width: 1441px) {
  .d-xxxl-none {
    display: none !important;
  }
  .d-xxxl-block {
    display: block !important;
  }
  .d-xxxl-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: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1341px) {
  .text-xxl-left {
    text-align: left !important;
  }
  .text-xxl-right {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1441px) {
  .text-xxxl-left {
    text-align: left !important;
  }
  .text-xxxl-right {
    text-align: right !important;
  }
  .text-xxxl-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: ease;
}

.animated-text span {
  opacity: 1;
}
.animated-text:hover span {
  opacity: 0;
  animation: fadeIn 0.4s forwards;
}

.underline {
  background-position: right 100% bottom 0;
  background-image: linear-gradient(#333, #333);
  background-repeat: no-repeat;
  background-size: 100% 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeUp {
  display: inline-block;
  animation: fadeUp 0.4s forwards;
  opacity: 0;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes linkUnderline {
  0% {
    transform-origin: right;
    transform: scaleX(1);
  }
  49% {
    transform-origin: right;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(0);
  }
  100% {
    transform-origin: left;
    transform: scaleX(1);
  }
}
@keyframes underline_animation {
  0% {
    background-size: 0% 1px;
  }
  100% {
    background-size: 100% 1px;
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}
@keyframes hover_icon {
  0% {
    translate: 0% 0%;
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  50% {
    translate: 45% 0%;
    opacity: 0;
  }
  50.1% {
    translate: -50% 0%;
    opacity: 1;
  }
  100% {
    translate: 0% 0%;
    opacity: 1;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.btn {
  display: inline-flex;
  text-align: center;
  align-items: center;
  text-decoration: none;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:hover {
  text-decoration: none;
}
.btn:focus, .btn.focus {
  outline: 0;
}
.btn.disabled, .btn:disabled {
  background-color: rgba(51, 51, 51, 0.2);
  border-color: transparent;
  color: rgba(51, 51, 51, 0.3);
  pointer-events: none;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.btn--arrow {
  position: relative;
  font-weight: 500;
  border: 1px solid #333;
  border-radius: 7.2rem;
  padding: 0 6rem 0 3rem;
  height: 5.6rem;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .btn--arrow {
    padding: 0 6.5rem 0 2.4rem;
    height: 5.6rem;
  }
}
.btn--arrow:hover::after {
  animation: hover_icon 0.25s ease;
}
.btn--arrow::before, .btn--arrow::after {
  content: "";
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  width: 2.4rem;
  right: 2.4rem;
  transition: all 0.25s ease-in-out;
}
.btn--arrow::before {
  background-color: var(--cl-body);
}
.btn--arrow::after {
  background: url(../images/common/icon_arrow_02.svg) no-repeat center/0.9rem;
  filter: brightness(0) invert(1);
}
@media (min-width: 768px) {
  .btn--arrow::after {
    background-size: 0.9rem;
  }
}
.btn--back {
  width: 100%;
  justify-content: center;
  background-color: #EBE6D8;
  border: 1px solid var(--cl-border);
  min-height: 7.9rem;
  border-radius: 8rem;
  font-size: 1.4rem;
  gap: 0.2rem;
  font-weight: 500;
  transition: all 0.25s ease-in-out;
}
.btn--back:hover {
  opacity: 0.8;
}
.btn--back::before {
  content: "";
  width: 1.3rem;
  aspect-ratio: 1;
  background: url(../images/common/icon_back.svg) no-repeat center/contain;
}
.btn--outline {
  border: 2px solid var(--cl-body);
  justify-content: center;
  padding: 0.4rem 1.2rem;
  border-radius: 6rem;
  min-height: 3.3rem;
  min-width: 13.4rem;
}
@media (min-width: 768px) {
  .btn--outline {
    padding: 1rem;
    min-height: 5.6rem;
    min-width: 20rem;
    border-width: 1px;
  }
}
@media (max-width: 767px) {
  .btn--outline {
    font-size: 1.2rem;
  }
}
.btn--outline.is-active {
  background-color: var(--cl-body);
  border-color: var(--cl-border);
  color: #fff;
}
.btn--view {
  text-transform: uppercase;
  font-family: var(--font-number);
  font-size: 1.4rem;
  font-weight: 600;
  position: relative;
  padding-right: 3.2rem;
}
.btn--view:hover::after {
  animation: hover_icon 0.25s ease;
}
.btn--view::before, .btn--view::after {
  content: "";
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  width: 2.4rem;
  right: 0;
  transition: all 0.25s ease-in-out;
}
.btn--view::before {
  background-color: var(--cl-body);
}
.btn--view::after {
  background: url(../images/common/icon_arrow_02.svg) no-repeat center/0.9rem;
  filter: brightness(0) invert(1);
}
@media (min-width: 768px) {
  .btn--view::after {
    background-size: 0.9rem;
  }
}
.btn--black {
  background-color: var(--cl-body);
  color: #fff;
}
.btn--warning {
  background-color: var(--cl-warning);
  color: var(--cl-body);
  border-color: var(--cl-warning);
}
.btn--warning::after {
  background-image: url(../images/common/icon_arrow_02_warning.svg);
  filter: none;
}
.btn--white {
  color: #fff;
  border-color: #fff;
}
.btn--white::before {
  background-color: #F7F7F2;
}
.btn--white::after {
  filter: brightness(0) invert(0.1);
}

.ic-right {
  display: block;
  width: 1.2rem;
  height: 1rem;
  background: url(../images/common/icon_arrow_02.svg) no-repeat center;
  background-size: contain;
}

.c-btn-3 {
  display: inline-flex;
  background-image: url(../images/common/ic_line_2.png);
  background-position: left center;
  background-repeat: repeat-y;
  background-size: 1px;
  padding: 0.5rem 0 0.5rem 1.6rem;
}
.c-btn-3:hover .ic-right {
  animation: translateArrow 0.2s ease;
}

.pos-btn {
  text-align: right;
}

@keyframes translateArrow {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(50%);
  }
  51% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes translateArrow2 {
  0% {
    transform: rotate(-45deg) translateX(0);
  }
  50% {
    transform: rotate(-45deg) translateX(50%);
  }
  51% {
    transform: rotate(-45deg) translateX(-50%);
  }
  100% {
    transform: rotate(-45deg) translateX(0);
  }
}
@media (min-width: 768px) {
  .p-header {
    z-index: 19;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
  }
}
@media (max-width: 767px) {
  .p-header {
    background-color: #fffefa;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
  }
}
.p-header__logo {
  margin-block: 1.4rem;
  width: 11.2rem;
}
@media (min-width: 768px) {
  .p-header__logo {
    display: none;
  }
}
.p-header__logo img {
  width: 100%;
}

.c-side {
  text-align: center;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 12;
  overflow-y: auto;
  width: 100vw;
  max-width: 32rem;
  padding-block: 2rem;
  background-color: #fffefa;
}
@media (min-width: 768px) {
  .c-side {
    max-height: 100vh;
    height: 100vh;
    background-color: #fff;
    padding-block: 3rem;
    width: 32rem;
  }
}
@media (max-width: 1199px) {
  .c-side {
    transition: all 0.25s ease-in-out;
    transform: translateX(100%);
  }
  .c-side.is-active {
    transform: translateX(0%);
  }
}
@media (max-width: 767px) {
  .c-side {
    height: 100vh;
  }
}
.c-side__close {
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .c-side__close {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1200px) {
  .c-side__close {
    display: none;
  }
}
@media (max-width: 767px) {
  .c-side__close {
    position: absolute;
    right: 0;
    top: 2rem;
  }
}
.c-side__close-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: var(--cl-body);
  border-radius: 3rem 0 0 3rem;
  width: 6.4rem;
  height: 2.8rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  padding-left: 0.6rem;
}
.c-side__col {
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  gap: 2rem;
}
@media (min-width: 768px) {
  .c-side__col {
    flex-direction: column;
    gap: 2.8rem;
  }
}
.c-side__des {
  font-weight: 500;
  line-height: 1;
  font-size: 1.2rem;
}
.c-side__logo {
  width: 9.5rem;
}
@media (min-width: 768px) {
  .c-side__logo {
    width: 18.1rem;
  }
}
.c-side__menu {
  border-top: 1px solid #e0e0dc;
  border-bottom: 1px solid #e0e0dc;
  margin-block: 3rem;
  padding-block: 1.5rem;
}
@media (min-width: 768px) {
  .c-side__menu {
    margin-block: 4rem 2.4rem;
    padding-block: 1.5rem;
  }
}
.c-side__menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 0.2rem;
}
.c-side__menu-item {
  padding-inline: 1.6rem;
}
@media (min-width: 768px) {
  .c-side__menu-item {
    padding-inline: 1.2rem;
  }
}
.c-side__menu-item:nth-child(odd) {
  position: relative;
}
.c-side__menu-item:nth-child(odd)::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 50%;
  background-image: repeating-linear-gradient(to bottom, #b8b8b4 0px, #b8b8b4 1px, transparent 1px, transparent 3px);
}
.c-side__menu-item a {
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4rem;
  position: relative;
  z-index: 1;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.25s ease-in-out;
}
.c-side__menu-item a:hover, .c-side__menu-item a.is-active {
  background-color: #f7f7f2;
}
.c-side__menu-item a:hover::after, .c-side__menu-item a.is-active::after {
  opacity: 1;
}
.c-side__menu-item a::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: url(../images/common/bg_body.png) repeat;
  opacity: 0;
  transition: all 0.25s ease-in-out;
}
.c-side__social {
  margin-bottom: 1.6rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #e0e0dc;
}
.c-side__social-ttl {
  font-family: var(--font-en);
  font-weight: bold;
  margin-bottom: 1rem;
  opacity: 0.5;
}
.c-side__social-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
.c-side__social-list a {
  width: 4rem;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid #e0e0dc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.c-side__slider {
  margin: 0 2rem;
}
@media (min-width: 768px) {
  .c-side__slider {
    margin: 0 1.6rem;
  }
}
.c-side__slider-txt {
  font-size: 1.2rem;
  color: rgba(51, 51, 51, 0.5);
  letter-spacing: 0.04em;
  margin-top: 1.2rem;
  text-align: left;
}
.c-side__slider-item {
  position: relative;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .c-side__slider-item {
    margin-inline: 1.6rem;
  }
  .c-side__slider-item:hover {
    opacity: 0.5;
  }
}
.c-side__slider-img {
  overflow: hidden;
  border-radius: 2rem;
}
.c-side__slider-img img {
  aspect-ratio: 256/144;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-side__slider .slick-arrow {
  color: transparent;
  border: 0.2rem solid #e0e0dc;
  background: #fff;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  position: absolute;
  top: 6rem;
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .c-side__slider .slick-arrow {
    display: none;
  }
}
.c-side__slider .slick-arrow:hover {
  background: #333;
  border: 0.2rem solid #333;
}
.c-side__slider .slick-arrow:hover:before {
  filter: invert(1);
}
.c-side__slider .slick-arrow:before {
  position: absolute;
  content: "";
  width: 1rem;
  height: 1rem;
  background: url(../images/common/icon_arrow_01.svg) no-repeat center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-side__slider .slick-arrow.slick-prev {
  left: 0;
}
.c-side__slider .slick-arrow.slick-next {
  right: 0;
}
.c-side__slider .slick-arrow.slick-next:before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.c-social {
  display: flex;
}
@media (min-width: 768px) {
  .c-social {
    height: 5.4rem;
    border-radius: 0 0 1.2rem 0;
    border: 1px solid #e3e3de;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: #fff;
    position: fixed;
    left: 0;
    top: 0;
    box-shadow: 0 0.4rem 0.6rem rgba(0, 0, 0, 0.05);
    gap: 3rem;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .c-social {
    padding-inline: 1.8rem 2.4rem;
    gap: 1.2rem;
  }
}
@media (max-width: 767px) {
  .c-social {
    flex-direction: column;
  }
}
.c-social__ttl {
  border-right: 1px dotted #b8b8b4;
  padding: 0.4rem 1.8rem 0.4rem 0;
  font-size: 1.1rem;
  font-family: var(--font-number);
  font-weight: 500;
}
.c-social__icon {
  transition: all 0.25s ease-in-out;
}
.c-social__icon:hover {
  opacity: 0.8;
}
.c-social__icon img {
  width: auto;
  display: block;
  height: 1.8rem;
}
.c-social__txt {
  font-size: 1.2rem;
  font-family: var(--font-number);
  font-weight: 600;
}
.c-social__txt:not(:last-child) {
  margin-bottom: 1rem;
}

.hamburger-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: var(--cl-body);
  width: 6.4rem;
  height: 2.8rem;
  border-radius: 3rem;
  z-index: 3;
  position: fixed;
  right: 2rem;
  top: 2rem;
}
@media (min-width: 1200px) {
  .hamburger-box {
    display: none;
  }
}
.hamburger-box.is-active .hamburger-box__line {
  opacity: 0;
}
.hamburger-box.is-active .hamburger-box__txt {
  opacity: 1;
}
.hamburger-box__line {
  position: absolute;
  width: 3.2rem;
  height: 0.7rem;
}
.hamburger-box__line::before, .hamburger-box__line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}
.hamburger-box__line::before {
  top: 0;
}
.hamburger-box__line::after {
  bottom: 0;
}
.hamburger-box__txt {
  font-size: 1.2rem;
  position: absolute;
  font-weight: 700;
  color: #fff;
  opacity: 0;
}

.p-footer {
  background: #ebe6d8;
  border-radius: 0 5rem 0 0;
  padding: 5.6rem 2rem 3rem;
  margin-top: 5.6rem;
  margin-right: 2rem;
}
@media (min-width: 768px) {
  .p-footer {
    margin-top: 10rem;
    margin-right: 0;
    padding: 5.6rem min(3.3333333333vw, 48px);
  }
}
.p-footer-flex {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
}
@media (max-width: 767px) {
  .p-footer-flex {
    gap: 4rem;
    flex-direction: column;
  }
}
.p-footer-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
@media (min-width: 768px) {
  .p-footer-left {
    max-width: 30rem;
    gap: 5rem;
  }
}
.p-footer__address {
  font-size: 1.2rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .p-footer__address {
    font-size: 1.3rem;
  }
}
.p-footer__address__ttl {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .p-footer__address__ttl {
    font-size: 1.5rem;
  }
}
.p-footer__ttlen {
  font-size: 2.4rem;
}
@media (min-width: 768px) {
  .p-footer__ttlen {
    font-size: 2.8rem;
  }
}
.p-footer__ttl {
  font-size: 1.1rem;
}
@media (min-width: 768px) {
  .p-footer__ttl {
    font-size: 1.2rem;
  }
}
.p-footer-right {
  max-width: 60rem;
}
.p-footer-right__btn {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .p-footer-right__btn {
    margin-top: 2.2rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
}
.p-footer-right__btn__link {
  background: #fff;
  border-radius: 0.8rem;
  border: 2px solid #e0e0dc;
  font-size: 1.5rem;
  font-weight: 500;
  position: relative;
  padding: 2.3rem 1.8rem;
  display: flex;
  justify-content: space-between;
}
.p-footer-right__btn__link:hover .ic-right {
  animation: translateArrow 0.2s ease;
}
.p-footer-copyright {
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  color: rgba(51, 51, 51, 0.5);
}
@media (min-width: 768px) {
  .p-footer-copyright {
    flex-direction: row;
    margin-top: 8rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-footer-copyright {
    margin-top: 4rem;
  }
}
@media (max-width: 767px) {
  .p-footer-copyright {
    flex-direction: column;
    gap: 1rem;
  }
}
.p-footer-copyright .nav-footer {
  display: flex;
}
.p-footer-copyright .nav-footer-link {
  transition: all 0.3s;
}
.p-footer-copyright .nav-footer-link:not(:last-child) {
  background: url(../images/common/ic_line_2.png) repeat-y;
  background-position: right center;
  background-size: 1px 2rem;
  padding-right: 1.6rem;
  margin-right: 1.6rem;
}
.p-footer-copyright .nav-footer-link:hover {
  color: #333;
}

.form-control {
  background-clip: padding-box;
  border: 1px solid #E0E0DC;
  color: var(--cl-body);
  display: block;
  padding: 0.5rem 2rem;
  width: 100%;
  font-size: 1.4rem;
  min-height: 4.8rem;
}
@media (min-width: 768px) {
  .form-control {
    font-size: 1.6rem;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #333;
}
.form-control:focus-visible {
  outline: 0;
}
.form-control::-moz-placeholder {
  color: #A3A3A3;
  opacity: 1;
}
.form-control::placeholder {
  color: #A3A3A3;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #f0f0f0;
  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%;
}

.ttl02 {
  font-size: 2.2rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .ttl02 {
    font-size: 2.4rem;
  }
}

.hline01 {
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .hline01 {
    margin-bottom: 6rem;
  }
}
.hline01__sub {
  font-family: var(--font-en);
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0.8rem;
}
@media (min-width: 768px) {
  .hline01__sub {
    margin-bottom: 1rem;
  }
}
.hline01__sub::before {
  content: "";
  display: inline-block;
  margin-right: 0.5rem;
  aspect-ratio: 6/5;
  border-radius: 50%;
  background: var(--cl-primary);
  width: 0.5rem;
}
@media (min-width: 768px) {
  .hline01__sub::before {
    width: 0.6rem;
  }
}
.hline01__sub.--sub-secondary::before {
  background: var(--cl-secondary);
}
.hline01__sub.--sub-warning::before {
  background: var(--cl-warning);
}
.hline01__sub.--sub-danger::before {
  background: var(--cl-danger);
}
.hline01__sub.--sub-body::before {
  background: var(--cl-body);
  opacity: 0.5;
}
.hline01__ttl {
  font-weight: bold;
  font-size: 3.6rem;
  line-height: 1.2;
}
.hline01__ttl::before, .hline01__ttl::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.hline01__ttl::before {
  margin-block-end: calc((1 - var(1.2)) * 0.5em);
}
.hline01__ttl::after {
  margin-block-start: calc((1 - var(1.2)) * 0.5em);
}
@media (min-width: 768px) {
  .hline01__ttl {
    font-size: 4rem;
  }
  .hline01__ttl::before, .hline01__ttl::after {
    content: "";
    display: block flow;
    inline-size: 0;
    block-size: 1px;
  }
  .hline01__ttl::before {
    margin-block-end: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
  }
  .hline01__ttl::after {
    margin-block-start: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
  }
}

.hline02 {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  border-bottom: 1px solid var(--cl-border);
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 1.6rem;
  padding-bottom: 1.2rem;
}
@media (min-width: 768px) {
  .hline02 {
    gap: 0.8rem;
    font-size: 2.4rem;
    padding-bottom: 1.8rem;
    margin-bottom: 3.2rem;
  }
}
.hline02:not(:first-child) {
  margin-top: 5rem;
}
@media (min-width: 768px) {
  .hline02:not(:first-child) {
    margin-top: 9.6rem;
  }
}
.hline02::before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  background: var(--cl-warning);
  vertical-align: middle;
  height: 0.5rem;
  width: 0.6rem;
  margin-top: 1.2rem;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .hline02::before {
    margin-top: 1.7rem;
  }
}

.c-detail__head {
  margin-bottom: 4.6rem;
}
@media (min-width: 768px) {
  .c-detail__head {
    margin-bottom: 5.6rem;
  }
}
.c-detail__group {
  display: flex;
  flex-wrap: wrap;
  gap: 5.6rem;
}
.c-detail p:not([class]) {
  font-weight: 500;
  line-height: 2;
}
.c-detail p:not([class]):not(:last-child) {
  margin-bottom: 1.6rem;
}
@media (min-width: 768px) {
  .c-detail p:not([class]):not(:last-child) {
    margin-bottom: 2rem;
  }
}
.c-detail figure:not(:first-child) {
  margin-top: 5.5rem;
}
@media (min-width: 768px) {
  .c-detail figure:not(:first-child) {
    margin-top: 5.6rem;
  }
}
.c-detail figure:not(:last-child) {
  margin-bottom: 3.2rem;
}
@media (min-width: 768px) {
  .c-detail figure:not(:last-child) {
    margin-bottom: 5.6rem;
  }
}
.c-detail figcaption {
  opacity: 0.5;
  text-align: center;
  font-weight: 500;
  margin-top: 0.8rem;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .c-detail figcaption {
    margin-top: 1rem;
    font-size: 1.4rem;
  }
}
.c-detail .block-editor a {
  color: #00f;
  text-decoration: underline;
}
.c-detail img {
  border-radius: 1.6rem;
  width: 100%;
}
@media (min-width: 768px) {
  .c-detail img {
    border-radius: 3rem;
  }
}
.c-detail iframe {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  border-radius: 1.6rem;
}
@media (min-width: 768px) {
  .c-detail iframe {
    border-radius: 3rem;
  }
}
@media (min-width: 768px) {
  .c-detail .wp-block-video,
  .c-detail .wp-block-image {
    margin-inline: -4.8rem;
  }
}
.c-detail h1 {
  line-height: 1.2;
  font-weight: bold;
  font-size: 2.3rem;
  margin-bottom: 4rem;
}
.c-detail h1::before, .c-detail h1::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.c-detail h1::before {
  margin-block-end: calc((1 - 1.2) * 0.5em);
}
.c-detail h1::after {
  margin-block-start: calc((1 - 1.2) * 0.5em);
}
@media (min-width: 768px) {
  .c-detail h1 {
    line-height: 1.4;
    max-width: 78rem;
    font-size: 3.4rem;
    margin-bottom: 6rem;
  }
  .c-detail h1::before, .c-detail h1::after {
    content: "";
    display: block flow;
    inline-size: 0;
    block-size: 1px;
  }
  .c-detail h1::before {
    margin-block-end: calc((1 - 1.4) * 0.5em);
  }
  .c-detail h1::after {
    margin-block-start: calc((1 - 1.4) * 0.5em);
  }
}
@media (max-width: 767px) {
  .c-detail h1 + .c-detail__date {
    margin-top: -3.5rem;
  }
}
.c-detail h2 {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  border-bottom: 1px solid var(--cl-border);
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 1.6rem;
  padding-bottom: 1.2rem;
}
@media (min-width: 768px) {
  .c-detail h2 {
    gap: 0.8rem;
    font-size: 2.4rem;
    padding-bottom: 1.8rem;
    margin-bottom: 3.2rem;
  }
}
.c-detail h2:not(:first-child) {
  margin-top: 5rem;
}
@media (min-width: 768px) {
  .c-detail h2:not(:first-child) {
    margin-top: 9.6rem;
  }
}
.c-detail h2::before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  background: var(--cl-primary);
  vertical-align: middle;
  height: 0.5rem;
  width: 0.6rem;
  margin-top: 1.2rem;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .c-detail h2::before {
    margin-top: 1.7rem;
  }
}
.c-detail h3 {
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 1.8rem;
}
.c-detail h3::before, .c-detail h3::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.c-detail h3::before {
  margin-block-end: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}
.c-detail h3::after {
  margin-block-start: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}
@media (min-width: 768px) {
  .c-detail h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.c-detail h3:not(:first-child) {
  margin-top: 2.4rem;
}
@media (min-width: 768px) {
  .c-detail h3:not(:first-child) {
    margin-top: 2.8rem;
  }
}
.c-detail h3 + h4,
.c-detail h3 + h5 {
  margin-top: 0;
}
.c-detail h4 {
  font-weight: bold;
  color: #1C7AA6;
  font-size: 1.4rem;
  margin-block: 1.6rem 0.8rem;
}
.c-detail h4::before, .c-detail h4::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.c-detail h4::before {
  margin-block-end: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}
.c-detail h4::after {
  margin-block-start: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}
@media (min-width: 768px) {
  .c-detail h4 {
    font-size: 1.6rem;
    margin-block: 3.5rem 1rem;
  }
}
.c-detail h5 {
  font-weight: bold;
  color: var(--cl-danger);
  font-size: 1.4rem;
  margin-block: 1.6rem 0.8rem;
}
.c-detail h5::before, .c-detail h5::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.c-detail h5::before {
  margin-block-end: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}
.c-detail h5::after {
  margin-block-start: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}
@media (min-width: 768px) {
  .c-detail h5 {
    margin-block: 3.5rem 1rem;
    font-size: 1.6rem;
  }
}
.c-detail__sub {
  font-family: var(--font-en);
  font-weight: bold;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .c-detail__sub {
    display: none;
  }
}
.c-detail__sub::before {
  content: "";
  flex-shrink: 0;
  aspect-ratio: 6/5;
  border-radius: 50%;
  background: var(--cl-primary);
  width: 0.5rem;
}
.c-detail__name {
  font-weight: 500;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .c-detail__name {
    margin-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .c-detail__name {
    display: none;
  }
}
.c-detail__name .name-cast {
  display: inline-flex;
  align-items: center;
}
.c-detail__name .name-cast::after {
  content: "";
  display: inline-block;
  width: 1px;
  background-color: var(--cl-body);
  opacity: 0.5;
  border-radius: 2px;
  height: 1.6rem;
  margin-inline: 1.6rem;
}
.c-detail__tags {
  display: flex;
  align-items: center;
  flex-flow: wrap;
  opacity: 0.5;
  font-size: 1.2rem;
  gap: 0.8rem 2rem;
}
@media (min-width: 768px) {
  .c-detail__tags {
    max-width: 87rem;
    padding-right: 90px;
    gap: 1.5rem 2.4rem;
  }
}
.c-detail__tags span {
  display: inline-block;
  color: #666;
}
.c-detail__date {
  text-align: right;
  opacity: 0.5;
  font-family: var(--font-number);
  font-weight: 600;
  font-size: 1.1rem;
  margin-block: 1.5rem 5rem;
}
@media (min-width: 768px) {
  .c-detail__date {
    margin-block: -1.5rem 8rem;
  }
}
.c-detail__catalogue {
  display: flex;
  border: 1px solid var(--cl-border);
  border-width: 1px 0;
  padding-block: 1.6rem;
  margin-bottom: 2.4rem;
}
@media (min-width: 768px) {
  .c-detail__catalogue {
    padding-block: 4rem;
    margin-bottom: 4.8rem;
  }
}
.c-detail__catalogue-ttl {
  position: relative;
  font-weight: 500;
  flex-shrink: 0;
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-right: 4.8rem;
}
@media (min-width: 768px) {
  .c-detail__catalogue-ttl {
    margin-right: 4.8rem;
    font-size: 1.8rem;
  }
}
.c-detail__catalogue-ttl::after {
  content: "";
  position: absolute;
  bottom: 0.5rem;
  top: 0.5rem;
  right: -2.4rem;
  width: 1px;
  background-image: repeating-linear-gradient(to bottom, #B8B8B4 0px, #B8B8B4 1px, transparent 1px, transparent 4px);
}
.c-detail__catalogue-content {
  flex: 1 1;
}
.c-detail__catalogue-content > ul > li:not(:first-child) {
  margin-top: 1.6rem;
}
@media (min-width: 768px) {
  .c-detail__catalogue-content > ul > li:not(:first-child) {
    margin-top: 2rem;
  }
}
.c-detail__catalogue .catalogue-lv2 {
  font-weight: 500;
  display: inline-block;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .c-detail__catalogue .catalogue-lv2 {
    font-size: 1.8rem;
  }
}
.c-detail__catalogue .catalogue-lv3 {
  color: #808080;
  font-weight: 500;
  line-height: 1.3;
  display: inline-flex;
  align-items: flex-start;
  font-size: 1.3rem;
  margin-top: 0.5rem;
  gap: 0.6rem;
}
@media (min-width: 768px) {
  .c-detail__catalogue .catalogue-lv3 {
    font-size: 1.5rem;
    margin-top: 0.8rem;
  }
}
.c-detail__catalogue .catalogue-lv3::before {
  content: "";
  border-radius: 50%;
  background: var(--cl-primary);
  vertical-align: middle;
  width: 0.6rem;
  height: 0.5rem;
  margin-top: 0.8rem;
}
.c-detail__social {
  border: 1px solid var(--cl-border);
  text-align: center;
  border-radius: 1.2rem;
  padding: 1.8rem;
}
@media (min-width: 768px) {
  .c-detail__social {
    margin-inline: -4.8rem;
    border-radius: 2rem;
    padding: 2.4rem;
  }
}
.c-detail__social:not(:last-child) {
  margin-bottom: 2.4rem;
}
@media (min-width: 768px) {
  .c-detail__social:not(:last-child) {
    margin-bottom: 8rem;
  }
}
.c-detail__social-ttl {
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 1.3rem;
}
@media (min-width: 768px) {
  .c-detail__social-ttl {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
}
.c-detail__social-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .c-detail__social-list {
    gap: 2.2rem;
  }
}
.c-detail__social-list a {
  transition: all 0.25s ease-in-out;
}
.c-detail__social-list a:hover {
  opacity: 0.8;
}
.c-detail__social-list a img {
  width: auto;
  display: block;
  height: 2.2rem;
  border-radius: 0;
}
@media (min-width: 768px) {
  .c-detail__social-list a img {
    height: 2.6rem;
  }
}
.c-detail__desc {
  background-color: #Fff;
  padding: 2rem;
  margin-block: 3.2rem 4.8rem;
  border-radius: 1.6rem;
}
@media (min-width: 768px) {
  .c-detail__desc {
    padding: 4.8rem;
    border-radius: 3rem;
  }
}
@media (min-width: 768px) {
  .c-detail__desc {
    margin-block: 5.6rem;
    margin-inline: -4.8rem;
  }
}
.c-detail__profile {
  background: rgba(51, 51, 51, 0.05);
  position: relative;
  display: flex;
  align-items: center;
  gap: 3rem;
  border-radius: 1.6rem;
  padding: 3.2rem 2rem 2.8rem;
}
@media (min-width: 768px) {
  .c-detail__profile {
    align-items: flex-start;
    border-radius: 3rem;
    gap: 4.7rem;
    padding: 4rem 4.8rem;
  }
}
@media (max-width: 767px) {
  .c-detail__profile {
    flex-direction: column;
  }
}
.c-detail__profile:not(:last-child) {
  margin-bottom: 4rem;
}
.c-detail__profile-image {
  aspect-ratio: 1;
  width: 18rem;
}
@media (min-width: 768px) {
  .c-detail__profile-image {
    width: 18rem;
    flex-shrink: 0;
  }
}
.c-detail__profile-image img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .c-detail__profile-body {
    flex: 1;
  }
}
@media (min-width: 768px) {
  .c-detail__profile-head {
    padding-right: 28rem;
  }
}
@media (max-width: 767px) {
  .c-detail__profile-head {
    margin-bottom: 2rem;
  }
}
.c-detail__profile-sub {
  opacity: 0.5;
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}
@media (min-width: 768px) {
  .c-detail__profile-sub {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
}
.c-detail__profile-ttl {
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .c-detail__profile-ttl {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}
.c-detail__profile-text {
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 500;
}
.c-detail__profile-row {
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .c-detail__profile-row {
    right: 4.8rem;
    top: 4rem;
    position: absolute;
  }
}
.c-detail__profile-sns {
  font-family: var(--font-number);
  border-right: 1px dotted #b8b8b4;
  font-size: 1.2rem;
  margin-right: 1.4rem;
  padding: 0.3rem 1.4rem 0.3rem 0;
  font-weight: 600;
}
@media (min-width: 768px) {
  .c-detail__profile-sns {
    font-size: 1rem;
    margin-right: 1.8rem;
    padding: 0.5rem 1.8rem 0.5rem 0;
  }
}
.c-detail__profile-social {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-detail__profile-social a {
  width: 4rem;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid #E0E0DC;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  transition: all 0.25s ease-in-out;
}
.c-detail__profile-social a:hover {
  opacity: 0.8;
}
.c-detail__profile-social a img {
  display: block;
  width: auto;
  height: 1.8rem;
}
.c-detail__slider {
  text-align: center;
}
.c-detail__slider:not(:last-child) {
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .c-detail__slider:not(:last-child) {
    margin-bottom: 10rem;
  }
}
.c-detail__slider-main {
  margin-bottom: 2.4rem;
}
@media (min-width: 768px) {
  .c-detail__slider-main {
    margin-bottom: 4.8rem;
    margin-inline: -4.8rem;
  }
}
.c-detail__slider-main .slick-slide {
  margin-inline: 1px;
}
.c-detail__slider-main img {
  height: auto;
  aspect-ratio: 165/110;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-detail__slider-sub {
  margin-top: 1rem;
  opacity: 0.5;
  font-weight: 500;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .c-detail__slider-sub {
    font-size: 1.4rem;
  }
}
.c-detail__slider-thumb {
  margin-bottom: 3.2rem;
}
@media (min-width: 768px) {
  .c-detail__slider-thumb {
    margin-bottom: 4rem;
    margin-inline: -1.2rem;
  }
}
@media (min-width: 768px) {
  .c-detail__slider-thumb.none-transform .slick-track {
    transform: none !important;
  }
}
@media (max-width: 767px) {
  .c-detail__slider-thumb .slick-list {
    overflow: initial;
  }
}
.c-detail__slider-thumb .slick-slide {
  position: relative;
  cursor: pointer;
  margin-inline: 0.8rem;
  width: 13.5rem;
  aspect-ratio: 165/110;
}
@media (min-width: 768px) {
  .c-detail__slider-thumb .slick-slide {
    margin-inline: 1.2rem;
    width: 16.5rem;
    aspect-ratio: 165/110;
  }
}
.c-detail__slider-thumb .slick-slide::before, .c-detail__slider-thumb .slick-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.c-detail__slider-thumb .slick-slide::before {
  transition: all 0.2s ease-in-out;
  background-color: #fff;
  opacity: 0;
}
.c-detail__slider-thumb .slick-slide::after {
  border: 0.2rem solid transparent;
}
@media (min-width: 768px) {
  .c-detail__slider-thumb .slick-slide::after {
    border-width: 0.4rem;
  }
}
.c-detail__slider-thumb .slick-slide img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 1.2rem;
}
@media (min-width: 768px) {
  .c-detail__slider-thumb .slick-slide img {
    border-radius: 1.6rem;
  }
}
.c-detail__slider-thumb .slick-slide.slick-current::before {
  opacity: 0.3;
}
.c-detail__slider-thumb .slick-slide.slick-current::after {
  border-color: var(--cl-danger);
  border-radius: 1.2rem;
}
@media (min-width: 768px) {
  .c-detail__slider-thumb .slick-slide.slick-current::after {
    border-radius: 1.6rem;
  }
}
.c-detail__slider-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.3rem;
}
.c-detail__slider-arrows .slick-arrow {
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333;
  border: 0;
  cursor: pointer;
  width: 4rem;
  transition: all 0.25s ease-in-out;
}
.c-detail__slider-arrows .slick-arrow:hover {
  opacity: 0.8;
}
.c-detail__slider-arrows .slick-arrow::after {
  content: "";
  background: url(../images/common/icon_arrow_02.svg) no-repeat center/contain;
  position: absolute;
  width: 1.5rem;
  aspect-ratio: 15/13;
  filter: brightness(0) invert(1);
}
.c-detail__slider-arrows .slick-prev::after {
  transform: scaleX(-1);
}
.c-detail__slider-count {
  font-size: 1.4rem;
  font-family: var(--font-number);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 4.4rem;
}
.c-detail__slider-count .total {
  display: flex;
  align-items: center;
}
.c-detail__slider-count .total::before {
  content: "/";
  font-size: 2rem;
  margin-inline: 0.8rem;
  font-weight: 300;
}
.c-detail__body {
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .c-detail__body {
    margin-bottom: 10rem;
  }
}
.c-detail__btn {
  margin-top: 3.2rem;
}
@media (min-width: 768px) {
  .c-detail__btn {
    margin-top: 5.7rem;
    margin-inline: -4.8rem;
  }
}
.c-detail__info {
  margin-bottom: 2.4rem;
}
@media (min-width: 768px) {
  .c-detail__info {
    margin-bottom: 5.6rem;
  }
}
.c-detail__info-sub {
  margin-bottom: 0.8rem;
}
@media (min-width: 768px) {
  .c-detail__info dl {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: 21rem 1fr;
  }
}
.c-detail__info dt,
.c-detail__info dd {
  border-radius: 0.4rem;
  padding: 2rem 1.6rem;
  min-height: 5.6rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.c-detail__info dt {
  background-color: #E5E5E1;
  font-weight: bold;
}
@media (max-width: 767px) {
  .c-detail__info dt {
    margin-block: 0.4rem;
  }
  .c-detail__info dt:first-child {
    margin-top: 0;
  }
}
.c-detail__info dd {
  margin: 0;
  background-color: #EDEDE8;
}
.c-detail__map {
  margin-bottom: 3.2rem;
}
@media (min-width: 768px) {
  .c-detail__map {
    margin-bottom: 5.6rem;
    margin-inline: -4.8rem;
  }
}
.c-detail__map iframe {
  margin-bottom: 1.5rem;
}
.c-detail__map a {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .c-detail__map a {
    margin-inline: 4.8rem;
  }
}
.c-detail__map a::before {
  content: "";
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.7rem;
  background: url(../images/common/icon_map.svg) no-repeat center/contain;
  margin-top: 0.3rem;
}
.c-detail__media {
  display: flex;
  gap: 2rem;
}
@media (min-width: 768px) {
  .c-detail__media {
    display: grid;
    gap: 6rem;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .c-detail__media {
    flex-direction: column-reverse;
  }
}
.c-detail__media:not(:last-child) {
  margin-bottom: 4.8rem;
}
.c-detail__media img {
  aspect-ratio: 460/277;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 768px) {
  .c-detail__media img {
    border-radius: 2rem;
  }
}
.c-detail__prepare {
  background: rgba(51, 51, 51, 0.05);
  position: relative;
  border-radius: 1.6rem;
  padding: 1.8rem 2rem;
}
@media (min-width: 768px) {
  .c-detail__prepare {
    border-radius: 3rem;
    padding: 4rem 2.6rem;
  }
}
.c-detail__prepare:not(:last-child) {
  margin-bottom: 4.8rem;
}
.c-detail__prepare-list:not(:last-child) {
  margin-bottom: 1.8rem;
}
@media (min-width: 768px) {
  .c-detail__prepare-list:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}
.c-detail__prepare-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-weight: 500;
}
.c-detail__prepare-list li:not(:last-child) {
  margin-bottom: 0.8rem;
}
@media (min-width: 768px) {
  .c-detail__prepare-list li:not(:last-child) {
    margin-bottom: 1.4rem;
  }
}
.c-detail__prepare-list li::before {
  content: "";
  flex-shrink: 0;
  aspect-ratio: 6/5;
  border-radius: 50%;
  background: var(--cl-body);
  opacity: 0.5;
  width: 0.6rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .c-detail__prepare-list li::before {
    margin-top: 1.2rem;
  }
}
.c-detail__prepare-note {
  background-color: #fff;
  color: #808080;
  font-weight: 500;
  border-radius: 0.8rem;
  padding: 1.5rem 2rem 1.8rem;
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  .c-detail__prepare-note {
    border-radius: 1rem;
    padding: 1.9rem 2.4rem 2.4rem;
    font-size: 1.5rem;
  }
}
.c-detail__prepare-note::before {
  content: "“";
  display: block;
  margin-bottom: -1rem;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .c-detail__prepare-note::before {
    margin-bottom: -0.5rem;
    font-size: 2.4rem;
  }
}
.c-detail__cate {
  display: inline-flex;
  align-items: center;
  background-color: var(--cate-color);
  border: 2px solid #D9D9D4;
  color: #fff;
  transition: all 0.2s;
  padding-inline: 0.7rem;
  border-radius: 2rem;
  height: 2.3rem;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .c-detail__cate {
    padding-inline: 2rem;
    height: 3.6rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
  }
}
.c-detail__gallery:not(:last-child) {
  margin-bottom: 8rem;
}
.c-detail__gallery-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .c-detail__gallery-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.7rem;
  }
}
.c-detail__gallery img {
  border-radius: 0.8rem;
  aspect-ratio: 219/137;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 768px) {
  .c-detail__gallery img {
    border-radius: 0.8rem;
  }
}
.c-detail__gallery-txt {
  color: #808080;
  font-weight: 500;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .c-detail__gallery-txt {
    font-size: 1.6rem;
  }
}
.c-detail__block {
  margin-bottom: 4.8rem;
}
@media (min-width: 768px) {
  .c-detail__block {
    margin-bottom: 9rem;
  }
}
.c-detail .wp-block-table {
  margin-block: 2.4rem !important;
}
@media (min-width: 768px) {
  .c-detail .wp-block-table {
    margin: 3.2rem -0.4rem !important;
  }
}
@media (max-width: 767px) {
  .c-detail table tr {
    margin-bottom: 0.8rem;
    float: left;
    display: block;
    width: 100%;
  }
}
.c-detail table th,
.c-detail table td {
  border: 0;
}
@media (min-width: 768px) {
  .c-detail table th,
  .c-detail table td {
    padding-block: 0.4rem;
  }
}
@media (max-width: 767px) {
  .c-detail table th,
  .c-detail table td {
    float: left;
    display: block;
    width: 100%;
  }
}
.c-detail table td {
  position: relative;
  font-size: 1.4rem;
  padding: 1.4rem 1.6rem;
  z-index: 1;
}
@media (min-width: 768px) {
  .c-detail table td {
    font-size: 1.6rem;
    padding: 2.2rem 1.6rem;
  }
}
.c-detail table td::after {
  content: "";
  background-color: #EDEDE8;
  border-radius: 0.4rem;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
@media (min-width: 768px) {
  .c-detail table td::after {
    left: 0.4rem;
    right: 0.4rem;
    top: 0.4rem;
    bottom: 0.4rem;
  }
}
.c-detail table td:first-child {
  font-weight: bold;
}
@media (min-width: 768px) {
  .c-detail table td:first-child {
    width: 21rem;
  }
}
@media (max-width: 767px) {
  .c-detail table td:first-child {
    margin-bottom: 0.4rem;
  }
}
.c-detail table td:first-child::after {
  background-color: #E5E5E1;
}
.c-detail .wp-block-buttons {
  margin-top: 2.4rem;
}
@media (min-width: 768px) {
  .c-detail .wp-block-buttons {
    margin-top: 3.2rem;
  }
}

.single-post h3:not(:first-child) {
  margin-top: 8rem;
}

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

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

.fnt-en {
  font-family: "Arvo", serif;
  font-weight: 700;
}

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

.tab-box {
  display: none;
}
.tab-box.is-active {
  display: block;
}

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

.c-wrap {
  overflow: hidden;
  padding-top: 4rem;
  position: relative;
}
@media (min-width: 1200px) {
  .c-wrap {
    padding-top: 17.3rem;
    margin-right: 32rem;
  }
}
.c-wrap:not(.--nobg)::after {
  content: "";
  z-index: -1;
  position: fixed;
  height: 100vh;
  right: 0;
  left: 0;
  top: 0;
  background: url(../images/common/bg_body.png) repeat;
}

.link-hover {
  position: relative;
  background-position: right 100% bottom 0;
  background-image: linear-gradient(#333, #333);
  background-repeat: no-repeat;
  background-size: 100% 0;
}
.link-hover:hover {
  animation: underline_animation 0.5s both;
  background-size: 100% 1px;
}

.c-stick {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .c-stick.abs {
    position: absolute;
    writing-mode: vertical-rl;
    left: -0.8rem;
    top: 1rem;
  }
}
.c-stick:before {
  width: 0.5rem;
  height: 0.6rem;
  content: "";
  background: #1c7aa6;
  border-radius: 50%;
}
.c-stick.red:before {
  transform: rotate(90deg);
  background: #DC4240;
}
.c-stick.yellow:before {
  transform: rotate(90deg);
  background: #EEC261;
}
.c-stick.blue:before {
  transform: rotate(90deg);
}

.c-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-tag {
  color: rgba(51, 51, 51, 0.5);
  font-size: 1.2rem;
  line-height: 1.8;
}
.c-tag span {
  margin-right: 1.2rem;
  display: inline-block;
}

.c-new {
  color: #fff;
  background: #333;
  font-size: 0.8rem;
  transform: rotate(-45deg);
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .c-new {
    width: 4rem;
    height: 4rem;
  }
}
.c-new.close {
  background: #237663;
}
.c-new.--interview {
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  .c-new.--interview {
    font-size: 1rem;
    width: 6rem;
    height: 6rem;
  }
}

.c-sub {
  font-size: 1.4rem;
  line-height: 1.8;
  margin: 1rem 0 0;
}
@media (min-width: 768px) {
  .c-sub {
    margin: 3rem 0 1.8rem;
  }
}

@media (min-width: 768px) {
  .c-cate--row {
    display: flex;
    gap: 3.2rem;
  }
}
.c-cate__ttl {
  display: flex;
  align-items: center;
  font-family: var(--font-en);
  font-weight: bold;
  opacity: 0.5;
  font-size: 1.2rem;
  position: relative;
}
@media (max-width: 767px) {
  .c-cate__ttl {
    margin-bottom: 2.4rem;
  }
}
.c-cate__ttl::after {
  content: "";
  position: absolute;
  border-radius: 2px;
  background-color: var(--cl-body);
  opacity: 0.5;
  width: 2.8rem;
  bottom: -1.2rem;
}
@media (min-width: 768px) {
  .c-cate__ttl::after {
    width: 1px;
    top: 0.3rem;
    bottom: 0.3rem;
    right: -1.6rem;
  }
}
@media (max-width: 767px) {
  .c-cate__ttl::after {
    left: 0;
    height: 1px;
  }
}
.c-cate__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 0.8rem;
}
.c-cate__list:not(:last-child) {
  margin-bottom: 1.3rem;
}
.c-cate__item {
  cursor: pointer;
  border: 1px solid var(--cate-color, #333);
  background: transparent;
  color: var(--cate-color, #333);
  transition: all 0.2s;
  padding: 0.5rem 1.2rem;
  border-radius: 4rem;
}
@media (max-width: 767px) {
  .c-cate__item {
    font-size: 1.2rem;
  }
}
.c-cate__item:not([class*=" --"]).is-active, .c-cate__item:not([class*=" --"]):hover {
  background: var(--cate-color, var(--cl-body));
  color: #fff;
}
.c-cate__item.--cate-all {
  color: #333;
}
.c-cate__item.--cate-all.is-active, .c-cate__item.--cate-all:hover {
  background: #333;
  border-color: #D9D9D4;
  color: #fff;
}
.c-cate__item.--btn-clear {
  display: flex;
  align-items: center;
  opacity: 0.4;
  gap: 0.6rem;
  padding-left: 0.5rem;
}
@media (min-width: 768px) {
  .c-cate__item.--btn-clear {
    gap: 0.7rem;
    padding-left: 0.7rem;
  }
}
.c-cate__item.--btn-clear:hover {
  opacity: 1;
}
.c-cate__item.--btn-clear .close {
  aspect-ratio: 1;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--cl-body);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 1.9rem;
}
@media (min-width: 768px) {
  .c-cate__item.--btn-clear .close {
    width: 2.1rem;
  }
}
.c-cate__item.--btn-clear .close::before, .c-cate__item.--btn-clear .close::after {
  content: "";
  width: 50%;
  height: 1px;
  background-color: var(--cl-body);
  position: absolute;
  border-radius: 2px;
}
.c-cate__item.--btn-clear .close::before {
  transform: rotate(45deg);
}
.c-cate__item.--btn-clear .close::after {
  transform: rotate(-45deg);
}

.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-number);
  font-weight: 600;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .pagination ul {
    font-size: 1.4rem;
  }
}
.pagination .prev a,
.pagination .next a {
  aspect-ratio: 1;
  background-color: var(--cl-body);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
.pagination .prev a:hover,
.pagination .next a:hover {
  opacity: 0.8;
}
.pagination .prev a::before,
.pagination .next a::before {
  content: "";
  background: url(../images/common/icon_arrow_02.svg) no-repeat center/contain;
  position: absolute;
  filter: brightness(0) invert(1);
  width: 1.5rem;
  aspect-ratio: 15/13;
}
.pagination .prev {
  margin-right: 3.3rem;
}
.pagination .prev a::before {
  transform: scaleX(-1);
}
.pagination .next {
  margin-left: 3.3rem;
}
.pagination .page-total {
  display: inline-flex;
  align-items: center;
}
.pagination .page-total::before {
  content: "/";
  font-weight: 300;
  margin-inline: 0.8rem;
  font-size: 2.4rem;
}
@media (min-width: 768px) {
  .pagination .page-total::before {
    font-size: 2rem;
  }
}

.c-overlay {
  position: fixed;
  inset: 0;
  z-index: 4;
  display: none;
  background: rgba(0, 0, 0, 0.25);
}
.c-overlay.is-active {
  display: block;
}

.c-list {
  display: grid;
  gap: 4.8rem;
  margin-block: 5.6rem 3.2rem;
}
@media (min-width: 768px) {
  .c-list {
    margin-block: 8rem 5.5rem;
    gap: 4rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .c-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.c-list__item {
  position: relative;
}
.c-list__item.--list-new::before, .c-list__item.--list-close::before {
  position: absolute;
  z-index: 3;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  color: #fff;
  left: 0;
  top: 0;
  border-radius: 50%;
  font-family: var(--font-en);
  font-weight: bold;
  font-size: 0.8rem;
  transform: rotate(-45deg);
  width: 3.3rem;
}
@media (min-width: 768px) {
  .c-list__item.--list-new::before, .c-list__item.--list-close::before {
    width: 4rem;
  }
}
.c-list__item.--list-new::before {
  content: "new";
  background-color: var(--cl-body);
}
.c-list__item.--list-close::before {
  content: "close";
  background-color: var(--cl-primary);
}
.c-list__item.--list-close .c-list__image::before {
  content: "このイベントは\a終了しました";
  white-space: pre;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.3333333333;
  z-index: 1;
}
.c-list__item.--list-close .c-list__image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 1px;
  top: 1px;
  transform: rotate(33.6479382839deg);
  transform-origin: left;
  background: linear-gradient(to right, #fff 34%, transparent 34%, transparent 74%, #fff 74%);
  z-index: 2;
}
.c-list__item:hover img {
  transform: scale(1.05);
}
.c-list__image {
  aspect-ratio: 314/209;
  position: relative;
  overflow: hidden;
  border-radius: 1.6rem;
}
@media (min-width: 768px) {
  .c-list__image {
    border-radius: 2rem;
  }
}
.c-list__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.c-list__body {
  padding-top: 1.6rem;
}
@media (min-width: 768px) {
  .c-list__body {
    padding: 1.8rem 2.4rem 0;
  }
}
.c-list__name {
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}
@media (min-width: 768px) {
  .c-list__name {
    margin-bottom: 1rem;
  }
}
.c-list__name-item {
  display: table-row;
}
.c-list__name-ttl, .c-list__name-txt {
  display: table-cell;
  padding-block: 0.2rem;
}
.c-list__name-ttl {
  white-space: nowrap;
  padding-right: 1rem;
}
.c-list__name-txt {
  position: relative;
  padding-left: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.c-list__name-txt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  bottom: 0.6rem;
  width: 1px;
  background-color: var(--cl-body);
  opacity: 0.5;
  border-radius: 2px;
}
.c-list__ttl {
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .c-list__ttl {
    font-size: 1.6rem;
  }
}
.c-list__tags {
  opacity: 0.5;
  display: flex;
  align-items: center;
  flex-flow: wrap;
  font-size: 1.2rem;
  gap: 0.6rem 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .c-list__tags {
    gap: 0.5rem 1.2rem;
    margin-bottom: 2rem;
  }
}
.c-list__tags span {
  display: inline-block;
}
.c-list__date {
  font-size: 1.1rem;
  opacity: 0.5;
  font-family: var(--font-number);
  font-weight: bold;
}
.c-list__head {
  display: flex;
  align-items: center;
  flex-flow: wrap;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}
.c-list__cate {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  background-color: var(--cate-color);
  border: 2px solid #D9D9D4;
  transition: all 0.2s;
  padding-inline: 0.7rem;
  border-radius: 2rem;
  color: #fff;
  height: 2.3rem;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .c-list__cate {
    height: 2rem;
    font-size: 1rem;
  }
}

.c-txt {
  font-weight: 500;
  line-height: 2;
}

.p-thanks .c-detail__prepare {
  margin-block: 4.8rem 3.2rem;
}
@media (min-width: 768px) {
  .p-thanks .c-detail__prepare {
    margin-block: min(3.3333333333vw, 48px);
  }
}
.p-thanks .btn--back {
  min-height: 5.6rem;
}

.nopost {
  margin-top: 5.6rem;
}
@media (min-width: 768px) {
  .nopost {
    margin-top: 9.5rem;
  }
}

#loading {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
#loading.show {
  display: flex;
}
#loading .loading-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#loading .loading-content .spinner {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  border: 5px solid #f3f3f3;
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
#loading .loading-content .text {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}