:root {
	--color-lightyellow: #fff59d;
	--color-yellow: #ffeb37;
	--color-darkyellow: #e6b019;
	--color-paleblue: #d8e5f7;
	--color-lightblue: #afcfff;
	--color-red: #e94522;
	--color-salmonpink: #eb6666;
	--color-pink: #ffcccc;
	--color-orange: #d78e27;
	--color-blue: #008ed3;
	--color-aquablue: #3375e6;
	--color-black: #231815;
	--color-neutralgray: #4b4b4b;
	--color-lightgray: #888;
	--color-warmgray: #4c4948;
	--color-coolgray: #b2b2b2;
	--color-palegray: #dddddd;
	--color-whitegray: #f1f1f1;
	--color-white: #ffffff;
	--color-green: #05822a;
	--color-lightgreen: #d0e2be;
	--font-xxxlarge: 50px;
	--font-xlarge: 36px;
	--font-xlarge: 32px;
	--font-large: 28px;
	--font-normal: 26px;
	--font-small: 24px;
	--font-xsmall: 17px;
	--font-large-mark: 75px;
}

.hide {
	display: none;
}

a {
	color: var(--color-blue);
	text-decoration: underline;
}

body {
	font-family: 'ヒラギノ角ゴシック', 'Hiragino Sans', sans-serif;
	font-size: var(--font-normal);
	font-weight: 500;
	line-height: 1.6;
	color: var(--color-neutralgray);
}

img {
	width: 100%;
}

/* ページヘッダ */
.header-image {
	background-color: var(--color-blue);
	background-image: url(../images/uzs_bus_logo_white.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 300px auto;
	height: 0;
	padding-bottom: 170px;
	text-indent: -9999px;
}

/* 予約画面 */

.book-chapter {
	margin-bottom: 50px;
}

.book-chapter-title-wrapper {
	margin-top: 80px;
}

.book-chapter-title {
	font-size: var(--font-xlarge);
	background-color: var(--color-lightblue);
	font-weight: bold;
	padding: 14px 25px 12px;
	line-height: 1;
}

.book-select-box {
	position: relative;
	font-size: var(--font-large);
	border: 1px solid var(--color-black);
	width: 570px;
	border-radius: 25px;
	margin: 0 auto 30px;
	background-color: var(--color-white);
	box-shadow: 0px 7px 12px var(--color-palegray);
}

.book-select-box.primary-bound-for {
	margin: 30px auto 50px;
}

.book-select-box select {
	display: block;
	padding: 23px 35px 20px;
	width: 100%;
}

.book-select-box-label {
	font-size: var(--font-xlarge);
	margin: 30px auto 10px;
	width: 570px;
}

.select-box-mark-down {
	width: 25px;
	height: 25px;
	position: absolute;
	right: 20px;
	top: 27px;
	line-height: 1;
	/* 装飾用シェブロン。クリックを下の <select> へ透過させ、右端の矢印位置でも開くようにする */
	pointer-events: none;
}

.book-arrow-large-down {
	width: 50px;
	height: 45px;
	line-height: 1;
	margin: 0 auto;
}

.input-user-info-wrapper .label {
	font-weight: bold;
}
.input-user-info-wrapper .label span {
	font-size: var(--font-small);
	color: var(--color-lightgray);
	margin-left: 10px;
}
.input-user-info-wrapper .attention {
	color: var(--color-red);
	margin-bottom: 15px;
	font-weight: bold;
}

/* カレンダー */
.book-calendar {
	width: 590px;
	margin: 20px auto;
	border: 1px solid var(--color-black);
}

.calendar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: var(--font-xlarge);
	font-weight: bold;
	width: 490px;
	margin: 35px auto 20px;
	line-height: 1;
}

.calendar-header .prev-month {
	color: var(--color-coolgray);
	transform: rotate(90deg);
	font-size: 40px;
}
.calendar-header .next-month {
	color: var(--color-coolgray);
	transform: rotate(-90deg);
	font-size: 40px;
}
.day-of-the-week {
	display: flex;
	border: 1px var(--color-black);
	border-style: none none none solid;
	width: 491px;
	margin: 0 auto;
}
.day-of-the-week div {
	border: 1px var(--color-black);
	border-style: solid solid none none;
	padding: 6px;
	width: 70px;
	text-align: center;
	font-size: var(--font-large);
}

