@charset "utf-8";

/* =============================================================================
    font-family
============================================================================= */
@font-face {
	font-family: 'Noto Sans JP';
	font-weight: 100;
	src: url('../_fonts/NotoSansJP-Thin.otf') format("opentype");
	font-display: block;
}
@font-face {
	font-family: 'Noto Sans JP';
	font-weight: 300;
	src: url('../_fonts/NotoSansJP-Light.otf') format("opentype");
	font-display: block;
}
@font-face {
	font-family: 'Noto Sans JP';
	font-weight: 400;
	src: url('../_fonts/NotoSansJP-Regular.otf') format("opentype");
	font-display: block;
}
@font-face {
	font-family: 'Noto Sans JP';
	font-weight: 500;
	src: url('../_fonts/NotoSansJP-Medium.otf') format("opentype");
	font-display: block;
}
@font-face {
	font-family: 'Noto Sans JP';
	font-weight: 700;
	src: url('../_fonts/NotoSansJP-Bold.otf') format("opentype");
	font-display: block;
}
@font-face {
	font-family: 'Noto Sans JP';
	font-weight: 900;
	src: url('../_fonts/NotoSansJP-Black.otf') format("opentype");
	font-display: block;
}
@font-face {
	font-family: 'Work Sans';
	font-weight: 400;
	src: url('../_fonts/WorkSans-Regular.ttf') format("truetype");
	font-display: block;
}
@font-face {
	font-family: 'jtb-opt';
	src: url("../_fonts/jtb-opt.ttf") format("truetype"), url("../_fonts/jtb-opt.woff") format("woff"), url("../_fonts/jtb-opt.svg#jtb-opt") format("svg");
	font-weight: normal;
	font-style: normal;
}



/* =============================================================================
    reset
============================================================================= */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td{
	margin:0;
	padding:0;
}
table{
	border-collapse:collapse;
	border-spacing:0;
}
fieldset, img{
	border:0;
}
address, caption, cite, code, dfn, em, strong, th, var{
	font-style:normal;
	font-weight:normal;
}
ol, ul{
	list-style:none;
}
caption, th{
	text-align:left;
}
h1, h2, h3, h4, h5, h6{
	font-size:100%;
	font-weight:normal;
}
q:before, q:after{
	content:'';
}
abbr, acronym{
	border:0;
}
strong, em{
	font-weight: medium;
}
figure{
	margin: 0;
	padding: 0;
}
input:focus, textarea:focus, select:focus, button:focus{
	outline: none;
}

/* =============================================================================
    common
============================================================================= */
html{
	-webkit-text-size-adjust: 100%;
	scroll-behavior: auto!important;
	font-size: 62.5%;
}
body{
	font-size: 1.6rem;
	font-family: "Work Sans", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	color: #323743;
	line-height: 1.5;
	background: #fff;
}
@media screen and (max-width: 759px){
    body{
        font-size: 1.3rem;
    }
}
body *{
	box-sizing: border-box;
}

/* clearfix */
.clearfix:after {
    content:".";
    display:block;
    height:0;
    clear:both;
    visibility:hidden;
}
.clearfix {
    display:inline-block;
    min-height:1%;  /* for IE 7*/
}

/* Hides from IE-mac \*/
* html .clearfix{height: 1%;}
.clearfix{display: block;}
/* End hide from IE-mac */

/* 共通リンク色・別ウィンドウ */
a, a:link, a:visited {
	color: #323743;
	text-decoration: none;
}
@media screen and (min-width: 760px){
    a:hover {
        color: #3498DB;
        text-decoration: none;
    }
}

/* 別ウィンドウ */
a.link-blank:after{
	margin-left: 10px;
	font-family: 'jtb-opt' !important;
	content: "\e900";
	text-decoration: none;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	vertical-align: middle;
}

/* テキストリンク */
.link-txt, .link-txt:link, .link-txt:visited {
	color: #3498DB;
	text-decoration: none;
}
@media screen and (min-width: 760px){
    .link-txt:hover {
        color: #3498DB;
        text-decoration: underline;
    }
}

/*  表示・非表示
============================================================================= */
@media screen and (min-width: 760px){
    .pc-none{
        display: none;
    }
}
@media screen and (max-width: 759px){
    .sp-none{
        display: none;
    }
}

/* =============================================================================
    ボタンのスタイル
============================================================================= */
/*  基本
============================================================================= */
.button {
	min-width: 16rem;
	padding: 15px 35px;

    font-weight: 700;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
    outline: none;
    -webkit-transition: border-radius .3s;
    -o-transition: border-radius .3s;
    transition: border-radius .3s;
    line-height: 1;
}
@media screen and (min-width: 760px){
    .button:hover {
        border-radius: 40px;
        -webkit-transition: border-radius .3s;
        -o-transition: border-radius .3s;
        transition: border-radius .3s;
    }
}
.button + .button {
    margin-left: 10px;
}
/*IEで親要素のactiveセレクターが無視されないように*/
.button span,.button i {
    pointer-events: none;
}
.button__text {
    font-weight: 700;
}

