@charset "utf-8";

body {
    font-size: 16px;
    background-color: #EEF8E4;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
}

html {
    scroll-behavior: smooth;
}

section {
    padding: 40px 0;
}


.global-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 95px 0 0 0;
    gap: 50px;
}


.global-header__site-logo {
    filter: drop-shadow(0px 4px 4px rgb(255,255,255,0.6));
}
.global-header__site-logo:hover {
    transform: rotate(-5deg);
    transition: all 0.3s;
}

.gnav__menu li {
    padding: 15px 0;
    
}

.gnav__linktext {
    color: #6B4A34;
    text-decoration: unset;
    font-size: 20px;
    position: relative;
    font-family: "Kaisei Decol", serif;
}

.gnav__linktext:hover {
    font-weight: 700;
    transition: all 0.3s;
}

.gnav__linktext:hover.gnav__linktext::before {
    transform: rotate(30deg);
    transition: all 0.3s;
}

.gnav__linktext::before {
    content: "";
    position: absolute;
    background: url(../img/icon_nav.svg) no-repeat center / cover;
    filter: drop-shadow(0px 2px 2px rgb(0,0,0,0.5));
    height: 20px;
    width: 20px;
    left: -23px;
}

/* ホバー時 or スクロール該当時にアイコンを斜めに */
.gnav__linktext:hover::before,
.gnav__linktext.is-current::before {
  transform: rotate(30deg);
}

.gnav__menu .dropdown__lists {
    position: relative;
    border-bottom: 2px dotted #FFF0E6;
    padding: 10px 0;
}

.gnav__menu .dropdown__lists:nth-child(1) {
    padding: 20px 0 10px 0;
}

.dropdown__lists::before {
    content: '-';
    position: absolute;
    color: #FFF0E6;
    left: -10px;
}

.dropdown__lists a {
    color: #FFF0E6;
    text-decoration: unset;
    font-size: 16px;
    font-family: "Kaisei Decol", serif;
}
.dropdown__lists a:hover {
    font-weight: 700;
    transition: all 0.3s;
}

.gnav__linktext.is-current,
.dropdown__lists a.is-current {
  font-weight: 700;
  transition: all 0.3s;
}


.gnav__icon-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.gnav__icon-img:hover {
    transform: scale(1.1);
    transition: all 0.3s;
}

.sp-nav {
    display: none;
}

.global-header__site-logo_sp {
    display: none;
}

.left {
    width: calc((100% - 500px) * 0.5);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    background-color: #A8BC71;
}

main {
    width: 500px;
    position: absolute;
    top: 0;
    left: calc((100% - 500px) * 0.5);
    background-color: #EEF8E4;

}

.right {
    width: calc((100% - 500px) * 0.5);
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    overflow: hidden;
}

.slide{
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 1.5s ease-in-out;
  }
  
.slide.first {
    background: url(../img/bus.jpg) no-repeat center / cover;
  }
  
.slide.second {
    background: url(../img/hana.jpg) no-repeat center / cover;
    opacity: 0;
  }
  
.slide.third {
    background: url(../img/yama.jpg) no-repeat center / cover;
    opacity: 0;
  }
  
  @keyframes slide {
    0% { opacity: 0; }
    10% { opacity: 1; }
    33.33% { opacity: 1; }
    43.33% { opacity: 0; }
    100% { opacity: 0; }
}




.slide:nth-child(1) {
    animation: slide 18s infinite;
}

.slide:nth-child(2) {
    animation: slide 18s 6s infinite; /* 18s ÷ 3 = 6s 遅延 */
}

.slide:nth-child(3) {
    animation: slide 18s 12s infinite; /* 18s ÷ 3 × 2 = 12s 遅延 */
}

.mainvisual {
    background: url(../img/top1.jpg) no-repeat center / cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: unset;
}

.mainvisual_text {
    writing-mode: vertical-rl;
    font-size: 40px;
    color: #6B4A34;
    margin: auto;
    line-height: 80px;
    letter-spacing: 18px;
    font-family: "Tsukimi Rounded", sans-serif;
    font-weight: 700;
}

.mainvisual_text p:nth-of-type(2) {
    padding: 200px 0 0 0;
}

.mainvisual_text span {
    font-size: 65px;
    color: #fdfdfd;
}