.date-cell {
	border: 1px var(--color-black);
	border-style: none none solid solid;
	display: flex;
	flex-wrap: wrap;
	width: 491px;
	margin: 0 auto 50px;
}

.date-cell > div {
	border: 1px var(--color-black);
	border-style: solid solid none none;
	width: 70px;
	height: 85px;
	text-align: center;
	padding: 6px 0;
	line-height: 1.3;
	font-weight: bold;
}

.date-cell > div.not-date {
	background-color: var(--color-palegray);
	color: var(--color-neutralgray);
}

.book-calendar .date-cell > div.selected {
	border-style: solid;
	border-color: var(--color-red);
	border-width: 7px 6px 6px;
	padding: 0;
}
.date-cell div.book-available-mark {
	width: 100%;
	height: 30px;
	font-size: var(--font-xlarge);
	color: var(--color-red);
	font-weight: bold;
	cursor: pointer;
}
.date-cell div.book-available-mark::after {
	content: '◎';
}
.date-cell div.book-available-little-mark {
	width: 100%;
	height: 30px;
	font-size: var(--font-xlarge);
	color: var(--color-darkyellow);
	font-weight: bold;
	cursor: pointer;
}
.date-cell div.book-available-little-mark::after {
	content: '△';
}
.date-cell div.book-unavailable-mark {
	width: 100%;
	height: 30px;
	font-size: var(--font-xlarge);
	color: var(--color-black);
	font-weight: bold;
}
.date-cell div.book-unavailable-mark::after {
	content: '×';
}

.date-cell div.past-book-no-mark {
	width: 100%;
	height: 30px;
	font-weight: normal;
	font-size: var(--font-large);
	color: var(--color-lightgray);
}
.date-cell div.past-book-no-mark::after {
	content: 'ー';
}

.date-cell div.late-book-no-mark {
	width: 100%;
	height: 30px;
	font-size: var(--font-xlarge);
	color: var(--color-palegray);
	font-weight: bold;
}
.date-cell div.late-book-no-mark::after {
	content: 'ー';
}

.mark-explanation {
	text-align: center;
}
.mark-explanation span {
	margin-right: 10px;
	margin-left: 20px;
}
.mark-explanation span:first-child {
	margin-left: 0;
}

.book-available-mark-exp {
	color: var(--color-red);
}
.book-available-little-mark-exp {
	color: var(--color-darkyellow);
}
.book-unavailable-mark-exp {
	color: var(--color-black);
}
.book-past-mark-exp {
	color: var(--color-lightgray);
}
.book-late-mark-exp {
	color: var(--color-lightgray);
}

.bus-info-seats {
	width: 590px;
	background-color: var(--color-red);
	color: var(--color-white);
	padding: 20px;
	margin: 20px auto 0;
}
.bus-info-seats .title {
	text-align: center;
	font-weight: bold;
	font-size: var(--font-xlarge);
}

/* 時刻表表示 */
.disp-primary-bus-route-timetable {
	border: 1px solid var(--color-black);
	width: 590px;
	margin: 30px auto;
}
.primary-bus-route-timetable-row-inner {
	display: flex;
	width: 100%;
	height: 150px;
	border: 1px var(--color-black);
	border-style: none none solid none;
	position: relative;
	line-height: 1.2;
	overflow: hidden;
}

.disp-primary-need-book-bus {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 47px;
	height: 150px;
	font-weight: bold;
	color: var(--color-white);
	background-color: var(--color-salmonpink);
	text-align: center;
	padding: 17px 10px;
	font-size: var(--font-small);
	border-right: 1px solid var(--color-black);
}

.primary-bus-route-name-time {
	border-right: 1px solid var(--color-black);
	padding: 10px 10px 0px 60px;
	width: 450px;
}

.primary-bus-route-timetable-row-inner:last-child() {
	border-bottom-style: solid;
}

