@charset "UTF-8";
.img .photo-caption {
  font-size: 12px;
  padding-top: 5px;
}

.post-flex-box-left img,
.post-flex-box-right img {
  width: 100%;
  top: 0;
}

.post-flex-box-left .img,
.post-flex-box-right .img {
  margin: auto;
  display: block;
  width: 76%;
  aspect-ratio: 4/3;
  object-fit: cover;
  position: relative;
  top: 50px;
}

.slick-slide img {
  box-shadow: none !important;
}

.slick-slide .img {
  padding: 7px;
  background: #fff;
}

p.about-tag {
  flex-wrap: wrap;
}

.slide-menu {
  left: auto;
  right: 0;
  top: 78px;
  transform: translate(100%, 0);
  transition: all 0.4s ease;
  max-width: 500px;
  background: #00409d;
  padding: 2.5rem 1.25rem;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .slide-menu {
    padding: 3.5rem 2.5rem;
    top: 115px;
  }
}
.slide-menu.active {
  left: auto;
  transform: translate(0, 0);
}

.About-the-tour-bottom {
  padding-top: 50px;
}

ul.relation-tour-list,
ul.relation-post-list {
  justify-content: flex-start;
  gap: 30px;
}

.top-fv-copy {
  position: absolute;
  top: 10%;
  left: 55%;
  transform: translate(-50%, 0);
  max-width: 40%;
  max-height: 80%;
  height: 80%;
  z-index: 2;
}
.top-fv-copy img {
  object-fit: none;
  aspect-ratio: auto;
  filter: drop-shadow(0px 0px 2px black);
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.sp-view-top-swiper .top-fv-copy-sp {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, 0);
  max-width: 40%;
  max-height: 80%;
  height: 80%;
  z-index: 2;
}
.sp-view-top-swiper .top-fv-copy-sp img {
  object-fit: none;
  aspect-ratio: auto;
  filter: drop-shadow(0px 0px 2px black);
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

li.About-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.About-item-text-link {
  color: #00409d;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.footer-sns-link {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer-sns-link {
    flex-direction: row;
  }
}
.footer-sns-link .link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 15px;
}
.footer-sns-link .link-title {
  text-align: center;
}
.footer-sns-link .link-list {
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: center;
}

.cancellation-fee-table {
  border-collapse: separate;
  border-spacing: 10px;
}
.cancellation-fee-table .table-header {
  border-bottom: 1px solid #00409d;
}
.cancellation-fee-table .table-cell {
  width: calc(65% - 5px);
  padding: 5px;
  background: #eee;
}
.cancellation-fee-table .table-cell:nth-child(2) {
  text-align: center;
  width: 35%;
}

/* ------------------------------------------- */
/* PC/タブレット表示 (768px以上) のスタイル */
/* ------------------------------------------- */
.responsive-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  margin-bottom: 40px;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .responsive-table .table-th {
    width: 25%;
  }
}
@media screen and (min-width: 768px) {
  .responsive-table .table-th2 {
    width: 15%;
  }
}
.responsive-table .table-th1-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .responsive-table .table-th1-sp {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .responsive-table .table-cell {
    width: 75%;
  }
}
.responsive-table .table-header {
  background: rgba(0, 64, 157, 0.1);
}
.responsive-table .table-header-th {
  background: rgba(0, 64, 157, 0.1);
}
@media screen and (min-width: 768px) {
  .responsive-table .table-header-th {
    width: 25%;
  }
}
@media screen and (min-width: 768px) {
  .responsive-table.colspan-table {
    display: grid;
    grid-template-columns: 10%, 15%, 75%;
  }
  .responsive-table.colspan-table .pc-colspan-2 {
    grid-column: 1/span 2;
  }
}

.responsive-table th,
.responsive-table td {
  padding: 8px;
  border: 1px solid #ccc;
  text-align: left;
  /* PC/タブレット表示時は改行を許可 (横スクロールを防ぐため) */
  white-space: normal;
  word-break: break-word; /* 長い単語でも強制的に改行させる */
}