.container {
    max-width: 95%;
    margin: 0 auto;
}

.recommend_tour__titlebox {
    position: relative;
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.recommend_tour__title {
    font-size: 30px;
    color: #6B4A34;
    position: absolute;
    font-family: "Kaisei Decol", serif;
    font-weight: 700;
    letter-spacing: 2px;
    z-index: 1;
}

.recommend_tour__titlebox::after {
    content: '';
    position: absolute;
    background: url(../img/leaves1.svg) no-repeat center / cover;
    height: 100px;
    width: 42px;
    right: 37px;
}


.recommend_tour__title::after {
    content: '';
    position: absolute;
    background: url(../img/peint.svg) no-repeat center / cover;
    height: 30px;
    width: 280px;
    top: 30px;
    left: -8px;
}


.recommend_tour__subtitle {
    font-size: 200px;
    color: #F1EBDA;
    font-family: "Rampart One", sans-serif;

}

.recommend_tour__title2 {
   font-size: 24px;
   color: #DA4E11;
   padding: 14px 0;
   display: flex;
   justify-content: center;
   font-family: "Kaisei Decol", serif;
   font-weight: 500;
}

.recommend_tour__title2.blue {
color: #1681A7;
}

.recommend_tour__title2.green {
    color: #97A93F;
}

.recommend_tour_box {
    padding: 70px 0;
}


.recommend_tour__thumb {
    padding: 72px 0 57px 0;
    position: relative;
}

.recommend_tour__thumb::before {
    content: '';
    position: absolute;
    background: url(../img/leaves_topleft.svg) no-repeat center / cover;
    width: 130px;
    height: 90px;
    top: 28px;
    left: -18px;
}


.recommend_tour__thumb.second::before {
    background: url(../img/leaves_topright.svg) no-repeat center / cover;
    right: 0;
    left: unset;
}

.recommend_tour__img {
    width: 100%;
    border-radius: 100px 70px;
}

.recommend_tour__img.second {
    border-radius: 70px 100px;
}


.recommend_tour__description {
    color: #333333;
    margin: 0 auto 53px auto;
    line-height: 28px;
    width: 90%;
}

.recommend_tour__line {
    border-bottom: 2px dotted #A87C5B;
    width: 95%;
    margin: 0 auto;
}

.recommend_tour__line.icon {
    position: relative;
}

.recommend_tour__line.icon::before {
    content: '';
    position: absolute;
    background: url(../img/icon_bus.webp) no-repeat center / cover;
    width: 38px;
    height: 22px;
    top: -21px;
}

.recommend_tour__line.icon.second::before {
    right: 0;
}

.recommend_tour__line.icon.second::after {
    content: '';
    position: absolute;
    background: url(../img/leaves2.svg) no-repeat center / cover;
    width: 168px;
    height: 55px;
    bottom: 0;
    left: -18px;
}

.recommend_tour__line.icon.third::after {
    content: '';
    position: absolute;
    background: url(../img/leaves3.svg) no-repeat center / cover;
    width: 168px;
    height: 55px;
    bottom: 0;
    right: 0;
}


.recommend_tour__point {
    background: url(../img/point_back.svg) no-repeat center / cover;
    padding: 50px 0;
    position: relative;
}

.recommend_tour__point.second {
    background: url(../img/point_back2.svg) no-repeat center / cover;
}

.recommend_tour__point.first::before {
    content: '';
    position: absolute;
    background: url(../img/icon_bus.webp) no-repeat center / cover;
    width: 38px;
    height: 22px;
    top: 26px;
    left: 195px;
    transform: rotate(40deg);
}

.recommend_tour__point.second::before {
    content: '';
    position: absolute;
    background: url(../img/icon_bus.webp) no-repeat center / cover;
    width: 38px;
    height: 22px;
    top: 0px;
    right: 158px;
    transform: rotate(-25deg);
}

.recommend_tour__point.third::before {
    content: '';
    position: absolute;
    background: url(../img/icon_bus.webp) no-repeat center / cover;
    width: 38px;
    height: 22px;
    top: 26px;
    left: 195px;
    transform: rotate(40deg);
}


.recommend_tour__point__titlebox {
    display: flex;
    width: 100%;
    gap: 3%;
}

.recommend_tour__point__titlebox.second {
    flex-direction: row-reverse;
}


.recommend_tour__point__title {
    width: 50%;
    color: #DA4E11;
    font-size: 32px;
    background: url(../img/point1.svg) no-repeat bottom / 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Kaisei Decol", serif;
    font-weight: 500;
    line-height: 43px;
}

.recommend_tour__point__title.blue {
    color: #1681A7;
    background: url(../img/point2.svg) no-repeat bottom / 100%;
}

.recommend_tour__point__title.green {
    color: #97A93F;
    background: url(../img/point3.svg) no-repeat bottom / 100%;
}

.recommend_tour__point__illust {
    width: 45%;
    aspect-ratio: 1/1;
}


.recommend_tour__point__card {
    display: flex;
    gap: 4%;
    align-items: center;
    width: 95%;
    margin: 40px auto;
}

.recommend_tour__point.first .recommend_tour__point__card:nth-of-type(3) {
     display: flex;
     flex-direction: row-reverse;

}

.recommend_tour__point.second .recommend_tour__point__card:nth-of-type(1) {
    display: flex;
    flex-direction: row-reverse;

}
.recommend_tour__point.second .recommend_tour__point__card:nth-of-type(5) {
    display: flex;
    flex-direction: row-reverse;

}

.recommend_tour__point.third .recommend_tour__point__card:nth-of-type(3) {
    display: flex;
    flex-direction: row-reverse;

}

.recommend_tour__point__text {
    width: 50%;
}
.recommend_tour__point__item {
    display: flex;
    gap: 8px;
    color: #6B4A34;
    font-size: 20px;
    margin: 0 0 16px 0;
    font-weight: 700;
    line-height: 30px;
}

.recommend_tour__point__number {
color: #DD622A;
font-size: 32px;
font-family: "Rampart One", sans-serif;
}

.recommend_tour__point__number.blue {
    color: #1681A7;
}

.recommend_tour__point__number.green {
    color: #97A93F;
}

.recommend_tour__point__description {
    color: #333333;
    line-height: 24px;
}

.recommend_tour__point__thumb {
    width: 50%;
    background: url(../img/dot_pink.webp) no-repeat center / cover;
}

.recommend_tour__point__thumb.blue {
    background: url(../img/dot_blue.webp) no-repeat center / cover;
}

.recommend_tour__point__thumb.green {
    background: url(../img/dot_green.webp) no-repeat center / cover;
}

.recommend_tour__point__img {
    width: 100%;
}


.banner_area {
    overflow: hidden; /* はみ出した要素を非表示 */
    width: 100%;
}

.banner_menu {
    display: flex;

}
.banner_item {
    width: 70%;  
}

.recommend_tour__point__banner {
    width: 100%;
    border-radius: 20px;
}

.recommend_tour__point__banner:hover {
    transform: scale(0.95);
    transition: all 0.3s;
}


.btn {
    text-align: center;
    margin: 50px 0;
}

.btnlink {
    color: #fdfdfd;
    text-decoration: unset;
    padding: 10px 50px;
    border-radius: 20px;
    background-color: #7F9246;
    position: relative;
}

.btnlink::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-right: solid 1px #fdfdfd;
    border-bottom: solid 1px #fdfdfd;
    transform: rotate(-45deg);
    top: 16px;
    right: 22px;
}

