@charset "UTF-8";
@import url("style_menu.css");



/* //////// 共通設定　*/
body {
	position: relative;
}

.skip-link {
	position: absolute;
	top: -60px;
	left: 0;
	background: #000;
	color: #fff;
	padding: 8px 16px;
	z-index: 1000;
	text-decoration: none;
	transition: top 0.3s;
}

.skip-link:focus {
	top: 0;
}

img {
	width: 100%;
	height: auto;
}

a[href*="tel:"] {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
}

.abox {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 4;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.sp-only {
	display: none !important;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.brsp {
	display: none;
}

@media screen and (max-width: 834px) {
	.brtab {
		display: none;
	}

	.pc-only {
		display: none;
	}

	.sp-only {
		display: block !important;
	}
}

@media screen and (max-width: 600px) {
	.brpc {
		display: none;
	}

	.brsp {
		display: block;
	}
}

.fin {
	opacity: 0;
	transform: translate(0, 5px);
	transition-duration: 1s;
	transition-property: all;
}

.fin.sin {
	opacity: 1;
	transform: translate(0, 0);
}


/* //////// リンク画像hover時　拡大　*/

.scale-image .bg {
	position: relative;
	overflow: hidden;
}

.scale-image .bg img {
	opacity: 1;
	transform: scale(1);
	transition: all .8s;
}

@media (hover: hover) {
	.scale-image:hover .bg img {
		opacity: 0.9;
		transform: scale(1.08);
		transition: all .8s;
	}
}


/* //////// リンク画像装飾　*/

.more {
	position: relative;
}

.more:after {
	width: 30px;
	height: 30px;
	background-image: url("/admission/assets/img/common_img/more.svg");
	right: 0;
	bottom: 0;
	z-index: 2;
}

.new-window {
	position: relative;
}

.new-window:after {
	width: 30px;
	height: 30px;
	background-image: url("/admission/assets/img/common_img/new-window.svg");
	right: 0;
	bottom: 0;
	z-index: 2;
}



/* ////////  header */

header {
	width: 100%;
	height: 80px;
	position: fixed;
	box-sizing: border-box;
	top: 0;
	left: 0;
	background: #FFF;
	z-index: 1001;
}

header .header-logo {
	width: 200px;
	position: absolute;
	left: 20px;
	top: 10px;
	height: 70px;
}

header .header-logo .logo {
	width: 180px;
	display: inline-block;
}

header .header-logo p {
	font-size: 12px;
	font-weight: 500;
	display: inline-block;
	white-space: nowrap;
	position: absolute;
	top: 35px;
	right: 20px;
}

header .header-logo p span {
	color: #00A0C8;
}

@media screen and (max-width: 834px) {
	header {
		width: 100%;
		height: 60px;
		position: fixed;
		box-sizing: border-box;
		top: 0;
		left: 0;
		background: #FFF;
		z-index: 1001;
	}

	header .header-logo {
		width: 150px;
		position: absolute;
		left: 12px;
		top: 7px;
		height: 53px;
	}

	header .header-logo .logo {
		width: 140px;
		display: inline-block;
	}

	header .header-logo p {
		font-size: 11px;
		font-weight: 500;
		display: inline-block;
		white-space: nowrap;
		position: absolute;
		top: 27px;
		right: 5px;
	}
}


/* ////////  footer */

footer {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 40px 0 20px;
	background: #F1F2EA;
}

.footer-logo {
	padding-bottom: 40px;
}

.footer-logo .logo {
	width: 180px;
	display: inline-block;
}

.footer-logo p {
	display: inline-block;
	padding: 15px 0 0 15px;
	font-size: 14px;
	font-weight: 500;
}

.footer-logo p span {
	color: var(--main-color);
}

footer .footer-nav {
	width: 90%;
	margin: 0 auto;
	max-width: 1100px;
}

.footer-nav-column {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.footer-nav-column > .footer-nav-wrap {
	width: calc(50% - 16px);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.footer-nav-column > .footer-nav-wrap > ul {
	width: calc(50% - 16px);
}

.footer-nav-column > .footer-nav-wrap > ul > li {
	margin-bottom: 20px;
}

.footer-nav-column > .footer-nav-wrap > ul > li p {
	color: var(--main-color);
	border-bottom: solid 1px #FFF;
	padding-bottom: 4px;
	margin-bottom: 4px;
	font-size: .9em;
}

.footer-nav-column > .footer-nav-wrap > ul > li > ul {
	padding-left: 1em;
}

.footer-nav-column > .footer-nav-wrap > ul > li > ul li {
	line-height: 1.7em;
}

.footer-nav-column > .footer-nav-wrap > ul > li > ul li > ul > li {
	line-height: 1.4em;
	display: inline-block;
	padding-right: 10px;
	margin-right: 10px;
}
.footer-nav-column > .footer-nav-wrap > ul > li > ul li > ul:nth-of-type(1) {
	margin-bottom: 10px;
}

.footer-nav-column > .footer-nav-wrap > ul > li > ul li a {
	color: #000;
	text-decoration: none;
	font-size: .9rem;
	display: inline-block;
	position: relative;
}
.footer-nav-column > .footer-nav-wrap > ul > li > ul li > ul > li a {
	font-size: 0.75rem;
}

.footer-nav-column > .footer-nav-wrap > ul > li > ul li a:after {
	position: absolute;
	right: -8px;
	top: calc(50% - 3px);
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 3px solid transparent;
	border-bottom: 3px solid transparent;
	border-left: 2px solid #00a0c8;
	border-right: 0;
}

.footer-nav-column > .footer-nav-wrap > ul > li > ul li a.window:after {
	position: absolute;
	right: -15px;
	top: calc(50% - 3px);
	width: 6px;
	height: 6px;
	background-image: url("/admission/assets/img/common_img/window.svg");
	border: none;
}

.footer-txt {
	width: 90%;
	margin: 0 auto;
	max-width: 1100px;
	border-top: 1px solid #FFF;
	padding-top: 20px;
}

.footer-txt .ttl {
	color: var(--main-color);
}

.footer-txt p {
	text-align: center;
	font-size: 0.85rem;
	line-height: 1.6em;
}

.footer-txt .footer-note {
	padding: 0 0 20px;
	margin-top: 20px;
	font-size: 0.75rem;
	line-height: 1.6em;
	font-weight: 400;
}

.copyright {
	text-align: center;
	line-height: 1.4em;
	font-size: 10px;
	color: var(--main-color);
}

.ap-btn {
	position: fixed;
	display: block;
	width: 120px;
	height: 120px;
	right: 30px;
	bottom: 30px;
	border-radius: 50%;
	z-index: 3;
	transition: all .3s;
}

.pagetop {
	all: unset;
	/* リセット */
	cursor: pointer;
	position: fixed;
	width: 48px;
	height: 48px;
	background: url("/admission/assets/img/common_img/page-top.png") no-repeat center center;
	background-size: contain;
	right: 0;
	bottom: 0;
	z-index: 3;
}

@media (hover: hover) {
	.ap-btn:hover {
		transform: scale(.95);
	}

	.footer-nav-column > .footer-nav-wrap > ul > li > ul li a:hover {
		text-decoration: underline;
	}
}

@media screen and (max-width: 834px) {
	footer {
		position: relative;
		width: 100%;
		height: 100%;
		padding: 20px 0 20px;
		background: #F1F2EA;
	}

	.footer-logo {
		padding-bottom: 30px;
	}

	.footer-logo .logo {
		width: 120px;
		display: inline-block;
	}

	.footer-logo p {
		display: inline-block;
		padding: 15px 0 0 15px;
		font-size: 12px;
		font-weight: 500;
	}
	.footer-nav-column > .footer-nav-wrap {
		width: calc(50% - 10px);
	}
	.footer-nav-column > .footer-nav-wrap > ul {
		width: 100%;
	}

	.footer-nav-column > .footer-nav-wrap > ul:nth-child(1) {
		order: 1;
	}

	.footer-nav-column > .footer-nav-wrap > ul:nth-child(3) {
		order: 2;
	}

	.footer-nav-column > .footer-nav-wrap > ul:nth-child(2) {
		order: 3;
	}

	.footer-nav-column > .footer-nav-wrap > ul:nth-child(4) {
		order: 4;
	}

	.footer-nav-column > .footer-nav-wrap > ul > li > ul {
		padding-left: 0.5em;
	}

	.ap-btn {
		width: 60px;
		height: 60px;
		right: 20px;
		bottom: 20px;
	}

	.pagetop {
		width: 30px;
		height: 30px;
	}
}


/* //////// パンくずリスト　*/

.breadcrumb {
	position: relative;
	background: #00A0C8;
	padding: 5px 0;
}

.breadcrumb ol {
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.breadcrumb ol li {
	font-size: 0.75rem;
	position: relative;
	padding-right: 10px;
	margin-right: 10px;
	white-space: nowrap;
	color: #FFF;
}

.breadcrumb ol li a {
	color: #FFF;
	text-decoration: none;
	transition: all .3s;
}

.breadcrumb ol li:after {
	position: absolute;
	right: 0px;
	top: calc(50% - 3px);
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 3px solid transparent;
	border-bottom: 3px solid transparent;
	border-left: 2px solid #FFF;
	border-right: 0;
}

.breadcrumb ol li:last-child:after {
	display: none;
}

@media (hover: hover) {
	.breadcrumb ol li a:hover {
		opacity: .8;
	}
}

@media (max-width: 600px) {
	.breadcrumb {
		position: relative;
		background: #00A0C8;
		padding: 1px 0;
	}

	.breadcrumb ol {
		width: 96%;
	}

	.breadcrumb ol li {
		font-size: 0.55rem;
		position: relative;
		padding-right: 6px;
		margin-right: 6px;
		white-space: nowrap;
		letter-spacing: 0.01em;
	}
}


/* //////// タイトル装飾　*/

.block-ttl-style01 {
	display: inline-block;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	padding: 0 100px;
	font-size: 2rem;
	font-weight: 500;
	color: var(--main-color);
	margin-bottom: 40px;
	white-space: nowrap;
	z-index: 3;
	text-align: center;
}

.block-ttl-style01:before {
	width: 83px;
	height: 6px;
	background-image: url("/admission/assets/img/common_img/ttl-line-left.svg");
	left: 0;
	top: 50%;
}

.block-ttl-style01:after {
	width: 83px;
	height: 6px;
	background-image: url("/admission/assets/img/common_img/ttl-line-right.svg");
	right: 0;
	top: 50%;
}

@media screen and (max-width: 834px) {
	.block-ttl-style01 {
		display: inline-block;
		position: relative;
		left: 50%;
		transform: translateX(-50%);
		padding: 0 30px;
		font-size: min(4.4vw, 1.3rem);
		font-weight: 500;
		color: var(--main-color);
		margin-bottom: 20px;
		white-space: nowrap;
		z-index: 3;
		line-height: 1.4em;
	}

	.block-ttl-style01:before {
		width: 23px;
		height: 4px;
		background-image: url("/admission/assets/img/common_img/ttl-line-left.svg");
		background-size: cover;
		background-position: left center;
		left: 0;
		top: 50%;
	}

	.block-ttl-style01:after {
		width: 23px;
		height: 4px;
		background-image: url("/admission/assets/img/common_img/ttl-line-right.svg");
		background-size: cover;
		background-position: right center;
		right: 0;
		top: 50%;
	}
}


/* //////// ボタン　青　*/

.blue-button {
	position: relative;
	width: 90%;
	margin: 0 auto;
	max-width: 540px;
	border-radius: 40px;
	height: 76px;
	background: #00A0C8;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 15px;
	overflow: hidden;
	z-index: 1;
}

.blue-button p {
	text-align: center;
	color: #FFF;
	line-height: 1.1em;
	position: relative;
	display: inline-block;
}

.blue-button p:after {
	position: absolute;
	right: -15px;
	top: calc(50% - 3px);
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 5px solid #FFF;
	border-right: 0;
}

.blue-button:before {
	width: 100%;
	height: 100%;
	background-color: #02B3DF;
	position: absolute;
	left: -100%;
	top: 0;
	transition: .3s;
	z-index: -1;
}

button.blue-button {
	color: #FFF;
	font-size: 1rem;
	position: relative;
}

button.blue-button.small {
	width: 200px;
}

button.blue-button span {
	position: relative;
}

button.blue-button span:after {
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 4px 0 4px 6px;
	border-color: transparent transparent transparent #FFF;
	transform: rotate(0deg);
	right: -22px;
	top: 50%;
	transform: translateY(-50%);
}

@media screen and (max-width: 834px) {
	.blue-button {
		position: relative;
		width: 86%;
		border-radius: 40px;
		height: 50px;
		padding: 0 10px;
	}

	.blue-button p {
		font-size: 0.85rem;
	}

	.blue-button p:after {
		right: -10px;
		border-top: 4px solid transparent;
		border-bottom: 4px solid transparent;
		border-left: 3px solid #FFF;
		border-right: 0;
	}
}

@media (hover: hover) {

	.bb-layer:hover .blue-button:before,
	.blue-button:hover:before {
		left: 0;
	}
}


/* //////// ボタン　赤　*/

.red-button {
	position: relative;
	width: 90%;
	margin: 0 auto;
	max-width: 540px;
	border-radius: 40px;
	height: 76px;
	background: #ED4841;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 15px;
	overflow: hidden;
	z-index: 1;
}

.red-button:before {
	width: 100%;
	height: 100%;
	background-color: #ef5b56;
	position: absolute;
	left: -100%;
	top: 0;
	transition: .3s;
	z-index: -1;
}

button.red-button {
	color: #FFF;
	font-size: 1rem;
	position: relative;
}

button.red-button span {
	position: relative;
}

button.red-button span:after {
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 4px 0 4px 6px;
	border-color: transparent transparent transparent #FFF;
	transform: rotate(0deg);
	right: -22px;
	top: 50%;
	transform: translateY(-50%);
}

@media screen and (max-width: 834px) {
	.red-button {
		position: relative;
		width: 86%;
		border-radius: 40px;
		height: 50px;
		padding: 0 10px;
	}
}

@media (hover: hover) {
	.red-button:hover:before {
		left: 0;
	}
}


/* //////// ボタン　緑　*/

.green-button {
	position: relative;
	width: 90%;
	margin: 0 auto;
	max-width: 540px;
	border-radius: 40px;
	height: 76px;
	background: #1FB796;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 15px;
	overflow: hidden;
	z-index: 1;
}

.green-button p {
	text-align: center;
	color: #FFF;
	line-height: 1.1em;
	position: relative;
	display: inline-block;
}

.green-button p:after {
	position: absolute;
	right: -15px;
	top: calc(50% - 3px);
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 5px solid #FFF;
	border-right: 0;
}

.green-button:before {
	width: 100%;
	height: 100%;
	background-color: #1FCAA5;
	position: absolute;
	left: -100%;
	top: 0;
	transition: .3s;
	z-index: -1;
}

.green-button.window p:after {
	position: absolute;
	right: -15px;
	top: calc(50% - 3px);
	width: 8px;
	height: 8px;
	border-style: none;
	background-image: url("/admission/assets/img/common_img/window-white.svg");
	border: none;
}

.green-button.pdf p:after {
	position: absolute;
	right: -25px;
	top: calc(50% - 7px);
	width: 15px;
	height: 15px;
	border-style: none;
	background-image: url("/admission/assets/img/common_img/pdf-icon.png");
	border: none;
}

.button-list {
	margin-bottom: 80px;
}

.button-list>div {
	margin-bottom: 10px;
}

@media screen and (max-width: 834px) {
	.green-button {
		position: relative;
		width: 86%;
		border-radius: 40px;
		height: 50px;
		padding: 0 10px;
	}

	.green-button p {
		font-size: 0.85rem;
	}

	.green-button p:after {
		right: -10px;
		border-top: 4px solid transparent;
		border-bottom: 4px solid transparent;
		border-left: 3px solid #FFF;
		border-right: 0;
	}
}

@media (hover: hover) {

	.bb-layer:hover .green-button:before,
	.green-button:hover:before {
		left: 0;
	}
}




/* //////// 基本レイアウト設定　*/

main {
	padding: 80px 0 0;
}

@media screen and (max-width: 834px) {
	main {
		padding: 60px 0 0;
	}
}

.content {
	width: 90%;
	margin: 0 auto;
	max-width: 1100px;
}

.section-single {
	padding: 80px 0 100px;
}

.section-nomal {
	padding: 80px 0 0;
}

.section-end,
.section-single {
	padding: 80px 0 100px;
}

@media screen and (max-width: 834px) {
	.section-single {
		padding: 40px 0 60px;
	}

	.section-nomal {
		padding: 40px 0 0;
	}

	.section-end,
	.section-single {
		padding: 40px 0 60px;
	}
}

.page-ttl {
	position: relative;
}

.page-ttl-image {
	position: relative;
}

.page-ttl-image img {
	object-fit: cover;
	max-height: 280px;
}

.page-ttl-box {
	width: 90%;
	max-width: 740px;
	margin: 0 auto -45px;
	border-radius: 4px;
	background: #FFF;
	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.20);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 90px;
	top: -45px;
	position: relative;
	z-index: 2;
}

.page-ttl-box h1 {
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--main-color);
}

@media screen and (max-width: 834px) {
	.page-ttl-image img {
		object-fit: cover;
		min-height: 100px;
	}

	.page-ttl-box {
		width: 90%;
		max-width: 600px;
		margin: 0 auto -25px;
		border-radius: 4px;
		background: #FFF;
		box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.20);
		display: flex;
		align-items: center;
		justify-content: center;
		height: 50px;
		top: -25px;
		position: relative;
		z-index: 2;
	}

	.page-ttl-box h1 {
		font-size: min(4vw, 1.6rem);
		font-weight: 500;
		color: var(--main-color);
	}
}

.page-ttl-simple {
	position: relative;
	padding: 30px 0;
	background: #F1F2EA;
}

.page-ttl-simple h1 {
	font-size: min(4vw, 1.4rem);
	font-weight: 500;
	color: var(--main-color);
	text-align: center;
}

/* //////// 関連リンク　*/

.related-links {
	position: relative;
	padding-bottom: 100px;
}

.related-links .content {
	border-top: solid 1px var(--main-color);
}

.related-links .block-ttl-style01 {
	font-size: 1.2rem;
	margin-bottom: 30px;
}

.related-links-bnrs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 103%;
	position: relative;
	left: -1.5%;
}

.related-links-bnrs li {
	width: 30.33%;
	margin: 0 1% 30px;
	position: relative;
}

.related-links-bnrs li p {
	padding: 10px 0 0;
	text-align: center;
	font-size: 1rem;
	line-height: 1.4em;
}

.related-links-bnrs li p span {
	display: block;
	color: var(--main-color);
	font-size: 0.8rem;
}

@media screen and (max-width: 600px) {
	.related-links-bnrs {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
		position: relative;
		left: 0;
		max-width: 320px;
		margin: 0 auto;
	}

	.related-links-bnrs li {
		width: 100%;
		margin: 0 0 30px;
		position: relative;
	}
}


/* //////// 共通タブ設定　*/

.page-tab-contents .tab-content {
	display: none;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
	padding: 40px 0;
}

.page-tab-contents .tab-content.active {
	display: block;
	opacity: 1;
}

@media screen and (max-width: 834px) {
	.page-tab-contents .tab-content {
		display: none;
		opacity: 0;
		transition: opacity 0.5s ease-in-out;
		padding: 20px 0;
	}
}

.page-tab-nav {
	position: relative;
}

.page-tab-nav>ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0 15%;
	margin-bottom: 40px;
	width: 100%;
	height: 60px;
}

