@charset "utf-8";

/* header */
#header {
	background-color: rgba(255,255,255,0.85);
	backdrop-filter: blur(16px);
	border-radius: 0 0 16px 16px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 50%;
	height: 64px;
	width: 100%;
	translate: -50% -100%;
	z-index: 1000;
	transition: 0.3s ease;
}
#header.is-show {
	translate: -50% 0;
}
#header .-logo {
	height: 46px;
}

/* top-sec */
#main .top-sec {
	background-color: #EBF8FF;
	background-image: url(../img/bg_top.svg);
	background-position: calc(50% - 300px) calc(100% + 30px);
	background-repeat: no-repeat;
	padding-bottom: 64px;
}
#main .top-sec h1 {
	text-align: center;
}
#main .top-sec h1 img {
	max-width: 100%;
}
#main .top-sec .app {
	margin-top: 32px;
}
#main .top-sec .app-slide {
	margin: 24px auto 0;
	height: 100%;
	width: 100%;
}
#main .top-sec .app-slide .swiper-slide {
	width: 108px;
}
#main .top-sec .app-slide .swiper-wrapper {
	transition-timing-function: linear;
}
#main .top-sec-main {
	margin-top: 64px;
}
#main .top-sec-main h2 {
	font-size: 40px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.1rem;
	margin-bottom: 16px;
	text-align: center;
}
#main .top-sec-main h2 sup {
	font-size: 20px;
}
#main .top-sec-main > p {
	line-height: 1.7;
	letter-spacing: 0.05em;
	margin-bottom: 1.7em;
	text-align: center;
}
#main .top-sec-main > p:last-of-type {
	margin-bottom: 0;
}
#main .top-sec .main-nav {
	margin: 40px auto 0;
	max-width: 1200px;
}
#main .top-sec .main-nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 8px;
	/*justify-content: center;*/
}
#main .top-sec .main-nav li {
	width: calc((100% - 16px) / 3);
	max-width: 445px;
}
#main .top-sec .main-nav li._soon {
	background-color: #EBF8FF;
}
#main .top-sec .main-nav li._soon a {
	pointer-events: none;
	opacity: 0.4;
}
#main .top-sec .main-nav li._soon a:before,
#main .top-sec .main-nav li._soon a:after {
	display: none;
}
#main .top-sec .main-nav li a {
	align-items: center;
	background-color: #0A3E86;
	border-radius: 8px;
	color: #fff;
	display: flex;
	padding: 20px 16px;
	position: relative;
	min-height: 80px;
	height: 100%;
	transition: 0.3s ease;
}
#main .top-sec .main-nav li a:before {
	border-radius: 50%;
	content: "";
	position: absolute;
	top: 50%;
	right: 16px;
	translate: 0 -50%;
	height: 24px;
	width: 24px;
}
#main .top-sec .main-nav li a:after {
	background-image: url(../img/icon_arrow.svg);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	position: absolute;
	right: 22px;
	top: 50%;
	translate: 0 -50%;
	height: 12px;
	width: 12px;
}
#main .top-sec .main-nav li a:hover {
	opacity: 0.8;
	translate: 0 -5px;
}
#main .top-sec .main-nav li a dl {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
}
#main .top-sec .main-nav li a dt {
	font-size: 12px;
	padding: 6px 0;
}
#main .top-sec .main-nav li._01 dt {
	color: #8FE0CA;
}
#main .top-sec .main-nav li._01 a:before {
	background-color: #8FE0CA;
}
#main .top-sec .main-nav li._02 dt {
	color: #F7A7A7;
}
#main .top-sec .main-nav li._02 a:before {
	background-color: #F7A7A7;
}
#main .top-sec .main-nav li._03 dt {
	color: #82CFFF;
}
#main .top-sec .main-nav li._03 a:before {
	background-color: #82CFFF;
}
#main .top-sec .main-nav li._04 dt {
	color: #FFCF66;
}
#main .top-sec .main-nav li._04 a:before {
	background-color: #FFCF66;
}
#main .top-sec .main-nav li._05 dt {
	color: #C0C2FA;
}
#main .top-sec .main-nav li a dt span {
	display: inline-block;
	font-size: 24px;
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	padding: 0 2px;
	vertical-align: -0.1em;
}
#main .top-sec .main-nav li a dd {
	border-left: 1px solid #fff;
	flex: 1;
	font-family: "Roboto", "hiragino sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.05em;
	margin-left: 8px;
	padding: 0 36px 0 8px;
}
#main .top-sec .main-nav li a dd span {
	display: block;
	font-size: 14px;
}
#main .top-sec .main-nav li._soon a dd {
	color: #97B1D4;
}
#main .top-sec .main-nav li a dd ._mid {
	font-size: 16px;
}
#main .top-sec .main-nav li a dd ._small {
	color: #fff;
	font-size: 12px;
	font-weight: 300;
}
#main .floating {
	position: fixed;
	left: 50%;
	bottom: 16px;
	z-index: 1000;
	transition: 0.3s ease;
	translate: -50% 0;
}
#main .floating.is-hide {
	translate: -50% 200%;
}
#main .floating a {
	background-color: rgba(10,62,134,0.85);
	backdrop-filter: blur(16px);
	border: 1px solid #fff;
	border-radius: 16px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.32);
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	padding: 16px 60px 16px 16px;
	position: relative;
	/*min-width: 585px;*/
	transition: 0.3s ease;
}
#main .floating a:hover {
	translate: 0 -5px;
}
#main .floating a:before {
	background-color: #fff;
	border-radius: 50%;
	content: "";
	position: absolute;
	right: 16px;
	top: 50%;
	height: 28px;
	width: 28px;
	translate: 0 -50%;
}
#main .floating a:after {
	background-image: url(../img/icon_arrow.svg);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	position: absolute;
	right: 16px;
	top: 50%;
	height: 14px;
	width: 21px;
	translate: 0 -50%;
}
#main .floating .-label {
	border-radius: 16px;
	color: #0A3E86;
	display: inline-block;
	font-size: 11px;
	margin-left: 4px;
	padding: 4px 12px;
	vertical-align: 0.15em;
}
#main .floating .-label._01 {
	background-color: #8FE0CA;
}
#main .floating .-label._02 {
	background-color: #F7A7A7;
}
#main .floating ._small {
	display: inline-block;
	font-size: 12px;
	margin-left: 4px;
	vertical-align: 0.15em;
}