.primary-bus-route-from-to-bus-stop-name {
	font-size: var(--font-small);
	display: flex;
	align-items: center;
}
.primary-bus-route-from-to-bus-stop-name span:not(.right-arrow) {
	display: inline-block;
	width: 178px;
	text-align: center;
}
.primary-bus-route-dep-arr-time {
	font-size: var(--font-xlarge);
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	line-height: 1;
}
.primary-bus-route-dep-arr-time span {
	line-height: 1;
	display: block;
	padding: 5px 30px;
	text-align: center;
}

.disp-bus-company-name {
	width: 510px;
	margin: 0 auto;
	font-size: var(--font-xlarge);
}

.primary-bus-route-name-time .disp-bus-company-name {
	width: 100%;
	text-align: center;
	font-size: var(--font-normal);
}

.primary-bus-route-mark {
	text-align: center;
	width: 140px;
	padding: 20px 0px 0;
}
.primary-bus-route-mark > div:first-child {
	font-size: var(--font-small);
	padding-bottom: 0px;
}
.primary-bus-route-mark > div:last-child {
	font-size: var(--font-large-mark);
	line-height: 1;
}
.book-available-mark::after {
	content: '◎';
	color: var(--color-red);
}
.book-available-little-mark::after {
	content: '△';
	color: var(--color-darkyellow);
}
.book-unavailable-mark::after {
	content: '×';
	color: var(--color-black);
}
.past-book-no-mark::after {
	content: '済';
	color: var(--color-lightgray);
}
.late-book-no-mark::after {
	content: '-';
	color: var(--color-lightgray);
}

button.selected .primary-bus-route-name-time {
	width: 442px;
	padding-top: 2px;
	padding-left: 50px;
}

button.selected div.primary-bus-route-timetable-row-inner {
	border-style: solid;
	border-color: var(--color-red);
	border-width: 8px;
	height: 150px;
	padding: 0;
}

button.selected .primary-bus-route-mark {
	padding-top: 10px;
	padding-left: 9px;
	width: 132px;
}
button.selected .primary-bus-route-dep-arr-time span {
	padding-bottom: 0;
}

button.selected .disp-primary-need-book-bus {
	left: -10px;
	top: -9px;
}

/* 乗車の可能性のない便（満席、または便種別で乗車不可な区間）はグレーアウトして選択不可に見せる（行は背景透過のため、管理画面 .bus-list:disabled と同じ半透明グレー背景で確実にグレー化する） */
.action_bt_primary_bus_route_timetable:disabled {
	background-color: #67676783;
	cursor: not-allowed;
}

/* 英語表記(en)専用のレイアウト。「Reservation only」は横に長いため、縦ストリップではなく行上部の横バナー(200x45)として左上へ配置し、その分だけ行の高さを伸ばして本文をバナー下へ送る。日本語(ja)・韓国語(ko)の表示は変更しない。 */
html[lang='en'] .primary-bus-route-timetable-row-inner {
	height: 195px;
}
html[lang='en'] button.selected div.primary-bus-route-timetable-row-inner {
	height: 195px;
}
/* 罫線（name-time の右罫＝マーク欄の左線）を行の最上部まで通すため、行コンテナには padding を入れず、本文側を下げてバナー分の余白を確保する。表示位置は従来と同一（旧コンテナ 45px + 各要素の元 padding-top）。 */
html[lang='en'] .primary-bus-route-name-time {
	padding-top: 55px;
}
html[lang='en'] .primary-bus-route-mark {
	padding-top: 65px;
}
html[lang='en'] .disp-primary-need-book-bus {
	width: 200px;
	height: 45px;
	left: 0;
	top: 0;
	padding: 0 8px;
	font-size: 21px;
	line-height: 1.1;
	white-space: nowrap;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow-wrap: normal;
	word-break: normal;
	border-right: none;
	border-bottom: 1px solid var(--color-black);
}
html[lang='en'] .primary-bus-route-mark > div:last-child {
	font-size: 50px;
}

.disp-primary-selected-date-row {
	display: flex;
	align-items: baseline;

	flex-wrap: wrap;
	column-gap: 12px;
	row-gap: 4px;
	width: 590px;
	margin: 30px auto 0;
}

.disp-primary-selected-date {
	font-size: var(--font-xlarge);
	font-weight: bold;
}

