@charset "UTF-8";

body {
    font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    margin: 0 auto;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: black;
}

.width {
    width: 100%;
}

p {
    text-align: justify;
}

/* 【ナビゲーション】 PC*/

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 10px 0;
    background: #fff;
    position: relative;
    z-index: 1000;
    height: 100px;
    width: 100%;
    position: fixed;
    top: 0;

}

.logo {
    width: 20%;
}

.logo img {
    width: 100%;
    margin-top: 60px;
}

/* ---------- ナビゲーション ---------- */
.nav {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.nav li {
    margin: 0 5px;
    position: relative;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    white-space: nowrap;
}

.boder:hover {
    border-bottom: 2px solid #3EAD9C;
    padding-bottom: 2px;
    color: #3EAD9C;
    transition: 0.3s;
}

.square {
    color: #3EAD9C;
}

.sub-menu {
    display: none;
    position: absolute;
    background-color: #e6f5f3;
    top: 25px;
    left: 0;
    list-style: none;
    width: auto;
    height: auto;
    padding: 10px;
    margin: 0;
    border: 1px solid #ddd;
    width: 250px;
    /* 好きな幅に変更（例：200px） */
    min-width: 180px;
    /* 内容が長いときの保険 */
    box-sizing: border-box;
    text-align: left;
    /* テキストを左寄せ */
}

.sub-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    /* 改行を防止 */
}

.sub-menu li a:hover {
    background-color: #3EAD9C;
    color: #f0f8f6;
    transition: .4s;

}

.nav li:hover>.sub-menu {
    display: block;
}

/* ---------- ハンバーガーボタン ---------- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    width: 30px;
    height: 22px;
    gap: 6px;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #3EAD9C;
    border-radius: 3px;
    transition: 0.3s;
}

/* ---------- ハンバーガーON時のアニメーション ---------- */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}


/* 【ナビ】FUL */
@media (min-width:2301px) and (max-width:2560px) {

    .logo img {
        width: 100%;
        margin-top: 160px;
    }

    .nav li {
        font-size: clamp(18px, 1.8vw, 25px);
    }

        .sub-menu {
    width: 400px;
}
}

@media (min-width:1920px) and (max-width:2300px) {

    .nav li {
        font-size: clamp(18px, 1.8vw, 25px);
    }

    .logo img {
        width: 100%;
        margin-top: 140px;
    }

    .sub-menu {
    width: 350px;
}
}

/* 【ナビ】TAB/SP */
@media (min-width:769px) and (max-width:1025px) {

    header {
        height: 60px;
    }

    .logo {
        width: 30%;
    }

    .logo img {
        margin-top: 70px;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.97);
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
        border-top: 1px solid #ccc;
    }

    .nav.active {
        display: flex;
    }

    .nav li {
        margin: 10px 0;
    }

    .sub-menu {
        position: static;
        border: none;
        margin-top: 7px;
    }

    .nav li:hover>.sub-menu {
        display: none;
        /* ホバー無効 */
    }

    .nav li.open>.sub-menu {
        display: block;
    }

}

@media screen and (min-width:431px) and (max-width:768px) {

    header {
        height: 60px;
    }

    .logo {
        width: 30%;
    }

    .logo img {
        margin-top: 40px;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.97);
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
        border-top: 1px solid #ccc;
    }

    .nav.active {
        display: flex;
    }

    .nav li {
        margin: 10px 0;
    }

    .sub-menu {
        position: static;
        border: none;
        margin-top: 7px;
    }

    .nav li:hover>.sub-menu {
        display: none;
        /* ホバー無効 */
    }

    .nav li.open>.sub-menu {
        display: block;
    }

}


@media screen and (max-width: 431px) {

    header {
        height: 50px;
    }

    .logo {
        width: 30%;
    }

    .logo img {
        margin-top: 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.97);
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
        border-top: 1px solid #ccc;
    }

    .nav.active {
        display: flex;
    }

    .nav li {
        margin: 10px 0;
    }

    .sub-menu {
        position: static;
        border: none;
        margin-top: 7px;
    }

    .nav li:hover>.sub-menu {
        display: none;
        /* ホバー無効 */
    }

    .nav li.open>.sub-menu {
        display: block;
    }
}
/* 【メインビジュアル】 */
main {
    position: relative;
    text-align: center;
    z-index: 1;

}

