@charset "UTF-8";

:root {
  --fc-blue: #2484b8;
 }
html {
  font-size: 62.5%
}
body {
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.5rem;
  line-height: 2.2rem;
  margin: 0;
  background-color: #2484b8;
}
body, html {
  height: 100%
}
img{
	max-width: 100%;
	height: auto;
}
.flex-box{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-start;
}
.mv_base {
  opacity: 0;
  transition: 1s;
  transform: translate(0, 20px);
  -webkit-transform: translate(0, 20px);
}
.mv {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
.dis-sp{
	display: none;
}
.dis-tab{
	display: none;
}
@media only screen and (max-width: 991px) {
	body {
	  font-size: 1.4rem;
	  line-height: 2rem;
	}
	.dis-tab{
		display: block;
	}
}
@media only screen and (max-width: 767px) {
	.dis-sp{
		display: block;
	}
	.dis-pc{
		display: none;
	}
}

header{
	position: relative;
	z-index: 100;
	padding: 10px 30px 60px;
	justify-content: flex-end!important;
	max-width: 1100px;
	margin: 0 auto;
}
header h1{
	width: 35%;
	position: absolute;
	left: 20px;
	top: 0;
}
header h1 img{
	width: 100%;
	height: auto;
}
.head-title figure{
	display: none;
}
.cruise-head__col{
	justify-content: flex-end;
}
.cruise-head__text{
	width: 63%;
	padding-left: 10px;
	position: relative;
}
.cruise-head__text .btn_movie{
	width: 200px;
	display: block;
	background-color: #fff;
	color: var(--fc-blue);
	padding: 5px 0 9px;
	border-radius: 5px;
	text-align: center;
	font-weight: 700;
	font-size: 20px;
	line-height: 1;
	position: absolute;
	left: 160px;
	bottom: -35px;
}
.container{
	max-width: 960px;
	width: 100%;
	margin: 0 auto;
	padding: 0 30px;
}
.cruise-icon{
	text-align: center;
	margin: 50px 0;
}
.ttl-l{
	border: 3px solid #fff;
	border-radius: 15px;
	padding: 2px 20px;
	display: inline-block;
	font-size: 20px;
	margin-bottom: 10px;
}
@media only screen and (max-width: 1099px) {
	.cruise-head__text .btn_movie{
		left: 12vw;
	}
}
@media only screen and (max-width: 991px) {
	header{
		padding: 10px 30px 50px;
	}
	header h1{
		width: 33%;
	}
	.cruise-head__text .btn_movie{
		width: 150px;
		padding: 4px 0 7px;
		font-size: 16px;
		left: 12vw;
	}
	.cruise-head__text{
		width: 66%;
	}
	.ttl-l{
		font-size: 18px;
	}
}
@media only screen and (max-width: 767px) {
	header{
		padding: 10px 15px;
		z-index: 1;
	}
	.head-title{
		display: flex;
		justify-content: space-between;
	}
	header h1{
		position: relative;
		top: auto;
		left: auto;
		width: 53%;
	}
	.head-title figure{
		width: 45%;
		padding-left: 5px;
		display: block;
	}
	.head-title figure img{
		margin-bottom: 10px;
	}
	.cruise-head__col{
		justify-content: flex-start;
	}
	.cruise-head__text{
		width: 100%;
		padding-left: 0;
	}
	.cruise-head__text h2 img{
		margin: 0 auto;
	}
	.cruise-head__text .btn_movie{
		width: 100%;
		padding: 4px 0 7px;
		font-size: 16px;
		left: auto;
		position: relative;
		bottom: auto;
		margin-top: 10px;
	}
	.cruise-icon{
		margin: 40px 0;
		padding: 0 30px;
	}
	.cruise-icon img{
		max-width: 300px;
	}
}


.cruise-main{
	width: 100%;
	position: relative;
	z-index: 1;
}
.cruise-main__img img{
	width: 100%;
	height: auto;
}
.cruise-instagram{
	position: absolute;
	left: 3%;
	top: 50px;
	width: 60px;
}

/* ラッパー */
.popup-toggle {
  position: absolute;
	right: 60px;
	top: 20vw;
  display: inline-block;
  z-index: 10000;
}

/* inputは非表示 */
.popup-toggle input {
  display: none;
}

/* ボタン部分 */
.popup-btn {
  cursor: pointer;
  background-color: #e60012;
  color: #fff;
  text-align: center;
  font-size: 36px;
  line-height: 42px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex; 
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto;
}

/* ポップアップ本体 */
.popup-content {
  background-color: #fff;
  border-radius: 10px;
  padding: 15px 20px 10px;
  width: 280px;
  position: relative;
  margin-top: 10px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

/* チェックONのときだけ表示 */
.popup-toggle input:checked ~ .popup-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.cruise-status__title{
	margin-bottom: 10px;
}
.cruise-status__title dt{
	color: #000;
	font-size: 20px;
	text-align: center;
	font-weight: 500;
	margin-bottom: 5px;
}
.cruise-status__title dd{
	border-top: 2px solid #000;
	border-bottom: 2px solid #000;
	padding: 5px 0;
	font-size: 28px;
	line-height: 1;
	color: #000;
	text-align: center;
	font-weight: 700;
}
.cruise-status__title dd span{
	color: #000;
}
.cruise-popup__status li{
	border-bottom: 1px solid #000;
	padding-bottom: 5px;
	margin-bottom: 5px;
}
.cruise-popup__status li{
	color: #000;
	font-size: 26px;
	line-height: 1.4;
	font-weight: 700;
}
.cruise-popup__status li p{
	color: #000;
	font-size: 15px;
	line-height: 1.3;
	font-weight: 500;
}
.cruise-status__yes .tel-text,
.cruise-status__yes .tel-text a{
	color: #000;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.3;
	text-align: center;
}
.weather-text{
	color: #000;
	font-size: 14px;
	line-height: 1.3;
	margin-top: 5px;
}
.cruise-popup__icon{
	position: absolute;
	left: 50%;
	top: -25px;
	height: 30px;
	width: auto;
	transform: translateY(0%) translateX(-50%);
  -webkit- transform: translateY(0%) translateX(-50%);
}
.cruise-status__no p{
	font-size: 20px;
	line-height: 28px;
	letter-spacing: -0.2rem;
	color: #000;
	font-weight: 700;
	margin-bottom:10px;
}
@media only screen and (max-width: 991px) {
	.cruise-instagram{
		top: 40px;
		width: 50px;
	}
	.popup-toggle {
		right: 30px;
		top: 20vw;
	}
	.popup-btn {
	  font-size: 24px;
	  line-height: 30px;
	  width: 130px;
	  height: 130px;
	}
	.popup-content {
	  padding: 15px 15px 10px;
	  width: 200px;
	}
	.cruise-status__title{
		margin-bottom: 5px;
	}
	.cruise-status__title dt{
		font-size: 18px;
	}
	.cruise-status__title dd{
		font-size: 23px;
	}
	.cruise-popup__status li{
		font-size: 20px;
	}
	.cruise-popup__status li p{
		font-size: 14px;
	}
	.cruise-status__yes .tel-text,
	.cruise-status__yes .tel-text a{
		font-size: 15px;
	}
	.cruise-popup__icon{
		top: -20px;
		height: 26px;
	}
	.cruise-status__no p{
		font-size: 24px;
		line-height: 28px;
	}
}
@media only screen and (max-width: 767px) {
	.cruise-instagram{
		left: 5%;
		top: 20px;
		width: 40px;
	}
	.popup-toggle {
		position: fixed;
		right: auto;
		top: auto;
		left: 0;
		bottom: 0;
		width: 100%;
	}
	.popup-btn {
	  font-size: 20px;
	  line-height: 30px;
	  width: 100%;
	  height: auto;
	  border-radius: 0;
	  padding: 10px 0;
	}
	.popup-btn br{
		display: none;
	}
	.popup-content {
		width: 95%;
	  max-width: 330px;
	  position: absolute;
	  left: 50%;
	  bottom: 80px;
	  box-shadow: 4px 4px 10px rgba(0,0,0,0.3);
	 	z-index: 1000;

	  transform: translateY(10px) translateX(-50%);
	}

	.popup-toggle input:checked ~ .popup-content {
	  transform: translateY(0) translateX(-50%);
	}
	.cruise-popup__icon{
		top: auto;
		bottom: -25px;
		height: 28px;
		transform: rotate(180deg);
		margin-left: -10px;
	}
}


.cruise-news{
	padding-top: 50px;
	padding-bottom: 50px;
}
.cruise-newsWrap{
	width: 53%;
}
.cruise-newsWrap h2 img{
	height: 34px;
	width: auto;
}
.cruise-newsBox{
	background-color: #fff;
	border-radius: 10px;
	padding: 20px 30px;
	margin-top: 10px;
	height: 140px;
	overflow: scroll;
}
.cruise-newsBox dl{
	justify-content: flex-start;
}
.cruise-newsBox dl:not(:last-child){
	margin-bottom: 10px;
}
.cruise-newsBox dt{
	color: #000;
	margin-right: 10px;
}
.cruise-newsBox dt span {
  background-color: #2584B8;
  color: #fff;
  display: inline-block;
  margin-left: 5px;
  padding: 0 5px 1px;
}
.cruise-newsBox a{
	font-weight: 500;
}
.cruise-operation{
	width: 47%;
	padding-left: 60px;
}
.cruise-reseave-icon{
	width: 150px;
	background-color: #fff;
	color: var(--fc-blue);
	border-radius: 60px;
	text-align: center;
	padding: 5px 0;
	font-size: 18px;
	line-height: 1;
	font-weight: 700;
}
.cruise-operation dl{
	justify-content: flex-start;
	margin-top: 5px;
}
.cruise-operation dt{
	font-size: 34px;
	margin-right: 5px;
	line-height: 1.2;
}
.cruise-operation dd{
	line-height: 1.2;
}
.cruise-operation dd strong{
	font-size: 34px;
}
.cruise-operation dd a{
	color: #fff;
}
@media only screen and (max-width: 991px) {
	.cruise-news{
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.cruise-newsWrap{
		width: 60%;
	}
	.cruise-newsWrap h2 img{
		height: 30px;
	}
	.cruise-newsBox{
		padding: 15px 20px;
	}
	.cruise-newsBox dl{
		display: block;
	}
	.cruise-newsBox dl:not(:last-child){
		margin-bottom: 10px;
	}
	.cruise-operation{
		width: 40%;
		padding-left: 30px;
	}
	.cruise-reseave-icon{
		width: 140px;
		font-size: 16px;
	}
	.cruise-operation dt{
		font-size: 30px;
	}
	.cruise-operation dd strong{
		font-size: 30px;
	}
}
@media only screen and (max-width: 767px) {
	.cruise-news{
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.cruise-newsWrap{
		width: 100%;
	}
	.cruise-newsWrap h2 img{
		height: 24px;
	}
	.cruise-newsBox{
		padding: 15px;
	}
	.cruise-operation{
		width: 100%;
		padding-left: 0;
		margin-top: 30px;
		text-align: center;
	}
	.cruise-reseave-icon{
		font-size: 18px;
		margin: 5px auto 0;
	}
	.cruise-operation dl{
		justify-content: center;
	}
	.cruise-operation dt{
		font-size: 34px;
	}
	.cruise-operation dd strong{
		font-size: 34px;
	}
	.cruise-operation dd{
		text-align: left;
	}
}

.cruise-image01{
	position: relative;
	text-align: center;
}
.cruise-image01-icon{
	position: absolute;
	left: 13%;
	top: 13%;
	width: 240px;
}
@media only screen and (max-width: 1199px) {
	.cruise-image01-icon{
		width: 220px;
	}
}
@media only screen and (max-width: 991px) {
	.cruise-image01-icon{
		left: 7%;
		top: 10%;
		width: 200px;
	}
}
@media only screen and (max-width: 767px) {
	.cruise-image01-icon{
		left: 3%;
		top: 5%;
		width: 130px;
	}
}


.cruise-about__text{
	width: 60%;
}
.cruise-about figure{
	width: 40%;
	text-align: center;
	padding-left: 30px;
	margin-top: -80px;
}
.cruise-flow__wrap01{
	align-items: stretch;
}
.cruise-flow__wrap01 .cruise-flow__col{
	width: 23%;
}
.cruise-flow h4{
	margin-bottom: 5px;
	font-size: 16px;
	font-weight: 500;
}
.cruise-flow__arrow{
	width: 2.66666%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.cruise-flow__wrap02{
	margin-top: 20px;
	margin-bottom: 20px;
}
.cruise-flow__wrap02 .flex-box{
	align-items: stretch;
}
.cruise-flow__wrap02 figure{
	width: 35.83334%;
}
.cruise-flow__wrap02 p{
	width: 23%;
	padding-right: 30px;
}

.cruise-other{
	margin-top: 30px;
}
.cruise-captain{
	width: 40%;
}
.cruise-captain .ttl-l{
	display: block;
	text-align: center;
}
.cruise-captain__col01{
	margin-bottom: 20px;
}
.cruise-captain__col01 p{
	width: 66%;
}
.cruise-captain__col01 figure{
	width: 34%;
	margin-top: -18px;
}
.cruise-captain__col02 figure{
	width: 65%;
	padding-right: 20px;
}
.cruise-captain__col02 p{
	width: 35%;
}
.cruise-present{
	width: 60%;
	padding-left: 80px;
}
.cruise-present{
	align-items: center;
}
.cruise-present figure{
	width: 70%;
}
.cruise-present p{
	width: 30%;
	padding-left: 20px;
}
@media only screen and (max-width: 991px) {
	.cruise-captain{
		width: 40%;
	}
	.cruise-captain__col01 p{
		width: 60%;
	}
	.cruise-captain__col01 figure{
		width: 40%;
	}
	.cruise-captain__col02 figure{
		width: 60%;
	}
	.cruise-captain__col02 p{
		width: 40%;
	}
	.cruise-present{
		width: 60%;
		padding-left: 40px;
	}
	.cruise-present figure{
		width: 60%;
	}
	.cruise-present p{
		width: 40%;
	}
}
@media only screen and (max-width: 767px) {
	.cruise-about__text{
		width: 100%;
	}
	.cruise-about figure{
		width: 100%;
		padding-left: 0;
		margin-top: 20px;
	}
	.cruise-flow{
		margin-top: 40px;
	}
	.cruise-flow__wrap01 .cruise-flow__col{
		width: 100%;
		margin-bottom: 5px;
	}
	.cruise-flow h4{
		font-size: 15px;
	}
	.cruise-flow__arrow{
		width: 100%;
		margin-bottom: 5px;
		transform: rotate(90deg);
	}
	.cruise-flow__wrap02 figure{
		width: 100%;
		margin-bottom: 5px;
	}
	.cruise-flow__wrap02 p{
		width: 100%;
		padding-right: 0;
	}

	.cruise-captain{
		width: 100%;
	}
	.cruise-present{
		width: 100%;
		padding-left: 0;
		margin-top: 30px;
	}
}



.cruise-introduciton .ttl-l{
	display: block;
	width: 340px;
	text-align: center;
	margin-top: 30px;
}
.cruise-introduciton figure{
	width: 55%;
}
.cruise-introduciton dl{
	width: 45%;
	padding-left: 30px;
}
.cruise-introduciton dt{
	font-size: 20px;
	margin-bottom: 15px;
}
@media only screen and (max-width: 991px) {
	.cruise-introduciton .ttl-l{
		width: 300px;
	}
	.cruise-introduciton dt{
		font-size: 18px;
	}
}
@media only screen and (max-width: 767px) {
	.cruise-introduciton figure{
		width: 100%;
	}
	.cruise-introduciton dl{
		width: 100%;
		padding-left: 0;
		margin-top: 10px;
	}
}


.cruise-info__inner{
	position: relative;
}
.cruise-info h2{
	border-bottom: 2px solid #fff;
	padding-bottom: 10px;
	margin-bottom: 20px;
}
.cruise-info dl{
	margin-top: 15px;
}
.cruise-info dt{
	font-size: 26px;
	font-weight: 500;
	margin-bottom: 10px;
	margin-left: -1rem;
}
.cruise-info dd{
	font-size: 18px;
	line-height: 26px;
}
.cruise-info dd a{
	text-decoration: underline;
}
.cruise-info dd span{
	color: #000;
	font-size: 26px;
	font-weight: 700;
	line-height: 1;
}
.cruise-info dd strong{
	font-size: 46px;
	line-height: .7;
}
.cruise-info-img01{
	position: absolute;
	top: 100px;
	right: 30px;
	width: 410px;
}
.cruise-info-img02{
	position: absolute;
	bottom: 0;
	right: 30px;
	width: 440px;
}
.cruise-info__careful{
	border: 4px solid #fff;
	border-radius: 10px;
	padding: 30px;
	position: relative;
	margin-top: 40px;
}
.cruise-info__careful h3{
	font-size: 20px;
	position: absolute;
	left: 50%;
	top: -12px;
	padding: 0 10px;
	display: inline-block;
	background-color: #2484b8;
	transform: translateY(0%) translateX(-50%);
  -webkit- transform: translateY(0%) translateX(-50%);
}
@media only screen and (max-width: 991px) {
	.cruise-info dt{
		font-size: 22px;
	}
	.cruise-info dd{
		font-size: 16px;
		line-height: 24px;
	}
	.cruise-info dd span{
		font-size: 22px;
	}
	.cruise-info dd strong{
		font-size: 38px;
	}
	.cruise-info-img01{
		top: 100px;
		right: 15px;
		width: 45vw;
		z-index: -1;
	}
	.cruise-info-img02{
		right: 15px;
		width: 45vw;
	}
	.cruise-info__careful{
		padding: 25px;
		margin-top: 30px;
	}
	.cruise-info__careful h3{
		font-size: 18px;
	}
}
@media only screen and (max-width: 767px) {
	.cruise-info dt{
		font-size: 18px;
	}
	.cruise-info dd{
		font-size: 12px;
		line-height: 20px;
	}
	.cruise-info dd span{
		font-size: 20px;
	}
	.cruise-info dd strong{
		font-size: 30px;
	}
	.cruise-info-img01{
		display: none;
	}
	.cruise-info-img02{
		position: relative;
		right: auto;
		bottom: auto;
		width: 100%;
		max-width: 270px;
		margin: 0 auto;
		display: block;
	}
	.cruise-info__careful{
		padding: 25px 20px 20px;
		border-width: 3px;
	}
	.cruise-info__careful h3{
		font-size: 18px;
		width: 180px;
		text-align: center;
	}
}


.cruise-reseave dt span{
	color: #e94a48;
	font-size: 18px;
}
.cruise-reseave .cruise-reseave-icon{
	font-size: 24px;
	width: 220px;
}
.cruise-reseave ul{
	justify-content: flex-start;
	margin-top: 10px;
}
.cruise-reseave li{
	margin-right: 15px;
}
.cruise-reseave li:last-child{
	padding-top: 10px;
}
.cruise-reseave p{
	color: #000;
	font-size: 15px;
}
@media only screen and (max-width: 991px) {
	.cruise-reseave dt span{
		font-size: 15px;
	}
	.cruise-reseave .cruise-reseave-icon{
		font-size: 20px;
		width: 200px;
	}
	.cruise-reseave p{
		font-size: 14px;
	}
}
@media only screen and (max-width: 767px) {
	.cruise-reseave dt{
		text-align: center;
	}
	.cruise-reseave dt span{
		font-size: 14px;
		display: block;
		margin-top: 5px;
	}
	.cruise-reseave ul{
		justify-content: center;
	}
	.cruise-reseave li{
		margin-right: 0;
	}
	.cruise-reseave p{
		font-size: 13px;
	}
}

.cruise-footer{
	margin-top: 40px;
	padding-bottom: 60px;
}
.cruise-footer h2{
	color: #000;
	font-size: 26px;
	font-weight: 500;
	letter-spacing: -0.1rem;
	margin-bottom: 5px;
}
.cruise-footer__wrap{
	margin-top: 10px;
}
.cruise-footer__box{
	width: 80%;
	background-color: #fff;
	border-radius: 10px;
	padding: 15px 30px;
}
.cruise-footer__box p{
	color: #000;
}
.cruise-footer__box ul{
	margin: 10px 0;
}
.cruise-footer__box li{
	width: 48%;
	padding: 0 20px;
}
.cruise-footer figure{
	width: 20%;
	padding-left: 40px;
}
@media only screen and (max-width: 991px) {
	.cruise-footer{
		padding-bottom: 30px;
	}
	.cruise-footer h2{
		font-size: 22px;
	}
	.cruise-footer__box{
		width: 78%;
		padding: 15px;
	}
	.cruise-footer__box li{
		width: 48%;
		padding: 0 15px;
	}
	.cruise-footer figure{
		width: 22%;
		padding-left: 30px;
	}
}
@media only screen and (max-width: 767px) {
	.cruise-footer{
		padding-bottom: 70px;
	}
	.cruise-footer h2{
		font-size: 20px;
		text-align: center;
	}
	.cruise-footer p{
		text-align: center;
	}
	.cruise-footer__box{
		width: 100%;
		padding: 15px;
		order: 2;
	}
	.cruise-footer__box li{
		width: 100%;
		padding: 0;
		text-align: center;
	}
	.cruise-footer__box li:first-child{
		margin-bottom: 10px;
	}
	.cruise-footer__box li img{
		max-width: 200px;
	}
	.cruise-footer__box p{
		text-align: left;
		font-size: 12px;
		line-height: 18px;
	}
	.cruise-footer figure{
		width: 100%;
		max-width: 120px;
		padding-left: 0;
		margin: 10px auto;
		order: 1;
	}
}


.cruise-page__news{
	margin-top: 40px;
}
.cruise-page__news .cruise-page__title{
	text-align: center;
}
.cruise-page__news h2 img{
	width: 100px;
	height: auto;
}
.cruise-news__col{
	margin-top: 40px;
}
.cruise-news__col .cruise-news__thumb{
	width: 33%;
}
.cruise-news__col .cruise-news__text{
	width: 67%;
	padding-left: 30px;
}
.cruise-news__col dl{
	margin-bottom: 15px;
}
.cruise-news__col dt{
	display: inline-block;
	border: 1px solid #fff;
	border-radius: 5px;
	padding: 2px 10px 3px;
	line-height: 1;
	font-weight: 700;
	font-size: 17px;
}
.cruise-news__col dd{
	font-size: 18px;
	font-weight: 700;
	margin-top: 5px;
}
.cruise-news__col .cruise-news__text{
	color: #fff;
}
.cruise-news__col .cruise-news__text h2{
	margin-bottom: 15px;
	font-size: 18px;
}
.cruise-news__col .cruise-news__text p{
	line-height: 26px;
	margin-bottom: 30px;
}
.cruise-news__col .cruise-news__text img{
	margin-bottom: 30px;
}
.cruise-news__col .cruise-news__text a{
	text-decoration: underline;
	color: #fff;
}
.wp-pagenavi {
    margin: 40px 0 60px;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.wp-pagenavi .pages{
	display: none;
}
.wp-pagenavi span {
    border: 2px solid #fff !important;
    font-size: 14px;
    padding: 0 !important;
    margin: 0px 10px 0 0 !important;
    text-decoration: none;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wp-pagenavi span.current {
    font-weight: normal !important;
    background-color: #fff;
    color: #2584B8;
    border-radius: 50%;
}
.wp-pagenavi a {
    font-size: 14px;
    padding: 0 !important;
    width: 50px;
    height: 50px;
    margin: 0px 10px 0 0 !important;
    text-decoration: none;
    color: #fff;
    border: 2px solid #fff !important;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}
@media only screen and (max-width: 991px) {
	.cruise-page__news{
		margin-top: 30px;
	}
	.cruise-news__col{
		margin-top: 30px;
	}
	.cruise-news__col .cruise-news__text{
		padding-left: 25px;
	}
	.cruise-news__col dt{
		font-size: 16px;
	}
	.cruise-news__col dd{
		font-size: 17px;
	}
	.cruise-news__col .cruise-news__text p{
		line-height: 24px;
		margin-bottom: 20px;
	}
	.cruise-news__col .cruise-news__text img{
		margin-bottom: 20px;
	}
}
@media only screen and (max-width: 767px) {
	.cruise-page__news h2 img{
		width: 80px;
	}
	.cruise-news__col{
		margin-top: 30px;
		border-bottom: 1px solid #fff;
		padding-bottom: 5px;
	}
	.cruise-news__col .cruise-news__thumb{
		width: 100%;
	}
	.cruise-news__col .cruise-news__text{
		width: 100%;
		padding-left: 0;
		margin-top: 10px;
		padding: 0 15px;
	}
	.cruise-news__col dt{
		font-size: 16px;
	}
	.cruise-news__col dd{
		font-size: 17px;
	}
	.wp-pagenavi span {
    font-size: 13px;
    width: 38px;
    height: 38px;
    margin: 0px 5px 0 0 !important;
	}
	.wp-pagenavi a {
    font-size: 13px;
    width: 38px;
    height: 38px;
    margin: 0px 5px 0 0 !important;
	}
}

.zaidan{
	position: absolute;
	right: 0;
	bottom: -40px;
	width: 17vw;
	max-width: 200px;
}
@media only screen and (max-width: 991px) {
	.zaidan{
		bottom: -35px;
		width: 17vw;
		max-width: 200px;
	}
}