.btnlink:hover {
    opacity: 0.8;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.btnlink.reservation::after {
    border-right: unset;
    border-bottom: unset;
}


/*ツアー検索*/
.search {
    background: linear-gradient(0deg, rgba(241,235,218,0) 1%, rgba(241,235,218,1) 7%, rgba(241,235,218,1) 93%, rgba(241,235,218,0) 100%);
}

.search__titlebox {
    position: relative;
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
   
}

.search__titlebox2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5%;
    position: absolute;
    width: 100%;
}

.search__title {
    font-size: 30px;
    color: #6B4A34;  
    font-family: "Kaisei Decol", serif; 
    font-weight: 700; 
    position: relative;
}

.search__title_img {
    width: 45%;
}

.search__title::after {
    content: '';
    position: absolute;
    background: url(../img/peint.svg) no-repeat center / cover;
    height: 24px;
    width: 200px;
    bottom: -28px;
    left: 4px;
}

.search__subtitle {
    font-size: 200px;
    color: #97A93F;
    font-family: "Rampart One", sans-serif;
}

.search-box {
    display: flex;
    margin: 15px 0;
}
.search-month {
    width: 50%;
}

#month-filter {
    padding: 2px 5px;
}

.keyword_box {
    padding: 2px;
}
.search-location {
    width: 50%;
}

