@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}


@font-face {
    font-family: 'YujiSyuku-Regular';
    src: url(../font/Yuji_Syuku/YujiSyuku-Regular.ttf);
}

html {
    scroll-behavior: smooth;
}

/*メインビジュアル*/

.main-visual {
	position: relative;
	width: 100%;
	height: 64vw;
    overflow: hidden;
}

.main-image {
	position: absolute;
	top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
	animation: bgAnime 30s linear infinite;
}

.main-image img {
    width: 100%;
}

.main-image:nth-of-type(1) {
	animation-delay: 0s;
}
.main-image:nth-of-type(2) {
	animation-delay: 6s;
}
.main-image:nth-of-type(3) {
	animation-delay: 12s;
}
.main-image:nth-of-type(4) {
	animation-delay: 18s;
}

.main-image:nth-of-type(5) {
	animation-delay: 24s;
}

@keyframes bgAnime {
    0% { opacity: 0;
         transform: scale(1.3); }

	8% { opacity: 1;
         transform: scale(1.3); }

   20% { opacity: 1; }

   35% { opacity: 0;
         transform: scale(1); }

  100% { opacity: 0; }
}

.main-image-logo {
    position: absolute;
    top: 8%;
    left: 3%;
    width: 15%;
    opacity: 0.9;
}

.main-image-logo img {
    width: 100%;
}

.main-phrase1 {
    position: absolute;
    left: 3%;
    bottom: 28vw;
    font-size: 2.6vw;
    color: #fff;
    text-shadow: 0 0 10px #000;
    font-family: 'YujiSyuku-Regular';
}

.main-phrase2 {
    position: absolute;
    left: 3%;
    bottom: 24vw;
    font-size: 2.6vw;
    color: #fff;
    text-shadow: 0 0 10px #000;
    font-family: 'YujiSyuku-Regular';
}

.main-phrase1 span {
    opacity: 0;
    animation: phrase 0.5s linear forwards;
}

.main-phrase1 span:nth-of-type(1) {
    animation-delay: 2s;
}

.main-phrase1 span:nth-of-type(2) {
    animation-delay: 2.2s;
}

.main-phrase1 span:nth-of-type(3) {
    animation-delay: 2.4s;
}

.main-phrase1 span:nth-of-type(4) {
    animation-delay: 2.6s;
}

.main-phrase1 span:nth-of-type(5) {
    animation-delay: 2.8s;
}

.main-phrase1 span:nth-of-type(6) {
    animation-delay: 3s;
}

.main-phrase1 span:nth-of-type(7) {
    animation-delay: 3.2s;
}

.main-phrase1 span:nth-of-type(8) {
    animation-delay: 3.4s;
}

.main-phrase1 span:nth-of-type(9) {
    animation-delay: 3.6s;
}

.main-phrase2 span {
    opacity: 0;
    animation: phrase 0.5s linear forwards;
}

.main-phrase2 span:nth-of-type(1) {
    animation-delay: 5s;
}

.main-phrase2 span:nth-of-type(2) {
    animation-delay: 5.2s;
}

.main-phrase2 span:nth-of-type(3) {
    animation-delay: 5.4s;
}

.main-phrase2 span:nth-of-type(4) {
    animation-delay: 5.6s;
}

.main-phrase2 span:nth-of-type(5) {
    animation-delay: 5.8s;
}

.main-phrase2 span:nth-of-type(6) {
    animation-delay: 6s;
}

.main-phrase2 span:nth-of-type(7) {
    animation-delay: 6.2s;
}

.main-phrase2 span:nth-of-type(8) {
    animation-delay: 6.4s;
}

.main-phrase2 span:nth-of-type(9) {
    animation-delay: 6.6s;
}

.main-phrase2 span:nth-of-type(10) {
    animation-delay: 6.8s;
}

@keyframes phrase {
    100% {opacity: 0.8;}
}

.arrow-paret {
    position: absolute;
    bottom: 12vw;
    right: 5%;
    display: flex;
    width: 3vw;
    height: 10vw;
    margin: 5% auto;
}

