/* breezehawaii2/css/tour-custom.css */

/* MHT由来のツアーページ用スタイル */

/* ========================================
   CSS変数定義
   ======================================== */
:root {
    --tour-main-color: #4b74a7;
    --tour-bg-color: #e6f5fb;
    --tour-bg-gray: #f7efdc;
    --tour-accent-color: #0571ba;
}

/* レイアウト基本 */
.tour_info {
    padding: 40px 0;
}

.tour_info_inner {
    max-width: 1200px;
    margin: 0 auto;
}

.tour_info_info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px
}

.tour_info_title {
    font-weight: 800;
}

/* タグ */
.tour_info_info_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.tour_info_info_tags .tag {
    background: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* カテゴリ */
.tour_info_info_cat {
    display: inline-block;
    background: #2196F3;
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    margin-bottom: 10px;
}

/* スライダー */
.tour_info_slider {
    position: relative;
    z-index: 1;
}

.tour_info_slider .slick-list {
    padding-right: 25px;
    padding-left: 25px;
}

.tour_info_slider .slick-track {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tour_info_slider_item {
    margin: 0 3px;
}

/* === 画像表示スタイル：統一サイズで表示（拡大を抑制） === */

/* 高さを統一しつつ、拡大を最小限に（参考: maikaihawaiitours） */
.tour_info_slider_item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.tour_info_slider_item figure {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
}

/* モバイル: max-height 270px */
.tour_info_slider_item figure {
    height: 270px;
}

.tour_info_slider_item figure img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* cover から contain に変更：拡大を抑制し、全体を表示 */
    object-position: center;
}

/* PC: max-height 700px */
@media screen and (min-width: 961px) {
    .tour_info_slider_item figure {
        height: 700px;
    }
}

/* キャッチコピーテキスト */
.tour_info_text {
    font-size: 1.6rem;
    line-height: 1.8;
    margin: 30px 0;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* ボタン */
.unit_btn_05 {
    text-align: center;
}

.unit_btn_05 a {
    display: inline-block;
    background: #e53935;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

/* アーカイブページ用 */
.tour_tax_wrap {
    margin: 30px 0;
}

.tour_tax_wrap_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.tour_tax_wrap_tags li a {
    display: block;
    padding: 8px 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    text-decoration: none;
    color: #333;
}

.tour_tax_wrap_tags li.active a {
    background: #2196F3;
    color: #fff;
    border-color: #2196F3;
}

/*@charset "UTF-8";*/

/* === .box_schedule_01 === */
.box_schedule_01 {
    padding: 30px 20px 35px;
    background: #e6f5fb; /* IE11フォールバック */
    background: var(--tour-bg-color);
    border-radius: 5px;
}

@media screen and (min-width: 961px) {
    .box_schedule_01 {
        padding: 30px 90px 35px;
    }
}

/* === .box_schedule_01.add_timeline_border === */
@media screen and (max-width: 960px) {
    .box_schedule_01.add_timeline_border {
        padding: 30px 20px 35px 40px;
    }
}

.box_schedule_01.add_timeline_border .schedule_item {
    position: relative;
}

.box_schedule_01.add_timeline_border .schedule_item.no_timeline::before,
.box_schedule_01.add_timeline_border .schedule_item.no_timeline::after {
    display: none !important;
}

.box_schedule_01.add_timeline_border .schedule_item::before {
    position: absolute;
    top: 8px;
    left: -22px;
    background: transparent;
    border: 2px solid #4b74a7; /* IE11フォールバック */
    border-color: var(--tour-main-color);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: block;
    content: "";
}

@media screen and (min-width: 961px) {
    .box_schedule_01.add_timeline_border .schedule_item::before {
        top: 12px;
        left: -30px;
    }
}

.box_schedule_01.add_timeline_border .schedule_item:not(:last-child)::after {
    background: #4b74a7; /* IE11フォールバック */
    background: var(--tour-main-color);
    position: absolute;
    top: 15px;
    left: -19px;
    width: 2px;
    height: calc(100% + 14px);
    display: block;
    content: "";
}

@media screen and (min-width: 961px) {
    .box_schedule_01.add_timeline_border .schedule_item:not(:last-child)::after {
        top: 20px;
        left: -27px;
    }
}

/* === .schedule_item & children === */
.box_schedule_01 .schedule_item {
    display: flex;
    gap: 10px;
}

.box_schedule_01 .schedule_item:not(:last-child) {
    margin-bottom: 20px;
}

.box_schedule_01 .schedule_item .time {
    font-weight: 700;
    width: 60px;
    max-width: 60px;
    min-width: 60px;
}

.box_schedule_01 .schedule_item .content {
    width: 100%;
}

.box_schedule_01 .schedule_item .content_title p {
    font-weight: 700;
    letter-spacing: 0.06em;
}

.box_schedule_01 .schedule_item .content_explain {
    margin-top: 5px;
}

.box_schedule_01 .schedule_item .content_explain p {
    letter-spacing: 0.06em;
    font-size: 1.3rem;
}

@media screen and (min-width: 961px) {
    .box_schedule_01 .schedule_item .content_explain p {
        font-size: 1.5rem;
    }
}

/* === スケジュール画像のサイズ調整 === */
.box_schedule_01 .schedule_item .content_image {
    max-width: 100%;
}

.box_schedule_01 .schedule_item .content_image img {
    max-height: 30vh; /* 高さを現在の30%に制限 */
    width: 100%; /* 幅を揃える */
    height: auto;
    object-fit: cover; /* アスペクト比を保ちつつ領域を埋める */
    display: block;
    border-radius: 8px; /* 角丸 */
}

/* === スケジュール説明と画像の横並び === */
.box_schedule_01 .schedule_item .content_body {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    margin-top: 3px;
}

.box_schedule_01 .schedule_item .content_body .content_image {
    flex-shrink: 0;
    width: 300px; /* 固定幅で統一 */
    min-width: 300px;
}

.box_schedule_01 .schedule_item .content_body .content_explain {
    flex: 1;
    margin-top: 0;
}

/* モバイルでは縦並び */
@media screen and (max-width: 768px) {
    .box_schedule_01 .schedule_item .content_body {
        gap: 10px;
        flex-direction: column;
    }

    .box_schedule_01 .schedule_item .content_body .content_image {
        width: 100%;
        min-width: auto;
    }
}


.tour_under_title_pt_01 {
    padding-top: 40px;
}
.under_title_01.no_border {
    border: none
}

.under_title_01.no_mb {
    margin-bottom: 0
}

.under_title_01.no_pb {
    padding-bottom: 0
}

.under_title_01 .title {
    font-weight: 300;
    font-size: 2.4rem
}

.common_pt_01 {
    padding-top: 80px
}

.common_pt_02 {
    padding-top: 40px
}

.common_pt_03 {
    padding-top: 100px
}

.common_pt_04 {
    padding-top: 60px
}

.common_pt_05 {
    padding-top: 80px
}

.common_pt_06 {
    padding-top: 130px
}

.common_pt_07 {
    padding-top: 25px
}

.common_pt_08 {
    padding-top: 40px
}

.common_pt_09 {
    padding-top: 50px
}

.common_pb_01 {
    padding-bottom: 80px
}

.common_pb_02 {
    padding-bottom: 40px
}

.common_pb_03 {
    padding-bottom: 100px
}

.common_pb_04 {
    padding-bottom: 60px
}

.common_pb_05 {
    padding-bottom: 80px
}

.common_pb_06 {
    padding-bottom: 130px
}

.common_pb_07 {
    padding-bottom: 25px
}

.common_pb_08 {
    padding-bottom: 40px
}

.common_pb_09 {
    padding-bottom: 50px
}
/**/
@charset "UTF-8";

/* .box_table_01 */
.box_table_01 dl {
    border-bottom: 1px solid #4b74a7;
    padding: 16px 0;
}

@media screen and (min-width: 961px) {
    .box_table_01 dl {
        display: grid;
        grid-template-columns: 200px 1fr;
        gap: 10px;
    }
}

.box_table_01 dl:first-child {
    border-top: 1px solid #4b74a7;
}

.box_table_01 dl dt {
    font-weight: 700;
}

@media screen and (max-width: 960px) {
    .box_table_01 dl dt {
        margin-bottom: 10px;
    }
}

.box_table_01 dl dd {
    letter-spacing: 0.06em;
}

/* .box_table_02 */
.box_table_02 {
    margin-bottom: 40px;
}

.box_table_02 .table_item {
    border-bottom: 1px solid #4b74a7;
    padding: 16px 0;
    display: grid;
    grid-template-columns: 1fr 80px;
    gap: 10px;
}

@media screen and (min-width: 961px) {
    .box_table_02 .table_item {
        padding: 22px 0;
        display: flex;
        justify-content: space-between;
    }
}

.box_table_02 .table_item.col_3 {
    display: block;
}

@media screen and (min-width: 961px) {
    .box_table_02 .table_item.col_3 {
        display: grid;
        grid-template-columns: 450px 1fr 90px;
    }
}

@media screen and (max-width: 960px) {
    .box_table_02 .table_item.col_3 .table_item_title {
        margin-bottom: 10px;
    }
}

.box_table_02 .table_item_title p {
    font-weight: 700;
    letter-spacing: 0.06em;
}

@media screen and (min-width: 961px) {
    .box_table_02 .table_item_title p {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 960px) {
    .box_table_02 .table_item_explain {
        margin-bottom: 10px;
    }
}

.box_table_02 .table_item_explain p {
    letter-spacing: 0.06em;
    color: #6f7a81;
}

@media screen and (max-width: 960px) {
    .box_table_02 .table_item_explain p {
        font-size: 1.4rem;
    }
}

.box_table_02 .table_item_cost {
    text-align: right;
}

.box_table_02 .table_item_cost p {
    letter-spacing: 0.06em;
}

/* .box_table_03 */
.box_table_03 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
}

@media screen and (min-width: 961px) {
    .box_table_03 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

.box_table_03 .table_item {
    background: #e6f5fb; /* IE11フォールバック */
    background: var(--tour-bg-color);
    border-radius: 5px;
    display: grid;
    grid-template-columns: 130px 1fr;
}

.box_table_03 .table_item_title,
.box_table_03 .table_item_explain {
    padding: 16px 18px;
}

@media screen and (min-width: 961px) {
    .box_table_03 .table_item_title,
    .box_table_03 .table_item_explain {
        padding: 20px 25px;
    }
}

.box_table_03 .table_item_title {
    border-right: 4px solid #fff;
}

.box_table_03 .table_item_title p {
    font-weight: 700;
    letter-spacing: 0.06em;
}

.box_table_03 .table_item_explain p {
    letter-spacing: 0.06em;
}

/* .box_table_04 */
.box_table_04 dl {
    border-bottom: 1px solid #4b74a78;
    padding: 24px 0;
}

@media screen and (min-width: 961px) {
    .box_table_04 dl {
        display: grid;
        grid-template-columns: 230px 1fr;
        gap: 20px;
        padding: 24px 40px;
    }
}

.box_table_04 dl:first-child {
    border-top: 1px solid #4b74a78;
}

.box_table_04 dl dt {
    font-weight: 500;
}

@media screen and (max-width: 960px) {
    .box_table_04 dl dt {
        margin-bottom: 10px;
    }
}

.box_table_04 dl dd {
    font-weight: 300;
    letter-spacing: 0.06em;
}

.box_table_04 dl dd a {
    font-weight: 300;
    letter-spacing: 0.06em;
}

.box_table_04 dl dd a:hover {
    text-decoration: underline;
}

/**/
.slick-loading .slick-list {
    background: #fff url("./ajax-loader.gif") center center no-repeat
}

@font-face {
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/slick/slick.eot");
    src: url("../fonts/slick/slick.eot?#iefix") format("embedded-opentype"), url("../fonts/slick/slick.woff") format("woff"), url("../fonts/slick/slick.ttf") format("truetype"), url("../fonts/slick/slick.svg#slick") format("svg");
    font-family: "slick"
}

.slick-prev, .slick-next {
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    display: block;
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    padding: 0;
    transform: translate(0, -50%);
    border: none;
    background: rgba(0, 0, 0, 0);
    color: rgba(0, 0, 0, 0);
    font-size: 0px;
    line-height: 0px;
    cursor: pointer
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    background: rgba(0, 0, 0, 0);
    color: rgba(0, 0, 0, 0)
}

.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
    opacity: 1
}

.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
    opacity: .25
}

.slick-prev:before, .slick-next:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    font-family: "slick";
    opacity: .75
}

.slick-prev {
    left: -25px
}

[dir=rtl] .slick-prev {
    right: -25px;
    left: auto
}

/* 矢印のcontentはコメントアウト（親テーマのスタイルを優先） */
/*.slick-prev:before {
    content: "←"
}

[dir=rtl] .slick-prev:before {
    content: "→"
}*/

.slick-next {
    right: -25px
}

[dir=rtl] .slick-next {
    right: auto;
    left: -25px
}

/* 矢印のcontentはコメントアウト（親テーマのスタイルを優先） */
/*.slick-next:before {
    content: "→"
}

[dir=rtl] .slick-next:before {
    content: "←"
}*/

.slick-dotted.slick-slider {
    margin-bottom: 30px
}

.slick-dots {
    display: block;
    position: absolute;
    bottom: -25px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center
}

.slick-dots li {
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer
}

.slick-dots li button {
    display: block;
    height: 20px;
    padding: 5px;
    border: 0;
    background: rgba(0, 0, 0, 0);
    color: rgba(0, 0, 0, 0);
    font-size: 0px;
    line-height: 0px;
    cursor: pointer
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
    opacity: 1
}

.slick-dots li button:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: "•";
    color: #000;
    font-size: 6px;
    line-height: 20px;
    font-family: "slick";
    text-align: center;
    opacity: .25
}

