@charset "utf-8";

/* google font */
@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@400;500&family=M+PLUS+Rounded+1c:wght@400;700&display=swap');


/*====================
 トップページ
====================*/

/*===== welcomeセクション =====*/
#welcome {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: center;
    padding: 50px 0;
    margin-top: 50px;
}

.welcom-text p {
    font-size: 1.125rem;
}

#welcome img {
    width: 100px;
}

/*=== タイピング風テキスト ===*/
.typing {
    font-size: 16px;
    letter-spacing: 0.2em;
    word-break: break-all;
}

/*jsで生成されるspanタグ*/
.typing span {
    display: none;
}

/*|カーソルを表示*/
.typing:after {
    content: "|";
    animation: typingCursor .8s ease infinite;
}

@keyframes typingCursor {
    from {
        opacity: 0;
    }

    to {
        opacity: 1
    }
}

.typeWriter>span {
    border-right: 2px solid;
    animation: caret 1s steps(1) infinite;
}

@keyframes caret {
    50% {
        border-color: transparent;
    }
}

/*===== recommendセクション =====*/
#recommend {
    background-color: #E0D6E0;
    padding: 50px 0 100px;
}

#recommend-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: start;
}

.recommend-item {
    position: relative;
}

.recommend-item img {
    width: 200px;
    height: 220px;
    object-fit: cover;
}

.recommend-item p {
    width: 200px;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px;
    position: absolute;
    bottom: -0px;
}

/* プラン紹介へボタン */
.recommend-btn {
    margin-top: 50px;
    width: 200px;
}

.recommend-btn a {
    background-color: #fff;
    border-radius: 10px;
    padding: 10px 30px;
    color: #663366;

}

.recommend-btn a:hover {
    opacity: 0.8;

}

/*===== pointセクション =====*/
#point {
    margin-top: 100px;
}

#point-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.point-list {
    border: solid 2px #663366;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    /* display: flex; */
    /* flex-direction: column; */
    /* align-items: center; */
}

/* ポイントのタイトル */
.point-list h3 {
    color: #663366;
    font-size: 1.5rem;
    font-family: "M PLUS Rounded 1c", sans-serif;
}

/* ポイントの説明 */
.point-list ul {
    width: fit-content;
    max-width: 80%;
    margin: 20px auto 0;
}

.point-list li {
    text-align: left;
    margin-top: 10px;
}

/* 詳しく見るボタン */
.point-btn {
    margin: 50px auto;
    text-align: center;
    width: 100%;
    font-size: 1.25rem;
}

.point-btn a {
    background-color: #66336655;
    border-radius: 10px;
    padding: 10px 30px;
    color: #663366;
}

.point-btn a:hover {
    opacity: 0.8;
}


/*===== busセクション =====*/
#bus {
    margin-top: 200px;
    padding-bottom: 50px;
    background-color: #E0D6E0;
    background-image: url(../img/bus-sec-bg.png);
    background-repeat: no-repeat;
    background-position: top center;
    padding-bottom: 100px;
}

#bus-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 160px;
}

/* 極楽号の紹介 */
#gokurakubus {
    width: 720px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 30px;
}

#gokurakubus img {
    width: 350px;
    height: 210px;
}

#gokurakubus div {
    width: 300px;
}

#gokurakubus p {
    font-size: 0.75rem;
    margin-top: 20px;
}

/* 集合場所 */
#map {
    width: 380px;
    border-left: solid 2px #fff;
    padding-left: 30px;
}

#map div {
    margin-bottom: 20px;
}

#map iframe {
    width: 100%;
}

.bus-stop {
    font-size: 1.125rem;
    font-weight: bold;
}

