@charset "utf-8";

/* ---------------------------------------------------------------------------------------------

　   COMMON

--------------------------------------------------------------------------------------------- */
.page_title {
  background: var(--news-bg);
}

.page_title .container {
  position: relative;
  display: flex;
  align-items: center;
}

.page_title .container::before {
  content: "";
  position: absolute;
  background: url(../img/logo.png) no-repeat center / contain;
  opacity: 0.18;
  transform: rotate(-20deg);
}

.page_title_inner {
  position: relative;
  padding: 6rem 0;
}

.page_title_en {
  margin: 0 0 0.8rem;
  color: var(--mainColor-red);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.page_title_ja {
  position: relative;
  z-index: 1;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.about #page_links {
  background: none;
}
.links_list li a {
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
}
.links_list li a:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/next.svg) no-repeat center / 100%;
}
.links_link_modelcourse {
  background: url(../img/banner-modelcourse.jpg) no-repeat center / 100%;
}
.links_link_tour {
  background: url(../img/banner-tour.jpg) no-repeat center / 100%;
}
.links_link_book {
  background: url(../img/banner-book.jpg) no-repeat center / 100%;
}
@media only screen and (max-width: 767px) {
  .page_title .container {
    height: 18rem;
  }
  .page_title .container::before {
    right: -2rem;
    top: 2rem;
    width: 17rem;
    height: 17rem;
  }
  .page_title_inner {
    padding: 4.5rem 0;
  }
  .page_title_en {
    font-size: 1.2rem;
  }
  .page_title_ja {
    font-size: 3.6rem;
  }
  #page_links {
    padding: 5rem 0;
    background: url(../img/ph_bg_image_sp.jpg) no-repeat center / cover;
  }
  .links_list li {
    margin-bottom: 2rem;
  }
  .links_list li:last-child {
    margin-bottom: 0;
  }
  .links_list li a {
    height: 14.6rem;
    font-size: 2rem;
    padding: 0 2rem;
    border-radius: 1rem;
  }
  .links_list li a:after {
    width: 3rem;
    height: 3rem;
    right: 1.5rem;
  }
  .page_content {
    padding: 5rem 0;
  }
}
@media print, screen and (min-width: 768px) {
  .page_content {
    padding: 14rem 0;
  }
  .page_title .container {
    height: 32rem;
  }
  .page_title .container::before {
    right: 0;
    top: 4rem;
    bottom: auto;
    width: 38.8rem;
    height: 38.8rem;
  }
  .page_title_en {
    width: 100%;
    font-size: 2rem;
  }
  .page_title_ja {
    /* MOD: */
    /* font-size: 7rem; */
    font-size: 5.5rem;
  }
  #page_links {
    padding: 15rem 0;
    background: url(../img/ph_bg_image.jpg) no-repeat center / cover;
  }
  .links_list {
    display: flex;
    gap: 2.5rem;
    padding: 0 2.5rem;
  }
  .links_list li {
    flex: 1;
  }
  .links_list li a {
    height: 21rem;
    font-size: 2.4rem;
    padding: 0 6rem;
    border-radius: 1.5rem;
  }
  .links_list li a:after {
    width: 4.6rem;
    height: 4.6rem;
    right: 2rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   ABOUT

--------------------------------------------------------------------------------------------- */

/* --- Header --- */
.about #header {
  position: fixed;
  background: transparent;
  box-shadow: none;
  transition:
    background 0.3s,
    box-shadow 0.3s,
    transform 0.25s ease-out;
}

.about #header:after {
  content: none;
}

.about #header:not(.scroll) .h_logo_txt {
  color: #fff;
}

.about #header:not(.scroll) .h_logo_link img {
  filter: brightness(0) invert(1);
}

.about #header.scroll {
  background: #fff;
}

/* --- About MV --- */
.about_mv_bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #111 url("../img/about/mv.jpg") no-repeat center / cover;
  z-index: -1;
}

.about_mv_bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.16);
}

.about_mv_video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.about_mv_video--youtube {
  pointer-events: none;
  transform: scale(1.35);
}

.about #main > * {
  position: relative;
  z-index: 1;
}

#about_mv {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  /* MOD */
  /*
  height: 100vh;
  height: 100svh;
  */
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;

  color: #fff;
}

.about_mv_inner {
  display: flex;
  align-items: center;
}

.about_mv_tit {
  font-weight: 500;
  line-height: 1.6;
  writing-mode: vertical-rl;
  font-family: "Zen Old Mincho", serif;
}

.about_mv_txt {
  font-weight: 500;
}

.about_mv_txt p {
  line-height: 2;
}

.about_mv_txt p + p {
  margin-top: 2.4rem;
}

@media (prefers-reduced-motion: reduce) {
  .about_mv_video {
    display: none;
  }
}

/* --- About Intro --- */
#about_intro {
  position: relative;
  z-index: 3;
  background: var(--bgColor-ivory);
}

.about_intro_tit {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.about_intro_tit::after {
  content: "";
  display: block;
  height: 1px;
  background: var(--textColor-black);
}

.about_intro_list {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about_intro_list img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.about_intro_ph {
  line-height: 0;
}

.about_intro_ph picture,
.about_intro_ph img {
  display: block;
  width: 100%;
  height: auto;
}

/* --- About Union --- */
#about_union {
  position: relative;
  z-index: 1;
  background: #fff;
}

.about_union_map {
  line-height: 0;
}

.about_union_map img {
  display: block;
  width: 100%;
  height: auto;
}

.about_union_tit {
  letter-spacing: 0.05em;
  line-height: 1.6;
  position: relative;
}
.about_union_txt p {
  margin: 0;
  line-height: 2;
}

.about_union_txt p + p {
  margin-top: 2rem;
}

/* --- About Brands --- */
#about_brands {
  position: relative;
  z-index: 1;
  background: #fff;
}

.about_brands_inner {
  position: relative;
}
.about_brands_item {
  background:
    url(../img/about/line.png) repeat-x top left / auto 2.8rem,
    url(../img/about/line.png) repeat-x bottom left / auto 2.8rem #fffded;
}

.about_brands_tit {
  margin: 0;
  color: var(--mainColor-red);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.about_brands_txt {
  margin: 0;
  line-height: 2;
}

.about_brands_logo {
  margin: 0;
  line-height: 0;
}

.about_brands_logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}
/* --- About Enjoy --- */
#about_enjoy .about_enjoy_tit {
  color: #fff;
  text-align: center;
}
#about_enjoy .about_enjoy_tit span {
  display: inline-block;
  position: relative;
}
#about_enjoy .about_enjoy_tit span:before,
#about_enjoy .about_enjoy_tit span:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 4rem;
  height: 5.7rem;
}
#about_enjoy .about_enjoy_tit span:before {
  background: url(../img/about/howto_enjoy_decoL.png) no-repeat center / 100%;
  left: 0;
}
#about_enjoy .about_enjoy_tit span:after {
  background: url(../img/about/howto_enjoy_decoR.png) no-repeat center / 100%;
  right: 0;
}
.about_enjoy_item {
  background: #fff;
  border-radius: 3rem;
  padding: 2.2rem;
}
.about_enjoy_body p {
  margin: 0 0 1em;
}
.about_enjoy_body p:last-child {
  margin-bottom: 0;
}
.about_enjoy_links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
}

@media only screen and (max-width: 767px) {
  /* --- Header --- */
  .about #header.scroll {
    box-shadow: 0 0.2rem 1.5rem rgba(0, 0, 0, 0.1);
  }
  /* --- About MV --- */
  #about_mv {
    padding: 12rem 2.4rem 6rem;
  }

  .about_mv_inner {
    flex-direction: column;
    align-items: center;
    gap: 6rem;
    width: 100%;
  }

  .about_mv_tit {
    font-size: 3rem;
  }

  /* --- About Intro --- */
  #about_intro {
    padding-top: 6rem;
  }

  .about_intro_tit {
    font-size: 2.4rem;
    margin-bottom: 5rem;
  }

  .about_intro_tit::after {
    margin-top: 2rem;
    width: 18rem;
  }

  .about_intro_list img {
    width: 20rem;
  }

  .about_intro_ph {
    /* margin-bottom: -10rem; */
  }

  /* --- About Union --- */
  #about_union {
    /* padding: 8rem 0 6rem; */
    padding: 9rem 0 0;
  }

  .about_union_inner {
    display: flex;
    flex-direction: column;
    gap: 7rem;
  }

  .about_union_tit {
    font-size: 2rem;
    text-align: center;
    padding-bottom: 2rem;
    margin-bottom: 4rem;
  }
  .about_union_tit:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 11.6rem;
    background: #000;
    height: 0.1rem;
  }

  /* --- About Brands --- */
  #about_brands {
    padding: 7rem 0;
  }
  .about_brands_inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
  .about_brands_item {
    background-size: auto 1.4rem;
    padding: 5rem 2.5rem;
    z-index: 2;
  }
  .about_brands_item:last-child {
    z-index: 1;
  }
  .about_brands_item:after {
    content: "";
    position: absolute;
    background: url(../img/about/kakeru.svg) no-repeat center / 100%;
    z-index: 2;
    left: 50%;
    width: 7rem;
    height: 7rem;
    transform: translateX(-50%);
    bottom: -4.7rem;
  }
  .about_brands_item:last-child:after {
    content: none;
  }
  .about_brands_tit {
    font-size: 2rem;
    text-align: center;
  }

  .about_brands_txt {
    margin-top: 3rem;
  }

  .about_brands_logo {
    margin-top: 2.4rem;
  }
  .about_brands_logo img {
    margin: 0 auto;
  }

  .about_brands_logo img {
    width: 7rem;
  }

  .about_brands_logo--areas img {
    width: 100%;
    max-width: 34rem;
  }
  /* --- About Enjoy --- */
  #about_enjoy {
    padding: 10rem 0 0;
  }
  .about_enjoy_tit {
    margin-bottom: 3rem;
  }
  #about_enjoy .about_enjoy_tit span {
    font-size: 3rem;
    padding: 0 6rem;
  }
  .about_enjoy_item {
    margin-bottom: 2rem;
  }
  .about_enjoy_item:last-child {
    margin-bottom: 0;
  }
  .about_enjoy_img {
    margin-bottom: 2rem;
  }
  .about_enjoy_links {
    margin-top: 2rem;
  }
  #enjoy01 .about_enjoy_links {
    gap: 3rem;
  }
  #enjoy01 .about_enjoy_links img {
    height: 5.5rem;
  }
  #enjoy02 .about_enjoy_links img {
    height: 5.5rem;
  }
  #enjoy03 .about_enjoy_links img {
    height: 6.4rem;
  }
}

@media print, screen and (min-width: 768px) {
  /* --- Header --- */
  .about #header:not(.scroll) .h_nav_btn {
    color: #fff;
    border-color: #fff;
  }

  .about #header:not(.scroll) .h_nav_btn::before {
    filter: brightness(0) invert(1);
  }

  .about #header:not(.scroll) .h_nav_link {
    color: #fff;
  }

  .about #header:not(.scroll) .h_nav_links li::before {
    background: #fff;
  }

  .about #header.scroll:after {
    content: "";
  }
  /* --- About MV --- */
  #about_mv {
    min-height: 110rem;
  }

  .about_mv_inner {
    gap: 15rem;
    max-width: 120rem;
  }

  .about_mv_tit {
    font-size: 3.8rem;
    flex-shrink: 0;
    line-height: 1.8;
  }

  .about_mv_txt {
    font-size: 2rem;
    max-width: 79rem;
  }

  /* --- About Intro --- */
  #about_intro {
    padding-top: 12rem;
  }

  .about_intro_tit {
    font-size: 3.8rem;
  }

  .about_intro_tit::after {
    margin-top: 2.4rem;
    width: 49.4rem;
    margin-bottom: 9rem;
  }

  .about_intro_list img {
    width: 36.9rem;
  }

  .about_intro_ph {
    margin-top: -20rem;
  }

  /* --- About Union --- */
  #about_union {
    padding-bottom: 8rem;
  }

  .about_union_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .about_union_map {
    width: 52%;
    padding-left: 5rem;
    margin-top: -6rem;
  }

  .about_union_body {
    width: 46%;
    margin-top: -6rem;
  }

  .about_union_tit {
    font-size: 2.8rem;
    margin-bottom: 4rem;
    border-bottom: 0.1rem solid #000;
    padding-bottom: 0.8rem;
  }

  .about_union_txt {
    font-size: 2rem;
  }

  /* --- About Brands --- */
  #about_brands {
    padding-bottom: 12rem;
  }

  .about_brands_inner {
    display: flex;
    gap: 4rem;
  }

  .about_brands_item {
    flex: 1;
    padding: 10rem 7.5rem 6rem;
  }

  .about_brands_tit {
    font-size: 3rem;
  }

  .about_brands_txt {
    margin-top: 2.4rem;
    font-size: 2rem;
  }

  .about_brands_logo {
    margin-top: 4rem;
  }

  .about_brands_logo img {
    width: 7.4rem;
  }

  .about_brands_logo--areas img {
    width: 100%;
    max-width: 43.4rem;
  }
  .about_brands_inner:after {
    content: "";
    position: absolute;
    background: url(../img/about/kakeru.svg) no-repeat center / 100%;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8.4rem;
    height: 8.4rem;
  }
  /* --- About Enjoy --- */
  #about_enjoy {
    padding: 18rem 0 0;
  }
  .about_enjoy_tit {
    margin-bottom: 10rem;
  }
  #about_enjoy .about_enjoy_tit span {
    padding: 0 8rem;
    font-size: 5rem;
  }
  .about_enjoy_list {
    display: flex;
    gap: 2.4rem;
  }
  .about_enjoy_item {
    flex: 1;
    font-size: 1.8rem;
  }
  .about_enjoy_img {
    margin-bottom: 2.5rem;
  }
  .about_enjoy_links {
    margin-top: 2rem;
  }
  #enjoy01 .about_enjoy_links {
    gap: 4rem;
  }
  #enjoy01 .about_enjoy_links img {
    height: 7rem;
  }
  #enjoy02 .about_enjoy_links img {
    height: 8.4rem;
  }
  #enjoy03 .about_enjoy_links img {
    height: 8.2rem;
  }
}

.jounal #main {
  overflow: visible;
}

.jounal {
  background: var(--jounal-bg);
}
.jounal_title .container {
  position: relative;
}
.jounal_title .container:before {
  content: "";
  background: url(../img/journal/en_title.svg) no-repeat center / contain;
  position: absolute;
}

.jounal_title_inner {
  position: relative;
}

.jounal_title_en {
  margin: 0 0 0.8rem;
  color: var(--mainColor-red);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.jounal_title_ja {
  position: relative;
  z-index: 1;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.jounal_title_lead {
  letter-spacing: 0.15em;
  line-height: 1.8;
  position: relative;
  font-weight: 500;
  /* font-family: "Zen Kaku Gothic Antique", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif; */
}
/* 縦書き時の「…」の左右ずれ対策 */
.jounal_title_lead .tate_punct {
  display: inline-block;
  text-orientation: upright;
}

.jounal_grid {
  position: relative;
}

.jounal_grid_inner {
  display: grid;
  align-items: start;
}

.jounal_sticky {
  position: sticky;
  top: calc(var(--header-height, 12rem) + 2rem);
}

.jounal_scroll_list {
  display: grid;
  gap: 1.6rem;
}

.jounal_pickup_tit {
  letter-spacing: 0.05em;
}

.jounal_pickup_slider {
  display: none;
}

.jounal_pickup_main {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  color: #fff;
  text-decoration: none;
  line-height: 1.5;
}

.jounal_pickup_main_media {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1845 / 1168;
  line-height: 0;
}

.jounal_pickup_main_media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jounal_pickup_main_body {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.6rem;
  padding: 4.8rem 3.2rem 3.2rem;
  background: rgba(0, 0, 0, 0.28);
  box-sizing: border-box;
}

.jounal_pickup_main_meta time {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.jounal_pickup_main_tit {
  margin: 0;
  max-width: 22em;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.jounal_pickup_main_more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18rem;
  margin-top: 0.4rem;
  padding: 1rem 2.8rem;
  border: 1px solid #fff;
  border-radius: 10rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
  transition:
    background 0.3s,
    color 0.3s;
}

.jounal_pickup_main:hover .jounal_pickup_main_more {
  background: #fff;
  color: var(--textColor-black);
}

.jounal_pickup_card {
  position: relative;
  overflow: hidden;
  border-radius: 1.6rem;
}

.jounal_pickup_card_link {
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
}

.jounal_pickup_card_link img {
  display: block;
  width: 100%;
  height: auto;
}

.jounal_pickup_card_body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.28);
}

.jounal_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--mainColor-red);
  color: #fff;
  position: absolute;
  top: 0;
  z-index: 3;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-weight: 500;
  border-radius: 0 0 1rem 1rem;
}