/* sec layout */
#main .sec-outer {
	padding: 64px 0;
}
#main .sec-outer._blue {
	background-color: #0A3E86;
	color: #fff;
}
#main .sec-outer._lb {
	background-color: #EBF8FF;
}
#main .sec-inner {
	margin: 0 auto;
	width: 98%;
	max-width: 1200px;
}
#main .sec-outer .title {
	text-align: center;
}
#main .sec-outer .title .-label {
	border: 1px solid #8196A2;
	border-radius: 16px;
	color: #8196A2;
	display: table;
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	margin: 0 auto 8px;
	padding: 3px 12px;
}
#main .sec-outer._blue .title .-label {
	border: 1px solid #99B9CC;
	color: #99B9CC;
}
#main .sec-outer .title h2 {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 16px;
}
#main .sec-outer .title h2 sup {
	color: #0A3E86;
}
#main .sec-outer .-lead {
	font-size: 14px;
	font-weight: 600;
	text-align: center;
}

/* sec01 */
#main #sec01.sec-outer {
	padding-bottom: 0;
}
#main .history {
	margin: 40px auto 0;
	width: 98%;
	max-width: 900px;
}
#main .history .-note {
	color: #5A6A80;
	font-size: 12px;
	margin-bottom: 8px;
	text-align: right;
}
#main .history-block {
	padding-bottom: 96px;
	position: relative;
}
#main .history-block:before {
	background-color: #D7DFE5;
	content: "";
	position: absolute;
	left: 5px;
	height: 100%;
	width: 2px;
}
#main .history-list li {
	align-items: center;
	background-color: #F5F5F5;
	border-radius: 8px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-left: 24px;
	margin-bottom: 16px;
	padding: 16px;
	position: relative;
}
#main .history-list li:before {
	border: 2px solid #fff;
	border-radius: 50%;
	content: "";
	position: absolute;
	left: -26px;
	top: 50%;
	height: 12px;
	width: 12px;
	translate: 0 -50%;
}
#main .history-list li:nth-of-type(1):before {
	background-color: #5ED2B3;
}
#main .history-list li:nth-of-type(2):before {
	background-color: #EF8282;
}
#main .history-list li:nth-of-type(3):before {
	background-color: #51B2EF;
}
#main .history-list li:nth-of-type(4):before {
	background-color: #E6B03B;
}
#main .history-list li:nth-of-type(5):before {
	background-color: #9699F2;
}
#main .history-list li:nth-of-type(6):before {
	background-color: #C6E360;
}
#main .history-list li dl {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0 8px;
	width: 50%;
}
#main .history-list li dt {
	font-family: "Roboto", sans-serif;
	font-size: 32px;
	font-weight: 600;
}
#main .history-list li dd {
	color: #5A6A80;
	font-size: 12px;
	flex: 1;
}
#main .history-list li dd sup {
	font-size: 8px;
	letter-spacing: 0;
	vertical-align: 0.3em;
}
#main .history-list li .-logo {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	justify-content: flex-end;
	width: 50%;
}
#main .history-list li .-logo img {
	height: 50px;
}
#main .history-note-list {
	margin-left: 24px;
}
#main .history-note-list li {
	color: #5A6A80;
	font-size: 12px;
	margin-bottom: 4px;
	padding-left: calc(2em + 8px);
	text-indent: calc(-2em - 8px);
}
#main .history-note-list li:last-of-type {
	margin-bottom: 0;
}
#main .history-note-list li span {
	display: inline-block;
	font-size: 12px;
	margin-right: 8px;
	text-indent: 0;
	white-space: nowrap;
	width: 2em;
}

