@charset "utf-8";
/* CSS Document */
/* =========================================================
	Base
========================================================= */
/*article {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}*/
.sct-item {
	margin-top: 30px;
}
.sct-item + .sct-item {
	margin-top: 60px;
}

/* レスポンシブ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;
}
.sct-main2 {
	margin: 1rem 0;
}
.sct-item p {
	margin-bottom: 1rem;
}

/* =========================================================
	item
========================================================= */
/* 吹き出し h2
----------------------------------------------------*/
.balloon {
	font-size: 24px;
	line-height: 1.3rem;
	border:2px solid #2d92fa;
	color: #2d92fa;
	margin-bottom: 1.5rem;
	padding: 0.9rem 0.8rem 0.8rem 70px;
	position: relative;
	border-radius: 3px;
	background: url(/ferry/campaign/carbike/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;
	}
}

/* List
----------------------------------------------------*/
/* ----- Disc ----- */
.mark-disc > li {
	list-style: disc;
	margin-left: 1.3rem;
	font-size: 14px;
}
/* ----- ※ ----- */
.mark-note > li {
	text-indent: -0.8rem;
	margin-left: 0.8rem;
}
.mark-note > li:before {
	content: '※';
	display: inline;
}


/* Text Style
----------------------------------------------------*/
/***** Color *****/
.red {
	color: #f00;
}
.black {
	color: #000;
}
.blue {
	color: #003399;
}
.orange {
	color: #ff6500;
}