.arrow-left {
    width: 1vw;
    height: 0vw;
    transform: skewY(45deg);
    border-right: 0.15vw solid #fff;
    border-bottom: 0.3vw solid #fff;
    animation: 2.4s fromTop infinite;
}

@keyframes fromTop {
    100% {
        height: 8vw;
    }
}

.arrow-right {
    width: 1vw;
    height: 0vw;
    transform: skewY(-45deg);
    border-left: 0.15vw solid #fff;
    border-bottom: 0.3vw solid #fff;
    animation: 2.4s fromTop infinite;
}

.text {
    width: 1vw;
    margin-top: 2vw;
    writing-mode: vertical-rl;
    font-size: 1.2vw;
    color: #fff;
    animation: 2.4s blink infinite;
}

@keyframes blink {
    0% { opacity: 0; }

    100% { opacity: 1;}
}

/*グローバルメニュー*/

header {
    position: sticky;
    top: 0;
    display: flex;
    width: 100%;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
    z-index: 999;
}

header h1 {
    position: relative;
    width: 18%;
    height: 3.5vw;
    margin-left: 4%;
    padding-top: 0.6%;
}

header h1 a img {
    position: absolute;
    width: 100%;
}

header nav {
    width: 46%;
    margin-left: 28%;
    margin-right: 4%;
}

header nav ul {
    display: flex;
}

header nav ul li {
    width: 25%;
    list-style-type: none;
    border-bottom: 2px solid transparent;
}

header nav ul li:hover {
    border-bottom: 2px solid blue;
}

header nav ul li a {
    display: block;
    padding-top: 0.3vw;
    line-height: 3;
    font-size: 1.4vw;
    text-align: center;
    text-decoration: none;
    color: #222;
    transition: 0.3s;
    font-family: 'YujiSyuku-Regular';
}

header nav ul li:hover a {
    color: blue;
    transition: 0.3s;
    background-color: rgba(223, 247, 249,0.8);
}

.magnifying-glass {
    display: none;
}

/*おすすめツアー*/

.recommend {
    width: 100%;
    margin: 0% auto;
    padding-top: 5%;
    padding-bottom: 5%;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/cont_bg01.png);
}

.recommend-flex {
    display: flex;
    justify-content: center;
}

.recommend-flex h2 {
    margin-left: 2%;
    margin-right: 2%;
    margin-bottom: 5%;
    font-size: 2.2vw;
    color: #222;
    font-family: 'YujiSyuku-Regular';
}

.recommend-flex img {
    width: 10%;
    height: 4vw;
}

.swiper {
    width: 80%;
}

/*セクションフレックス*/

.section-flex {
    display: flex;
    padding-top: 5%;
    padding-bottom: 5%;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/cont_bg01.png);
}


/*地図で選ぶ*/

.map {
    position: relative;
    width: 56%;
    margin-left: 4%;
    border-radius: 1em;
    overflow: hidden;
    background-color: rgb(224, 248, 250);
}

.map h2 {
    position: absolute;
    top: 0.6vw;
    left: 11%;
    font-size: 2.2vw;
    text-align: center;
    color: rgb(0, 102, 159);
    font-family: 'YujiSyuku-Regular';
}

.japan-map img {
    width: 100%;
}

.map a {
    display: block;
    width: 11%;
    padding: 0 1%;
    text-decoration: none;
    text-align: center;
    border-right: 1px solid blue;
    border-bottom: 1px solid blue;
    border-radius: 0.3em;
    color: #fff;
    background-color: rgb(0, 132, 205);
    transition: 0.3s;
}

.map a:hover {
    border: 0.5px solid rgb(0, 132, 205);
    color: blue;
    background-color: rgb(215, 249, 252);
    transition: 0.3s;    
}

.map a:nth-of-type(1) {
    position: absolute;
    top: 1vw;
    right: 13.4%;
}

