/*
Noto Sans Japanese
*/
/*@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&display=swap');



/*CSS color*/
:root {
    /*--c-blue: #4081F3;*/
    --c-blue: #2A74F5;
    --c-lblue: #E7EFFD;
    /*--c-ishigaki: #64BA86;*/
    --c-ishigaki:  #3EAA69;
    --c-taketomi: #F07734;
    --c-iriomote: #E84792;

    --container: 1400px;
    --max: 1800px;
}

/*CSS redefinition*/

html{
	width:100%;
	font-size: 62.5%;
    background-color: #FFF;
    background: url(../images/bg_footer.webp) no-repeat bottom left #FFF;
    background-size: 100vw auto;
}

@media only screen and (max-width: 1480px) {
    html {
        font-size: 0.65vw;
    }
}

@media only screen and (max-width: 767px) {
    html {
        font-size: 1.334vw;
    }
}

*{
	box-sizing: border-box;
}

a{
	text-decoration: none;
    color: #333;
}

img{
	border:none;
	max-width: 100%;
	height: auto;
	display: inline;
}

iframe{
    /*width: 100%;*/
}

strong,
dt,
h1,
h2,
h3{
    font-weight: 700;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    border: 0;
    margin: 0;
    padding: 0;
    background: none transparent;
    vertical-align: middle;
    font-size: inherit;
    color: inherit;
    box-sizing: content-box;
}

/*common*/
.disp-sp{
    display: none !important;
}
@media only screen and (max-width: 767px) {
    .disp-sp{
        display: block !important;
    }
    .disp-pc{
        display: none !important;
    }
}

.cmn__btn-wrap{
    text-align: center;
    margin-top: 6rem;
}

.cmn__btn-wrap.-left{
    text-align: left;
}

.cmn__btn-link{
    display: inline-block;
    background-color: var(--c-blue);
    color: #FFF;
    font-size: 2.3rem;
    font-weight: 700;
    padding: 1.3rem 4rem;
    border-radius: 10rem;
    min-width: 25rem;
    max-width: 100%;
    transition: filter 0.5s;
}
@media only screen and (max-width: 767px) {
    .cmn__btn-link{
        font-size: 2.1rem;
    }
}

.cmn__btn-link + .cmn__btn-link{
    margin-top: 2rem;
}

.cmn__btn-link.-small{
    font-size: 1.8rem;
    padding: 1rem 2rem;
}

.cmn__btn-link.-reservation{
    font-size: 1.5rem;
    padding: 0.2rem 1.5rem;
    min-width: auto;
}
@media only screen and (max-width: 767px) {
    .cmn__btn-link.-reservation{
        font-size: 2rem;
    }
}

.cmn__btn-link[target]::after{
    content: "";
    width: 2.8rem;
    height: 2.3rem;
    display: inline-block;
    background: url(../images/icon_blank.svg) no-repeat;
    background-size: contain;
    vertical-align: middle;
    margin-left: 1rem;
    transform: translateY(-0.2rem);
}

.cmn__btn-link.-small[target]::after{
    width: 2.4rem;
    height: 1.8rem;
    margin-left: 0.5rem;
}

.cmn__btn-link.-reservation[target]::after{
    width: 2rem;
    height: 1.4rem;
    margin-left: 0.5rem;
}

.cmn__btn-link:hover{
    filter: brightness(1.2);
}

.cmn__list{
    margin-top: 3rem;
}

.cmn__list.-mt0{
    margin-top: 0;
}

.cmn__list.-indent{
    margin-left: 2rem;
}

.cmn__list > li{
    list-style: disc;
    margin-left: 1.8rem;
    margin-top: 0.5rem;
}

.cmn__list li:first-child{
    margin-top: 0;
}

.cmn__list--child > li{
    list-style: circle;
    margin-left: 1.8rem;
    margin-top: 0.5rem;
}
.cmn__list--child li:first-child{
    margin-top: 0;
}

.cmn__main-title--h2{
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 4rem;
    background-color: rgba(255,255,255,0.7);
}

.cmn__main-title--h2 h2{
    font-size: 3rem;
}

.cmn__h3{
    font-size: 2.4rem;
    margin-top: 4rem;
    color: #2A74F5;
}

.cmn__p{
    margin-top: 2rem;
}

.-tx-ishigaki{
    color: var(--c-ishigaki);
}

.-tx-taketomi{
    color: var(--c-taketomi);
}

.-tx-iriomote{
    color: var(--c-iriomote);
}

.-bg-ishigaki{
    background-color: var(--c-ishigaki);
}

.-bg-taketomi{
    background-color: var(--c-taketomi);
}

.-bg-iriomote{
    background-color: var(--c-iriomote);
}


/*rayout*/
body{
	height:100%;
	width:100%;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
    font-weight: 500;
	color: #1D1D1D;
	line-height: 1.8;
    padding-top: 9rem;
}
@media only screen and (max-width: 1480px) {
    body{
        font-size: 1.8rem;
    }
}
@media only screen and (max-width: 767px) {
    body{
        font-size: 2rem;
        padding-top: 13rem;
    }
}

body.front{
    padding-top: 0;
}

.child main{
    padding-bottom: 8rem;
    /*
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,1) 90%, rgba(255,255,255,0) 100%);
    */
}