/* sec02 */
#main #sec02.sec-outer {
	padding-bottom: 96px;
}
#main .about-list {
	margin-top: 32px;
}
#main .about-list li {
	background-color: #fff;
	border-radius: 8px;
	color: #0A3E86;
	padding: 16px 16px 24px;
	width: calc((100% - 32px) / 3);
}
#main .about-list li dt {
	border-bottom: 1px solid #D7DFE5;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 8px;
	padding-bottom: 12px;
	text-align: center;
}
#main .about-list li dt span {
	align-items: center;
	border-radius: 50%;
	display: flex;
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	justify-content: center;
	margin: 0 auto 4px;
	height: 32px;
	width: 32px;
}
#main .about-list li:nth-of-type(1) dt span {
	background-color: #8FE0CA;
}
#main .about-list li:nth-of-type(2).js-showfade {
	transition-delay: 0.3s;
}
#main .about-list li:nth-of-type(2) dt span {
	background-color: #F7A7A7
}
#main .about-list li:nth-of-type(3).js-showfade {
	transition-delay: 0.6s;
}
#main .about-list li:nth-of-type(3) dt span {
	background-color: #82CFFF;
}
#main .about-list li dd {
	font-size: 14px;
	line-height: 1.6;
}
#main .about-list li dd img {
	margin-top: 8px;
}
#main .about-list .swiper-slide {
	display: flex;
	flex-direction: column;
	height: auto;
}
#main .about-list .swiper-slide dl {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
#main .about-list .swiper-slide dd {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
#main .about-list .swiper-slide dd p {
	flex-grow: 1;
}

/* sec03 */
#main #sec03 .-note {
	color: #5A6A80;
	font-size: 12px;
	margin-top: 8px;
	text-align: center;
}
#main .partner-slide {
	margin-top: 35px;
	overflow: hidden;
}
#main .partner-slide .swiper-slide {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: center;
	padding-top: 5px;
}
#main .partner-slide .partner-box {
	background-color: #fff;
	border-radius: 10px;
	height: auto;
	width: calc((100% - 72px) / 4);
	transition: 0.3s ease;
}
#main .partner-slide .partner-box a {
	display: block;
	padding: 10px;
	position: relative;
}
#main .partner-slide .partner-box:hover {
	opacity: 0.8;
	translate: 0 -5px;
}
#main .partner-slide .partner-box a:before {
	background-color: #BBCED9;
	border-radius: 50%;
	content: "";
	position: absolute;
	right: 10px;
	bottom: 10px;
	height: 24px;
	width: 24px;
}
#main .partner-slide .partner-box a:after {
	background-image: url(../img/icon_arrow.svg);
	background-size: contain;
	background-repeat: no-repeat;
	content: "";
	position: absolute;
	right: 16px;
	bottom: 16px;
	height: 12px;
	width: 12px;
	rotate: -90deg;
}
#main .partner-slide .partner-box .-name {
	font-size: 14px;
	padding-right: 28px;
}
#main .partner-count {
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	font-weight: 600;
	margin-top: 4px;
	text-align: center;
}