/* ------------------------------------------- */
/* スマートフォン表示（768px未満）のスタイル */
/* ------------------------------------------- */
@media screen and (max-width: 767px) {
  /* スマホ表示時は table-layout: fixed; を解除し、縦積みレイアウトの邪魔をしないようにする */
  .responsive-table {
    table-layout: auto;
    border: 0;
  }
  /* ヘッダー行 (th) を非表示にする */
  .responsive-table thead {
    display: none;
  }
  /* 各行 (tr) をブロック要素にして縦に積み重ねる */
  .responsive-table tr {
    display: block;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    background-color: #fff;
  }
  /* 各セル (td) は縦積みレイアウトのため、white-space: normal; (改行許可) に戻す */
  .responsive-table td {
    white-space: normal;
    display: block;
    border: none;
    padding: 5px 10px;
    text-align: right;
    border-bottom: 1px solid #eee;
    position: relative;
    text-align: left;
  }
  .responsive-table td:last-child {
    border-bottom: 0;
  }
  /* 最初のtdのスタイル調整 */
  .responsive-table td:first-child {
    text-align: left;
    padding-top: 10px;
    border-bottom: 1px solid #ccc;
  }
  /* data-label属性の値を疑似要素として表示し、見出しとする */
  .responsive-table td::before {
    content: attr(data-label);
    font-weight: bold;
    text-align: left;
    display: block;
    float: left;
    margin-right: 10px;
    color: #333;
    /* ラベル自体は改行させない */
    white-space: nowrap;
  }
  /* 最初のtdの::before（ラベル）は非表示にする */
  .responsive-table td:first-child::before {
    display: none;
  }
}
.contactpage.title-banner.archive-banner.japan-tour {
  background-image: url("img/japan-tour-fv.jpg");
}
.contactpage.title-banner.archive-banner.around-the-world {
  background-image: url("img/around-the-world-fv.jpg");
}

.inbound-main .img {
  padding: 0 15px;
}
.inbound-main .img img {
  max-width: 100%;
}
.inbound-main-btn {
  transition: all 0.4s ease;
}
.inbound-main-btn:hover {
  opacity: 0.6;
}

.header-sns-link {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-around;
  padding-top: 30px;
}
.header-sns-link .link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 15px;
}
.header-sns-link .link-title {
  text-align: center;
}
.header-sns-link .link-list {
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: center;
}

.japan-tab-contents,
.world-tab-contents {
  background: none;
}

div#Destination-jp,
div#Destination {
  background-color: rgb(0, 64, 157);
}

div#month-jp,
div#month {
  background: #e6e6e6;
}
div#month-jp .month-list ul,
div#month .month-list ul {
  justify-content: center;
}

.anchor {
  margin-top: -115px;
  padding-top: 115px;
}

.news-post-thumb {
  padding: 10px;
}
.news-post-thumb img.news-thumbnail {
  max-width: 100%;
}

.news-sub-area {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  justify-content: center;
  padding: 0 20px;
  max-width: 1160px;
  margin: auto;
  padding: 20px;
  padding-bottom: 30px;
}
.news-sub-area a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
.news-sub-area a img {
  max-width: 400px;
}

.item-sub {
  max-width: 1160px;
  margin: auto;
  padding: 0 20px;
}
.item-sub-text {
  color: #00409d;
  padding-bottom: 5px;
  border-bottom: 1px solid #00409d;
  max-width: 550px;
  width: 100%;
}

section.page-inner-contents.trabelpage.padbtm-none {
  padding-bottom: 0;
}

section.main-content.world-section.padbtm-plus {
  padding-bottom: 30px;
}

/* slider↑*/
.slide-container.tour-content {
  top: -40px;
}

.single-swiper {
  width: 100%;
  height: auto;
  perspective: 1000px;
}
.single-swiper .swiper-wrapper {
  align-items: center;
}
.single-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  /* 非アクティブ時は縮小 */
  transform: scale(0.85);
  transition: transform 0.3s ease-out;
  padding: 15px 0;
}
.single-swiper .swiper-slide-active {
  /* 中央は元のサイズ */
  transform: scale(1);
}
.single-swiper .swiper-slide .img {
  padding: 7px;
  background: #fff;
  max-width: 100%;
  box-shadow: 0px 10px 10px #a6a6a6;
}
.single-swiper .swiper-slide img {
  /* 画像がスライドの幅に合わせて表示されるように設定 */
  display: block;
  height: auto;
  width: 100%;
  box-shadow: 0px 0px 0px 7.5px #fff !important;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.category-aboutbox.mtn {
  margin-top: 0;
}

.inner-page-title img {
  max-width: 100%;
  height: auto;
}/*# sourceMappingURL=single-tour.css.map */