.slick-dots li.slick-active button:before {
    color: #000;
    opacity: .75
}

.slick-slider {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -ms-touch-action: pan-y;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    box-sizing: border-box;
    display: block;
    position: relative;
    touch-action: pan-y;
    user-select: none
}

.slick-list {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-track, .slick-slider .slick-list {
    transform: translate3d(0, 0, 0)
}

.slick-track {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    margin-right: auto;
    margin-left: auto
}

.slick-track:before, .slick-track:after {
    display: table;
    content: ""
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    display: none;
    height: 100%;
    min-height: 1px;
    float: left
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid rgba(0, 0, 0, 0)
}

.slick-arrow.slick-hidden {
    display: none
}
/**/
.lightboxOverlay {
    display: none;
    z-index: 9999;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: .8
}

.lightbox {
    z-index: 10000;
    position: absolute;
    left: 0;
    width: 100%;
    font-weight: normal;
    line-height: 0;
    text-align: center
}

.lightbox .lb-image {
    display: block;
    max-width: inherit;
    height: auto;
    border-radius: 3px
}

.lightbox a img {
    border: none
}

.lb-outerContainer {
    *zoom: 1;
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 4px;
    background-color: #fff
}

.lb-outerContainer:after {
    display: table;
    clear: both;
    content: ""
}

.lb-container {
    padding: 4px
}

.lb-loader {
    position: absolute;
    top: 43%;
    left: 0;
    width: 100%;
    height: 25%;
    line-height: 0;
    text-align: center
}

.lb-cancel {
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    background: url(../img/plugin/lightbox/loading.gif) no-repeat
}

.lb-nav {
    z-index: 10;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.lb-container > .nav {
    left: 0
}

.lb-nav button {
    background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==")
}

.lb-prev, .lb-next {
    display: block;
    height: 100%;
    cursor: pointer
}

.lb-nav button.lb-prev {
    -webkit-transition: opacity .6s;
    -moz-transition: opacity .6s;
    -o-transition: opacity .6s;
    left: 0;
    width: 34%;
    float: left;
    background: url(../img/plugin/lightbox/prev.png) left 48% no-repeat;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    transition: opacity .6s
}

.lb-nav button.lb-prev:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1
}

.lb-nav button.lb-next {
    -webkit-transition: opacity .6s;
    -moz-transition: opacity .6s;
    -o-transition: opacity .6s;
    right: 0;
    width: 64%;
    float: right;
    background: url(../img/plugin/lightbox/next.png) right 48% no-repeat;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    transition: opacity .6s
}

.lb-nav button.lb-next:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1
}