.page-tab-nav>ul:after {
	width: 100%;
	height: 2px;
	background: var(--main-color);
	bottom: 0;
	left: 0;
	z-index: 2;
}

.page-tab-nav>ul > li {
	width: 49.8%;
	cursor: pointer;
	height: 50px;
	background: #55B7CF;
	text-align: center;
	position: relative;
	top: 10px;
	transition: all .3s;
	border-radius: 4px 4px 0 0;
}

.page-tab-nav>ul > li>span {
	color: #FFF;
	top: 10px;
	position: relative;
	transition: all .3s;
}

.page-tab-nav>ul > li span span {
	font-size: 80%;
}

.page-tab-nav>ul > li[aria-selected="true"] {
	height: 60px;
	background: #00A0C8;
	top: 0;
}

.page-tab-nav>ul > li[aria-selected="true"]>span {
	color: #FFF;
	top: 15px;
	position: relative;
}

@media screen and (max-width: 834px) {
	.page-tab-nav>ul {
		padding: 0 2%;
		margin-bottom: 20px;
		width: 100%;
		height: 45px;
	}

	.page-tab-nav>ul > li {
		width: 49.8%;
		height: 40px;
		top: 5px;
	}

	.page-tab-nav>ul > li>span {
		font-size: min(2.5vw, 0.9rem);
		color: #FFF;
		top: 5px;
	}

	.page-tab-nav>ul > li[aria-selected="true"] {
		height: 45px;
	}

	.page-tab-nav>ul > li[aria-selected="true"]>span {
		top: 8px;
	}
}

