* {
	list-style: none;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	line-height: 1.5;
	text-decoration: none;
}
html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}
body {
	background-color: #fafafa;
	color: #050505;
	font-size: 1.8rem;
	font-family: sans-serif;
}
/*----------------------------------
ヘッダー
----------------------------------*/
header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	background-color: rgba(250, 250, 250, 0.9);
	color: #050505;
}
.header {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.header__logo {
	width: 5.6%;
	min-width: 70px;
	margin-left: 1%;
}
.header__logo--img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
.header__menu {
	width: 21.2%;
	min-width: 290px;
	height: 80px;
	margin-right: 1%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}
.header__menu-link {
	width: 88.2%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}
.header__menu-link-list {
	width: 44.4%;
	margin: 0 2.8%;
}
.header__menu-link-list--btn {
	display: inline-block;
	width: 100%;
	padding: 10.5px 0;
	border-radius: 5px;
	box-shadow: 1px 1px #000064;
	background-color: #00bbff;
	color: #050505;
	text-align: center;
}
.header__menu-link-list--btn:hover {
	position: relative;
	top: 4%;
	left: 0.6%;
	box-shadow: none;
	background-color: #4ccfff;
	color: #525252;
}
/*-------------------------------------
ハンバーガーメニュー
-------------------------------------*/
#header__menu-hamburger {
	z-index: 4;
	padding: 10px 9px 10px 9px;
	cursor: pointer;
}
#header__menu-hamburger-click {
	display: inline-block;
	width: 30px;
	padding-bottom: 28px;
	vertical-align: middle;
}
.header__menu-hamburger-click--border, .header__menu-hamburger-click--border:before, .header__menu-hamburger-click--border:after {
	display: block;
	position: absolute;
	z-index: 5;
	width: 30px;
	padding-bottom: 4px;
	border-radius: 3px;
	background: #050505;
	content: '';
	cursor: pointer;
	transition: all 0.4s;
}
.header__menu-hamburger-click--border:before {
	top: 300%;
}
.header__menu-hamburger-click--border:after {
	top: 600%;
}
#header__menu-hamburger.active .header__menu-hamburger-click--border {
	-webkit-transform: translateY(300%) rotate(-45deg);
	transform: translateY(300%) rotate(-45deg);
}
#header__menu-hamburger.active .header__menu-hamburger-click--border:before {
	opacity: 0;
	-webkit-transform: translateY(-600%) rotate(45deg);
	transform: translateY(-600%) rotate(45deg);
}
#header__menu-hamburger.active .header__menu-hamburger-click--border:after {
	-webkit-transform: translateY(-600%) rotate(90deg);
	transform: translateY(-600%) rotate(90deg);
}
#nav {
	position: fixed;
	top: 0;
	right: -326px;
	width: 326px;
	padding: 0 20px;
	overflow: auto;
	background-color: #00bbff;
	color: #050505;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
#nav.open {
	position: fixed;
	right: 0;
	top: 0;
	z-index: 3;
}
.nav--margintop {
	padding: 20px 0;
}
.nav--ttl {
	margin-bottom: 20px;
	border-bottom: 1px solid #050505;
	font-size: 2.4rem;
}
.nav__pagelink {
	position: relative;
	left: 1rem;
	text-indent: -1rem;
}
.nav__pagelink:not(:last-of-type) {
	display: block;
	margin: 20px 0;
}
.nav__pagelink:last-of-type {
	margin-bottom: 40px;
}
.nav__pagelink::before {
	margin-right: 1rem;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	content: "\f0da";
}
.nav__pagelink--color {
	background-color: #00bbff;
	color: #050505;
}
.nav__pagelink--color:hover {
	background-color: #00bbff;
	color: #f0f0f0;
}
#bgnav {
	display: none;
	opacity: 0;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
	background-color: #9f9f9f;
	color: #050505;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