/*===== レスポンシブ =====*/
@media screen and (max-width:1100px) {

    #welcome,
    #point {
        width: 95%;
    }

    /*===== welcomeセクション =====*/
    #welcome {
        flex-direction: column;
    }

    /*===== recommendセクション =====*/
    #recommend-inner {
        gap: 20px;
    }

        /* プラン紹介へボタン */
        .recommend-btn {
            margin-top: 90px;
        }

    /*===== pointセクション =====*/
    #point-inner {
        grid-template-columns: 1fr;
    }

    /*===== busセクション =====*/
    #bus {
        /* width: ; */
        background-color: #fff;
        background-image: none;
        padding-bottom: 0;
    }

    #bus-content {
        flex-direction: column;
        width: 100%;
        padding-top: 0;
    }

    /* 極楽号の紹介 */
    #gokurakubus {
        width: 100%;
        flex-direction: column;
        background-color: #E0D6E0;
        background-image: url(../img/bus-sec-bg_bus.png);
        background-position: top center;
        background-size: contain;
        padding: 160px 0 50px;
    }

    #gokurakubus div {
        margin: 0 auto;
        width: 95%;
    }

    #gokurakubus ul {
        width: fit-content;
        margin: 0 auto 30px;
    }

    /* 集合場所 */
    #map {
        width: 100%;
        border-left: none;
        background-color: #E0D6E0;
        background-image: url(../img/bus-sec-bg_map.png);
        background-size: contain;
        padding-left: 0;
        padding-top: 160px;
        padding-bottom: 100px;
        margin-top: 100px;
    }

    #map div {
        width: fit-content;
        text-align: left;
        margin: 0 auto 50px;
    }

    #map iframe {
        width: 95%;
        max-width: 400px;
    }

}

/*===== レスポンシブ =====*/
@media screen and (max-width:767px) {

    /*===== recommendセクション =====*/
    #recommend-inner {
        /* grid-template-columns: 1fr 1fr; */
        /* flex-wrap: wrap; */
        gap: 10px;
    }

    .recommend-item {
        width: 45%;
    }

    .recommend-item img {
        width: 100%;
    }

    .recommend-item p {
        width: 100%;
        height: 60px;
        font-size: 0.875rem;
    }

    /* プラン紹介へボタン */
    .recommend-btn {
        width: 45%;
    }

}


/*====================
 ご案内ページ
====================*/

/* unique 特徴セクション */
#unique-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

#unique-left .q,
#unique-left .a {
    display: flex;
    align-items: end;
    opacity: 0;
    /*最初は透明に*/
}

/* Q＆A */
#unique-left .q img {
    width: 100px;
    z-index: 3;
}

#unique-left .q-text {
    background-color: #ededed;
    border-radius: 20px 20px;
    padding: 10px 10px 10px 70px;
    margin-left: -40px;
}

#unique-left .a {
    margin-left: auto;
    width: fit-content;
    margin-bottom: 50px;
}

#unique-left .a img {
    width: 130px;
}

#unique-left .a-text {
    border: solid 2px #ccc;
    border-radius: 20px;
    padding: 10px 70px 10px 10px;
    margin-right: -70px;
}

/* 狭い日本… */
#unique-right {
    writing-mode: vertical-rl;
}

#unique-right p {
    margin-left: 1rem;
    font-size: 1.5rem;
}


/* flow ご旅行の流れセクション */
#flow {
    background-color: #DBCFDB;
    background-image: url(../img/info-flow_bg.png);
    background-repeat: no-repeat;
    background-position: top center;
    margin-top: 100px;
    padding: 87px 0 100px;
}

#flow-in {
    background-image: url(../img/info-flow-in_bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    height: 1000px;
}

.number {
    background-color: #663366;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    color: #fff;
    font-size: 3rem;
    text-align: center;
    line-height: 70px;
    margin-left: 20px;
    margin-bottom: -38px;
    position: relative;
    /*これ入れると手前に表示される*/
}

.flow-card {
    background-color: #fff;
    border-radius: 30px;
    padding: 1px 20px 10px;
    width: fit-content;
}

.flow-card .flow-title {
    color: #663366;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-size: 2rem;
    font-weight: bold;
    margin-left: 100px;
}

.flow-card p {
    margin-bottom: 7px;
}

.flow-card span {
    font-size: 0.875rem;
}

.flow-card ul {
    margin-left: 20px;
    margin-bottom: 7px;
}

/* 流れのカードの配置 */
.flow-1 {
    position: absolute;
    top: 100px;
    left: 20px;
}