.jounal_pickup_card_meta,
.jounal_pickup_main_meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1.2rem;
}

.jounal_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.jounal_tags li {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.8rem;
  border: 0.1rem solid #fff;
  border-radius: 10rem;
  font-size: 1.1rem;
  line-height: 1.4;
}

.jounal_tags--dark li {
  border-color: var(--textColor-black);
  color: var(--textColor-black);
  background: #fff;
}

.jounal_pickup_card_tit {
  margin: 1rem 0 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
}

.jounal_list_side {
}

.jounal_list_side_label {
  text-align: center;
  letter-spacing: 0.15em;
  position: relative;
}
.jounal_list_side_label:after {
  content: "";
  height: 0.1rem;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.jounal_list_side_tit {
  text-align: center;
  writing-mode: vertical-rl;
  font-weight: 500;
  letter-spacing: 0.3em;
  line-height: 1.4;
}

.jounal_list_count {
  position: relative;
  width: fit-content;
  text-align: center;
  letter-spacing: 0.05em;
  border: 0.1rem solid var(--textColor-black);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-weight: 500;
}
.jounal_list_count span {
  font-weight: 700;
}

.jounal_list_keywords_tit {
  text-align: center;
  font-weight: 500;
}

.jounal_list_filter_toggle {
  display: none;
}

.jounal_list_keywords_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.jounal_list_keywords_list a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.6rem;
  padding: 0.6rem 0.8rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.7);
  border-radius: 1rem;
  text-align: center;
  text-decoration: none;
  transition:
    background 0.3s,
    color 0.3s;
}

.jounal_list_keywords_list a:hover,
.jounal_list_keywords_list a.is-active,
.jounal_list_keywords_list li.is-active > a {
  background: #fff;
}

.jounal_list_search {
  display: flex;
  align-items: center;
  padding: 0 1.6rem;
  border-radius: 10rem;
  background: #fff;
  border: 0.1rem solid #c3c3c3;
}

.jounal_list_search input {
  flex: 1;
  min-width: 0;
  padding: 1.5rem 0;
  border: none;
  background: transparent;
  color: var(--textColor-black);
  font-size: 1.5rem;
  outline: none;
}

.jounal_list_search button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--textColor-black);
  cursor: pointer;
}

.jounal_post_card_link {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  color: inherit;
  text-decoration: none;
}

.jounal_post_thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 1.5rem;
  line-height: 0;
}

.jounal_post_thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.jounal_post_body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}

.jounal_post_body time {
  margin: 0;
  color: var(--mainColor-red);
  font-size: 1.4rem;
  line-height: 1.4;
}

.jounal_post_tit {
  margin: 0;
  font-weight: 500;
  line-height: 1.6;
}

.jounal_post_body .jounal_tags {
  margin-top: 0.4rem;
  padding-top: 0;
}

@media only screen and (max-width: 767px) {
  #jounal_pickup {
    background: #fff;
    padding: 5rem 0;
  }
  .jounal_list_filter {
    overflow: hidden;
    border: 0.1rem solid var(--textColor-black);
    border-radius: 1.2rem;
  }

  .jounal_list_filter_toggle {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 6rem;
    padding: 1.2rem 1.8rem;
    border: 0;
    background: transparent;
    color: var(--textColor-black);
    font-family: inherit;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
  }

  .jounal_list_filter_toggle img {
    flex: 0 0 auto;
    width: 2.2rem;
    height: 2.2rem;
    margin-right: 1.5rem;
  }

  .jounal_list_filter_arrow {
    display: block;
    flex-shrink: 0;
    width: 0.9rem;
    height: 2rem;
    margin-left: auto;
  }

  .jounal_list_filter_arrow::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url("../img/arrow-black.svg") no-repeat center / contain;
    transform: rotate(90deg);
    transition: transform 0.3s;
  }

  .jounal_list_filter_toggle[aria-expanded="true"]
    .jounal_list_filter_arrow::before {
    transform: rotate(-90deg);
  }

  .jounal_list_filter_panel {
    display: grid;
    grid-template-rows: 0fr;
    visibility: hidden;
    opacity: 0;
    transition:
      grid-template-rows 0.45s ease,
      opacity 0.3s ease,
      visibility 0s linear 0.45s;
  }

  .jounal_list_filter_panel_inner {
    min-height: 0;
    overflow: hidden;
    padding: 0 1.8rem;
    transition: padding-bottom 0.45s ease;
  }

  .jounal_list_filter_panel.is-open {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
  }

  .jounal_list_filter_panel.is-open .jounal_list_filter_panel_inner {
    padding-bottom: 2.4rem;
  }

  .jounal_list_keywords_tit {
    margin: 0 0 1.2rem;
    text-align: left;
    font-size: 1.5rem;
  }

  .jounal_list_keywords_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
  }

  .jounal_list_keywords_list a {
    min-height: 3rem;
    padding: 0.4rem 0.6rem;
    font-size: 1.2rem;
  }

  .jounal_list_search {
    position: relative;
    margin-top: 2rem;
    padding: 4.6rem 0 0;
    border: 0;
    border-top: 0.1rem solid #c3c3c3;
    border-radius: 0;
    background: transparent;
  }

  .jounal_list_search::before {
    content: "おすすめキーワード";
    position: absolute;
    top: 1.6rem;
    left: 0;
    font-size: 1.5rem;
    font-weight: 500;
  }

  .jounal_list_search input {
    padding: 1.2rem 1.4rem;
    border: 0.1rem solid #c3c3c3;
    border-radius: 10rem;
    background: #fff;
  }

  .jounal_list_search button {
    position: absolute;
    right: 1.2rem;
    bottom: 1.2rem;
  }

  @media (prefers-reduced-motion: reduce) {
    .jounal_list_filter_panel,
    .jounal_list_filter_panel_inner,
    .jounal_list_filter_arrow::before {
      transition: none;
    }
  }

  .jounal_grid--pickup > .container > .jounal_grid_inner {
    display: none;
  }

  .jounal_pickup_slider {
    display: block;
  }

  .jounal_pickup_slider .jounal_pickup_tit {
    margin: 0 0 4rem;
    font-size: 3.2rem;
  }

  .jounal_pickup_slider .splide__track {
    overflow: hidden;
  }

  .jounal_pickup_slide {
    display: block;
    position: relative;
    color: var(--textColor-black);
    text-decoration: none;
  }

  .jounal_pickup_slide_media {
    display: block;
    overflow: hidden;
    aspect-ratio: 1.58 / 1;
    border-radius: 2rem;
  }

  .jounal_pickup_slide_media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .jounal_badge {
    top: 0;
    left: 2rem;
    width: 7rem;
    height: 2.6rem;
    border-radius: 0 0 0.5rem 0.5rem;
    font-size: 1.2rem;
  }

  .jounal_pickup_slide_body {
    display: block;
    padding-top: 3.2rem;
  }

  .jounal_pickup_slide_meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.2rem;
  }

  .jounal_pickup_slide_meta time {
    flex: 0 0 auto;
    font-size: 1.3rem;
  }

  .jounal_pickup_slide .jounal_tags {
    gap: 0.6rem;
  }

  .jounal_pickup_slide .jounal_tags li {
    padding: 0.4rem 1rem;
    border-color: var(--textColor-black);
    color: var(--textColor-black);
    background: #fff;
    font-size: 1.1rem;
  }

  .jounal_pickup_slide_tit {
    display: block;
    margin-top: 2rem;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.04em;
  }

  .jounal_pickup_slider_controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 4.8rem;
    margin-top: 4rem;
  }

  .jounal_pickup_slider .splide__pagination {
    position: static;
    justify-content: flex-start;
    flex: 1 1 auto;
    padding: 0;
  }

  .jounal_pickup_slider .splide__pagination li {
    line-height: 0;
  }

  .jounal_pickup_slider .splide__pagination__page {
    width: 0.8rem;
    height: 0.8rem;
    margin: 0 0.9rem 0 0;
    background: var(--accent-red-soft);
    opacity: 1;
    transform: none;
  }

  .jounal_pickup_slider .splide__pagination__page.is-active {
    background: var(--mainColor-red);
    transform: none;
  }

  .jounal_pickup_slider .splide__arrows {
    display: flex;
    flex: 0 0 auto;
    gap: 1.2rem;
  }

  .jounal_pickup_slider .splide__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: static;
    width: 4.8rem;
    height: 4.8rem;
    padding: 0;
    transform: none;
    border: none;
    border-radius: 50%;
    background: var(--mainColor-red);
    opacity: 1;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
  }

  .jounal_pickup_slider .splide__arrow::before {
    content: "";
    display: block;
    width: 0.8rem;
    height: 1.8rem;
    background: url("../img/arrow-white02.svg") no-repeat center / contain;
  }

  .jounal_pickup_slider .splide__arrow--prev::before {
    transform: scaleX(-1);
  }

  .jounal_pickup_slider .splide__arrow:disabled {
    opacity: 0.35;
    cursor: default;
  }

  .jounal_title {
    padding: 6rem 0 10rem;
  }
  .jounal_title .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .jounal_title .container:before {
    width: 39rem;
    height: 7.2rem;
    left: 1.5rem;
    bottom: -4rem;
  }
  .jounal_pickup_tit {
    font-size: 2.2rem;
    margin-bottom: 4rem;
  }

  .jounal_title_en {
    font-size: 1.4rem;
  }

  .jounal_title_ja {
    font-size: 3rem;
  }

  .jounal_title_lead {
    font-size: 1.2rem;
  }

  .jounal_grid--pickup {
    margin-bottom: 6rem;
  }

  .jounal_grid_inner {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .jounal_sticky {
    position: relative;
    top: auto;
  }

  .jounal_grid--pickup .jounal_scroll_list {
  }

  .jounal_list_side {
    /* padding: 3.2rem 2rem; */
  }

  .jounal_list_side_tit {
    /* height: 18rem; */
    font-size: 2.4rem;
    text-align: center;
    margin: 2rem auto 4rem;
  }
  .jounal_list_side_label {
    padding-bottom: 2rem;
    font-size: 1.3rem;
  }
  .jounal_list_side_label:after {
    width: 8rem;
  }
  .jounal_list_count {
    max-width: 29.2rem;
    margin: 0 auto;
    height: 4rem;
    margin-bottom: 3rem;
    font-size: 1.2rem;
  }
  .jounal_list_count span {
    font-size: 2rem;
  }

  #jounal_list .jounal_scroll_list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  #jounal_list .jounal_post_card--wide,
  #jounal_list .jounal_post_card--tall {
    grid-column: auto;
  }

  #jounal_list .jounal_post_card_link {
    gap: 0;
  }

  #jounal_list .jounal_post_card:first-child .jounal_post_card_link {
    flex-direction: column;
  }

  #jounal_list .jounal_post_card:first-child .jounal_post_thumb {
    border-radius: 1.5rem;
  }

  #jounal_list .jounal_post_card:first-child .jounal_post_thumb img {
    width: 100%;
    height: auto;
  }

  #jounal_list .jounal_post_card:first-child .jounal_badge {
    top: 0;
    left: 2rem;
    width: 7rem;
    height: 2.6rem;
    border-radius: 0 0 0.5rem 0.5rem;
    font-size: 1.2rem;
  }

  #jounal_list .jounal_post_card:first-child .jounal_post_body {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem 2rem;
    padding-top: 2.2rem;
  }

  #jounal_list .jounal_post_card:first-child .jounal_post_body time {
    order: 1;
    font-size: 1.3rem;
  }

  #jounal_list .jounal_post_card:first-child .jounal_post_body .jounal_tags {
    order: 2;
    margin-top: 0;
  }

  #jounal_list .jounal_post_card:first-child .jounal_post_tit {
    order: 3;
    flex: 0 0 100%;
    font-size: 1.8rem;
    letter-spacing: 0.04em;
  }

  #jounal_list .jounal_post_card:not(:first-child) .jounal_post_card_link {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.6rem;
  }

  #jounal_list .jounal_post_card:not(:first-child) .jounal_post_thumb {
    flex: 0 0 17rem;
    width: 17rem;
    border-radius: 1rem;
  }

  #jounal_list .jounal_post_card:not(:first-child) .jounal_post_thumb img {
    width: 100%;
    height: auto;
  }

  #jounal_list .jounal_post_card:not(:first-child) .jounal_badge {
    top: 0;
    left: 0;
    width: 5.6rem;
    height: 2.2rem;
    border-radius: 1.2rem 0 0.5rem 0;
    font-size: 1rem;
  }

  #jounal_list .jounal_post_card:not(:first-child) .jounal_post_body {
    flex: 1;
    min-width: 0;
    gap: 0.8rem;
    padding-top: 0.2rem;
  }

  #jounal_list .jounal_post_card:not(:first-child) .jounal_post_body time {
    order: 1;
    font-size: 1.2rem;
  }

  #jounal_list
    .jounal_post_card:not(:first-child)
    .jounal_post_body
    .jounal_tags {
    order: 2;
    margin-top: 0;
    gap: 0.4rem;
  }

  #jounal_list
    .jounal_post_card:not(:first-child)
    .jounal_post_body
    .jounal_tags
    li {
    padding: 0.2rem 0.6rem;
    font-size: 1rem;
  }

  #jounal_list .jounal_post_card:not(:first-child) .jounal_post_tit {
    order: 3;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    font-size: 1.6rem;
  }

  .jounal_post_tit {
    font-size: 1.8rem;
  }

  .jounal_grid--list {
    padding-bottom: 6rem;
  }
}