.container{
    max-width: var(--container);
    margin: 0 auto;
}
@media only screen and (max-width: 1480px) {
    .container{
        padding-left: 4rem;
        padding-right: 4rem;
    }
}
.container-s{
    max-width: 1000px;
    margin: 0 auto;
}
@media only screen and (max-width: 1080px) {
    .container-s{
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

/*header*/
header{
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    transition: top 0.5s;
}
@media only screen and (min-width: 768px) {
    header.-move{
        top: -10rem;
    }

    header.-fixed{
        position: fixed;
        top: 0;
        background: rgba(255,255,255,0.8);
    }
}
@media only screen and (max-width: 767px) {
    header{
        flex-direction: column;
        position: fixed !important;
        top: 0 !important;
        background: rgba(255,255,255,0.8) !important;
        justify-content: flex-start;
    }
    header.-open{
        height: 100vh;
        background: rgba(255,255,255,0.9) !important;
    }
}

.header__logo{
    padding: 3rem 4rem;
    text-align: center;
    font-size: 1.2rem;
}
@media only screen and (min-width: 768px) {
    .-fixed .header__logo{
        padding: 2.5rem 4rem 1rem;
    }
}

.front .header__logo img{
    width: 35.6rem;
}

.front .-fixed .header__logo img,
.header__logo img{
    width: 22rem;
}
@media only screen and (min-width: 768px) {
    .front .-fixed .header__logo img,
    .header__logo img{
        width: 22rem;
    }
}
@media only screen and (max-width: 767px) {
    .header__logo img{
        width: 30rem !important;
    }
}

.header__nav{
    display: flex;
    align-items: center;
    gap: 3rem;
}
@media only screen and (max-width: 767px) {
    .header__nav{
        width: 100%;
        padding: 0 4rem;
        margin: 0 auto;
        flex-direction: column;
        gap: 0;
        display: none;
    }
    header.-open .header__nav{
        display: block;
    }
}

.header__nav ul{
    display: flex;
    align-items: center;
    gap: 3rem;
}
@media only screen and (max-width: 767px) {
    .header__nav ul{
        flex-direction: column;
        order: 2;
        gap: 0;
        width: 100%;
    }
}

.header__nav li{
    font-weight: bold;
}
@media only screen and (max-width: 767px) {
    .header__nav li{
        width: 100%;
    }
    .header__nav li a{
        border-bottom: 1px solid #CCC;
        padding: 2rem 0;
        width: 100%;
        display: block;
        font-size: 2.6rem;
    }
}

.header__global{
    background-color: var(--c-blue);
    border-radius: 0 0 0 2rem;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    position: relative;
}
@media only screen and (max-width: 767px) {
    .header__global{
        border-radius: 10rem;
        padding: 1.5rem;
        margin-top: 4rem;
        font-size: 2.6rem;
    }
}

.header__global::before{
    content: "";
    display: block;
    width: 2.3rem;
    height: 2.3rem;
    background: url(../images/icon_global.svg) no-repeat center;
    background-size: contain;
}

.header__global::after{
    content: "";
    display: block;
    border-style: solid;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    border-top: 10px solid #FFF;
    border-bottom: 0;
    position: absolute;
    right: 2rem;
}

.header__global--slect{
    color: #FFF;
    font-weight: bold;
    min-width: 15rem;
    margin-left: 1rem;
}

.header__global--slect option{
    color: #000;
}

.btn-nav{
	position: absolute;
    top: 3.4rem;
    right: 3rem;
	display: none;
    cursor: pointer;
}
@media only screen and (max-width: 767px) {
	.btn-nav{
		display: block;
	}
}

.btn-nav::after{
    content: "MENU";
    display: block;
    font-size: 1.5rem;
    line-height: 1;
}

.btn-nav-trigger{
	position: relative;
	width: 4.4rem;
	height: 3.3rem;
	text-align: right;
}

.btn-nav-trigger,
.btn-nav-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}

.btn-nav-trigger span{
    background-color: #333;
    position: absolute;
    right: 0;
    width: 100%;
    height: 2px;
}

.btn-nav-trigger.active:after{
    color: #707070;
}

.btn-nav-trigger span:nth-of-type(1) {
    top: 0;
}
.btn-nav-trigger span:nth-of-type(2) {
    top: 1.5rem;
}
.btn-nav-trigger span:nth-of-type(3) {
    bottom: 0;
}

.btn-nav-trigger.active span:nth-of-type(1) {
    transform: translateY(1.5rem) rotate(-45deg);
}
.btn-nav-trigger.active span:nth-of-type(2) {
    opacity: 0;
}
.btn-nav-trigger.active span:nth-of-type(3) {
    transform: translateY(-1.5rem) rotate(45deg);
    width: 100%;
}

/*breadcrumbs*/
.breadcrumbs{
    position: relative;
    overflow: scroll;
    background-color:#F7FAFF;
    padding: 1rem 0;
}
@media only screen and (max-width: 767px) {
    .breadcrumbs{
        top: 0;
        padding: 2rem 0;
    }
}
.breadcrumbs ul{
    display: flex;
    gap: 1rem;
}
.breadcrumbs li{
    font-size: 1.2rem;
}

.breadcrumbs li::after{
    content: ">";
    margin-left: 1rem;
}

.breadcrumbs li:last-child::after{
    display: none;
}

.breadcrumbs a{
    text-decoration: underline;
}

/*footer*/
.footer-bnr{
    padding: 10rem 0;
}
@media only screen and (max-width: 767px) {
    .footer-bnr{
        padding: 6rem 0;
        background-color: #EAF8FF;
    }
}

.footer-bnr ul{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}
@media only screen and (max-width: 767px) {
    .footer-bnr ul{
        justify-content: center;
    }
}

.footer-bnr ul li{
    width: calc(25% - 2rem);
}
@media only screen and (max-width: 767px) {
    .footer-bnr ul li{
        width: calc(33.33% - 2rem);
    }
}

.footer-bnr ul:before,
.footer-bnr ul:after{
    content: "";
    display: block;
    width: calc(25% - 2rem);
    order: 2;
}
@media only screen and (max-width: 767px) {
    .footer-bnr ul:before,
    .footer-bnr ul:after{
        display: none;
    }
}

footer{
    padding-bottom: 5rem;
}
@media only screen and (max-width: 767px) {
    footer{
        padding: 5rem 0;
    }
}

.footer__inner{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
    .footer__inner{
        flex-direction: column;
    }

    .footer__left{
        text-align: center;
        width: 100%;
    }

    .footer__center,
    .footer__right{
        margin-top: 3rem;
        width: 100%;
    }
}

.footer__logo{
    text-align: center;
    font-size: 1.2rem;
}

.footer__logo img{
    width: 35.6rem;
}

.footer__address{
    margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
    .footer__address{
        text-align: center;
    }
}

.footer__link--parent{
    font-size: 1.8rem;
    margin-top: 3rem;
    font-weight: bold;
}

.footer__link--parent:first-child{
    margin-top: 0;
}

.footer__link--parent::before{
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 1.8rem;
    height: 1.8rem;
    border: 0.5rem solid var(--c-blue);
    border-radius: 100%;
    margin-right: 1rem;
    transform: translateY(-0.2rem);
}

.footer__link--parent a{
    color: var(--c-blue);
}

.footer__link--child{
    margin-top: 1.5rem;
    margin-left: 1.8rem;
}

.footer__link--child li{
    margin-top: 1rem;
    font-size: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.footer__link--child li::before{
    content: "-";
    display: inline-block;
    margin-right: 0.5rem;
    position: absolute;
    left: 0;
}

.footer__link--parent a:hover,
.footer__link--child li a:hover{
    text-decoration: underline;
}

.footer__copy{
    text-align: center;
    margin-top: 5rem;
    font-size: 1.4rem;
}

/*contents*/
.top__h2{
    text-align: center;
}
.top__h2 h2 strong{
    font-size: 5rem;
    display: block;
    margin-top: 3rem;
}
.top__h2 span{
    color: var(--c-blue);
    font-size: 2rem;
    display: inline-block;
    background: url(../images/line_top_h2.svg) bottom repeat-x;
    padding-bottom: 3rem;
}

.top__h2 h2 + p{
    margin-top: 4rem;
}
.top-opening{
    position: relative;
    padding-top: 14rem;
    overflow: hidden;
}
@media only screen and (max-width: 767px) {
    .top-opening{
        padding-top: 12rem;
    }
}

.top-opening::before{
    content: "";
    display: block;
    width: 50%;
    height: 93%;
    background-color: var(--c-lblue);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
@media only screen and (max-width: 767px) {
    .top-opening::before{
        display: none;
    }
}

.top-opening::after{
    content: "";
    display: block;
    width: 82rem;
    height: 82rem;
    background: url(../images/bg_top_opening.svg) no-repeat;
    background-size: contain;
    position: absolute;
    top: -23%;
    left: -11%;
    animation: rotate 20s infinite linear;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.top-opening__inner{
    display: flex;
    justify-content: space-between;
    max-width: 1800px;
    margin: auto;
    position: relative;
    z-index: 1;
}
@media only screen and (max-width: 767px) {
    .top-opening__inner{
        position: relative;
        align-items: center;
    }
}

.top-opening__left{
    padding-left: 4rem;
    padding-right: 4rem;
    width: 35%;
}
@media only screen and (max-width: 767px) {
    .top-opening__left{
        position: absolute;
        z-index: 1;
        width: 100%;
        text-align: center;
    }
}

.top-opening__h1{
    font-size: 4.7rem;
    color: var(--c-blue);
    line-height: 1.6;
    margin-top: 6rem;
}
@media only screen and (max-width: 767px) {
    .top-opening__h1{
        font-size: 6rem;
        margin-top: 0;
        color: #FFF;
        text-shadow: 0 0 3px rgba(0,0,0,1);
    }
}

.top-opening__p{
    font-size: 2rem;
    margin-top: 3rem;
    line-height: 2;
}
@media only screen and (max-width: 767px) {
    .top-opening__p{
        font-size: 2.4rem;
        color: #FFF;
        text-shadow: 0 0 3px rgba(0,0,0,1);
    }
}

.top-opening__right{
    padding-right: 3rem;
    width: 65%;
    flex: 1;
    margin-right: calc(50% - 50vw);
}
@media only screen and (max-width: 767px) {
    .top-opening__right{
        margin: 0;
        padding: 0;
        width: 100%;
        height: 70vh;
    }
}

.top-opening__slider{
    border-radius: 3rem;
    overflow: hidden;
}
@media only screen and (max-width: 767px) {
    .top-opening__slider{
        border-radius: 0;
    }
}


.top-opening__slider img{
    border-radius: 3rem;
    transition: transform 15s;
    transform: scale(1);
    width: 100%;
    height: 80rem;
    object-fit: cover;
}
@media only screen and (max-width: 767px) {
    .top-opening__slider img{
        border-radius: 0;
        height: 70vh;
        width: 100%;
        object-fit: cover;
    }
}

.top-opening__slider .slick-active img{
    transform: scale(1.2);
}

.top-opening__slider .slick-dots{
    position: absolute;
    right: 3rem;
    bottom: 3rem;
    display: flex;
    gap: 1.5rem;
}
@media only screen and (max-width: 767px) {
    .top-opening__slider .slick-dots{
        right: auto;
        left: 0;
        width: 100%;
        justify-content: center;
        bottom: 4rem;
    }
}

.top-opening__slider .slick-dots li{
    font-size: 0;
    background-color: #FFFFFF;
    color: #FFF;
    border: none;
    border-radius: 10rem;
    transition: background-color 0.5s;
}

.top-opening__slider .slick-dots li.slick-active{
    background-color: var(--c-blue);
}

.top-opening__slider .slick-dots li button{
    width: 1.5rem;
    height: 1.5rem;
    background: none;
    border: none;
    border-radius: 100%;
    border: 1px solid var(--c-blue);
    transition: width 0.5s;
}
@media only screen and (max-width: 767px) {
    .top-opening__slider .slick-dots li button{
        height: 2rem;
        width: 2rem;
    }
}

.top-opening__slider .slick-dots li.slick-active button{
    width: 6.2rem;
}

@media only screen and (max-width: 767px) {
    .top-opening__slider .slick-dots li button{

    }
}

.top-introduce{
    margin-top: 15rem;
    background-color: #4081F3;
    background: url(../images/bg_introduce.webp);
    position: relative;
}
@media only screen and (max-width: 767px) {
    .top-introduce{
        margin-top: 0;
        display: flex;
        flex-direction: column;
        padding: 0 0 4rem;
    }
}

.top-introduce__flowing-text{
    overflow: hidden;
    display: flex;
    position: absolute;
    top: -7rem;
    width: 100%;
}
@media only screen and (max-width: 767px) {
    .top-introduce__flowing-text{
        display: none;
    }
}


.top-introduce__flowing-text.-reverse{
    top: auto;
    bottom: -7rem;
}

.top-introduce__flowing-text p{
    animation :infinity-scroll-left 50s infinite linear 0.5s both;
}
.top-introduce__flowing-text.-reverse p{
    text-align: right;
    animation :infinity-scroll-right 50s infinite linear 0.5s both;
}
@keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
@keyframes infinity-scroll-right {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

.top-introduce__flowing-text p img{
    width: 320.3rem;
    max-width: none;
}

.top-introduce__slider{
    max-width: 48rem;
    position: absolute;
    z-index: 1;
    right: 10rem;
    top: 50%;
    transform: translateY(-50%)
}
@media only screen and (max-width: 767px) {
    .top-introduce__slider{
        position: static;
        width: calc(100% - 8rem);
        max-width: none;
        transform: translateY(0);
        margin: 0 auto;
        order: 2;
    }
}

.top-introduce__slider .slick-track{
}

.top-introduce__slider .slick-track .slick-slide{
}

.top-introduce__slider .slick-track .slick-slide > div{
}

.top-introduce__slider .slick-arrow{
	background: url(../images/arrow_introduce.svg) no-repeat center;
    background-size: contain;
	width: 5.3rem;
	height: 5.3rem;
	font-size: 0;
	position: absolute;
	right: -2.6rem;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 4px;
    border: none;
}

.top-introduce__slider .slick-arrow.slick-prev{
	transform: translateY(-50%) rotate(180deg);
	right: auto;
	left: -2.6rem;
    z-index: 1;
}

@media only screen and (max-width: 767px) {
	.top-introduce__slider .slick-arrow{
		right: -2rem;
		z-index: 1;
	}
	
	.top-introduce__slider .slick-arrow.slick-prev{
		left: -2rem;
	}
}

.top-introduce__slider .slick-arrow.slick-disabled{
	opacity: 0.5;
}

.top-introduce__slider--item{
    border-radius: 6rem;
    background-color: #FFF;
}

.top-introduce__about--images img{
    border-radius: 6rem 6rem 0 0;
}

.top-introduce__slider--text{
    padding: 2rem 4rem 3rem;
}

.top-introduce__slider--text .cmn__btn-wrap{
    margin-top: 2rem;
}

.top-introduce__slider--h3{
    font-size: 4rem;
    text-align: center;
    font-weight: bold;
}

.top-introduce__slider--p{
    margin-top: 2rem;
    font-size: 1.8rem;
}
@media only screen and (max-width: 767px) {
    .top-introduce__slider--p{
        font-size: 2.4rem;
    }
}

.top-introduce__map{
    width: 100%;
    margin: 0 auto;
}

.top-introduce__map--item{
    width: 100%;
}
@media only screen and (max-width: 1300px) {
    .top-introduce__map--item{
        transform: scale(0.9);
        transform-origin: left;
    }
}
@media only screen and (max-width: 767x) {
    .top-introduce__map--item{
        transform: scale(1);
    }
}

.top-introduce__map--item img{
    width: 100%;
}

.top-introduce__map--image{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.top-introduce__map--item__thum{
    position: absolute;
    z-index: 10;
    opacity: 0;
	transform: translateY(20%);
}

.top-introduce__map--item__thum.-ishigaki01{width: 15rem;bottom: 2.6rem;left: 3rem;}
.top-introduce__map--item__thum.-ishigaki02{width:29.8rem;top: -5.2rem;left: -5rem;}
.top-introduce__map--item__thum.-ishigaki03{width:23.2rem;top: 5rem;left: 56.8rem;}
.top-introduce__map--item__thum.-ishigaki04{width: 30rem;bottom: 3rem;left: 35%;}
@media only screen and (max-width: 767px) {
    .top-introduce__map--item__thum.-ishigaki01{width: 15rem;bottom: auto;top: 32rem;left: 02rem;}
    .top-introduce__map--item__thum.-ishigaki02{width: 21.8rem;top: -2.2rem;left: 2rem;}
    .top-introduce__map--item__thum.-ishigaki03{width:23.2rem;top: auto;bottom: 0;left: auto;right: 0;}
    .top-introduce__map--item__thum.-ishigaki04{width: 18rem;bottom: auto;left: auto;right: -2rem;top: 10rem;}
}

.top-introduce__map--item__thum.-taketomi01{width: 25rem;bottom: 7.6rem;left: 15rem;}
.top-introduce__map--item__thum.-taketomi02{width:29.8rem;top: 4.8rem;left: 5rem;}
.top-introduce__map--item__thum.-taketomi03{width:23.2rem;top: 12rem;left: 61.8rem;}
@media only screen and (max-width: 767px) {
    .top-introduce__map--item__thum.-taketomi01{width: 25rem;bottom: auto;top: 3rem;left: 2rem;}
    .top-introduce__map--item__thum.-taketomi02{width: 19.8rem;top: 2rem;left: 50rem;}
    .top-introduce__map--item__thum.-taketomi03{width: 24.2rem;top: auto;left: auto;right: 0;bottom: 2rem;}
}

.top-introduce__map--item__thum.-iriomote01{width: 15rem;bottom: 2.6rem;left: 3rem;}
.top-introduce__map--item__thum.-iriomote02{width:29.8rem;top: -5.2rem;left: -5rem;}
.top-introduce__map--item__thum.-iriomote03{width:23.2rem;top: 5rem;left: 56.8rem;}
.top-introduce__map--item__thum.-iriomote04{width:35rem;bottom: 3rem;left: 74rem;}
@media only screen and (max-width: 767px) {
    .top-introduce__map--item__thum.-iriomote01{width: 15rem;bottom: 0;top: auto;left: 0;}
    .top-introduce__map--item__thum.-iriomote02{width: 22.8rem;top: -2rem;left: -2rem;}
    .top-introduce__map--item__thum.-iriomote03{width: 21.2rem;top: 1rem;left: auto;right: 2rem;}
    .top-introduce__map--item__thum.-iriomote04{width: 20rem;bottom: 2rem;left: auto;right: 0;}
}

.slick-active .top-introduce__map--item__thum{
    opacity: 1;
	transform: translateY(0);
	transition: all 1s ease-out;
}

.top-introduce__map--item__thum{
    border-radius: 100%;
}

.top-recommend{
    padding: 10rem 0;
    background-color: #FFF;
}

.top-recommend__list{
    margin-top: 8rem;
    display: flex;
    justify-content: space-between;
}
@media only screen and (max-width: 767px) {
    .top-recommend__list{
        flex-wrap: wrap;
        gap: 4rem 2rem;
    }
}

.top-recommend__list::after{
    content: "";
    width: calc(33.33% - 3rem);
}

.top-recommend__item{
    width: calc(33.33% - 3rem);
}
@media only screen and (max-width: 767px) {
    .top-recommend__item{
        width: 100%;
    }
}

.top-recommend__item figure{
    border-radius: 2rem;
    overflow: hidden;
}

.top-recommend__item figure img{
    transition: transform 0.5s;
    display: block;
    width: 100%;
}

.top-recommend__item a:hover{
    color: #4081F3;
}

.top-recommend__item a:hover img{
    transform: scale(1.1);
}

.top-recommend__item--h3{
    font-size: 2.2rem;
    margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
    .top-recommend__item--h3{
        font-size: 2.8rem;
        margin-top: 2rem;
    }
}

.top-recommend__item p{
    margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
    .top-recommend__item p{
        font-size: 2.4rem;
    }
}


.top-spot{
    padding: 10rem 0;
    background-color: var(--c-lblue);
}

.top-spot__inner{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 6rem;
}
@media only screen and (max-width: 767px) {
    .top-spot__inner{
        flex-wrap: wrap;
    }
}

.top-spot__list{
    width: calc(100% - 25rem - 4rem);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
@media only screen and (max-width: 767px) {
    .top-spot__list{
        width: 100%;
        order: 2;
        margin-top: 3rem;
    }
}

.top-spot__list .cmn__btn-wrap{
    width: 100%;
}

.top-spot__list--area{
    font-size: 2.5rem;
    margin-top: 6rem;
    font-weight: 700;
    width: 100%;
    text-align: center;
    color: #FFF;
    padding: 0.5rem;
    border-radius: 2rem;
}
@media only screen and (max-width: 767px) {
    .top-spot__list--area{
        font-size: 3rem;
    }
}

.top-spot__list--area:first-child{
    margin-top: 0;
}

#spot1.top-spot__list--area,
#spot2.top-spot__list--area{
    background-color: var(--c-ishigaki);
}
#spot3.top-spot__list--area{
    background-color: var(--c-taketomi);
}
#spot4.top-spot__list--area{
    background-color: var(--c-iriomote);
}

.top-spot__list.show{
    display: block;
}

.top-spot__item{
    background-color: #FFF;
    box-shadow: 0 0.3rem 0.6rem rgba(0,0,0,0.15);
    border-radius: 2rem;
    padding: 2.5rem;
    margin-top: 3rem;
    width: calc(50% - 1.5rem);
    position: relative;
}

.top-spot__item:first-child{
    margin-top: 0;
}

.top-spot__item figure{
    width: 30%;
    max-width: 40rem;
    order: 2;
}
@media only screen and (max-width: 767px) {
    .top-spot__item figure{
        width: 100%;
        order: 1;
    }
}

.top-spot__item figure img{
    border-radius: 1.5rem;
}

.top-spot__item--text{
    width: 100%;
    order: 1;
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
    .top-spot__item--text{
        flex-wrap: wrap;
    }
}

.top-spot__item--h3{
    font-size: 2.4rem;
    width: 100%;
}

.top-spot__item p{
    width: 65%;
    font-size: 1.5rem;
}
@media only screen and (max-width: 767px) {
    .top-spot__item p{
        order: 2;
        width: 100%;
        font-size: 2rem;
    }
}

.top-spot__item--text.-w100 p{
    width: 100%;
}


.top-spot__item--btn{
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
}
@media only screen and (max-width: 767px) {
    .top-spot__item--btn{
        position: static;
        order: 3;
        width: 100%;
        text-align: center;
        margin-top: 2rem;
    }
}


.top-spot__nav{
    width: 25rem;
    position: sticky;
    top: 10rem;
}
@media only screen and (max-width: 767px) {
    .top-spot__nav{
        width: 100%;
        top: 12rem;
    }
}

.top-spot__nav ul{
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    background-color: #FFF;
    border-radius: 2rem;
    text-align: center;
}
@media only screen and (max-width: 767px) {
    .top-spot__nav ul{
        display: flex;
        border-radius: 2rem;
        overflow: hidden;
    }
}

.top-spot__nav ul li{
    display: block;
    font-size: 2.4rem;
    border-bottom: 1px solid #CCC;
    font-weight: 700;
    line-height: 1.5;
}
@media only screen and (max-width: 767px) {
    .top-spot__nav ul li{
        width: 25%;
        border-right: 1px solid #CCC;
    }
}

.top-spot__nav ul li a{
    display: block;
    padding: 1.5rem;
}
@media only screen and (max-width: 767px) {
    .top-spot__nav ul li a{
        padding: 1.5rem 0;
        height: 100%;
    }
}

.top-spot__nav ul li:first-child a{
    border-radius: 2rem 2rem 0 0;
}
.top-spot__nav ul li:last-child a{
    border-radius: 0 0 2rem 2rem;
}
@media only screen and (max-width: 767px) {
    .top-spot__nav ul li:first-child a{
        border-radius: 0;
    }
    .top-spot__nav ul li:last-child a{
        border-radius: 0;
    }
}



.top-spot__nav ul li.active a.-tx-ishigaki{
    background-color: var(--c-ishigaki);
    color: #FFF;
}
.top-spot__nav ul li.active a.-tx-taketomi{
    background-color: var(--c-taketomi);
    color: #FFF;
}
.top-spot__nav ul li.active a.-tx-iriomote{
    background-color: var(--c-iriomote);
    color: #FFF;
}

.top-spot__nav ul li span{
    display: block;
    font-size: 1.5rem;
}
@media only screen and (max-width: 767px) {
    .top-spot__nav ul li span{
        font-size: 1.3rem;
    }
}

.top-spot__nav--link{
    margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
    .top-spot__nav--link{
        display: none;
    }
}

.top-spot__nav--btn{
    display: none;
    border: 2px solid var(--c-blue);
    border-radius: 2rem;
    overflow: hidden;
    background-color: var(--c-blue);
    color: #FFF;
}

.top-spot__nav--btn.active{
    display: block;
}

.top-spot__nav--btn img{
    display: block;
}

.top-spot__nav--btn strong{
    display: block;
    padding: 1rem;
}

.top-spot__btm-link{
    display: none;
}

.top-spot__btm-link.active{
    display: inline-block;
}

.top-column{
    padding: 10rem 0 6rem;
    background-color: #FFFCEF;
    overflow: hidden;
}
@media only screen and (max-width: 767px) {
    .top-column{
    }
}

.top-column__container{
    display: flex;
    justify-content: space-between;
    max-width: var(--container);
    margin: 0 auto;
    position: relative;
}
@media only screen and (max-width: 767px) {
    .top-column__container{
        flex-direction: column;
        padding: 4rem;
    }
}

.top-column__left{
    width: calc(35% - 4rem);
}
@media only screen and (max-width: 1480px) {
    .top-column__left{
        padding-left: 4rem;
    }
}

@media only screen and (max-width: 767px) {
    .top-column__left{
        width: 100%;
        padding-left: 0;
    }
}

.top-column__left--h2{
    text-align: left;
}
@media only screen and (max-width: 767px) {
    .top-column__left--h2{
        text-align: center;
    }
}

.top-column__right{
    width: 65%;
}
@media only screen and (max-width: 767px) {
    .top-column__right{
        width: 100%;
    }
}

.top-column__right .page-other__content--item{
    width: calc(50% - 2rem);
}

/*
.top-column__left--slider{
    margin-top: 6rem;
}

.top-column__left--slider--h3{
    font-size: 2.6rem;
}

.top-column__left--slider--p{
    font-size: 2rem;
    margin-top: 4rem;
}

.top-column__arrow{
    position: absolute;
    left: 4rem;
    bottom: 22rem;
}
@media only screen and (max-width: 767px) {
    .top-column__arrow{
        position: static;
        text-align: center;
        margin-top: 5rem;
    }
}

.top-column__arrow--btn{
	background: url(../images/arrow_slider.svg) no-repeat center;
    background-size: contain;
	width: 4.8rem;
	height: 4.8rem;
	font-size: 0;
	position: absolute;
	left: 10rem;
	bottom: -22rem;
	transform: translateY(-50%);
    border: none;
}
@media only screen and (max-width: 767px) {
    .top-column__arrow--btn{
        position: static;
        display: inline-block;
        margin: 0 2rem
    }
}

.top-column__arrow--btn.-prev{
	transform: translateY(-50%) rotate(180deg);
	right: auto;
	left: 0;
    z-index: 1;
}

.top-column__slider{
    width: 65%;
    flex: 1;
    margin-right: calc(50% - 50vw);
    margin-left: 4%;
}
@media only screen and (max-width: 767px) {
    .top-column__slider{
        width: 100%;
        margin-left: 0;
    }
}

.top-column__slider--item{
    border-radius: 2rem;
    overflow: hidden;
    position: relative;
}

.top-column__slider--h3{
    position: absolute;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
    color: #FFF;
    font-size: 2.6rem;
    text-shadow: 0 3px 3px rgba(0,0,0,0.5);
    line-height: 1.6;
}

.top-column__slider--item img{
    border-radius: 2rem;
}

.top-column__slider .slick-slide{
    transform: scale(0.9);
    transform-origin: center;
    filter: brightness(0.5);
    transition: transform 0.5s, filter 0.5s;
    transition-delay: 0.5s;
}
@media only screen and (max-width: 767px) {
    .top-column__slider .slick-slide{
        transform: scale(0.8);
    }
}

.top-column__slider .slick-slide a{
    pointer-events: none;
}

.top-column__slider .slick-slide.slick-current{
    transform: scale(1) translateX(-2rem);
    filter: brightness(1);
}
@media only screen and (max-width: 767px) {
    .top-column__slider .slick-slide.slick-current{
        transform: scale(1) translateX(0);
    }
}

.top-column__slider .slick-slide.slick-current a{
    pointer-events: all;
}

.top-column__slider .slick-track{
    margin-left: -30rem;
}
@media only screen and (max-width: 767px) {
    .top-column__slider .slick-track{
        margin-left: 0;
    }
}

.top-column__slider .slick-slide img{
}
*/

.top-course{
    padding: 10rem 0;
}
@media only screen and (max-width: 767px) {
    .top-course{
        padding: 6rem 0 0;
    }
}

.top-course__btn{
    margin-top: 6rem;
    display: flex;
    justify-content: space-between;
}
@media only screen and (max-width: 767px) {
    .top-course__btn{
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        text-align: center;
    }
}

.top-course__btn li{
    width: calc(20% - 1rem);
    border-radius: 1.5rem;
    font-size: 1.8rem;
    color: #FFF;
    text-align: center;
    padding: 1rem;
}
@media only screen and (max-width: 767px) {
    .top-course__btn li{
        width: calc(33.33% - 1rem);
        font-size: 1.6rem;
    }
}

.top-course__btn li span{
    background-color: #FFF;
    border-radius: 100px;
    width: 3rem;
    height: 3rem;
    padding: 0.5rem;
    line-height: 1;
    display: flex;
    display: inline-block;
    font-weight: 700;
}

.top-course__btn li strong{
    display: block;
    line-height: 1.5;
}

.top-course__slider{
    margin-top: 4rem;
    border-radius: 2.4rem;
    height: 100%;
}


.top-course__item,
.page-course__item{
    display: flex !important;
    justify-content: space-between;
    background-color: #FFF;
    border-radius: 2.4rem;
    overflow: hidden;
}
@media only screen and (max-width: 767px) {
    .top-course__item,
    .page-course__item{
        flex-wrap: wrap;
    }
}

.page-course__left{
    align-items: center;
}

.top-course__left,
.page-course__left{
    width: 50%;
    padding: 4rem;
}
@media only screen and (max-width: 767px) {
    .top-course__left,
    .page-course__left{
        width: 100%;
        padding: 4rem;
    }
    .top-course__left{
        order: 2;
    }
}

.-w100 .page-course__left{
    width: 100%;
}

.top-course__left--course,
.page-course__left--course{
    font-size: 1.8rem;
    font-weight: 700;
}

.top-course__left--course strong,
.page-course__left--course strong{
    font-size: 8rem;
    display: inline-block;
    margin-right: 0.5rem;
    line-height: 1;
}

.top-course__h3,
.page-course__h3{
    font-size: 3rem;
    margin-top: 1.8rem;
    line-height: 1.6;
}

.top-course__p,
.page-course__p{
    font-size: 1.8rem;
    margin-top: 3.5rem;
}

.top-course__btn{
    margin-top: 5rem;
}

.top-course__right,
.page-course__right{
    width: 50%;
}
@media only screen and (max-width: 767px) {
    .top-course__right,
    .page-course__right{
        width: 100%;
    }
}

.top-course__right figure,
.page-course__right figure{
    height: 100%;
}
@media only screen and (max-width: 767px) {
    .top-course__right figure,
    .page-course__right figure{
        height: auto;
    }
}

.top-course__right figure img{
    display: block;
    height: 100%;
    object-fit: cover;
}
@media only screen and (max-width: 767px) {
    .top-course__right figure img{
        width: 100%;
        height: auto;
        object-fit: fill;
    }
}

.top-course__slider .slick-arrow{
	background: url(../images/arrow_slider.svg) no-repeat center;
    background-size: contain;
	width: 4.8rem;
	height: 4.8rem;
	font-size: 0;
	position: absolute;
	right: -7rem;
	top: 50%;
	transform: translateY(-50%);
    border: none;
}

.top-course__slider .slick-arrow.slick-prev{
	transform: translateY(-50%) rotate(180deg);
	right: auto;
	left: -7rem;
    z-index: 1;
}

@media only screen and (max-width: 1650px) {
	.top-course__slider .slick-arrow{
		right: -1.8rem;
		z-index: 1;
	}
	
	.top-course__slider .slick-arrow.slick-prev{
		left: -1.8rem;
	}
}

@media only screen and (max-width: 767px) {
	.top-course__slider .slick-arrow{
		right: -2rem;
		z-index: 1;
	}
	
	.top-course__slider .slick-arrow.slick-prev{
		left: -2rem;
	}
}

.top-course__slider .slick-arrow.slick-disabled{
	opacity: 0.5;
}

.page-course{
    background-color: var(--c-lblue);
}

.page-course__intro{
    padding: 8rem 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
@media only screen and (max-width: 767px) {
    .page-course__intro{
        padding: 8rem 3rem;
    }
}

.page-course__item{
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgba(255,255,255,0.8);
    align-items: center;
    min-height: 30em;
}
@media only screen and (max-width: 1280px) {
    .page-course__intro{
        padding: 8rem 3rem;
    }
}

.page-course__route{
    position: relative;
    padding: 4rem;
    max-width: 1200px;
    margin: 6rem auto 0;
    background-color: #FFF;
    border-radius: 3rem;
}
@media only screen and (max-width: 767px) {
    .page-course__route{
        margin: 6rem 3rem 0;
    }
}


.page-course__route::before{
    content: "";
    width: 3px;
    height: calc(100% - 25rem);
    background-color: var(--c-blue);
    position: absolute;
    top: 6rem;
}

.page-course__route--guid{
    position: relative;
    padding-left: 4rem;
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
    .page-course__route--guid{
    }
}

.page-course__route--guid.-first{
    margin-top: 0;
}

.page-course__route--guid::before{
    content: "";
    display: block;
    width: 3rem;
    height: 3rem;
    border: 0.5rem solid var(--c-blue);
    background-color: #FFF;
    border-radius: 100%;
    position: absolute;
    left: -1.3rem;
    top: 1.7rem;
}

.page-course__text{
    width: 70%;
}
@media only screen and (max-width: 767px) {
    .page-course__text{
        width: 100%;
    }
}

.page-course__time{
    font-size: 1.5rem;
    line-height: 1;
}

.page-course__destination{
    font-size: 2rem;
    color: var(--c-blue);
    font-weight: bold;
}

.page-course__destination.-sub{
    margin-top: 3rem;
    font-size: 1.8rem;
}

.-first .page-course__destination{
    font-size: 2rem;
    color: #000;
}

.page-course__route--inner{
}

.page-course__route--guid p{
    font-size: 1.4rem;
    margin-top: 1.5rem;
}

.page-course__shop{
    padding: 2rem;
    background-color: #FEFEF1;
    margin-top: 2rem;
    border-radius: 1.5rem;
    position: relative;
}

.page-course__shop.-reservation{
    background-color: var(--c-lblue);
}

.page-course__shop dd{
    overflow-wrap: anywhere;
    font-size: 1.4rem;
}

.page-course__btn{
    position: absolute;
    right: 2rem;
    top: 1.5rem;
}

.page-course__image{
    width: calc(30% - 5rem);
    padding-top: 2rem;
}
@media only screen and (max-width: 767px) {
    .page-course__image{
        width: 100%;
    }
}

.page-course__image figcaption{
    font-size: 1.4rem;
    text-align: center;
}

.page-course__image img{
    border-radius: 2rem;
}

.page-course__route--move{
    position: relative;
    padding-left: 4rem;
    margin-top: 4rem;
}

.page-course__route--move::before{
    content: "";
    display: block;
    width: 2rem;
    height: 2rem;
    background: url(../images/arrow_route_move.svg) no-repeat;
    background-size: contain;
    position: absolute;
    left: -0.8rem;
    top: 0.5rem;
}

.page-column article{
    background-color: #FFF;
    padding-bottom: 10rem;
}

.page-column__intro{
    padding: 8rem 0;
    background-size: cover;
    background-position: calc();
}
@media only screen and (max-width: 767px) {
    .page-column__intro{
        padding: 8rem 3rem;
    }
}

.page-column__intro--inner{
    max-width: 1400px;
    margin: 0 auto;
    background-color: rgba(255,255,255,0.7);
    padding: 4rem 10rem 4rem 6rem;
    border-radius: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media only screen and (max-width: 1480px) {
    .page-column__intro--inner{
        margin: 0 4rem;
    }
}
@media only screen and (max-width: 767px) {
    .page-column__intro--inner{
        flex-direction: column;
        padding: 4rem;
    }
}

.page-column__intro--left{
    width: calc(50% - 3rem);
}
@media only screen and (max-width: 767px) {
    .page-column__intro--left{
        width: 100%;
    }
}

.page-column__intro--special{
    font-size: 2.6rem;
    font-weight: 700;
}

.page-column__intro--h1{
    font-size: 3.8rem;
    margin-top: 2rem;
    line-height: 1.6;
}

.page-column__intro--date{
    font-size: 2rem;
    margin-top: 2rem;
}

.page-column__intro--right{
    width: 50%;
}
@media only screen and (max-width: 767px) {
    .page-column__intro--right{
        width: 100%;
        margin-top: 3rem
    }
}

.page-column__intro--toc__title{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-column__intro--toc__title strong{
    display: block;
    font-size: 2.4rem;
}

.page-column__intro--toc__title::after{
    content: "";
    display: block;
    width: calc(100% - 6rem);
    height: 2px;
    background-color: #000;
}

.page-column__intro--toc{
    margin-top: 2rem;
}

.page-column__intro--toc li{
    position: relative;
    font-weight: 700;
    font-size: 2rem;
    padding-left: 6rem;
    margin-top: 1.5rem;
}

.page-column__intro--toc li span{
    position: absolute;
    left: 0;
}

.page-column__article{
    max-width: 1000px;
    margin: 10rem auto 0;
    position: relative;
    clear: both;
}
@media only screen and (max-width: 767px) {
    .page-column__article{
        padding: 0 3rem;
    }
}

.page-column__article::after{
    content: attr(data-toc);
    position: absolute;
    right: 0;
    top: 2rem;
    font-size: 7.7rem;
    color: #707070;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    opacity: 0.25;
}
@media only screen and (max-width: 767px) {
    .page-column__article::after{
        right: 2rem;
    }
}

.page-column__article--theme{
    font-size: 2rem;
    position: relative;
}

.page-column__article--theme strong{
    background-color: #FFF;
    position: relative;
    z-index: 1;
    display: inline-block;
    padding-right: 2rem;
}

.page-column__article--theme::after{
    content: "";
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    background-color: #000;
    position: absolute;
}

.page-column__article--h2{
    font-size: 3.6rem;
    margin-top: 2rem;
    margin-bottom: 6rem;
    padding-right: 9rem;
}

.page-column__article--h3{
    font-size: 2.6rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
    border-left: 0.5rem solid var(--c-blue);
    padding-left: 1rem;
}

.page-column__article--h4{
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
    margin-left: 1.6rem;
}

.page-column__article--h4::before{
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
    width: 1.4rem;
    height: 0.4rem;
    background-color: var(--c-blue);
}

.page-column__article p{
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.9;
    margin-top: 3rem;
}

.page-column__article--memo{
    clear: both;
    background-color: #f5f5f5;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    margin-top: 3rem;
}

.page-column__article--memo p:first-child{
    margin-top: 0;
}

.page-column__article--memo a{
   text-decoration: underline;
}

.page-column__article--memo .cmn__list{
    margin-top: 0;
}

.page-column__article--memo .cmn__list li{
    font-size: 1.4rem;
}

.page-column__article--image{
    margin-top: 3rem;
}

.page-column__article--image.-right{
    float: right;
    margin: 0 0 3rem 3rem;
    width: 46.8rem;
}
@media only screen and (max-width: 767px) {
    .page-column__article--image.-right{
        float: none;
        text-align: center;
        margin: 3rem 0 0;
        width: 100%;
    }
}

.page-column__article--image img{
    border-radius: 2rem;
}

.-clear{
    clear: both;
}

.page-column__shop{
    padding: 2rem;
    background-color: #FEFEF1;
    margin-top: 3rem;
    border-radius: 1.5rem;
    position: relative;
}

.page-column__shop.-reservation{
    background-color: var(--c-lblue);
}

.page-column__shop dt{
    font-size: 2rem;
}

.page-column__shop dd{
    overflow-wrap: anywhere;
    margin-top: 1rem;
}

.page-column__btn{
    position: absolute;
    right: 2rem;
    top: 1.5rem;
}

.page-course__list{
    padding-top: 4rem;
}

.page-other__content{
    padding: 12rem 0;
}

.page-other__content{
    padding: 12rem 0;
}

.page-other__content--h2{
    font-size: 4rem;
    display: block;
    text-align: center;
}

.page-other__content--list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 4rem;
    gap: 5rem 2rem;
}
@media only screen and (max-width: 767px) {
    .page-other__content--list{
        flex-wrap: wrap;
        gap: 5rem 2rem;
    }
}

.page-other__content--list::after{
    content: "";
    display: block;
    width: calc(33.33% - 3rem);
}

.page-other__content--item{
    width: calc(33.33% - 3rem);
}
@media only screen and (max-width: 767px) {
    .page-other__content--item{
        width: calc(50% - 2rem);
    }
}

.page-other__content--item figure{
    width: 43.1rem;
    height: 23.2rem;
    overflow: hidden;
    border-radius: 2rem;
}
@media only screen and (max-width: 767px) {
    .page-other__content--item figure{
        width: 100%;
        height: 23.2rem;
    }
}

.page-other__content--item figure img{
    width: 43.1rem;
    height: 23.2rem;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s;
}
@media only screen and (max-width: 767px) {
    .page-other__content--item figure img{
        width: 100%;
        height: 23.2rem;
    }
}

.page-other__content--item a:hover{
    color: #4081F3;
}

.page-other__content--item a:hover img{
    transform: scale(1.1);
}

.page-other__content--h3{
    font-size: 2.2rem;
    margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
    .page-other__content--h3{
        font-size: 2.8rem;
        line-height: 1.7;
    }
}

.slick-track {
    display: flex !important;
    align-items: center;
}
.slick-slide {
    height: auto !important;
}

/*lang*/
.lang-teaser{
    text-align: center;
    min-height: 50rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/*aimation*/
.move-top{
	opacity: 0;
	transform: translateY(20%);
}

.move-top.on{
	opacity: 1;
	transform: translateY(0);
	transition: all 1s ease-out;
}

.move-fade{
	opacity: 0;
}

.move-fade.on{
	opacity: 1;
	transition: all 1s;
}

[data-delay="1"]{
	transition-delay: 0s !important;
}

[data-delay="2"]{
	transition-delay: 0.2s !important;
}

[data-delay="3"]{
	transition-delay: 0.4s !important;
}

[data-delay="4"]{
	transition-delay: 0.6s !important;
}

[data-delay="5"]{
	transition-delay: 0.8s !important;
}

[data-delay="6"]{
	transition-delay: 1s !important;
}

[data-delay="7"]{
	transition-delay: 1.2s !important;
}

[data-delay="8"]{
	transition-delay: 1.4s !important;
}

[data-delay="9"]{
	transition-delay: 1.6s !important;
}

[data-delay="10"]{
	transition-delay: 1.8s !important;
}

[data-delay="11"]{
	transition-delay: 2s !important;
}

[data-delay="12"]{
	transition-delay: 2.2s !important;
}

[data-delay="13"]{
	transition-delay: 2.4s !important;
}

[data-delay="14"]{
	transition-delay: 2.6s !important;
}

[data-delay="15"]{
	transition-delay: 2.8s !important;
}

[data-delay="16"]{
	transition-delay: 3s !important;
}

[data-delay="17"]{
	transition-delay: 3.2s !important;
}

[data-delay="18"]{
	transition-delay: 3.4s !important;
}

[data-delay="19"]{
	transition-delay: 3.6s !important;
}

[data-delay="20"]{
	transition-delay: 3.8s !important;
}