/* sec04 */
#main .campaign-sec {
	background-color: #F5F5F5;
	border-radius: 8px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 16px auto 0;
	padding: 32px;
	width: 98%;
	max-width: 1200px;
}
#main .campaign-sec:first-of-type {
	margin-top: 40px;
}
#main .campaign-sec._multiple {
	flex-direction: column;
}
#main .campaign-sec._multiple hr {
	background-color: #fff;
	border-style: none;
	margin: 16px 0;
	height: 2px;
	width: 100%;
}
#main .campaign-subsec {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#main .campaign-explan {
	width: 59.2%;
}
#main .campaign-explan .-inst {
	border-radius: 15px;
	display: table;
	font-size: 14px;
	font-weight: 600;
	padding: 4px;
	text-align: center;
	width: 64px;
}
#main .campaign-sec:nth-of-type(1) .campaign-explan .-inst {
	background-color: #8FE0CA;
}
#main .campaign-sec:nth-of-type(2) .campaign-explan .-inst {
	background-color: #F7A7A7;
}
#main .campaign-sec:nth-of-type(3) .campaign-explan .-inst {
	background-color: #82CFFF;
}
#main .campaign-sec:nth-of-type(4) .campaign-explan .-inst {
	background-color: #FFCF66;
}
#main .campaign-sec:nth-of-type(5) .campaign-explan .-inst {
	background-color: #C0C2FA;
}
#main .campaign-explan h3 {
	font-size: 20px;
	font-weight: 600;
	margin-top: 8px;
}
#main .campaign-explan h3 span {
	display: block;
	font-size: 16px;
}
#main .campaign-summary {
	font-size: 14px;
	margin-top: 8px;
}
#main .campaign-summary > li {
	border-top: 1px solid #D7DFE5;
	margin-bottom: 8px;
	padding-top: 8px;
}
#main .campaign-summary > li:last-of-type {
	margin-bottom: 0;
}
#main .campaign-summary > li dl {
	display: flex;
	flex-wrap: wrap;
}
#main .campaign-summary > li dt {
	font-size: 14px;
	font-weight: 600;
	width: 120px;
}
#main .campaign-summary > li dt:before {
	border-radius: 50%;
	display: inline-block;
	content: "";
	margin-right: 4px;
	vertical-align: 0.2em;
	height: 5px;
	width: 5px;
}
#main .campaign-sec:nth-of-type(1) .campaign-summary li dt:before {
	background-color: #8FE0CA;
}
#main .campaign-sec:nth-of-type(2) .campaign-summary li dt:before {
	background-color: #F7A7A7;
}
#main .campaign-sec:nth-of-type(3) .campaign-summary li dt:before {
	background-color: #82CFFF;
}
#main .campaign-sec:nth-of-type(4) .campaign-summary li dt:before {
	background-color: #FFCF66;
}
#main .campaign-summary > li dd {
	flex: 1;
	font-size: 12px;
	line-height: 1.7;
	padding-top: 1px;
}
#main .campaign-summary .conditions-list > li {
	padding-left: 1em;
	text-indent: -1em;
}
#main .campaign-summary .conditions-list > li:before {
	content: "・";
}
#main .campaign-foot {
	width: 38.74%;
}
#main .campaign-foot .-button {
	align-items: center;
	background-color: #0A3E86;
	border: 1px solid #fff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(36,36,36,0.25);
	color: #fff;
	display: flex;
	font-weight: 600;
	justify-content: center;
	margin: 16px auto 0;
	text-align: center;
	height: 48px;
	width: 164px;
	transition: 0.3s ease;
}
#main .campaign-foot .-button:hover {
	opacity: 0.8;
	translate: 0 -3px;
}
#main .campaign-foot .-note {
	font-size: 12px;
	margin-top: 8px;
	text-align: center;
}