.location-filter {
    padding: 2px 17px;
}

.search-img {
    width: 95%;
    border-radius: 10px;
    margin: 30px 0;
}

.search-img.scroll-up.is-active:hover {
    transform: scale(0.95);
    transition: all 0.3s;
}

.search-link {
    display: flex;
    justify-content: center;
}

.search .search-box-title{
    color: #333333;
    margin: 0 0 5px 0;
    z-index: 1;
}
#weekend-filter {
    z-index: 1;
}

.sidebar-btn-wrap {
    margin: 10px 0 0 0;
}

/* ご利用ガイド */
.guide__titlebox {
    position: relative;
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.guide__titlebox2 {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    gap: 3%;
    position: absolute;
    width: 100%;
}

.guide__title {
    font-size: 30px;
    color: #6B4A34;
    font-family: "Kaisei Decol", serif;
    font-weight: 700;
    position: relative;
}
.guide__title::before {
    content: '';
    position: absolute;
    background: url(../img/leaves4.svg) no-repeat center / cover;
    height: 48px;
    width: 24px;
    bottom: 48px;
    right: -5px;
}


.guide__title_img {
    width: 45%;
}

.guide__title::after {
    content: '';
    position: absolute;
    background: url(../img/peint.svg) no-repeat center / cover;
    height: 24px;
    width: 200px;
    bottom: -34px;
    right: -9px;
}

.guide__subtitle {
    font-size: 200px;
    color: #F1EBDA;
    font-family: "Rampart One", sans-serif;
}


.guide__card {
    text-align: center;
    margin: 50px 0;
}

.guide__card_titlebox {
    position: relative;
    display: inline-block;
    margin: 30px 0;
}

.guide__card_subtitle{
transform: rotate(-10deg);
position: absolute;
top: -25px;
left: -40px;
color: #73442F;
}

.guide__card_title{
  color: #7F9246;
  font-size: 28px;
  font-family: "Kaisei Decol", serif;
  font-weight: 700;
}

.guide__card_thumb {
    position: relative;
}

.guide__card_thumb::after {
 content: '';
 position: absolute;
 background: url(../img/leaves_right.svg) no-repeat center / cover;
 width: 130px;
 height: 90px;
 bottom: -40px;
 right: 0;
}

.guide__card_thumb2 {
    position: relative;
}

.guide__card_thumb2::after {
    content: '';
 position: absolute;
 background: url(../img/leaves_left.svg) no-repeat center / cover;
 width: 130px;
 height: 90px;
 bottom: -40px;
 left: 0;
}


.guide__card_img {
    width: 95%;
    border-radius: 50px;
}
.guide__card_description {
    display: flex;
    justify-content: center;
    text-align: left;
    margin: 50px auto;
    color: #333333;
    line-height: 23px;
    width: 90%;
}

/*よくある質問*/
.question__titlebox {
    position: relative;
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}



.question__title {
    font-size: 30px;
    color: #6B4A34;
    position: absolute;
    font-family: "Kaisei Decol", serif;
    font-weight: 700;
}

.question__subtitle {
    font-size: 200px;
    color: #F1EBDA;
    font-family: "Rampart One", sans-serif;
}

.question__title::before {
    content: '';
    position: absolute;
    background: url(../img/leaves5.svg) no-repeat center / cover;
    height: 80px;
    width: 50px;
    top: -14px;
    left: -71px;
}

.question__title::after {
    content: '';
    position: absolute;
    background: url(../img/peint.svg) no-repeat center / cover;
    height: 24px;
    width: 200px;
    top: 30px;
    left: -8px;
}


.question .details {
    transition: all 0.3s;
    border-left: 1px solid #97A93F;
    border-right: 1px solid #97A93F;
    box-sizing: border-box;
  }
  .question .details:last-of-type {
    border-bottom: 1px solid #97A93F;
  }
  .question .details[open] {
    height: auto;
  }
  .question .details-summary {
    display: block;
    position: relative;
    padding: 20px 30px 20px 20px;
    border-top: 1px solid #97A93F;
    font-size: 18px;
    transition: all 0.3s;
    color: #6B4A34;
    font-weight: 500;
    background-color: #97A93F;
  }
  .question .details-summary:hover {
    cursor: pointer;
    background-color: #b5c273;
  }
  .question .details-summary .toggle-icon {
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: bold;
    color: #6B4A34;
    transition: all 0.3s;
  }
  .question .details:not([open]) .toggle-icon::before {
    content: "+";
    position: absolute;
    right: 25px;
    top: 32%;
    transition: all 0.3s;
  }
  .question .details[open] .toggle-icon::before {
    content: "−";
    position: absolute;
    right: 25px;
    top: 32%;
    animation-name: qatoggle-animation;
    animation-duration: 0.3s;

  }
  .question .details-content {
    padding: 20px;
    color: #6B4A34;
    background-color: #F1EBDA;
    overflow: hidden;
    overflow-y: auto;
    line-height: 26px;

  }
  .question .details[open] .details-content {
    animation-name: qa-animation;
    animation-duration: 0.5s;
  }



@keyframes qa-animation {
0% {
    opacity: 0;
    transform: translateY(20px);
}
100% {
    opacity: 1;
    transform: translateY(0);
}
}
@keyframes qatoggle-animation {
    0% {
        opacity: 0;
        transform: rotate(45deg);
    }
    100% {
        opacity: 1;
        transform: none;
    }
    }
    

/* バスの部分  */
.bus-section {
    position: relative;
    width: 100%;
    height: 95px; 
    background: url(../img/tree.svg) no-repeat center / cover;
    overflow: hidden;
}

.bus-wrap {
    position: absolute;
    bottom: 0;
    right: -200px; /* 初期状態では画面の外 */
}

.bus {
    width: 180px; /* バスのサイズ */
    transform: translateX(100vw);

}


.swiper-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0; /* 上下に余白をつける */
}

