@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: clip;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

body.drawer-open {
  overflow: hidden;
}

/* リキッドレイアウト対応 */
html {
  scrollbar-gutter: stable;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 0.8333333333vw;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

body {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

body.fade-in {
  opacity: 1;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.l-inner-lower {
  max-width: 37.5rem;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner-lower {
    max-width: 78.125rem;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.l-inner {
  max-width: 37.5rem;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 92.75rem;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.p-404 {
  height: 100vh;
  padding-top: 5.5625rem;
  padding-bottom: 6.875rem;
  background: url(../images/common/mv_404_sp.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-404 {
    background: url(../images/common/mv_404.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 11rem;
    padding-bottom: 6rem;
    height: 48rem;
  }
}

.p-404__content {
  border: 3px solid #fff;
  padding-top: 7.25rem;
  padding-bottom: 7.25rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-404__content {
    padding-left: initial;
    padding-right: initial;
  }
}

.p-404__block {
  max-width: 40.625rem;
  margin-inline: auto;
}

.p-404__title-wrapper {
  display: flex;
  align-items: center;
}

.p-404__title {
  color: #363636;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-404__title {
    font-size: 2.5rem;
  }
}

.p-404__number {
  color: rgba(54, 54, 54, 0.15);
  letter-spacing: 0.05em;
  line-height: 1;
  font-size: 4.25rem;
  margin-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-404__number {
    margin-left: 1.375rem;
    font-size: 8rem;
  }
}

.p-404__text-wrapper {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-404__text-wrapper {
    margin-top: 1.5rem;
  }
}

.p-404__text {
  line-height: 1.6;
  font-weight: 400;
  color: #363636;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-404__text {
    font-size: 1.125rem;
  }
}

.p-404__btn-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-404__btn-wrapper {
    margin-top: 1.5rem;
  }
}

.p-404__btn {
  background: #6d6d6d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #6d6d6d;
  border-radius: 2.5rem;
  transition: 0.3s ease-in-out;
  width: 8.75rem;
  padding: 0.375rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-404__btn {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1.375rem;
    padding-right: 0.875rem;
    width: 15.625rem;
  }
}

.p-404__btn-text {
  font-weight: 500;
  color: #fff;
  font-size: 0.625rem;
  transition: 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-404__btn-text {
    letter-spacing: 0.1em;
    font-size: 1rem;
  }
}

.p-404__btn:hover {
  background: #fff;
  transition: 0.3s ease-in-out;
}

.p-404__btn:hover .p-404__text {
  color: #fff;
}

.p-404__btn svg {
  width: 0.9375rem;
  height: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-404__btn svg {
    width: 2rem;
    height: 2rem;
  }
}

.p-404__btn circle,
.p-404__btn path {
  transition: 0.3s ease-in-out;
}

.p-404__btn:hover circle {
  fill: #6d6d6d;
  opacity: 1;
}

.p-404__btn:hover path {
  fill: #fff;
}

.p-404__btn:hover .p-404__btn-text {
  color: #6d6d6d;
}

.test {
  font-size: 3.125rem;
  color: #4fc3e0;
}

.p-test__img {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-test__img {
    margin-top: 3.75rem;
  }
}

.p-test__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.p-access {
  margin-top: 1.875rem;
}

.p-access__panel {
  padding: 1.25rem 0rem 1.875rem;
  padding-bottom: initial;
}
@media screen and (min-width: 768px) {
  .p-access__panel {
    margin-top: 1.875rem;
    padding: 1.25rem 0rem 1.875rem;
  }
}

.p-access__tabs {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-access__tabs {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.p-access__tabs::before {
  position: absolute;
  content: "";
  background: #07ADA7;
  height: 5px;
  bottom: 0rem;
  left: 0;
  right: 0;
  z-index: -1;
}

.p-access__tabLink {
  position: relative;
  display: flex;
  align-items: center;
  background: #07ada7;
  color: #fff;
  text-decoration: none;
  border-top-left-radius: 0.625rem;
  border-top-right-radius: 0.625rem;
  padding-left: 0.9375rem;
  padding-right: 0.125rem;
  height: 2.8125rem;
  border-top: 2px solid #07ADA7;
  border-right: 2px solid #07ADA7;
  border-left: 2px solid #07ADA7;
  border-bottom: 2px solid #07ADA7;
}
@media screen and (min-width: 768px) {
  .p-access__tabLink {
    padding-right: 0.625rem;
    border-bottom: initial;
    border-top: 5px solid #07ADA7;
    border-right: 5px solid #07ADA7;
    border-left: 5px solid #07ADA7;
    flex-direction: column;
    height: 9rem;
    justify-content: center;
    gap: 0.375rem;
  }
}

.p-access__tabLink--active {
  background: #fff;
}

.p-access__tabIcon {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-access__tabIcon {
    margin-left: auto;
    margin-right: auto;
  }
}

.p-access__tabIcon svg,
.p-access__tabIcon img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.p-access__tabIcon--car {
  width: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-access__tabIcon--car {
    width: 4rem;
  }
}

.p-access__tabIcon--bus {
  width: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-access__tabIcon--bus {
    width: 3.5625rem;
  }
}

.p-access__tabIcon--train {
  width: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-access__tabIcon--train {
    width: 3.125rem;
  }
}

.p-access__tabText {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  margin-left: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .p-access__tabText {
    margin-left: initial;
    font-size: 1.625rem;
  }
}

.p-access__tabLink--active .p-access__tabText {
  color: #07ADA7;
}

.p-access__icon {
  transform: rotate(-90deg);
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  width: 2.25rem;
  height: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-access__icon {
    margin-left: initial;
    transform: initial;
    width: 1.75rem;
    height: 1.75rem;
  }
}

.p-access__icon::before {
  position: absolute;
  content: "";
  background: url(../images/access/arrow_white.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: auto;
  aspect-ratio: 28/29;
  object-fit: cover;
  width: 1.125rem;
  right: 0.625rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .p-access__icon::before {
    right: initial;
    top: initial;
    bottom: 0.5rem;
    transform: translate(-50%, 0%);
    width: 1.75rem;
    left: 50%;
  }
}

.p-access__tabLink--active .p-access__icon::before {
  position: absolute;
  content: "";
  background: url(../images/access/arrow_green.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 1.125rem;
  height: auto;
  aspect-ratio: 28/29;
  object-fit: cover;
  right: 0.625rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .p-access__tabLink--active .p-access__icon::before {
    right: initial;
    top: initial;
    bottom: 0.5rem;
    transform: translate(-50%, 0%);
    width: 1.75rem;
    left: 50%;
  }
}

.p-access__route {
  margin-top: 1.25rem;
  mix-blend-mode: difference;
}
@media screen and (min-width: 768px) {
  .p-access__route {
    margin-top: 3.75rem;
  }
}

.p-access__route img {
  width: 100%;
  height: auto;
  display: block;
}

.p-access__google {
  margin-top: 1.9375rem;
}
@media screen and (min-width: 768px) {
  .p-access__google {
    margin-top: 6.25rem;
  }
}

.p-access__google + .p-access__google {
  margin-top: 1.9375rem;
}
@media screen and (min-width: 768px) {
  .p-access__google + .p-access__google {
    margin-top: 5rem;
  }
}

.p-access__googleTitle {
  display: flex;
  align-items: center;
  background: #f3f5f7;
  color: #1e59bf;
  font-weight: 700;
  position: relative;
  font-size: 1.0625rem;
  padding-left: 0.9375rem;
  padding: 0.375rem 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-access__googleTitle {
    padding: 0 1.25rem;
    height: 3.125rem;
    padding-left: 1.6875rem;
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .fz24 {
    font-size: 1.5rem;
  }
}

.p-access__googleTitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: #1E59BF;
  width: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-access__googleTitle::before {
    width: 0.625rem;
  }
}

.p-access__map {
  width: 100%;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-access__map {
    margin-top: 1.875rem;
  }
}

.p-access__map iframe {
  object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 350/269;
}
@media screen and (min-width: 768px) {
  .p-access__map iframe {
    aspect-ratio: 1200/800;
  }
}

.p-access__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-access__actions {
    flex-wrap: wrap;
    margin-top: 2rem;
    gap: 1.875rem;
  }
}

.p-access__action {
  appearance: none;
  border: 1px solid rgba(3, 112, 187, 0.5);
  background: #fff;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  text-decoration: none;
  cursor: pointer;
  padding-left: 1.0625rem;
  padding-right: 0.375rem;
  height: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-access__action {
    width: 13.3125rem;
    height: 3.125rem;
    padding-left: 1.25rem;
    padding-right: 0.5rem;
  }
}

.p-access__actionIcon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-access__actionIcon {
    width: 2.25rem;
    height: 2.25rem;
  }
}

.p-access__actionText {
  color: #000000;
  line-height: 1;
  font-size: 0.75rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-access__actionText {
    font-size: 1.0625rem;
    font-weight: 700;
  }
}

@media (any-hover: hover) {
  .p-access__tabLink:hover,
  .p-access__action:hover {
    opacity: 0.8;
  }
}
.p-access__title {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-access__title {
    margin-top: 3.625rem;
  }
}

.p-access__title.c-lower-section-title {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-access__title.c-lower-section-title {
    font-size: 2.875rem;
  }
}

.p-access__train1 {
  max-width: 47.75rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-access__train1 {
    margin-top: 2.5rem;
  }
}

.p-access__train2 {
  max-width: 50.625rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-access__train2 {
    margin-top: 2.5rem;
  }
}

.p-access__train1 img,
.p-access__train2 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.p-access__station-box {
  border: 5px solid rgba(7, 173, 167, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.9375rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-access__station-box {
    padding-top: 2.8125rem;
    padding-bottom: 2.8125rem;
    padding-right: initial;
    padding-left: initial;
    flex-direction: row;
    gap: 1.8125rem;
    margin-top: 4.5rem;
  }
}

.p-access__station-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  border: 1px solid rgba(3, 112, 187, 0.5);
  border-radius: 9999px;
  height: 2.3125rem;
  padding-left: 0.5rem;
  padding-right: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-access__station-link {
    padding-right: 0.5rem;
    padding-left: 1.375rem;
    height: 3.125rem;
  }
}

.p-access__station-title {
  font-weight: 600;
  color: #000;
  font-size: 0.75rem;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .p-access__station-title {
    font-size: 1.0625rem;
  }
}

.p-access__station-icon {
  width: 1.625rem;
  height: 1.625rem;
}
@media screen and (min-width: 768px) {
  .p-access__station-icon {
    width: 2.25rem;
    height: 2.25rem;
  }
}

.p-access__grid {
  display: grid;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-access__grid {
    column-gap: 3.75rem;
    row-gap: 1.3125rem;
    margin-top: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-access__grid--season {
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-access__grid--season {
    margin-top: 1.875rem;
  }
}

.p-access__grid-link {
  display: flex;
  gap: 0.4375rem;
  border-bottom: 1px solid rgba(112, 112, 112, 0.25);
  padding-top: 0.8125rem;
  padding-bottom: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-access__grid-link {
    padding-top: initial;
    padding-bottom: 1.25rem;
  }
}

.p-access__grid-arrow {
  width: 0.5625rem;
  height: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-access__grid-arrow {
    width: 0.625rem;
    height: 1rem;
  }
}

.p-access__grid-arrow img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.p-access__grid-text {
  font-weight: 400;
  color: #000;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-access__grid-text {
    font-size: 1rem;
  }
}

.p-access__h3 {
  font-weight: 700;
  color: #1E59BF;
  margin-top: 1.5rem;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-access__h3 {
    font-size: 1.375rem;
    margin-top: 2.5rem;
  }
}

.p-access__car-img {
  max-width: 69.5rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-access__car-img {
    margin-top: 2.5rem;
  }
}

.p-access__car-img2 {
  max-width: 68.8125rem;
  margin-left: auto;
  margin-right: auto;
}

.p-access__car-img4 {
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
}

.p-access__car-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.p-ad {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-ad {
    padding-top: 8.875rem;
    padding-bottom: 7.5rem;
  }
}

.p-ad__lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-ad__lists {
    gap: 2.375rem;
    grid-template-columns: repeat(5, 1fr);
  }
}

.p-ad__link {
  display: block;
}

.p-ad__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.p-ad__btn-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-ad__btn-wrapper {
    margin-top: 1.5rem;
  }
}

.p-ad__btn {
  display: flex;
  gap: 0.625rem;
  align-items: center;
}

.p-ad__btn-text {
  color: #000;
  font-weight: 600;
  line-height: 2.25;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-ad__btn-text {
    font-size: 1rem;
  }
}

.p-ad__svg {
  width: 1.875rem;
  height: 1.875rem;
}

.p-ad__lists > *:nth-child(n+5) {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-ad__lists > *:nth-child(n+5) {
    display: block;
  }
}

.p-banner {
  position: relative;
  padding-top: 1.5625rem;
  padding-bottom: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-banner {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.p-banner::before {
  position: absolute;
  content: "";
  background: linear-gradient(to right, #26d0ce, #2c77bc);
  top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: -1;
  height: 100%;
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .p-banner::before {
    border-top-right-radius: 3.125rem;
    width: calc(100vw - 6.25rem);
  }
}

.p-banner__inner {
  max-width: 100rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  overflow: clip;
}

.p-banner__content {
  max-width: 97.9375rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.p-banner__link {
  display: block;
}

.p-banner__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.slider-banners {
  position: relative;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  overflow: visible !important;
}

.slider-banners .swiper-button-prev {
  position: absolute;
  left: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.125rem;
  height: 2.125rem;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .slider-banners .swiper-button-prev {
    width: 3.375rem;
    height: 3.375rem;
  }
}

.slider-banners .swiper-button-next {
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 2.125rem;
  height: 2.125rem;
}
@media screen and (min-width: 768px) {
  .slider-banners .swiper-button-next {
    width: 3.375rem;
    height: 3.375rem;
  }
}

.p-banner__arrow {
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.p-banner__arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-drawer-icon {
  background: transparent;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-drawer-icon {
    width: 6.25rem;
    height: 6.25rem;
  }
}

.p-drawer-icon.is-active {
  position: relative;
  z-index: 10001;
  background: transparent;
  width: 3.125rem;
  height: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-drawer-icon.is-active {
    width: 6.25rem;
    height: 6.25rem;
  }
}
.p-drawer-icon.is-active .p-drawer-icon__text {
  margin-top: 1.75rem;
}
.p-drawer-icon.is-active .p-drawer-icon__bar1 {
  background: white;
  position: absolute;
  transform: translate(-50%, -50%) rotate(-30deg);
  top: 50%;
  left: 50%;
  margin-left: 0;
  width: 2rem;
}
@media screen and (min-width: 768px) {
  .p-drawer-icon.is-active .p-drawer-icon__bar1 {
    width: 3.125rem;
  }
}
.p-drawer-icon.is-active .p-drawer-icon__bar2 {
  opacity: 0;
}
.p-drawer-icon.is-active .p-drawer-icon__bar3 {
  background: white;
  position: absolute;
  transform: translate(-50%, -50%) rotate(30deg);
  top: 50%;
  left: 50%;
  width: 2rem;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .p-drawer-icon.is-active .p-drawer-icon__bar3 {
    width: 3.125rem;
  }
}
.p-drawer-icon.is-active .p-drawer-icon__text {
  color: #fff;
}

.p-drawer-icon__bars {
  position: relative;
  width: 2.5rem;
  height: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .p-drawer-icon__bars {
    gap: 0.5rem;
    width: 3.125rem;
    height: 3.75rem;
  }
}

.p-drawer-icon__text {
  color: #0370bb;
  font-weight: 500;
  text-align: center;
  font-family: "Sen", sans-serif;
  line-height: 1;
  margin-top: 0.125rem;
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-drawer-icon__text {
    font-size: 0.9375rem;
    margin-top: 0.375rem;
  }
}

.p-drawer-icon__bar1 {
  height: 3px;
  background: #0370bb;
  transition: 0.5s;
  width: 1.25rem;
  display: block;
  margin-left: -0.5rem;
}
@media screen and (min-width: 768px) {
  .p-drawer-icon__bar1 {
    width: 1.875rem;
    margin-left: -1rem;
  }
}

.p-drawer-icon__bar2 {
  height: 3px;
  background: #0370bb;
  transition: 0.5s;
  width: 1.25rem;
  display: block;
  margin-left: initial;
}
@media screen and (min-width: 768px) {
  .p-drawer-icon__bar2 {
    width: 1.875rem;
  }
}

.p-drawer-icon__bar3 {
  height: 3px;
  background: #0370bb;
  transition: 0.5s;
  width: 1.25rem;
  display: block;
  margin-left: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-drawer-icon__bar3 {
    width: 1.875rem;
    margin-left: 1rem;
  }
}

.p-drawer-content {
  width: 100%;
  height: 100dvh;
  position: fixed;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(to right, #26d0ce 0%, #299ec4 25%, #1e59bf 100%);
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  padding-top: 0.75rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  overflow-y: auto;
}
@media screen and (min-width: 768px) {
  .p-drawer-content {
    padding-top: 0.5rem;
    padding-left: initial;
    padding-right: initial;
    padding-bottom: initial;
  }
}

.p-drawer-content.is-active {
  visibility: visible;
  opacity: 1;
}

.p-drawer-content__items {
  transition: 0.3s;
  height: 100dvh;
}
@media screen and (min-width: 768px) {
  .p-drawer-content__items {
    max-width: 62.5rem;
    width: 100%;
    padding-top: 12.625rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.p-drawer-content__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
@media screen and (min-width: 768px) {
  .p-drawer-content__link {
    border-bottom: initial;
    display: block;
    padding-top: initial;
    padding-bottom: initial;
  }
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .p-drawer-content__lists {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5.9375rem;
  }
}

.p-drawer-content__icon {
  width: 2.75rem;
}
@media screen and (min-width: 768px) {
  .p-drawer-content__icon {
    width: 7.8125rem;
  }
}

.p-drawer-content__icon img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.p-drawer-content__detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-drawer-content__detail {
    padding-top: 0.75rem;
    display: block;
  }
}

.p-drawer-content__detail-text {
  color: #fff;
  font-weight: 500;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-drawer-content__detail-text {
    line-height: 1.7;
    font-size: 1.875rem;
  }
}

.p-drawer-content__detail-en {
  font-family: "Corinthia", cursive;
  color: #fff;
  font-weight: 700;
  font-size: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-drawer-content__detail-en {
    font-size: 1.25rem;
    line-height: 1.7;
  }
}

.p-drawer-content__middle {
  width: 100%;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-drawer-content__middle {
    margin-top: 6.625rem;
  }
}

.p-drawer-content__middle-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  column-gap: 1.375rem;
  row-gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-drawer-content__middle-links {
    row-gap: 2.625rem;
    column-gap: 2.5rem;
  }
}

.p-drawer-content__middle-link-link {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 0.625rem;
  gap: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .p-drawer-content__middle-link-link {
    gap: 0.75rem;
    padding-bottom: 1.25rem;
  }
}

.p-drawer-content__middle-linkIcon {
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-drawer-content__middle-linkIcon {
    width: 1.875rem;
    height: 1.875rem;
  }
}

.p-drawer-content__middle-linkText {
  font-weight: 600;
  color: #fff;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-drawer-content__middle-linkText {
    font-size: 1.5rem;
  }
}

.p-drawer-content__bottom-links {
  width: 100%;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-drawer-content__bottom-links {
    margin-top: 3.75rem;
  }
}

.p-drawer-content__bottom-links-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.375rem;
  row-gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-drawer-content__bottom-links-list {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5625rem;
  }
}

.p-drawer-content__bottom-links-link {
  padding-bottom: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  display: block;
}

.p-drawer-content__bottom-links-text {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 500;
}

.p-drawer-content__bottom-sns {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-drawer-content__bottom-sns {
    margin-top: 8.0625rem;
  }
}

.p-drawer-content__bottom-sns-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .p-drawer-content__bottom-sns-list {
    gap: 2.3125rem;
    padding-bottom: initial;
  }
}

.p-drawer-content__bottom-sns-link {
  display: block;
  width: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-drawer-content__bottom-sns-link {
    width: 2.625rem;
  }
}

.p-drawer-content__bottom-sns-link--instagram {
  width: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-drawer-content__bottom-sns-link--instagram {
    width: 2.375rem;
  }
}

.p-drawer-content__bottom-sns-link--x {
  width: 1.625rem;
}
@media screen and (min-width: 768px) {
  .p-drawer-content__bottom-sns-link--x {
    width: 2.4375rem;
  }
}

.p-event {
  overflow-x: clip;
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-event {
    padding-top: 6.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-event__content {
    display: flex;
    gap: 4.0625rem;
  }
}

.p-event__left {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-event__left {
    display: block;
    white-space: nowrap;
  }
}

.p-event__title .c-section-title {
  text-align-last: left;
}

.p-event__btn-wrapper {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-event__btn-wrapper {
    margin-top: 3.25rem;
    display: block;
  }
}

.p-event__btn-wrapper--sp {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-event__btn-wrapper--sp {
    display: none;
  }
}

.p-event__slider-btn {
  display: flex;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-event__slider-btn {
    margin-top: 2.75rem;
  }
}

.p-event__slider-btn .swiper-button-prev,
.p-event__slider-btn .swiper-button-next {
  width: 2.625rem;
  height: 2.625rem;
}
@media screen and (min-width: 768px) {
  .p-event__slider-btn .swiper-button-prev,
  .p-event__slider-btn .swiper-button-next {
    width: 3.375rem;
    height: 3.375rem;
  }
}

.p-event__slider-wrapper {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-event__slider-wrapper {
    margin-top: initial;
  }
}

.p-event__slider {
  margin-right: calc(50% - 50vw);
}

.p-event__slider .swiper {
  padding-bottom: 1.5rem;
}

/* .p-event__slider .swiper-wrapper {
  width: 90vw;
} */
.p-event__slider .swiper-wrapper {
  width: auto;
  /* or 削除 */
}

/* 幅を制御したいならこっち */
.p-event__slider .swiper {
  width: 90vw;
}

.p-event__slider .swiper-slide {
  height: auto;
}

.p-event__slider-link {
  filter: drop-shadow(3px 3px 0 rgb(9, 115, 206));
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: filter;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.p-event__img img {
  aspect-ratio: 370/523;
  object-fit: cover;
  width: 100%;
  height: auto;
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
}

.p-event__detail {
  background: #f2f7fb;
  border-bottom-left-radius: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  padding-top: 0.8125rem;
  padding-bottom: 1.25rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .p-event__detail {
    padding: 1.5625rem 1.25rem;
  }
}

.p-event__detail--event {
  padding-top: 1.875rem;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-event__detail--event {
    padding-top: 1.25rem;
    padding-bottom: 1.875rem;
    padding-left: 1.875rem;
    padding-right: 1.875rem;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}

.p-event__slider-title {
  text-align: center;
  color: #1e59bf;
  font-weight: 600;
  font-size: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .p-event__slider-title {
    font-size: 1.5625rem;
  }
}

.p-event__slider-title--event {
  margin-bottom: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-event__slider-title--event {
    margin-bottom: initial;
    font-size: 1.375rem;
  }
}

.p-event__slider-detail {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-event__slider-detail {
    margin-top: 1.3125rem;
  }
}

.p-event__slider-detail--event {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.p-event__slider-block + .p-event__slider-block {
  margin-top: 0.9375rem;
}

.p-event__slider-sub {
  flex-shrink: 0;
  font-weight: 700;
  color: #1e59bf;
  line-height: 2.25;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-event__slider-sub {
    font-size: 1rem;
  }
}

.p-event__slider-text {
  color: #000000;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.8571428571;
  margin-top: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .p-event__slider-text {
    line-height: 1.625;
    margin-top: 0.3125rem;
    font-size: 1rem;
  }
}

.p-event__slider-block--event {
  display: flex;
  gap: 0.625rem;
}

.p-event__slider-sub--event {
  color: #fff;
  font-weight: 600;
  line-height: 2;
  background: #1E59BF;
  border-radius: 0.1875rem;
  height: fit-content;
  font-size: 1rem;
  padding: 0.1875rem 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-event__slider-sub--event {
    font-size: 1.125rem;
  }
}

.p-event__slider-text--event {
  font-weight: 500;
  line-height: 2;
  color: #000;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-event__slider-text--event {
    font-size: 1.125rem;
  }
}

.p-event__slider-btn--event {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-event__slider-block--event + .p-event__slider-block--event {
    margin-top: 1.25rem;
  }
}

.mt60 {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .mt60 {
    margin-top: 2.75rem !important;
  }
}

.p-feature-archive__body {
  margin-top: 1.25rem;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-feature-archive__body {
    margin-top: 3.125rem;
    padding-bottom: 7.5rem;
  }
}

.p-feature-archive__list {
  margin-top: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .p-feature-archive__list {
    margin-top: 3.75rem;
    gap: 6.25rem;
  }
}

.p-feature-archive__card {
  display: block;
  position: relative;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.p-feature-archive__card:hover {
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .p-feature-archive__card {
    display: flex;
    align-items: stretch;
  }
}

@media screen and (min-width: 768px) {
  .p-feature-archive__item:nth-child(even) .p-feature-archive__card {
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  .p-feature-archive__item:nth-child(even) .p-feature-archive__card-body {
    right: auto;
    left: 0;
    margin-right: 0;
    margin-left: -0.5rem;
  }
}

.p-feature-archive__card-img {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .p-feature-archive__card-img {
    margin: 0;
    width: 75%;
    flex-shrink: 0;
  }
}

.p-feature-archive__card-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 390/254;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-feature-archive__card-img img {
    aspect-ratio: 900/587;
  }
}

.p-feature-archive__card-body {
  background: linear-gradient(135deg, #26d0ce 0%, #2c77bc 100%);
  padding: 1.25rem;
  margin-inline: -0.5rem;
  margin-top: -2.8125rem;
  position: relative;
  z-index: 1;
  border-radius: 0.9375rem 0.9375rem 0 0;
  border: 0.5rem solid #fff;
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .p-feature-archive__card-body {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 38rem;
    padding: 2.125rem 0.9375rem 0.9375rem 1.875rem;
    margin: 0;
    border-radius: 1.25rem 1.25rem 0 0;
    border: 0.5rem solid #fff;
    border-bottom: 0.5rem solid #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: -0.5rem;
  }
}

.p-feature-archive__card-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-feature-archive__card-title {
    font-size: 1.875rem;
    line-height: 1.1333333333;
  }
}

.p-feature-archive__card-text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8571428571;
  color: #fff;
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .p-feature-archive__card-text {
    margin-top: 1.1875rem;
    font-size: 1rem;
    line-height: 1.875;
  }
}

.p-feature-archive__card-btn {
  margin-top: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-feature-archive__card-btn {
    margin-top: 2.75rem;
    justify-content: flex-end;
  }
}

.p-feature-archive__card-btn-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  border: 0.0625rem solid #fff;
  border-radius: 9999px;
  background: transparent;
  height: 2.75rem;
  padding-left: 1.375rem;
  padding-right: 0.3125rem;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-feature-archive__card-btn-inner {
    padding-left: 1.125rem;
    padding-right: 0.75rem;
  }
}
.p-feature-archive__card-btn-inner:hover {
  opacity: 0.7;
}

.p-feature-archive__card-btn-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

.p-feature-archive__card-btn-icon {
  width: 1.875rem;
  height: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.p-feature-archive__card-btn-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.p-feature-archive__pagination {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-feature-archive__pagination {
    margin-top: 5rem;
  }
}

.p-feature-archive__empty {
  text-align: center;
  font-size: 1rem;
  color: #000000;
  margin-top: 3.125rem;
}

.p-footer {
  overflow-x: clip;
}

.p-footer__content {
  position: relative;
  padding-top: 3.375rem;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-footer__content {
    padding-top: 5.625rem;
  }
}

.p-footer__content::before {
  position: absolute;
  content: "";
  background: url(../images/common/footer_bg_sp.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: -1;
  height: 100%;
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .p-footer__content::before {
    height: auto;
    width: calc(100vw - 6.25rem);
    background: url(../images/common/footer_bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    aspect-ratio: 1820/585;
    object-fit: cover;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__row {
    display: flex;
    justify-content: space-between;
  }
}

.p-footer__home {
  display: inline-block;
  width: 20.625rem;
}
@media screen and (min-width: 768px) {
  .p-footer__home {
    width: 28.9375rem;
  }
}

.p-footer__home img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.p-footer__btn-wrapper {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .p-footer__btn-wrapper {
    flex-direction: row;
    justify-content: initial;
    gap: 1.875rem;
    margin-top: 21.5rem;
  }
}

.p-footer__btn {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  background: #fff;
  border: 1px solid rgba(3, 112, 187, 0.5);
  border-radius: 9999px;
  justify-content: center;
  width: 9.8125rem;
  height: 2.75rem;
}
.p-footer__btn-text {
  color: #000000;
  font-size: 0.9375rem;
  font-weight: 600;
}

.p-footer__svg {
  width: 1.875rem;
  height: 1.875rem;
}

.p-footer__sns-wrapper {
  border: 1px solid rgba(3, 112, 187, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 9999px;
  height: 2.75rem;
  width: 9.75rem;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-footer__sns-wrapper {
    gap: 1.25rem;
  }
}

.p-footer__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.625rem;
  height: 1.625rem;
}

.p-footer__sns-link svg {
  width: 100%;
  height: 100%;
  display: block; /* Safariの謎の隙間/潰れ対策で入れとくと安定 */
}

.p-footer__blocks {
  margin-top: 2.375rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-footer__blocks {
    margin-top: initial;
    display: flex;
    gap: 5.8125rem;
  }
}

.p-footer__list + .p-footer__list {
  margin-top: 1.25rem;
}

.p-footer__link {
  color: #fff;
  font-weight: 600;
  line-height: 1.8888888889;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-footer__link {
    font-size: 1.125rem;
  }
}

.p-footer__sub-lists {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-footer__sub-lists {
    margin-top: 1.25rem;
  }
}

.p-footer__sub-link {
  padding-left: 1.625rem;
  color: #fff;
  line-height: 2;
  font-weight: 500;
  position: relative;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-footer__sub-link {
    font-size: 1.0625rem;
  }
}

.p-footer__sub-link::before {
  position: absolute;
  content: "";
  background: #fff;
  height: 1px;
  width: 1.0625rem;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.p-footer__small-block {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-footer__small-block {
    display: initial;
    width: initial;
  }
}

.p-footer__small-block--sp {
  display: block;
  margin-top: 2.125rem;
}
@media screen and (min-width: 768px) {
  .p-footer__small-block--sp {
    display: none;
  }
}

.p-footer__small-lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 10px;
  column-gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-footer__small-lists {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__small-lists + .p-footer__small-lists {
    margin-top: 1.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__small-list + .p-footer__small-list {
    margin-top: 1.5625rem;
  }
}

.p-footer__small-link {
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 2.2666666667;
}

.p-footer__small {
  background: #fff;
  padding-left: 1.375rem;
  padding-top: 0.625rem;
  padding-bottom: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-footer__small {
    padding-left: 3.125rem;
    padding-top: 1.8125rem;
    padding-bottom: 1.8125rem;
  }
}

.p-footer__small small {
  font-weight: 500;
  color: #000;
  font-size: 0.5625rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-footer__small small {
    line-height: 4.1666666667;
    font-size: 0.75rem;
  }
}

.p-header {
  position: relative;
}

.p-header__inner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.p-header__content {
  display: flex;
}

.p-header__logo {
  position: absolute;
  z-index: 99999;
  top: 0;
  left: 0;
}

.p-header__logo-link {
  display: inline-block;
  width: 5.25rem;
}
@media screen and (min-width: 768px) {
  .p-header__logo-link {
    width: 15rem;
  }
}

.p-header__logo-link img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.p-header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    display: block;
    margin-left: 47.75rem;
    margin-top: 2.3125rem;
  }
}

.p-header__lists {
  display: flex;
  align-items: center;
}

.p-header__link {
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 500;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
}

.p-header__list:first-child .p-header__link {
  padding-left: initial;
}

.p-header__list:last-child .p-header__link {
  border-right: none;
}

.p-home-topics__box {
  position: relative;
  z-index: 1;
}

.p-home-topics {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-home-topics {
    padding-bottom: 7.5rem;
    padding-top: 7.5rem;
  }
}

.p-home-topics__top img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.p-home-topics__title {
  text-align: center;
}

.p-home-topics__block {
  margin-top: 2.5rem;
}

.p-home-topics__row {
  position: relative;
  border-bottom: 1px dotted #222;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-home-topics__row {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    display: flex;
    align-items: center;
  }
}

.p-home-topics__row:first-child {
  border-top: 1px dotted #222;
}

.p-home-topics__metaBlock {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-home-topics__metaBlock {
    width: 15rem;
  }
}

.p-home-topics__time {
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #222;
}

.p-home-topics__category {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fff;
  background: #ed1c24;
  border-radius: 0.25rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-home-topics__blockTitle {
  letter-spacing: 0.05em;
  line-height: 1.6111111111;
  color: #222;
  text-decoration: underline;
  font-size: 0.875rem;
  width: 100%;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-home-topics__blockTitle {
    margin-top: initial;
    font-size: 1.125rem;
    width: calc(100% - 12.5rem);
  }
}

.p-home-topics__btn-wrapper {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-home-topics__btn-wrapper {
    margin-top: 3.75rem;
  }
}

.p-home-topics__btn {
  width: 15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 3.75rem;
  background: #222;
  border-radius: 9999px;
}

.p-home-topics__icon {
  position: absolute;
  content: "";
  width: 1.5rem;
  height: auto;
  aspect-ratio: 12/24;
  object-fit: cover;
  top: 54%;
  left: 0.375rem;
  transform: translateY(-50%);
}

.p-home-topics__btn-text {
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-home-topics__btn-text {
    font-size: 1.125rem;
  }
}

.p-home-topics__icon--right {
  right: 0.375rem;
  left: initial;
}

.p-home-topics__pagination {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-home-topics__pagination {
    margin-top: 5rem;
  }
}

.p-home-topics__lists {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-home-topics__lists {
    gap: 0.875rem;
  }
}

.p-home-topics__pagination-link {
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #222;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #222;
  transition: 0.3s ease-in-out;
}

.p-home-topics__pagination-link.current {
  background: #ed1c24;
  color: #fff;
  border: 1px solid #ed1c24;
}

.p-instagram {
  overflow-x: clip;
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-instagram {
    padding-top: 11.875rem;
  }
}
.p-instagram .list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-instagram .list {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}
.p-instagram .list::before {
  position: absolute;
  content: "";
  background: #1e59bf;
  width: 100vw;
  height: 0.3125rem;
  bottom: 0rem;
  z-index: -1;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-instagram .list button {
    padding: 10px 24px;
    border-top: 0.3125rem solid #1e59bf;
    border-bottom: none;
    border-left: 0.3125rem solid #1e59bf;
    border-right: 0.3125rem solid #1e59bf;
    border-top-left-radius: 1.5625rem;
    border-top-right-radius: 1.5625rem;
    font-size: 1.875rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    height: 5.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-instagram .list button::before {
    display: none;
  }
}
.p-instagram .list-wrapper {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-instagram .list-wrapper {
    padding-left: 3.125rem;
    padding-right: 3.125rem;
  }
}
.p-instagram .list-wrapper ul {
  gap: 1.25rem !important;
}
.p-instagram .list-wrapper ul li > div {
  gap: 0.625rem;
}
.p-instagram .list-wrapper ul li .PostCard__thumbnail-area {
  overflow: hidden;
  border-radius: 0.9375rem;
  border: 3px solid #0973ce;
}
@media screen and (min-width: 768px) {
  .p-instagram .list-wrapper ul li .PostCard__thumbnail-area {
    border-radius: 1.25rem;
  }
}
.p-instagram .list-wrapper ul li .PostCard__header-area {
  padding-inline: 0;
}
.p-instagram .list-wrapper ul li .PostHeader__account-name-area > span {
  color: #1e59bf;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-instagram .list-wrapper ul li .PostHeader__account-name-area > span {
    font-size: 1.25rem;
  }
}
.p-instagram .list-wrapper ul li .PostHeader__posted-at-area {
  color: rgba(0, 0, 0, 0.6);
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-instagram .list-wrapper ul li .PostHeader__posted-at-area {
    font-size: 1rem;
  }
}
.p-instagram .list-wrapper ul li .PostCard__caption-area {
  padding-inline: 0;
}
.p-instagram .list-wrapper ul li .PostCard__caption-area p {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1.6666666667;
  color: #000000;
  font-size: 0.75rem;
  padding-right: 0;
}
@media screen and (min-width: 768px) {
  .p-instagram .list-wrapper ul li .PostCard__caption-area p {
    font-size: 1.125rem;
  }
}
.p-instagram button[data-umami-action=showmore] {
  display: inline-flex;
  align-items: center;
  gap: 0.9375rem;
  border: 1px solid #0370bb;
  border-radius: 9999px;
  padding-left: 1.5625rem;
  padding-top: 0.4375rem;
  padding-bottom: 0.4375rem;
  padding-right: 1.5625rem;
  transition: 0.3s ease-in-out;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #000;
  background-color: transparent !important;
  height: auto;
  max-width: fit-content;
  width: fit-content;
}

.p-instagram__content {
  width: 100%;
}

.p-instagram__title {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-instagram__title {
    gap: 0.75rem;
  }
}

.p-instagram__title .c-section-title {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.p-instagram__icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-instagram__icon {
    margin-top: 0.5rem;
    width: 3.5rem;
    height: 3.5rem;
  }
}

.p-instagram__icon img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.p-instagram__btn-wrapper {
  margin-top: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-model-course-archive__body {
  margin-top: 1.25rem;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-model-course-archive__body {
    margin-top: 3.125rem;
    padding-bottom: 7.5rem;
  }
}

.p-model-course-archive__list {
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-model-course-archive__list {
    margin-top: 3.75rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.75rem;
  }
}

.p-model-course-archive__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  background: #fff;
  border-right: 0.1875rem solid #1e59bf;
  border-bottom: 0.1875rem solid #1e59bf;
  border-radius: 1.25rem;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
.p-model-course-archive__card:hover {
  opacity: 0.8;
}

.p-model-course-archive__card-img {
  overflow: hidden;
}

.p-model-course-archive__card-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 350/256;
  object-fit: cover;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-model-course-archive__card-img img {
    aspect-ratio: 570/380;
  }
}
.p-model-course-archive__card:hover .p-model-course-archive__card-img img {
  transform: scale(1.05);
}

.p-model-course-archive__card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  background-color: #f2f7fb;
  padding: 1.25rem 1.25rem 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-model-course-archive__card-body {
    padding: 1.25rem 1.5625rem 1.875rem;
  }
}

.p-model-course-archive__card-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
  color: #1e59bf;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-model-course-archive__card-title {
    font-size: 1.625rem;
    line-height: 1.6923076923;
  }
}

.p-model-course-archive__card-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0rem;
  margin-top: 1.25rem;
  padding: 0.375rem 1.25rem;
  background-color: #fff;
  border-radius: 0.625rem;
  border: 2px solid rgba(3, 112, 187, 0.5);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-model-course-archive__card-meta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.625rem 1.5rem;
    padding: 0.375rem 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .p-model-course-archive__card-meta {
    padding: 0.375rem 1.6842105263vw;
  }
}
@media screen and (min-width: 1900px) {
  .p-model-course-archive__card-meta {
    padding: 0.375rem 2rem;
  }
}

.p-model-course-archive__card-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.p-model-course-archive__card-meta-icon {
  width: 1.453125rem;
  height: 1.453125rem;
  flex-shrink: 0;
  background-color: #1e59bf;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.p-model-course-archive__card-meta-icon--clock {
  mask-image: url("../images/common/clock.svg");
  -webkit-mask-image: url("../images/common/clock.svg");
}
.p-model-course-archive__card-meta-icon--transport {
  mask-image: url("../images/common/transport.svg");
  -webkit-mask-image: url("../images/common/transport.svg");
}

.p-model-course-archive__card-meta-icon.p-model-course-archive__card-meta-icon--transport {
  width: 0.93875rem;
  height: 1.5rem;
}

.p-model-course-archive__card-meta-label {
  font-size: 1rem;
  line-height: 2.25;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .p-model-course-archive__card-meta-label {
    font-size: 1.125rem;
    line-height: 2;
  }
}

.p-model-course-archive__card-meta-text {
  font-size: 1rem;
  line-height: 2.25;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .p-model-course-archive__card-meta-text {
    font-size: 1.125rem;
    line-height: 2;
  }
}

.p-model-course-archive__card-text {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.7333333333;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .p-model-course-archive__card-text {
    margin-top: 1.125rem;
    font-size: 1.125rem;
    line-height: 2;
  }
}

.p-model-course-archive__card-btn {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-model-course-archive__card-btn {
    margin-top: 1.5rem;
  }
}

.p-model-course-archive__pagination {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-model-course-archive__pagination {
    margin-top: 5rem;
  }
}

.p-model-course-archive__empty {
  text-align: center;
  font-size: 1rem;
  color: #000000;
  margin-top: 3.125rem;
}

.p-model {
  position: relative;
  z-index: 2;
}

.p-model + .p-model {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-model + .p-model {
    margin-top: 7.5625rem;
  }
}

.p-model__title {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-model__title {
    justify-content: space-between;
  }
}

.p-model__grid {
  display: grid;
  gap: 1.875rem;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .p-model__grid {
    margin-top: 2.75rem;
    column-gap: 3.375rem;
    row-gap: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-model__grid-item {
  display: block;
  filter: drop-shadow(3px 3px 0 rgb(9, 115, 206));
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: filter;
}
@media screen and (min-width: 768px) {
  .p-model__grid-item {
    display: flex;
    align-items: center;
    height: 100%;
  }
}

.p-model__grid-img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-model__grid-img {
    max-width: 21.5625rem;
    height: 100%;
  }
}

.p-model__grid-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 350/234;
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-model__grid-img img {
    border-top-left-radius: 1.875rem;
    border-top-right-radius: initial;
    border-bottom-left-radius: 1.875rem;
    aspect-ratio: 345/280;
  }
}

.p-model__detail {
  background: #f2f7fb;
  display: flex;
  flex-direction: column;
  border-bottom-right-radius: 1.25rem;
  border-bottom-left-radius: 1.25rem;
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-model__detail {
    flex: 1;
    height: 100%;
    justify-content: center;
    padding: 1.8125rem;
    border-bottom-left-radius: initial;
    border-top-right-radius: 1.875rem;
    border-bottom-right-radius: 1.875rem;
  }
}

.p-model__detail-title {
  font-weight: 600;
  color: #1e59bf;
  line-height: 1.5384615385;
  font-size: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .p-model__detail-title {
    font-size: 1.625rem;
  }
}

.p-model__detail-text {
  font-size: 1rem;
  line-height: 1.625;
  font-weight: 400;
  color: #000000;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-model__detail-text {
    margin-top: 1.0625rem;
  }
}

.p-model__btn-wrapper {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-model__btn-wrapper {
    display: block;
  }
}

.p-model__btn-wrapper--sp {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-model__btn-wrapper--sp {
    display: none;
  }
}

.p-mv {
  padding-bottom: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-mv {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-mv .swiper {
    padding-bottom: 1.5625rem;
  }
}
.p-mv .swiper-slide {
  background-color: #fff;
}

.p-mv__img {
  width: calc(100% - 3.125rem);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-mv__img {
    width: calc(100% - 6.25rem);
  }
}

.p-mv__img img {
  object-fit: cover;
  width: 100%;
  height: auto;
  border-top-right-radius: 3.125rem;
  aspect-ratio: 340/497;
}
@media screen and (min-width: 768px) {
  .p-mv__img img {
    aspect-ratio: 1820/994;
    border-top-right-radius: 6.25rem;
  }
}

.p-mv__detail {
  position: absolute;
  border-top-left-radius: 1.25rem;
  background: linear-gradient(to right, #26d0ce 0%, #2c77bc 100%);
  max-width: 41.75rem;
  width: calc(100% - 2.5rem);
  z-index: 1;
  padding: 1.25rem;
  right: 0;
  border-left: 0.3125rem solid #fff;
  border-top: 0.3125rem solid #fff;
  border-bottom: 0.3125rem solid #fff;
  bottom: -8.25rem;
}
@media screen and (min-width: 768px) {
  .p-mv__detail {
    width: 100%;
    border: 0.3125rem solid #fff;
    bottom: -5.375rem;
    right: 3.125rem;
    padding-top: 1.625rem;
    padding-left: 2.375rem;
    padding-right: 2.375rem;
    padding-bottom: 0.9375rem;
    border-top-right-radius: 1.25rem;
  }
}

.p-mv__title {
  font-weight: 600;
  color: #fff;
  font-size: 1.1875rem;
  line-height: 1.5;
  height: 3em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-mv__title {
    font-size: 1.875rem;
  }
}

.p-mv__text {
  color: #fff;
  font-weight: 500;
  font-size: 0.875rem;
  margin-top: 0.875rem;
  line-height: 1.7142857143;
  height: 5.1428571429em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-mv__text {
    line-height: 1.875;
    height: 5.625em;
    margin-top: 1.1875rem;
    font-size: 1rem;
  }
}

.p-mv__btn-wrapper {
  margin-top: 0.8125rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .p-mv__btn-wrapper {
    margin-top: 2.9375rem;
  }
}

.p-mv__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  width: 12rem;
  height: 2.125rem;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-mv__btn {
    gap: 0.9375rem;
    height: 2.75rem;
    width: 14.1875rem;
  }
}

.p-mv__btn-text {
  font-weight: 600;
  color: #fff;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-mv__btn-text {
    font-size: 0.9375rem;
  }
}

.p-mv__btn-icon {
  width: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-mv__btn-icon {
    width: 1.875rem;
  }
}

.p-mv__controls {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
  background: rgba(30, 89, 191, 0.9);
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-mv__controls {
    bottom: 1.875rem;
    right: 1.875rem;
    gap: 1.25rem;
    padding: 1rem 1.5rem;
  }
}

.p-mv__pagination-custom {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-mv__pagination-custom {
    font-size: 1.25rem;
    gap: 0.375rem;
  }
}

.p-mv__pagination-current {
  color: #fff;
}

.p-mv__pagination-separator {
  color: rgba(255, 255, 255, 0.7);
}

.p-mv__pagination-total {
  color: rgba(255, 255, 255, 0.7);
}

.p-mv__autoplay-toggle {
  width: 2rem;
  height: 2rem;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .p-mv__autoplay-toggle {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.p-mv__autoplay-toggle:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}
.p-mv__autoplay-toggle svg {
  width: 1rem;
  height: 1rem;
}
@media screen and (min-width: 768px) {
  .p-mv__autoplay-toggle svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.p-mv__pause-icon {
  display: block;
}

.p-mv__play-icon {
  display: none;
}

.p-mv__autoplay-toggle.is-paused .p-mv__pause-icon {
  display: none;
}
.p-mv__autoplay-toggle.is-paused .p-mv__play-icon {
  display: block;
}

.p-mv__swiper-bottom {
  overflow: hidden;
  padding-top: 9rem;
  display: flex;
  align-items: center;
  padding-left: 2.75rem;
  gap: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .p-mv__swiper-bottom {
    gap: 2.125rem;
    margin-top: 1.8125rem;
    padding-left: 3.125rem;
    padding-top: initial;
  }
}

/* .p-mv__swiper-bottom--sp {
  display: flex;
  align-items: center;
  gap: rem(10);
  margin-top: rem(10);
  padding-left: rem(20);
  @include mq(md){
    display: none;
  }
} */
.p-mv__swiper-bottom .swiper-pagination {
  text-align: left !important;
}

.p-mv__swiper-bottom .swiper-pagination-bullet {
  width: 0.875rem;
  height: 0.875rem;
  border: 1px solid #1e59bf;
  border-radius: 9999px;
  background: #fff;
  opacity: 1;
}

.p-mv__swiper-bottom .swiper-pagination-bullet-active {
  background: #1e59bf !important;
}

.p-mv__swiper-start {
  display: flex;
  align-items: center;
}

.p-mv__swiper-clickable {
  display: inline-block;
  width: 1.875rem;
  height: 1.875rem;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  transition: transform 0.3s ease;
}
.p-mv__swiper-clickable:hover {
  transform: scale(1);
}
.p-mv__swiper-clickable svg {
  width: 1.875rem;
  height: 1.875rem;
  display: block;
}

.p-mv__pause-svg {
  display: block;
}

.p-mv__play-svg {
  display: none;
}

.p-mv__swiper-clickable.is-paused .p-mv__pause-svg {
  display: none;
}
.p-mv__swiper-clickable.is-paused .p-mv__play-svg {
  display: block;
}

.p-mv__swiper-startText {
  font-family: "Sen", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: #1e59bf;
  margin-left: 0.6875rem;
}

.p-news-archive__body {
  margin-top: 1.25rem;
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-news-archive__body {
    margin-top: 3.125rem;
    padding-bottom: 6.25rem;
  }
}

.p-news-archive__list {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-news-archive__list {
    margin-top: 2.5rem;
  }
}

.p-news-archive__item {
  display: block;
  border-bottom: 0.0625rem solid #c9c9c9;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-news-archive__item {
    display: flex;
    align-items: center;
    gap: 1.5625rem;
  }
}

.p-news-archive__meta {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-news-archive__meta {
    gap: 1.5rem;
  }
}

.p-news-archive__category {
  margin-top: 0;
  margin-left: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-news-archive__category {
    margin-left: 0;
  }
}

.p-news-archive__item:first-child {
  padding: 0rem 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-news-archive__item:first-child {
    padding: 0rem 0 1.125rem;
  }
}

.p-news-archive__item + .p-news-archive__item {
  padding: 1.25rem 0;
}
@media screen and (min-width: 768px) {
  .p-news-archive__item + .p-news-archive__item {
    padding: 1.125rem 0;
  }
}

@media (any-hover: hover) {
  .p-news-archive__item:hover {
    opacity: 0.7;
  }
}
.p-news-archive__date {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .p-news-archive__date {
    font-size: 1.25rem;
    flex-shrink: 0;
  }
}

.p-news-archive__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.6875rem;
  height: 1.9375rem;
  padding: 0 0.9375rem;
  border: 0.125rem solid rgba(0, 73, 157, 0.4);
  border-radius: 1.125rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #00499d;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-news-archive__category {
    min-width: 8.4375rem;
    height: 2.1875rem;
    margin-top: 0;
    font-size: 1rem;
    flex-shrink: 0;
  }
}

.p-news-archive__title {
  margin-top: 0.625rem;
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  line-height: 1.875;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .p-news-archive__title {
    margin-top: 0;
    font-size: 1.125rem;
    line-height: 2.7777777778;
    flex: 1;
  }
}

@media (any-hover: hover) {
  .p-news-archive__item:hover .p-news-archive__title {
    text-decoration: none;
  }
}
.p-news-archive__pagination {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-news-archive__pagination {
    margin-top: 3.125rem;
  }
}

.p-news-archive__empty {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 1rem;
  color: #000000;
}

.p-news-single__body {
  margin-top: 1.25rem;
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-news-single__body {
    margin-top: 3.125rem;
    padding-bottom: 6.25rem;
  }
}

.p-news-single__header {
  text-align: center;
}

.p-news-single__title {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #1e59bf;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-news-single__title {
    font-size: 2.875rem;
    line-height: 1.4347826087;
  }
}

.p-news-single__title::after {
  content: "";
  display: block;
  width: 7.631875rem;
  aspect-ratio: 122.11/10;
  margin: 0.9375rem auto 0;
  background-image: url("../images/common/title-wave.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .p-news-single__title::after {
    width: 10.684375rem;
    aspect-ratio: 170.95/13.04;
    margin-top: 1.625rem;
  }
}

.p-news-single__meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 0.625rem;
  width: 100%;
  margin-top: 1.25rem;
  background: #e7f2fc;
  border-radius: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-news-single__meta {
    margin-top: 2.875rem;
    padding: 0.5rem 5.75rem;
    width: fit-content;
  }
}

.p-news-single__category {
  font-size: 0.875rem;
  font-weight: 500;
  color: #00499d;
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .p-news-single__category {
    font-size: 1rem;
  }
}

.p-news-single__separator {
  font-size: 0.875rem;
  font-weight: 500;
  color: #00499d;
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .p-news-single__separator {
    font-size: 1rem;
  }
}

.p-news-single__date {
  font-size: 0.875rem;
  font-weight: 500;
  color: #00499d;
}
@media screen and (min-width: 768px) {
  .p-news-single__date {
    font-size: 1rem;
  }
}

.p-news-single__content {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-news-single__content {
    margin-top: 2.5rem;
  }
}
.p-news-single__content::after {
  content: "";
  display: block;
  clear: both;
}

.p-news-single__content p {
  font-size: 0.875rem;
  font-weight: 400;
  color: #000000;
  line-height: 1.8571428571;
}
@media screen and (min-width: 768px) {
  .p-news-single__content p {
    font-size: 1.125rem;
    line-height: 2.2222222222;
  }
}
.p-news-single__content p + p {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-news-single__content p + p {
    margin-top: 1.875rem;
  }
}

.p-news-single__content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e59bf;
}
@media screen and (min-width: 768px) {
  .p-news-single__content h2 {
    margin-top: 3.75rem;
    margin-bottom: 1.875rem;
    font-size: 1.75rem;
  }
}

.p-news-single__content h3 {
  margin-top: 1.875rem;
  margin-bottom: 0.9375rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .p-news-single__content h3 {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-size: 1.375rem;
  }
}

.p-news-single__content ul,
.p-news-single__content ol {
  margin-top: 1.25rem;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-news-single__content ul,
  .p-news-single__content ol {
    margin-top: 1.875rem;
    padding-left: 1.5625rem;
  }
}
.p-news-single__content ul li,
.p-news-single__content ol li {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .p-news-single__content ul li,
  .p-news-single__content ol li {
    font-size: 1.125rem;
  }
}
.p-news-single__content ul li + li,
.p-news-single__content ol li + li {
  margin-top: 0.625rem;
}

.p-news-single__content img {
  max-width: 100%;
  height: auto;
}

.p-news-single__content .wp-block-image {
  margin: 0;
}

.p-news-single__content .wp-block-image figure {
  margin: 0;
}

.p-news-single__content .wp-block-image img {
  width: 100%;
  height: auto;
}

.p-news-single__content .wp-block-image figcaption {
  margin-top: 0.625rem !important;
  margin-bottom: 0 !important;
  font-size: 0.75rem;
  font-weight: 400;
  color: #000000;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-news-single__content .wp-block-image figcaption {
    margin-top: 0.8125rem !important;
    font-size: 1.125rem;
  }
}

.p-news-single__content a {
  color: #1e59bf;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.p-news-single__content a:hover {
  opacity: 0.7;
}

.p-news-single__content .wp-block-columns,
.p-news-single__content .wp-block-gallery {
  margin: 0;
}

.p-news-single__content .wp-block-columns.is-layout-flex {
  --p-news-single-columns-gap-sp: 0.9375rem;
  --p-news-single-columns-gap-pc: 3.375rem;
  --p-news-single-columns-gap: var(--p-news-single-columns-gap-sp);
  --p-news-single-media-width: 10.3125rem;
  gap: var(--p-news-single-columns-gap);
}
@media screen and (min-width: 768px) {
  .p-news-single__content .wp-block-columns.is-layout-flex {
    --p-news-single-columns-gap: var(--p-news-single-columns-gap-pc);
    --p-news-single-media-width: 24.75rem;
  }
}

.p-news-single__content .wp-block-columns.is-layout-flex > .wp-block-column {
  min-width: 0;
  flex: 1 1 0;
}

/* 2カラム（テキスト＋画像）時の幅制御 */
.p-news-single__content .wp-block-columns.is-layout-flex.is-not-stacked-on-mobile > .wp-block-column:first-child:nth-last-child(2) {
  flex: 0 1 calc(100% - var(--p-news-single-media-width) - var(--p-news-single-columns-gap));
}

.p-news-single__content .wp-block-columns.is-layout-flex.is-not-stacked-on-mobile > .wp-block-column:last-child:nth-child(2) {
  flex: 0 0 var(--p-news-single-media-width);
  max-width: var(--p-news-single-media-width);
}

.p-news-single__content .wp-block-gallery--caption-below.has-nested-images {
  align-items: flex-start !important;
  --wp--style--unstable-gallery-gap: 1.25rem;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-news-single__content .wp-block-gallery--caption-below.has-nested-images {
    --wp--style--unstable-gallery-gap: 2.5rem;
    gap: 2.5rem;
  }
}

.p-news-single__content .wp-block-gallery--caption-below .wp-block-image {
  align-items: flex-start !important;
}

@media (max-width: 767px) {
  .p-news-single__content .wp-block-gallery--caption-below.has-nested-images figure.wp-block-image:not(#individual-image) {
    width: 100% !important;
  }
}
.p-news-single__content .wp-block-gallery--caption-below .wp-block-image:has(figcaption)::before,
.p-news-single__content .wp-block-gallery--caption-below .wp-block-image:has(.wp-element-caption)::before {
  display: none !important;
}

.p-news-single__content .wp-block-gallery--caption-below .wp-block-image figcaption,
.p-news-single__content .wp-block-gallery--caption-below .wp-block-image figcaption.wp-element-caption {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  width: 100% !important;
  background: none !important;
  backdrop-filter: none !important;
  text-shadow: none !important;
  color: #000000 !important;
  padding: 0 !important;
  margin-top: 0.5625rem !important;
  margin-bottom: 0 !important;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.1666666667;
  text-align: left !important;
}
@media screen and (min-width: 768px) {
  .p-news-single__content .wp-block-gallery--caption-below .wp-block-image figcaption,
  .p-news-single__content .wp-block-gallery--caption-below .wp-block-image figcaption.wp-element-caption {
    margin-top: 0.75rem !important;
    font-size: 1.125rem;
  }
}

.p-news-single__btn-wrap {
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-news-single__btn-wrap {
    margin-top: 4.5rem;
  }
}

.p-news-single__pager {
  display: flex;
  align-items: center;
}

.p-news-single__pager-item--next {
  margin-left: auto;
}

.p-news-single__pager-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.875rem;
  padding: 0.3125rem 0.625rem;
  background-color: #fff;
  border: 0.0625rem solid #1e59bf;
  color: #1e59bf;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-news-single__pager-link {
    min-height: 2.125rem;
    padding: 0.25rem 0.875rem;
  }
}

.p-news-single__pager-link:hover {
  opacity: 0.7;
}

.p-news-single__pager-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1e59bf;
  letter-spacing: 0em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-news-single__pager-text {
    font-size: 1rem;
  }
}

.p-news-single__pager-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1e59bf;
}

.p-news-single__pager-text + .p-news-single__pager-icon {
  margin-left: 0.5rem;
}

.p-news-single__pager-icon + .p-news-single__pager-text {
  margin-left: 0.5rem;
}

.p-news-single__content .spacer-large {
  height: 2.125rem !important;
}
@media screen and (min-width: 768px) {
  .p-news-single__content .spacer-large {
    height: 2.5rem !important;
  }
}

.p-news-single__content .spacer-small {
  height: 1.25rem !important;
}
@media screen and (min-width: 768px) {
  .p-news-single__content .spacer-small {
    height: 1.875rem !important;
  }
}

.p-privacy {
  color: #000000;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-privacy {
    margin-top: 3.125rem;
  }
}