/*  赤ボタン
============================================================================= */
.button--accent {
    background: #D02335;
    color: #fff!important;
    position: relative;
    overflow: hidden;
}
.button--accent:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    background: #ffd2d2;
    border-radius: 100%;
    opacity: .6;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    /*下記の値はボタンのサイズによる*/
    width: 230px;
    height: 230px;
    margin-left: -115px;
    margin-top: -115px;
}
.button--accent:not(:active):before {
    -webkit-animation: ripple 1s ease-out;
    animation: ripple 1s ease-out;
}
.button--accent:before {
    visibility: hidden;
}
.button--accent:focus:before {
    visibility: visible;
}
.button--accent.is-disabled {
    pointer-events: none;
    cursor: initial;
    color: #95999E;
    background: rgba(192, 197, 203, 0.4);
}

/*  青ボタン
============================================================================= */
.button--contained {
    background: transparent -webkit-linear-gradient(338deg, #3498DB 0%, #52C8FF 100%) 0% 0% no-repeat padding-box;
    background: transparent -o-linear-gradient(338deg, #3498DB 0%, #52C8FF 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(112deg, #3498DB 0%, #52C8FF 100%) 0% 0% no-repeat padding-box;
    color: #fff!important;
    position: relative;
    overflow: hidden;
}
.button--contained:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    background: #c6edff;
    border-radius: 100%;
    opacity: .6;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    /*下記の値はボタンのサイズによる*/
    width: 230px;
    height: 230px;
    margin-left: -115px;
    margin-top: -115px;
}
.button--contained:not(:active):before {
    -webkit-animation: ripple 1s ease-out;
    animation: ripple 1s ease-out;
}
.button--contained:before {
    visibility: hidden;
}
.button--contained:focus:before {
    visibility: visible;
}
.button--contained.is-disabled {
    pointer-events: none;
    cursor: initial;
    color: #95999E;
    background: rgba(192, 197, 203, 0.4);
}

/*  テキストボタン
============================================================================= */
.button--text {
    color: #3498DB!important;
    position: relative;
    position: relative;
    overflow: hidden;
    background-color: transparent;
}
.button--text:before {
    margin-top: -0.85em;
}
.button--text:after {
    margin-top: .5rem;
    height: .2rem;
    content: "";
    display: block;
    width: 0;
    background: transparent -webkit-linear-gradient(338deg, #3498DB 0%, #52C8FF 100%) 0% 0% no-repeat padding-box;
    background: transparent -o-linear-gradient(338deg, #3498DB 0%, #52C8FF 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(112deg, #3498DB 0%, #52C8FF 100%) 0% 0% no-repeat padding-box;
    -webkit-transition: width .3s;
    -o-transition: width .3s;
    transition: width .3s;
}
.button--text:hover:after {
    width: 100%;
    -webkit-transition: width .3s;
    -o-transition: width .3s;
    transition: width .3s;
}
.button--text:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    background: #9fe1ff;
    border-radius: 100%;
    opacity: .6;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    /*下記の値はボタンのサイズによる*/
    width: 230px;
    height: 230px;
    margin-left: -115px;
    margin-top: -115px;
}
.button--text:not(:active):before {
    -webkit-animation: ripple 1s ease-out;
    animation: ripple 1s ease-out;
}
.button--text:before {
    visibility: hidden;
}
.button--text:focus:before {
    visibility: visible;
}
.button--text.is-disabled {
    pointer-events: none;
    color: #95999E;
}

/*  罫線ボタン
============================================================================= */
.button--outlined {
    background: transparent -webkit-linear-gradient(338deg, #3498DB 0%, #52C8FF 100%) 0% 0% no-repeat padding-box;
    background: transparent -o-linear-gradient(338deg, #3498DB 0%, #52C8FF 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(112deg, #3498DB 0%, #52C8FF 100%) 0% 0% no-repeat padding-box;
    color: #3498DB!important;
    position: relative;
    z-index: 0;
    position: relative;
    overflow: hidden;
}
.button--outlined:hover::after {
    -webkit-transition: border-radius .3s;
    -o-transition: border-radius .3s;
    transition: border-radius .3s;
    border: inherit;
    border-radius: 40px;
}
.button--outlined::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: border-radius .3s;
    -o-transition: border-radius .3s;
    transition: border-radius .3s;
}
.button--outlined::after {
    width: calc(100% - .6rem);
    height: calc(100% - .6rem);
    z-index: -2;
    background: #fff;
    margin: .3rem;
}
.button--outlined:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    background: #9fe1ff;
    border-radius: 100%;
    opacity: .6;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    /*下記の値はボタンのサイズによる*/
    width: 230px;
    height: 230px;
    margin-left: -115px;
    margin-top: -115px;
}
.button--outlined:not(:active):before {
    -webkit-animation: ripple 1s ease-out;
    animation: ripple 1s ease-out;
}
.button--outlined:before {
    visibility: hidden;
}
.button--outlined:focus:before {
    visibility: visible;
}
.button--outlined.is-disabled {
    pointer-events: none;
    cursor: initial;
    color: #95999E;
    background: rgba(192, 197, 203, 0.4);
}

/*  アイコンボタン
============================================================================= */
.button--icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: transparent -webkit-linear-gradient(338deg, #3498DB 0%, #52C8FF 100%) 0% 0% no-repeat padding-box;
    background: transparent -o-linear-gradient(338deg, #3498DB 0%, #52C8FF 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(112deg, #3498DB 0%, #52C8FF 100%) 0% 0% no-repeat padding-box;
    color: #3498DB!important;
    position: relative;
    z-index: 0;
    position: relative;
    overflow: hidden;
}
@media screen and (min-width: 760px){
    .button--icon:hover::after {
        -webkit-transition: border-radius .3s;
        -o-transition: border-radius .3s;
        transition: border-radius .3s;
        border: inherit;
        border-radius: 40px;
    }
}
.button--icon::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: border-radius .3s;
    -o-transition: border-radius .3s;
    transition: border-radius .3s;
}
.button--icon::after {
    width: calc(100% - .6rem);
    height: calc(100% - .6rem);
    z-index: -2;
    background: #fff;
    margin: .3rem;
}
.button--icon:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    background: #9fe1ff;
    border-radius: 100%;
    opacity: .6;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    /*下記の値はボタンのサイズによる*/
    width: 230px;
    height: 230px;
    margin-left: -115px;
    margin-top: -115px;
}
.button--icon:not(:active):before {
    -webkit-animation: ripple 1s ease-out;
    animation: ripple 1s ease-out;
}
.button--icon:before {
    visibility: hidden;
}
.button--icon:focus:before {
    visibility: visible;
}
.button--icon.is-disabled {
    pointer-events: none;
    cursor: initial;
    color: #95999E;
    background: rgba(192, 197, 203, 0.4);
}
.button__icon {
    padding-right: .5rem;
}

/*  波紋のアニメーション
============================================================================= */
@-webkit-keyframes ripple {
    0% {
        -webkit-transform: scale(0);
    }
    20% {
        -webkit-transform: scale(1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1);
    }
}
@keyframes ripple {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    20% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* =============================================================================
    見出し
============================================================================= */
.page-title-h1{ font-size: 3.0rem; font-weight: 500; }
.page-title-h2{ font-size: 2.6rem; font-weight: 500; }
.page-title-h3{ font-size: 2.2rem; font-weight: 500; }
.page-title-h4{ font-size: 1.8rem; font-weight: 500; }
[class^="page-title-"]{ line-height: 1.2; }

@media screen and (max-width: 759px){
    .page-title-h1{ font-size: 2.4rem; }
    .page-title-h2{ font-size: 2.0rem; }
    .page-title-h3{ font-size: 1.8rem; }
    .page-title-h4{ font-size: 1.6rem; }
}

/* =============================================================================
    ページ上に戻るボタン
============================================================================= */
@media screen and (min-width: 760px){
    .btn-pagetop {
        bottom: 30px;
        right: 25px;
        position: fixed;
        z-index: 1000;
        cursor: pointer;
        display: none;
    }
    .btn-pagetop a {
		 background-color: rgba(0, 0, 0, 0.7);
		-moz-border-radius: 50%;
		-webkit-border-radius: 50%;
		border-radius: 50%;
		color: #fff;
		display: block;
		font-size: 14rem;
		height: 44px;
		line-height: 42px;
		text-align: center;
		width: 44px;
	}
    .btn-pagetop a:hover {
        opacity: .8;
    }
    .btn-pagetop a:before {
        font-family: 'jtb-opt' !important;
        text-decoration: none;
        content: "\e971";
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        vertical-align: middle;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    .btn-pagetop a:before {
        display: inline-block;
        text-align: center;
        font-size: 3rem;
        line-height: 50px;
        width: 100%;
        text-align: center;
        color: #333;
    }
}
@media screen and (max-width: 759px){
	.jtb-pagetop-button {
		display: none;
		right: 8px;
		z-index: 3;
		position: fixed;
		right: 20px;
		bottom: 20px;
	}
	.jtb-pagetop-button--upposition{
		bottom: 90px;
	}
	.jtb-pagetop-button__link {
		display: block;
		width: 32px;
		height: 32px;
		background: url(/kaigai_opt/assets/images/ovsfit/1.0/btn-pageTop-sp.svg) 0 0 no-repeat;
		background-size: 32px 32px;
		text-indent: -9999px;
	}
}

/*  パンくず
============================================================================= */
@media screen and (min-width: 760px){
    .jtb-nav-breadcrumb{
        margin: 0 auto;
        max-width: 1246px;
        padding: 0 5px;
        line-height: 1.2;
    }
    .jtb-nav-breadcrumb li{
        position: relative;
        display: inline-block;
        margin-left: 14px;
        font-size: 1.0rem;
        color: #999;
        line-height: 2.1;
    }
    .jtb-nav-breadcrumb li:first-child{
        margin-left: 0;
    }
    .jtb-nav-breadcrumb li:before{
        position: absolute;
        top: 0;
        right: -10px;
        font-size: 1.1rem;
        color: #999;
        line-height: 2.1;
        content: ">";
    }
    .jtb-nav-breadcrumb li:last-child:before {
        display: none;
    }
}
@media screen and (max-width: 759px){
    .jtb-nav-breadcrumb {
        margin: 25px 0;
        padding: 5px 10px;
        line-height: 1.2;
        border-top: solid 1px #e1e1e1;
        border-bottom: solid 1px #e1e1e1;
        background: #fff;
    }
    .jtb-nav-breadcrumb li {
        position: relative;
        display: inline-block;
        margin-right: 5px;
        color: #999;
        line-height: 2.1;
    }
    .jtb-nav-breadcrumb li:not(:first-child) {
        padding-left: 15px;
    }
    .jtb-nav-breadcrumb li:not(:first-child):before{
        position: absolute;
        top: 0;
        left: 0;
        color: #999;
        line-height: 2.1;
        content: ">";
    }
    .jtb-nav-breadcrumb li a{
        font-weight: bold;
    }
}


/* =============================================================================
    ページ
============================================================================= */
.tkt-contents{
	padding-top: 40px;
}
.sect .page-title-h2, .sect .page-title-h3{
	text-align: center;
}
.sect .page-title-h2 em{
	position: relative;
	padding-left: 35px;
	font-weight: 500;
	vertical-align: middle;
}
.sect-in{
	margin-top: 50px;
}
.sect-in:first-of-type{
	margin-top: 25px;
}

/*  h1
============================================================================= */
.head-wrap{
	margin: 15px auto 0;
	max-width: 1246px;
	padding: 0 5px;
	text-align: left;
}
.head-wrap span{
	font-size: 1.0rem;
}
@media screen and (min-width: 760px){
	.head-wrap{
	    min-width: 970px;
	}
	.head-wrap span{
		font-size: 1.4rem;
	}
}

/*  マップ
============================================================================= */
.map-sect{
	margin-top: 25px;
	padding: 50px 0;
	text-align: center;
	background-color: #d9f5ff;
}
@media screen and (min-width: 760px){
	.map-sect{
		min-width: 970px;
	}
}
.map-sect .page-title-h2{
	position: relative;
	padding-bottom: 20px;
}
.map-sect .page-title-h2:after{
	position: absolute;
	left: 50%;
	bottom: 0;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 100px;
	height: 5px;
	display: block;
	content: "";
	background: #323743;
}

body:not(.fixed) .map-sect__box{
	margin: 25px auto 0;
	width: 100%;
	max-width: 1236px;
}
@media screen and (min-width: 760px){
	body:not(.fixed) .map-sect__box{
		min-width: 970px;
	}
}
body:not(.fixed) .map-sect__box-list{
	position: relative;
	padding-top: calc(495 / 1236 * 100%);
	width: 100%;
	height: 0;
	background: url("../_images/map.png") no-repeat center;
	background-size: 100% auto;
}
body:not(.fixed) .map-sect__box-list li{
	position: absolute;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: #fff;
	border-radius: 10px;
}
@media screen and (min-width: 760px){
	.map-hawaii{ left: 70%; top: 50%; }
	.map-guam{ left: 50%; top: 50%; }
	.map-asia{ left: 33%; top: 55%; }
	.map-china{ left: 33%; top: 35%; }
	.map-america{ left: 80%; top: 28%; }
	.map-oceania{ left: 57.38%; top: 75.45%; }
	.map-europe{ left: 17%; top: 20%; }
}
.map-sect__box-list li a{
	position: relative;
	display: block;
	padding: 15px 50px 15px 30px;
	line-height: 1.2;
	color: #fff;
	text-align: center;
	border-radius: 10px;
}
.map-hawaii a{ background-color: #0493ed; }
.map-guam a{ background-color: #12b490; }
.map-asia a { background-color: #f5ad01; }
.map-china a{ background-color: #ec4141; }
.map-america a{ background-color: #ee7009; }
.map-oceania a{ background-color: #25a42a; }
.map-europe a{ background-color: #8d60f2; }

@media screen and (min-width: 760px){
	.map-sect__box-list li a:hover{
		opacity: .6;
		transition: all 0.4s ease;
	}
}
.map-sect__box-list li a:after{
	position: absolute;
	display: block;

	font-family: 'jtb-opt' !important;
	text-decoration: none;
	content: "\e906";
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	vertical-align: middle;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 760px){
	.map-sect__box-list li a:after{
		right: 10px;
		top: 50%;
		-webkit-transform: translate(-0%, -50%);
		-moz-transform: translate(-0%, -50%);
		-ms-transform: translate(-0%, -50%);
		-o-transform: translate(-0%, -50%);
		transform: translate(-0%, -50%);
	}
}
.map-sect__popularity{
	max-width: 1246px;
	margin: 10px auto 0;
	padding: 25px 0;
	border: solid 5px #efefef;
	background: #fff;
}
@media screen and (min-width: 760px){
	.map-sect__popularity{
		min-width: 970px;
	}
}
.map-sect__popularity-list{
	margin-top: 10px;
	padding: 0 5px;
	
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.map-sect__popularity-list li{
	margin: 10px 0 0 10px;
}
.map-sect__popularity-list li a{
	position: relative;
	display: block;
	padding: 15px 50px 15px 20px;
	border-radius: 30px;
	border-width: 2px;
	border-style: solid;
	background: #fff;
}
.popularity-hawaii a{ color: #0493ed;  border-color: #0493ed; }
.popularity-guam a{ color: #12b490; border-color: #12b490; }
.popularity-asia a { color: #f5ad01; border-color: #f5ad01; }
.popularity-china a{ color: #ec4141; border-color: #ec4141; }
.popularity-america a{ color: #ee7009; border-color: #ee7009; }
.popularity-oceania a{ color: #25a42a; border-color: #25a42a; }
.popularity-europe a{ color: #8d60f2; border-color: #8d60f2; }

@media screen and (min-width: 760px){
	.map-sect__popularity-list li a:hover{
		transition: all 0.4s ease;
		color: #fff;
	}
	.popularity-hawaii a:hover{ background: #0493ed; }
	.popularity-guam a:hover{ background: #12b490; }
	.popularity-asia a:hover{ background: #f5ad01; }
	.popularity-china a:hover{ background: #ec4141; }
	.popularity-america a:hover{ background: #ee7009; }
	.popularity-oceania a:hover{ background: #25a42a; }
	.popularity-europe a:hover{ background: #8d60f2; }	
}

.map-sect__popularity-list li a:after{
	position: absolute;
	right: 15px;
	top: 50%;
	-webkit-transform: translate(-0%, -50%);
	-moz-transform: translate(-0%, -50%);
	-ms-transform: translate(-0%, -50%);
	-o-transform: translate(-0%, -50%);
	transform: translate(-0%, -50%);
	display: block;

	font-family: 'jtb-opt' !important;
	text-decoration: none;
	content: "\e905";
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	vertical-align: middle;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.fixed .map-sect__box{
    position: fixed;
    top: -80px;
	width: 100%;
    z-index: 10;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	background-color: rgba(241,254,255,0.9);
}
.fixed .map-sect__box-list{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 0 auto;
	width: 100%;
	max-width: 1246px;
}
.fixed .map-sect__box-list li{

	width: 100%;
}
@media screen and (min-width: 760px){
	.fixed .map-sect__box-list{
			min-width: 970px
	}
}
.fixed .map-sect__box-list li a{
	padding: 10px;
	height: 100%;
	border-radius: 0;
	
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.fixed .map-sect__box-list li a:after{
	display: none;
}



/*  都市一覧から探す
============================================================================= */
.city-sect{
	padding-top: 50px;
}
.city-sect .page-title-h2{
	position: relative;
	padding-bottom: 20px;
	text-align: center;
}
.city-sect .page-title-h2:after{
	position: absolute;
	left: 50%;
	bottom: 0;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 100px;
	height: 5px;
	display: block;
	content: "";
	background: #323743;
}
.city-sect__area{
	margin: 0 auto;
	padding: 50px 5px;
	max-width: 1246px;
}
.city-sect__area .page-title-h3{
	text-align: center;
}
.city-sect__area .page-title-h3:before{
	margin-right: 5px;
	font-size: 4.0rem;
	font-family: 'jtb-opt' !important;
	text-decoration: none;
	content: "\e902";
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	vertical-align: middle;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.city-sect__area-box{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 25px;
	padding: 20px 50px 50px 20px;
}
.city-hawaii .city-sect__area-box{ background: #f5fcff; }
.city-guam .city-sect__area-box{ background: #f3fffd; }
.city-asia .city-sect__area-box{ background: #fffdf3; }
.city-china .city-sect__area-box{ background: #fdf0f3; }
.city-america .city-sect__area-box{ background: #fff7f3; }
.city-oceania .city-sect__area-box{ background: #f4fff2; }
.city-europe .city-sect__area-box{ background: #f8f4ff; }

.city-sect__country{
	margin: 30px 0 0 30px;
	padding: 20px;
	width: calc(100% / 2 - 30px);
	background: #fff;
}
.city-hawaii .city-sect__country,
.city-china .city-sect__country{
	width: calc(100%  - 30px);
}


.city-sect__country .page-title-h4{
	text-align: center;
}
.city-sect__country .page-title-h4:before{
	margin-right: 5px;
	font-family: 'jtb-opt' !important;
	text-decoration: none;
	content: "\e901";
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	vertical-align: middle;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 150%;
}
.city-sect__country-box{
	margin-top: 20px;
}
.city-sect__area-link-main{
	margin: 10px 0 0;
}
.city-hawaii .city-sect__area-link-main,
.city-china .city-sect__area-link-main{
	width: calc(100% / 2 - 5px);
}
.city-hawaii .city-sect__country-box,
.city-china .city-sect__country-box,
.city-hawaii .city-sect__area-link-main,
.city-china .city-sect__area-link-main{
	margin-top: 0;
}

.city-sect__area-link-main a{
	position: relative;
	display: block;
	padding: 15px 30px 15px 10px;
	text-align: center;
	color: #fff;
	border-radius: 8px;
}
.city-hawaii .city-sect__area-link-main a{ background: #0493ed; }
.city-guam .city-sect__area-link-main a{ background: #12b490; }
.city-asia .city-sect__area-link-main a{ background: #f5ad01; }
.city-china .city-sect__area-link-main a{ background: #ec4141; }
.city-america .city-sect__area-link-main a{ background: #ee7009; }
.city-oceania .city-sect__area-link-main a{ background: #25a42a; }
.city-europe .city-sect__area-link-main a{ background: #8d60f2; }

@media screen and (min-width: 760px){
	.city-sect__area-link-main a:hover{
		transition: all 0.4s ease;
		opacity: .6;
	}
}

.city-sect__area-link-main a:after{
	position: absolute;
	right: 10px;
	top: 50%;
	-webkit-transform: translate(-0%, -50%);
	-moz-transform: translate(-0%, -50%);
	-ms-transform: translate(-0%, -50%);
	-o-transform: translate(-0%, -50%);
	transform: translate(-0%, -50%);
	display: block;

	font-family: 'jtb-opt' !important;
	text-decoration: none;
	content: "\e905";
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	vertical-align: middle;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.city-sect__area-link-main a.link-blank:after{
	margin-left: 10px;
	font-family: 'jtb-opt' !important;
	content: "\e900";
	text-decoration: none;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	vertical-align: middle;
}

.city-sect__area-link-list{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	
	margin: 15px 0 0 -15px;
}
.city-sect__area-link-list li{
	margin-left: 15px;
	width: calc(100% / 2 - 15px);
}
.city-hawaii .city-sect__area-link-list li,
.city-china .city-sect__area-link-list li{
	width: calc(100% / 4 - 15px);
}

.city-sect__area-link-list li a{
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%;
	padding: 10px 30px 10px 30px;
}
@media screen and (min-width: 760px){
	.city-sect__area-link-list li:nth-child(-n + 2) a{
		border-top: solid 1px #ccc;
	}
	.city-hawaii .city-sect__area-link-list li:nth-child(-n + 4) a,
	.city-china .city-sect__area-link-list li:nth-child(-n + 4) a{
		border-top: solid 1px #ccc;
	}
	
	.city-hawaii .city-sect__area-link-list li a:hover{ color: #62c3e7; }
	.city-guam .city-sect__area-link-list li a:hover{ color: #63cfb7; }
	.city-asia .city-sect__area-link-list li a:hover{ color: #f4b51f; }
	.city-china .city-sect__area-link-list li a:hover{ color: #ec4141; }
	.city-america .city-sect__area-link-list li a:hover{ color: #72a4f8; }
	.city-oceania .city-sect__area-link-list li a:hover{ color: #f4872f; }
	.city-europe .city-sect__area-link-list li a:hover{ color: #68c36c; }
	
	.city-hawaii .city-sect__area-link-list li a:hover:after{ color: #62c3e7; }
	.city-guam .city-sect__area-link-list li a:hover:after{ color: #63cfb7; }
	.city-asia .city-sect__area-link-list li a:hover:after{ color: #f4b51f; }
	.city-china .city-sect__area-link-list li a:hover:after{ color: #ec4141; }
	.city-america .city-sect__area-link-list li a:hover:after{ color: #72a4f8; }
	.city-oceania .city-sect__area-link-list li a:hover:after{ color: #f4872f; }
	.city-europe .city-sect__area-link-list li a:hover:after{ color: #68c36c; }	
}
.city-sect__area-link-list li a{
	border-bottom: solid 1px #ccc;
}

.city-sect__area-link-list li a:before{
	position: absolute;
	left: 5px;
	top: 50%;
	-webkit-transform: translate(-0%, -50%);
	-moz-transform: translate(-0%, -50%);
	-ms-transform: translate(-0%, -50%);
	-o-transform: translate(-0%, -50%);
	transform: translate(-0%, -50%);
	display: block;
	color: #ccc;
	font-size:150%;

	font-family: 'jtb-opt' !important;
	text-decoration: none;
	content: "\e903";
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	vertical-align: middle;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.city-sect__area-link-list li a:after{
	position: absolute;
	right: 5px;
	top: 50%;
	-webkit-transform: translate(-0%, -50%);
	-moz-transform: translate(-0%, -50%);
	-ms-transform: translate(-0%, -50%);
	-o-transform: translate(-0%, -50%);
	transform: translate(-0%, -50%);
	display: block;
	color: #ccc;

	font-family: 'jtb-opt' !important;
	text-decoration: none;
	content: "\e905";
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	vertical-align: middle;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.city-sect__area-link-list li.blank a:after{
	content: "\e900" !important;
}

.city-sect__area-link-list li a.link-blank:after{
	margin-left: 10px;
	font-family: 'jtb-opt' !important;
	content: "\e900";
	text-decoration: none;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	vertical-align: middle;
}

.city-sect__other{
	margin: 50px 0 0 30px;
	padding-top: 50px;
	width: calc(100% - 30px);
}
.city-sect__other .page-title-h4{
	text-align: center;
}
.city-sect__other-link-list{
	margin-top: 10px;
	
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.city-sect__other-link-list > li a{
	position: relative;
	padding-left: 25px;
}

.city-sect__other-link-citylist{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}


@media screen and (min-width: 760px){
	.city-sect__other-link-list{
		margin-left: -10px;
	}
	.city-sect__other-link-list > li{
		margin: 10px 0 0 20px;
		padding: 10px 20px 10px 0;
		width: calc(100% / 2 - 20px);
		border-bottom: solid 1px #ccc;
	}
	.city-sect__other-link-list > li:last-child{
		border-right: none;
	}
	.city-sect__other-link-list > li:nth-child(-n + 2){
		border-top: solid 1px #ccc;
	}
	.city-sect__other-link-list > li > a:hover{
		transition: all 0.4s ease;
	}
	.city-hawaii .city-sect__other-link-list > li a:hover{ color: #62c3e7; }
	.city-guam .city-sect__other-link-list > li a:hover{ color: #63cfb7; }
	.city-asia .city-sect__other-link-list > li a:hover{ color: #f4b51f; }
	.city-china .city-sect__other-link-list > li a:hover{ color: #ec4141; }
	.city-america .city-sect__other-link-list > li a:hover{ color: #72a4f8; }
	.city-oceania .city-sect__other-link-list > li a:hover{ color: #f4872f; }
	.city-europe .city-sect__other-link-list > li a:hover{ color: #68c36c; }
	
	.city-sect__other-link-citylist{
		margin-left: -10px;
	}
	.city-sect__other-link-citylist li{
		margin: 10px 0 0 10px;
	}
	
}


.city-sect__other-link-list li > a:before{
	position: absolute;
	left: 5px;
	top: 0;
	display: block;
	color: #ccc;

	font-family: 'jtb-opt' !important;
	text-decoration: none;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	vertical-align: middle;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.city-sect__other-link-list li a.link-country:before{ content: "\e901"; }
.city-sect__other-link-list li a.link-city:before{ content: "\e903"; }



/*  お問い合わせボタン
============================================================================= */
.bt-contact{
	margin: 100px auto 0;
	width: 700px;
}
.bt-contact a{
	position: relative;
	display: block;
	padding: 25px 15px;
	color: #323743;
	text-align: center;
	font-size: 3.0rem;
	font-weight: 700;
	border-radius: 8px;
	background: #fffc00;
	box-shadow: 2px 2px 3px #888;
	-webkit-box-shadow: 2px 2px 3px #888;
	-moz-box-shadow: 2px 2px 3px #888;
}
.bt-contact a:hover{
	color: #323743;
	opacity: .6;
	transition: all 0.4s ease;
}
.bt-contact a:after{
	position: absolute;
	right: 15px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	display: block;

	font-family: 'jtb-opt' !important;
	content: "\e905";
    text-decoration: none;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}





@media screen and (max-width: 759px){
	/*  マップ
	============================================================================= */
	.map-sect{
		padding: 20px 0;
	}
	.map-hawaii{ left: 68%; top: 45%; }
	.map-guam{ left: 50%; top: 45%; }
	.map-asia{ left: 33%; top: 55%; }
	.map-china{ left: 33%; top: 32%; }
	.map-america{ right: -2%; top: 28%; }
	.map-oceania{ left: 57.38%; top: 85.45%; }
	.map-europe{ left: 13%; top: 20%; }
	
	.map-sect__box-list li a{
		padding: 10px 10px 15px 10px;
		font-size: 1.0rem;
	}
	.map-sect__box-list li a:after{
		left: 50%;
		bottom: 3px;
		-webkit-transform: translate(-50%, -0%);
		-moz-transform: translate(-50%, -0%);
		-ms-transform: translate(-50%, -0%);
		-o-transform: translate(-50%, -0%);
		transform: translate(-50%, -0%);
	}
	.map-sect__popularity{
		margin: 10px 10px 0;
		padding: 10px 0;
	}
	.map-sect__popularity-list{
		margin-top: 5px; 
	}
	.map-sect__popularity-list li{
		margin: 5px 0 0 5px;
		width: calc(100% / 2 - 5px);
	}
	.map-sect__popularity-list li a{
		padding: 10px 30px 10px 10px;
	}
	.map-sect__popularity-list li a:after{
		right: 10px;
	}
	.fixed .map-sect__box-list li a{
		padding: 2px;
	}

	
	
	/*  都市一覧から探す
	============================================================================= */
	.city-sect{
		padding-top: 20px;
	}
	.city-sect__area{
		padding: 10px 0 0;
	}
	.city-sect__area-box{
		margin-top: 10px;
		padding: 10px 10px 15px;
	}
	.city-hawaii .city-sect__area-link-main, .city-china .city-sect__area-link-main{
		width: 100%;
	}
	.city-sect__country{
		margin: 0;
		padding: 15px 10px;
		width: 100%;
	}
	.city-sect__country:not(:first-of-type){
		margin-top: 10px;
	}
	.city-hawaii .city-sect__country, .city-china .city-sect__country{
		margin: 0;
		padding: 15px 10px;
		width: 100%;
		
	}
	.city-sect__country-box{
		margin-top: 0;
	}
	.city-sect__area-link-list{
		margin: 15px 0 0;
	}
	.city-sect__area-link-list li{
		margin-left: 0;
		width: 100%;
	}
	.city-sect__area-link-list li:first-child a{
		border-top: solid 1px #ccc;
	}
	.city-sect__other-link-list > li > a:before{
		top: 10px;
	}
	.city-sect__other-link-list > li > a:after{
		position: absolute;
		right: 5px;
		top: 50%;
		-webkit-transform: translate(-0%, -50%);
		-moz-transform: translate(-0%, -50%);
		-ms-transform: translate(-0%, -50%);
		-o-transform: translate(-0%, -50%);
		transform: translate(-0%, -50%);
	}
	
	.city-hawaii .city-sect__area-link-list li,
	.city-china .city-sect__area-link-list li{
		margin-left: 0;
		width: 100%;
	}
	.city-sect__other{
		margin: 20px 0 0;
		padding: 20px 0 0;
		width: 100%;
	}
	.city-sect__other-link-list > li > a{
		display: block;
		padding: 10px 25px 10px 25px;
	}
	.city-sect__other-link-list > li{
		width: 100%;
		border-top: solid 1px #ccc;
	}
	.city-sect__other-link-citylist{
		padding-bottom: 10px;
	}
	.city-sect__other-link-citylist{
		margin-left: -10px;
	}
	.city-sect__other-link-citylist li{
		margin: 0 0 0 10px;
	}
	
}

@media screen and (max-width: 350px){
	/*  マップ
	============================================================================= */
	.map-hawaii{ left: 69%; top: 45%; }
	.map-guam{ left: 50%; top: 40%; }
	.map-asia{ left: 31%; top: 57%; }
	.map-china{ left: 33%; top: 25%; }
	.map-america{ right: -7%; top: 28%; }
	.map-oceania{ left: 57.38%; top: 85.45%; }
	.map-europe{ left: 13%; top: 20%; }
}


#sic__breadcrumb {
    margin-bottom: 30px !important;
}

/*  パンくず
-----------------------------------------------------------*/
.breadcrumbs_wrapper{display:flex;align-items:center; max-width: 1246px; margin: 0 auto;}
.breadcrumbs_contents{display:block;width:100%;}
.breadcrumbs_item{display:inline-block;color:#6b6e71;font-size:1.2rem;line-height:2}
.breadcrumbs_item.-home{flex-shrink:0;margin-right:2.6666666667vw}
.breadcrumbs_inner{margin-bottom:-10px;padding-bottom:10px;overflow-x:auto;white-space:nowrap;width:71vw}
.breadcrumbs_item{display:inline-block;color:#323743;line-height:2;margin-right:2.6666666667vw}
.breadcrumbs_item a{color:#c0c5cb}
.breadcrumbs_item:not(:last-child):after{-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);display:inline-block;transform:rotate(-45deg);border:1px solid #c0c5cb;border-top:none;border-left:none;vertical-align:middle;content:"";width:1.0666666667vw;height:1.0666666667vw;margin-top:-.7vw;margin-left:1.3333333333vw}
a.breadcrumbs_anchor{color:#3498db;font-weight:700}
@media screen and (min-width:769px){
.breadcrumbs_item.-home,.breadcrumbs_item{margin-right:10px}
.breadcrumbs_item:last-child{margin-right:0}
.breadcrumbs_inner{width:inherit}
.breadcrumbs_item:not(:last-child):after{width:4px;height:4px;margin-top:-3px;margin-left:4px}
.breadcrumbs_item a:hover{opacity:.6}}

.mv .breadcrumbs{position:absolute;left:0;top:0;padding-left:5px;width:100%;background-color:rgba(255,255,255,.5)}

@media screen and (min-width:769px){
.mv .breadcrumbs{left:10px;padding:2px 10px;width:auto;border-radius:0 0 5px 5px}
}
.mv .breadcrumbs_item a{color:#323743}
.mv .breadcrumbs_item:not(:last-child):after{border-color:#323743}
.f-breadcrumbs{margin-top:20px;padding:20px 0;border-bottom:solid 1px #BCBDC2;background:#f5f5f5}


/*スマホだけ表示*/
@media screen and (min-width:768px){
  .sic__btn-pagetop{ display: none; }
}