.flow-2 {
    position: absolute;
    top: 0;
    right: 0;
}

.flow-3 {
    position: absolute;
    top: 280px;
    right: 40px;
    width: 450px;
}

.flow-4 {
    position: absolute;
    bottom: 220px;
    right: 10px;
    width: 420px;
}

.flow-5 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 600px;
}

.flow-6 {
    position: absolute;
    bottom: 380px;
    left: 60px;
    width: 460px;
}

/* バス乗り場 セクション */
#info-bus {
    background-image: url(../img/info-bus_bg.png);
    background-repeat: no-repeat;
    background-position: top center;
    padding: 160px 0 100px;
}

#info-bus-in {
    display: flex;
    justify-content: space-around;
}

#info-bus-in iframe {
    width: 460px;
    height: 240px;
}

#info-GB {
    width: 90%;
    padding-top: 100px;
    text-align: center;
    margin: 0 auto;
}

#info-GB img {
    width: 400px;
}

/*===== レスポンシブ =====*/
@media screen and (max-width:1100px) {

    .wrapper {
        width: 95%;
    }

    /* unique 特徴セクション */
    #unique-content {
        flex-direction: column;
    }

    /* Q＆A */
    #unique-left .a {
        margin-top: 30px;
    }

    /* flow ご旅行の流れセクション */
    #flow {
        background-position: -360px top;
    }

    #flow-in {
        background-image: none;
        height: 100%;
        padding-top: 30px;
    }

    .flow-card {
        margin-bottom: 30px;
        width: 100%;
    }

    /* 流れカードのpositionクリア */
    .flow-1,
    .flow-2,
    .flow-3,
    .flow-4,
    .flow-5,
    .flow-6 {
        position: static;
        width: 100%;
    }

    /* バス乗り場 セクション */
    #info-bus-in {
        flex-direction: column;
        align-items: center;
    }

    #info-bus-in iframe {
        width: 100%;
    }

    #info-bus-in div {
        margin-bottom: 30px;
    }

    #info-GB {
        margin-bottom: 100px;
    }
}



/*====================
 プラン紹介ページ
====================*/

/* 目次部分 */
#mokuji {
    display: flex;
    justify-content: center;
    gap: 10%;
}

#mokuji a {
    color: #fff;
}

#mokuji a:hover{
    opacity: 0.6;
}

#mokuji div {
    color: #fff;
    font-size: 1.5rem;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    text-align: center;
    position: relative;
}

#mokuji span {
    width: 110px;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%);
}

.mokuji-day {
    background-color: #9e3f77;
}

.mokuji-night1 {
    background-color: #3f779e;
}

.mokuji-night2 {
    background-color: #779e3f;
}

/* プランセクション */
.plan-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 100px 0 100px;
}

/* 各カード */
.card {
    background-color: #fff;
    border: solid 2px #e6e6e6;
    display: flex;
    flex-direction: column;
    padding: 25px;
    width: 100%;
    position: relative;
    cursor: pointer;
    box-shadow: #ccc 2px 2px 2px;
}

.card:hover {
    transform: scale(1.03);
    transition: 0.7s;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card .price {
    text-align: right;
    font-size: 1.125rem;
    margin-bottom: 20px;
}

.card .price::after {
    content: "(税込み)";
    font-size: 0.75rem;
    padding-left: 5px;
}

/* カードのカテゴリ */
.type {
    width: 70px;
    height: 60px;
    line-height: 40px;
    color: #fff;
    padding: 0px 0px 0px 5px;
    border-radius: 0 0 100% 0;
    position: absolute;
    top: 0;
    left: 0;
}

.type span {
    display: block;
    transform: rotate(-35deg);
}

#day .type {
    background-color: #9e3f77;
}

#night1 .type {
    background-color: #3f779e;
}

#night2 .type {
    background-color: #779e3f;
}

/* 日帰りセクション */
#day {
    background-color: #e6e6e6;
    background-image: url(../img/plan-day_bg.png);
    background-repeat: no-repeat;
    background-position: top center;
}

#day .section-title {
    margin: 0 auto;
    padding-top: 70px;
    transform: rotate(3deg);
    color: #000;
    width: fit-content;
}