.p-privacy__lead {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.8571428571;
}
@media screen and (min-width: 768px) {
  .p-privacy__lead {
    font-size: 1.125rem;
    line-height: 2.2222222222;
  }
}

.p-privacy__barTitle {
  border-radius: 0.375rem;
  background: #07ada7;
  display: flex;
  align-items: center;
  font-weight: 700;
  color: #fff;
  font-size: 1.1875rem;
  line-height: 1.4736842105;
  padding-left: 1rem;
  margin-top: 1.875rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__barTitle {
    padding-top: initial;
    padding-bottom: initial;
    padding-left: 1.25rem;
    font-size: 1.625rem;
    line-height: 1.9230769231;
    margin-top: 4.375rem;
    height: 3.75rem;
  }
}

.p-privacy__section {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__section {
    margin-top: 1.875rem;
  }
}

.p-privacy__heading {
  font-weight: 700;
  line-height: 2.0833333333;
  color: #1e59bf;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__heading {
    font-size: 1.5rem;
  }
}

.p-privacy__text {
  font-weight: 400;
  color: #000000;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.8571428571;
}
@media screen and (min-width: 768px) {
  .p-privacy__text {
    line-height: 2.2222222222;
    margin-top: 1.25rem;
    font-size: 1.125rem;
  }
}

