@charset "utf-8";
/* CSS Document */

body{
    font-family: "Sawarabi Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
}


/*ここからファーストビュー*/

header{
    width: 100%;
    background-image:url("../img/top-bg.png");
    background-repeat: no-repeat;
    background-size: 100%;
    height: 56.25vw;
    margin-top: 4.8vw;
}

.top{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

h1{
    width: 60%;
    position: relative;
    margin-top: 1.5vw;
}

h1 p{
    position: absolute;
}

h1 .main_rogo{
    z-index: 2;
    margin-top: 3.8vw;
}
 

h1 .main_rogo img{
    width: 100%; 
}


header .circle{
    width: 20%;
}

.circle{
    padding-top: 1.2vw;
}

.circle p{
    width: 80%;
    margin: 5vw auto;
}

.circle p img{
    width: 100%;
}

.fadeIn1 {/* フェードインアニメーション*/
    animation-name: fadeIn1;
    animation-delay: 0s;
    animation-duration: 1.2s;
    animation-fill-mode: forwards;
    transform: translateY(50px);
    opacity: 0;
}

@keyframes fadeIn1 {
    0% {
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.fadeIn2 {
    animation-name: fadeIn2;
    animation-delay: 500ms;
    animation-duration: 1.2s;
    animation-fill-mode: forwards;
    transform: translateY(50px);
    opacity: 0;
}
@keyframes fadeIn2 {
    0% {
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.fadeIn3 {
    animation-name: fadeIn3;
    animation-delay: 1s;
    animation-duration: 1.2s;
    animation-fill-mode: forwards;
    transform: translateY(50px);
    opacity: 0;
}
@keyframes fadeIn3 {
    0% {
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.fadeIn4 {
    animation-name: fadeIn4;
    animation-delay: 1500ms;
    animation-duration: 1.2s;
    animation-fill-mode: forwards;
    transform: translateY(50px);
    opacity: 0;
}
@keyframes fadeIn4 {
    0% {
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/*ここまでファーストビュー*/

/*ここから固定申し込みボタン*/

.form-sticky{
    width: 18%;
    position: fixed;
    right: 0;
    bottom: 3vw;
    z-index: 9999;
    transition: .5s;    
    opacity: 0;
    visibility: hidden;
}

.form-sticky img{
    width: 100%;
}


/*このクラスが付与されると表示する*/
.active{
  opacity: 1;
  visibility: visible;
}

/*ここまで固定申し込みボタン*/


nav.menu_pc{
    width: 100%;
    height: 5.2vw;
    background-image: url("../img/nav_bg.png");
    background-repeat: no-repeat;
    background-size: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
}

nav.menu_pc p{
    width: 30%;
    margin-left: 1vw;
}

nav.menu_pc p img{
    width: 100%;
}

nav.menu_pc ul{
    width: 30%;
    height: 5.2vw;
    justify-content: space-between;
    display: flex;
    margin-right: 2vw;
}

nav.menu_pc ul li{
    width: 28%;
    height:100%;
}

nav.menu_pc ul li:nth-child(2),nav.menu_pc ul li:nth-child(3){
    width: 33%;
}

nav.menu_pc ul li a{
    display: block;
    width: 100%;
    height: 100%;
}

nav.menu_pc ul li img{
    width: 100%;
}

nav.menu_pc ul li:nth-child(1){
    background-image: url("../img/nav1.png");
}

nav.menu_pc ul li:nth-child(2){
    background-image: url("../img/nav3.png");
}

nav.menu_pc ul li:nth-child(3){
    background-image: url("../img/nav4.png");
}

nav.menu_pc ul li{
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    transition : all 0.2s ease 0s;
}

nav.menu_pc ul li:nth-child(1):hover{
    background-image: url("../img/nav1_hover.png");
}

nav.menu_pc ul li:nth-child(2):hover{
    background-image: url("../img/nav3_hover.png");
}

nav.menu_pc ul li:nth-child(3):hover{
    background-image: url("../img/nav4_hover.png");
}

.about-first{
    width: 65%;
    margin: 0 auto;
    font-family: "Sawarabi Gothic", sans-serif;
}

main p img{
    width: 100%;
}

.main-about-sen{
    color: #8c6856;
    text-align: center;
    font-size:clamp(10px, 1.7vw, 32px);
    line-height:1.9;
    margin-top: 1em;
    letter-spacing: 0.2em;
}

.main-about-sen-line{
    height: fit-content;
    font-size: 1.1em;
    font-weight: 500;
    background: linear-gradient(transparent 50%, #ffeacf 50%);
}

.main-about-sen-ribbon{
    display: inline-block;
    height: fit-content;
    font-size: 1.1em;
    font-weight: 500;
    background-image: url("../img/ribbon.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0.7em;
}

.about-second,.about-third{
    display: flex;
    width: 70%;
    margin: 13vw auto;
    justify-content: space-between;
    align-content: center;
}

.about-third{
    width: 65%;
}

.about-third .main-about-sen{
    margin-top: 1em;
}


.about-second-illust{
    width: 35%;
    margin-top: 2em;
}

.about-third-illust{
    width:45%;
}

.about-cm{
    width: 77%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.about-cm .about-cm-img{
    width: 12%;
}

.about-cm .about-cm-mov{
    width: 100%;
}

.about-cm-mov video{
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    display: block; 
}

#main-tour{
    margin-top: 18vw;
    background-color: rgba(255,248,187,0.5);
    background-image: url("../img/main-bg-top.jpg"), url("../img/main-bg-bottom.jpg");
    background-repeat: no-repeat,no-repeat;
    background-position: center top,center bottom;
    background-size: contain,contain;

}

.main-wrap{
    width: 90%;
    margin: 0 auto;
    position: relative;
    padding-bottom: 10vw;
}

.main-wrap p.tour-day{
    position: absolute;
    width: 20%;
    top:-5vw;
    left: 2.5vw;
}

.main-wrap p.tour-icon{
    position: absolute;
    width: 45%;
    top:-5vw;
    right: 1.5vw;
}

.main-wrap h2{
    width: 85%;
    margin: 0 auto;
    padding-top: 14vw;
    /*padding-top: 18vw;*/
}

.main-wrap h2 img{
    width: 100%;
}

#tour-about-sp{
    display: none;
}

.tour-about{
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.tour-about-left,.tour-about-right{
    width: 30%;
}

.tour-about-left p{
    margin-top: 4vw;
}

.tour-about-right p{
    margin-top: 4vw;
}

.tour-about-sen{
    text-align: center;
    font-family: "Sawarabi Gothic", sans-serif;
    color: #8c6856;
    line-height: 1.8;
    font-size:clamp(11px, 1.4vw, 32px);
}

.tour-about-sen p:first-child{
    margin-top: 8vw;
}

.tour-about-sen p{
    margin-top: 2em;
}


/*ここからツアーレポートリンク*/
.tour-report-link-wrap{
    width: 85%;
    margin: 8vw auto 6vw;
    background-color: #fff;
    padding: 3.5em 0 2.5em;
    position: relative;
    border-radius: 20px;
}

.tour-report-img{
    position: absolute;
    width: 30%;
}

.tour-report-img img{
    width: 100%;
}

.report-img1{
    top: -4vw;
    left: -1vw
}

.report-img2{
    top: -1vw;
    right: -1vw;
}

.tour-report-link{
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;

}

.tour-report-link p a:hover{
    opacity: 0.7;
}

.tour-report-link p{
    width: 45%;
}

.tour-form{
    width: 55%;
    margin: 0 auto;
}

.tour-form a:hover{
    opacity: 0.7;
}

.tour-detail{
    width: 60%;
    margin: 0 auto;
}

.tour-detail p:first-child{
    margin-top: 8vw;
}

.tour-detail p{
    margin-top: 3vw;
}

.special-guest{
    width: 70%;
    margin: 5vw auto 0;
}


.tour-schedule-wrap{
    width: 60%;
    margin: 0 auto;
}

.tour-schedule-wrap img{
    width: 100%;
    margin-top: 8vw;
}

.tour-schedule{
    width: 25%;
}

.tour-schedule-wrap .schedule-about img{
    margin-top: 0;
}

.schedule-about{
    display: flex;
    height: fit-content;
    margin-top: 4vw;
}

.schedule-about .schedule-left{
    width: 25%;
    height:fit-content;
}

.schedule-about .schedule-ya{
    height:fit-content;
    margin: 0 2em;
}

.schedule-about .schedule-ya img{
    display: block;
    padding-bottom: 1em;
}

.schedule-about .schedule-right{
    height:fit-content;
}

.schedule-about .map{
    position: relative;
}

.schedule-about .map a:hover{
    opacity: 0.7;
}

.schedule-about .map .schedule-map{
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    width: 18%;
}

.schedule-about .olive{
    position: relative;
}

.schedule-about .olive .olive-link{
    display: block;
    position: absolute;
    bottom: 2em;
    right: 2em;
    color: #8a6755;
    font-size: 18px;
}

.schedule-about .olive .olive-link img{
    width: 1em;
    vertical-align:middle;
}

.tour-schedule-wrap .schedule-form{
    width: 90%;
}

.tour-schedule-wrap .next-top{
    margin-top: 5vw;
}

.tour-schedule-wrap .next img{
    margin-top: 4vw;
}

.br{
    display: none;
}

.leaf-line{
    width: 70%;
    margin: 7vw auto;
}

.leaf-line img{
    width: 100%;
}

.interview-top{
    width: 70%;
    margin: 0 auto;
    background-color: #F8F3DA;
    padding: 3vw 0;
    border-radius: 30px;
    position: relative;
}

.interview-top h2{
    width: 45%;
    margin: 2vw auto 3vw;

}

.interview-top h2 img{
    width: 100%;
}

.interview-top .interview-link{
    width: 50%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}


.interview-top .interview-link .interview-link-inner{
    width: 40%;
}

.interview-top .interview-link .interview-link-inner p:first-child{
    margin-bottom: 0.8em;
}

.interview-top .interview-link .interview-link-inner .interview-about{
    font-size:clamp(12px, 2vw, 15px);
    text-align: center;
    line-height: 1.7;
    letter-spacing: 0.1em;
    color: #8C6856;
    font-weight: bold;
}

.interview-top .interview-link .interview-link-inner .interview-about span{
    font-size:clamp(15px, 2vw, 18px);
}

.interview-top .interview-link .interview-link-inner img{
    width: 100%;
}

.interview-top .interview-link .interview-link-inner .interview-btn{
    width: 25%;
    margin: 1vw auto 2vw;
}

.interview-top a:hover{
    opacity: 0.7;
}

.interview-top .photo{
    position: absolute;
    width: 17vw;
}

.interview-top .interview-photo1{
    bottom: -2vw;
    left: -5vw;
}

.interview-top .interview-photo2{
    top: -2vw;
    right: -5vw;
}



.interview-top .photo img{
    width: 100%;
}

.sub p{
    margin: 0 auto;
}


.sub p:first-child{
    width: 40%;
    margin-top: 12vw;
}

.sub p:last-child{
    width: 50%;
    margin-top: 15px;
}

.sub p a:hover{
    opacity: 0.7;
}

.sub p img{
    width: 100%;
}

.bottom-cont{
    height: 25vw;
    background-image: url("../img/footer_bg.png");
    background-position: bottom left;
    background-size: 100%;
    background-repeat: no-repeat;
}

footer{
    background-color: #F8F3DA;
    padding: 1.5vw 8vw 0.8em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.6;
}

footer div:first-child{
    width: fit-content;
    text-align: center;
}

footer div:first-child p span{
    font-size:clamp(16px, 2vw, 22px);
}

footer div:last-child p:last-child{
    text-indent: 3.5em;
}



