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

@media screen and (max-width: 467px) {
  .pc-all {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .sp-s {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .sp-s {
    display: none !important;
  }
}
@media screen and (max-width: 467px) {
  .sp-s {
    display: block !important;
  }
}

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

.fade-in {
  animation-name: fade-in-anime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fade-in-anime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in-after {
  animation-name: fade-in-anime;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fade-in-anime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes hover-fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
.js-scroll-fade {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.scroll-fade {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 767px) {
  .body-container {
    overflow-anchor: none;
    position: relative;
  }
}

main {
  padding-top: 100px;
  position: relative;
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 55px;
    min-width: 100%;
  }
}
@media screen and (max-width: 467px) {
  main {
    padding-top: 45px;
  }
}

header {
  height: 100px;
  padding: 20px 20px 20px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  z-index: 3000;
}
@media screen and (max-width: 767px) {
  header {
    padding: 10px 10px 10px 20px;
    height: 55px !important;
  }
}
@media screen and (max-width: 467px) {
  header {
    height: 45px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 960px) {
  header {
    padding: 20px 10px 20px 10px;
  }
}
header img {
  height: 50px;
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  header img {
    margin-left: 0px;
    height: 30px;
  }
}
@media screen and (max-width: 467px) {
  header img {
    height: 30px;
  }
}
header nav {
  width: 50%;
}
@media screen and (max-width: 767px) {
  header nav {
    width: 50%;
  }
}
@media screen and (min-width: 768px) and (max-width: 960px) {
  header nav {
    width: 52%;
  }
}
header nav ul {
  width: 100%;
}
@media screen and (min-width: 768px) {
  header nav ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
header nav ul li {
  position: relative;
  font-weight: bold;
  font-size: clamp(10px, 1.4vw, 16px);
  width: 100%;
}
@media screen and (min-width: 768px) {
  header nav ul li {
    text-align: center;
  }
  header nav ul li::after {
    transition: 0.6s all;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -50%;
    content: "";
    width: 40%;
    height: 2px;
    background: #2c2c2c;
    opacity: 0;
  }
  header nav ul li:hover::after {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  header nav ul li {
    font-size: 75%;
    padding-bottom: 20px;
    -webkit-text-decoration: underline 0.5px solid #2c2c2c;
            text-decoration: underline 0.5px solid #2c2c2c;
    text-underline-offset: 5px;
  }
}
@media screen and (max-width: 767px) {
  header nav {
    background-color: white;
    color: black;
    position: fixed;
    right: 0%;
    transform: translateX(200%);
    top: 45px;
    width: 50%;
    padding: 20px 20px 0;
    transition: all 0.5s;
    z-index: 2000;
  }
}
header nav.menu-sp-active {
  transform: translateX(0%);
}
header .header-sp-menu {
  height: 100%;
  position: relative;
}
header .header-sp-menu #header-menu-sp-close {
  display: none;
}
header .header-sp-menu img {
  height: 100%;
}

.header {
  background-color: white;
  color: #2c2c2c;
}

.top-header {
  color: white;
}
@media screen and (min-width: 768px) {
  .top-header {
    background-image: url(../images/common/pc_header_obi.png);
    background-size: 100% 100px;
  }
}
.top-header li::after {
  background: white !important;
}

footer {
  background-color: #406eb5;
  color: white;
  padding: 3% 10%;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 3% 3% 3% 5%;
    font-size: 2vw;
  }
}
@media screen and (max-width: 467px) {
  footer {
    font-size: 2.8vw;
  }
}
footer .footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  footer .footer-top .footer-top-left {
    width: 100%;
  }
}
footer .footer-top .footer-top-left ul {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
footer .footer-top .footer-top-left ul li {
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  footer .footer-top .footer-top-left ul li {
    margin-right: 5%;
  }
}
footer .footer-top .footer-top-left .footer-policy-link {
  cursor: pointer;
}
footer .footer-top .footer-top-right .sns-title {
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  text-align: center;
  padding: 10px 5px;
}
footer .footer-top .footer-top-right .sns-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 10%;
}
footer .footer-top .footer-top-right .sns-icon a {
  display: block;
  width: 38%;
}
footer .footer-top .footer-top-right .sns-icon img {
  width: 100%;
}
footer .footer-bottom {
  text-align: center;
  margin-top: 60px;
  padding-bottom: 4%;
}
footer .footer-bottom .footer-policy {
  padding: 2% 0 0;
  text-align: center;
  line-height: 160%;
}

.article-card {
  width: 33.3%;
  display: flex;
  flex-direction: column;
  padding: 1%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .article-card {
    flex-shrink: 0;
  }
}
.article-card .card-img {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.article-card .card-img .img {
  width: 100%;
  transition: transform 1s ease;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .article-card .card-img .img {
    height: 45vw;
  }
}
.article-card .card-img .img:hover {
  transform: scale(1.2, 1.2);
  transition: 1s all;
}
.article-card .card-img .end {
  position: absolute;
  bottom: 2%;
  left: 1%;
  width: 26%;
}
.article-card .card-img a .img {
  transform-origin: center center;
}
.article-card .card-img .card-category {
  position: absolute;
  left: 8px;
  top: 8px;
  width: 43px;
  z-index: 1000;
  max-width: 48px;
}
@media screen and (max-width: 767px) {
  .article-card .card-img .card-category {
    width: 10%;
    top: 6px;
    left: 4px;
  }
}
@media screen and (max-width: 467px) {
  .article-card .card-img .card-category {
    width: 12%;
    top: 6px;
    left: 4px;
  }
}
@media screen and (min-width: 768px) and (max-width: 960px) {
  .article-card .card-img .card-category {
    width: 34px;
  }
}
.article-card .card-detail {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.article-card .card-detail h3 {
  font-size: 115%;
  line-height: 150%;
  color: #113c70;
  margin: 2% 0;
  font-weight: bold;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  word-break: break-word;
  flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .article-card .card-detail h3 {
    font-size: 88%;
  }
}
@media screen and (min-width: 961px) and (max-width: 1250px) {
  .article-card .card-detail h3 {
    font-size: 108%;
    line-height: 140%;
  }
}
@media screen and (min-width: 768px) and (max-width: 960px) {
  .article-card .card-detail h3 {
    font-size: 90%;
  }
}
.article-card .card-detail h4 {
  font-size: 110%;
  line-height: 150%;
  font-weight: bold;
  margin-bottom: 2%;
  flex-grow: 1;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  word-break: break-word;
  flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #505050;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .article-card .card-detail h4 {
    font-size: 73%;
  }
}
@media screen and (min-width: 961px) and (max-width: 1250px) {
  .article-card .card-detail h4 {
    font-size: 100%;
    line-height: 130%;
  }
}
@media screen and (min-width: 768px) and (max-width: 960px) {
  .article-card .card-detail h4 {
    font-size: 80%;
  }
}
.article-card .card-detail h5 {
  font-size: 100%;
  color: #505050;
  margin: 2% 0;
}
@media screen and (max-width: 767px) {
  .article-card .card-detail h5 {
    font-size: 73%;
  }
}
@media screen and (min-width: 961px) and (max-width: 1250px) {
  .article-card .card-detail h5 {
    font-size: 90%;
  }
}
@media screen and (min-width: 768px) and (max-width: 960px) {
  .article-card .card-detail h5 {
    font-size: 80%;
  }
}

@media screen and (max-width: 767px) {
  .search-detail .article-card {
    width: 100%;
  }
  .search-list .article-card {
    width: 86%;
    padding: 0 3%;
  }
  .regional-charm-container .article-card {
    width: 86%;
    padding: 0 3%;
  }
  .card-detail {
    margin-bottom: 20px;
  }
  .card-detail h3 {
    font-size: 110% !important;
  }
  .card-detail h4 {
    font-size: 95% !important;
  }
  .card-detail h5 {
    font-size: 88% !important;
  }
}
.switch-btn {
  position: relative;
}
@media screen and (min-width: 768px) {
  .switch-btn img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    transition: 0.4s ease-in-out;
  }
  .switch-btn img:nth-of-type(2) {
    position: relative;
  }
  .switch-btn:hover img:nth-of-type(2) {
    opacity: 0;
  }
  .switch-btn.fixed-scroll-top-btn img:nth-of-type(1) {
    opacity: 0;
  }
  .switch-btn.fixed-scroll-top-btn:hover img:nth-of-type(1) {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .switch-btn img {
    width: 100%;
  }
}

main .wpulike {
  position: absolute;
  right: 3%;
  top: 0%;
  z-index: 2000;
}
@media screen and (max-width: 767px) {
  main .wpulike {
    right: 2%;
    top: -1%;
  }
}
main .wpulike .wp_ulike_general_class {
  box-shadow: 0 0 0 2px #c95050 inset;
  border-radius: 0.25em;
  padding: 3px 4px;
  background-color: white;
}
@media screen and (max-width: 767px) {
  main .wpulike .wp_ulike_general_class {
    padding: 2px 3px;
  }
}
@media screen and (min-width: 768px) and (max-width: 960px) {
  main .wpulike .wp_ulike_general_class {
    padding: 1px 2px;
  }
}
main .wpulike .count-box {
  color: #c95050;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  main .wpulike .count-box {
    font-size: 14px;
  }
}
main .wpulike .wp_ulike_put_image:after {
  background-image: url(../images/common/pc_icon_fav_heart.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 767px) {
  main .wpulike .wp_ulike_put_image:after {
    width: 20px;
    height: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 960px) {
  main .wpulike .wp_ulike_put_image:after {
    width: 17px;
    height: 17px;
  }
}
@media screen and (min-width: 768px) and (max-width: 960px) {
  main .wpulike.wpulike-heart button.wp_ulike_btn {
    padding: 13px;
  }
}
@media screen and (max-width: 767px) {
  main .wpulike.wpulike-heart button.wp_ulike_btn {
    background: 0 0;
    padding: 15px 14px;
  }
}
@media screen and (min-width: 768px) and (max-width: 960px) {
  main .wpulike.wpulike-heart .wp_ulike_put_image:after {
    width: 16px;
    height: 20px;
  }
}
@media screen and (max-width: 767px) {
  main .wpulike.wpulike-heart .wp_ulike_put_image:after {
    width: 18px;
    height: 22px;
  }
}
main .wpulike .wp_ulike_is_not_liked:has(.wp_ulike_btn_is_active).wp_ulike_general_class,
main .wpulike .wp_ulike_is_already_liked.wp_ulike_general_class {
  box-shadow: 0 0 0 2px #c95050 inset;
  background-color: #c95050;
}
main .wpulike .wp_ulike_is_not_liked:has(.wp_ulike_btn_is_active) .wp_ulike_put_image:after,
main .wpulike .wp_ulike_is_already_liked .wp_ulike_put_image:after {
  background-image: url(../images/common/pc_icon_fav_heart_on.png) !important;
}
main .wpulike .wp_ulike_is_not_liked:has(.wp_ulike_btn_is_active) .count-box,
main .wpulike .wp_ulike_is_already_liked .count-box {
  color: white;
}
main .wpulike .wp_ulike_is_not_liked:has(.wp_ulike_btn_is_active) .wp_ulike_put_image.wp_ulike_btn_is_active:after,
main .wpulike .wp_ulike_is_already_liked .wp_ulike_put_image.wp_ulike_btn_is_active:after {
  filter: none;
}

.breadcrumbs {
  padding: 15px 40px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    padding: 10px 10px;
  }
}
.breadcrumbs li {
  color: #2c2c2c;
  font-size: 90%;
  margin-right: 20px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .breadcrumbs li {
    margin-right: 15px;
    font-size: 70%;
  }
}
.breadcrumbs li:nth-child(n+2)::before {
  content: "";
  display: inline-block;
  background: url(../images/common/arr_next.png) no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
  color: #505050;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .breadcrumbs li:nth-child(n+2)::before {
    margin-right: 5px;
  }
}
.breadcrumbs li:last-child {
  color: #909090;
}

.bold {
  font-weight: bold;
}

.fixed-scroll-top-btn {
  position: fixed;
  bottom: 20px;
  right: 0;
  width: 100px;
  z-index: 2000;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .fixed-scroll-top-btn {
    width: 14%;
  }
}
@media screen and (max-width: 467px) {
  .fixed-scroll-top-btn {
    z-index: 6000;
    margin: 10px 0;
    bottom: 0.5%;
    width: 24%;
  }
}
@media screen and (min-width: 768px) and (max-width: 960px) {
  .fixed-scroll-top-btn {
    width: 14%;
    max-width: 110px;
  }
}
.fixed-scroll-top-btn img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  body:has(.tour-detail) .fixed-scroll-top-btn {
    bottom: 20px;
  }
}
@media screen and (max-width: 467px) {
  body:has(.tour-detail) .fixed-scroll-top-btn {
    bottom: 11.5%;
  }
}
@media screen and (min-width: 468px) and (max-width: 767px) {
  body:has(.tour-detail) .fixed-scroll-top-btn {
    width: 100px;
    bottom: 20px;
  }
}