.lb-dataContainer {
    *zoom: 1;
    -moz-border-radius-bottomleft: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-bottomright: 4px;
    -webkit-border-bottom-right-radius: 4px;
    width: 100%;
    margin: 0 auto;
    padding-top: 5px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px
}

.lb-dataContainer:after {
    display: table;
    clear: both;
    content: ""
}

.lb-data {
    padding: 0 4px;
    color: #ccc
}

.lb-data .lb-details {
    width: 85%;
    float: left;
    line-height: 1.1em;
    text-align: left
}

.lb-data .lb-caption {
    font-weight: bold;
    font-size: 13px;
    line-height: 1em
}

.lb-data .lb-number {
    display: block;
    padding-bottom: 1em;
    clear: left;
    color: #999;
    font-size: 12px
}

.lb-data .lb-close {
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    -o-transition: opacity .2s;
    display: block;
    width: 30px;
    height: 30px;
    float: right;
    background: url(../img/plugin/lightbox/close.png) top right no-repeat;
    text-align: right;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
    opacity: .7;
    transition: opacity .2s
}

.lb-data .lb-close:hover {
    cursor: pointer;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1
}


.tour_info_slider_wrap {
    position: relative;
}

.tour_info_slider_arrow_box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.tour_info_slider_arrow_box .slick-prev::before {
    background-image: url(../img/common/icon_arrow_left.png)
}