.map a:nth-of-type(2) {
    position: absolute;
    top: 8vw;
    right: 13.4%;
}

.map a:nth-of-type(3) {
    position: absolute;
    top: 12.5vw;
    right: 13.4%;
}

.map a:nth-of-type(4) {
    position: absolute;
    top: 16.3vw;
    right: 13.4%;
}

.map a:nth-of-type(5) {
    position: absolute;
    top: 20.1vw;
    right: 13.4%;
}

.map a:nth-of-type(6) {
    position: absolute;
    top: 23.9vw;
    right: 13.4%;
}

.map a:nth-of-type(7) {
    position: absolute;
    top: 13.0vw;
    left: 38.4%;
}

.map a:nth-of-type(8) {
    position: absolute;
    top: 23.4vw;
    left: 40.8%;
}

.map a:nth-of-type(9) {
    position: absolute;
    top: 13.0vw;
    left: 24.6%;
}

.map a:nth-of-type(10) {
    position: absolute;
    top: 13.0vw;
    left: 10.8%;
}

.map a:nth-of-type(11) {
    position: absolute;
    top: 17vw;
    left: 10.8%;
}

.map a:nth-of-type(12) {
    position: absolute;
    top: 21.7vw;
    left: 10.8%;
}

.map a:nth-of-type(13) {
    position: absolute;
    top: 24.9vw;
    left: 10.8%;
}

.map a:nth-of-type(14) {
    position: absolute;
    top: 28.1vw;
    left: 10.8%;
}

.map a:nth-of-type(15) {
    position: absolute;
    top: 7.8vw;
    left: 10.8%;
    width: 20%;
}

.map a p:nth-of-type(1) {
    font-size: 0.8vw; 
}

.map a p:nth-of-type(2) {
    font-size: 1vw;
    font-weight: 800;
}

/*条件で検索する*/

.terms {
    width: 34%;
    margin-left: 2%;
    padding-top: 0.8%;
    border-radius: 1em;
    border: 1px solid #222;
    background-color: #fff;
}

.terms h2 {
    margin-bottom: 2%;
    font-size: 2.2vw;
    text-align: center;
    color: #222;
    font-family: 'YujiSyuku-Regular';
}

.terms-dedestination {
    margin-top: 6%;
    margin-left: 15.5%;
}

.terms-dedestination label {
    font-size: 1.4vw;
    color: #222;
    font-family: 'YujiSyuku-Regular';
}

.terms-dedestination select {
    font-size: 1.1vw;
    border-radius: 0.3em;
    color: #222;
}

.terms-dedestination select option {
    font-size: 1.1vw;
    color: #222;
}

.terms-departure {
    margin-top: 2.5%;
    margin-left: 15.5%;
}

.terms-departure label {
    font-size: 1.4vw;
    color: #222;
    font-family: 'YujiSyuku-Regular';
}

.terms-departure select {
    font-size: 1.1vw;
    border-radius: 0.3em;
    color: #222;
}

.terms-departure select option {
    font-size: 1.1vw;
    color: #222;
}

.terms-transport {
    margin-top: 2.5%;
    margin-left: 15.5%;
}

.terms-transport label {
    font-size: 1.4vw;
    color: #222;
    font-family: 'YujiSyuku-Regular';
}

.terms-transport select {
    font-size: 1.1vw;
    border-radius: 0.3em;
    color: #222;
}

.terms-transport select option {
    font-size: 1.1vw;
    color: #222;
}

.terms-days {
    margin-top: 2.5%;
    margin-left: 15.5%;
}

.terms-days label {
    font-size: 1.4vw;
    color: #222;
    font-family: 'YujiSyuku-Regular';
}

.terms-days select {
    font-size: 1.1vw;
    border-radius: 0.3em;
    color: #222;
}

.terms-days select option {
    font-size: 1.1vw;
    color: #222;
}

.terms-guide {
    margin-top: 2.5%;
    margin-left: 15.5%;
    font-size: 1.4vw;
    color: #222;
    font-family: 'YujiSyuku-Regular';
}