.disp-primary-busy-period-note {
	color: var(--color-red);
	font-size: var(--font-normal);
	font-weight: normal;
}

/* チケットを選択 */
.reservation-seats-num-title {
	font-size: var(--font-xlarge);
	font-weight: bold;
	margin: 30px auto;
	width: 570px;
}
.select-reservation-seats {
	display: flex;
	justify-content: space-between;
	margin: 30px auto 60px;
	width: 510px;
}
.reservation-seats-type {
	width: 220px;
}
.reservation-seats-type-man {
	font-size: var(--font-xlarge);
	font-weight: bold;
	padding-top: 10px;
	line-height: 1;
}
.reservation-seats-type-fee {
	font-size: var(--font-xlarge);
	text-align: right;
	margin-top: 10px;
	line-height: 1;
}
.reservation-seats-num {
	font-size: var(--font-xlarge);
	display: flex;
	align-items: center;
}
.reservation-seats-num select {
	display: block;
	font-size: var(--font-xlarge);
	font-weight: bold;
	position: relative;
	border: 1px solid var(--color-black);
	width: 130px;
	padding: 30px 30px;
	line-height: 1;
	border-radius: 25px;
	margin-right: 20px;
	background-color: var(--color-white);
	background-image: url(../img/select_box_arrow_down.svg);
	background-size: 25px;
	background-repeat: no-repeat;
	background-position: 85px 27px;
	box-shadow: 0px 7px 12px var(--color-palegray);
}

/* 現在の便 */
.primary-preaview-wrapper {
	background-color: var(--color-whitegray);
	width: 590px;
	padding: 20px;
	margin: 50px auto;
	border-radius: 20px;
}
.current-selection-title-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--color-coolgray);
}
.current-selection-title {
	font-size: var(--font-xlarge);
}
.delete-current-selection {
	cursor: pointer;
	font-size: var(--font-large);
	font-weight: bold;
	background-color: var(--color-white);
	padding: 5px 10px;
	border: 1px solid var(--color-black);
}
.delete-current-selection:hover {
	background-color: var(--color-yellow);
}
.primary-preview-book-date {
	display: block;
	font-size: xx-large;
	font-weight: bold;
	width: 510px;
	margin: 20px auto 0;
	line-height: 1;
}

.preview-dpt-bus-info {
	display: flex;
	align-items: center;
	width: 510px;
	height: 100px;
	margin: 20px auto;
}

.preview-dpt-arr-down-arrow {
	width: 40px;
	margin-left: 120px;
}

.preview-arr-bus-info {
	display: flex;
	align-items: center;
	width: 510px;
	height: 100px;
	margin: 20px auto;
}

.preview-dpt-mark,
.preview-arr-mark {
	display: flex;
	align-items: center;
	font-size: var(--font-xlarge);
	font-weight: bold;
	border: 1px solid var(--color-black);
	padding: 10px;
	height: 100%;
	line-height: 1;
}

.preview-dpt-time-wrapper,
.preview-arr-time-wrapper {
	margin-left: 20px;
	line-height: 1;
}
.preview-from-departure-time,
.preview-to-arrival-time {
	font-size: var(--font-xxxlarge);
	font-weight: bold;
	margin-top: 10px;
}
.preview-from-bus-stop-name,
.preview-to-bus-stop-name {
	font-size: var(--font-xlarge);
}
.disp-primary-preview-count-wrapper {
	width: 510px;
	margin: 50px auto 15px;
	line-height: 1;
}
.disp-preview-count-wrapper {
	width: 500px;
	margin: 30px auto;
}
.disp-preview-count-type {
	display: flex;
	justify-content: space-between;
	font-size: var(--font-xlarge);
	font-weight: bold;
	margin-bottom: 20px;
}
.disp-preview-bus-fare-wrapper {
	width: 510px;
	margin: 20px auto;
	display: flex;
	justify-content: space-between;
	font-size: var(--font-xlarge);
	font-weight: bold;
	padding-top: 20px;
	border-top: 1px solid var(--color-black);
}
.preview-bus-fare-attention {
	text-align: center;
	font-size: var(--font-xlarge);
	font-weight: bold;
	color: var(--color-red);
	margin-top: 10px;
}
.msg-over-crowding {
	font-weight: bold;
	font-size: var(--font-large);
	color: var(--color-red);
	text-align: center;
	background-color: var(--color-pink);
	line-height: 1;
	width: 540px;
	margin: 0 auto;
	padding: 20px 0;
}