.tour_info_slider_arrow_box .slick-prev:hover::before {
    background-image: url(../img/common/icon_arrow_black_left.png)
}

.tour_info_slider_arrow_box .slick-next::before {
    background-image: url(../img/common/icon_arrow.png)
}

.tour_info_slider_arrow_box .slick-next:hover::before {
    background-image: url(../img/common/icon_arrow_black.png)
}

.tour_info_slider_arrow_box .slick-arrow {
    z-index: 2;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 50px;
    height: 50px;
    transform: none;
    border-radius: 50%;
    background: #0f212d;
    transition: .3s
}

.tour_info_slider_arrow_box .slick-arrow::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 9px;
    transform: translate(-50%, -50%);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    content: ""
}

.tour_info_slider_arrow_box .slick-arrow:hover {
    background: #fff;
    opacity: 1
}

.tour_info_slider_arrow_box .autoplay-buttons {
    z-index: 2;
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0f212d;
    cursor: pointer;
    transition: .3s
}

.tour_info_slider_arrow_box .autoplay-buttons:hover {
    background: #fff
}

.tour_info_slider_arrow_box .autoplay-buttons:hover::before {
    color: #0f212d
}

.tour_info_slider_arrow_box .autoplay-buttons::before {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    color: #fff
}

.tour_info_slider_arrow_box .autoplay-buttons[data-play=stop]:before {
    content: "";
    font-weight: 900;
    font-family: "Font Awesome 6 Free"
}

