@charset "UTF-8";
.container {
  width: 70%;
  margin: auto;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .container {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 960px) {
  .container {
    width: 85%;
  }
}

.header-area {
  background-color: #f1f5fb;
}

.detail-page {
  background-color: #f1f5fb;
  position: relative;
}
.detail-page .fixed-btn {
  position: fixed;
  bottom: 100px;
  right: 0;
  width: 150px;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .detail-page .fixed-btn {
    max-width: 150px;
  }
}
@media screen and (max-width: 767px) {
  .detail-page .fixed-btn {
    bottom: 100px;
    max-width: 150px;
  }
}
@media screen and (max-width: 467px) {
  .detail-page .fixed-btn {
    max-width: 100%;
    bottom: 0%;
    width: 100%;
    z-index: 1000;
  }
}
.detail-page .tour-detail-header {
  display: flex;
  padding: 1% 0;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .detail-page .tour-detail-header {
    padding: 3% 0;
  }
}
.detail-page .tour-detail-header .category-icon {
  width: 8%;
  max-width: 150px;
}
@media screen and (min-width: 768px) {
  .detail-page .tour-detail-header .category-icon {
    min-width: 90px;
  }
}
@media screen and (max-width: 767px) {
  .detail-page .tour-detail-header .category-icon {
    max-width: 80px;
    width: 16%;
  }
}
.detail-page .tour-detail-header .category-icon img {
  width: 100%;
}
.detail-page .tour-detail-header .date {
  color: #2c2c2c;
  font-size: 100%;
  width: 33%;
  text-align: right;
  justify-content: right;
  padding-top: 1%;
  padding-right: 3%;
}
@media screen and (min-width: 768px) and (max-width: 960px) {
  .detail-page .tour-detail-header .date {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 767px) {
  .detail-page .tour-detail-header .date {
    padding-right: 3%;
    width: 50%;
    flex-wrap: wrap;
    font-size: 88%;
    line-height: 150%;
    text-align: right;
  }
}
@media screen and (max-width: 467px) {
  .detail-page .tour-detail-header .date {
    font-size: 65%;
    line-height: 120%;
  }
}
@media screen and (min-width: 768px) {
  .detail-page .tour-detail-header .date .open-date {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 767px) {
  .detail-page .tour-detail-header .date .open-date {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .detail-page .tour-detail-header .date .update-date {
    width: 100%;
  }
}
.detail-page .tour-detail-title {
  color: #113c70;
  line-height: 150%;
  font-size: 260%;
  font-weight: bold;
  padding-bottom: 2%;
  width: 90%;
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .detail-page .tour-detail-title {
    font-size: 145%;
  }
}
.detail-page .subtitle {
  color: #2c2c2c;
  font-size: 180%;
  font-weight: bold;
  padding: 2% 0 5%;
  line-height: 160%;
  text-align: center;
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .detail-page .subtitle {
    padding: 4% 0 12%;
    font-size: 125%;
  }
}
.detail-page .detail-main-img-area {
  width: 100%;
  position: relative;
}
.detail-page .detail-main-img-area .end {
  width: 40%;
  position: absolute;
  bottom: -4%;
  left: 0;
  right: 0;
  margin: auto;
}
.detail-page .detail-main-img-area .detail-main-img {
  width: 100%;
}

.single {
  background-color: white;
  padding: 1% 0;
}
@media screen and (max-width: 767px) {
  .single .container {
    width: 100%;
    margin: auto;
  }
}
.single h1 {
  position: relative;
  color: #406eb5;
  font-weight: bold;
  line-height: 160%;
  text-align: center;
  margin: 8% auto;
  font-size: 180%;
}
@media screen and (max-width: 767px) {
  .single h1 {
    width: 90%;
    font-size: 130%;
    margin: 12% auto;
  }
}
.single h1::after {
  content: "";
  display: inline-block;
  height: 6px;
  background-image: url(../images/single/pc_article_h1_img.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  margin: auto;
  width: 200px;
}
.single h2 {
  position: relative;
  color: #2c2c2c;
  font-weight: bold;
  border-bottom: 1px solid #505050;
  margin: 5% 0 3%;
  padding: 2% 0;
  font-size: 150%;
  display: flex;
  align-items: center;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .single h2 {
    width: 90%;
    margin: 8% auto 6%;
    font-size: 112%;
  }
}
.single h2::before {
  display: flex;
  margin-right: 10px;
  content: "⚫︎";
  width: 10px;
  height: 10px;
  font-size: 15px;
  color: #abc9e2;
  border-radius: 10px;
  align-self: flex-start;
}
.single h3 {
  width: 35%;
  padding-right: 2%;
  font-weight: bold;
  position: relative;
  font-size: 130%;
  vertical-align: top;
  margin: 3% 0 1%;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .single h3 {
    width: 90%;
    margin: 5% auto 3%;
    font-size: 102%;
  }
}
.single h3::before {
  margin-right: 1%;
  content: "";
  background-image: url(../images/single/pc_article_h3_img.png);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 15px;
  height: 15px;
}
.single h4 {
  font-weight: bold;
  font-size: 130%;
  border-bottom: 4px solid #d0bd76;
  display: inline-block;
  margin: 2% auto 2%;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .single h4 {
    margin: 2% 5% 2%;
    font-size: 102%;
  }
}
.single h5 {
  font-weight: bold;
  display: inline-block;
  font-size: 120%;
  line-height: 160%;
  margin: 20px 0;
}
@media screen and (max-width: 767px) {
  .single h5 {
    width: 90%;
    margin: 2% 0;
    font-size: 110%;
  }
}
.single h6 {
  font-size: 115%;
  border-left: 12px solid #ecd5c8;
  padding: 1% 3%;
}
@media screen and (max-width: 767px) {
  .single h6 {
    margin: 2% 0;
    font-size: 102%;
  }
}
.single p {
  color: #404040;
  font-size: 110%;
  line-height: 200%;
  white-space: pre-wrap;
  padding: 1% 0 2%;
}
@media screen and (max-width: 767px) {
  .single p {
    padding: 2% 0 4%;
    width: 90%;
    margin: auto;
    font-size: 92%;
  }
}
.single .single-btn {
  width: 36%;
  margin: 1% 0;
  max-width: 360px;
}
@media screen and (max-width: 767px) {
  .single .single-btn {
    margin: 3% auto;
    width: 80%;
  }
}
.single .wp-block-image {
  text-align: center;
  margin: 2% 0;
}
@media screen and (max-width: 767px) {
  .single .wp-block-image {
    margin: 3% 0;
  }
}
.single .wp-block-image.size-full {
  width: 80%;
  margin: 3% auto 5%;
}
@media screen and (max-width: 767px) {
  .single .wp-block-image.size-full {
    width: 100%;
  }
}
.single .wp-block-image.size-full img {
  width: 100%;
}
.single .wp-block-columns-is-layout-flex:has(h5) {
  text-align: center;
}
.single .is-style-vk-group-solid-roundcorner {
  border: 2px #2c2c2c solid;
  border-radius: 10px;
  padding: 4%;
  line-height: 200%;
  color: #404040;
  width: 80%;
  max-width: 750px;
}
@media screen and (min-width: 768px) {
  .single .is-style-vk-group-solid-roundcorner {
    margin: 2% auto;
  }
}
@media screen and (max-width: 767px) {
  .single .is-style-vk-group-solid-roundcorner {
    width: 90%;
    margin: 5% 5%;
  }
}
.single .time-table {
  font-size: 110%;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .single .time-table {
    font-size: 92%;
    margin: 2% 5% 2%;
    line-height: 160%;
    padding: 2% 0;
  }
}
.single .time-table td:nth-child(1) {
  width: 15%;
}
@media screen and (min-width: 961px) and (max-width: 1250px) {
  .single .time-table td:nth-child(1) {
    width: 20%;
  }
}
@media screen and (min-width: 768px) and (max-width: 960px) {
  .single .time-table td:nth-child(1) {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .single .time-table td:nth-child(1) {
    vertical-align: top;
    width: 30%;
  }
}
.single .time-table td,
.single .time-table th {
  border: 0px;
  padding: 0;
}
.single .custom-table {
  margin: 2% 0;
  padding: 0% 3%;
  border-radius: 5px !important;
  border: 3px solid #2c2c2c;
}
@media screen and (max-width: 767px) {
  .single .custom-table {
    width: 90%;
    margin: 2% auto;
    padding: 0% 4%;
  }
}
.single .custom-table tr {
  line-height: 160%;
  border-bottom: 0.5px solid #2c2c2c;
}
.single .custom-table tr:last-child {
  border-bottom: 0px solid #2c2c2c;
}
.single .custom-table tr td:first-child {
  width: 35%;
  padding-right: 2%;
  font-weight: bold;
  position: relative;
  font-size: 130%;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .single .custom-table tr td:first-child {
    font-size: 88%;
  }
}
.single .custom-table tr td:first-child::before {
  margin-right: 1%;
  content: "";
  background-image: url(../images/single/pc_article_h3_img.png);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 15px;
  height: 15px;
}
.single .custom-table tr td {
  padding: 3% 0;
}
@media screen and (max-width: 767px) {
  .single .custom-table tr td {
    padding: 8% 0;
  }
}
.single .custom-table tr td .single-btn {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .single .custom-table tr td .single-btn {
    width: 90%;
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  .single .custom-table tr td {
    font-size: 90%;
  }
}
.single .custom-table tr td strong {
  padding: 0 0 2%;
  display: inline-block;
  font-size: 105%;
}
@media screen and (max-width: 767px) {
  .single .custom-table tr td strong {
    font-size: 95%;
  }
}
.single .custom-table td,
.single .custom-table th {
  border: 0px solid;
  padding: 0.5em;
}
.single a {
  color: #407bc9;
  text-decoration: underline;
}
.single .pitamachi {
  margin: 2% 0 5%;
}
.single .pitamachi .pitamachi-container {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .single .pitamachi .pitamachi-container {
    padding: 0 3%;
    border-left: 8px solid #ecd5c8;
  }
}
@media screen and (max-width: 767px) {
  .single .pitamachi .pitamachi-container {
    width: 90%;
    margin: auto;
    justify-content: center;
  }
}
.single .pitamachi .pitamachi-container .pitamachi-left {
  width: 75%;
  padding: 1% 0;
}
@media screen and (max-width: 767px) {
  .single .pitamachi .pitamachi-container .pitamachi-left {
    width: 100%;
    border-left: 6px solid #ecd5c8;
    padding-left: 3%;
  }
}
.single .pitamachi .pitamachi-container .pitamachi-left .pitamachi-title {
  font-weight: bold;
  color: #2c2c2c;
  font-size: 130%;
  margin-bottom: 2%;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .single .pitamachi .pitamachi-container .pitamachi-left .pitamachi-title {
    font-size: 112%;
  }
}
.single .pitamachi .pitamachi-container .pitamachi-left .pitamachi-btn {
  width: 40%;
  max-width: 300px;
}
@media screen and (max-width: 767px) {
  .single .pitamachi .pitamachi-container .pitamachi-left .pitamachi-btn {
    width: 50%;
  }
}
.single .pitamachi .pitamachi-container .pitamachi-left .pitamachi-btn img {
  width: 100%;
}
.single .pitamachi .pitamachi-container .pitamachi-logo {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .single .pitamachi .pitamachi-container .pitamachi-logo {
    width: 40%;
    margin: auto;
    padding: 5% 0;
  }
}
.single .pitamachi .pitamachi-container .pitamachi-logo img {
  width: 100%;
}
.single .wp-block-columns:where(.wp-block-columns.is-layout-flex) {
  gap: 0em;
}
.single .wp-block-columns:where(.wp-block-columns.is-layout-flex) {
  gap: 0em;
}
.single .wp-block-columns:where(.is-layout-flex) {
  gap: 0em;
}

.recomend {
  background-color: #abc9e2;
  padding: 5% 0;
}
@media screen and (max-width: 767px) {
  .recomend {
    padding: 12% 0;
  }
}
.recomend .banner {
  width: 700px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .recomend .banner {
    height: 180px;
  }
}
@media screen and (max-width: 767px) {
  .recomend .banner {
    flex-wrap: wrap;
    justify-content: center;
    width: 76%;
  }
}
.recomend .banner .img {
  width: 320px;
}
@media screen and (max-width: 767px) {
  .recomend .banner .img {
    width: 100%;
    text-align: center;
  }
}
.recomend .banner .img img {
  width: 320px;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .recomend .banner .img img {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }
}
@media screen and (max-width: 767px) {
  .recomend .banner .img img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin: auto;
    width: 100%;
    height: 56.25%;
  }
}
.recomend .banner .text {
  height: 180px;
  background-color: white;
  padding: 3% 3%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
  min-width: 55%;
  width: auto;
}
@media screen and (min-width: 768px) {
  .recomend .banner .text {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
}
@media screen and (max-width: 767px) {
  .recomend .banner .text {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    height: 140px;
    width: 100%;
  }
}
.recomend .banner .text .region {
  width: 100%;
  color: #2c2c2c;
  font-size: 115%;
  font-weight: 600;
  margin-bottom: 3%;
}
@media screen and (max-width: 767px) {
  .recomend .banner .text .region {
    font-size: 88%;
  }
}
.recomend .banner .text .title {
  color: #406eb5;
  font-weight: bold;
  line-height: 140%;
  font-size: 140%;
  flex-grow: 1;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  word-break: break-word;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 767px) {
  .recomend .banner .text .title {
    font-size: 102%;
  }
}

.tour-detail .is-style-vk-group-solid-roundcorner {
  border: 2px #2c2c2c solid;
  border-radius: 10px;
  padding: 5%;
  line-height: 200%;
  font-weight: bold;
  color: #404040;
  font-size: 120%;
  margin: 2% auto;
}
@media screen and (max-width: 767px) {
  .tour-detail .is-style-vk-group-solid-roundcorner {
    margin: 5% auto;
    font-size: 95%;
  }
}

.report-detail .single .container {
  padding: 2% 0;
}
.report-detail .single h5.has-text-align-center:has(.vk_highlighter) {
  width: 100%;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .single .wp-block-image {
    padding: 1% !important;
  }
}

.single .wp-block-button a {
  text-decoration: none;
}