.terms-guide label {
    font-size: 1.4vw;
    color: #222;
    font-family: 'YujiSyuku-Regular';
}

.terms-guide input {
   width: 7%;
   height: 1vw;
}

input[type="submit"] {
    display: block;
    width: 20%;
    margin-top: 7%;
    margin-left: 37.5%;
    padding: 1% 3%;
    font-size: 1.4vw;
    color: #fff;
    background-color: rgb(0, 132, 205);
    border: 1px solid transparent;
    border-radius: 0.5em;
    transition: 0.3s;
}

input[type="submit"]:hover {
    border: 0.5px solid rgb(0, 132, 205);
    color: blue;
    background-color: rgb(215, 249, 252);
    transition: 0.3s;
}

/*おしらせ*/

.news {
    width: 100%;
    margin: 0% auto;
    padding-top: 5%;
    padding-bottom: 5%;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/cont_bg01.png);
}

.news-flex {
    display: flex;
    justify-content: center;
}

.news-flex h2 {
    margin-left: 2%;
    margin-right: 2%;
    margin-bottom: 5%;
    font-size: 2.2vw;
    color: #222;
    font-family: 'YujiSyuku-Regular';
}

.news-flex img {
    width: 10%;
    height: 4vw;
}

.tab_box {
    width: 80%;
    margin: 0 auto;
 }
 
.btn_area {
    display: flex;
    background-color: #fff;
}

.btn_area p {
    font-size: 1.4vw;
    color: #222;
}

.tab_btn {
    width: 23%;
    text-align: center;
    line-height: 2.2;
    border-top: 1px solid #bbb;
    border-left: 1px solid #bbb;
    border-right: 1px solid #bbb;
    border-bottom: 1px solid #222;
    border-top-left-radius: 0.5em;
    border-top-right-radius: 0.5em;
    background-color: #ddd;
    font-family: 'YujiSyuku-Regular';
}

.tab_btn.active {
    border-top: 1px solid #222;
    border-left: 1px solid #222;
    border-right: 1px solid #222;
    border-bottom: 1px solid transparent;
    background-color: transparent;
    font-family: 'YujiSyuku-Regular';
}

.tab-brank {
    width: 3%;
    border-bottom: 1px solid #222;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/cont_bg01.png);
}

.tab_panel {
    display:none;
    padding-top: 2%;
    background-color: #fff;
}

.tab_panel p {
    margin-left: 5%;
    font-size: 1.1vw;
    line-height: 2;
}

.tab_panel p time {
    display: inline-block;
    width: 12%;
    color: #222;
}

.tab_panel p a {
    text-decoration: none;
    color: #222;
    transition: 0.2s;
}

.tab_panel p a:hover {
    color: blue;
    text-decoration: underline;
    transition: 0.2s;
}

.tab_panel.active {
    display:block;
}

.panel_area {
    width: 100%;
    height: 20vw;
    overflow-x: hidden;
    overflow-y: scroll;
    border-left: 1px solid #222;
    border-right: 1px solid #222;
    border-bottom: 1px solid #222;
}

/*エリアから島を探す*/

.area {
    margin-top: 10%;
    margin-bottom: 15%;
}

.area-flex {
    display: flex;
    justify-content: center;
}

.area-flex h2 {
    margin-left: 2%;
    margin-right: 2%;
    margin-bottom: 5%;
    font-size: 2.2vw;
    color: #222;
    font-family: 'YujiSyuku-Regular';
}

.area-flex img {
    width: 10%;
    height: 4vw;
}

.area-flex2 {
    display: flex;
    width: 80%;
    margin: 0 auto;
}

.area-bottom {
    width: 15%;
    height: 5vw;
    margin-left: 2%;
    margin-right: 2%;
    border-radius: 50%;
    border: 1px solid blue;
    background-color: rgb(211, 254, 239);
    z-index: 900;
}