.p-privacy__text a {
  text-decoration: underline;
  color: #07ADA7;
  display: block;
  white-space: wrap;
  overflow-wrap: break-word;
}

.p-privacy__section + .p-privacy__section {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__section + .p-privacy__section {
    margin-top: 2.5rem;
  }
}

.p-privacy__box {
  border: 0.3125rem solid rgba(7, 173, 167, 0.4);
  background: #fff;
  padding: 0.625rem 0.625rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__box {
    margin-top: 1.875rem;
    padding: 1.75rem 1.875rem;
  }
}

.p-privacy__boxHeading {
  display: flex;
  gap: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__boxHeading {
    align-items: center;
    gap: 0.625rem;
  }
}

.p-privacy__boxDot {
  font-weight: 400;
  color: #07ada7;
  font-size: 1rem;
  line-height: 2.5;
}
@media screen and (min-width: 768px) {
  .p-privacy__boxDot {
    line-height: 2;
    font-size: 1.25rem;
  }
}

.p-privacy__boxDot--contact {
  margin-top: -0.375rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__boxDot--contact {
    margin-top: initial;
    font-size: 1.25rem;
  }
}

.p-privacy__boxHeadingText {
  font-weight: 600;
  color: #000000;
  font-size: 1rem;
  line-height: 2.5;
}
@media screen and (min-width: 768px) {
  .p-privacy__boxHeadingText {
    line-height: 2;
    font-size: 1.25rem;
  }
}