.swiper-slide {
    width: 80%; /* 80%の幅で表示（調整可能） */
    transition: transform 0.3s ease;
}

/* 真ん中のスライドを少し大きく見せる */
.swiper-slide-active {
    transform: scale(1.1);
}




/* 一番上に戻るボタン */

.top {
    display: flex;
    position: fixed;
    bottom: 15px;
    /* right: 15px; */
    width: 50px;
    height: 50px;
    background-color: #A87C5B;
    border-radius: 45px;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.3s;
    z-index: 99;
    margin-left: 435px;
}

.top.show {
    opacity: 1;
    transform: none;
}

.top:hover {
    background-color:#6B4A34;
    transition: all 0.3s;
}

.top_arrow {
    border-right: 1px solid #fdfdfd;
    border-top: 1px solid #fdfdfd;
    transform: rotate(-45deg);
    width: 10px;
    height: 10px;
    position: absolute;
    margin: auto;
    top: 5px;
    bottom: 0;
    right: 0;
    left: 0;
}

.top::after {
    content: '';
    position: absolute;
    height: 26px;
    width: 44px;
    background: url(../img/icon_bus.webp) no-repeat center / cover;
    top: -21px;
    left: 3px;
}



footer {
    height: 88px;
    background-color: #73442F;
    display: flex;
    justify-content: center;
    align-items: center;
}
.copyright {
    color: #fdfdfd;
}


/* パンくずリスト */
.breadcrumb-menu {
    display: flex;
    padding: 30px 0 0 30px;
    font-size: 14px;
    
    color: #8C8888;
}


.breadcrumb-item:not(:last-child):after {
content: ">";
margin: 0 10px 0 10px;
}

.breadcrumb-linktext {
    color: #8C8888;
    text-decoration: unset;
}

.breadcrumb-linktext:hover {
    text-decoration: unserline;
}



/* ツアー詳細ページ */
.tour__title {
    color: #6B4A34;
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 20px 0;
    line-height: 33px;
}

.tour__subtitle {
    color: #333333;
    font-size: 18px;
    font-family: "Kaisei Decol", serif;
    font-weight: 400;
    line-height: 27px;
} 
.tour__price {
    text-align: right;
    margin: 30px 0 50px 0;
}

.tour__price span {
    color: #D97D54;
    font-size: 32px;
    font-weight: 500;
}

.tour__img {
    width: 100%;
    aspect-ratio: 16/9;
}

.swiper-pagination {
    margin: 20px 0 0 0;
}