.tour_info_slider_arrow_box .autoplay-buttons[data-play=play]:before {
    content: "";
    font-weight: 900;
    font-family: "Font Awesome 6 Free"
}

.area-detect {
    background: indianred;
}

/* === 口コミカード === */
.review_cards {
    margin-top: 30px;
}

.review_card {
    background: #fff;
    border: 1px solid #dbdad8;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.review_card:not(:last-child) {
    margin-bottom: 20px;
}

.review_card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.review_card_inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media screen and (min-width: 768px) {
    .review_card_inner {
        flex-direction: row;
        gap: 20px;
    }
}

.review_card_image {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    .review_card_image {
        width: 200px;
        min-width: 200px;
    }
}

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

@media screen and (min-width: 768px) {
    .review_card_image img {
        height: 150px;
    }
}

.review_card_content_wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.review_card_rate {
    margin-bottom: 0;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

/* 背景の空の星（グレー） */
.review_card_rate::before {
    content: "★★★★★";
    color: #ddd;
    letter-spacing: 2px;
}

/* 前景の塗りつぶし星（ゴールド） */
.review_card_rate::after {
    content: "★★★★★";
    color: #ffd700;
    letter-spacing: 2px;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    white-space: nowrap;
    width: calc(var(--rating) * 20%);
}

.review_card_content {
    font-size: 1.4rem;
    line-height: 1.6;
    letter-spacing: 0.06em;
    color: #333;
}

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

/* === 口コミリスト（縦並び） === */
.review_list {
    margin-top: 30px;
}

.review_item {
    background: #fff;
    border: 1px solid #dbdad8;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.review_item:not(:last-child) {
    margin-bottom: 20px;
}

.review_item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.review_item_inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media screen and (min-width: 768px) {
    .review_item_inner {
        flex-direction: row;
        gap: 20px;
    }
}

.review_item_image {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    .review_item_image {
        width: 200px;
        min-width: 200px;
    }
}

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

@media screen and (min-width: 768px) {
    .review_item_image img {
        height: 150px;
    }
}

.review_item_content_wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.review_item_rate {
    margin-bottom: 0;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

/* 背景の空の星（グレー） */
.review_item_rate::before {
    content: "★★★★★";
    color: #ddd;
    letter-spacing: 2px;
}

/* 前景の塗りつぶし星（ゴールド） */
.review_item_rate::after {
    content: "★★★★★";
    color: #ffd700;
    letter-spacing: 2px;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    white-space: nowrap;
    width: calc(var(--rating) * 20%);
}

.review_item_content {
    font-size: 1.4rem;
    line-height: 1.6;
    letter-spacing: 0.06em;
    color: #333;
}

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

/* === 口コミカード - 続きを見るリンク === */
.review_card_toggle_btn {
    display: inline-block;
    margin-left: 4px;
    padding: 0;
    background: none;
    color: #1e5191;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.review_card_toggle_btn:hover {
    color: #0d3a6d;
    text-decoration: underline;
}

.review_card_content_more {
    display: none;
}

.tour-breadcrumb {
    padding: 0;
    margin-bottom: 20px;
}

.tour-breadcrumb .breadcrumb {
    margin: 0;
}

/* パンくずリストの > 記号をリンクから除外 */
.tour-breadcrumb .breadcrumb .inner > span:before {
    pointer-events: none;
}

/* パンくずリストの行間調整（必要に応じてコメント解除）
@media screen and (max-width: 960px) {
    .breadcrumb-spot .inner > span {
        line-height: 2.2 !important;
    }
}
*/

.tour-h2-mt-01 {
    margin-top: 60px;
    margin-bottom: 15px;
}

/* 最初の見出しは親要素のcommon_pt_04でpadding-top: 60pxが適用されているため、
   margin-topは不要 */
.tour_detail > .tour-h2-mt-01:first-child,
.tour_detail > *:first-child .tour-h2-mt-01:first-child {
    margin-top: 0;
}

/* 口コミと関連ツアーセクションが同列の兄弟要素になっているため、 */
/* 最後のセクションにpadding-bottomを適用 */
section:has(.tour_optional_section) .tour_optional_section:last-child {
    padding-bottom: 130px;
}

/* 口コミも関連ツアーも存在しない場合、.tour_detailにpadding-bottomを適用 */
body:not(:has(.tour_optional_section)) .tour_detail {
    padding-bottom: 180px;
}

.tour-bg_gray {
    background: var(--tour-bg-gray);
}

/* 波のデザイン調整 - スマホ表示で切れ目がないように */
/* フッターの波を上に拡張して白い隙間をなくす */
@media screen and (max-width: 960px) {
    #footer .wave canvas {
        top: -30vw !important;
        height: 35vw;
    }

    /* 波と被らないように下部マージンを追加 */
    /* 口コミがある場合 */
    .tour_optional_section.max-width-1200 {
        margin-bottom: 20vw;
    }

    /* 口コミがない場合、.tour_detailにもマージンを追加 */
    .tour_detail {
        margin-bottom: 20vw;
    }
}

@media screen and (max-width: 768px) {
    #footer .wave canvas {
        top: -35vw !important;
        height: 40vw;
    }

    .tour_optional_section.max-width-1200 {
        margin-bottom: 20vw;
    }

    .tour_detail {
        margin-bottom: 25vw;
    }
}