.p-privacy__boxHeadingText--contact {
  font-size: 0.875rem;
  line-height: 1.5714285714;
}
@media screen and (min-width: 768px) {
  .p-privacy__boxHeadingText--contact {
    line-height: 2;
    font-size: 1.25rem;
  }
}

.p-privacy__boxHeadingText a {
  text-decoration: underline;
  color: #07ADA7;
}

.p-privacy__boxHeading--contact .p-privacy__boxHeadingText {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-privacy__boxHeading--contact .p-privacy__boxHeadingText {
    font-size: 1.125rem;
    line-height: 2.2222222222;
  }
}

.p-privacy__list {
  list-style: none;
  counter-reset: privacy-number;
  text-indent: -1rem;
  padding-left: 1rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__list {
    margin-top: 1rem;
  }
}

.p-privacy__list--policy {
  text-indent: initial;
  padding-left: initial;
}

.p-privacy__list--policy + .p-privacy__list--policy {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__list--policy + .p-privacy__list--policy {
    margin-top: 1.875rem;
  }
}

.p-privacy__lists {
  margin-top: 1rem;
  padding-left: 0;
  list-style: none;
  counter-reset: policy-number;
}

.p-privacy__lists > .p-privacy__list {
  position: relative;
  padding-left: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__lists > .p-privacy__list {
    padding-left: 1.875rem;
  }
}

.p-privacy__lists > .p-privacy__list::before {
  counter-increment: policy-number;
  content: counter(policy-number) ".";
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: 400;
  line-height: 2;
  font-size: 0.875rem;
  top: -0.125rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__lists > .p-privacy__list::before {
    top: 0.0625rem;
    font-size: 1.125rem;
  }
}

.p-privacy__lists > .p-privacy__list .p-privacy__text {
  margin-top: 0;
}

.p-privacy__boxHeading + .p-privacy__boxHeading {
  margin-top: 1.875rem;
}

.p-privacy__boxHeading--contact {
  line-height: 2.2222222222;
}

.p-privacy__boxHeading--contact + .p-privacy__boxHeading {
  margin-top: initial;
}

.p-privacy__boxText {
  font-weight: 400;
  color: #000000;
  font-size: 0.875rem;
  line-height: 1.8571428571;
}
@media screen and (min-width: 768px) {
  .p-privacy__boxText {
    line-height: 2;
    margin-top: 1rem;
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-privacy {
    margin-top: 2.5rem;
  }
}
.mt30 {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .mt30 {
    margin-top: 1.875rem;
  }
}

.p-privacy__listItem {
  font-size: 0.875rem;
  color: #000;
  font-weight: 400;
  line-height: 1.8571428571;
}
@media screen and (min-width: 768px) {
  .p-privacy__listItem {
    font-size: 1.125rem;
    line-height: 2;
  }
}

.p-privacy__contact {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__contact {
    margin-top: 1.875rem;
  }
}

.p-privacy__contact .p-contactForm {
  border-top: 0.125rem solid #e6e6e6;
}

.p-privacy__contact .p-contactForm__row {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 0.125rem solid #e6e6e6;
}
@media screen and (min-width: 768px) {
  .p-privacy__contact .p-contactForm__row {
    grid-template-columns: 15.25rem 1fr;
  }
}

.p-privacy__contact .p-contactForm__label {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  background: rgba(216, 241, 247, 0.4);
  gap: 0.9375rem;
  padding: 0.9375rem 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__contact .p-contactForm__label {
    font-size: 1.125rem;
    padding: 1.375rem 1.125rem;
  }
}

.p-privacy__contact .p-contactForm__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.125rem;
  height: 1.875rem;
  border: 0.125rem solid #07ada7;
  background: #fff;
  color: #07ada7;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
}

.p-privacy__contact .p-contactForm__field {
  padding: 0.9375rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__contact .p-contactForm__field {
    padding: 1.375rem 1.5625rem;
  }
}

.p-privacy__contact .p-contactForm__control {
  width: 100%;
  height: 2.8125rem;
  padding: 0 0.75rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.7);
  font-size: 1rem;
}

.p-privacy__contact textarea.p-contactForm__control {
  height: 6.9375rem;
  padding: 0.625rem 0.75rem;
  resize: none;
}

.p-privacy__contact .p-contactForm__zipRow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
}

.p-privacy__contact .p-contactForm__zipMark {
  font-size: 1rem;
  font-weight: 400;
  color: #000;
}

.p-privacy__contact .p-contactForm__control--zip {
  width: 8.1875rem;
}

.p-privacy__contact .p-contactForm__zipNote {
  color: #000;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__contact .p-contactForm__zipNote {
    font-size: 0.875rem;
  }
}

.p-privacy__contact .p-contactForm__stack + .p-contactForm__stack {
  margin-top: 0.875rem;
}

.p-privacy__contact .p-contactForm__emailConfirm {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.p-privacy__contact .p-contactForm__emailNote {
  color: #000;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__contact .p-contactForm__emailNote {
    font-size: 0.9375rem;
  }
}

.p-privacy__contact .p-contactForm__submitRow {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  align-items: center;
  padding-right: 0.625rem;
  padding-left: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__contact .p-contactForm__submitRow {
    padding: 2.5rem 0 0;
  }
}

.p-privacy__contact .p-contactForm__submit {
  border: 0.125rem solid #0370bb;
  border-radius: 9999px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  width: 11.8125rem;
  height: 3.625rem;
  padding-left: 1.5625rem;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__contact .p-contactForm__submit {
    padding-left: 2.8125rem;
    gap: 1.125rem;
    height: 5.3125rem;
    width: min(100%, 17.1875rem);
  }
}

.p-privacy__contact .p-contactForm__submitText {
  font-weight: 600;
  color: #000;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__contact .p-contactForm__submitText {
    font-size: 1.75rem;
  }
}

.p-privacy__contact .p-contactForm__submitIcon {
  border-radius: 9999px;
  background: linear-gradient(135deg, #26d0ce 0%, #2c77bc 100%);
  position: relative;
  flex: 0 0 auto;
  width: 2.375rem;
  height: 2.375rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__contact .p-contactForm__submitIcon {
    width: 3.4375rem;
    height: 3.4375rem;
  }
}

.p-privacy__contact .p-contactForm__submitIcon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.25rem;
  height: 0rem;
  border-top: 0.0625rem solid #fff;
  transform: translate(-60%, -50%);
}

.p-privacy__contact .p-contactForm__submitIcon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 0.0625rem solid #fff;
  border-bottom: 0.0625rem solid #fff;
  transform: translate(-15%, -50%) rotate(-45deg);
}

.p-privacy__contact .wpcf7-not-valid-tip {
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

.p-privacy__contact .wpcf7-spinner {
  display: block;
  margin: 0.75rem auto 0;
}

@media screen and (min-width: 768px) {
  .p-privacy__thanks {
    text-align: center;
  }
}

.p-privacy__thanksText {
  font-size: 0.875rem;
  line-height: 1.8571428571;
}
@media screen and (min-width: 768px) {
  .p-privacy__thanksText {
    font-size: 1rem;
    line-height: 2.25;
  }
}

.p-privacy__thanks-btn {
  text-align: center;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__thanks-btn {
    margin-top: 2.5rem;
  }
}

.p-contactForm__field [name=your-name],
.p-contactForm__field [name=your-tel] {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-contactForm__field [name=your-name],
  .p-contactForm__field [name=your-tel] {
    width: 29.9375rem;
  }
}

.p-contactForm__field [name=your-email],
.p-contactForm__field [name=your-email-confirm] {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-contactForm__field [name=your-email],
  .p-contactForm__field [name=your-email-confirm] {
    width: 42.9375rem;
  }
}

.p-privacy__contact select.p-contactForm__control {
  max-width: 100%;
  width: fit-content;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23000' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
}

.p-search-modal {
  width: 100%;
  height: 100dvh;
  position: fixed;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(to right, #26d0ce 0%, #299ec4 25%, #1e59bf 100%);
  z-index: 10000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  overflow-x: clip;
  padding: 1.25rem;
  padding-top: 12.625rem;
}
.p-search-modal.is-active {
  visibility: visible;
  opacity: 1;
}

.p-search-modal__inner {
  max-width: 62.5rem;
  margin: 0 auto;
  position: relative;
}

.p-search-modal__close {
  position: absolute;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  width: 2.8125rem;
  top: 0.75rem;
  right: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-search-modal__close {
    width: 3.75rem;
    top: 1.5625rem;
    right: 1.6875rem;
  }
}
.p-search-modal__close svg {
  width: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-search-modal__close svg {
    width: 3.75rem;
  }
}

.p-search-modal__content {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-search-modal__content {
    margin-top: 5rem;
  }
}

.p-search-modal__form {
  margin-bottom: 2.5rem;
  border: 2px solid #fff;
  padding-left: 1.4375rem;
  display: flex;
  align-items: center;
  gap: 1.4375rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-search-modal__form {
    padding-top: initial;
    padding-bottom: initial;
  }
}

.p-search-modal__title {
  flex-shrink: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}

.p-search-modal__row {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-search-modal__row {
    gap: 1.4375rem;
    flex-direction: row;
  }
}

.p-search-modal__input-wrapper {
  display: flex;
  margin-left: auto;
}

.p-search-modal__input {
  flex: 1;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  background: #fff;
  border: 2px solid #cccccc;
  border-radius: 0.4375rem;
  width: 100%;
  padding: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-search-modal__input {
    padding: 1rem 0.875rem;
  }
}
.p-search-modal__input::placeholder {
  color: #999;
  color: #ccc;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-search-modal__input::placeholder {
    font-size: 1rem;
  }
}

.p-search-modal__search-btn {
  background: transparent;
  border-left: 2px solid #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  width: 3.125rem;
  height: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-search-modal__search-btn {
    width: 6.25rem;
    height: 6.25rem;
  }
}
.p-search-modal__search-btn svg {
  width: 1.5625rem;
  height: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-search-modal__search-btn svg {
    width: 3.125rem;
    height: 3.125rem;
  }
}
.p-search-modal__search-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.05);
}

.p-search-modal__tags {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-search-modal__tags {
    margin-top: 3.375rem;
  }
}

.p-search-modal__section-title {
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #fff;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-search-modal__section-title {
    font-size: 1.5rem;
  }
}