.area-bottom a {
    display: block;
    text-align: center;
    text-decoration: none;
    line-height: 3.5;
    font-size: 1.4vw;
    color: blue;
    font-family: 'YujiSyuku-Regular';
    transition: 0.3s;
}

.area-bottom:hover {
    border: 1px solid transparent;
    background-color: rgb(0, 132, 205);   
    transition: 0.3s;
}

.area-bottom:hover a {
    color: #fff;
    transition: 0.3s;
}


.bottom2 a {
    padding-top: 1.1vw;
    line-height: 1.2;
    
}

/*トップに戻る*/

.top {
    position: sticky;
    top: 80vh;
    width: 3%;
    margin-left: auto;
    margin-right: 2%;
    overflow: hidden;
    border-radius: 0.5em;
    z-index: 990;
}

.top a {
    display: block;
    padding-top: 0.5%;
    text-align: center;
    line-height: 1.6;
    font-size: 2vw;
    color: #fff;
    background-color: rgb(0, 132, 205);
}


/*エリア別コンテンツ*/

.area-local {
    width: 100%;
}

/*エリア別コンテンツ-背景*/

.wave-top {
    display: flex;
    position: relative;
    top: 1.1vw;
    margin-top: 5%;
    width: 100%;
}

.wave-top-box {
    width: 50%;
}

.wave-top img {
    width: 100%;
}

#hokkaido {
    background-color: rgb(252, 235, 172);
}

.back-image1 {
    position: relative;
}

.back-image1 img {
    position: absolute;
    top: 4vw;
    right: 12%;
    width: 10%;
}

#tokyo-nigata {
    background-color: rgba(205, 249, 253, 0.8);
}

.back-image2 {
    position: relative;
}

.back-image2 img {
    position: absolute;
    top: 3vw;
    left: 10%;
    width: 10%;
}

#kansai-chugoku-sikoku {
    background-color: rgb(253, 221, 240);
}

#kyushu {
    background-color: rgb(214, 240, 206);
}

.back-image3 {
    position: relative;
}

.back-image3 img {
    position: absolute;
    top: 26vw;
    right: 4%;
    width: 5%;
}

#okinawa {
    background-color: rgba(195, 241, 255, 0.8);
}

.back-image4 {
    position: relative;
}

.back-image4 img:nth-of-type(1) {
    position: absolute;
    top: -1vw;
    left: 36%;
    width: 7%;
}

.back-image4 img:nth-of-type(2) {
    position: absolute;
    top: 46vw;
    left: 14%;
    width: 10%;
}

.back-image4 img:nth-of-type(3) {
    position: absolute;
    top: 54vw;
    right: 14%;
    width: 10%;
}

.wave-bottom {
    display: flex;
    width: 100%;
    margin-bottom: 5%;
}

.wave-bottom-box {
    width: 50%;
}

.wave-bottom img {
    width: 100%;
}

/*エリア別コンテンツ-内容*/

.area-local-flex1 {
    display: flex;
    justify-content: center;
}

.area-local-flex1 h2 {
    margin-left: 2%;
    margin-right: 2%;
    margin-bottom: 2%;
    font-size: 2.2vw;
    color: #222;
    font-family: 'YujiSyuku-Regular';
}

.area-local-flex1 img:nth-of-type(1) {
    width: 10%;
    height: 4vw;
    opacity: 0;
}

.area-local-flex1 img:nth-of-type(2) {
    width: 10%;
    height: 4vw;
}

.area-local-flex2 {
    display: flex;
    justify-content: center;
}

.area-local-flex2 h2 {
    margin-left: 2%;
    margin-right: 2%;
    margin-bottom: 2%;
    font-size: 2.2vw;
    color: #222;
    font-family: 'YujiSyuku-Regular';
}

.area-local-flex2 img:nth-of-type(1) {
    width: 10%;
    height: 4vw;
}

.area-local-flex2 img:nth-of-type(2) {
    width: 10%;
    height: 4vw;
    opacity: 0;
}

.area-local-flex3 {
    display: flex;
    justify-content: center;
}