.mv {
    margin-top: 100px;
    text-align: center;
}

/* 【メインビジュアル】 TAB*/
@media (min-width: 431px) and (max-width: 768px) {
    .mv {
        margin-top: 60px;
    }

}


/* 【メインビジュアル】SP */
@media screen and (max-width: 430px) {
    .mv {
        margin-top: 50px;
    }
}



/* 【観光タクシー紹介】PC */
.intro {
    margin: 0 auto;
    text-align: center;
    width: 55%;
}

.tittle-d {
    margin-top: 70px;
    width: 40%;
}

.intro p {
    margin-top: 40px;
    font-size: clamp(12px, 1.8vw, 18px);
    line-height: 2.5;
    font-weight: 600;
    margin-bottom: 50px;
    text-align: center;
}

.p-pc {
    display: block;
}

.p-sp {
    display: none;
}

.reflection img {
    width: 60%;
    display: block;
    margin: 0 auto;
}

.reflection {
    display: inline-block;
    position: relative;
    overflow: hidden;
    width: 100%;
    line-height: 0;
}


.reflection::after {
    content: "";
    position: absolute;
    top: -180px;
    left: 300px;
    width: 30px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    transform: rotate(45deg);
    animation: reflection 2s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
}

@-webkit-keyframes reflection {
    0% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0;
    }

    80% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0.5;
    }

    81% {
        -webkit-transform: scale(4) rotate(45deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

@keyframes reflection {
    0% {
        transform: scale(0) rotate(45deg);
        opacity: 0;
    }

    80% {
        transform: scale(0) rotate(45deg);
        opacity: 0.5;
    }

    81% {
        transform: scale(4) rotate(45deg);
        opacity: 1;
    }

    100% {
        transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

/* 【観光タクシー紹介】 FUL*/
@media screen and (min-width:1920px) and (max-width:2560px) {

    .intro {
        width: 80%;
    }

    .tittle-d {
        width: 22%;
    }

    .reflection {
        width: 100%;
        text-align: center;
    }

    .reflection img {
        width: 60%;
    }

    .intro p {
        font-size: clamp(18px, 1.8vw, 30px);
    }

}

/* 【観光タクシー紹介】 TAB*/
@media screen and (max-width: 1460px) {

    .p-pc {
        display: none;
    }

    .p-sp {
        display: block;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    .intro {
        margin: 0 auto;
        text-align: center;
        width: 80%;
    }

    .tittle-d {
        width: 30%;
    }

    .p-pc {
        display: none;
    }

    .p-sp {
        display: block;
    }

    .intro p {
        margin-top: 20px;
        margin-bottom: 50px;
    }

    .reflection img {
        width: 70%;
    }


}

@media (min-width: 431px) and (max-width: 768px) {

    .intro {
        margin: 0 auto;
        text-align: center;
        width: 80%;
    }

    .tittle-d {
        width: 40%;
    }

    .p-pc {
        display: none;
    }

    .p-sp {
        display: block;
    }

    .intro p {
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .reflection img {
        width: 80%;
    }


}

/* 【観光タクシー紹介】 SP*/
@media screen and (max-width: 430px) {
    .intro {
        width: 80%;
        margin-top: 10px;
    }

    .tittle-d {
        margin-top: 40px;
        width: 50%;
    }

    .intro p {
        margin-top: 10px;
    }

    .p-pc {
        display: none;
    }

    .p-sp {
        display: block;
    }

    .reflection img {
        width: 90%;
    }


}

/* 【使い道いろいろ】PC */

.various {
    margin-top: 70px;
    text-align: center;
}

.various img {
    width: 100%;
    margin-bottom: 70px;
}

.tittle {
    width: 65%;
    margin: 0 auto;
    text-align: center;
}

.tittle img {
    width: 30%;
}

.various p {
    font-size: clamp(14px, 1.8vw, 25px);
    line-height: 2;
    font-weight: 600;
    margin-bottom: 50px;
    text-align: center;
}

.flex {
    display: flex;
    justify-content: center;
    width: 45%;
    margin: 0 auto;
    margin-bottom: 70px;
}

.flex img {
    width: 40%;
    height: auto;
    margin: 0 15px;
}

/* テキストエリア */
.design {
    flex: 1;
    margin-left: 30px;
    text-align: left;
}

.s-tittle {
    border-bottom: 2px solid;
    padding-bottom: 5px;
    font-size: clamp(16px, 1.8vw, 25px);
    font-weight: bold;
    margin-bottom: 10px;
}

/* 【使い道いろいろ】TAB*/
@media (min-width:431px) and (max-width: 768px) {

    .various img {
        margin-bottom: 50px;
    }

    .tittle img {
        width: 35%;
    }

    .flex {
        flex-direction: column;
        /* 縦並びに */
        text-align: center;
        /* 中央寄せ（任意） */
        margin-bottom: 60px;
    }

    .flex img {
        width: 100%;
        /* 画面幅に合わせて伸縮 */
        max-width: 400px;
        /* 最大幅を制限（好みに応じて） */
    }

    .flex img {
        margin-bottom: 20px;
    }

}

/* 【使い道いろいろ】SP*/
@media screen and (max-width: 430px) {

    .flex {
        flex-direction: column;
        /* 縦並びに */
        text-align: center;
        /* 中央寄せ（任意） */
        margin-bottom: 60px;
        width: 60%;
    }

    .flex img {
        margin: 0;
        padding-bottom: 20px;
    }

    .various {
        margin-top: 50px;
        text-align: center;
    }

    .various img {
        width: 100%;
        margin-bottom: 40px;
    }

    .tittle {
        width: 65%;
        text-align: center;
    }

}


/* 【観光名所】PC */

.attractions {
    margin-top: 150px;
    margin-bottom: 80px;
    text-align: center;
}

.attractions img {
    width: 100%;
    margin-bottom: 70px;
}

.attractions .tittle {
    margin-top: 100px;
    width: 30%;
}

.tittle img {
    width: 30%;
}

.attractions .map {
    margin-top: 70px;
    width: 55%;

}

/* 【観光名所】TAB*/
@media screen and (max-width: 768px) {

    .attractions {
        margin-top: 100px;
        margin-bottom: 50px;
        text-align: center;
    }

    .attractions img {
        width: 100%;
        margin-bottom: 70px;
    }

    .attractions .tittle {
        margin-top: 60px;
        width: 40%;
    }

    .tittle img {
        width: 50%;
    }

    .attractions .map {
        margin-top: 70px;
        width: 75%;
    }
}

/* 【観光名所】SP*/
@media screen and (max-width: 430px) {

    .attractions {
        margin-top: 70px;
        margin-bottom: 30px;
        text-align: center;
    }

    .attractions img {
        width: 100%;
        margin-bottom: 30px;
    }

    .attractions .tittle {
        margin-top: 20px;
        width: 50%;
    }

    .attractions .map {
        margin-top: 0;
        width: 80%;
    }
}


/* 【電話番号画像】PC */
.tel {
    text-align: center;
    background-color: #0081C7;
    padding: 30px 0;
}

.tel img {
    width: 20%;
}

.tel img:hover {
    transform: translateY(4px);
    box-shadow: none;
    transition: .4s;
}


/* 【電話番号画像】TAB */
@media (min-width: 431px) and (max-width: 768px) {

    .tel {
        text-align: center;
        background-color: #0081C7;
        padding: 15px 0;
    }

    .tel img {
        width: 30%;
    }
}

/* 【電話番号画像】 SP*/
@media screen and (max-width: 430px) {

    .tel {
        padding: 10px 0;
    }

    .tel img {
        width: 40%;
    }
}



/* 【電話番号バナー※下部固定】*/
.fixed-banner {
    /* 背景や幅などを設定 */
    background-color: #F05924;
    text-align: center;
    z-index: 1000;
    /* 他の要素の上に表示させる */
    display: none;
    /* box-shadow: 0px -2px 2px rgba(160, 160, 160, 0.8); */
    width: 100%;
    padding: 7px 0 5px 0;
}

.fixed-banner img {
    width: 100%;
    animation: move-up-down 3s ease-in-out infinite;
}

@keyframes move-up-down {
    0% {
        transform: translateY(0);
        /* 開始時の位置 */
    }

    50% {
        transform: translateY(-3px);
        /* 上に移動する位置 */
    }

    100% {
        transform: translateY(0);
        /* 元の位置に戻る */
    }
}

/* スマホでのみ固定表示 */
@media (max-width: 768px) {

    /* 768px以下の画面幅で適用 */
    .fixed-banner {
        position: fixed;
        left: 0;
        bottom: 0;
        display: block;
    }
}

.fixed-banner img {
    animation: move-up-down 3s ease-in-out infinite;
}


/* 【フッター】PC*/
.upper-part {
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.company {
    margin-top: 30px;
    text-align: center;

}

.log {
    width: 40%;
}

.address {
    display: inline-block;
    text-align: left;
    font-size: clamp(16px, 1.8vw, 25px);
    margin-left: 0;
    margin: 0 auto;
    line-height: 1.5;
}

.f-tel{
       display: inline-block;
    text-align: left;
    font-size: clamp(16px, 1.8vw, 25px);
    margin-left: 0;
    margin: 0 auto;
    padding-top: 1rem;
}

.star {
    margin-top: 20px;
    width: 20%;
}

.bottom-part {
    text-align: center;
    color: #ffffff;
    background-color: #3EAD9C;
    padding: 30px 0;
}

/* 【フッター】TAB*/
@media (min-width: 1026px) and (max-width: 1534px) {
    .upper-part {
        display: block;
    }

    .log {
        width: 20%;
        margin-bottom: 20px;
    }

    .address {
        display: inline-block;
        text-align: left;
        font-size: clamp(20px, 1.8vw, 40px);
        margin-left: 0;
        margin: 0 auto;
    }

    .star {
        margin-top: 30px;
        width: 10%;
        margin-bottom: 40px;
    }

    iframe {
        width: 100%;
        height: auto;
    }

    .bottom-part {
        margin-bottom: 0;
    }
}


@media (min-width: 769px) and (max-width: 1025px) {

    .company {
        text-align: center;
    }

    .upper-part {
        display: block;
    }


    .log {
        width: 30%;
        margin-bottom: 40px;
    }

    .address {
        display: inline-block;
        text-align: left;
        font-size: clamp(25px, 1.8vw, 40px);
        margin-left: 0;
        margin: 0 auto;
    }

    .star {
        margin-top: 50px;
        width: 15%;
        margin-bottom: 40px;
    }

    iframe {
        width: 100%;
        height: auto;
    }

    .bottom-part {
        margin-bottom: 0;
    }


}

@media (min-width: 431px) and (max-width: 768px) {

    .upper-part {
        display: block;
    }

    .log {
        width: 25%;
    }

    .address {
        text-align: left;
        font-size: 14px;
        margin-left: 10px;
    }

    .star {
        margin-top: 20px;
        width: 12%;
        margin-bottom: 40px;
    }

    iframe {
        width: 100%;
        height: auto;
    }

    .bottom-part {
        height: 100px;
        margin-bottom: 70px;
        padding: 30px 0 50px 0;
    }



}

/* 【フッター】 SP*/
@media screen and (max-width: 430px) {

    footer {
        margin-bottom: 0;
    }

    .upper-part {
        display: block;
    }

    .company {
        margin-top: 30px;
        text-align: center;

    }

    .log {
        width: 35%;
    }

    .address {
        text-align: left;
        font-size: 12px;
        line-height: 1.5;
        margin-left: 20px;
        margin-top: 20px;
    }

    .star {
        margin-top: 20px;
        margin-bottom: 20px;
        width: 15%;
    }

    iframe {
        width: 98%;
        height: 100%;
        margin-bottom: 10px;
    }

    .bottom-part {
        padding: 15px 0 25px 0;
        margin-bottom: 57px;
    }

    .bottom-part span {
        font-size: 10px;
    }
}

@media (max-width: 320px) {
    footer {
        margin-bottom: 0;
    }

    .bottom-part {
        margin-bottom: 55px;
    }
}