.p-search-modal__section-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  color: #fff;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-search-modal__section-text {
    font-size: 1rem;
    margin-top: 0.8125rem;
  }
}

.p-search-modal__tag-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-search-modal__tag-list {
    gap: 1.25rem;
    margin-top: 7.375rem;
  }
}

.p-search-modal__tag {
  border: 2px solid #fff;
  border-radius: 9999px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  padding: 0.375rem 1rem;
}
@media screen and (min-width: 768px) {
  .p-search-modal__tag {
    padding: 0.375rem 1.5625rem;
    font-size: 1.125rem;
  }
}
.p-search-modal__tag:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #fff;
}

.p-search-modal__categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-search-modal__categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.75rem;
  }
}

.p-search-modal__category-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-search-modal__category-list {
    gap: 1rem;
  }
}

.p-search-modal__category-item {
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-search-modal__category-item {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}
.p-search-modal__category-item:hover {
  background: rgba(255, 255, 255, 0.2);
  padding-left: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-search-modal__category-item:hover {
    padding-left: 1.75rem;
  }
}

.gsc-wrapper,
.gsc-above-wrapper-area {
  max-width: 100% !important;
}

.p-side {
  position: fixed;
  background: #fff;
  right: 0;
  top: 0;
  z-index: 999;
  width: 3.125rem;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-side {
    width: 6.25rem;
    padding-bottom: 2.5rem;
  }
}

.p-side__content {
  display: flex;
  flex-direction: column;
}

.p-side__search-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(to right, #26d0ce 0%, #2c77bc 100%);
  width: 3.125rem;
  height: 3.125rem;
  gap: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .p-side__search-link {
    gap: 0.625rem;
    width: 6.25rem;
    height: 6.25rem;
  }
}

.p-side__search-icon {
  display: inline-block;
  width: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-side__search-icon {
    width: 1.6875rem;
  }
}

.p-side__search-text {
  color: #fff;
  font-family: "Sen", sans-serif;
  font-weight: 400;
  text-align: center;
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-side__search-text {
    font-size: 0.9375rem;
  }
}

.p-side__language {
  position: relative;
}

.p-side__language-link {
  width: 3.125rem;
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #eaeaea;
  gap: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .p-side__language-link {
    width: 6.25rem;
    height: 6.25rem;
    gap: 0.625rem;
  }
}

.p-side__language-icon {
  display: inline-block;
  width: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-side__language-icon {
    width: 1.6875rem;
  }
}

.p-side__language-link {
  border: none;
  cursor: pointer;
}

.p-side__language-text {
  font-size: 0.625rem;
  font-family: "Sen", sans-serif;
  font-weight: 400;
  color: #000000;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-side__language-text {
    font-size: 0.9375rem;
  }
}

.p-side__language-dropdown {
  position: absolute;
  top: 0;
  right: 3.125rem;
  background: #fff;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1000;
  max-height: 60vh;
  overflow-y: auto;
}
@media screen and (min-width: 768px) {
  .p-side__language-dropdown {
    right: 6.25rem;
  }
}
.p-side__language-dropdown.is-open {
  opacity: 1;
  visibility: visible;
}

.p-side__language-list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
}

.p-side__language-item-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
@media screen and (min-width: 768px) {
  .p-side__language-item-link {
    font-size: 0.9375rem;
    padding: 0.625rem 1.25rem;
  }
}
.p-side__language-item-link:hover {
  background: #f0f0f0;
}

.p-side__sns-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 0.9375rem;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-side__sns-wrapper {
    gap: 1.5rem;
    margin-top: 5.25rem;
  }
}

.p-side__sns-link {
  display: inline-block;
  width: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-side__sns-link {
    width: 1.5rem;
  }
}

.p-sightseeing-archive__body {
  margin-top: 2.1875rem;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__body {
    margin-top: 3.125rem;
    padding-bottom: 6.25rem;
  }
}

.p-sightseeing-archive__lead {
  font-size: 0.875rem;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0em;
  line-height: 1.8571428571;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__lead {
    font-size: 1.125rem;
    line-height: 2.2222222222;
    margin-top: 3.0625rem;
  }
}

.p-sightseeing-archive__search {
  margin-top: 3.625rem;
  position: relative;
  border-radius: 1.25rem;
  padding: 3.125rem 1.25rem 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__search {
    margin-top: 6.25rem;
    padding: 4.4375rem 2.5rem 3.125rem;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .p-sightseeing-archive__search::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: url(../images/common/search-bg.webp) no-repeat center center/cover;
    aspect-ratio: 2400/569;
    z-index: -1;
  }
}

.p-sightseeing-archive__search::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 0.3125rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #26d0ce 0%, #1e59bf 100%);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.p-sightseeing-archive__search-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 1.25rem;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 0 1.25rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__search-title {
    top: 1.5rem;
    padding: 0 3.125rem;
  }
}

.p-sightseeing-archive__search-content {
  display: flex;
  flex-direction: column-reverse;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__search-content {
    align-items: flex-start;
    flex-direction: row;
    gap: 3.3125rem;
  }
}

.p-sightseeing-archive__search-form {
  flex: 1;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__search-form {
    margin-top: 1.25rem;
  }
}

.p-sightseeing-archive__search-title-en {
  display: block;
  font-family: "Corinthia", cursive;
  font-size: 3.75rem;
  font-weight: 700;
  color: #07ada7;
  line-height: 1;
  letter-spacing: 0em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__search-title-en {
    font-size: 4.625rem;
  }
}

.p-sightseeing-archive__search-title-ja {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: #2f2f2f;
  line-height: 2;
  letter-spacing: 0em;
  margin-top: -0.625rem;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__search-title-ja {
    margin-top: -0.25rem;
    font-size: 1.25rem;
    line-height: 1.8;
  }
}

.p-sightseeing-archive__search-section:first-child {
  padding-block: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__search-section:first-child {
    padding-block: 0 1.875rem;
  }
}

.p-sightseeing-archive__search-section:not(:first-child):not(:last-child) {
  padding-block: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__search-section:not(:first-child):not(:last-child) {
    padding-block: 1.875rem;
  }
}

.p-sightseeing-archive__search-section:last-child {
  padding-block: 1.25rem 0;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__search-section:last-child {
    padding-block: 1.875rem 0;
  }
}

.p-sightseeing-archive__search-section + .p-sightseeing-archive__search-section {
  position: relative;
}

.p-sightseeing-archive__search-section + .p-sightseeing-archive__search-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background: repeating-linear-gradient(to right, #c9c9c9 0, #c9c9c9 0.1875rem, #fff 0.1875rem, #fff 0.375rem);
}

.p-sightseeing-archive__search-label {
  font-size: 1.125rem;
  font-weight: 700;
  color: #07ada7;
  letter-spacing: 0em;
  line-height: 2;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__search-label {
    font-size: 1.4375rem;
    line-height: 1.5652173913;
  }
}

.p-sightseeing-archive__search-select-wrap {
  position: relative;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__search-select-wrap {
    margin-top: 0.9375rem;
  }
}

.p-sightseeing-archive__search-select-wrap::after {
  content: "";
  position: absolute;
  width: 0.875rem;
  aspect-ratio: 14/8;
  right: 0.6875rem;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/common/select-button.webp) no-repeat center center/contain;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__search-select-wrap::after {
    right: 1.3125rem;
    width: 1.20375rem;
    aspect-ratio: 19.26/11;
  }
}

.p-sightseeing-archive__search-select {
  width: 100%;
  height: 2.5rem;
  padding: 0.125rem 0.625rem;
  border: 0.125rem solid #ccc;
  border-radius: 0.25rem;
  background: #fff;
  font-size: 0.875rem;
  color: #000000;
  appearance: none;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__search-select {
    font-size: 1rem;
    padding: 1rem 0.875rem;
    height: 3.5625rem;
  }
}

.p-sightseeing-archive__search-tags {
  margin-top: 0.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__search-tags {
    margin-top: 1.0625rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9375rem;
  }
}

.p-sightseeing-archive__search-tag {
  cursor: pointer;
  width: 100%;
}

.p-sightseeing-archive__search-tag input {
  display: none;
}

.p-sightseeing-archive__search-tag input:checked + .p-sightseeing-archive__search-tag-text {
  background: #07ada7;
  border-color: #07ada7;
  color: #fff;
}

.p-sightseeing-archive__search-tag-text {
  display: inline-block;
  padding: 0.53125rem 0.375rem;
  border: 2px solid #07ada7;
  border-radius: 624.9375rem;
  background: #fff;
  font-size: 0.625rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0em;
  color: #2f2f2f;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 374px) {
  .p-sightseeing-archive__search-tag-text {
    font-size: 0.8125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__search-tag-text {
    font-size: 1rem;
    padding: 0.8125rem 1rem;
    line-height: 1.3125;
  }
}

.p-sightseeing-archive__search-hashtags {
  margin-top: 0.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__search-hashtags {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1.0625rem;
    gap: 0.9375rem 1.25rem;
  }
}

.p-sightseeing-archive__search-hashtag {
  cursor: pointer;
}

.p-sightseeing-archive__search-hashtag input {
  display: none;
}

.p-sightseeing-archive__search-hashtag input:checked + .p-sightseeing-archive__search-hashtag-text {
  background: #07ada7;
  border-color: #07ada7;
  color: #fff;
}

.p-sightseeing-archive__search-hashtag input:checked + .p-sightseeing-archive__search-hashtag-text .p-sightseeing-archive__search-hashtag-symbol {
  color: #fff;
}

.p-sightseeing-archive__search-hashtag-text {
  display: inline-block;
  padding: 0.53125rem 0.75rem;
  border: 2px solid #07ada7;
  border-radius: 624.9375rem;
  background: #fff;
  font-size: 0.625rem;
  line-height: 1;
  font-weight: 500;
  color: #000000;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 374px) {
  .p-sightseeing-archive__search-hashtag-text {
    font-size: 0.8125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__search-hashtag-text {
    font-size: 1rem;
    line-height: 1.3125;
    padding: 0.4375rem 1.5rem;
  }
}

.p-sightseeing-archive__search-hashtag-symbol {
  color: #07ada7;
  transition: color 0.3s ease;
}

.p-sightseeing-archive__search-input-wrap {
  width: 100%;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__search-input-wrap {
    margin-top: 1.0625rem;
  }
}

.p-sightseeing-archive__search-input {
  width: 100%;
  height: 2.5rem;
  padding: 0.125rem 0.625rem;
  border: 2px solid #ccc;
  border-radius: 0.25rem;
  background: #fff;
  font-size: 0.875rem;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__search-input {
    font-size: 1rem;
    height: 3.5625rem;
  }
}

.p-sightseeing-archive__search-input::placeholder {
  color: #898989;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__search-input::placeholder {
    font-size: 1rem;
  }
}

.p-sightseeing-archive__search-submit-wrap {
  margin-top: 1.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__search-submit-wrap {
    margin-top: 2.375rem;
  }
}

.p-sightseeing-archive__search-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  max-width: 16.125rem;
  height: 3rem;
  background: linear-gradient(135deg, #26d0ce 0%, #1e59bf 100%);
  border: none;
  border-radius: 0.625rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__search-submit {
    max-width: 19.9375rem;
    height: 3.75rem;
  }
}
.p-sightseeing-archive__search-submit:hover {
  opacity: 0.8;
}

.p-sightseeing-archive__search-submit-icon {
  width: 1.125rem;
  height: 1.125rem;
}

.p-sightseeing-archive__search-submit-text {
  font-size: 1.1875rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__search-submit-text {
    font-size: 1.5rem;
  }
}

.p-sightseeing-archive__search-map {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__search-map {
    max-width: 23.6875rem;
    width: 100%;
  }
}

.p-sightseeing-archive__search-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 310/284.77;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__search-map img {
    aspect-ratio: 379/348.16;
  }
}

.p-sightseeing-archive__posts-wrap {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__posts-wrap {
    margin-top: 4.75rem;
  }
}

.p-sightseeing-archive__result {
  display: flex;
  justify-content: flex-end;
}

.p-sightseeing-archive__result-text {
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.02em;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__result-text {
    font-size: 1rem;
  }
}

.p-sightseeing-archive__result-count {
  display: inline-flex;
  align-items: baseline;
  gap: 0.375rem;
}

.p-sightseeing-archive__result-count-num {
  font-size: 1.375rem;
  font-weight: 600;
  color: #07ada7;
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__result-count-num {
    font-size: 1.625rem;
  }
}

.p-sightseeing-archive__result-range {
  font-size: 0.875rem;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__result-range {
    font-size: 1rem;
  }
}

.p-sightseeing-archive__list {
  margin-top: 0.9375rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__list {
    margin-top: 1.5rem;
    gap: 3.125rem;
  }
}

.p-sightseeing-archive__card {
  background: #f2f7fb;
  border-radius: 1.25rem;
  box-shadow: 0.1875rem 0.1875rem 0 #1e59bf;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__card {
    flex-direction: row;
    min-height: 17.5rem;
  }
}

.p-sightseeing-archive__card-img {
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__card-img {
    max-width: 23.125rem;
  }
}

.p-sightseeing-archive__card-img img {
  height: 100%;
  width: 100%;
  aspect-ratio: 350/256;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__card-img img {
    aspect-ratio: 370/280;
  }
}

.p-sightseeing-archive__card-body {
  flex: 1;
  padding-top: 1.25rem;
  padding-right: 1.25rem;
  padding-bottom: 1.5625rem;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__card-body {
    padding-top: 2.0625rem;
    padding-right: 1.5625rem;
    padding-bottom: 1.5625rem;
    padding-left: 1.875rem;
  }
}

.p-sightseeing-archive__card-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__card-head {
    gap: 1.875rem;
  }
}

.p-sightseeing-archive__card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e59bf;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__card-title {
    font-size: 1.5rem;
  }
}

.p-sightseeing-archive__card-tag {
  background: #1e59bf;
  border: 0.0625rem solid #1e59bf;
  padding-top: 0.34375rem;
  padding-bottom: 0.34375rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__card-tag {
    font-size: 1rem;
  }
}

.p-sightseeing-archive__card-text {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7333333333;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__card-text {
    font-size: 1.125rem;
    line-height: 2;
  }
}

.p-sightseeing-archive__card-btn-wrap {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__card-btn-wrap {
    margin-top: auto;
    padding-top: 1.5rem;
    justify-content: flex-end;
  }
}

.p-sightseeing-archive__pagination {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__pagination {
    margin-top: 3.125rem;
  }
}

.p-sightseeing-archive__empty {
  font-size: 1rem;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0em;
  margin-top: 2.5rem;
}

.p-sightseeing-archive__map-section {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__map-section {
    margin-top: 8.125rem;
  }
}

.p-sightseeing-archive__map-content {
  margin-top: 0.375rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__map-content {
    margin-top: 3.125rem;
    margin-right: calc(50% - 50vw + 6.25rem);
  }
}

.p-sightseeing-archive__map-content iframe {
  object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 340/497;
  width: 100% !important;
  height: 100% !important;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__map-content iframe {
    aspect-ratio: 1820/1140;
    border-top-right-radius: 3.125rem;
  }
}

.p-sightseeing-archive__map-btn-wrap {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__map-btn-wrap {
    margin-top: 2.1875rem;
  }
}

.p-sightseeing-archive__map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background: #fff;
  border: 1px solid #07ada7;
  border-radius: 9999px;
  padding: 0.625rem 1.25rem;
  transition: opacity 0.3s ease;
}
.p-sightseeing-archive__map-btn:hover {
  opacity: 0.7;
}

.p-sightseeing-archive__map-btn-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__map-btn-text {
    font-size: 1rem;
  }
}

.p-sightseeing-archive__map-btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-sightseeing-archive__events {
  display: grid;
  margin-top: 0.9375rem;
  gap: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-sightseeing-archive__events {
    margin-top: 1.5rem;
    row-gap: 3.75rem;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2.5rem;
  }
}

.p-single-event__overview {
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-single-event__overview {
    margin-top: 3.75rem;
  }
}

.p-single-event__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0em;
  color: #1e59bf;
}
@media screen and (min-width: 768px) {
  .p-single-event__title {
    font-size: 2rem;
    line-height: 1.5625;
  }
}

.p-single-event__lead {
  margin-top: 0.9375rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8571428571;
  color: #000000;
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .p-single-event__lead {
    margin-top: 1.125rem;
    font-size: 1.125rem;
    line-height: 2.2222222222;
  }
}

.p-single-event__meta {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-single-event__meta {
    margin-top: 6.125rem;
  }
}

.p-single-event__meta-row {
  display: flex;
  align-items: center;
  gap: 1.375rem;
  background: #f2f7fb;
  padding: 0rem 0.8125rem;
  border-left: 0.3125rem solid #1e59bf;
  min-height: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-single-event__meta-row {
    padding: 0.75rem 1.25rem;
    min-height: 3.625rem;
    border-left: 0.625rem solid #1e59bf;
  }
}

.p-single-event__meta-label {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  color: #1e59bf;
}
@media screen and (min-width: 768px) {
  .p-single-event__meta-label {
    font-size: 1.5rem;
    line-height: 2.0833333333;
  }
}

.p-single-event__meta-value {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .p-single-event__meta-value {
    font-size: 1.125rem;
    margin-top: 1.5rem !important;
    line-height: 1.8888888889;
  }
}

.p-single-event__overview .wp-block-heading {
  font-weight: 700;
  color: #1E59BF;
  font-size: 1.25rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-single-event__overview .wp-block-heading {
    line-height: 1.5625;
    font-size: 2rem;
  }
}

.p-single-event__overview p {
  color: #000;
  margin-top: 0.9375rem;
  font-size: 0.875rem;
  line-height: 1.8571428571;
}
@media screen and (min-width: 768px) {
  .p-single-event__overview p {
    line-height: 2.2222222222;
    margin-top: 1.875rem;
    font-size: 1.125rem;
  }
}

.p-single-event__meta + .p-single-event__meta {
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-single-event__meta + .p-single-event__meta {
    margin-top: 2.5rem;
  }
}

.p-single-event__map {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-single-event__map {
    margin-top: 8.75rem;
    margin-right: calc(50% - 50vw + 6.25rem);
  }
}