/* Button
----------------------------------------------------*/
.btn-green {
	padding: 0.5rem 1rem 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.btm a:after{
	border-top: 5px solid #fff;
	border-left-color: transparent;
}
.btn-green a:hover {
	background:#31c0bd;
	-webkit-box-shadow:rgba(255,255,255,0.45) -1px -1px 3px inset;
	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;
	}
}
/* =========================================================
	Flow List 1
========================================================= */
.flow li {
	position: relative;
	padding-left: 30px;
	padding-right: 30px;
}
.flow li + li:before {
	position: absolute;
	font-family: "Font Awesome 5 Free";
  content: "\f138";
	font-weight: 900;
	font-size: 40px;
	left: -20px;
	top: 50%;
	-webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* 767px未満 */
@media only screen and (max-width: 767px) {
	.flow li {
		padding: 30px 15px;
	}
	.flow li + li:before {
		content: "\f13a";
		font-weight: 900;
		font-size: 40px;
		left: 50%;
		top: -30px;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
	}
}

/* =========================================================
	Flow List 2
========================================================= */
.flow2 {
	display: flex;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flow2 li {
	position: relative;
	width: 20%;
	padding-left: 15px;
	padding-right: 15px;
	margin: 10px 0;
}
.flow2 li + li:before {
	position: absolute;
	font-family: "Font Awesome 5 Free";
  content: "\f138";
	font-weight: 900;
	font-size: 30px;
	left: -17px;
	top: 50%;
	-webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* 991px未満 */
@media only screen and (max-width: 991px) {
	.flow2 li {
		width: 33.33%;
		padding: 10px;
	}
	.flow2 li + li:before {
		font-size: 20px;
		left: -12px;
		top: 50%;
	}
}
/* 767px未満 */
@media only screen and (max-width: 767px) {
	/*.flow2 li {
		width: 50%;
		padding: 10px 0 10px 20px;
	}
	.flow2 li + li:before {
		font-size: 20px;
		left: -2px;
		top: 50%;
	}*/
	.flow2 li {
		width: 100%;
		margin: 0;
		padding: 30px 15px;
	}
	.flow2 li + li:before {
		content: "\f13a";
		font-weight: 900;
		font-size: 40px;
		left: 50%;
		top: -30px;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
	}
}

/* =========================================================
	予約
========================================================= */
.sample {
	margin: 30px auto;
}
.sample li {
	padding-bottom: 30px;
}
/* オレンジ見出し
----------------------------------------------------*/
.sct-item h3 {
	margin-bottom: 0.5rem;
	font-size: 22px;
	font-weight: bold;
}
/* 767px未満 */
@media only screen and (max-width: 767px) {
	.sct-item h3 {
		font-size: 16px;
	}
}
/* 青見出し
----------------------------------------------------*/
.tit-blue {
	background: #1c3383;
	color: #fff;
	padding: 0.5rem 1rem;
	border-radius: 40px;
	font-size: 18px;
	text-align: center;
}
/* 767px未満 */
@media only screen and (max-width: 767px) {
	.tit-blue {
		font-size: 16px;
	}
}
.text-link {
	text-decoration: underline;
}
/* =========================================================
	All Rosen
========================================================= */

/* Title (border)
----------------------------------------------------*/
.tit-border {
	font-size: 24px;
	color:#2d92fa;
	padding:10px 10px 20px 5px;
	margin-bottom:20px;
	background:url(/ferry/campaign/carbike/img/bg_underline_camplan.gif) repeat-x left bottom;
}
@media only screen and (max-width: 767px) {
	.tit-border {
		font-size: 18px;
	}
}
.tit-label {
	background: #2d92fa;
	color: #fff;
	display: inline-block;
	padding: 8px 10px 5px;
	border-radius: 3px;
	font-size: 20px;
	font-weight: normal;
}
@media only screen and (max-width: 767px) {
	.tit-label {
		font-size: 18px;
	}
}
/*---- 航路情報 ----*/
.info-rosen {
	margin-bottom: 50px;
}
.info-rosen li {
	margin: 0.8rem 3rem 0;
	font-size: 20px;
	display: inline-block;
}
.info-rosen a {
	color: #666;
	text-decoration: underline;
}
/* 767px未満 */
@media only screen and (max-width: 767px) {
	.info-rosen li {
		font-size: 16px;
		margin: 0.8rem 2rem 0 0;
	}
}
/*--------------------------------
  20201106 積込み可能な一覧
----------------------------------*/

.load_block .card{
	padding:20px;
	margin-bottom:20px;
	position:relative;
}
.load_block .card img{
	width: 100%;
	height: 180px;
	object-fit: cover;
}

/*.load_block .card .corp-name{
	padding:5px 8px;
	color:#fff;
	font-size:15px;
	font-weight:bold;
	background:rgba(0,0,0,0.4);
	position:absolute;
	top:168px;
	left:20px;
	right:20px;
	text-align:center;
}*/

p.price-line{
	color:#cc0000;
	font-size:24px;
	font-weight:bold;
	text-align:right;
	margin-bottom:0;
}

.price-line .yen{
	font-size:14px;
	margin-left:2px;
}


.load_block ul{
  background: #FFF;
  border-radius: 4px;
  margin: 20px 0;
  text-align: center;
  position: relative;

}
.load_block ul li a{
  background: #FFF;
  padding: 10px 0;
  border: 2px solid #1BA9A6;
  border-radius: 80px;
  display: block;
  color: #1BA9A6;
}
.load_block ul li a:hover{
  text-decoration: none;
  opacity: .8;
  background: #1BA9A6;
  color: #FFF;
}
.load_block ul li a::after{
  position: absolute;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  font-size: 10px;
  content: "\f054";
  transform: translate(0, -50%);
  right: 20%;
  top: 50%;
}

.load_block ul .icon::after{
  position: absolute;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  content: "\f362";
  transform: translate(0, -50%);
  right: -10px;
  top: 50%;
}
@media only screen and (max-width: 767px) {
  .load_block ul{
    padding: 0px 0;
    margin:15px 0 10px 0;
  }
}


.load_block .card .cb_price img{
	width: auto;
	height: auto;
	object-fit: none;
	margin-right: 8px;
}
.load_block .card .cb_price div > span{
	font-size: 13px;
}
.cb_price .chuui{
	font-size: 13px;
	margin-top: 8px;
	margin-bottom: 0;
}

/*----- 船社名2行パターン用に固定位置変更 -----*/
.load_block .card figure {
	position: relative;
}
.load_block .card figure .corp-name {
	position: absolute;
	padding:5px 8px;
	color:#fff;
	font-size:15px;
	font-weight:bold;
	background:rgba(0,0,0,0.4);
	left: 0;
	bottom: 0;
	width: 100%;
	text-align:center;
}