/* １泊２日セクション */
#night1 {
    background-image: url(../img/plan-night1_bg.png);
    background-repeat: no-repeat;
    background-position: top center;
}

#night1 .section-title {
    margin: 0 auto;
    padding-top: 70px;
    transform: rotate(3deg);
    color: #000;
    width: fit-content;
}

/* ２泊３日セクション */
#night2 {
    background-color: #e6e6e6;
    background-image: url(../img/plan-night2_bg.png);
    background-repeat: no-repeat;
    background-position: top center;
    padding-bottom: 100px;
}

#night2 .section-title {
    padding-top: 50px;
    margin: 0 auto;
    transform: rotate(-2deg);
    color: #000;
    width: fit-content;
}

/*===== モーダルウィンドウ =====*/

body.modal-open {
    overflow: hidden;
}

.modal {
    display: none;
    /*初期状態は非表示*/
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 10;
}

.modal-content {
    background: white;
    padding: 50px 50px 100px 50px;
    border-radius: 10px;
    max-width: 1000px;
    width: 90%;
    /* height: fit-content; */
    height: 100%;
    margin: 10px auto;
    text-align: center;
    overflow-y: scroll;
}

.close {
    cursor: pointer;
    font-size: 40px;
    position: absolute;
    top: 10px;
    right: 50px;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: 0.3s;
}

.close:hover {
    background-color: #fff;
    font-size: 40px;
    color: #484848;
    opacity: 0.2;
}

#zoom-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    position: relative;
}

/* ツアータイプ */
#type {
    background-color: #9e3f77;
    /*日帰り*/
    /* background-color: #3f779e; 1泊２日*/
    /* background-color: #779e3f; ２泊３日*/
    color: #fff;
    font-size: 1.25rem;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    position: absolute;
    top: -30px;
    left: -30px;
    z-index: 2;
}

/* ギャラリー */

#main-photo {
    height: 400px;
}

#photo {
    position: relative;
}

#photo img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

#thumb {
    position: absolute;
    top: 270px;
}

#thumb ul {
    list-style: none;
}

#thumb li {
    height: 60px;
    float: left;
    margin: 10px 20px 0 0;
}

#thumb li img {
    object-fit: cover;
}

#thumb li a {
    display: block;
}

#thumb li a:hover {
    opacity: 0.8;
}

#thumb li a:active {
    opacity: 0.8;
}

/* タイトル文字等 */
#zoom-title {
    text-align: left;
}

.tour-title {
    font-size: 1.25rem;
}

.tour-price {
    font-size: 2rem;
    margin-top: 2rem;
}

.tour-price::after {
    content: "（税込み）";
    font-size: 1rem;
}

.tour-note {
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* おすすめポイント */
#osusume {
    background-color: #E0D6E0;
    border-radius: 30px;
    padding: 30px;
    height: fit-content;
}

#osusume-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #663366;
    font-family: "Kiwi Maru", serif;
}

#osusume-title::before {
    content: url(../img/osusume-left.png);
}

#osusume-title::after {
    content: url(../img/osusume-right.png);
}

#osusume ul {
    list-style: none;
    margin-top: 20px;
}

#osusume li {
    text-align: left;
    border-bottom: dotted 3px #fff;
    padding: 10px 0;
}

/* スケジュール */
.sche-title {
    font-size: 1.25rem;
    border-bottom: solid 3px #663366;
    background-image: url(../img/icon-bus.png);
    text-align: left;
    padding-left: 60px;
    margin-bottom: 20px;
}

#schedule p {
    margin-bottom: 0;
}

#schedule dl {
    display: flex;
    flex-wrap: wrap;
    line-height: 2;
}

#schedule dt {
    width: 20%;
    text-align: right;
    padding-right: 20px;
    position: relative;
}

#schedule dt::before {
    content: "▼";
    color: #ededed;
    font-size: 0.75rem;
    position: absolute;
    top: 20px;
    right: 40px;
}

#schedule dt:last-of-type::before {
    content: "";
}