@media print, screen and (min-width: 768px) {
  .jounal_title {
    margin: 7rem 0 20rem;
  }
  .jounal_title .container {
    display: flex;
    justify-content: space-between;
  }
  .jounal_title .container:before {
    width: 108.8rem;
    height: 20rem;
    left: -6rem;
    bottom: -6.5rem;
  }

  .jounal_title_en {
    width: 100%;
    font-size: 2rem;
  }

  .jounal_title_ja {
    font-size: 8rem;
  }
  .jounal_badge {
    left: 2rem;
    font-size: 2rem;
    width: 12rem;
    height: 4.4rem;
  }
  .jounal_pickup_main .jounal_badge {
    left: 6rem;
  }

  .jounal_title_lead {
    padding-left: 3rem;
    writing-mode: vertical-rl;
    font-size: 1.8rem;
  }
  .jounal_title_lead .tate_punct {
    text-orientation: upright;
    transform: translateX(0.12em);
  }
  .jounal_title_lead:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0.1rem;
    height: 10rem;
    background: #707070;
  }

  .jounal_grid--pickup {
    margin-bottom: 26rem;
  }

  .jounal_grid--pickup .jounal_grid_inner {
    grid-template-columns: 66% 1fr;
    gap: 5rem;
  }

  .jounal_grid--pickup .jounal_scroll_list {
    padding-top: 14rem;
  }
  .jounal_scroll_list {
    gap: 5rem;
  }

  .jounal_pickup_tit {
    font-size: 4.5rem;
    height: 7rem;
    margin-bottom: 7rem;
  }

  .jounal_pickup_main_body {
    gap: 2rem;
    padding: 6rem 5rem 5rem;
  }

  .jounal_pickup_main_meta time {
    font-size: 1.8rem;
  }

  .jounal_pickup_main .jounal_tags li {
    font-size: 1.4rem;
    padding: 0.3rem 1rem;
  }

  .jounal_pickup_main_tit {
    font-size: 4.4rem;
  }

  .jounal_pickup_main_more {
    min-width: 32rem;
    padding: 1.2rem 3.6rem;
    font-size: 2rem;
    margin-top: 3rem;
  }

  .jounal_pickup_main_media img,
  .jounal_pickup_card_link img,
  .jounal_post_thumb img {
    transition: transform 0.6s ease;
  }

  .jounal_pickup_main:hover .jounal_pickup_main_media img,
  .jounal_pickup_card_link:hover img,
  .jounal_post_card_link:hover .jounal_post_thumb img {
    transform: scale(1.05);
  }

  .jounal_pickup_card_tit {
    font-size: 3rem;
  }
  .jounal_pickup_card_meta time {
    font-size: 1.8rem;
  }
  .jounal_post_card_link {
    margin-top: 2.5rem;
  }
  .jounal_post_body .jounal_tags {
    margin-top: 2rem;
  }
  .jounal_tags li {
    font-size: 1.4rem;
  }

  .jounal_grid--list .jounal_grid_inner {
    grid-template-columns: 22% 1fr;
    gap: 5%;
  }
  .jounal_list_search {
    margin-top: 4rem;
  }

  .jounal_list_side {
    text-align: center;
  }

  .jounal_list_side_tit {
    font-size: 4.5rem;
    margin: 0 0 10rem;
    display: inline-block;
  }

  #jounal_list .jounal_scroll_list {
    display: block;
    position: relative;
    --jounal-masonry-cols: 3;
    --jounal-masonry-gap-x: 5rem;
    --jounal-masonry-gap-y: 5rem;
  }

  #jounal_list .jounal_scroll_list.is-masonry .jounal_post_card {
    margin: 0;
  }

  .jounal_post_tit {
    font-size: 2.2rem;
  }
  .jounal_post_body time {
    font-size: 1.8rem;
  }

  .jounal_grid--list {
    padding-bottom: 12rem;
  }
  .jounal_list_side_label {
    font-size: 2.3rem;
    padding-bottom: 2.5rem;
    margin-bottom: 3rem;
  }
  .jounal_list_side_label:after {
    width: 10rem;
  }
  .jounal_list_count {
    height: 6.4rem;
    margin-bottom: 7.5rem;
  }
  .jounal_list_count span {
    font-size: 2.8rem;
  }
  .jounal_list_keywords_tit {
    margin-bottom: 2.5rem;
  }
  .jounal_list_keywords_list a {
    font-size: 1.4rem;
  }
}
@media print, screen and (min-width: 992px) {
  .jounal_grid--pickup .jounal_grid_inner {
    gap: 7.4rem;
  }
}

/* --- Journal Single --- */
.jounal_single_top {
  position: relative;
  width: 100%;
}
.jounal_single_hero {
  position: relative;
  width: 100%;
}
.jounal_single_side {
  margin: 0;
}
.jounal_single_side_tit {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.jounal_single_side_lead {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.8;
}
/* 縦書き時の「…」の左右ずれ対策 */
.jounal_single_side_lead .tate_punct {
  display: inline-block;
  text-orientation: upright;
}
.jounal_single_hero_media {
  position: relative;
  line-height: 0;
  overflow: hidden;
}
.jounal_single_hero_media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.jounal_single_hero_body {
  position: relative;
  z-index: 2;
}
.jounal_single_hero_head {
  background: var(--mainColor-red);
  color: #fff;
}
.jounal_single_meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}
.jounal_single_meta time {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
.jounal_single_hero_head .jounal_tags li {
  border-color: #fff;
  color: #fff;
}
.jounal_single_hero_head .jounal_tags a {
  color: inherit;
}
.jounal_single_tit {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.jounal_single_share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.jounal_single_share_link {
  display: block;
}

@media only screen and (max-width: 767px) {
  .jounal_single_top {
    margin-bottom: 4rem;
  }
  .jounal_single_hero {
    display: flex;
    flex-direction: column;
  }
  .jounal_single_side {
    padding: 0 1.5rem;
    margin: 1rem 0 2rem;
  }
  .jounal_single_side_tit {
    font-size: 2rem;
  }
  .jounal_single_side_lead {
    display: none;
  }
  .jounal_single_hero_body {
    margin-top: -1.5rem;
  }
  .jounal_single_hero_head {
    padding: 2.4rem 1.5rem 3rem;
    border-radius: 0 1rem 1rem 0;
    width: calc(100% - 1.5rem);
  }
  .jounal_single_meta {
    margin-bottom: 1.4rem;
  }
  .jounal_single_meta time {
    font-size: 1.3rem;
  }
  .jounal_single_hero_head .jounal_tags li {
    font-size: 1.1rem;
    padding: 0.15rem 0.8rem;
  }
  .jounal_single_tit {
    font-size: 2.4rem;
  }
  .jounal_single_share {
    margin-top: 2.5rem;
    gap: 1rem;
    justify-content: flex-end;
    margin-right: 1.5rem;
  }
  .jounal_single_share_link {
    width: 5rem;
  }
}

@media print, screen and (min-width: 768px) {
  .jounal_single_top {
    margin-bottom: 14rem;
  }
  .jounal_single_hero {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
  }
  .jounal_single_side {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    align-items: center;
    width: 9%;
  }
  .jounal_single_side_tit {
    font-size: 3.4rem;
    letter-spacing: 0.18em;
    line-height: 1.2;
    writing-mode: vertical-lr;
    text-orientation: mixed;
  }
  .jounal_single_side_lead {
    position: relative;
    margin-top: 2rem;
    padding-top: 2rem;
    font-size: 1.6rem;
    writing-mode: vertical-lr;
    text-orientation: mixed;
  }
  .jounal_single_side_lead .tate_punct {
    text-orientation: upright;
    transform: translateX(0.12em);
  }
  .jounal_single_side_lead::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 7.4rem;
    height: 0.1rem;
    background: var(--textColor-black);
  }
  .jounal_single_hero_media {
    width: 91%;
    border-radius: 2rem 0 0 2rem;
    overflow: hidden;
  }
  .jounal_single_hero_body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    width: 100%;
    margin-top: -8rem;
    margin-left: auto;
    position: relative;
    z-index: 4;
  }
  .jounal_single_hero_head {
    width: min(100%, 110rem);
    padding: 4.5rem 4rem;
    border-radius: 0 2rem 2rem 0;
  }
  .jounal_single_meta {
    margin-bottom: 2.2rem;
  }
  .jounal_single_meta time {
    font-size: 1.8rem;
  }
  .jounal_single_hero_head .jounal_tags li {
    font-size: 1.4rem;
    padding: 0.3rem 1.2rem;
  }
  .jounal_single_tit {
    font-size: 4.4rem;
  }
  .jounal_single_share {
    flex-shrink: 0;
    margin: 12rem 2.5rem 0 0;
    gap: 2rem;
  }
  .jounal_single_share li {
    width: 6.4rem;
  }
}
@media print, screen and (min-width: 900px) {
  .jounal_single_tit {
    font-size: 5.2rem;
  }
}

@media print, screen and (min-width: 992px) {
  .jounal_single_side {
    margin-top: -5rem;
  }
  .jounal_single_side_tit {
    font-size: 4.4rem;
  }
  .jounal_single_side_lead {
    margin-top: 4rem;
    padding-top: 4rem;
    font-size: 2rem;
  }
  .jounal_single_hero_body {
    margin-top: -12rem;
  }
  .jounal_single_share {
    margin: 15rem 4rem 0 0;
  }
  .jounal_single_hero_head {
    padding: 4.5rem 6rem;
  }
}

.jounal_single_content {
  position: relative;
  overflow: hidden;
  padding-bottom: 8rem;
}
.jounal_single_content > .container {
  position: relative;
  z-index: 1;
}
.jounal_single_body {
  margin-right: auto;
  margin-left: auto;
}
.jounal_single_nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  margin: 8rem auto 0;
}
.jounal_single_prev,
.jounal_single_next {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 500;
}
.jounal_single_next {
  justify-content: flex-end;
}
.jounal_single_prev .single_nav_circle,
.jounal_single_next .single_nav_circle {
  background: #fff;
}
.jounal_single_prev .single_nav_circle::before {
  transform: translate(-50%, -50%) scaleX(-1);
}
.jounal_single_back {
  justify-self: center;
  padding: 1.5rem 3rem;
  border: 0.1rem solid var(--textColor-black);
  border-radius: 10rem;
  text-align: center;
  transition:
    background 0.3s,
    color 0.3s,
    border-color 0.3s,
    opacity 0.3s;
}

@media only screen and (max-width: 767px) {
  .jounal_single_content {
    padding-bottom: 10rem;
  }
  .jounal_single_nav {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1rem;
    margin-top: 5rem;
  }
  .jounal_single_prev {
    grid-column: 1;
    grid-row: 1;
  }
  .jounal_single_next {
    grid-column: 2;
    grid-row: 1;
  }
  .jounal_single_back {
    grid-column: 1 / -1;
    grid-row: 2;
    min-width: 0;
    max-width: 30rem;
    width: 100%;
  }
  .jounal_single_nav .single_nav_circle {
    width: 4rem;
    height: 4rem;
  }
  .jounal_single_nav .single_nav_circle::before {
    width: 0.8rem;
    height: 1.6rem;
  }
}

@media print, screen and (min-width: 768px) {
  .jounal_single_content {
    padding-bottom: 25rem;
  }
  .jounal_single_nav {
    margin-top: 12rem;
  }
  .jounal_single_back {
    min-width: 36rem;
    padding: 2rem 3rem;
    font-size: 1.8rem;
  }
  .jounal_single_back:hover {
    background: var(--textColor-black);
    border-color: var(--textColor-black);
    color: #fff;
    opacity: 1;
  }
  .jounal_single_prev,
  .jounal_single_next {
    font-size: 1.8rem;
  }
  .jounal_single_nav .single_nav_circle {
    width: 6rem;
    height: 6rem;
  }
  .jounal_single_nav .single_nav_circle::before {
    width: 0.9rem;
    height: 2rem;
  }
}

@media print, screen and (min-width: 1566px) {
  .jounal_single_body {
    max-width: 120rem;
  }
  .jounal_single_nav {
    max-width: 120rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   NEWS

--------------------------------------------------------------------------------------------- */

/* .news_list {
  border-top: .1rem solid var(--textColor-black);
} */
.news_item {
  border-bottom: 1px solid var(--textColor-black);
}
.news_item a {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  /* padding: 4rem 10rem 4rem 18rem; */
}
.news_item_link_wrap {
  position: relative;
  max-width: 100rem;
  width: 100%;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news_meta {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-bottom: 2.2rem;
  font-family: "Cinzel", serif;
}
.news_badge {
  padding: 0.2rem 1.2rem;
  border: 0.1rem solid var(--mainColor-red);
  color: var(--mainColor-red);
  line-height: 1.2;
}
.news_item h2 {
  margin: 0;
  font-weight: 700;
  line-height: 1.7;
}
.news_arrow {
  position: absolute;
  right: 4rem;
  top: 50%;
  width: 1.1rem;
  height: 2.2rem;
  background: url(../img/arrow-black.svg) no-repeat center / contain;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
.news_item a:hover .news_arrow {
  transform: translate(0.5rem, -50%);
}
.news_pager {
  margin-top: 12rem;
}

/* サイト内検索 */
.search_archive .search_form {
  display: flex;
  align-items: stretch;
  gap: 0.8rem;
  max-width: 60rem;
  margin: 0 auto 3rem;
}
.search_archive .search_form_input {
  flex: 1;
  min-width: 0;
  padding: 1.2rem 1.6rem;
  border: 0.1rem solid #ccc;
  border-radius: 0.6rem;
  font-size: 1.6rem;
  background: #fff;
}
.search_archive .search_form_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.8rem;
  border: 0;
  border-radius: 0.6rem;
  background: #000;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s;
}
.search_archive .search_form_btn:hover {
  background: #333;
}
.search_archive .search_status {
  margin: 0 0 2rem;
  font-weight: 500;
}
.search_archive .search_status strong {
  font-weight: 700;
}

.single_article_meta {
  display: flex;
  align-items: center;
  border-bottom: 0.1rem solid #707070;
}
.single_article_badge {
  min-width: 10rem;
  padding: 0.5rem 1.5rem;
  border: 0.1rem solid var(--Color-red);
  color: var(--Color-red);
  text-align: center;
  line-height: 1.2;
}
.single_article_title {
  letter-spacing: 0.08em;
}

/* 記事本文共通（新着情報 / 旅の読みもの） */
.single_article_body p,
.jounal_single_body p {
  margin-bottom: 0;
  line-height: 2;
}
.single_article_body p:not(:first-child),
.jounal_single_body p:not(:first-child) {
  margin-top: 2rem;
}
.single_article_body h2,
.jounal_single_body h2 {
  margin: 0;
  border-left: 0.6rem solid var(--Color-red);
  font-weight: 500;
  letter-spacing: 0.1em;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
}
.single_article_body h2:not(:first-child),
.jounal_single_body h2:not(:first-child) {
  margin-top: 3.5rem;
}
.single_article_body h3,
.jounal_single_body h3 {
  margin-bottom: 0;
  padding-bottom: 2rem;
  border-bottom: 0.1rem solid #777;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.7;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
}
.single_article_body h3:not(:first-child),
.jounal_single_body h3:not(:first-child) {
  margin-top: 3.5rem;
}
.single_article_body h4,
.jounal_single_body h4 {
  position: relative;
  margin: 0;
  padding-left: 1.2em;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.7;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
}
.single_article_body h4::before,
.jounal_single_body h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.8em;
  height: 0.8em;
  background: var(--Color-red);
}
.single_article_body h4:not(:first-child),
.jounal_single_body h4:not(:first-child) {
  margin-top: 3.5rem;
}
.single_article_body h5,
.jounal_single_body h5 {
  position: relative;
  margin: 0;
  padding-left: 2rem;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: var(--mainColor-red);
  font-family: YakuHanMP, "Zen Old Mincho", serif;
}
.single_article_body h5::before,
.jounal_single_body h5::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1rem;
  height: 0.2rem;
  background: var(--mainColor-red);
  transform: translateY(-50%);
}
.single_article_body h5:not(:first-child),
.jounal_single_body h5:not(:first-child) {
  margin-top: 3.5rem;
}
.single_article_body ul,
.jounal_single_body ul {
  list-style: disc;
}
.single_article_body ol,
.jounal_single_body ol {
  list-style: decimal;
}
.single_article_body ul,
.jounal_single_body ul,
.single_article_body ol,
.jounal_single_body ol {
  margin-left: 1.2em;
}
.single_article_body ul:not(:first-child),
.jounal_single_body ul:not(:first-child),
.single_article_body ol:not(:first-child),
.jounal_single_body ol:not(:first-child) {
  margin-top: 2rem;
}
.single_article_body li + li,
.jounal_single_body li + li {
  margin-top: 1rem;
}
.single_article_body blockquote,
.jounal_single_body blockquote {
  margin: 0;
  padding: 2.5rem 3rem;
  border-left: 0.6rem solid var(--Color-red);
  background: #f7f3ed;
}
.single_article_body blockquote:not(:first-child),
.jounal_single_body blockquote:not(:first-child) {
  margin-top: 3.5rem;
}
.single_article_body blockquote p,
.jounal_single_body blockquote p {
  margin: 0;
}

.single_article_body figure:not(:first-child),
.jounal_single_body figure:not(:first-child) {
  margin-top: 3.5rem;
}
.single_article_body figure img,
.jounal_single_body figure img {
  display: block;
  width: 100%;
}
.single_article_body figcaption,
.jounal_single_body figcaption {
  margin-top: 1.2rem;
  color: #646362;
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: center;
}

.single_article_nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 3rem;
  width: 82%;
  margin: 10rem auto 0;
}
.single_article_prev,
.single_article_next {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 500;
}
.single_article_next {
  justify-content: flex-end;
}
.single_nav_circle {
  position: relative;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #f4f1eb;
}
.single_nav_circle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: url(../img/arrow-black.svg) no-repeat center / contain;
  transform: translate(-50%, -50%);
}
.single_article_prev .single_nav_circle::before {
  transform: translate(-50%, -50%) scaleX(-1);
}
.single_article_back {
  justify-self: center;
  padding: 1.5rem 3rem;
  border: 0.1rem solid #000;
  border-radius: 10rem;
  text-align: center;
  transition:
    background 0.3s,
    color 0.3s,
    border-color 0.3s,
    opacity 0.3s;
}