.tour__table {
    width: 100%;
    border: solid 1px #6B4A34;
    position: relative;
}

.tour__table::before {
    content: "";
    position: absolute;
    background: url(../img/leaves_topleft.svg) no-repeat center / cover;
    height: 80px;
    width: 150px;
    left: -36px;
    top: -48px;
}

.tour__table tr:not(:nth-child(4)) {
    border-bottom: dotted 2px #A87C5B;
}


.tour__table th {
    width: 35%;
    border-right: solid 1px #A87C5B;
    padding: 25px;
}

.tour__table td {
    width: 65%;
    padding: 0 0 0 65px;
}

.tab-wrap {
    margin: 140px 0 0 0;
    background-color: #7F9246;
}

.tab {
        width: calc(100%/3);
        border-bottom: 3px solid #7F9246;
        border-top: 1px solid #7F9246;
        border-left: 1px solid #7F9246;
        line-height: 50px;
        font-size: 16px;
        display: block;
        float: left;
        text-align: center;
        transition: all 0.2s ease;
        background-color: #CFD9B0;
        color: #333333;
        border-radius: 10px 10px 0 0;
      
}

.tab.active {
    background-color: #7F9246;
    color: #fdfdfd;
}

.panel-group {
    padding: 50px 0;
    /* background-color: #7F9246; */
}


.panel {
    display: none;
    background-color: #7F9246; 
    padding: 50px 0;
}

.panel.active {
    display: block;
    animation-name: panel-animation;
    animation-duration: 0.3s;

}

@keyframes panel-animation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.panel_information {
    color: #fdfdfd;
    line-height: 40px;
    padding: 0 0 8% 8%;
}

.panel_information dt{
    float: left;
  }
  
.panel_information dt::after{
    content: "："
  }




.tour__information_table {
    width: 95%;
    text-align: center;
    margin: 0 auto;
    border-collapse: collapse; /* 隙間をなくす */
}

.tour__information_table thead {
    background-color: #73442F;
    color: #fdfdfd;
}

.tour__information_table th {
    padding: 20px 0;
    border-top: solid 1px #fdfdfd; 
    border-bottom: solid 1px #73442F;
    border-left: solid 1px #fdfdfd; 
   
}

.tour__information_table thead th:first-child {
    border-left: solid 1px #FFFFFF; /* 出発日の左のボーダーを白 */
}

.tour__information_table th:last-child {
    border-right: solid 1px #FFFFFF; /* 予約の右のボーダーを白 */
}

.tour__information_table .tour__row-header {
    border-left: solid 1px #73442F;  /* 出発日付の左側は茶色 */
    border-right: solid 1px #73442F; 
}

/* 「残席」列を適切な幅に */
.tour__information_table th:nth-child(4) {
    width: 30%;
}

.tour__information_departure {
    border-right: #fdfdfd;
}

/*  tbody の背景・ボーダー調整 */
.tour__information_table tbody {
    border: solid 1px #73442F;
}

.tour__information_ok {
    background-color: #F2ECE0;
}

.tour__information_ok td {
    border: solid 1px #73442F;
}

.tour__information_ok td:nth-of-type(2) {
    color: #D97D54;
}

.tour__information_ng {
    background-color: #C8C4C4;
    color: #878484;
}

.tour__information_ng td {
    border: solid 1px #73442F;
}


.btn.reservation {
    margin: 0;
}

.btnlink.reservation {
    padding: 5px 18px;
    border-radius: 10px;
}

.btnlink.reservation:hover {
    letter-spacing: unset;
}

.point_line {
    border-bottom: 2px dotted #fdfdfd;
}

.recommend_tour__point__number.white {
    color: #fdfdfd;
}

.recommend_tour__point__description.white {
    color: #fdfdfd;
}

.recommend_tour__point__thumb.point {
    background: unset;
}
.recommend_tour__point__img.point {
    filter: drop-shadow(0px 4px 4px rgb(0,0,0,0.25));
}

.recommend_tour__point__card.point:nth-of-type(3) {
    flex-direction: row-reverse;

}

.panel_schedule {
    line-height: 50px;
    color: #fdfdfd;
    padding: 0 30px;
}

.arrow {
    display: inline-block;  
    padding-left: 40px; 
}

