@charset "utf-8";
/* -----------------------
  共通
-------------------------- */
.wrapper {
	position: relative;
	width: 100%;
	max-width: 860px;
	margin: 0 auto;
	padding-right: 14px;
	padding-left: 14px;
}
.wrapper--main {
	max-width: 1000px;
	padding-right: 0;
	padding-left: 0;
}
body {
	background-color: #ddd;
}
.font-bold {
	font-weight: bold;
}
.section-title {
	margin-bottom: 20px;
	padding: 1rem;
	background-color: #004da1;
	color: #fff;
	text-align: center;
	font-size: 1.7rem;
}
.link-btn {
	margin: 50px 0;
}
.link-btn a {
	display: block;
	max-width: 400px;
	margin: 0 auto;
	padding: 10px;
	border: solid 3px #ee7c00;
	background-color: #ee7c00;
	border-radius: 10px;
	color: #fff;
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
}
.link-btn a:hover {
	color: #ee7c00;
	background-color: #fff;
	transition: 0.5s;
}
@media (min-width: 45.001em){
	.wrapper {
		padding-right: 20px;
		padding-left: 20px;
	}
	.section-title {
		font-size: 2rem;
	}
	.link-btn {
		margin: 70px 0;
	}
	.link-btn a {
		max-width: 600px;
		padding: 15px 10px;
		font-size: 2.5rem;
	}
}


/* -----------------------
  ヘッダー
-------------------------- */
.header__logo {
	max-width: 60%;
	padding: 20px;
}
@media (min-width: 35.001em){
	.header__logo {
		width: 50%;
	}
}
@media (min-width: 45.001em){
	.header__logo {
		width: 40%;
		padding: 40px;
	}
}
@media (min-width: 60.001em){
	.header__logo {
		width: 30%;
	}
}


/* -----------------------
  メイン
-------------------------- */
/* main */
.content-main {
	position: relative;
	width: 100%;
	height: 100%;
	background-color: #f5e929;
	padding: 50px 0;
	margin-bottom: 30px;
}
.content-main::before {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/bg_main.svg);
	background-position: left top;
	background-size: cover;
	background-repeat: repeat;
	content: "";
}
@media (min-width: 45.001em) {
	.content-main::before {
		background-size: auto;
	}
}

/* app */
.content-detail__app {
	margin-bottom: 50px;
}
.app-download {
	margin-bottom: 20px;
}
.app-download__head {
	padding: 1rem;
	background-color: #d82817;
	text-align: center;
}
.app-download__body {
	background-color: #fff;
	padding: 1rem;
}
.app-download__text {
	margin-bottom: 1rem;
	text-align: center;
	font-weight: bold;
	font-size: 1.7rem;
}
.app-download__text span {
	font-weight: normal;
	font-size: 1.5rem;
}
.app-download__wrap {
	display: flex;
	justify-content: center;
	align-items: center;
}
.app-download__wrap .item-qr {
	display: none;
}
.app-attention {
	margin-bottom: 20px;
}
.app-attention__title {
	font-size: 1.5rem;
}
.app-attention__text {
	margin-bottom: 0;
}
.app-btn a {
	display: block;
	max-width: 300px;
	margin: 0 auto;
	padding: 1rem;
	background-color: #d82817;
	color: #fff;
	text-align: center;
	font-weight: bold;
	transition: 0.5s;
}
.app-btn a:hover {
	color: #fff;
	opacity: .7;
}
@media (min-width: 35.001em) {
	.app-btn a {
		max-width: 400px;
	}
}
@media (min-width: 45.001em) {
	.content-detail__app {
		margin-bottom: 70px;
	}
	.app-download__text {
		font-size: 2rem;
	}
	.app-download__wrap .item-img {
		margin-right: 10px;
	}
	.app-download__wrap .item-qr {
		display: block;
	}
}

/* detail */
.content-detail__info {
	margin-bottom: 70px;
}
.info-group {
	margin-bottom: 20px;
}
.info-group__title {
	margin-bottom: 5px;
	padding: 1em;
	font-size: 1.6rem;
	background-color: #fff;
	border-left: solid 5px #004da1;
}
.info-group__text {
	padding-left: 1em;
}
.info-group__text a {
	text-decoration: underline;
	color: #337ab7;
}
@media (min-width: 45.001em){
	.content-detail__info {
		margin-bottom: 90px;
	}
}


/* -----------------------
  フッター
-------------------------- */
.footer {
	background: #000;
	color: #fff;
}
.copyright {
	padding: .5em;
	font-size: 1.2rem;
	line-height: 1.4;
	text-align: center;
}
@media (min-width: 60.001em){
	.copyright {
		font-size: 1.4rem;
	}
}


/* -----------------------
  pagetop
-------------------------- */
.pagetop {
	display: none;
	position: fixed;
	bottom: 15px;
	right: 10px;
	z-index: 100;
}
.pagetop a {
	display: block;
	position: relative;
	background-color: #004098;
	border: 1px solid #004098;
	border-radius: 100%;
	width: 1em;
	height: 1em;
	font-size: 50px;
	transition: 0.5s;
}
.pagetop a:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0.3em;
	height: 0.3em;
	margin-top: 0.1em;
	border-top: 1px solid #ffffff;
	border-left: 1px solid #ffffff;
	transform: translate(-50%, -50%) rotate(45deg);
	transform-origin: center center;
}
.pagetop a:hover {
	opacity: .7;
}
@media (min-width: 45.001em){
	.pagetop {
		bottom: 30px;
		right: 30px;
	}
}


/* -------------------------------- *\
    Spaces
\* -------------------------------- */
/* Margin bottom */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 1rem !important; }
.mb-2 { margin-bottom: 2rem !important; }
.mb-3 { margin-bottom: 3rem !important; }
.mb-4 { margin-bottom: 4rem !important; }
.mb-5 { margin-bottom: 5rem !important; }


/* -------------------------------- *\
    Display
\* -------------------------------- */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
/* スクリーンリーダー用 */
.visually-hidden,
.sr-only,
.sr-only-focusable:not(:focus) {
	clip: rect(0, 0, 0, 0);
	position: absolute;
	bottom: 0;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	white-space: nowrap;
}
@media (min-width: 35.001em){
	.d-none-sm { display: none !important; }
	.d-block-sm { display: block !important; }
	.d-inline-sm { display: inline !important; }
	.d-inline-block-sm { display: inline-block !important; }
}
@media (min-width: 45.001em){
	.d-none-md { display: none !important; }
	.d-block-md { display: block !important; }
	.d-inline-md { display: inline !important; }
	.d-inline-block-md { display: inline-block !important; }
}
@media (min-width: 60.001em){
	.d-none-lg { display: none !important; }
	.d-block-lg { display: block !important; }
	.d-inline-lg { display: inline !important; }
	.d-inline-block-lg { display: inline-block !important; }
}