@media only screen and (max-width: 767px) {
  .news_list {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
  .news_item a {
    /* padding: 2.6rem 4rem 2.6rem 0; */
    padding: 1.5rem 4rem 1.5rem 1.5rem;
  }
  .news_meta {
    gap: 1.2rem;
    margin-bottom: 1rem;
  }
  .news_meta time {
    font-size: 1.2rem;
  }
  .news_item h2 {
    font-size: 1.6rem;
  }
  .news_badge {
    font-size: 1.1rem;
  }
  .news_arrow {
    right: -2rem;
    width: 0.8rem;
    height: 1.6rem;
  }
  .news_pager {
    margin-top: 6rem;
  }
  .news_pager .pager_list {
    width: 100%;
  }
  .news_pager .pager_item:first-child {
    margin-right: auto;
  }
  .news_pager .pager_item:last-child {
    margin-left: auto;
  }
  .single_article {
  }
  .single_article_header {
    margin-bottom: 4rem;
  }
  .single_article_meta {
    gap: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 3rem;
  }
  .single_article_badge {
    min-width: 8rem;
    font-size: 1.2rem;
  }
  .single_article_title {
    font-size: 2.7rem;
  }
  .single_article_body,
  .jounal_single_body {
    font-size: 1.5rem;
    line-height: 2;
  }
  .single_article_body p:not(:first-child),
  .jounal_single_body p:not(:first-child) {
    margin-top: 2rem;
  }
  .single_article_body h2:not(:first-child),
  .jounal_single_body h2:not(:first-child),
  .single_article_body h3:not(:first-child),
  .jounal_single_body h3:not(:first-child),
  .single_article_body h4:not(:first-child),
  .jounal_single_body h4:not(:first-child),
  .single_article_body h5:not(:first-child),
  .jounal_single_body h5:not(:first-child),
  .single_article_body blockquote:not(:first-child),
  .jounal_single_body blockquote:not(:first-child),
  .single_article_body figure:not(:first-child),
  .jounal_single_body figure:not(:first-child) {
    margin-top: 6rem;
  }
  .single_article_body h2,
  .jounal_single_body h2 {
    padding-left: 1.8rem;
    font-size: 2rem;
  }
  .single_article_body h3,
  .jounal_single_body h3 {
    font-size: 1.9rem;
    padding-bottom: 1rem;
  }
  .single_article_body h4,
  .jounal_single_body h4 {
    font-size: 1.8rem;
  }
  .single_article_body h5,
  .jounal_single_body h5 {
    padding-left: 1.4rem;
    font-size: 1.7rem;
  }
  .single_article_body h5::before,
  .jounal_single_body h5::before {
    width: 0.8rem;
    height: 0.15rem;
  }
  .single_article_body figcaption,
  .jounal_single_body figcaption {
    font-size: 1.2rem;
  }
  .single_article_nav {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1rem;
    width: 100%;
    margin-top: 6rem;
  }
  .single_article_prev {
    grid-column: 1;
    grid-row: 1;
  }
  .single_article_next {
    grid-column: 2;
    grid-row: 1;
  }
  .single_article_back {
    grid-column: 1 / -1;
    grid-row: 2;
    min-width: 0;
    width: 30rem;
    font-size: 1.6rem;
  }
  .single_nav_circle {
    width: 4rem;
    height: 4rem;
  }
  .single_nav_circle::before {
    width: 0.8rem;
    height: 1.6rem;
  }
}
@media print, screen and (min-width: 768px) {
  .news_item h2 {
    font-size: 2.2rem;
  }
  .news_item a {
    min-height: 21rem;
    padding: 3rem 0;
  }
  .news_arrow {
    width: 1.6rem;
    height: 3.6rem;
  }
  .news_meta time {
    font-size: 2.2rem;
  }
  .news_item_link_wrap {
    padding-right: 12rem;
  }
  .single_article_meta {
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    margin-bottom: 4rem;
  }
  .single_article_badge {
    font-size: 2rem;
  }
  .single_article_meta time {
    font-size: 2.6rem;
  }
  .single_article_title {
    font-size: 6rem;
  }
  .single_article_header {
    margin-bottom: 12rem;
  }
  .single_article_body h2,
  .jounal_single_body h2 {
    font-size: 4rem;
    padding-left: 4rem;
  }
  .single_article_body h3,
  .jounal_single_body h3 {
    font-size: 3.5rem;
  }
  .single_article_body h4,
  .jounal_single_body h4 {
    font-size: 3.1rem;
  }
  .single_article_body h5,
  .jounal_single_body h5 {
    padding-left: 2.6rem;
    font-size: 2.8rem;
  }
  .single_article_body h5::before,
  .jounal_single_body h5::before {
    width: 1.2rem;
    height: 0.2rem;
  }
  .single_article_body p,
  .jounal_single_body p,
  .single_article_body li,
  .jounal_single_body li {
    font-size: 2rem;
  }
  .single_article_body p:not(:first-child),
  .jounal_single_body p:not(:first-child) {
    margin-top: 5rem;
  }
  .single_article_body h2:not(:first-child),
  .jounal_single_body h2:not(:first-child),
  .single_article_body h3:not(:first-child),
  .jounal_single_body h3:not(:first-child),
  .single_article_body h4:not(:first-child),
  .jounal_single_body h4:not(:first-child),
  .single_article_body h5:not(:first-child),
  .jounal_single_body h5:not(:first-child),
  .single_article_body blockquote:not(:first-child),
  .jounal_single_body blockquote:not(:first-child),
  .single_article_body figure:not(:first-child),
  .jounal_single_body figure:not(:first-child) {
    margin-top: 10rem;
  }
  .single_article_body figcaption,
  .jounal_single_body figcaption {
    font-size: 1.6rem;
  }
  .single_article_back {
    min-width: 36rem;
    padding: 2rem 3rem;
    font-size: 1.8rem;
  }
  .single_article_back:hover {
    background: var(--textColor-black);
    border-color: var(--textColor-black);
    color: #fff;
    opacity: 1;
  }
  .single_nav_circle {
    width: 6rem;
    height: 6rem;
  }
  .single_nav_circle::before {
    width: 0.9rem;
    height: 2rem;
  }
  .single_article_prev,
  .single_article_next {
    font-size: 1.8rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   MODELCOURSE

--------------------------------------------------------------------------------------------- */

.modelcourse_page_title_lead {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.9;
}

.modelcourse_recommend_tags {
  background: #fff;
}

.modelcourse_recommend_tags_inner {
  display: flex;
}

.modelcourse_recommend_tags_title {
  flex-shrink: 0;
  margin: 0;
  color: var(--mainColor-red);
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.5;
}

.modelcourse_recommend_tags_list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.modelcourse_recommend_tags_list a {
  display: block;
  overflow: hidden;
  line-height: 0;
  transition: opacity 0.3s;
}

.modelcourse_recommend_tags_list a:hover {
  opacity: 0.75;
}

.modelcourse_recommend_tags_list img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.modelcourse_results {
  padding-bottom: 14rem;
  background: #fff;
}

.modelcourse_results_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
}

.modelcourse_results_grid .modelcourse_card {
  position: relative;
  min-width: 0;
}

@media only screen and (max-width: 767px) {
  .modelcourse_page_title {
    padding: 2rem 0 6rem;
  }
  .modelcourse_page_title .page_title_ja {
    margin-top: 1.5rem;
  }
  .modelcourse_page_title_lead {
    margin-top: 2.5rem;
    font-size: 1.5rem;
  }
  .modelcourse_recommend_tags {
    padding-bottom: 5rem;
  }
  .modelcourse_recommend_tags_inner {
    flex-direction: column;
    gap: 1.5rem;
  }
  .modelcourse_recommend_tags_title {
    font-size: 1.5rem;
  }
  .modelcourse_recommend_tags_list a {
    border-radius: 0.8rem;
  }
  .modelcourse_recommend_tags_list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
  }
  .modelcourse_results {
    padding-bottom: 7rem;
  }
  .modelcourse_results_grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .modelcourse_results_grid .modelcourse_card {
    padding: 2rem;
  }
  .modelcourse_results_grid .modelcourse_type {
    width: auto;
    height: 4rem;
  }
  .modelcourse_results_grid .modelcourse_transport {
    width: auto;
    height: 2.6rem;
  }
}
@media print, screen and (min-width: 768px) {
  .modelcourse_page_title {
    padding: 3rem 0 12rem;
  }
  .modelcourse_page_title .page_title_ja {
    margin-top: 2.5rem;
  }
  .modelcourse_page_title_lead {
    margin-top: 4rem;
    font-size: 2rem;
  }
  .modelcourse_recommend_tags {
    padding-bottom: 7rem;
  }
  .modelcourse_recommend_tags_inner {
    gap: 4rem;
  }
  .modelcourse_recommend_tags_title {
    width: 4.5rem;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--mainColor-red);
    letter-spacing: 0.6em;
  }
  .modelcourse_recommend_tags_title span {
    writing-mode: vertical-rl;
  }
  .modelcourse_recommend_tags_list {
    display: grid;
    flex: 1;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 2rem;
    min-width: 0;
  }
  .modelcourse_recommend_tags_list a {
    border-radius: 1.5rem;
  }
  .modelcourse_results_grid .modelcourse_type {
    width: auto;
    height: 5rem;
  }
  .modelcourse_results_grid .modelcourse_transport {
    width: auto;
    height: 4rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   TOUR

--------------------------------------------------------------------------------------------- */

.tour_page_title {
  position: relative;
}
.tour_page_title:after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  background: #f7f3ed;
}

.tour_page_title_inner {
  position: relative;
  max-width: 170rem;
  padding: 0;
}

.tour_page_title_center {
  position: relative;
  z-index: 1;
  text-align: center;
}

.tour_page_title_en {
  display: block;
  width: 26rem;
  height: 7.2rem;
  margin: 0 auto 1rem;
  overflow: visible;
}

.tour_page_title_en text {
  fill: var(--mainColor-red);
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.tour_page_title .page_title_ja {
  display: inline-block;
  margin: 0;
  writing-mode: vertical-rl;
  text-align: end;
  line-height: 1.15;
  letter-spacing: 0.08em;
}

.tour_page_title_line {
  display: block;
  width: 24rem;
  height: 1px;
  margin: 3.5rem auto 0;
  background: var(--textColor-black);
}

.tour_page_title_lead {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.9;
  text-align: center;
}

.tour_page_title_images img {
  display: block;
  width: 100%;
  height: auto;
}

.tour_results {
  padding-bottom: 14rem;
  background: #fff;
}

.tour_results .tour_card {
  width: 100%;
  height: 100%;
  border: 1px solid #2e2e2e;
  box-shadow: none;
}

@media only screen and (max-width: 767px) {
  .tour_page_title {
    margin-bottom: 5rem;
  }
  .tour_page_title_inner {
    min-height: 62rem;
  }
  .tour_page_title:after {
    height: 31rem;
    top: 15rem;
  }
  .tour_page_title_center {
    width: 100%;
  }
  .tour_page_title_en {
    width: 21rem;
    height: 6rem;
    margin-bottom: -0.5rem;
  }
  .tour_page_title_en text {
    font-size: 17px;
  }
  .tour_page_title_line {
    width: 18rem;
    margin-top: 3rem;
  }
  .tour_page_title_lead {
    margin-top: 2.5rem;
    font-size: 1.5rem;
  }
  .tour_page_title_images {
    position: absolute;
    bottom: 0;
    width: 52%;
  }
  .tour_page_title_images--left {
    left: -1.5rem;
  }
  .tour_page_title_images--right {
    right: -1.5rem;
  }
  .tour_results {
    padding-bottom: 7rem;
  }
  .tour_results .tour_card_inner {
    flex-direction: column;
  }
  .tour_results .tour_thumb {
    width: 100%;
    aspect-ratio: 2 / 1.4;
  }
  .tour_results .tour_body {
    min-height: 0;
  }
  .tour_results .tour_list {
    gap: 2rem;
  }
}

@media print, screen and (min-width: 768px) {
  #tour_page_title {
    margin-top: -8rem;
    margin-bottom: 8rem;
  }
  .tour_page_title:after {
    height: 60rem;
    top: 28rem;
  }
  .tour_page_title_inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 32rem minmax(0, 1fr);
    align-items: end;
    min-height: 70rem;
  }
  .tour_page_title_center {
    align-self: center;
  }
  .tour_page_title_lead {
    margin-top: 4rem;
    font-size: 2rem;
  }
  .tour_page_title_images--left {
    margin-right: 3rem;
  }
  .tour_page_title_images--right {
    margin-left: 3rem;
  }
  .tour_results .tour_thumb {
    width: 30rem;
  }
  .tour_results .tour_card_inner {
    gap: 3rem;
    min-height: 37rem;
  }
  .tour_results .tour_card_tit {
    font-size: 2.4rem;
  }
  .tour_results .tour_type_wrap {
    width: 6.4rem;
  }
  .tour_results .tour_meta {
    gap: 3rem;
  }
  .tour_results .tour_period_date {
    font-size: 2.2rem;
  }
  .tour_results .tour_period_label {
    width: 6.4rem;
    font-size: 1.8rem;
  }
  .tour_results .tour_tag {
    font-size: 1.4rem;
  }
  .tour_results .tour_list {
    gap: 3.5rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   一覧共通

--------------------------------------------------------------------------------------------- */

.list_search_box {
  overflow: hidden;
  border: 0.1rem solid var(--textColor-black);
  border-radius: 2rem;
  background: #fff;
}

.list_search_toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 8rem;
  padding: 1.5rem 2.5rem;
  border: 0;
  background: #fbdcdc;
  color: var(--textColor-black);
  font: inherit;
  cursor: pointer;
  transition: background-color 0.3s;
}

.list_search_toggle[aria-expanded="true"] {
  background: #fff;
}

.list_search_toggle_title,
.list_search_toggle_state,
.list_search_label {
  display: flex;
  align-items: center;
}

.list_search_toggle_title {
  gap: 1rem;
}

.list_search_toggle_title img,
.list_search_label img {
  display: block;
  flex: 0 0 auto;
  width: 2.2rem;
  height: 2.2rem;
  object-fit: contain;
}

.list_search_toggle_state {
  gap: 1rem;
  font-size: 1.3rem;
}

.list_search_state_close {
  display: none;
}

.list_search_toggle[aria-expanded="true"] .list_search_state_open {
  display: none;
}

.list_search_toggle[aria-expanded="true"] .list_search_state_close {
  display: inline;
}

.list_search_arrow {
  display: block;
  width: 3rem;
  height: 3rem;
  background: url("../img/arrow-top.png") no-repeat center / contain;
  transform: rotate(180deg);
  transition: transform 0.3s;
}

.list_search_toggle[aria-expanded="true"] .list_search_arrow {
  transform: rotate(0);
}

.list_search_panel {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  opacity: 0;
  transition:
    grid-template-rows 0.45s ease,
    opacity 0.3s ease,
    visibility 0s linear 0.45s;
}

.list_search_panel.is-open {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.list_search_panel_inner {
  min-height: 0;
  overflow: hidden;
}

.list_search_form {
  padding: 4rem;
}

.list_search_row {
  display: flex;
  align-items: center;
  min-width: 0;
  margin: 0;
  padding: 1.8rem 0;
  border: 0;
  border-bottom: 0.1rem solid #ddd;
}

.list_search_label {
  flex: 0 0 25rem;
  gap: 1rem;
  min-width: 0;
  margin: 0;
  padding: 0;
  font-weight: 500;
}

.list_search_options {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 1rem;
  min-width: 0;
}

.list_search_options label {
  position: relative;
  cursor: pointer;
}

.list_search_options input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.list_search_options span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 9rem;
  min-height: 3rem;
  padding: 0.8rem 3.5rem;
  border: 0.1rem solid #c8c8c8;
  border-radius: 0.8rem;
  background: #fff;
  line-height: 1.3;
  transition:
    background-color 0.2s,
    border-color 0.2s,
    color 0.2s;
  font-weight: 500;
}

.list_search_options input:focus-visible + span {
  outline: 0.2rem solid var(--mainColor-red);
  outline-offset: 0.2rem;
}

.list_search_options input:checked + span {
  border-color: var(--textColor-black);
  background: var(--textColor-black);
  color: #fff;
}

.list_search_options span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.8rem;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: #fff url("../img/ico-check.png") no-repeat center / 100% auto;
  transform: translateY(-50%);
  visibility: hidden;
}