/* swiper */
#main .swiper-controls {
	align-items: center;
	display: flex;
	gap: 0 24px;
	justify-content: center;
	margin-top: 32px;
}
#main .swiper-controls .swiper-pagination {
	align-items: center;
	display: flex;
	gap: 0 16px;
	justify-content: center;
}
#main .swiper-controls .swiper-pagination-bullet {
	background-color: #0A3E86;
	border-radius: 50%;
	display: block;
	height: 8px;
	width: 8px;
}
#main .swiper-controls .swiper-pagination-bullet-active {
	background-color: transparent;
	border: 2px solid #0A3E86;
	height: 16px;
	width: 16px;
}
#main .swiper-controls .swiper-button-prev,
#main .swiper-controls .swiper-button-next {
	align-items: center;
	cursor: pointer;
	display: flex;
	justify-content: center;
	height: 32px;
	width: 32px;
}
#main .swiper-controls .swiper-button-prev {
	scale: -1 1;
}
#main .swiper-controls .swiper-button-disabled {
	cursor: default;
	opacity: 0.2;
}

/* footer */
#footer {
	margin-top: 72px;
	overflow: hidden;
}
#footer .-logo {
	display: table;
	margin: 0 auto;
	width: 256px;
}
#footer .footer-block {
	background-color: #0A3E86;
	border-top-left-radius: 50% 180px;
	border-top-right-radius: 50% 180px;
	color: #fff;
	margin-top: 64px;
	margin-left: -75px;
	margin-right: -75px;
	padding-top: 110px;
}
#footer .footer-inr {
	margin: 0 auto;
	width: calc(98% - 150px);
	max-width: 900px;
}
#footer .footer-note li {
	font-size: 12px;
	line-height: 1.5;
	padding-left: 1.5em;
	text-indent: -1.5em;
}
#footer .footer-note li:before {
	content: "・";
	margin-right: 0.5em;
}
#footer .footer-btm {
	border-top: 1px solid #fff;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 24px;
	padding-top: 24px;
	padding-bottom: 40px;
}
#footer .footer-btm .footer-sns {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0 24px;
}
#footer .footer-btm .footer-sns dt {
	border: 1px solid #fff;
	border-radius: 15px;
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	font-weight: 600;
	padding: 4px 12px;
}
#footer .footer-btm .footer-sns dd {
	display: flex;
	flex-wrap: wrap;
	gap: 0 24px;
}
#footer .footer-btm .footer-sns dd img {
	height: 32px;
	width: 32px;
}
#footer .footer-btm .footer-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0 24px;
	justify-content: end;
	margin-bottom: 8px;
}
#footer .footer-btm .footer-nav > li a {
	color: #fff;
	font-size: 12px;
	line-height: 1.5;
	text-decoration: underline;
}
#footer .footer-btm .footer-nav > li a:hover {
	text-decoration: none;
}
#footer .footer-btm .-copy {
	font-size: 12px;
	line-height: 1.5;
	text-align: right;
}

/* js */
.js-showfade {
	opacity: 0;
	translate: 0 40px;
	transition: 0.6s ease;
	transition-property: all !important;
}
.js-showfade.is-show {
	opacity: 1;
	translate: 0 0;
}

/* PC */
@media print, screen and (min-width: 820px) {
	#main .about-list {
		display: flex;
		flex-wrap: wrap;
		gap: 0 16px;
	}
}