.reservation__title {
    color: #6B4A34;
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 20px 0;
    text-align: center;
}
.reservation__item {
    color: #fdfdfd;
    background-color: #7F9246;
    padding: 20px 0 20px 60px;
    position: relative;
}

.reservation__item::before {
content: "";
position: absolute;
background: url(../img/icon_nav.svg) no-repeat center / cover;
filter: drop-shadow(0px 2px 2px rgb(0,0,0,0.5));
height: 20px;
width: 20px;
left: 28px;
}

.reservation_filter {
    margin: 20px auto;
    width: 95%;
    display: flex;
    padding: 5px;
}

.name_area {
    margin: 20px auto;
    width: 92%;
    display: flex;
    padding: 5px;
}

.tel_area {
    margin: 20px auto;
    width: 92%;
    display: flex;
    padding: 5px;
}

.address_area {
    margin: 20px auto;
    width: 92%;
    display: flex;
    padding: 5px;
}

.mail_area {
    margin: 20px auto;
    width: 92%;
    display: flex;
    padding: 5px;
}

.text_area {
    margin: 20px auto;
    width: 92%;
    display: flex;
    padding: 5px;
    height: 150px;
}

/* .btnlink.form {
    border: unset;
color: #fdfdfd;
    text-decoration: unset;
    padding: 10px 50px;
    border-radius: 20px;
    background-color: #7F9246;
    position: relative;
}

.btnlink.form::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-right: solid 1px #fdfdfd;
    border-bottom: solid 1px #fdfdfd;
    transform: rotate(-45deg);
    top: 14px;
    right: 22px;
} */

.reservation_complete {
    text-align: center;
    padding: 0 0 50px 0;
    font-size: 18px;
}

.bus-section.complete {
    padding: 80px 0;
}

.complete_box {
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: space-between;

}

.scroll-up {
    opacity: 0;
  visibility: hidden;
  transition: all 1s;
  transform: translateY(150px) scale(0.9);
}

.scroll-up.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

 /* 非表示状態 */
 .slide-in-left,
 .slide-in-right {
   opacity: 0;
   visibility: hidden;
   transform: translateX(100px); /* または -100px */
   transition: transform 0.8s ease, opacity 0.8s ease;
 }

/* 左から */
.slide-in-left {
  transform: translateX(-100px) scale(0.7) rotate(-5deg);
  
}

/* 右から */
.slide-in-right {
  transform: translateX(100px) scale(0.7) rotate(5deg);
}

/* is-active時に delay を個別に適用 */
.slide-in-left.is-active,
.slide-in-right.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1) rotate(0);
}

.slide-in-up {
    opacity: 0;
    transform: translateY(100px) scale(0.95) rotate(15deg);
    transition: all 1s ease;
  }
.slide-in-up.is-active {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
  }


@media screen and (max-width: 1200px) {
    .right {
        display: none;
    }

    .left {
        width: calc((100% - 500px));
    }

    main {
       right: 0;
       left: unset;
    }

    .slide-in-right {
        transform: scale(0.7) rotate(10deg);
    }

    .slide-in-left {
        transform:  scale(0.7) rotate(-10deg); /* 横移動なし */
      }
    
      .slide-in-right.is-active,.slide-in-left.is-active {
        transform: scale(1) rotate(0);
      }
}