#schedule dd {
    width: 80%;
    text-align: left;
}

#schedule dd img {
    height: 1rem;
    vertical-align: middle;
    margin-right: 5px;
}

/*===== レスポンシブ =====*/
@media screen and (max-width:1100px) {

    /* モーダルウィンドウ */
    .modal{
        max-height: 100%;
        overflow-y: auto;
    }
    .modal-content {
        width: 80%;
        margin-top: 50px;
    }

    .close {
        top: 0px;
        right: 10px;
    }

    #zoom-wrapper {
        grid-template-columns: 1fr;
    }

    /* ギャラリー */
    #main-photo {
        height: 400px;
    }

}

@media screen and (max-width:767px) {

    /* モーダルウィンドウ */
    .modal-content {
        width: 90%;
        margin-top: 70px;
        padding: 20px;
    }

    .close {
        top: 0px;
        left: 0px;
    }

    /* ギャラリー */
    #main-photo {
        height: 260px;
    }

    #photo img {
        height: 200px;
    }

    #thumb {
        top: 210px;
    }

    #thumb li {
        margin: 10px 10px 0 0;
    }

    /* ツアータイプ */
    #type {
        width: 70px;
        height: 70px;
        line-height: 70px;
        top: -10px;
        left: -10px;
    }

    /* タイトル文字等 */
    .tour-price {
        margin-top: 1rem;
    }

    /* おすすめポイント */
    #osusume-title {
        font-size: 1.25rem;
    }

    /* スケジュール */
    #schedule dt {
        width: 30%;
    }

    #schedule dd {
        width: 70%;

    }

}



/*===== レスポンシブ =====*/
@media screen and (max-width:1100px) {

    /* プランセクション */
    .plan-inner {
        grid-template-columns: 1fr 1fr;
    }

}

@media screen and (max-width:767px) {

    /* 目次部分 */
    #mokuji {
        gap: 20px;

    }

    #mokuji div {
        font-size: 1rem;
        width: 100px;
        height: 100px;
    }

    /* プランセクション */
    .plan-inner {
        grid-template-columns: 1fr;
        padding-top: 50px;
    }



}



/*====================
 お申込み・お問合せページ
====================*/
#contact-tel h3,
#contact-mail h3 {
    background-color: #3f779e;
    color: #fff;
    padding: 7px 20px;
    border-radius: 20px;
    margin-bottom: 50px;
    text-align: center;
}

/* 電話で問い合わせ セクション */
#contact-tel {
    text-align: center;
    padding-bottom: 100px;
}

#contact-tel span {
    font-size: 1.5rem;
    padding-left: 20px;
}

/* メールで問い合わせ セクション */
#contact-mail {
    padding-bottom: 100px;
}

#contact-mail form {
    width: fit-content;
    margin: 0 auto 100px;
    text-align: center;
}

#contact-mail dl {
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
    max-width: 800px;
    text-align: left;
}

#contact-mail dt {
    width: 25%;
    margin-bottom: 1rem;
}

#contact-mail dd {
    width: 70%;
    margin-bottom: 1rem;
}

#contact-mail .flex {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

/* formの入力枠の設定 */
#contact-mail input,
#contact-mail select,
#contact-mail textarea {
    border: solid 1px #ccc;
    border-radius: 5px;
    padding: 3px 10px;
    appearance: menulist;
    width: fit-content;
}

#contact-mail input[name=address] {
    width: 100%;
}

#contact-mail input[type=radio] {
    margin-right: 10px;
}

#contact-mail input[type=submit] {
    background-color: #DBCFDB;
    padding: 10px 20px;
    margin: 50px 30px;
}

#contact-mail input[type=reset] {
    background-color: #ededed;
    padding: 10px 20px;
}

/*===== レスポンシブ =====*/
@media screen and (max-width:1100px) {

    #contact-mail form {
        width: 80%;
    }

    #contact-mail dl {
        flex-direction: column;
        max-width: 90%;
    }

    #contact-mail dt {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    #contact-mail dd {
        width: 100%;
        margin-bottom: 2rem;
    }

    #contact-mail .flex {
        flex-direction: column;

    }

}