/* マイページ */
.bt-mypage {
	display: block;
	position: fixed;
	width: 120px;
	height: 120px;
	right: 20px;
	top: 20px;
	z-index: 9999;
}

.disp-book-id {
	width: 100%;
	text-align: right;
	line-height: 1;
}

.mypage .reservation-details .disp-book-date {
	font-size: var(--font-xlarge);
	font-weight: bold;
	width: 500px;
	margin: 0px auto;
}

.mypage .reservation-details .preview-from-departure-time,
.mypage .reservation-details .preview-to-arrival-time {
	font-size: var(--font-xlarge);
	font-weight: normal;
	margin-top: 5px;
}

.mypage .reservation-details .preview-dpt-arr-down-arrow {
	display: none;
}

.mypage .reservation-details .disp-preview-count-wrapper {
	width: 500px;
	margin: 0px auto;
}

.mypage .reservation-details .disp-preview-count-type {
	display: flex;
	justify-content: flex-end;
	font-size: var(--font-xlarge);
	font-weight: bold;
	margin-bottom: 10px;
}

.mypage .reservation-details .disp-preview-bus-fare-wrapper {
	width: 500px;
	margin: 0px auto;
	display: flex;
	justify-content: flex-end;
	font-size: var(--font-xlarge);
	font-weight: bold;
	padding-top: 20px;
	border-top: 1px solid var(--color-black);
}

.mypage .reservation-details .disp-preview-bus-fare-wrapper div:first-child() {
	margin-right: 10px;
}
.mypage .reservation-details .preview-dpt-bus-info,
.mypage .reservation-details .preview-arr-bus-info {
	display: flex;
	align-items: center;
	width: 510px;
	height: 70px;
	margin: 20px auto 0;
}

.mypage .reservation-details .bt-screen-transition {
	display: block;
	color: var(--color-white);
	font-size: 30px;
	background-color: var(--color-aquablue);
	border-radius: 40px;
	width: 100%;
	padding: 20px 0;
	text-align: center;
	line-height: 1;
	box-shadow: 0px 7px 12px var(--color-palegray);
	cursor: pointer;
}

/* ボタン */

button:not(:disabled):hover {
	opacity: 0.7;
}

.bt-screen-transition-wrapper {
	width: 540px;
	margin: 40px auto 100px;
}
.bt-screen-transition {
	display: block;
	color: var(--color-white);
	font-size: 40px;
	background-color: var(--color-aquablue);
	border-radius: 30px;
	width: 100%;
	padding: 50px 0;
	text-align: center;
	line-height: 1;
	box-shadow: 0px 7px 12px var(--color-palegray);
	cursor: pointer;
}
.bt-screen-transition-change {
	display: block;
	/* color: var(--color-white); */
	font-size: 40px;
	/* background-color: var(--color-coolgray); */
	border: 3px solid var(--color-lightgray);
	border-radius: 30px;
	width: 100%;
	padding: 50px 0;
	text-align: center;
	line-height: 1;
	box-shadow: 0px 7px 12px var(--color-palegray);
	cursor: pointer;
}

.bt-screen-transition-change:disabled {
	color: var(--color-coolgray);
	background-color: var(--color-palegray);
	box-shadow: none;
	cursor: default;
	border: none;
}

.bt-screen-transition:disabled {
	color: var(--color-coolgray);
	background-color: var(--color-palegray);
	box-shadow: none;
	cursor: default;
}

/* メールアドレス認証画面 */
.user-login-input-area,
.user-login-confirm-area {
	width: 540px;
	margin: 40px auto 100px;
}
.user-login-area h3 {
	font-size: var(--font-large);
	font-weight: bold;
}
.user-login-area p {
	font-size: var(--font-large);
	line-height: 1.5;
	margin: 30px 0;
}
.input-email {
	margin: 30px 0;
}