.list_search_options input:checked + span::after {
  visibility: visible;
}

.list_search_row--keyword {
  border-bottom: 0;
}

.list_search_keyword {
  flex: 1;
  width: auto;
  min-width: 0;
  height: 4.6rem;
  padding: 0 1.5rem;
  border: 0.1rem solid #aaa;
  border-radius: 0.6rem;
  background: #fff;
  color: var(--textColor-black);
  font: inherit;
  outline: none;
}

.list_search_keyword:focus {
  border-color: var(--mainColor-red);
}

.list_search_submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  width: 30rem;
  min-height: 7.8rem;
  margin: 1.5rem auto 0;
  padding: 1rem 2rem;
  border: 0;
  border-radius: 10rem;
  background: var(--mainColor-red);
  color: #fff;
  font: inherit;
  font-size: 2rem;
  font-weight: 700;
  cursor: pointer;
}

.list_search_submit span {
  width: 1.8rem;
  height: 1.8rem;
  background: url("../img/arrow02.svg") no-repeat center / contain;
  filter: brightness(0) invert(1);
}

.list_status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 2.5rem;
  background: #f7f7f7;
}

.list_status_conditions,
.list_status_label,
.list_status_tags {
  display: flex;
  align-items: center;
}

.list_status_conditions {
  gap: 2rem;
  min-width: 0;
}

.list_status_label {
  flex-shrink: 0;
  gap: 0.8rem;
  margin: 0;
  font-weight: 500;
}

.list_status_label img {
  width: 1.8rem;
  height: 1.8rem;
  object-fit: contain;
}

.list_status_tags {
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list_status_tags li {
  min-width: 10rem;
  padding: 0;
  border: 0.1rem solid #000;
  border-radius: 0.4rem;
  text-align: center;
  line-height: 1.3;
  font-weight: 500;
}

.list_status_tags li .list_status_tag_remove {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.5rem;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.2s;
}

.list_status_tags li .list_status_tag_remove:hover {
  background: #f4f0e6;
}

.list_status_tags li .list_status_tag_remove span[aria-hidden="true"] {
  font-size: 1.4rem;
  line-height: 1;
  opacity: 0.6;
}

.list_status_tags li.list_status_tag_none {
  padding: 0.5rem 1.5rem;
  border-style: dashed;
  color: #888;
  font-weight: 400;
}

.list_status_count {
  flex-shrink: 0;
  margin: 0;
  font-weight: 500;
}

.list_status_count strong {
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .list_search {
    padding-bottom: 4rem;
  }
  .list_search_box {
    border-radius: 1.5rem;
  }
  .list_search_toggle {
    min-height: 6.5rem;
    padding: 1.2rem 1.8rem;
  }
  .list_search_toggle_title {
    font-size: 2rem;
  }
  .list_search_toggle_state {
    gap: 0.7rem;
    font-size: 1.2rem;
  }
  .list_search_arrow {
    width: 2.4rem;
    height: 2.4rem;
  }
  .list_search_form {
    padding: 0 0 2.8rem;
  }
  .list_search_row {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    border-bottom: 0;
  }
  .list_search_label {
    flex-basis: auto;
    width: 100%;
    min-height: 3.4rem;
    padding: 0.6rem 1.2rem;
    background: var(--mainColor-red);
    color: #fff;
    font-size: 1.4rem;
  }
  .list_search_label img {
    width: 1.6rem;
    height: 1.6rem;
    filter: brightness(0) invert(1);
  }
  .list_search_options {
    flex: none;
    gap: 0.7rem;
    padding: 1.5rem 1.2rem;
  }
  .list_search_options span {
    min-width: 0;
    min-height: 3.2rem;
    padding: 0.4rem 3rem;
    font-size: 1.3rem;
  }
  .list_search_keyword {
    flex: none;
    width: calc(100% - 3.6rem);
    height: 4.2rem;
    margin: 1.8rem;
    font-size: 1.3rem;
  }
  .list_search_submit {
    width: 24rem;
    min-height: 6rem;
    margin-top: 1.5rem;
    gap: 4rem;
    font-size: 1.8rem;
  }
  .list_search_submit span {
    width: 2.2rem;
    height: 2.2rem;
  }

  .list_status {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding: 1.5rem;
    border-radius: 1.5rem;
  }
  .list_status_conditions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }
  .list_status_label {
    font-size: 1.6rem;
  }
  .list_status_tags {
    gap: 0.6rem;
  }
  .list_status_tags li {
    min-width: 0;
    padding: 0.4rem 1rem;
    font-size: 1.3rem;
  }
  .list_status_count {
    font-size: 1.6rem;
  }
}
@media print, screen and (min-width: 768px) {
  .list_search_toggle_title {
    font-size: 3rem;
  }
  .list_search_toggle_state {
    font-size: 1.6rem;
  }
  .list_search_label,
  .list_search_options,
  .list_search_keyword {
    font-size: 1.8rem;
  }
  .list_search_label {
    padding: 0 1.5rem;
  }

  .list_status {
    border-radius: 2rem;
    padding: 2rem 3rem;
    margin-bottom: 5rem;
  }
  .list_search {
    padding-bottom: 6rem;
  }
}
/* ---------------------------------------------------------------------------------------------

　   おすすめ情報

--------------------------------------------------------------------------------------------- */

#main:has(#recommend) {
  overflow: visible;
}
.recommend {
  overflow: hidden;
  background: #fff;
}
.modelcourse-single #recommend {
  background: #f0efe8;
}
.recommend .container {
  overflow: visible;
}
.recommend_head {
  position: relative;
  text-align: center;
}
.recommend_head_en {
  margin: 0;
  line-height: 0;
}
.recommend_head_en img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.recommend_head_ja {
  position: relative;
  z-index: 1;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
.recommend_row + .recommend_row {
  margin-top: 8rem;
}
.recommend_keywords {
  margin-top: 10rem;
}
.recommend_keywords .recommend_head {
  margin-bottom: 0;
}
.recommend_keywords .keywords_list {
  margin-top: 3rem;
}
.recommend .tour_slider .splide__track {
  overflow: hidden;
}
.recommend .tour_slider .splide__slide {
  height: auto !important;
}
.recommend .tour_card {
  width: 100%;
  height: 100%;
  border: 1px solid #2e2e2e;
  box-shadow: none;
}
.recommend .topic_slider .splide__slide {
  padding: 0 2rem;
  padding-bottom: 0;
}
.recommend .topic_slider .splide__slide:first-child {
  border-left: 1px solid #000;
}
.recommend .recommend_modelcourse_slider .splide__track {
  overflow: visible;
}
.recommend .recommend_modelcourse_slider .splide__slide {
  direction: ltr;
}
.recommend .article_inner--reverse .recommend_modelcourse_slider {
  margin-left: -39.2rem;
}
.recommend .article_main:has(.topic_arrows) {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  position: relative;
  overflow: visible;
  clip-path: none;
}
.recommend .article_main:has(.topic_arrows) > .splide {
  grid-row: 1;
  grid-column: 1;
  min-width: 0;
  z-index: 0;
}
.recommend .article_main:has(.topic_arrows) > .topic_bottom,
.recommend .article_main:has(.topic_arrows) > .modelcourse_arrows.topic_bottom {
  display: contents;
}
.recommend .article_main:has(.topic_arrows) .topic_arrows {
  display: contents;
}
.recommend .article_main:has(.topic_arrows) .topic_arrow_prev,
.recommend .article_main:has(.topic_arrows) .modelcourse_arrow:first-child {
  grid-row: 1;
  grid-column: 1;
  align-self: center;
  justify-self: start;
  z-index: 3;
  margin-top: 0;
  margin-left: -4rem;
}
.recommend .article_main:has(.topic_arrows) .topic_arrow_next,
.recommend .article_main:has(.topic_arrows) .modelcourse_arrow:last-child {
  grid-row: 1;
  grid-column: 1;
  align-self: center;
  justify-self: end;
  z-index: 3;
  margin-top: 0;
  margin-right: -4rem;
}
.recommend .article_main:has(.topic_arrows) .topic_more_sp,
.recommend .article_main:has(.topic_arrows) .tour_more_sp,
.recommend .article_main:has(.topic_arrows) .modelcourse_more_sp {
  grid-row: 2;
  grid-column: 1;
}
/* .recommend .topic_arrow.is-disabled,
.recommend .topic_arrow:disabled,
.recommend .modelcourse_arrow.is-disabled,
.recommend .modelcourse_arrow:disabled {
  display: none;
} */
.recommend .article_inner:not(.article_inner--reverse) {
  --viewport-bleed-right: calc(50vw - 50%);
}
.recommend .article_inner--reverse {
  --viewport-bleed-left: calc(50vw - 50%);
}
.recommend .article_inner:has(.topic_arrows) {
  position: relative;
}
.recommend
  .article_inner:not(.article_inner--reverse):has(.topic_slider)::after,
.recommend
  .article_inner:not(.article_inner--reverse):has(.tour_slider)::after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(50% - 50vw);
  bottom: 0;
  z-index: 2;
  width: 12rem;
  background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}
.recommend .article_inner--reverse:has(.recommend_modelcourse_slider)::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  bottom: 0;
  z-index: 2;
  width: 12rem;
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}
.recommend
  .article_inner:not(.article_inner--reverse)
  .article_main:has(.topic_arrows) {
  margin-right: calc(50% - 50vw);
}
.recommend .article_inner--reverse .article_main:has(.topic_arrows) {
  margin-left: calc(50% - 50vw);
  margin-right: 0;
}

@media only screen and (max-width: 767px) {
  .recommend {
    padding: 6rem 0 8rem;
  }
  .recommend .article_inner {
    gap: 2rem;
  }
  .recommend_head {
    margin-bottom: 3rem;
  }
  .recommend_head_en img {
    height: 6rem;
  }
  .recommend_keywords .recommend_head_en img {
    height: 8rem;
  }
  .recommend_head_ja {
    margin-top: -3rem;
    font-size: 2.6rem;
    line-height: 1.3;
  }
  .recommend_row + .recommend_row {
    margin-top: 6rem;
  }
  .recommend_keywords {
    margin-top: 6rem;
  }
  .recommend .topic_tit,
  .recommend .modelcourse_tit,
  .recommend .tour_tit {
    font-size: 2rem;
    writing-mode: horizontal-tb;
  }
  .recommend .topic_more,
  .recommend .modelcourse_more,
  .recommend .tour_more {
    display: inline-block;
    flex-shrink: 0;
    width: 7.2rem;
  }
  .recommend
    .article_inner:not(.article_inner--reverse):has(.topic_slider)::after,
  .recommend
    .article_inner:not(.article_inner--reverse):has(.tour_slider)::after,
  .recommend .article_inner--reverse:has(.recommend_modelcourse_slider)::after {
    content: none;
  }
  .recommend .article_main:has(.topic_arrows) {
    display: block;
    overflow: visible;
    margin-right: 0;
  }
  .recommend .article_main:has(.topic_arrows) > .splide {
    grid-row: auto;
    grid-column: auto;
  }
  .recommend .article_main:has(.topic_arrows) > .topic_bottom,
  .recommend
    .article_main:has(.topic_arrows)
    > .modelcourse_arrows.topic_bottom {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.2rem;
    margin-top: 2.4rem;
    padding-right: 1.5rem;
  }
  .recommend .article_main:has(.topic_arrows) .topic_arrows {
    display: flex;
    justify-content: flex-end;
    gap: 0.6rem;
    margin-top: 0;
    margin-right: 0;
    flex-shrink: 0;
  }
  .recommend .article_main:has(.topic_arrows) .topic_arrow_prev,
  .recommend .article_main:has(.topic_arrows) .modelcourse_arrow:first-child,
  .recommend .article_main:has(.topic_arrows) .topic_arrow_next,
  .recommend .article_main:has(.topic_arrows) .modelcourse_arrow:last-child {
    position: static;
    grid-row: auto;
    grid-column: auto;
    align-self: auto;
    justify-self: auto;
    margin: 0;
    transform: none;
  }
  .recommend .article_main:has(.topic_arrows) .topic_more_sp,
  .recommend .article_main:has(.topic_arrows) .tour_more_sp,
  .recommend .article_main:has(.topic_arrows) .modelcourse_more_sp {
    flex: 1;
    max-width: none;
    margin: 0;
  }
  .recommend .article_inner--reverse .article_main:has(.topic_arrows) {
    margin-left: 0;
    margin-right: 0;
  }
  .recommend .article_inner--reverse .recommend_modelcourse_slider {
    margin-left: 0;
  }
  .recommend .recommend_modelcourse_slider .splide__slide {
    padding-bottom: 0;
    height: auto !important;
  }
  .recommend .recommend_modelcourse_slider .modelcourse_card {
    background: #fff;
    padding: 2rem;
  }
  .recommend .recommend_modelcourse_slider .modelcourse_card.is-accent {
    background: #ebf4fa;
  }
  .recommend .recommend_modelcourse_slider .modelcourse_route {
    margin-top: 2rem;
  }
  .recommend .recommend_modelcourse_slider .modelcourse_card_tit {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1.5rem 0 0;
  }
  .recommend .recommend_modelcourse_slider .modelcourse_hash {
    margin-top: 1.5rem;
    font-size: 1.1rem;
  }
  .recommend .recommend_modelcourse_slider .modelcourse_route_spot {
    font-size: 1.2rem;
    height: 4rem;
    padding: 0 1.5rem;
  }
  .recommend .recommend_modelcourse_slider .modelcourse_route_label {
    font-size: 1rem;
  }
  .recommend .recommend_modelcourse_slider .modelcourse_type {
    width: auto;
    height: 4rem;
  }
  .recommend .recommend_modelcourse_slider .modelcourse_transport {
    width: auto;
    height: 2.6rem;
  }
  .recommend .recommend_modelcourse_slider .modelcourse_card_meta {
    gap: 1rem;
  }
  .recommend .recommend_modelcourse_slider .modelcourse_num {
    font-size: 1.4rem;
    width: 4.6rem;
    height: 4.6rem;
  }
  .recommend .tour_card_inner {
    flex-direction: column;
  }
  .recommend .tour_thumb {
    width: 100%;
    aspect-ratio: 2 / 1.4;
  }
  .recommend .tour_body {
    min-height: 0;
  }
}