@media screen and (max-width: 850px) {

    .left {
        display: none;
    }

    main {
        width: 100%;
    }

    .menu-btn {
        position: fixed;
        top: 10px;
        right: 10px;
        display: flex;
        height: 45px;
        width: 45px;
        justify-content: center;
        align-items: center;
        z-index: 999;
        background-color: #F1EBDA;
        border-radius: 10px;
      }
    
      .sp-nav {
        position: fixed;
        top: 0;
        width: 100%;
        height: 100vh;
        background: rgba(168, 188, 113, 1.0); 
        display: none;
        flex-direction: column;
        /* align-items: center;
        justify-content: center; */
        z-index: 100;
        opacity: 0;
        
      }
      .sp-nav.show {
        opacity: 1;
        display: flex;
        transform: none;
        animation-name: ham-animation;
        animation-duration: 0.3s;
      }

     
  @keyframes ham-animation {
      0% {
          opacity: 0;
          transform: translateX(50px);
      }
      100% {
          opacity: 1;
          transform: translateX(0);
      }
  }
  .global-header__site-logo_sp {
    display: block;
    position: fixed;
    z-index: 99;
    top: 15px;
    left: 20px;
    filter: drop-shadow(0px 4px 4px rgb(255,255,255,0.6));
  }
  .global-header__site-logo_sp:hover {
    transform: rotate(-5deg);
    transition: all 0.3s;
  }
      
      .menu-line {
          content: "";
          display: block;
          height: 2px;
          width: 25px;
          border-radius: 3px;
          background-color: #6B4A34;
          position: relative;
          transition: all 0.3s;
          
        }
      
      .menu-line::before,.menu-line::after {
          content: "";
          display: block;
          height: 2px;
          width: 25px;
          border-radius: 3px;
          background-color: #6B4A34;
          position: absolute;
          transition: all 0.3s;
      }
      
      .menu-line::before {
          top: -10px;
        }
      .menu-line::after {
          top: 10px;
        }
      
      .menu-line.active {
          background: transparent;
      }
      
      .menu-line.active::before {
          transform: rotate(45deg);
          top: 0;
      }
      
      .menu-line.active::after {
          transform: rotate(-45deg);
          top: 0;
      }
      
      .sp-nav__menu {
          list-style: none;
          position: absolute;
          top: calc(10vh);
          left: calc(6vh);
      }
      
      .sp-nav__menu li {
          margin: 40px 0;
         
      }
      
      .sp-nav__menu .dropdown__lists {
        border-bottom: 2px dotted #FFF0E6;
        padding: 10px 0;
        margin: 20px 0;
      }
      
      .sp-nav__icon-menu {
          display: flex;
          align-items: center;
          gap: 30px;
          position: absolute;
          bottom: calc(20vh);
          left: calc(6vh);
      }
      p {
        font-size: 14px;
    }
    .main_title {
        font-size: 40px;
    }

    .mainvisual_text span {
        font-size: 42px;
    }

    .main_title {
        font-size: 24px;
    }

      .top {
          right: 15px;
      }

      .recommend_tour__subtitle {
        font-size: 10rem;
      }
      .search__subtitle {
        font-size: 10rem;
      }
      .guide__subtitle {
        font-size: 10rem;
      }

      .question__subtitle {
        font-size: 10rem;
      }

      .recommend_tour__titlebox::after {
        right: 0;
      }
      .recommend_tour__point__title {
        font-size: 28px;
      }

      .recommend_tour__point__card {
        flex-direction: column;
        gap: 30px;
        width: 70%;
        margin: 40px auto;
      }

      .recommend_tour__point__card.point:nth-of-type(3) {
        flex-direction: column;
      }

      .recommend_tour__point.first .recommend_tour__point__card:nth-of-type(3) {
        flex-direction: column;
      }

      .recommend_tour__point.second .recommend_tour__point__card:nth-of-type(1) {
        flex-direction: column;
      }

      .recommend_tour__point.second .recommend_tour__point__card:nth-of-type(5) {
        flex-direction: column;
      }

      .recommend_tour__point.third .recommend_tour__point__card:nth-of-type(3) {
        flex-direction: column;
      }

      .recommend_tour__point__text {
        width: 90%;
        display: contents;
      }
      .recommend_tour__point__item {
        order: 1;
      }

      .recommend_tour__point__description {
        order: 3;
      }

      .recommend_tour__point__thumb {
        order: 2;
        width: 60%;
      }

      .recommend_tour__point.first::before {
        left: 30%;
      }

      .recommend_tour__point.second::before {
        left: 70%;
      }

      .recommend_tour__point.third::before {
        left: 30%;
      }

      .bus-section {
        padding: 56px 0;
      }
      .search-box-title {
        font-size: 14px;
      }
      .guide__card_subtitle {
        left: -20px;
      }

      .guide__card_description {
        font-size: 14px;
      }

      .question .details-summary {
        font-size: 16px;
      }
      .question .details:not([open]) .toggle-icon::before {
        right: 15px;
      }
      .question .details[open] .toggle-icon::before {
        right: 15px;
      }

      .breadcrumb-menu {
        padding: 90px 0 0 5px;
      }


      .tour__table th {
        width: 45%;
      }

      .tour__table td {
        width: 55%;
      }

      .bus-section.complete {
        padding: 120px 0;
    }

   
      

}