.area-local-flex3 h2 {
    margin-left: 2%;
    margin-right: 2%;
    margin-bottom: 2%;
    font-size: 2.2vw;
    color: #222;
    font-family: 'YujiSyuku-Regular';
}

.area-local-flex3 img:nth-of-type(1) {
    width: 10%;
    height: 4vw;
    opacity: 0;
}

.area-local-flex3 img:nth-of-type(2) {
    width: 10%;
    height: 4vw;
}

.area-local-flex4 {
    display: flex;
    justify-content: center;
}

.area-local-flex4 h2 {
    margin-left: 2%;
    margin-right: 2%;
    margin-bottom: 2%;
    font-size: 2.2vw;
    color: #222;
    font-family: 'YujiSyuku-Regular';
}

.area-local-flex4 img:nth-of-type(1) {
    width: 10%;
    height: 4vw;
}

.area-local-flex4 img:nth-of-type(2) {
    width: 10%;
    height: 4vw;
    opacity: 0;
}

.area-local-flex5 {
    display: flex;
    justify-content: center;
}

.area-local-flex5 h2 {
    margin-left: 2%;
    margin-right: 2%;
    margin-bottom: 2%;
    font-size: 2.2vw;
    color: #222;
    font-family: 'YujiSyuku-Regular';
}

.area-local-flex5 img:nth-of-type(1) {
    width: 10%;
    height: 4vw;
    opacity: 0;
}

.area-local-flex5 img:nth-of-type(2) {
    width: 10%;
    height: 4vw;
}

.area-flex2 {
    display: flex;
    margin-top: 3%;
    justify-content: center;
}

.area-flex3 {
    display: flex;
    margin-top: 3%;
    justify-content: center;
}

.area-box {
    width: 20%;
    margin-left: 1%;
    margin-right: 1%;
    overflow: hidden;
    border: 1px solid #bbb;
    border-radius: 1em;
    background-color: #fff;
}

.area-box img {
    width: 100%;
}

.area-box h3 {
    margin-bottom: 1%;
    text-align: center;
    font-size: 1.5vw;
    color: #222;
    font-family: 'YujiSyuku-Regular';
}

.area-box p {
    height: 10vw;
    padding: 3%;
    font-size: 1vw;
    color: #222;
}

.area-box a {
    display: block;
    width: 48%;
    margin: 3% auto;
    padding: 2%;
    text-decoration: none;
    text-align: center;
    font-size: 1vw;
    border-radius: 0.5em;
    color: #fff;
    background-color: rgb(0, 132, 205);
    border-top: 0.5px solid transparent;
    border-left: 0.5px solid transparent;
    border-right: 0.5px solid blue;
    border-bottom: 0.5px solid blue;
    border-radius: 0.5em;  
    transition: 0.3s;
}

.area-box a:hover {
    border: 0.5px solid rgb(0, 132, 205);
    color: blue;
    background-color: rgb(215, 249, 252);
    transition: 0.3s;
}

.area-box a::after {
    content: " >";
}

/*下部の背景*/

.background-image {
    height: 80vh;
    background-image: url(../images/river.png);
    background-size: cover;
    block-size: 100% 100%;
    background-attachment: fixed;
}


/*フッター*/

footer {
    width: 98%;
    padding: 1%;
    background-color: #222;
}

footer nav ul {
    display: flex;
    width: 100%;
    margin: 0 auto;
}

footer nav ul li {
    width: 20%;
    list-style: none;
}

footer nav ul li a {
    display: block;
    line-height: 2.5;
    text-align: center;
    text-decoration: none;
    color: #eee;
    font-size: 1vw;
}

footer nav ul li a:hover {
    text-decoration: underline;
}

.footer-logo {
    margin: 1% auto;
    width: 18%;
}

.footer-logo img {
    width: 100%;
}

footer address {
    text-align: center;
    font-size: 0.8vw;
    color: #eee;
}

footer P {
    text-align: center;
    font-size: 0.8vw;
    color: #eee;
}