@media print, screen and (min-width: 768px) {
  .recommend {
    padding: 12rem 0 16rem;
  }
  .recommend_head {
    margin-bottom: 8rem;
  }
  .recommend_head_en img {
    height: 10rem;
  }
  .recommend_head_ja {
    margin-top: -5rem;
    font-size: 3.8rem;
  }
  .recommend_row + .recommend_row {
    margin-top: 14rem;
  }
  .recommend_keywords {
    margin-top: 16rem;
  }
  .recommend_keywords .recommend_head_en img {
    height: 14rem;
  }
  .recommend_keywords .keywords_list {
    margin-top: 4rem;
  }
  .article_inner--reverse {
    flex-direction: row-reverse;
  }
  .recommend .topic_tit,
  .recommend .modelcourse_tit,
  .recommend .tour_tit {
    writing-mode: vertical-rl;
    font-size: 3.6rem;
    letter-spacing: 0.12em;
    line-height: 1;
  }
  .recommend .modelcourse_more,
  .recommend .tour_more {
    width: 14.2rem;
  }
  .recommend .article_main:has(.topic_arrows) {
    grid-template-rows: auto;
    clip-path: none;
  }
  .recommend .article_main:has(.topic_arrows) > .splide {
    clip-path: inset(0 -100vw 0 -4rem);
  }
  .recommend .article_main:has(.tour_slider) > .splide {
    clip-path: inset(0 -100vw 0 0);
  }
  .recommend
    .article_inner--reverse
    .article_main:has(.topic_arrows)
    > .splide {
    clip-path: inset(0 0 0 -100vw);
  }
  .recommend
    .article_inner--reverse
    .article_main:has(.topic_arrows)
    .modelcourse_arrow:last-child {
    position: absolute;
    top: 50%;
    right: -4rem;
    z-index: 3;
    margin: 0;
    transform: translateY(-50%);
  }
  .recommend
    .article_inner:not(.article_inner--reverse)
    .article_main:has(.topic_arrows)
    .topic_arrow_next {
    margin-right: 6rem;
  }
  .recommend
    .article_inner--reverse
    .article_main:has(.topic_arrows)
    .modelcourse_arrow:first-child {
    margin-left: 6rem;
  }
  .recommend .tour_slider .tour_card {
    min-width: 0;
  }
  .recommend .topic_slider .splide__slide {
    padding: 0 5rem;
  }
  .recommend .tour_thumb {
    width: 30rem;
  }
  .recommend .tour_card_inner {
    gap: 3rem;
    min-height: 37rem;
  }
  .recommend .tour_card_tit {
    font-size: 2.4rem;
  }
  .recommend .tour_type_wrap {
    width: 6.4rem;
  }
  .recommend .tour_meta {
    gap: 3rem;
  }
  .recommend .tour_period_date {
    font-size: 2.2rem;
  }
  .recommend .tour_period_label {
    width: 6.4rem;
    font-size: 1.8rem;
  }
  .recommend .tour_tag {
    font-size: 1.4rem;
  }
  .recommend .recommend_modelcourse_slider .modelcourse_type {
    width: auto;
    height: 5rem;
  }
  .recommend .recommend_modelcourse_slider .modelcourse_transport {
    width: auto;
    height: 4rem;
  }
}
/* ---------------------------------------------------------------------------------------------

　   モデルコース詳細

--------------------------------------------------------------------------------------------- */
.modelcourse_single_hero {
  /* MOD: */
  /* background: url("../img/modelcourse/main_pre.jpg") no-repeat left bottom / */
  background: url("../img/modelcourse/main_pre.jpg") no-repeat center bottom /
    cover;
  position: relative;
  color: #fff;
}
.modelcourse_single_hero:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.modelcourse_single_hero .container {
  position: relative;
  z-index: 2;
  height: 100%;
}

.modelcourse_single_category {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.12em;
}

.modelcourse_single_hero_content {
  position: absolute;
  z-index: 1;
}

.modelcourse_single_title {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.modelcourse_single_info,
.modelcourse_single_route,
.modelcourse_single_route_list,
.modelcourse_single_meta {
  display: flex;
  align-items: center;
}

.modelcourse_single_info {
  flex-wrap: wrap;
  gap: 2rem;
}

.modelcourse_single_route {
  gap: 1.5rem;
}

.modelcourse_single_route_label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  writing-mode: vertical-rl;
}

.modelcourse_single_route_list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.modelcourse_single_route_list li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 10rem;
  min-height: 4.5rem;
  padding: 0.7rem 2rem;
  border: 0.2rem solid #fff;
  border-radius: 10rem;
  font-weight: 700;
  line-height: 1.3;
}

.modelcourse_single_route_list li + li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -2.2rem;
  width: 2rem;
  height: 0.2rem;
  background: #fff;
  transform: translateY(-50%);
}

.modelcourse_single_route_list li + li {
  position: relative;
  margin-left: 2rem;
}

.modelcourse_single_meta {
  flex-wrap: wrap;
  gap: 1.5rem;
}

.modelcourse_single_type,
.modelcourse_single_transport {
  display: block;
  width: auto;
  filter: brightness(0) invert(1);
}

.modelcourse_single_hash {
  margin: 0;
  line-height: 1.7;
}

.modelcourse_single_hash a {
  color: inherit;
  text-decoration: none;
}

.modelcourse_single_hash a + a {
  margin-left: 0.6rem;
}

.modelcourse_single_share {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.modelcourse_single_share a,
.modelcourse_single_share img {
  display: block;
}
.modelcourse_single_share a:hover {
  opacity: 0.7;
}
.modelcourse_single_share img {
  width: 100%;
  height: auto;
}

.modelcourse_single_itinerary_title {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
  border-left: 0.6rem solid var(--mainColor-red);
}

.modelcourse_single_itinerary_head > p {
  margin: 2.5rem 0 0;
  line-height: 2;
}

.modelcourse_single_schedule_bar {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: stretch;
  border: 1px solid #d8b0b0;
  border-radius: 1.5rem;
  background: #f8e6e6;
}

.modelcourse_single_schedule_mark,
.modelcourse_single_schedule_item {
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

.modelcourse_single_schedule_mark {
  align-items: center;
  color: var(--mainColor-red);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}

.modelcourse_single_schedule_mark::before {
  content: "";
  background: url("../img/modelcourse/ico-flag.png") no-repeat center / contain;
}

/* .modelcourse_single_schedule_item {
  border-left: 1px solid #d8b0b0;
} */

.modelcourse_single_schedule_item_head,
.modelcourse_single_schedule_item_body {
  width: 100%;
  min-width: 0;
}

.modelcourse_single_schedule_label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}

.modelcourse_single_schedule_label::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.modelcourse_single_schedule_item--time
  .modelcourse_single_schedule_label::before,
.modelcourse_single_schedule_item--duration
  .modelcourse_single_schedule_label::before {
  background-image: url("../img/modelcourse/ico-clock.png");
}

.modelcourse_single_schedule_item--location
  .modelcourse_single_schedule_label::before {
  background-image: url("../img/modelcourse/ico-pin.png");
}

.modelcourse_single_schedule_value {
  margin: 0;
  font-weight: 500;
}

.modelcourse_single_schedule_label_sub {
  font-size: inherit;
}

.modelcourse_single_schedule_num {
  /* MOD: */
  /* color: var(--mainColor-red); */
  line-height: 1;
}

.modelcourse_single_spots {
  position: relative;
}

.modelcourse_single_spots::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  border-left: 1px dotted var(--mainColor-red);
}

.modelcourse_single_spot {
  position: relative;
  display: grid;
  align-items: start;
}

.modelcourse_single_spot_visual {
  position: relative;
}

.modelcourse_single_spot_visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  background: var(--mainColor-red);
}

.modelcourse_single_spot_image {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  color: #fff;
}

.modelcourse_single_spot_image::after {
  content: "";
  position: absolute;
  inset: 0;
  /* MOD: */
  /* background: rgba(0, 0, 0, 0.4); */
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0) 55%
  );
  pointer-events: none;
  z-index: 1;
}
.modelcourse_single_spot_image:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.modelcourse_single_spot_image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modelcourse_single_spot_meta {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 4;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Cinzel", serif;
}

.modelcourse_single_spot_num {
  position: relative;
}
.modelcourse_single_spot_num:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  height: 1px;
}

.modelcourse_single_travel {
  border: 1px solid #000;
  border-radius: 10rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.modelcourse_single_spot_body h3 {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.modelcourse_single_spot_text {
  margin: 2rem 0 0;
  line-height: 1.9;
}

.modelcourse_single_spot_data {
  position: relative;
  margin: 4.5rem 0 0;
  padding: 3rem 2rem 2rem;
  border: 1px solid #ccc;
  border-radius: 1.5rem;
  background: #f7f7f7;
}
.modelcourse_single_spot_data:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 2rem;
  width: 14rem;
  height: 1px;
  background: #fff;
}
.modelcourse_single_spot_data_title {
  position: absolute;
  top: 0;
  left: 2rem;
  margin: 0;
  padding: 0 0.8rem;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  transform: translateY(-55%);
  width: 14rem;
  text-align: center;
}

.modelcourse_single_spot_data_list {
  display: grid;
  margin: 0;
}

.modelcourse_single_spot_data_more {
  display: none;
}

.modelcourse_single_spot_data_item {
  position: relative;
  min-width: 0;
  padding-left: 2.2rem;
}

.modelcourse_single_spot_data_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.modelcourse_single_spot_data_item--address::before {
  background-image: url("../img/modelcourse/spot-ico-pin.png");
}

.modelcourse_single_spot_data_item--tel::before {
  background-image: url("../img/modelcourse/spot-ico-tel.png");
}

.modelcourse_single_spot_data_item--price::before {
  background-image: url("../img/modelcourse/spot-ico-price.png");
}

.modelcourse_single_spot_data_item--hours::before {
  background-image: url("../img/modelcourse/spot-ico-clock.png");
}

.modelcourse_single_spot_data_item--access::before {
  background-image: url("../img/icon-access.png");
}

.modelcourse_single_spot_data_item--parking::before {
  background-image: url("../img/icon-parking.png");
}

.modelcourse_single_spot_data dt {
  font-weight: 700;
}

.modelcourse_single_spot_data dd {
  margin: 0.5rem 0 0;
  line-height: 1.5;
  font-weight: 500;
}

.modelcourse_single_spot_nav {
  display: none;
}

.modelcourse_voice {
  position: relative;
  overflow: hidden;
  padding: 12rem 0;
  background: #fff;
}

.modelcourse_voice > .container {
  position: relative;
  z-index: 1;
}

.modelcourse_voice_title {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin: 0 0 7rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.12em;
}

.modelcourse_voice_title::before,
.modelcourse_voice_title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--mainColor-red);
}

.modelcourse_voice_title span {
  flex-shrink: 0;
}

.modelcourse_voice_slider_wrap {
  position: relative;
}

.modelcourse_voice_slider .splide__track {
  overflow: hidden;
  border: 1px solid var(--mainColor-red);
  border-radius: 2rem;
}

.modelcourse_voice_slider .splide__slide + .splide__slide {
  border-left: 1px solid var(--mainColor-red);
  background: #fcfcfa;
}

.modelcourse_voice_card {
  height: 100%;
  padding: 4rem;
}

