@charset "utf-8";
/* CSS Document */
/* =========================================================
	root
========================================================= */
:root {
	/* Font-Size */
	--f-size01: 20px;
	--f-size02: 16px;
	--f-size-big: 42px;
	/*矢印の高さ*/
	--arrow-height: 30px;
	/*矢印の位置*/
	--arrow-posi-t: -1.4rem;
	/* 特殊破線 */
	--hasen-gradation: linear-gradient(to right, #A8A8A8, #A8A8A8 5px, transparent 5px, transparent 10px);
	--hasen-size: 9px 1px;
	--hasen-repeat: repeat-x;
	/* color */
	--busan-blue: #004A83;
	--price-color: #FA2D73;
	/* Border-Radius */
	--base-border: 5px;
	/* padding */
	--base-padding: 1rem;
}
/* 991px未満 */
@media only screen and (max-width: 991px) {
	:root {
		--f-size-big: 30px;
	}
}
/* 767px未満 */
@media only screen and (max-width: 767px) {
	:root {
		--f-size01: 16px;
		--f-size02: 14px;
		/*矢印の高さ*/
		--arrow-height: 22px;
		/*矢印の位置*/
		--arrow-posi-t: -1rem;
		/* padding */
		--base-padding: 0.5rem;
	}
}
/* =========================================================
	Base
========================================================= */
/*article {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}*/
.sct-item + .sct-item {
	margin-top: 40px;
}
/* 767px未満 */
@media only screen and (max-width: 767px) {
	.side-r {
		margin-top: 1rem;
	}
}

/* レスポンシブimg
----------------------------------------------------*/
.img-fluid2 {
	width: 100%;
	height: auto;
}


/* =========================================================
	Main
========================================================= */
.sct-main h1 {
	font-size: 18px;
	margin: 0 0 0.5rem;
	padding-top: 1rem;
}
.sct-main p {
/*	margin: 10px 0 2rem;*/
	margin: 10px 0 0.5rem;
}
.sct-main2 {
	margin: 1rem 0;
}

/* =========================================================
	Pickup Price
========================================================= */
.sct-price {
	max-width: 980px;
	margin: 0 auto 2rem;
}

/* 767px未満 */
@media only screen and (max-width: 767px) {
	.pickup + .pickup {
		margin-top: 3rem;
	}
}
.pickup > div {
	background: var(--busan-blue);
	color: #fff;
	border-radius: var(--base-border);
	margin-top: var(--arrow-posi-t);
	padding: 2.4rem 1rem 1rem;
}
/* 文字＋⇒
----------------------------------------------------*/
/*---- 矢印(＝)部分 ----*/
.arrow-r {
	position: relative;
	display: inline-block;
	background: #D70029;
	color: #fff;
	text-align: center;
	margin-left: 1rem;
	padding: 0.3rem 1.2rem 0.2rem;
	font-size: var(--f-size01);
	font-weight: bold;
}
/*---- 矢印(▷)部分 ----*/
.arrow-r:after {
	content: '';
	position: absolute;
	border-left: 25px solid #D70029;
	/*border-top: 30px solid transparent;
	border-bottom: 30px solid transparent;*/
	border-top: var(--arrow-height) solid transparent;
	border-bottom: var(--arrow-height) solid transparent;
	right: -24px;
	/*top: -7.5px;*/
	top: calc(var(--f-size01) / 2.7 * -1);
}
/* h2
----------------------------------------------------*/
.pickup h2 {
	font-size: var(--f-size01);
	text-align: center;
	margin-bottom: 0.7rem;
}
/* Price Box
----------------------------------------------------*/
.sct-box {
	background: #fff;
	color: var(--price-color);
	border-radius: var(--base-border);
	padding: 0 20px;
	letter-spacing: -0.5px;
}
/*---- 特殊破線Box ----*/
.sct-box > div {
	position: relative;
	padding: 0.5rem 2rem;
	font-weight: bold;
}
/* 991px未満 */
@media only screen and (max-width: 991px) {
	.sct-box > div {
		padding: 0.5rem 1rem;
	}
}
/* 767px未満 */
@media only screen and (max-width: 767px) {
	.sct-box > div {
		padding: 0.5rem 2rem;
	}
}
/* 399px未満 */
@media only screen and (max-width: 399px) {
	.sct-box > div {
		padding: 0.5rem 0;
	}
}
/*---- 破線 ----*/
.sct-box > div + div:before {
	position: absolute;
	content: "";
	background-image: var(--hasen-gradation);
	background-size: var(--hasen-size);
	background-repeat: var(--hasen-repeat);
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}


.sct-box dl {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	align-items: center;
}
.sct-box dt {
}
.sct-box dt span {
	display: inline-block;
	vertical-align: middle;
	border: 2px solid var(--busan-blue);
	padding: 4px 8px 1px;
	font-size: 18px;
	color: var(--busan-blue);
}
.sct-box dd {
	text-align: right;
	font-size: var(--f-size-big);
}


/* =========================================================
	item
========================================================= */
/* 吹き出し h2
----------------------------------------------------*/
.balloon {
	font-size: 24px;
	line-height: 1.3rem;
	border:2px solid #2d92fa;
	color: #2d92fa;
	margin-bottom: 1.5rem;
	padding: 0.8rem 0.8rem 0.8rem 70px;
	position: relative;
	border-radius: 3px;
	background: url(/ferry/campaign/hokkaido/img/bg_title_camp.png) no-repeat 15px 50%;
}
.balloon:before{
	content: "";
	border: 12px solid transparent;
	border-top: 12px solid #fff;
	position: absolute;
	left: 20px;
	bottom: -21px;
	z-index: 1;
}
.balloon:after{
	content: "";
	border: 12px solid transparent;
	border-top: 12px solid #2d92fa;
	position: absolute;
	left: 20px;
	bottom: -24px;
}
/* 767px未満 */
@media only screen and (max-width: 767px) {
	.balloon {
		font-size: 16px;
		text-align: center;
		padding: 0.8rem;
		background: none;
	}
}

/* Swiper カスタマイズ
----------------------------------------------------*/
.swiper-container {
	padding-bottom: 40px;
}


/* table
----------------------------------------------------*/
.tbl-base {
	width: 100%;
/*	margin: 0 auto 40px;*/
	margin: 0 auto 0;
	border: 1px solid #666;
	border-left: none;
	border-right: none;
}
.tbl-base th,
.tbl-base td {
	padding: 0.5rem;
	font-size: var(--f-size02);
	border: 1px solid #ccc;
	border-left: none;
	border-right: none;
}
.tbl-base th {
	width: 20%;
	max-width: 5rem;
	background: #f4f4f4;
	text-align: center;
}
/* 767px未満 */
@media only screen and (max-width: 767px) {
	.tbl-base th {
		text-align: left;
	}
	/*.tbl-base th,
	.tbl-base td,
	.tbl-base td li {
		font-size: 12px;
	}*/
}

.tbl-base td > div + div {
	margin-top: 1rem;
}

/* 価格 */
.td-reserve {
	text-align: right;
}
	.txt-price {
		font-size: 26px;
		color: #f00;
		font-weight: bold;
	}

/* List
----------------------------------------------------*/
/* ----- Disc ----- */
.mark-disc > li {
	list-style: disc;
	margin-left: 1.3rem;
	font-size: var(--f-size02);
}
/* ----- ※ ----- */
.mark-note > li {
	text-indent: -0.8rem;
	font-size: var(--f-size02);
	margin-left: 0.8rem;
}
.mark-note > li:before {
	content: '※';
	display: inline;
}
/* ----- ※(テキストに入ってるパターン) ----- */
p.mark-note {
	text-indent: -0.85rem;
	margin-left: 0.75rem;
}
/* ----- Decimal ----- */
.mark-decimal > li {
	list-style: decimal;
	margin-left: 1.3rem;
	font-size: var(--f-size02);
}
/* ----- Decimal(1),(2) (テキストに入ってるパターン) ----- */
p.mark-decimal {
	text-indent: -1.5rem;
	margin-left: 1.5rem;
}

/* Text Style
----------------------------------------------------*/
/***** Color *****/
.red {
	color: #f00;
}
.black {
	color: #000;
}
.blue {
	color: #003399;
}

/* Button
----------------------------------------------------*/
.btn-green {
	padding: 0.5rem 0 1rem;
}
.btn-green li {
	margin-bottom: 10px;
}
.btn-green a {
	position: relative;
	display: block;
	width: 100%;
	padding: 12px 10px;
	background: #1ba9a6;
	color: #fff;
	text-decoration: none;
	text-align: center;
	font-size: 20px;
	white-space: nowrap;
	border: 1px solid #119693;
	border-radius: 5px;
	box-shadow:rgba(255,255,255,0.45) -1px -1px 3px inset;
	-webkit-box-shadow:rgba(255,255,255,0.45) -1px -1px 3px inset;
	text-shadow:rgba(0,0,0,0.2) -1px -1px 0px;
}
.btn-green a:after{
	content: "";
	border: 5px solid transparent;
	border-left: 5px solid #fff;
	position: absolute;
	right: 2%;
	top: 44%;
	z-index:1;
}
.btn-green a:hover {
	background:#31c0bd;
	box-shadow:rgba(255,255,255,0.45) -1px -1px 3px inset;
	-webkit-box-shadow:rgba(255,255,255,0.45) -1px -1px 3px inset;
	text-shadow:rgba(0,0,0,0.2) -1px -1px 0px;
}

/* 767px未満 */
@media only screen and (max-width: 767px) {
	.btn-green li + li {
		margin-top: 10px;
	}
	.btn-green a {
		font-size: 16px;
	}
}
/* Tabカスタマイズ
----------------------------------------------------*/
.sct-item .nav {
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	overflow-x: auto;
	white-space: nowrap;
	/*padding-bottom: 20px;*/
}
.sct-item .nav-item + .nav-item {
	border-left: 1px solid var(--busan-blue);
}
.sct-item .nav .nav-item {
	flex: 0 0 auto;
}
.sct-item .nav-link {
	font-size: var(--f-size02);
}
.sct-item .nav-link:hover {
	text-decoration: underline;
}
/*-------PCのみスクロールバー表示-------*/
/* 768px以上 */
@media only screen and (min-width: 768px) {
	/*バーの太さ*/
	.sct-item .nav::-webkit-scrollbar {	height: 10px;}
	.sct-item .nav::-webkit-scrollbar-track {
		background: #efefef;
		border-radius: 10px;
		box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
	}
	/*バー軌道*/
	.sct-item .nav::-webkit-scrollbar-thumb {
		background: #bbb;
		border-radius: 10px;
		box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
	}/*バーつまみ部分*/
	/*.sct-item .nav::-webkit-scrollbar {	display: none;}*/
}
/* Note (Tabで開く部分)
----------------------------------------------------*/
.sct-item .tab-content {
	margin-bottom: 2rem;
}
[id^="note"] {
	padding: 0 var(--base-padding) var(--base-padding);
}
[id^="note"] h4 {
	font-size: var(--f-size01);
	margin: 1rem 0;
	padding: 0.3rem 0.5rem;
	background: var(--busan-blue);
	color: #fff;
}
.note {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
	.note dt,
	.note dd {
		padding: 0.5rem 0;
	}
	.note dt {
		width: 30%;
	}
	.note dd {
		width: 70%;
		padding-left: var(--base-padding);
	}

.notify{
	max-width: 980px;
	margin: 0 auto 2rem;
}
.acc-box.acc-news {
	margin: 15px auto;
	z-index: 1;
	position: relative;
}
.acc-box.acc-news .card {
	border-radius: 0;
	border: 1px solid #efe1bb;
	position: relative;
	min-width: 0;
	word-wrap: break-word;
	background-color: #fff;
	background-clip: border-box;
}
.acc-box.acc-news .card-header {
	padding: 5px;
	background: #faf2dc;
	border-bottom: none;
}
.acc-box .card-header .title-acc {
	font-size: 14px;
	font-weight: bold;
	margin: 0;
}
.acc-box .card-header .title-acc button {
	background: none;
	text-align: left;
	color: #dc3545;
	padding: 0 0 0 60px;
	position: relative;
	line-height: 1.4;
	display: block;
	width: 100%;
	font-weight: bold;
}
.acc-box.acc-news .badge {
	margin-right: 10px;
	position: absolute;
	top: 2px;
	left: 0;
	padding: 3px 4px 2px;
	font-weight: normal;
	background-color: #b9923b;
	color: #fff;
	display: inline-block;
	padding: 0.25em 0.4em;
	font-size: 75%;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	vertical-align: baseline;
}
.acc-box.acc-news .card-header button:after {
	margin-left: 10px;
	content: "\f077";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #d9534f;
}
.acc-box.acc-news .card-header button.collapsed:after {
	content: "\f078";
}


/*-------------20220124追記---*/
.btn-green .comingsoon a{
	pointer-events: none;
	background: #ccc;
	border-color: #aaa;
}
.label-hakata{
	display: inline-block;
	padding: 5px 15px;
	background: #ff4848;
	color: #fff;
	margin-right: 10px;
	font-size: 80%;
	border:solid 1px #fff;
}
.label-busan{
	display: inline-block;
	padding: 5px 15px;
	background: #273cbc;
	color: #fff;
	margin-right: 10px;
	font-size: 80%;
	border:solid 1px #fff;
}


.wrap-reserve{
	padding: 0 var(--base-padding) var(--base-padding);
}
.title-reserve{
    font-size: var(--f-size01);
    margin: 1rem 0;
    padding: 0.3rem 0.5rem;
    background: var(--busan-blue);
    color: #fff;
}


/*-------------20241125追記---*/
#Reservation-link{
	padding-top: 40px;
}

/*予約はこちらボタン追加*/
.wrap-reservation-linkbtn .btn-green a{
	width: 100%;
	max-width: 400px;
	margin: 0 auto 10px;
}
.wrap-reservation-linkbtn .btn-green a:after{
	transform: rotate(90deg);
	right: 5%;
}

/*
@media (min-width: 768px) {
	.wrap-reservation-linkbtn .btn-green a{
		width: 50%;
	}
}
*/