.p-single-event__map-header {
  text-align: center;
}

.p-single-event__map-container {
  margin-left: 0;
  margin-right: 0;
  overflow: hidden;
  margin-top: 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-single-event__map-container {
    margin-top: 3.125rem;
  }
}

.p-single-event__map-container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 390/89;
  object-fit: cover;
  background: url(../images/common/iframe-mask-sp.webp) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .p-single-event__map-container::before {
    background: url(../images/common/iframe-mask.webp) no-repeat center center/cover;
    aspect-ratio: 1920/187;
  }
}

.p-single-event__map-container iframe {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 340/482;
}
@media screen and (min-width: 768px) {
  .p-single-event__map-container iframe {
    aspect-ratio: 1820/1140;
    border-top-right-radius: 3.125rem;
  }
}

.p-single-event__map-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 0.875rem;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-single-event__map-buttons {
    gap: 2.5rem;
    margin-top: 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-single-event__recommend {
    margin-right: calc(50% - 50vw + 6.25rem);
  }
}
@media screen and (min-width: 768px) {
  .p-single-event__recommend .c-single-recommend2__slider.swiper .swiper-slide {
    width: 23.125rem;
  }
}

.p-single-feature__body {
  margin-top: 1.25rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-single-feature__body {
    margin-top: 3.125rem;
    padding-bottom: 7.5rem;
  }
}

.p-single-feature__lead-date {
  display: block;
  width: fit-content;
  margin-inline: auto;
  background: #f2f7fb;
  border-radius: 1.875rem;
  padding: 0.4375rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .p-single-feature__lead-date {
    display: none;
  }
}

.p-single-feature__lead-content {
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-single-feature__lead-content {
    margin-top: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4.8125rem;
  }
}

.p-single-feature__lead-text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8571428571;
  color: #000000;
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .p-single-feature__lead-text {
    flex: 1;
    font-size: 1.125rem;
    line-height: 2.2222222222;
  }
}
.p-single-feature__lead-text a {
  text-decoration: underline;
}
.p-single-feature__lead-text a:hover {
  text-decoration: none;
}

.p-single-feature__lead-img {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-single-feature__lead-img {
    display: block;
    width: 24.75rem;
    flex-shrink: 0;
  }
}

.p-single-feature__lead-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 396/264;
  object-fit: cover;
}

.p-single-feature__items {
  padding-top: 1.625rem;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  border-top: 0.125rem solid #dedbdb;
}
@media screen and (min-width: 768px) {
  .p-single-feature__items {
    padding-top: 3.75rem;
    margin-top: 3.75rem;
    gap: 6.25rem;
  }
}

.p-single-feature__item-header {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-single-feature__item-header {
    flex-direction: row;
    align-items: center;
    gap: 1.875rem;
  }
}

.p-single-feature__item-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e59bf;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-single-feature__item-title {
    font-size: 2.125rem;
    line-height: 1.4705882353;
  }
}

.p-single-feature__item-area {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #07ada7;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.3125rem 0.5rem;
  border-radius: 0.3125rem;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-single-feature__item-area {
    font-size: 1rem;
    padding: 0.3125rem 0.625rem;
    min-width: 7.25rem;
    height: 2.1875rem;
  }
}

.p-single-feature__item-img {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-single-feature__item-img {
    margin-top: 1.875rem;
  }
}
.p-single-feature__item-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 350/233;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-single-feature__item-img img {
    aspect-ratio: 1200/800;
  }
}

.p-single-feature__item-desc-wrap {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-single-feature__item-desc-wrap {
    margin-top: 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-single-feature__item-desc-wrap--img-right {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  .p-single-feature__item-desc-wrap--img-left {
    flex-direction: row;
  }
}

.p-single-feature__item-desc-img {
  float: right;
  max-width: 10.625rem;
  width: 100%;
  margin-left: 0.9375rem;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-single-feature__item-desc-img {
    float: none;
    max-width: 23.75rem;
    flex-shrink: 0;
    margin: 0;
  }
}

.p-single-feature__item-desc-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 170/117;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-single-feature__item-desc-img img {
    aspect-ratio: 380/260;
  }
}

.p-single-feature__item-desc-wrap .p-single-feature__item-desc {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .p-single-feature__item-desc-wrap .p-single-feature__item-desc {
    flex: 1;
  }
}

.p-single-feature__item-desc-wrap::after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (min-width: 768px) {
  .p-single-feature__item-desc-wrap::after {
    display: none;
  }
}

.p-single-feature__item-desc {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8571428571;
  color: #000000;
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .p-single-feature__item-desc {
    margin-top: 2.25rem;
    font-size: 1.125rem;
    line-height: 2.2222222222;
  }
}
.p-single-feature__item-desc > * {
  margin-top: 1em;
}
.p-single-feature__item-desc > *:first-child {
  margin-top: 0;
}
.p-single-feature__item-desc ul {
  list-style: disc;
  padding-left: 1.5em;
}
.p-single-feature__item-desc ol {
  list-style: decimal;
  padding-left: 1.5em;
}
.p-single-feature__item-desc blockquote {
  border-left: 4px solid #ccc;
  margin: 1em 0;
  padding-left: 1em;
}
.p-single-feature__item-desc a {
  text-decoration: underline;
}
.p-single-feature__item-desc a:hover {
  text-decoration: none;
}

.p-single-feature__item-info {
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-single-feature__item-info {
    margin-top: 2.5rem;
  }
}

.p-single-feature__item-info-row {
  display: flex;
  flex-direction: column;
  border-top: 0.125rem solid #dedbdb;
}
@media screen and (min-width: 768px) {
  .p-single-feature__item-info-row {
    flex-direction: row;
    align-items: stretch;
  }
}
.p-single-feature__item-info-row:last-child {
  border-bottom: 0.125rem solid #dedbdb;
}

.p-single-feature__item-info-label {
  background: #e7f2fc;
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  padding: 0.5rem 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-single-feature__item-info-label {
    width: 8.9375rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 0.75rem 0.875rem;
    font-size: 1.125rem;
  }
}

.p-single-feature__item-info-value {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0em;
  color: #000000;
  line-height: 1.75;
  padding: 0.5rem 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-single-feature__item-info-value {
    flex: 1;
    padding: 0.75rem 1.125rem;
    font-size: 1.125rem;
    line-height: 1.5;
  }
}
.p-single-feature__item-info-value > * {
  margin-top: 1em;
}
.p-single-feature__item-info-value > *:first-child {
  margin-top: 0;
}
.p-single-feature__item-info-value ul {
  list-style: disc;
  padding-left: 1.5em;
}
.p-single-feature__item-info-value ol {
  list-style: decimal;
  padding-left: 1.5em;
}
.p-single-feature__item-info-value blockquote {
  border-left: 4px solid #ccc;
  margin: 1em 0;
  padding-left: 1em;
}
.p-single-feature__item-info-value a {
  text-decoration: underline;
}
.p-single-feature__item-info-value a:hover {
  text-decoration: none;
}

.p-single-feature__recommend {
  position: relative;
  margin-top: 3.125rem;
  padding: 2.5rem 0;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .p-single-feature__recommend {
    margin-top: 8.4375rem;
    padding: 3.75rem 0;
    margin-right: calc(50% - 50vw + 6.25rem);
  }
}

.p-single-feature__recommend-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(38, 208, 206, 0.2), rgba(44, 119, 188, 0.2));
  border-top-right-radius: 1.875rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-single-feature__recommend-bg {
    border-top-right-radius: 3.125rem;
  }
}

.p-single-feature__recommend-inner {
  text-align: center;
}

.p-single-feature__recommend-slider-wrap {
  position: relative;
  margin-top: 1.25rem;
  padding-inline: 1.25rem;
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .p-single-feature__recommend-slider-wrap {
    margin-top: 3rem;
    padding-left: 0;
    padding-right: 0rem;
  }
}

.p-single-feature__recommend-slider.swiper {
  overflow: visible;
  padding-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-single-feature__recommend-slider.swiper {
    padding-inline: 16.1458333333vw;
  }
}
.p-single-feature__recommend-slider.swiper .swiper-wrapper {
  align-items: stretch;
}
.p-single-feature__recommend-slider.swiper .swiper-slide {
  height: auto;
}

.p-single-feature__recommend-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 1.875rem;
  box-shadow: 3px 3px 0 #0973ce;
  text-decoration: none;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-single-feature__recommend-card {
    width: 22.375rem;
  }
}
.p-single-feature__recommend-card:hover {
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .slider-feature-recommend .swiper-slide {
    width: 22.375rem;
  }
}

.p-single-feature__recommend-card-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 358/256;
  object-fit: cover;
}

.p-single-feature__recommend-card-body {
  flex: 1;
  padding: 0.9375rem 1.25rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-single-feature__recommend-card-body {
    padding: 1.25rem 1.5625rem 1.5625rem;
  }
}

.p-single-feature__recommend-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5384615385;
  color: #1e59bf;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-single-feature__recommend-card-title {
    font-size: 1.625rem;
  }
}

.p-single-feature__recommend-card-text {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.625;
  color: #000000;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-single-feature__recommend-card-text {
    font-size: 1rem;
  }
}

.p-single-feature__recommend-prev,
.p-single-feature__recommend-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.875rem;
  height: 1.875rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-single-feature__recommend-prev,
  .p-single-feature__recommend-next {
    width: 3.375rem;
    height: 3.375rem;
  }
}
.p-single-feature__recommend-prev:hover,
.p-single-feature__recommend-next:hover {
  opacity: 0.7;
}
.p-single-feature__recommend-prev svg,
.p-single-feature__recommend-next svg {
  width: 100%;
  height: 100%;
  display: block;
}

.p-single-feature__recommend-prev {
  left: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-single-feature__recommend-prev {
    left: 1.25rem;
  }
}

.p-single-feature__recommend-next {
  right: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-single-feature__recommend-next {
    right: 1.625rem;
  }
}

.p-single-feature__recommend-btn-wrap {
  margin-top: 1.5625rem;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-single-feature__recommend-btn-wrap {
    margin-top: 2.5rem;
  }
}

.p-single-model-course__header {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-single-model-course__header {
    margin-top: 3.125rem;
  }
}

.p-single-model-course__header-box {
  background: linear-gradient(135deg, #26d0ce 0%, #2c77bc 100%);
  border-radius: 0.9375rem;
  padding: 0.5rem 0.5rem 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-single-model-course__header-box {
    border-radius: 1.25rem;
    padding: 0.5rem 0.5rem 1.25rem;
  }
}

.p-single-model-course__header-title {
  background-color: #fff;
  border-radius: 0.5rem 0.5rem 0 0;
  padding: 0.75rem 1rem 0.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-single-model-course__header-title {
    border-radius: 0.625rem 0.625rem 0 0;
    padding: 0.75rem 1.25rem 1.125rem;
  }
}

.p-single-model-course__title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 2.125rem;
  color: #1e59bf;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-single-model-course__title {
    font-size: 2.125rem;
    line-height: 3.75rem;
  }
}

.p-single-model-course__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-single-model-course__meta {
    flex-direction: row;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 1.25rem;
  }
}

.p-single-model-course__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-single-model-course__meta-item {
    gap: 0.75rem;
  }
}

.p-single-model-course__meta-icon {
  display: inline-block;
  width: 1.453125rem;
  height: 1.453125rem;
  flex-shrink: 0;
  background-color: #fff;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.p-single-model-course__meta-icon--clock {
  mask-image: url("../images/common/clock-white.svg");
  -webkit-mask-image: url("../images/common/clock-white.svg");
}

.p-single-model-course__meta-icon--transport {
  width: 0.93875rem;
  height: 1.5rem;
  mask-image: url("../images/common/transport-white.svg");
  -webkit-mask-image: url("../images/common/transport-white.svg");
}

.p-single-model-course__meta-label {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.25rem;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .p-single-model-course__meta-label {
    font-size: 1.25rem;
  }
}

.p-single-model-course__meta-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.25rem;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .p-single-model-course__meta-text {
    font-size: 1.25rem;
  }
}

.p-single-model-course__body {
  margin-top: 1.875rem;
  padding-bottom: 0rem;
}
@media screen and (min-width: 768px) {
  .p-single-model-course__body {
    margin-top: 3.75rem;
    padding-bottom: 6.25rem;
  }
}

.p-single-model-course__lead {
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-single-model-course__lead {
    margin-bottom: 2.5rem;
  }
}

.p-single-model-course__lead-text {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .p-single-model-course__lead-text {
    font-size: 1rem;
    line-height: 2;
  }
}

.p-single-model-course__timeline {
  position: relative;
  --p-single-model-course__timeline-axis-x: 1.375rem;
  --p-single-model-course__timeline-time-size: 3.125rem;
  --p-single-model-course__timeline-number-size: 3.125rem;
  --p-single-model-course__timeline-content-gap: 0.75rem;
  --p-single-model-course__timeline-content-start: calc(
    var(--p-single-model-course__timeline-axis-x) +
      (var(--p-single-model-course__timeline-number-size) / 2) +
      var(--p-single-model-course__timeline-content-gap)
  );
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .p-single-model-course__timeline {
    --p-single-model-course__timeline-axis-x: 6.5rem;
    --p-single-model-course__timeline-number-size: 4.375rem;
    --p-single-model-course__timeline-content-gap: 1.25rem;
  }
}

.p-single-model-course__timeline::before {
  content: "";
  position: absolute;
  left: var(--p-single-model-course__timeline-axis-x);
  top: 3.125rem;
  bottom: 3.125rem;
  width: 0.3125rem;
  background-color: rgba(7, 173, 167, 0.5);
}
@media screen and (min-width: 768px) {
  .p-single-model-course__timeline::before {
    top: 4.875rem;
    bottom: 4.875rem;
  }
}

.p-single-model-course__timeline-start,
.p-single-model-course__timeline-end {
  position: relative;
}

.p-single-model-course__timeline-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3.125rem;
  background: #fff;
  border: 0.1875rem solid #07ada7;
  color: #07ada7;
  font-family: "Roboto", sans-serif;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 2.25rem;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .p-single-model-course__timeline-badge {
    width: 12.875rem;
    max-width: none;
    height: 4.875rem;
    border: 0.3125rem solid #07ada7;
    font-size: 1.875rem;
    margin-left: calc(var(--p-single-model-course__timeline-axis-x) - 6.4375rem);
  }
}

.p-single-model-course__timeline-end {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-single-model-course__timeline-end {
    margin-top: 4.375rem;
  }
}

.p-single-model-course__spot-box {
  margin-top: 2.5rem;
}

.p-single-model-course__spot-box + .p-single-model-course__spot-box {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-single-model-course__spot-box + .p-single-model-course__spot-box {
    margin-top: 4.375rem;
  }
}

.p-single-model-course__spot {
  position: relative;
}
.p-single-model-course__spot-time {
  position: relative;
  min-height: var(--p-single-model-course__timeline-time-size);
  padding-left: var(--p-single-model-course__timeline-content-start);
  display: flex;
  align-items: center;
}
.p-single-model-course__spot-time::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-single-model-course__spot-time::before {
    display: block;
    content: "";
    position: absolute;
    left: calc(var(--p-single-model-course__timeline-axis-x) + var(--p-single-model-course__timeline-time-size) / 2);
    top: 50%;
    width: 1.25rem;
    height: 0.0625rem;
    background-color: #0973ce;
    transform: translateY(-50%);
  }
}

.p-single-model-course__spot-time-icon {
  width: var(--p-single-model-course__timeline-time-size);
  height: var(--p-single-model-course__timeline-time-size);
  flex-shrink: 0;
  position: relative;
  position: absolute;
  left: calc(var(--p-single-model-course__timeline-axis-x) - var(--p-single-model-course__timeline-time-size) / 2);
  top: 0;
}

.p-single-model-course__spot-time-icon-img {
  width: 100%;
  height: 100%;
}

.p-single-model-course__spot-time-text {
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 2.25rem;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .p-single-model-course__spot-time-text {
    font-size: 1.25rem;
  }
}

.p-single-model-course__spot-header {
  position: relative;
  min-height: var(--p-single-model-course__timeline-number-size);
  padding-left: var(--p-single-model-course__timeline-content-start);
  display: flex;
  align-items: center;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-single-model-course__spot-header {
    margin-top: 2.5rem;
  }
}

.p-single-model-course__spot-number {
  width: var(--p-single-model-course__timeline-number-size);
  height: var(--p-single-model-course__timeline-number-size);
  background: linear-gradient(135deg, #26d0ce 0%, #2c77bc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: absolute;
  left: calc(var(--p-single-model-course__timeline-axis-x) - var(--p-single-model-course__timeline-number-size) / 2);
  top: 0;
}

.p-single-model-course__spot-number-text {
  font-family: "Roboto", sans-serif;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.875rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-single-model-course__spot-number-text {
    font-size: 2.25rem;
    line-height: 2.25rem;
  }
}

.p-single-model-course__spot-name {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2rem;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .p-single-model-course__spot-name {
    font-size: 1.875rem;
    line-height: 3.75rem;
  }
}

.p-single-model-course__spot-content {
  margin-left: var(--p-single-model-course__timeline-content-start);
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-single-model-course__spot-content {
    flex-direction: row;
    align-items: stretch;
    gap: 1.875rem;
    margin-top: 0.8125rem;
  }
}

.p-single-model-course__spot-img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-single-model-course__spot-img {
    max-width: 33.0625rem;
  }
}

.p-single-model-course__spot-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 291/194;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-single-model-course__spot-img img {
    aspect-ratio: 529/353;
  }
}

.p-single-model-course__spot-body {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-single-model-course__spot-body {
    align-self: stretch;
    max-width: 30.25rem;
    width: 100%;
  }
}

.p-single-model-course__spot-title {
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.4736842105;
  color: #1e59bf;
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .p-single-model-course__spot-title {
    font-size: 1.75rem;
    line-height: 1.7142857143;
  }
}

.p-single-model-course__spot-desc {
  font-size: 0.875rem;
  line-height: 1.8571428571;
  font-weight: 400;
  line-height: 1.625rem;
  color: #000000;
  margin-top: 0.625rem;
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .p-single-model-course__spot-desc {
    font-size: 1.125rem;
    line-height: 2;
    margin-top: 1rem;
  }
}