/* SP */
@media screen and (max-width: 820px) {
	/* top-sec */
	#main .top-sec {
		background-position: calc(50% - 32vw) calc(100% - 60px);
		background-size: 110vw;
	}
	#main .top-sec h1 img {
		width: 100%;
	}
	#main .top-sec .app-slide .swiper-slide {
		width: 86px;
	}
	#main .top-sec-main h2 {
		font-size: 28px;
	}
	#main .top-sec-main h2 sup {
		font-size: 16px;
	}
	#main .top-sec .main-nav ul {
		gap: 10px 0;
	}
	#main .top-sec .main-nav li {
		margin: 0 auto;
		width: 90vw;
		max-width: 445px;
	}
	#main .top-sec .main-nav li a {
		height: auto;
	}
	#main .floating {
		bottom: 8px;
	}
	#main .floating a {
		font-size: 15px;
		padding-right: 48px;
		width: 92vw;
		min-width: auto;
		max-width: 350px;
	}
	#main .floating a .-label {
		margin-top: 8px;
	}
	
	/* sec layout */
	#main .sec-inner {
		width: 90vw;
	}
	#main .sec-outer .title .-label {
		border-radius: 16px;
		margin: 0 auto 8px;
		padding: 3px 12px;
	}
	#main .sec-outer .title h2 {
		font-size: 24px;
	}

	/* sec01 */
	#main .history {
		width: 90vw;
	}
	#main .history-block {
		padding-bottom: 64px;
	}
	#main .history-list li {
		align-items: flex-start;
		flex-direction: column;
	}
	#main .history-list li dl {
		align-items: start;
		flex-direction: column;
		gap: 4px 0;
		margin-bottom: 16px;
		width: 100%;
	}
	#main .history-list li dt {
		font-size: 24px;
	}
	#main .history-list li dd {
	}
	#main .history-list li .-logo {
		justify-content: flex-start;
		width: 100%;
	}

	/* sec02 */
	#main #sec02.sec-outer {
		padding-bottom: 64px;
	}
	#main .about-list li {
		width: 300px;
	}
	#main .about-list li dt {
		font-size: 18px;
	}
	#main #sec02 .swiper-controls .swiper-pagination-bullet {
		background-color: #EDF4FA;
	}
	#main #sec02 .swiper-controls .swiper-pagination-bullet-active {
		background-color: transparent;
		border: 2px solid #EDF4FA;
	}
	#main #sec02 .swiper-controls .swiper-button-prev,
	#main #sec02 .swiper-controls .swiper-button-next {
		filter: brightness(0) invert(1);
	}

	/* sec03 */
	#main .partner-slide {
		margin-top: 32px;
	}
	#main .partner-slide .swiper-slide {
		gap: 8px;
		justify-content: flex-start;
	}
	#main .partner-slide .partner-box {
		border-radius: 6px;
		width: calc((100% - 8px) / 2);
	}
	#main .partner-slide .partner-box a {
		padding: 8px;
	}
	#main .partner-slide .partner-box .-name {
		font-size: 12px;
	}
	
	/* sec04 */
	#main .campaign-sec {
		flex-direction: column;
		justify-content: space-between;
		padding: 16px 16px 32px;
		width: 90vw;
	}
	#main .campaign-sec._multiple hr {
		margin: 24px 0;
	}
	#main .campaign-explan {
		margin-top: 24px;
		width: 100%;
	}
	#main .campaign-explan h3 {
		font-size: 18px;
	}
	#main .campaign-explan h3 span {
		font-size: 14px;
	}
	#main .campaign-summary {
		margin-top: 16px;
	}
	#main .campaign-summary > li dl {
		flex-direction: column;
	}
	#main .campaign-summary > li dt {
		width: 100%;
	}
	#main .campaign-summary > li dt:before {
		vertical-align: 0.2em;
	}
	#main .campaign-summary > li dd {
		padding-top: 4px;
	}
	#main .campaign-foot {
		width: 100%;
	}
	#main .campaign-foot .-button {
		margin-top: 24px;
	}

	/* footer */
	#footer {
		margin-top: 0;
	}
	#footer .-logo {
		width: 192px;
	}
	#footer .footer-block {
		border-top-left-radius: 50% 180px;
		border-top-right-radius: 50% 180px;
		margin-left: -75px;
		margin-right: -75px;
		padding-top: 60px;
	}
	#footer .footer-inr {
		width: 90vw;
	}
	#footer .footer-note li {
		padding-left: 1.2em;
		text-indent: -1.2em;
	}
	#footer .footer-note li:before {
		margin-right: 0.2em;
	}
	#footer .footer-note li sup {
		color: #fff;
	}
	#footer .footer-btm {
		flex-direction: column;
		margin-top: 24px;
		padding-top: 24px;
	}
	#footer .footer-btm .footer-sns {
		flex-direction: column;
		gap: 16px 0;
	}
	#footer .footer-btm .footer-sns dd {
		justify-content: center;
	}
	#footer .footer-btm .footer-sns dd img {
		height: 40px;
		width: 40px;
	}
	#footer .footer-btm .footer-nav {
		justify-content: center;
		margin-top: 32px;
		margin-bottom: 8px;
	}
	#footer .footer-btm .-copy {
		text-align: center;
	}
}