.modelcourse_voice_profile {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.modelcourse_voice_profile img {
  flex-shrink: 0;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  object-fit: cover;
}

.modelcourse_voice_person,
.modelcourse_voice_season,
.modelcourse_voice_rating,
.modelcourse_voice_text {
  margin: 0;
}

.modelcourse_voice_person,
.modelcourse_voice_season {
  font-weight: 500;
}

.modelcourse_voice_season {
  margin-top: 1rem;
}

.modelcourse_voice_rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.modelcourse_voice_rating_num {
  font-weight: 600;
}

/* 0.5 刻み対応の星評価: 背景に空星、前景に％幅の塗り星を重ねる */
.mk_stars {
  position: relative;
  display: inline-block;
  line-height: 1;
  font-size: 2rem;
  letter-spacing: 0.15em;
}
.mk_stars_bg {
  color: #d9d0b8;
}
.mk_stars_fg {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: var(--mainColor-red);
  pointer-events: none;
}

.modelcourse_voice_text {
  margin-top: 3rem;
  line-height: 1.9;
}

.modelcourse_voice_slider_wrap .banner_arrow_prev {
  left: -2rem;
}

.modelcourse_voice_slider_wrap .banner_arrow_next {
  right: -2rem;
}

.modelcourse_voice_slider_wrap .banner_arrow {
  overflow: hidden;
  border: 1px solid var(--mainColor-red);
  border-radius: 50%;
}

/* .modelcourse_voice .single_article_nav {
  width: 100%;
  margin-top: 9rem;
} */

@media only screen and (max-width: 767px) {
  .modelcourse_single_hero {
    height: 38rem;
    margin-bottom: 13rem;
  }
  .modelcourse_single_hero:after {
    background: rgba(0, 0, 0, 0.5);
  }
  .modelcourse_single_hero > .container {
    padding-right: 0;
    padding-left: 0;
  }
  .modelcourse_single_category {
    top: 2rem;
    left: 1.5rem;
    width: 9rem;
    height: 9rem;
    font-size: 1.5rem;
  }
  .modelcourse_single_hero_content {
    right: 1.5rem;
    bottom: 2rem;
    left: 1.5rem;
  }
  .modelcourse_single_itinerary_head {
    margin-bottom: 5rem;
  }
  .modelcourse_single_title {
    font-size: 2.4rem;
  }
  .modelcourse_single_info {
    margin-top: 3rem;
  }
  .modelcourse_single_route {
    gap: 1rem;
  }
  .modelcourse_single_meta {
    gap: 1rem;
  }
  .modelcourse_single_route_list li {
    min-width: 6rem;
    min-height: 3.2rem;
    padding: 0.6rem 1.5rem;
    font-size: 1.3rem;
  }
  .modelcourse_single_route_list li + li::before {
    width: 1.7rem;
    left: -1.8rem;
  }
  .modelcourse_single_route_list li + li {
    margin-left: 1.5rem;
  }
  .modelcourse_single_type {
    height: 3.2rem;
  }
  .modelcourse_single_transport {
    height: 2.2rem;
  }
  .modelcourse_single_hash {
    margin-top: 2rem;
    font-size: 1.2rem;
  }
  .modelcourse_single_share {
    gap: 1rem;
    position: absolute;
    width: 100%;
    bottom: -7rem;
    padding: 0 1.5rem;
  }
  .modelcourse_single_share li {
    width: 5rem;
  }
  .modelcourse_single_itinerary_head {
    margin-bottom: 3.5rem;
  }
  .modelcourse_single_itinerary_title {
    font-size: 2rem;
    padding-left: 2rem;
  }
  .modelcourse_single_itinerary_head > p {
    margin-top: 2rem;
  }
  .modelcourse_single_spot_nav {
    display: block;
    overflow-x: auto;
    margin: 7rem 0 4rem;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
  .modelcourse_single_spot_nav::-webkit-scrollbar {
    display: none;
  }
  .modelcourse_single_spot_nav ol {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .modelcourse_single_spot_nav li {
    flex: 0 0 25%;
    scroll-snap-align: start;
  }
  .modelcourse_single_spot_nav li + li {
    border-left: 1px solid #ccc;
  }
  .modelcourse_single_spot_nav a {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .modelcourse_single_spot_nav span {
    color: var(--mainColor-red);
    font-size: 3.2rem;
    line-height: 1;
  }
  .modelcourse_single_spot_nav time {
    margin-top: 1rem;
    font-size: 1.6rem;
  }
  .modelcourse_single_schedule_bar {
    display: block;
    overflow: visible;
    /* border-color: var(--mainColor-red); */
    border-radius: 2rem;
    /* background: #f8eaea; */
    padding: 2rem;
  }
  .modelcourse_single_schedule_bar--start::after,
  .modelcourse_single_schedule_bar--goal::after {
    content: "";
    position: absolute;
    bottom: -1rem;
    left: 2.5rem;
    z-index: 2;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--mainColor-red);
  }
  .modelcourse_single_schedule_bar--goal::after {
    top: -1rem;
    bottom: auto;
  }
  .modelcourse_single_schedule_mark {
    justify-content: flex-start;
    flex-direction: row;
    gap: 1.5rem;
    /* padding: 2rem 2.5rem; */
    font-size: 2rem;
  }
  .modelcourse_single_schedule_mark::before {
    width: 5rem;
    height: 5rem;
  }
  .modelcourse_single_schedule_item {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    justify-content: space-between;
    padding: 2rem 0;
    /* padding: 2rem 2.5rem; */
    /* border-top: 1px solid #e4c8c8; */
  }
  .modelcourse_single_schedule_item + .modelcourse_single_schedule_item {
    border-top: 1px solid #e4c8c8;
  }
  .modelcourse_single_schedule_label {
    flex-wrap: wrap;
    margin: 0;
    font-size: 1.5rem;
  }
  .modelcourse_single_schedule_item_head {
    flex: 0 0 42%;
    width: auto;
  }
  .modelcourse_single_schedule_item_body {
    flex: 0 0 54%;
    width: auto;
  }
  .modelcourse_single_schedule_label::before {
    width: 2rem;
    height: 2rem;
  }
  .modelcourse_single_schedule_label_sub {
    width: 100%;
    padding-left: 2.6rem;
    font-size: 1.1rem;
    line-height: 1.2;
  }
  .modelcourse_single_schedule_item--duration
    .modelcourse_single_schedule_label {
    row-gap: 0;
  }
  .modelcourse_single_schedule_value {
    font-size: 1.8rem;
  }
  .modelcourse_single_schedule_note {
    margin-top: 0.5rem;
    font-size: 1.3rem;
  }
  .modelcourse_single_schedule_num {
    font-size: 3.5rem;
  }
  .modelcourse_single_schedule_item--time .modelcourse_single_schedule_value {
    font-size: 2.5rem;
  }
  .modelcourse_single_spots {
    padding: 5rem 0;
  }
  .modelcourse_single_spots::before {
    left: 3.6rem;
  }
  .modelcourse_single_spot {
    /* MOD: */
    /* display: block; */
    display: flex;
    flex-direction: column;

    scroll-margin-top: 8rem;
  }
  .modelcourse_single_spot + .modelcourse_single_spot {
    margin-top: 5rem;
  }

  /* MOD: */
  /* visualを透過させ、中の要素を.modelcourse_single_spotの直接の子として並び替え可能にする */
  .modelcourse_single_spot_visual {
    display: contents;
  }
  .modelcourse_single_spot_image {
    order: 1;
  }
  .modelcourse_single_spot_subphotos {
    order: 2;
  }
  .modelcourse_single_spot_body {
    order: 3;
  }
  .modelcourse_single_travel {
    order: 4;
  }

  .modelcourse_single_spot_image {
    width: calc(100% + 3rem);
    aspect-ratio: 3 / 1.7;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
  .modelcourse_single_spot_image:before {
    width: 100%;
    height: 100%;
    background: url("../img/modelcourse/spot-image-circle_sp.png") no-repeat
      left center / contain;
  }
  .modelcourse_single_spot_meta {
    width: 22rem;
  }
  .modelcourse_single_spot_num {
    font-size: 5.8rem;
  }
  .modelcourse_single_spot_meta {
  }
  .modelcourse_single_spot_num {
    font-size: 4.5rem;
  }
  .modelcourse_single_spot_num:after {
    width: 4rem;
  }
  .modelcourse_single_spot_meta time {
    font-size: 2.8rem;
    margin-top: 1rem;
  }
  .modelcourse_single_spot_body {
    margin-top: 3rem;
    padding-left: 7rem;
  }
  .modelcourse_single_spot_body h3 {
    font-size: 2.2rem;
  }
  .modelcourse_single_spot_text {
    margin-top: 1.5rem;
    font-size: 1.4rem;
  }
  .modelcourse_single_spot_data {
    padding: 2.5rem 1.5rem;
  }
  .modelcourse_single_spot_data.is-open {
    padding-bottom: 6.5rem;
  }
  .modelcourse_single_spot_data::after {
    content: "";
    position: absolute;
    left: -1px;
    right: -1px;
    bottom: -1px;
    z-index: 1;
    height: 15rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 65%);
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .modelcourse_single_spot_data.is-open::after {
    opacity: 0;
  }
  .modelcourse_single_spot_data_list {
    grid-template-columns: 1fr;
    gap: 2rem 1.5rem;
    max-height: 14rem;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .modelcourse_single_spot_data.is-open .modelcourse_single_spot_data_list {
    max-height: 100rem;
  }
  .modelcourse_single_spot_data_item--address {
    order: 1;
  }
  .modelcourse_single_spot_data_item--hours {
    order: 2;
  }
  .modelcourse_single_spot_data_item--tel {
    order: 3;
  }
  .modelcourse_single_spot_data_item--access {
    order: 4;
  }
  .modelcourse_single_spot_data_item--price {
    order: 5;
  }
  .modelcourse_single_spot_data_item--parking {
    order: 6;
  }
  .modelcourse_single_spot_data_more {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0;
    border: 0;
    background: transparent;
    font: inherit;
    white-space: nowrap;
    transform: translateX(-50%);
    font-size: 1.2rem;
  }
  .modelcourse_single_spot_data_more_icon {
    position: relative;
    display: block;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    background: var(--textColor-black);
  }
  .modelcourse_single_spot_data_more_icon::before,
  .modelcourse_single_spot_data_more_icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1rem;
    height: 1px;
    background: #fff;
    transform: translate(-50%, -50%);
    transition: transform 0.3s;
  }
  .modelcourse_single_spot_data_more_icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .modelcourse_single_spot_data.is-open
    .modelcourse_single_spot_data_more_icon::after {
    transform: translate(-50%, -50%) rotate(0);
  }

  /* MOD: */
  /*
  .modelcourse_single_travel {
    width: 3rem;
    min-height: 10rem;
    padding: 1rem 0.5rem;
    writing-mode: vertical-rl;
    text-align: center;
    line-height: 1.2;
    position: absolute;
    left: 2.2rem;
    bottom: -12rem;

    padding: 1.25rem 0.5rem;
  }
  .modelcourse_single_travel_num {
    position: relative;
    display: inline-block;
    transform: rotate(-90deg);
    margin: 0.1rem 0;
  }
  */
  .modelcourse_single_travel {
    position: static;
    width: fit-content;
    /* min-width: 20rem; */
    /* min-width: 95%; */
    min-height: auto;
    padding: 1.15rem 3rem 1.25rem;
    margin: 3rem 0 0 var(--travel-margin-left);
    /* margin: 3rem auto 0; */
    line-height: 1.2;
    text-align: center;
    writing-mode: horizontal-tb;

    text-align: left;
    justify-content: flex-start;

    --travel-margin-left: 0.75rem;
  }
  .modelcourse_single_travel_num {
    position: relative;
    display: inline-block;
    margin: 0 0.1rem;
    transform: none;
  }

  .modelcourse_voice {
    padding: 8rem 0 12rem;
  }
  .modelcourse_voice_title {
    gap: 1.5rem;
    margin-bottom: 3rem;
    font-size: 2rem;
  }
  .modelcourse_voice_slider .splide__track {
    overflow: visible;
    border: 0;
    border-radius: 0;
  }
  .modelcourse_voice_slider .splide__slide {
    border: 1px solid var(--mainColor-red);
    border-radius: 2rem;
  }
  .modelcourse_voice_slider .splide__slide + .splide__slide {
    border-left: 1px solid var(--mainColor-red);
  }
  .modelcourse_voice_card {
    padding: 3rem 2rem;
  }
  .modelcourse_voice_profile {
    gap: 2rem;
  }
  .modelcourse_voice_profile img {
    width: 9rem;
    height: 9rem;
  }
  .modelcourse_voice_person,
  .modelcourse_voice_season {
    font-size: 1.4rem;
  }
  .mk_stars {
    font-size: 1.8rem;
  }
  .modelcourse_voice_text {
    margin-top: 2.5rem;
    font-size: 1.4rem;
  }
  .modelcourse_voice_slider_wrap .banner_arrow_prev {
    left: 0.8rem;
  }
  .modelcourse_voice_slider_wrap .banner_arrow_next {
    right: 0.8rem;
  }
  .modelcourse_voice .single_article_nav {
    margin-top: 8rem;
  }
}
@media print, screen and (min-width: 768px) {
  .modelcourse-single #breadcrumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
  }
  .modelcourse-single .breadcrumb .container {
    justify-content: flex-end;
  }
  .modelcourse-single .breadcrumb_link,
  .modelcourse-single .breadcrumb_current {
    color: #fff;
  }
  .breadcrumb_item:not(:last-child)::after {
    background: url("../img/arrow-white02.svg") no-repeat center / contain;
  }
  .modelcourse_single_hero {
    height: calc(100vh - 12rem);
    height: calc(100svh - 12rem);
    min-height: 96rem;
  }
  .modelcourse_single_hero:after {
    background: url(../img/modelcourse/gra.png) repeat-y left top / 100%;
  }
  .modelcourse_single_category {
    top: 10rem;
    left: 5rem;
    width: 20rem;
    height: 20rem;
    font-size: 2.5rem;
  }
  .modelcourse_single_hero_content {
    right: 10rem;
    bottom: 11rem;
    left: 5rem;
  }
  .modelcourse_single_itinerary {
    /* MOD: */
    /* padding: 10rem 0 14rem; */
    padding: 10rem 0 2rem;
  }
  .modelcourse_single_itinerary_head {
    margin-bottom: 7rem;
  }
  .modelcourse_single_itinerary_title {
    margin-bottom: 5rem;
  }
  .modelcourse_single_itinerary_head p {
    font-size: 2rem;
  }
  .modelcourse_single_title {
    font-size: 5.8rem;
  }
  .modelcourse_single_info {
    margin-top: 5rem;
  }
  .modelcourse_single_route_list li {
    font-size: 2rem;
  }
  .modelcourse_single_type {
    height: 5rem;
  }
  .modelcourse_single_transport {
    height: 4rem;
  }
  .modelcourse_single_hash {
    max-width: 80rem;
    margin-top: 5rem;
    font-size: 1.7rem;
  }
  .modelcourse_single_share {
    position: absolute;
    right: 0;
    bottom: 11rem;
    z-index: 2;
  }
  .modelcourse_single_share li {
    width: 6.4rem;
  }
  .modelcourse_single_route_label {
    font-size: 1.2rem;
  }
  .modelcourse_single_itinerary_title {
    font-size: 4rem;
    padding-left: 4rem;
  }
  .modelcourse_single_schedule_bar--start {
    grid-template-columns: 29rem 29rem minmax(30rem, 1fr) 46rem;
  }
  .modelcourse_single_schedule_bar--goal {
    grid-template-columns: 29rem 29rem minmax(30rem, 1fr);
  }
  .modelcourse_single_schedule_bar::after {
    content: "";
    position: absolute;
    left: 27.7rem;
    z-index: 2;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    background: var(--mainColor-red);
  }
  .modelcourse_single_schedule_bar--start::after {
    bottom: -1.3rem;
  }
  .modelcourse_single_schedule_bar--goal::after {
    top: -1.3rem;
  }
  .modelcourse_single_spots::before {
    left: 29rem;
  }
  .modelcourse_single_spot {
    grid-template-columns: 58rem minmax(0, 1fr);
    gap: 5rem;
  }
  .modelcourse_single_spot_image {
    width: 58rem;
    height: 40.8rem;
    border-radius: 3rem;
  }
  .modelcourse_single_spot_image:before {
    width: 21.7rem;
    height: 34.2rem;
    background: url("../img/modelcourse/spot-image-circle.png") no-repeat left
      center / contain;
  }
  .modelcourse_single_spot_meta {
    width: 18rem;
  }
  .modelcourse_single_spot_data {
    padding: 3rem 2rem 2rem;
  }
  .modelcourse_single_spot_num {
    font-size: 5.8rem;
  }
  .modelcourse_single_spot_num:after {
    width: 4.8rem;
  }
  .modelcourse_single_spot_meta time {
    font-size: 3.8rem;
    margin-top: 1.2rem;
  }
  .modelcourse_single_spot_data_list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem 3rem;
  }
  .modelcourse_single_spot_body h3 {
    font-size: 5.125rem;
  }
  .modelcourse_single_spot_text {
    font-size: 2rem;
  }
  .modelcourse_single_spot_data dt,
  .modelcourse_single_spot_data dd {
    font-size: 1.6rem;
  }
  .modelcourse_single_spot_data_item {
    padding-left: 3rem;
  }
  .modelcourse_single_spot_data_item::before {
    width: 2.2rem;
    height: 2.2rem;
  }
  .modelcourse_single_spot_data_title {
    font-size: 2rem;
  }
  .modelcourse_single_travel {
    width: 20rem;
    /* height: 5.2rem; */
    font-size: 2rem;
    margin: 5rem auto 0;
    /* MOD: */
    width: fit-content;
    min-width: 20rem;
    min-height: 5.2rem;
    line-height: 1.5;
    padding: 1.5rem 5rem;
  }
  .modelcourse_single_spot + .modelcourse_single_spot {
    margin-top: 5rem;
  }
  .modelcourse_single_schedule_mark,
  .modelcourse_single_schedule_item {
    min-height: 18rem;
    padding: 3rem 6rem;
  }
  .modelcourse_single_schedule_mark::before {
    width: 6rem;
    height: 6rem;
    margin-bottom: 1rem;
  }
  .modelcourse_single_schedule_mark {
    font-size: 2.8rem;
  }
  .modelcourse_single_schedule_label {
    font-size: 1.8rem;
    gap: 1.4rem;
    margin-bottom: 1rem;
  }
  .modelcourse_single_schedule_label::before {
    width: 3.4rem;
    height: 3.4rem;
  }
  .modelcourse_single_spots {
    padding: 14rem 0;
  }
  .modelcourse_single_schedule_item:before {
    content: "";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12rem;
    border-left: 1px dotted #c1c1c1;
    position: absolute;
  }
  .modelcourse_single_schedule_item--time time {
    font-size: 4.8rem;
  }
  .modelcourse_single_schedule_note {
    font-size: 1.6rem;
    margin-top: 0.5rem;
  }
  .modelcourse_single_schedule_value {
    font-size: 3.6rem;
    text-align: center;
  }
  .modelcourse_single_schedule_num {
    font-size: 7.8rem;
  }
  .modelcourse_voice {
    /* MOD: */
    /* padding: 12rem 0 23rem; */
    padding: 12rem 0 26rem;
  }
  .modelcourse_voice_title {
    font-size: 3.8rem;
  }
  .modelcourse_voice_meta {
    font-size: 1.7rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   XXX

--------------------------------------------------------------------------------------------- */

@media only screen and (max-width: 767px) {
}
@media print, screen and (min-width: 768px) {
}

/* ---------------------------------------------------------------------------------------------

　   サイトマップ (/sitemap/ — wp-sitemap-page プラグイン出力)

--------------------------------------------------------------------------------------------- */
.page-id-26 main {
  padding: 12rem 0 16rem;
  background: #f7f4ec;
}
.page-id-26 .entry-content {
  max-width: 108rem;
  margin: 0 auto;
  padding: 0 4rem;
}
.wsp-container {
  background: #fff;
  border-radius: 2.4rem;
  padding: 6rem 6rem 5rem;
  box-shadow: 0 0.8rem 3rem rgba(0, 0, 0, 0.04);
}
.wsp-container + .wsp-container {
  margin-top: 4rem;
}
.wsp-pages-title,
.wsp-posts-title,
.wsp-categories-title {
  position: relative;
  margin: 0 0 3.6rem;
  padding-bottom: 1.8rem;
  font-family: "Zen Old Mincho", serif;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #1a1a1a;
  border-bottom: 0.1rem solid #ddd6c4;
}
.wsp-pages-title::before,
.wsp-posts-title::before,
.wsp-categories-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 6rem;
  height: 0.3rem;
  background: #1a1a1a;
  border-radius: 0.3rem;
}
.wsp-pages-list,
.wsp-posts-list,
.wsp-categories-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 2.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.wsp-pages-list li,
.wsp-posts-list li,
.wsp-categories-list li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.wsp-pages-list li a,
.wsp-posts-list li a,
.wsp-categories-list li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.6rem 0.5rem 1.6rem 2rem;
  border-bottom: 0.1rem solid #eee6d3;
  color: #1a1a1a;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition:
    background-color 0.25s,
    padding-left 0.25s,
    color 0.25s;
}
.wsp-pages-list li a::before,
.wsp-posts-list li a::before,
.wsp-categories-list li a::before {
  content: "";
  flex-shrink: 0;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.15rem solid #b8a678;
  border-right: 0.15rem solid #b8a678;
  transform: rotate(45deg);
  transition:
    transform 0.25s,
    border-color 0.25s;
}
.wsp-pages-list li a:hover,
.wsp-posts-list li a:hover,
.wsp-categories-list li a:hover {
  padding-left: 2.6rem;
  background: #faf6ea;
  color: #7a6127;
}
.wsp-pages-list li a:hover::before,
.wsp-posts-list li a:hover::before,
.wsp-categories-list li a:hover::before {
  border-color: #7a6127;
  transform: rotate(45deg) translate(0.2rem, -0.2rem);
}
.wsp-pages-list .current_page_item a,
.wsp-posts-list .current_page_item a,
.wsp-categories-list .current-cat a {
  color: #7a6127;
  font-weight: 700;
  background: #faf6ea;
}
.wsp-pages-list .current_page_item a::before,
.wsp-posts-list .current_page_item a::before,
.wsp-categories-list .current-cat a::before {
  border-color: #7a6127;
}
.wsp-pages-list .children,
.wsp-posts-list .children {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 2.4rem;
  padding-left: 2.4rem;
  margin: 0 0 0.6rem;
  border-left: 0.2rem solid #eee6d3;
}
.wsp-pages-list .children li a::before,
.wsp-posts-list .children li a::before {
  width: 0.6rem;
  height: 0.6rem;
}

@media only screen and (max-width: 767px) {
  .page-id-26 main {
    padding: 8rem 0 10rem;
  }
  .page-id-26 .entry-content {
    padding: 0 2rem;
  }
  .wsp-container {
    padding: 3.2rem 2.4rem 2.4rem;
    border-radius: 1.8rem;
  }
  .wsp-pages-title,
  .wsp-posts-title,
  .wsp-categories-title {
    margin-bottom: 2.4rem;
    padding-bottom: 1.2rem;
    font-size: 2.2rem;
  }
  .wsp-pages-list,
  .wsp-posts-list,
  .wsp-categories-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .wsp-pages-list li a,
  .wsp-posts-list li a,
  .wsp-categories-list li a {
    padding: 1.4rem 0.5rem 1.4rem 1.6rem;
    font-size: 1.5rem;
  }
  .wsp-pages-list li a:hover,
  .wsp-posts-list li a:hover,
  .wsp-categories-list li a:hover {
    padding-left: 2rem;
  }
  .wsp-pages-list .children,
  .wsp-posts-list .children {
    grid-template-columns: 1fr;
    padding-left: 1.4rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   404 ページ (Not Found)

--------------------------------------------------------------------------------------------- */
.error404 main {
  background: #f7f4ec;
}
.error404 #breadcrumb {
  background: transparent;
}
#notfound {
  padding: 6rem 0 12rem;
  overflow: hidden;
}
.notfound_inner {
  position: relative;
  max-width: 84rem;
  margin: 0 auto;
  padding: 8rem 6rem 7rem;
  background: #fff;
  border-radius: 3rem;
  box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.05);
  text-align: center;
}
.notfound_code {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: 14rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #333333;
}
.notfound_en {
  margin: 1rem 0 3rem;
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: #b8a678;
  text-transform: uppercase;
}
.notfound_title {
  margin: 0 0 3rem;
  font-family: "Zen Old Mincho", serif;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #1a1a1a;
}
.notfound_lead {
  margin: 0 0 4rem;
  font-size: 1.55rem;
  line-height: 2;
  color: #555;
}
.notfound_search {
  display: flex;
  align-items: stretch;
  gap: 0.8rem;
  max-width: 48rem;
  margin: 0 auto 4rem;
}
.notfound_search_input {
  flex: 1;
  min-width: 0;
  padding: 1.4rem 1.8rem;
  border: 0.1rem solid #ddd6c4;
  border-radius: 0.6rem;
  background: #faf7ef;
  font-size: 1.5rem;
}
.notfound_search_input:focus {
  outline: 2px solid #b8a678;
  outline-offset: -2px;
  background: #fff;
}
.notfound_search_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  border: 0;
  border-radius: 0.6rem;
  background: #1a1a1a;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s;
}
.notfound_search_btn:hover {
  background: #7a6127;
}
.notfound_home_btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  min-width: 24rem;
  padding: 2rem 3.6rem 2rem 3rem;
  border: 0.1rem solid #1a1a1a;
  border-radius: 999rem;
  background: #1a1a1a;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.7rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition:
    background-color 0.25s,
    color 0.25s,
    padding 0.25s;
}
.notfound_home_btn:hover {
  background: #fff;
  color: #1a1a1a;
  padding-right: 4.4rem;
}
.notfound_home_arrow {
  position: relative;
  display: inline-block;
  width: 2rem;
  height: 0.1rem;
  background: currentColor;
  transition: width 0.25s;
}
.notfound_home_arrow::after {
  content: "";
  position: absolute;
  right: -0.1rem;
  top: 50%;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.1rem solid currentColor;
  border-right: 0.1rem solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.notfound_home_btn:hover .notfound_home_arrow {
  width: 3rem;
}
.notfound_inner::before,
.notfound_inner::after {
  content: "";
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(184, 166, 120, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}
.notfound_inner::before {
  top: -6rem;
  left: -6rem;
}
.notfound_inner::after {
  bottom: -6rem;
  right: -6rem;
}
.notfound_inner > * {
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  #notfound {
    padding: 4rem 0 8rem;
  }
  .notfound_inner {
    margin: 0 2rem;
    padding: 5rem 2.4rem 4.5rem;
    border-radius: 2rem;
  }
  .notfound_code {
    font-size: 8rem;
  }
  .notfound_en {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
  .notfound_title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
  .notfound_lead {
    font-size: 1.4rem;
    line-height: 1.9;
    margin-bottom: 3rem;
  }
  .notfound_search {
    margin-bottom: 3rem;
  }
  .notfound_search_input {
    padding: 1.2rem 1.4rem;
    font-size: 1.4rem;
  }
  .notfound_home_btn {
    min-width: 20rem;
    padding: 1.6rem 2.8rem 1.6rem 2.4rem;
    font-size: 1.5rem;
  }
}

/* スポット名と滞在時間 */
.modelcourse_single_spot_heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.modelcourse_single_spot_heading > h3 {
  flex: 1 1 auto;
  min-width: 0;
  overflow-wrap: anywhere;
}

/* スポットのサブ画像：メイン画像と同じ幅に揃える */
.modelcourse_single_spot_subphotos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.modelcourse_single_spot_subphoto {
  display: block;
  width: 100%;
  aspect-ratio: 10 / 7;
  object-fit: cover;
  border-radius: 1.5rem;
}
.modelcourse_single_spot_subphoto--right {
  grid-column: 2;
}
@media (max-width: 767px) {
  .modelcourse_single_spot_visual > .modelcourse_single_spot_subphotos {
    width: calc(100% + 3rem);
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
}

/* お知らせのアイキャッチ */
.news_archive .news_item > a {
  flex-direction: row;
  align-items: center;
  gap: 3rem;
}
.news_archive .news_item_link_wrap {
  flex: 1;
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}
.news_item_thumbnail {
  display: block;
  flex: 0 0 24rem;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border-radius: 1rem;
  background: #fff;
}
.news_item_thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news_item_thumbnail--logo img {
  object-fit: contain;
  padding: 2rem;
}
.single_article_thumbnail {
  margin-top: 4rem;
}
.single_article_thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
.single_article_thumbnail--logo {
  display: flex;
  justify-content: center;
  padding: 4rem 2rem;
  background: #fff;
}
.single_article_thumbnail--logo img {
  width: min(100%, 40rem);
  object-fit: contain;
  border-radius: 0;
}
@media (max-width: 767px) {
  .news_archive .news_item > a {
    gap: 1.5rem;
  }
  .news_item_thumbnail {
    flex-basis: 10rem;
  }
  .news_item_thumbnail--logo img {
    padding: 1rem;
  }
  .news_archive .news_meta {
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }
  .single_article_thumbnail {
    margin-top: 2.5rem;
  }
  .single_article_thumbnail--logo {
    padding: 2rem;
  }
}

/* モデルコース詳細：見どころ・滞在時間（共通／スマホ） */
.modelcourse_single_spot_highlights {
  margin-top: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #cf272d;
}
.modelcourse_single_spot_highlights_label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 2rem;
  color: #bf1b21;
  font-size: 0.875rem;
  font-weight: 700;
}
.modelcourse_single_spot_highlights_label::after {
  content: "";
  flex: 1;
  height: 1px;
  margin-left: 0.5rem;
  background: #cf272d;
}
.modelcourse_single_spot_highlights_label img {
  display: block;
  flex: 0 0 32px;
  width: 32px;
  height: 26px;
  object-fit: contain;
}
.modelcourse_single_spot_highlights_list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.modelcourse_single_spot_highlights_item {
  min-width: 0;
}
.modelcourse_single_spot_highlights_title {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
  /* MOD: */
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 21px;
  font-weight: bold;
  line-height: 1.75;
  gap: 1.5rem;
  margin: 0.25rem 0;
}
.modelcourse_single_spot_highlights_num {
  display: inline-flex;
  flex: 0 0 35px;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 35px;
  border-radius: 50%;
  background: #bf1b21;
  color: #fff;
  font-family: "Cinzel", serif;
  font-size: 18px;
  font-weight: 400;
  width: 35px;
  height: 35px;
  line-height: 1;
  /* MOD: */
  padding-top: 4px;
}
.modelcourse_single_spot_highlights_text {
  margin: 0.5rem 0 0;
  font-size: 18px;
  line-height: 2;
  overflow-wrap: anywhere;
  /* MOD: */
  font-size: 2rem;
  line-height: 1.9;
  margin: 2rem 0.75rem;
}
.modelcourse_single_spot_stay {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  margin: 0 0 0 auto;
  padding: 0 24px;
  border: 1px solid #a30000;
  border-radius: 10px;
  color: #a30000;
  font-size: 1rem;
  line-height: 1;
  box-sizing: border-box;
  height: 60px;
}
.modelcourse_single_spot_stay_label {
  color: #222;
  margin-right: 10px;
  font-size: 18px;
}
.modelcourse_single_spot_stay_value {
  font-family: "Cinzel", serif;
  font-size: 38px;
}
.modelcourse_single_spot_stay_unit {
  font-size: 18px;
  color: #000;
}
.modelcourse_single_spot_highlights_label span {
  /* MOD: */
  font-size: 2rem;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  padding-left: 1rem;
}
@media (max-width: 767px) {
  .modelcourse_single_spot_highlights_list {
    grid-template-columns: minmax(0, 1fr);
  }
  .modelcourse_single_spot_stay_label {
    font-size: 14px;
  }
  .modelcourse_single_spot_stay_value {
    font-size: 22px;
  }
  .modelcourse_single_spot_highlights_label span {
    font-size: 16px;
  }
  .modelcourse_single_spot_highlights_title {
    font-size: 20px;
  }
  .modelcourse_single_spot_highlights_text {
    font-size: 16px;
  }
  .modelcourse_single_spot_highlights_num {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
    min-height: 28px;
    font-size: 16px;
  }
  .modelcourse_single_spot_stay_unit {
    font-size: 14px;
  }
  .modelcourse_single_spot_stay {
    height: 40px;
  }
}

/* MOD: */
.modelcourse_single_spot_highlights_label span {
  font-family: YakuHanMP, "Zen Old Mincho", serif;
}

.modelcourse_single_schedule_note {
  display: none;
}
@media print, screen and (min-width: 768px) {
    .modelcourse_single_schedule_value {
        font-size: 4.4rem;
    }
}
@media only screen and (max-width: 767px) {
    .modelcourse_single_schedule_value {
        font-size: 2.25rem;
    }
}

/* Copy confirmation next to the share button. */
.modelcourse_copy_wrap {
  position: relative;
}
.modelcourse_copy_tooltip {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  z-index: 10;
  padding: 8px 12px;
  border-radius: 6px;
  background: #2e2e2e;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.modelcourse_copy_tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 10px;
  border: 6px solid transparent;
  border-top-color: #2e2e2e;
}
.modelcourse_copy_tooltip.is-visible {
  visibility: visible;
  opacity: 1;
}

.modelcourse_single_spot_heading > h3 > a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.modelcourse_single_spot_heading > h3 > a:hover,
.modelcourse_single_spot_heading > h3 > a:focus-visible {
  color: var(--mainColor-red, #a30000);
}

.hybrid-journal-card { position: relative; }
.hybrid-journal-card-link, .jounal_tags a { color: inherit; text-decoration: none; }
.hybrid-journal-card-link::after { content: ''; position: absolute; inset: 0; }
.hybrid-journal-card .jounal_tags a { position: relative; z-index: 2; }
.jounal_tags a:hover { text-decoration: underline; }
#modelcourse_results, #tour_results, #jounal_list { scroll-margin-top: 100px; }

/* STARTから最初のスポットへの移動。通常フローで複数の移動表示にも対応。 */
.modelcourse_single_start_travel {
  position: relative;
  display: flow-root;
  width: 58rem;
  max-width: 100%;
  padding-top: 5rem;
}
.modelcourse_single_start_travel::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 29rem;
  border-left: 1px dotted var(--mainColor-red);
  z-index: -1;
}
.modelcourse_single_start_travel { isolation: isolate; }
.modelcourse_single_start_travel .modelcourse_single_travel { margin-top: 0; }
.modelcourse_single_start_travel + .modelcourse_single_spots { padding-top: 5rem; }
.modelcourse_single_spot_visual > .modelcourse_single_travel + .modelcourse_single_travel,
.modelcourse_single_start_travel .modelcourse_single_travel + .modelcourse_single_travel { margin-top: 2rem; }
@media screen and (max-width: 767px) {
  .modelcourse_single_start_travel { width: 100%; padding-top: 3rem; }
  .modelcourse_single_start_travel::before { left: 3.6rem; }
}

/* MOD: */
.tour_page_title .page_title_ja_sv {
  display: inline-block;
  transform: scaleY(0.9);
  transform-origin: center bottom;
}
/*
.tour_page_title .page_title_ja_sv2 {
  transform: scaleY(0.75);
}
*/
.tour_page_title .page_title_ja {
  line-height: 1.25;
  margin-top: -4.5rem;
}
.tour_page_title_line {
  margin-top: 3rem;
}
.tour_page_title_lead {
  margin-top: 3.5rem;
}
@media only screen and (max-width: 767px) {
  .tour_page_title_inner {
    min-height: 69rem;
  }
  .tour_page_title:after {
    height: 33.5rem;
    top: 20rem;
  }
  .page_title_ja {
    font-size: 3.2rem;
  }
  .tour_page_title .page_title_ja {
    margin-top: -2.5rem;
  }
  .tour_page_title_line {
    margin-top: 2rem;
  }
  .tour_page_title_lead {
    margin-top: 2rem;
  }
}