@media screen and (max-width: 600px) {
	.page-tab-nav>ul > li:nth-child(1)>span {
		font-size: min(2.5vw, 0.9rem);
		color: #FFF;
		top: 1px;
	}

	.page-tab-nav>ul > li:nth-child(1)[aria-selected="true"]>span {
		top: 2px;
	}

	.page-tab-nav>ul > li span span {
		font-size: 80%;
		position: relative;
		top: -1.2rem;
	}
}

/* //////// スマートフォン時　横スクロール設定　*/

@media screen and (max-width: 500px) {
	.scroll-box > div {
		min-width: 600px;
	}

	.scroll-box:before {
		content: "横スクロールできます";
		position: absolute;
		left: 50%;
		bottom: 5px;
		transform: translate(-50%, 0);
		opacity: 1;
		transition: all .5s;
		background: rgba(0, 0, 0, 0.2);
		z-index: 2;
		color: #FFF;
		font-size: 11px;
		line-height: 1.6em;
		padding: 3px 12px;
		white-space: nowrap;
	}

	.scroll-box.on:before {
		opacity: 0;
	}

	.scroll-box {
		overflow-x: auto;
		padding-bottom: 40px;
		-webkit-overflow-scrolling: touch;
		position: relative;
		margin-bottom: 30px;
	}

	.scroll-box::-webkit-scrollbar {
		height: 6px;
	}

	.scroll-box::-webkit-scrollbar-track {
		background: #eee;
		border-radius: 3px;
	}

	.scroll-box::-webkit-scrollbar-thumb {
		background: #E2E2E2;
		border: none;
		border-radius: 3px;
	}
}

@media screen and (max-width: 600px) {
	.scroll-box-wide {
		position: relative;
	}

	.scroll-box-wide>div {
		min-width: 800px;
	}

	.scroll-box-wide:before {
		content: "横スクロールできます";
		position: absolute;
		left: 50%;
		bottom: 5px;
		transform: translate(-50%, 0);
		opacity: 1;
		transition: all .5s;
		background: rgba(0, 0, 0, 0.2);
		z-index: 2;
		color: #FFF;
		font-size: 11px;
		line-height: 1.6em;
		padding: 3px 12px;
		white-space: nowrap;
	}

	.scroll-box-wide.on:before {
		opacity: 0;
	}

	.scroll-box-wide {
		overflow-x: auto;
		padding-bottom: 40px;
		-webkit-overflow-scrolling: touch;
		position: relative;
		margin-bottom: 30px;
	}

	.scroll-box-wide::-webkit-scrollbar {
		height: 6px;
	}

	.scroll-box-wide::-webkit-scrollbar-track {
		background: #eee;
		border-radius: 3px;
	}

	.scroll-box-wide::-webkit-scrollbar-thumb {
		background: #E2E2E2;
		border: none;
		border-radius: 3px;
	}
}