.p-single-model-course__spot-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9375rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-single-model-course__spot-btns {
    margin-top: 1.25rem;
    flex-direction: row;
    align-items: flex-start;
    padding-top: 1.875rem;
    margin-top: auto;
    gap: 1.4375rem;
  }
}

.p-single-model-course__spot-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9375rem;
  max-width: 14.1875rem;
  width: 100%;
  height: 2.75rem;
  background: #fff;
  border: 0.0625rem solid #0370bb;
  border-radius: 1.375rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
  padding-inline: 1.5rem 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-single-model-course__spot-btn {
    max-width: 100%;
    gap: 0.125rem;
  }
}
.p-single-model-course__spot-btn:hover {
  opacity: 0.7;
}

.p-single-model-course__spot-btn-text {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .p-single-model-course__spot-btn-text {
    font-size: 0.9375rem;
  }
}

.p-single-model-course__spot-btn-icon {
  width: 1.875rem;
  height: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.p-single-model-course__spot-btn-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.p-single-model-course__spot-btn--official .p-single-model-course__spot-btn-icon {
  border-radius: 50%;
  background: linear-gradient(135deg, #26d0ce 0%, #2c77bc 100%);
  position: relative;
}

.p-single-model-course__spot-btn--official .p-single-model-course__spot-btn-icon::after {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  background-color: #fff;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M10.5 6.5v4a1 1 0 01-1 1h-8a1 1 0 01-1-1v-8a1 1 0 011-1h4M8 1h3v3M5.5 6.5L11 1' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M10.5 6.5v4a1 1 0 01-1 1h-8a1 1 0 01-1-1v-8a1 1 0 011-1h4M8 1h3v3M5.5 6.5L11 1' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

@media screen and (min-width: 768px) {
  .p-single-model-course__recommend {
    margin-right: calc(50% - 50vw + 6.25rem);
  }
}

@media screen and (min-width: 768px) {
  .p-single-sightseeing__main-wrap {
    padding-bottom: 6.25rem;
  }
}

.p-single-sightseeing__hashtags {
  margin-top: 1.25rem;
  margin-right: calc(50% - 50vw + 3.125rem);
}
@media screen and (min-width: 768px) {
  .p-single-sightseeing__hashtags {
    margin-top: 3.125rem;
    margin-right: 0;
  }
}

.p-single-sightseeing__gallery {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-single-sightseeing__gallery {
    margin-top: 3.125rem;
  }
}

.p-single-sightseeing__gallery-main {
  width: 100%;
  overflow: hidden;
}

.p-single-sightseeing__gallery-main .swiper-slide img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1200/800;
  object-fit: cover;
}

.p-single-sightseeing__gallery-thumbs-wrap {
  position: relative;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-single-sightseeing__gallery-thumbs-wrap {
    margin-top: 3.125rem;
  }
}

.p-single-sightseeing__gallery-thumbs {
  width: 100%;
  overflow: hidden;
}
.p-single-sightseeing__gallery-thumbs .swiper-slide {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.p-single-sightseeing__gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.p-single-sightseeing__gallery-thumbs .swiper-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 279/186;
  object-fit: cover;
}

.p-single-sightseeing__gallery-prev,
.p-single-sightseeing__gallery-next {
  position: absolute;
  top: 50%;
  width: 1.8125rem;
  aspect-ratio: 1/1;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-single-sightseeing__gallery-prev,
  .p-single-sightseeing__gallery-next {
    width: 3.375rem;
  }
}
.p-single-sightseeing__gallery-prev:hover,
.p-single-sightseeing__gallery-next:hover {
  opacity: 0.7;
}
.p-single-sightseeing__gallery-prev:disabled,
.p-single-sightseeing__gallery-next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.p-single-sightseeing__gallery-prev svg,
.p-single-sightseeing__gallery-next svg {
  width: 100%;
  height: 100%;
  display: block;
}

.p-single-sightseeing__gallery-prev {
  left: 0;
  transform: translateX(-50%) translateY(-50%);
}

.p-single-sightseeing__gallery-next {
  right: 0;
  transform: translateX(50%) translateY(-50%);
}

.p-single-sightseeing__content {
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-single-sightseeing__content {
    margin-top: 3.75rem;
  }
}

.p-single-sightseeing__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0em;
  color: #1e59bf;
}
@media screen and (min-width: 768px) {
  .p-single-sightseeing__title {
    font-size: 2rem;
    line-height: 1.5625;
  }
}

.p-single-sightseeing__body {
  margin-top: 0.9375rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8571428571;
  color: #000000;
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .p-single-sightseeing__body {
    margin-top: 1.125rem;
    font-size: 1.125rem;
    line-height: 2.2222222222;
  }
}

.p-single-sightseeing__info {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-single-sightseeing__info {
    margin-top: 4rem;
  }
}

.p-single-sightseeing__info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-single-sightseeing__info-list {
    gap: 2.25rem;
  }
}

.p-single-sightseeing__info-item {
  display: flex;
  flex-direction: column;
}

.p-single-sightseeing__info-term {
  display: flex;
  align-items: center;
  padding: 0.6875rem 0.8125rem;
  background-color: #f2f7fb;
  border-left: 0.375rem solid #1e59bf;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  color: #1e59bf;
}
@media screen and (min-width: 768px) {
  .p-single-sightseeing__info-term {
    padding: 1.125rem 1.0625rem;
    border-left-width: 0.625rem;
    font-size: 1.5rem;
  }
}

.p-single-sightseeing__info-desc {
  margin-top: 0.625rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: #000000;
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .p-single-sightseeing__info-desc {
    margin-top: 1.125rem;
    font-size: 1.125rem;
    line-height: 1.8888888889;
  }
}
.p-single-sightseeing__info-desc > * {
  margin-top: 1em;
}
.p-single-sightseeing__info-desc > *:first-child {
  margin-top: 0;
}
.p-single-sightseeing__info-desc ul {
  list-style: disc;
  padding-left: 1.5em;
}
.p-single-sightseeing__info-desc ol {
  list-style: decimal;
  padding-left: 1.5em;
}
.p-single-sightseeing__info-desc blockquote {
  border-left: 4px solid #ccc;
  margin: 1em 0;
  padding-left: 1em;
}
.p-single-sightseeing__info-desc a {
  text-decoration: underline;
}
.p-single-sightseeing__info-desc a:hover {
  text-decoration: none;
}

.p-single-sightseeing__map {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-single-sightseeing__map {
    margin-top: 8.75rem;
    margin-right: calc(50% - 50vw + 6.25rem);
  }
}

.p-single-sightseeing__map-header {
  text-align: center;
}
.p-single-sightseeing__map-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  color: #1e59bf;
}
@media screen and (min-width: 768px) {
  .p-single-sightseeing__map-title {
    font-size: 2.875rem;
  }
}

.p-single-sightseeing__map-container {
  margin-left: 0;
  margin-right: 0;
  overflow: hidden;
  margin-top: 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-single-sightseeing__map-container {
    margin-top: 3.125rem;
  }
}

.p-single-sightseeing__map-container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 390/89;
  object-fit: cover;
  background: url(../images/common/iframe-mask-sp.webp) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .p-single-sightseeing__map-container::before {
    background: url(../images/common/iframe-mask.webp) no-repeat center center/cover;
    aspect-ratio: 1920/187;
  }
}

.p-single-sightseeing__map-container iframe {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 340/482;
}
@media screen and (min-width: 768px) {
  .p-single-sightseeing__map-container iframe {
    aspect-ratio: 1820/1140;
    border-top-right-radius: 3.125rem;
  }
}

.p-single-sightseeing__map-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 0.875rem;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-single-sightseeing__map-buttons {
    gap: 2.5rem;
    margin-top: 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-single-sightseeing__recommend {
    margin-right: calc(50% - 50vw + 6.25rem);
  }
}

.p-single-topics {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}

.p-single-topics__title {
  border-bottom: 1px solid #222;
  padding-bottom: 0.75rem;
  text-align: center;
}
.p-single-topics__main {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main {
    margin-top: 2.5rem;
  }
}

.p-single-topics__main-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-title {
    font-size: 2rem;
  }
}

.p-single-topics__meta {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__meta {
    margin-top: 1.25rem;
  }
}

.p-single-topics__meta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-single-topics__meta-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.p-single-topics__meta-category {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ed1c24;
  border: 1px solid #ed1c24;
  padding: 0.125rem 0.75rem;
  border-radius: 9999px;
}
@media screen and (min-width: 768px) {
  .p-single-topics__meta-category {
    font-size: 1rem;
  }
}

.p-single-topics__meta-text {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-single-topics__meta-text {
    font-size: 1.125rem;
  }
}

.p-single-topics__btn-wrapper {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-single-topics__btn-wrapper {
    margin-top: 3.75rem;
  }
}

.p-single-topics__btn {
  width: 15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 3.75rem;
  background: #222;
  border-radius: 9999px;
}

.p-single-topics__icon {
  position: absolute;
  content: "";
  width: 1.5rem;
  height: auto;
  aspect-ratio: 12/24;
  object-fit: cover;
  top: 54%;
  left: 0.375rem;
  transform: translateY(-50%);
}

.p-single-topics__btn-text {
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__btn-text {
    font-size: 1.125rem;
  }
}

.p-single-topics__icon--right {
  right: 0.375rem;
  left: initial;
}

/* 段落 */
.p-single-topics__main-content p {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.7142857143;
  color: #222;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-content p {
    font-size: 1rem;
    margin-top: 1rem;
  }
}

/* 見出し */
.p-single-topics__main-content h2 {
  font-size: 1.5rem;
  color: #222;
  position: relative;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-content h2 {
    margin-top: 2rem;
    font-size: 2rem;
  }
}

.p-single-topics__main-content h2::before {
  position: absolute;
  content: "";
  background: #222;
  width: 100%;
  height: 2px;
  bottom: -0.25rem;
  left: 0;
  right: 0;
}

.p-single-topics__main-content h3 {
  font-size: 1.25rem;
  margin-top: 1.25rem;
  position: relative;
  padding-left: 1rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-content h3 {
    margin-top: 1.5rem;
    font-size: 1.75rem;
  }
}

.p-single-topics__main-content h3::before {
  position: absolute;
  content: "";
  background: #ed1c24;
  width: 0.25rem;
  left: 0;
  top: 0;
  bottom: 0;
}

.p-single-topics__main-content h4 {
  font-size: 1.125rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-content h4 {
    margin-top: 1.25rem;
    font-size: 1.25rem;
  }
}

.p-single-topics__main-content h5 {
  font-size: 1rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-content h5 {
    margin-top: 1.25rem;
    font-size: 1.125rem;
  }
}

/* リスト */
.p-single-topics__main-content ul {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-content ul {
    margin-top: 1rem;
  }
}

.p-single-topics__main-content ul li {
  list-style: disc;
  margin-left: 1rem;
}

.p-single-topics__main-content ol {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-content ol {
    margin-top: 1rem;
  }
}

.p-single-topics__main-content ol li {
  list-style: decimal;
  margin-left: 1rem;
}

/* リンク */
.p-single-topics__main-content a {
  color: #ed1c24;
  text-decoration: underline;
  font-size: 1rem;
}

/* 画像 */
.p-single-topics__main-content img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-content img {
    margin-top: 1rem;
  }
}

/* 囲み系（Gutenbergブロックでよく出る） */
.p-single-topics__main-content figure {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-content figure {
    margin-top: 1rem;
  }
}

.p-single-topics__main-content figcaption {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #222;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-content figcaption {
    margin-top: 1rem;
  }
}

/* 引用 */
/* テーブル */
.p-single-topics__main-content table {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-single-topics__main-content table {
    margin-top: 1rem;
  }
}

/* コード */
/* ボタン */
/* キャプション（画像などのキャプションに出る） */
/* スペーサー（余白ブロック） */
/* グループ（グループ化ブロック） */
/* カラム系 */
/* ギャラリー */
.p-sitemap {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-sitemap {
    margin-top: 1.875rem;
  }
}

.p-sitemap__list {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-sitemap__list {
    grid-template-columns: 1fr 1fr;
    column-gap: 3.125rem;
    row-gap: 1.875rem;
  }
}

.p-sitemap__item {
  min-width: 0;
}

.p-sitemap__link {
  position: relative;
  display: flex;
  align-items: center;
  border: 0.1875rem solid #07ada7;
  background: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
  padding: 0 0.625rem;
  height: 2.875rem;
}
@media screen and (min-width: 768px) {
  .p-sitemap__link {
    height: 3.75rem;
    padding: 0 1.25rem;
  }
}

.p-sitemap__text {
  font-weight: 700;
  line-height: 2.2727272727;
  color: #07ada7;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-sitemap__text {
    font-size: 1.375rem;
  }
}

.p-sitemap__link::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 0.125rem solid #07ada7;
  border-bottom: 0.125rem solid #07ada7;
  transform: translateY(-50%) rotate(-45deg);
  right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-sitemap__link::after {
    right: 1.25rem;
  }
}

@media (any-hover: hover) {
  .p-sitemap__link:hover {
    opacity: 0.7;
  }
}
.p-slider-event {
  position: relative;
  margin-top: 3.125rem;
  overflow-x: clip;
  padding-top: 1.875rem;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-slider-event {
    padding-top: 3.5625rem;
    padding-bottom: 3.75rem;
    margin-top: 8.4375rem;
    margin-bottom: 6.25rem;
  }
}

.p-slider-event::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(38, 208, 206, 0.2), rgba(44, 119, 188, 0.2));
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-slider-event::before {
    right: 6.25rem;
    border-top-right-radius: 3.125rem;
  }
}

.p-slider-event__content {
  position: relative;
}

.p-slider-event__slider {
  position: relative;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-slider-event__slider {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 3.125rem;
  }
}

.slider-event-recommend {
  position: relative;
  overflow: visible !important;
  padding-bottom: 1.875rem !important;
}
@media screen and (min-width: 768px) {
  .slider-event-recommend {
    padding-bottom: 1rem !important;
  }
}

.p-slider-event__nav {
  position: absolute;
  top: 50%;
  width: 1.8125rem;
  height: 1.8125rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
  transform: translateY(-50%);
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-slider-event__nav {
    width: 3.375rem;
    height: 3.375rem;
  }
}
.p-slider-event__nav:hover {
  opacity: 0.7;
}
.p-slider-event__nav.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.p-slider-event__nav svg {
  width: 100%;
  height: 100%;
  display: block;
}

.p-slider-event__nav--prev {
  left: -1rem;
}
@media screen and (min-width: 768px) {
  .p-slider-event__nav--prev {
    left: 1.375rem;
  }
}

.p-slider-event__nav--next {
  right: -1rem;
}
@media screen and (min-width: 768px) {
  .p-slider-event__nav--next {
    right: 1.375rem;
  }
}

.p-slider-event .slider-event-recommend .swiper-wrapper {
  align-items: stretch;
}

.p-slider-event .slider-event-recommend .swiper-slide {
  height: auto;
  display: flex;
}

.p-slider-event .p-sightseeing-archive__event-item {
  display: flex;
  width: 100%;
}

.p-slider-event .p-event__slider-link {
  width: 100%;
  height: 100%;
}

.p-top-information {
  position: relative;
  padding-bottom: 4.375rem;
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-top-information {
    padding-bottom: 10.9375rem;
    padding-top: 5.75rem;
  }
}

