@charset "UTF-8";

/*--------------------------------------------
	運航状況と予想
	今日の運航状況と詳細、今後の予報を記載
--------------------------------------------*/
.ferry {
	margin: var(--dynamic-margin) auto;
	width: 90%;
	max-width: 850px
}

@media only screen and (max-width: 360px) {
	.ferry {
		max-width: 95%
	}
}

.ferry h2 {
	margin-left: auto;
	margin-right: auto;
	max-width: 650px
}

.ferry .bold {
	font-weight: bold;
	font-size: 1.2em
}

.ferry p {
	word-break: keep-all;
}

.ferry .expectation {
	margin-top: var(--dynamic-margin-small)
}

.ferry .expectation table {
	margin: 0 auto;
	border: double;
	border-collapse: collapse
}

.ferry table th,
.ferry table td {
	border: double;
	width: 20%
}

.ferry .expectation .text-min {
	font-size: .8em
}

.ferry td {
	font-size: 1.5em
}

.ferry .schedule-img {
	margin-top: var(--dynamic-margin-small);
	width: 100%;
	max-width: 550px
}

/*--------------------------------------------
	飛島茉凜
	プロフィール
--------------------------------------------*/
.myprofile {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: var(--dynamic-margin) auto;
	padding: 0 20px;
	max-width: 700px
}

.myprofile .pic {
	width: 150px;
	text-align: center;
	font-size: 1.2em;
	margin-bottom: 20px;
	text-decoration: none;
	color: inherit
}

.myprofile .pic img {
	border-radius: 30%;
	display: block;
	margin-bottom: 10px;
	width: 100%;
	height: auto
}

.myprofile .word {
	display: flex;
	text-align: left;
	justify-content: center;
	align-items: center;
	padding-left: 40px;
	width: calc(100% - 150px)
}

.myprofile .word p {
	position: relative;
	padding-top: 15px;
	padding-left: 15px
}

.myprofile .word p::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--text-color);
	width: 25px;
	height: 1px
}

.myprofile .word p::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--text-color);
	width: 1px;
	height: 25px
}

.myprofile .word span {
	position: relative;
	display: block;
	padding-right: 15px;
	padding-bottom: 15px
}

.myprofile .word span::before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	background-color: var(--text-color);
	width: 25px;
	height: 1px
}

.myprofile .word span::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	background-color: var(--text-color);
	width: 1px;
	height: 25px
}

@media (max-width: 700px) {
	.myprofile .word {
		padding: 0;
		margin-bottom: 20px;
		width: 100%
	}

	.myprofile .pic {
		margin: 0 auto
	}
}

.myprofile .follow-x {
	width: 100%;
	display: flex;
	justify-content: center
}

.myprofile .x-btn {
	display: flex;
	align-items: center;
	width: 70px;
	height: 40px;
	padding: 7px;
	border: 1px solid var(--text-color);
	border-radius: 5px;
	background-color: var(--main-color-4);
	text-decoration: none;
	color: var(--text-color)
}

.myprofile .x-btn svg {
	width: 25px;
	height: 25px;
	margin-right: 5px
}

.myprofile .follow-x .x-btn i {
	display: inline-block;
	transition: transform 0.3s ease
}

.myprofile .follow-x .x-btn:hover i {
	transform: translateX(5px)
}

/*--------------------------------------------
	出航率計算
	過去のデータをもとに出航率を計算する
--------------------------------------------*/
.rate {
	margin: var(--dynamic-margin) auto;
	width: 90%;
	max-width: 650px
}

@media only screen and (max-width: 360px) {
	.rate {
		max-width: 95%
	}
}

.rate p {
	text-align: left;
	margin-bottom: var(--dynamic-margin-small)
}

.rate input {
	padding: 5px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 1.05em;
	background: var(--base-color)
}

.rate #startDate {
	margin-right: 5px
}

.rate #endDate {
	margin-left: 5px
}

.rate label {
	display: block;
	margin-top: var(--dynamic-margin-small)
}

.rate input[type="checkbox"] {
	transform: scale(1.5);
	margin-right: 8px;
	cursor: pointer
}

.rate table {
	margin: 0 auto;
	border: double;
	border-collapse: collapse
}

.rate table th,
.rate table td {
	border: double
}

.rate table td {
	padding: 0 9px
}

.rate td:first-child {
	text-align: left
}

.rate .establishment {
	width: 95%;
	max-width: 400px;
	aspect-ratio: 3 / 1;
	font-size: 1.5em;
	font-weight: bold;
	margin: 0 auto var(--dynamic-margin);
	background-color: var(--base-color);
	border-radius: 15px;
	box-shadow: 0 6px 17px rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
}