.reservation-form-input-box {
	position: relative;
	font-size: var(--font-xlarge);
	border: 1px solid var(--color-black);
	width: 100%;
	line-height: 1;
	padding: 25px;
	border-radius: 25px;
	margin: 10px auto 10px;
	background-color: var(--color-white);
	box-shadow: 0px 7px 12px var(--color-palegray);
}
.reservation-form-input-box::placeholder {
	color: var(--color-palegray);
}

/* 予約者情報を入力 */
.reservation-details {
	background-color: var(--color-whitegray);
	border-radius: 20px;
	width: 590px;
	margin: 30px auto;
	padding: 20px;
}
.user-info-preview-title {
	font-size: var(--font-large);
	width: 510px;
	margin: 20px auto 0;
	border-bottom: 1px solid var(--color-warmgray);
}
.disp-book-date {
	font-size: var(--font-xxxlarge);
	font-weight: bold;
	width: 500px;
	margin: 20px auto;
}
.input-user-info-collumn {
	margin: 30px auto;
	width: 570px;
	font-size: var(--font-xlarge);
}
.user-info-user-email-wrapper {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}

.payment-method-area {
	width: 590px;
	margin: 30px auto;
	padding: 20px;
}

.payment-method-area div {
	margin-bottom: 40px;
}
.payment-method-area div span {
	color: var(--color-red);
}
.payment-method-area .payment-method-label {
	font-size: var(--font-xlarge);
	margin-bottom: 10px;
	font-weight: bold;
}
.payment-method-area p a {
	display: inline-block;
}
.payment-method-area p img {
	margin: 15px 0;
}

.user-info-user-email {
	width: 450px;
}
.bt-change-user-email {
	display: block;
	border: 1px solid var(--color-black);
	padding: 10px 10px;
	line-height: 1;
	border-radius: 10px;
}

/* 予約情報を確認 */
.msg-unconfirming {
	color: var(--color-red);
	background-color: var(--color-pink);
	font-size: var(--font-xlarge);
	font-weight: bold;
	width: 570px;
	margin: 30px auto;
	padding: 50px 0;
	text-align: center;
}

.confirm-user-info-wrapper {
	width: 590px;
	margin: 0 auto;
}

.confirm-user-info-collumn {
	margin-top: 50px;
	margin-left: 40px;
	font-size: var(--font-xlarge);
}
.confirm-user-info-collumn span {
	display: block;
	margin-top: 20px;
	margin-left: 30px;
	font-size: var(--font-xlarge);
	font-weight: bold;
	width: 530px;
	overflow-wrap: break-word;
}

/* プライバシーポリシー */
h3.privacy-policy-title {
	margin-top: 50px;
}
.privacy-policy {
	width: 590px;
	height: 300px;
	margin: 30px auto;
	padding: 30px;
	overflow-y: scroll;
	border: 1px solid var(--color-neutralgray);
}

.privacy-policy-inquiry {
	margin-top: 1em;
}

span.privacy-policy-title {
	display: block;
	font-weight: bold;
	margin-top: 20px;
	margin-bottom: 10px;
}
.consent-privacy-policy {
	font-size: var(--font-xlarge);
	width: 570px;
	text-align: center;
	margin: 70px auto;
	line-height: 1;
	font-weight: bold;
}
.consent-privacy-policy input[type='checkbox'] {
	font-size: var(--font-xlarge);
	width: 30px;
	height: 30px;
}

/* 予約完了 */
.reservation-complete {
	font-size: var(--font-xxxlarge);
	text-align: center;
	font-weight: bold;
	margin-top: 30px;
}
.preview-bus-msg {
	text-align: center;
}
.ticket-book-id {
	font-size: var(--font-xxxlarge);
	background-color: var(--color-white);
	font-weight: bold;
	text-align: center;
	border: 1px solid var(--color-black);
	padding: 25px 0;
	margin-bottom: 30px;
}
.ticket-book-id div {
	font-size: var(--font-normal);
}
.disp-user-name {
	font-size: var(--font-xlarge);
	font-weight: bold;
	margin-top: 70px;
	margin-bottom: 30px;
	padding-top: 20px;
	border-top: 1px solid var(--color-black);
}
.disp-user-name span {
	display: inline-block;
	margin-right: 20px;
}
.cancel-info-wrapper {
	margin: 50px auto 100px;
	width: 570px;
}
.msg-cancelable {
	font-size: var(--font-large);
	font-weight: bold;
	/* width: 500px; */
	margin: 50px auto;
	text-align: center;
}