.p-top-information::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: url(../images/top/top_news_bg_sp.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 390/395;
  object-fit: cover;
  width: 100%;
  z-index: -1;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-top-information::before {
    aspect-ratio: 1920/986;
    width: 100%;
    height: auto;
    object-fit: cover;
    top: -8.75rem;
    background: url(../images/top/top_news_bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}

.p-top-information::after {
  position: absolute;
  content: "";
  background: url(../images/top/top_news_bottom.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 1920/233;
  object-fit: cover;
  width: 100%;
  height: auto;
  bottom: -2rem;
  left: 0;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .p-top-information__content {
    display: flex;
    gap: 9.8125rem;
  }
}

.p-top-information__btn {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-top-information__btn {
    display: block;
    margin-top: 3.25rem;
  }
}

.p-top-information__btn--sp {
  margin-top: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-top-information__btn--sp {
    display: none;
  }
}

.p-top-information__right {
  margin-top: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .p-top-information__right {
    flex: 1;
  }
}

.p-top-information__link {
  border-bottom: 1px solid #c9c9c9;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-top-information__link {
    display: flex;
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
    gap: 1.5rem;
  }
}

.p-top-information__list:first-child .p-top-information__link {
  padding-top: initial;
}

.p-top-information__meta {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-top-information__meta {
    gap: 1.5rem;
  }
}

.p-top-information__time {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 2.5;
  color: #000;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-top-information__time {
    font-size: 1.25rem;
  }
}

.p-top-information__category {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 2px solid rgba(0, 73, 157, 0.2);
  font-weight: 700;
  line-height: 3.125;
  color: #00499d;
  font-weight: 500;
  width: 7.6875rem;
  height: 1.9375rem;
  font-size: 0.875rem;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-top-information__category {
    font-size: 1rem;
    width: 8.4375rem;
    height: 2.1875rem;
  }
}

.p-top-information__news-title {
  color: #000;
  font-weight: 400;
  text-decoration: underline;
  font-size: 1rem;
  line-height: 1.875;
  margin-top: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-top-information__news-title {
    margin-top: initial;
    line-height: 2.7777777778;
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-links {
    margin-top: 5rem;
  }
}

.p-top-links__inner {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-top-links__inner {
    width: calc(100% - 6.25rem);
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.p-top-links__lists {
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-top-links__lists {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
}

.p-top-links__link {
  display: block;
  position: relative;
}

.p-top-links__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.p-top-links__detail {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 1.25rem;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-top-links__detail {
    transform: translate(-50%, -50%);
    left: 50%;
    justify-content: center;
    gap: 0.625rem;
    flex-direction: column;
  }
}

.p-top-links__detail-icon {
  width: 100%;
  max-width: 4.6875rem;
}
@media screen and (min-width: 768px) {
  .p-top-links__detail-icon {
    margin-left: auto;
    margin-right: auto;
    max-width: 7.8125rem;
  }
}

.p-top-links__detail-icon img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.p-top-links__detail-block {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-top-links__detail-block {
    display: block;
  }
}

.p-top-links__detail-title {
  color: #fff;
  font-weight: 500;
  font-size: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-top-links__detail-title {
    text-align: center;
    font-size: 2.625rem;
  }
}

.p-top-links__detail-en {
  font-family: "Corinthia", cursive;
  font-weight: 700;
  color: #fff;
  margin-top: 0.5rem;
  font-size: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .p-top-links__detail-en {
    text-align: center;
    font-size: 1.875rem;
    margin-top: 0.1875rem;
  }
}

.p-totop {
  position: fixed;
  bottom: 0;
  right: 0;
}

.p-totop__link {
  display: inline-block;
  width: 3.125rem;
  height: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-totop__link {
    width: 6.25rem;
    height: 6.25rem;
  }
}

.p-totop__link img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.c-breadcrumbs {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-breadcrumbs {
    display: block;
    margin-top: 1.875rem;
  }
}

.c-breadcrumbs__lists {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: end;
}

.c-breadcrumbs__list {
  font-size: 0.75rem;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .c-breadcrumbs__list {
    font-size: 0.875rem;
  }
}

.c-breadcrumbs__list + .c-breadcrumbs__list {
  margin-left: 0.625rem;
}

.c-breadcrumbs__link {
  display: inline-flex;
  align-items: center;
  padding-left: 0.375rem;
  padding-right: 0.375rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.04em;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .c-breadcrumbs__link {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-size: 0.875rem;
  }
}

.c-breadcrumbs__home-icon {
  width: 0.984375rem;
  height: 0.765625rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.c-breadcrumbs__home-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.c-breadcrumbs__home-text {
  margin-left: 0.3125rem;
}

.c-breadcrumbs__arrow-icon {
  width: 0.351875rem;
  height: 0.546875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.c-breadcrumbs__arrow-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.c-btn-gradient-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  border: 0.0625rem solid #0370bb;
  border-radius: 624.9375rem;
  background: #fff;
  padding-inline: 1.5625rem 0.4375rem;
  padding-block: 0.375rem;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-btn-gradient-arrow {
    padding-block: 0.4375rem;
  }
}

.c-btn-gradient-arrow:hover {
  opacity: 0.7;
}

.c-btn-gradient-arrow__text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #000000;
  letter-spacing: 0em;
}

.c-btn-gradient-arrow__icon {
  width: 1.875rem;
  height: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c-btn-gradient-arrow__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.c-btn-gradient-arrow--md {
  gap: 0.9375rem;
  padding-inline: 1.625rem 0.5625rem;
  padding-block: 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-btn-gradient-arrow--md {
    padding-inline: 1.5rem 0.4375rem;
    padding-block: 0.5rem;
  }
}

.c-btn-gradient-arrow--md .c-btn-gradient-arrow__text {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-btn-gradient-arrow--md .c-btn-gradient-arrow__text {
    font-size: 1.125rem;
  }
}

.c-btn-gradient-arrow--lg {
  gap: 1rem;
  padding-inline: 1.75rem 0.625rem;
  padding-block: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-btn-gradient-arrow--lg {
    padding-inline: 2rem 0.75rem;
    padding-block: 0.75rem;
  }
}

.c-btn-gradient-arrow--lg .c-btn-gradient-arrow__text {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-btn-gradient-arrow--lg .c-btn-gradient-arrow__text {
    font-size: 1.25rem;
  }
}

.c-btn-gradient-arrow--lg .c-btn-gradient-arrow__icon {
  width: 2.125rem;
  height: 2.125rem;
}
@media screen and (min-width: 768px) {
  .c-btn-gradient-arrow--lg .c-btn-gradient-arrow__icon {
    width: 2.375rem;
    height: 2.375rem;
  }
}

.c-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.9375rem;
  border: 1px solid #0370bb;
  border-radius: 9999px;
  padding-left: 1.5625rem;
  padding-top: 0.4375rem;
  padding-bottom: 0.4375rem;
  padding-right: 0.4375rem;
  transition: 0.3s ease-in-out;
}

.c-btn__text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #000;
}

.c-btn__svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .c-btn__svg {
    width: 1.875rem;
    height: 1.875rem;
  }
}
.c-btn__svg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.c-hashtag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-hashtag-list {
    justify-content: center;
    gap: 0.25rem;
  }
}
@media screen and (min-width: 1000px) {
  .c-hashtag-list {
    gap: 0.625rem;
  }
}

.c-hashtag-list__item {
  display: inline-block;
  padding: 0.3125rem 0.9375rem;
  border: 2px solid #07ada7;
  border-radius: 9999px;
  background: #fff;
  font-size: 0.625rem;
  line-height: 1;
  font-weight: 500;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .c-hashtag-list__item {
    font-size: 1rem;
    line-height: 1.3125;
    padding: 0.5rem 1.5625rem;
  }
}

.c-hashtag-list__symbol {
  color: #07ada7;
}

.c-hashtag-list__link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.c-hashtag-list__link:hover {
  opacity: 0.7;
}

.c-lower-mv__content {
  width: calc(100% - 3.125rem);
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-lower-mv__content {
    width: calc(100% - 6.25rem);
  }
}

.c-lower-mv__img {
  position: relative;
}

.c-lower-mv__img img,
.c-lower-mv__img video {
  object-fit: cover;
  width: 100%;
  height: auto;
  border-top-right-radius: 3.125rem;
  aspect-ratio: 340/497;
  vertical-align: bottom;
}
@media screen and (min-width: 768px) {
  .c-lower-mv__img img,
  .c-lower-mv__img video {
    aspect-ratio: 1820/994;
    border-top-right-radius: 6.25rem;
  }
}

.c-lower-mv__badge {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: block;
}

.c-lower-mv__badge--sightseeing {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(135deg, #26d0ce 0%, #2c77bc 100%);
  border-radius: 0 1.25rem 0 0;
}
@media screen and (min-width: 768px) {
  .c-lower-mv__badge--sightseeing {
    padding: 1.375rem 4.75rem;
    gap: 1.25rem;
  }
}

.c-lower-mv__badge-icon {
  width: 3.3125rem;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .c-lower-mv__badge-icon {
    width: 5rem;
  }
}

.c-lower-mv__badge-icon img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 0rem;
}

.c-lower-mv__badge-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-lower-mv__badge-detail {
    display: flex;
    gap: 1.25rem;
  }
}

.c-lower-mv__badge-text {
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.0416666667;
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .c-lower-mv__badge-text {
    line-height: 1.3529411765;
    font-size: 2.875rem;
  }
}

.c-lower-mv__badge-en {
  font-family: "Corinthia", cursive;
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .c-lower-mv__badge-en {
    font-size: 1.5rem;
    line-height: 1.4166666667;
    margin-top: 0.875rem;
  }
}

.c-lower-section-title {
  color: #1e59bf;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25rem;
  text-align: center;
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .c-lower-section-title {
    font-size: 2.875rem;
  }
}

.c-lower-section-title--lg {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-lower-section-title--lg {
    font-size: 2.875rem;
  }
}

.c-lower-section-title--sm {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-lower-section-title--sm {
    font-size: 2.875rem;
  }
}

.c-lower-section-title::after {
  content: "";
  display: block;
  width: 8.4375rem;
  aspect-ratio: 122.11/10;
  margin: 0.875rem auto 0;
  background-image: url("../images/common/title-wave.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .c-lower-section-title::after {
    width: 12.5rem;
    aspect-ratio: 170.95/13.04;
    margin-top: 1.25rem;
  }
}

.c-lower-section-title.c-lower-section-title--lg::after {
  width: 10.125rem;
  margin: 0.8125rem auto 0;
}
@media screen and (min-width: 768px) {
  .c-lower-section-title.c-lower-section-title--lg::after {
    width: 12.5rem;
    margin: 0.875rem auto 0;
  }
}

.c-lower-section-title.c-lower-section-title--sm::after {
  width: 9.375rem;
  margin: 0.75rem auto 0;
}
@media screen and (min-width: 768px) {
  .c-lower-section-title.c-lower-section-title--sm::after {
    width: 12.5rem;
    margin-top: 1rem;
  }
}

.c-lower-section-title__ja {
  color: #1e59bf;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.2777777778;
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  .c-lower-section-title__ja {
    font-size: 2.875rem;
  }
}

.c-page-header__lead {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0em;
  line-height: 1.8571428571;
}
@media screen and (min-width: 768px) {
  .c-page-header__lead {
    font-size: 1.125rem;
    line-height: 2.2222222222;
    margin-top: 2.625rem;
  }
}

.c-page-mv__content {
  width: calc(100% - 3.125rem);
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-page-mv__content {
    width: calc(100% - 6.25rem);
  }
}

.c-page-mv__img img {
  object-fit: cover;
  width: 100%;
  height: auto;
  border-top-right-radius: 3.125rem;
  aspect-ratio: 340/200;
}
@media screen and (min-width: 768px) {
  .c-page-mv__img img {
    aspect-ratio: 1820/500;
    border-top-right-radius: 6.25rem;
  }
}

.c-page-mv__img--event-thumbnail img {
  object-position: top;
  filter: blur(2px);
}

.c-page-mv__badge {
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(135deg, #26d0ce 0%, #2c77bc 100%);
  border-radius: 0 1.25rem 0 0;
  opacity: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 1.1875rem;
  padding-block: 0.59375rem;
}
@media screen and (min-width: 768px) {
  .c-page-mv__badge {
    padding-inline: 4.5rem;
    padding-block: 0.875rem;
    opacity: 0.95;
  }
}

.c-page-mv__badge-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .c-page-mv__badge-text {
    font-size: 2.75rem;
  }
}

.c-page-mv__title-box {
  position: absolute;
  background: #fff;
  bottom: 0;
  left: 0;
  opacity: 0.75;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  border-radius: 0 1.25rem 0 0;
}
@media screen and (min-width: 768px) {
  .c-page-mv__title-box {
    border-radius: 0;
    bottom: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 1.125rem 4.6875rem 1.5rem;
  }
}

.c-page-mv__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c7fbd;
  line-height: 1.25;
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .c-page-mv__title {
    font-size: 2.75rem;
    line-height: 1.2941176471;
  }
}

.c-pagination__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.c-pagination__item {
  list-style: none;
}

.c-pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6875rem;
  height: 1.6875rem;
  border-radius: 0;
  border: 0.0625rem solid #1e59bf;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1e59bf;
  text-decoration: none;
  letter-spacing: 0em;
  transition: background-color 0.3s, color 0.3s, opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .c-pagination__link {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.25rem;
  }
}

.c-pagination__link:hover {
  background: #1e59bf;
  color: #fff;
  opacity: 1;
}

.c-pagination__link.current {
  background: #1e59bf;
  color: #fff;
}

.c-pagination__link.dots {
  border: none;
  background: transparent;
}

.c-pagination__link.dots:hover {
  background: transparent;
  color: #1e59bf;
}

.c-pagination__link svg {
  width: 0.5rem;
  height: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-pagination__link svg {
    width: 0.625rem;
    height: 1rem;
  }
}

.c-pagination__link.first svg,
.c-pagination__link.last svg {
  width: 0.875rem;
  height: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-pagination__link.first svg,
  .c-pagination__link.last svg {
    width: 1rem;
    height: 1rem;
  }
}

.c-section-title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-section-title {
    text-align: left;
  }
}

.c-section-title__ja {
  color: #1e59bf;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  .c-section-title__ja {
    font-size: 2.875rem;
  }
}

.c-section-title__en {
  color: #000000;
  font-family: "Sen", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-section-title__en {
    margin-top: 0.875rem;
    font-size: 1rem;
  }
}

.c-single-recommend {
  position: relative;
  margin-top: 3.125rem;
  padding: 1.875rem 0;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .c-single-recommend {
    margin-top: 8.4375rem;
    padding: 3.75rem 0;
  }
}

.c-single-recommend__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(38, 208, 206, 0.2), rgba(44, 119, 188, 0.2));
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .c-single-recommend__bg {
    border-top-right-radius: 3.125rem;
  }
}

.c-single-recommend__inner {
  text-align: center;
}

.c-single-recommend__slider-wrap {
  position: relative;
  margin-top: 1.875rem;
  padding-inline: 1.25rem;
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .c-single-recommend__slider-wrap {
    margin-top: 2.5rem;
    padding-inline: 16.1458333333vw;
  }
}

.c-single-recommend__slider.swiper {
  overflow: visible;
}
.c-single-recommend__slider.swiper .swiper-wrapper {
  align-items: stretch;
}
.c-single-recommend__slider.swiper .swiper-slide {
  height: auto;
}
@media screen and (min-width: 768px) {
  .c-single-recommend__slider.swiper .swiper-slide {
    width: 22.375rem;
  }
}

.c-single-recommend__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 3px 3px 0 #0973ce;
  text-decoration: none;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.c-single-recommend__card:hover {
  opacity: 0.8;
}

.c-single-recommend__card-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 350/256;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .c-single-recommend__card-img img {
    aspect-ratio: 358/256;
  }
}

.c-single-recommend__card-body {
  flex: 1;
  padding: 1rem 1.25rem 1.5625rem;
}
@media screen and (min-width: 768px) {
  .c-single-recommend__card-body {
    padding: 1rem 1.5625rem 1.5rem;
  }
}

.c-single-recommend__card-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  color: #1e59bf;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-single-recommend__card-title {
    font-size: 1.625rem;
    line-height: 1.6923076923;
  }
}

.c-single-recommend__card-text {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.7333333333;
  color: #000000;
  text-align: left;
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .c-single-recommend__card-text {
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 1.625;
  }
}

.c-single-recommend__prev,
.c-single-recommend__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.875rem;
  height: 1.875rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .c-single-recommend__prev,
  .c-single-recommend__next {
    width: 3.375rem;
    height: 3.375rem;
  }
}
.c-single-recommend__prev svg,
.c-single-recommend__next svg {
  width: 100%;
  height: 100%;
  display: block;
}

.c-single-recommend__prev:hover,
.c-single-recommend__next:hover {
  opacity: 0.7;
}

.c-single-recommend__prev {
  left: 0.375rem;
}
@media screen and (min-width: 768px) {
  .c-single-recommend__prev {
    left: 1.25rem;
  }
}

.c-single-recommend__next {
  right: 0.375rem;
}
@media screen and (min-width: 768px) {
  .c-single-recommend__next {
    right: 1.625rem;
  }
}

.c-single-recommend__btn-wrap {
  margin-top: 1.875rem;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .c-single-recommend__btn-wrap {
    margin-top: 2.5rem;
  }
}

.c-single-recommend2 {
  position: relative;
  margin-top: 3.125rem;
  padding: 1.875rem 0;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .c-single-recommend2 {
    margin-top: 8.4375rem;
    padding: 3.75rem 0;
  }
}

.c-single-recommend2__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(38, 208, 206, 0.2), rgba(44, 119, 188, 0.2));
  border-top-right-radius: 1.875rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .c-single-recommend2__bg {
    border-top-right-radius: 3.125rem;
  }
}

.c-single-recommend2__inner {
  text-align: center;
}

.c-single-recommend2__slider-wrap {
  position: relative;
  margin-top: 1.875rem;
  padding-inline: 1.25rem;
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .c-single-recommend2__slider-wrap {
    margin-top: 3.125rem;
    padding-inline: 16.1458333333vw;
  }
}

.c-single-recommend2__slider.swiper {
  overflow: visible;
}
.c-single-recommend2__slider.swiper .swiper-wrapper {
  align-items: stretch;
}
.c-single-recommend2__slider.swiper .swiper-slide {
  height: auto;
}
@media screen and (min-width: 768px) {
  .c-single-recommend2__slider.swiper .swiper-slide {
    width: 22.375rem;
  }
}

.c-single-recommend2__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #f2f7fb;
  border-radius: 1.875rem;
  box-shadow: 3px 3px 0 #0973ce;
  text-decoration: none;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-single-recommend2__card {
    background-color: #fff;
  }
}

.c-single-recommend2__card:hover {
  opacity: 0.8;
}

.c-single-recommend2__card-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 350/256;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .c-single-recommend2__card-img img {
    aspect-ratio: 358/256;
  }
}

.c-single-recommend2__card-body {
  flex: 1;
  padding: 1rem 1.25rem 1.5625rem;
}
@media screen and (min-width: 768px) {
  .c-single-recommend2__card-body {
    padding: 1rem 1.5625rem 1.5rem;
  }
}

.c-single-recommend2__card-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-single-recommend2__card-head {
    gap: 0.5rem 1.875rem;
  }
}

.c-single-recommend2__card-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 2.2;
  color: #1e59bf;
  letter-spacing: 0em;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .c-single-recommend2__card-title {
    font-size: 1.625rem;
    line-height: 1.6923076923;
  }
}

.c-single-recommend2__card-tag {
  background: #1e59bf;
  border: 0.0625rem solid #1e59bf;
  padding-top: 0.34375rem;
  padding-bottom: 0.34375rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .c-single-recommend2__card-tag {
    font-size: 1rem;
  }
}

.c-single-recommend2__card-text {
  margin-top: 0.875rem;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.7333333333;
  color: #000000;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .c-single-recommend2__card-text {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.c-single-recommend2__prev,
.c-single-recommend2__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.875rem;
  height: 1.875rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .c-single-recommend2__prev,
  .c-single-recommend2__next {
    width: 3.375rem;
    height: 3.375rem;
  }
}
.c-single-recommend2__prev svg,
.c-single-recommend2__next svg {
  width: 100%;
  height: 100%;
  display: block;
}

.c-single-recommend2__prev:hover,
.c-single-recommend2__next:hover {
  opacity: 0.7;
}

.c-single-recommend2__prev {
  left: 0.375rem;
}
@media screen and (min-width: 768px) {
  .c-single-recommend2__prev {
    left: 1.25rem;
  }
}

.c-single-recommend2__next {
  right: 0.375rem;
}
@media screen and (min-width: 768px) {
  .c-single-recommend2__next {
    right: 1.625rem;
  }
}

.c-single-recommend2__btn-wrap {
  margin-top: 1.875rem;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .c-single-recommend2__btn-wrap {
    margin-top: 3.75rem;
  }
}