@media screen and (max-width: 428px) {
    #footer .wave canvas {
        top: -40vw !important;
        height: 45vw;
    }

    .tour_optional_section.max-width-1200 {
        margin-bottom: 20vw;
    }

    .tour_detail {
        margin-bottom: 30vw;
    }
}

/* ========================================
   関連ツアースライド - t_mixed_tour
   ======================================== */

.t_mixed_tour {
    position: relative;
}

/* max-widthクラス */
.max-width-1200 {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.max-width-1280 {
    max-width: 1280px;
    margin-right: auto;
    margin-left: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* unit_title_01 */
.unit_title_01 .sub_title {
    margin-bottom: 10px;
    font-size: 1.3rem;
    letter-spacing: 0.06em;
}

.unit_title_01 .main_title {
    font-weight: 300;
    font-size: 2.6rem;
    letter-spacing: 0.06em;
}

.unit_title_01 .main_title.en {
    font-weight: 200;
    font-size: 4rem;
    font-family: "Albert Sans", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}

.unit_title_01.c_white .main_title,
.unit_title_01.c_white .sub_title {
    color: #fff;
}

.unit_title_01_wrap {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

/* unit_btn_04 */
.unit_btn_04 a {
    display: block;
    z-index: 2;
    position: relative;
    padding: 8px 20px;
    overflow: hidden;
    border-radius: 100px;
    background: #0571ba;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.06em;
    transition-duration: 0.4s;
    text-decoration: none;
}

.unit_btn_04 a::after {
    display: block;
    z-index: -1;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    width: 100%;
    height: 0;
    margin: auto;
    padding-top: 100%;
    transform: translateY(-50%) scale(0.1);
    border-radius: 50%;
    background: #718bae;
    content: "";
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s, transform 0s;
    transition-delay: 0s, 0.4s;
}

.unit_btn_04 a:hover {
    color: #fff;
    opacity: 1;
}

.unit_btn_04 a:hover::after {
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
    transition: opacity 0.8s, transform 0.6s ease-in-out;
    transition-delay: 0s;
}

.unit_btn_04 a .text {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    font-size: 1.3rem;
    font-family: "Albert Sans", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}

.unit_btn_04 a .text::before {
    content: "→";
    font-size: 1.2rem;
}

.t_mixed_tour_slide {
    z-index: 1;
    position: relative;
}

.t_mixed_tour_slide.no_slide {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.t_mixed_tour_slide.no_slide .t_mixed_tour_slide_item {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    padding: 0;
}

@media screen and (max-width: 1024px) {
    .t_mixed_tour_slide.no_slide {
        gap: 20px;
    }

    .t_mixed_tour_slide.no_slide .t_mixed_tour_slide_item {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}

@media screen and (max-width: 768px) {
    .t_mixed_tour_slide.no_slide .t_mixed_tour_slide_item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.t_mixed_tour_slide_item {
    padding: 0;
}

.t_mixed_tour_slide_item a {
    display: block;
    position: relative;
}

.t_mixed_tour_slide_item a:hover {
    opacity: 1;
}

.t_mixed_tour_slide_item a:hover .img {
    position: relative;
}

.t_mixed_tour_slide_item a:hover .img figure {
    position: relative;
    transform: scale(1.2);
}

.t_mixed_tour_slide_item a:hover .img figure::before {
    display: block;
    z-index: 3;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: rgba(15, 33, 70, 0.7);
    content: "";
}

.t_mixed_tour_slide_item a:hover .img figure::after {
    display: block;
    z-index: 3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "view more";
    color: #fff;
    font-weight: 300;
    font-size: 1.4rem;
    font-family: "Albert Sans", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}

.t_mixed_tour_slide_item a .img {
    display: inline-block;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.t_mixed_tour_slide_item a .img .label_tag {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 20px;
    border-radius: 10px 0 10px 0;
    background: #c91f37;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: 0.06em;
}

.t_mixed_tour_slide_item a .img figure {
    display: block;
    transition-duration: 0.5s;
}

.t_mixed_tour_slide_item a .img figure img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 10px;
}

.t_mixed_tour_slide_item a .contents .title {
    margin-top: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dbdad8;
    font-weight: 700;
    font-size: 1.7rem;
    letter-spacing: 0.06em;
}

.t_mixed_tour_slide_item a .contents .explain {
    padding-top: 15px;
    color: #6f7a81;
    font-size: 1.5rem;
}

.t_mixed_tour_slide_item a .contents .other {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
}

.t_mixed_tour_slide_item a .contents .other .cost {
    color: #718bae;
    font-weight: 700;
    font-size: 2.5rem;
    font-family: "Cormorant Infant", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}

.t_mixed_tour_slide_item a .contents .other .tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

.t_mixed_tour_slide_item a .contents .other .tags li {
    padding: 4px 10px;
    border: 1px solid #dbdad8;
    font-size: 1.2rem;
    line-height: 1.2;
}