/* マイページ */
.bt-show-ticket {
	width: 500px;
	margin: 10px auto 0;
}

.login-email-address-wrapper {
	margin: 30px auto 50px;
	text-align: right;
	width: 570px;
}
.login-email-address-wrapper button {
	padding: 5px 10px;
	margin-top: 10px;
	border: 1px solid var(--color-black);
}
.login-email-address-wrapper button:hover {
	opacity: 0.5;
}

.msg-login-email-address {
	font-size: var(--font-normal);
}
.login-email-address {
	font-size: var(--font-large);
	font-weight: bold;
}
.reservation-list-type {
	color: var(--color-coolgray);
	font-weight: bold;
	font-size: var(--font-large);
	width: 560px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	cursor: pointer;
}
.reservation-list-type .selected {
	border-bottom: 5px solid var(--color-warmgray);
	color: var(--color-warmgray);
}
/* .reservation-list-type div:hover {
	opacity: 0.5;
} */

.no-book-msg {
	background-color: var(--color-whitegray);
	border-radius: 20px;
	width: 590px;
	margin: 30px auto;
	padding: 20px;
	font-weight: bold;
	text-align: center;
}

.bt-mypage {
	display: block;
	position: fixed;
	width: 120px;
	height: 120px;
	right: 20px;
	top: 60px;
	z-index: 9999;
}

.disp-book-list {
	font-size: var(--font-large);
	width: 590px;
	margin: 30px auto;
	min-height: 600px;
}

/* sweetalert */
.swal-msg {
	font-size: 24px;
}
.swal-bt-size {
	font-size: 30px;
}

/* フッタ */

footer {
	background-color: var(--color-blue);
	color: var(--color-white);
	width: 100%;
	padding: 40px 40px 180px;
}

.footer-wrapper {
	width: 560px;
}

.sns-link-area {
	margin-top: 20px;
	display: flex;
	justify-content: space-around;
}

.sns-wrapper {
	display: flex;
	/* justify-content: space-between; */
}

.sns-tsunagari-wrapper {
	width: 330px;
}
.sns-onibar-wrapper {
	width: 200px;
}

.sns-link-icon {
	width: 70px;
}

.sns-link-area img {
	width: 100%;
	display: block;
	padding: 10px;
}

.sns-link-area img {
	width: 100%;
}

footer h1 {
	font-size: var(--font-normal);
	border-bottom: 1px solid var(--color-white);
	width: fit-content;
	margin-top: 30px;
	width: 100%;
}
footer h2 {
	text-align: center;
	margin-top: 30px;
}
footer ul {
	font-size: var(--font-small);
	margin: 20px;
}

footer ul li {
	margin-bottom: 10px;
}
footer a {
	color: var(--color-white);
}

.footer-icon-menu-wrapper {
	background-color: var(--color-blue);
	width: 100%;
	position: fixed;
	bottom: 0%;
	left: 0%;
	border-top: 1px solid var(--color-white);
}
.footer-icon-menu {
	display: flex;
	justify-content: center;
	gap: 20px;
	width: 640px;
	margin: 0 auto;
	padding: 14px 20px;
}
.footer-icon-menu button {
	flex: 1 1 0;
	max-width: 300px;
	padding: 16px 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--color-blue);
	background-color: var(--color-white);
	border-radius: 999px;
	font-weight: bold;
	font-size: var(--font-normal);
	line-height: 1.3;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.disp-busmo-banner {
	width: 350px;
	margin: 30px auto;
}

.modal-main .picture-slider-container {
	margin: 0 auto;
}

.picture-slider {
	position: relative;
	width: 92%;
	top: 100px;
	padding-top: 150%;
	overflow: hidden;
	margin: 30px auto;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}

.modal-main .picture-slider {
	top: 0;
	padding-top: 0;
	height: 550px;
	margin: 0 auto;
	box-shadow: none;
}

.about-minami-awaji-city .picture-slider-nav img {
	height: 100px;
}