#bgnav.show {
	display: block;
	opacity: 0.5;
}
/*--------------------------------
ファーストビュー
--------------------------------*/
.firstview {
	padding-top: 80px;
	overflow: hidden;
}
.firstview__main {
	position: relative;
	overflow: hidden;
}
.firstview__main--img {
	display: block;
	width: 100%;
	height: auto;
}
.firstview__main-ttl {
	display: inline;
	position: absolute;
	top: 10%;
	left: 5%;
	color: #00bbff;
	font-size: 3.6rem;
	line-height: 2.5;
	font-family: 'Kosugi Maru', sans-serif;
	letter-spacing: 0.3rem;
	text-shadow: 2px 2px 2px #000064;
}
.firstview__main-ttl--line {
	display: inline-block;
	background: url("../images/normal/ttl_border.png");
	background-position: 0 100%;
	background-repeat: no-repeat;
	-webkit-transform: rotate(-10deg);
	transform: rotate(-10deg);
}
.firstview__main-ttl--large {
	font-size: 5rem;
}
.firstview__main-ttl--position {
	position: relative;
	right: -11.8%;
}
.sp {
	display: none;
}
.firstview__plan {
	padding: 0.3%;
	font-size: 2.4rem;
	text-align: center;
	background-color: #ffc450;
	color: #050505;
}
.firstview__text {
	width: 80%;
	margin: 3.1% auto;
	text-align: center;
}
.pc {
	display: block;
}
/*--------------------------------
クルーズ旅行の4つのポイント
--------------------------------*/
.point {
	width: 100%;
	padding-top: 80px;
	overflow: hidden;
	background-image: url("../images/normal/bg.png");
	background-repeat: repeat-y;
	background-size: contain;
}
#point {
	margin: -80px auto 4.2% auto;
	padding-top: 80px;
}
.point__ttl {
	width: 90%;
	text-align: center;
}
.point__ttl--sub::before, .point__ttl--sub::after {
	content: "～";
}
.point__ttl--main {
	font-size: 3.6rem;
}
.point__ttl--num {
	color: #ffc450;
	font-size: 5rem;
}
.point__ttl--sub, .point__objbox-obj--ttl {
	font-size: 2.4rem;
}
.point__objbox {
	width: 48.2%;
	margin: 0 auto;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	counter-reset: number 0;
}
.point__objbox-obj {
	width: 43.6%;
	padding: 3.2%;
	border-radius: 20px;
	box-shadow: 2px 2px 2px #ccc;
	background-color: #fafafa;
	color: #050505;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
}
.point__objbox-obj:nth-of-type(1), .point__objbox-obj:nth-of-type(2) {
	margin: 0 3.2% 6.5% 3.2%;
}
.point__objbox-obj:nth-of-type(3), .point__objbox-obj:nth-of-type(4) {
	margin: 0 3.2% 10.8% 3.2%;
}
.point__objbox-obj--border {
	margin-bottom: 1.24%;
	border-bottom: 6px dotted #ffc450;
}
.point__objbox-obj--border::before {
	float: left;
	color: #ffc450;
	font-size: 7.2rem;
	line-height: 1.0;
	content: counter(number)".";
	counter-increment: number 1;
}
.point__objbox-obj--border::after {
	display: block;
	clear: both;
	content: '';
}
.point__objbox-obj-imgbox {
	margin-top: auto;
	margin-bottom: 5.7%;
	padding-top: 11.4%;
	text-align: center;
}
.point__objbox-obj-imgbox--img {
	width: 100%;
	height: auto;
	border-radius: 50%;
	vertical-align: bottom;
}
.point__objbox-obj--second {
	margin-bottom: 1.8rem;
}
.point__objbox-obj--icon::before {
	margin-right: 1.5%;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	content: "\f00c";
}
/*------------------------------------------
ファミリー向けには「カジュアルクラス」がおすすめ
------------------------------------------*/
.class {
	width: 100%;
	height: auto;
	padding-top: 80px;
}
#casual_class {
	margin: -80px auto 2.1% auto;
	padding-top: 80px;
}
.class--ttl {
	width: 90%;
	font-size: 3.6rem;
	text-align: center;
}
.class--txt {
	width: 34.3%;
	margin: 0 auto 4.2% auto;
}
.class__obj {
	width: 60%;
	margin: 0 auto;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.class__obj:nth-of-type(2) {
	margin: 5.2% auto;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.class__obj:nth-of-type(3) {
	margin-bottom: 5.2%;
}
.class__obj-imgbox {
	width: 48.4%;
	height: auto;
}
.class__obj-imgbox--img:nth-of-type(odd), .class__obj-imgbox--img:nth-of-type(2) {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
.class__obj-description {
	width: 48.4%;
}
.class__obj-description--name {
	font-size: 2.4rem;
	font-weight: bold;
}
.class__obj-description--txt {
	padding-top: 0.9%;
	border-top: 6px dotted #00bbff;
}
/*------------------------------------------
よくある質問
------------------------------------------*/

.qa {
	width: 100%;
	padding-top: 80px;
	overflow: hidden;
	background-image: url("../images/normal/bg.png");
	background-repeat: repeat-y;
	background-size: contain;
}
#question {
	margin: -80px auto 4.2% auto;
	padding-top: 80px;
}
.qa--ttl {
	width: 90%;
	font-size: 3.6rem;
	text-align: center;
}
.qa__obj {
	width: 70%;
	margin: 0 auto 3.1% auto;
	padding: 1.6%;
	border-radius: 20px;
	box-shadow: 2px 2px 2px #ccc;
	background-color: #fafafa;
	color: #050505;
}
.qa__obj:nth-of-type(3) {
	margin: 0 auto 5.2% auto;
}
.qa__obj--question, .qa__obj--answer {
	position: relative;
	padding-left: 2.5em;
}
.qa__obj--answer {
	margin-top: 0.4%;
	padding-top: 0.4%;
	border-top: 6px dotted #ffc450;
}
.qa__obj--question::before, .qa__obj--answer::before {
	position: absolute;
	left: 0;
	color: #ffc450;
	font-size: 3.6rem;
	line-height: 1;
}
.qa__obj--question::before {
	bottom: 0;
	content: "Q.";
}
.qa__obj--answer::before {
	content: "A.";
}
/*------------------------------------------------
JTBはクルーズマスター・クルーズコンサルタント数日本一
------------------------------------------------*/
.guide {
	padding-top: 80px;
}
#master_consultant {
	margin: -80px auto 4.2% auto;
	padding-top: 80px;
}
.guide--ttl {
	width: 90%;
	font-size: 3.6rem;
	text-align: center
}
.guide__symbol {
	margin-bottom: 1%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
}
.guide__symbol-imgbox {
	width: 20%;
	height: auto;
	margin: 0 1%;
}
.guide__symbol-imgbox-img {
	width: 100%;
	height: auto;
}
.guide__note {
	margin-bottom: 3.1%;
	text-align: center;
}
.guide__note--content {
	display: inline-block;
	position: relative;
	padding-left: 1em;
	text-align: left;
}
.guide__note--content::before {
	position: absolute;
	left: 0;
	top: 0;
	content: "※";
}
.guide--txt {
	width: 50%;
	margin: 0 auto 3.1% auto;
	padding: 3.6%;
	border: 6px solid #00bbff;
}
/*------------------------------------------------
フッター
------------------------------------------------*/

footer {
	background-image: url("../images/normal/bg_iruka.png"), url("../images/normal/bg_wave.png");
	background-position: 15.6% 0, center center;
	background-size: 10.4% auto, cover;
	background-repeat: no-repeat, no-repeat;
}
.copyright {
	padding: 6.8% 0 2% 0;
	text-align: center;
}