.picture-slider-items {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	position: absolute;
	z-index: 1;
	top: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

.picture-slider-item {
	min-width: 100%;
	height: 100%;
	margin: 0;
}

.picture-slider-item img {
	display: block;
	margin: 0 auto;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.picture-slider-button {
	z-index: 2;
	position: absolute;
	width: 50px;
	height: 50px;
	border: none;
	outline: none;
	padding: 0;
	cursor: pointer;
	opacity: 0.4;
	display: block;
	margin: auto 0;
	top: 45%;
	display: none;
}

.picture-slider-button.prev {
	background-image: url(https://uzs-bus.com/img/bt_picture_slider_prev.png);
	background-size: contain;
	left: 10px;
}

.picture-slider-button.next {
	background-image: url(https://uzs-bus.com/img/bt_picture_slider_next.png);
	background-size: contain;
	right: 10px;
}

.picture-slider-button:hover {
	opacity: 0.8;
}

.picture-slider-nav {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding-top: 20px;
}
.modal-main .picture-slider-nav {
	width: auto;
	padding-top: 0px;
	margin: 0 20px 20px;
	justify-content: flex-start;
}

.picture-slider-nav-thumb {
	width: 100%;
	position: relative;
	margin: 10px 5px;
}
.modal-main .picture-slider-nav-thumb {
	width: 100px;
	height: 100px;
}

.picture-slider-nav-thumb:first-child {
	margin-left: 0px;
}

.picture-slider-nav-thumb:last-child {
	margin-right: 0px;
}

.picture-slider-nav-thumb::before {
	content: '';
	display: block;
	padding-bottom: 100%;
}

.picture-slider-nav img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
}
.modal-main .picture-slider-nav img {
	width: 100px;
	height: 100px;
	object-fit: cover;
}

.picture-slider-nav div {
	position: relative;
	width: 95px;
	transition: all 0.3s ease-in-out;
}

.picture-slider-nav div:hover {
	opacity: 0.5;
	transition: all 0.3s ease-in-out;
}

.picture-slider-nav div.active img {
	border: 3px solid var(--color-yellow);
}

.picture-slider-nav-thumb img.current {
	border: solid 3px var(--color-yellow);
}

/* ----------------------------
modal
----------------------------- */
.modal {
	display: none;
	min-height: 100vh;
	min-height: -webkit-fill-available;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 300;
	overflow: auto;
	font-size: 26px;
}

.modal-bg {
	background: rgba(0, 0, 0, 0.3);
	min-height: 100vh;
	min-height: -webkit-fill-available;
	position: fixed;
	width: 100%;
}

.modal-close-btn {
	width: 40px;
}

.batsu {
	display: block;
	position: relative;
	width: 30px;
	height: 30px;
}

.batsu::before,
.batsu::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 5px;
	height: 30px;
	background: #333;
}

.batsu::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.batsu::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-header .modal-close-btn {
	font-size: 20px;
	line-height: 1em;
}

.modal-content-user-auth {
	text-align: center;
	background: #fff;
	left: 50%;
	position: fixed;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 510px;
	overflow: auto;
	border-radius: 15px;
	height: 420px;
	padding: 50px 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.modal-content-user-auth h2 {
	color: var(--color-blue);
	font-weight: bold;
	font-size: var(--font-xlarge);
	margin-bottom: 30px;
}

.modal-content-user-auth p {
	margin-bottom: 30px;
	font-size: var(--font-normal);
}

.modal-content-user-auth .bt-screen-transition-change {
	display: block;
	font-size: 40px;
	border: 3px solid var(--color-lightgray);
	border-radius: 60px;
	width: 290px;
	padding: 30px 0;
	text-align: center;
	line-height: 1;
	box-shadow: 0px 7px 12px var(--color-palegray);
	cursor: pointer;
}

.modal-header {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	background-color: var(--color-brown);
	padding: 10px 20px;
}

.modal-title {
	font-size: 28px;
	font-weight: bold;
}

.modal-text {
	margin: 20px;
	text-align: left;
	padding-bottom: 20px;
	font-size: 22px;
	color: var(--color-text-sub);
	line-height: 36px;
}
/* ---------------------------- */
