@charset "utf-8";

html, body                 {width:100%;margin:0 auto;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
body                       {-webkit-text-size-adjust:100%;}
div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
table, caption, tbody, tfoot, thead, tr, th, td, p,
fieldset, form, label, legend, input,
article, aside, canvas, figure, figcaption,
footer, header, nav, section,
b, u, i                    {margin:0;padding:0;list-style:none;font-style:normal;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
main                       {display: block;}
a                          {outline:none;}
img                        {border:0 none;vertical-align:top;max-width:100%;height:auto;}
em                         {font-style:normal;font-weight:bold;}
nav ul, nav li             {list-style:none;}
.h a, .f a,
nav a, nav span            {text-decoration:none;}
table                      {border-collapse:collapse;}
p, li                      {line-height: 1.8;}

/* ----------------------------------------------- font */
html {
	font-size: 1.6rem;
}
body {
	font-size: clamp(16px, 4vw, 24px);
	font-family: "Inter Tight", Times, sans-serif;
}
.font_clash {
	font-family: 'Clash Grotesk', sans-serif;	
}
.ttl {
	font-family: 'Clash Grotesk', sans-serif;	
	font-weight: 700;
}

/* ----------------------------------------------- color */
:root {
	--color-black: #191919;
	--color-white: #ffffff;
	--color-main: #0a0a38;
	--color-acc-1: #be965d;
	--color-acc-2: #976f40;
	--color-acc-3: #c99b61;
	--color-acc-4: #ffcb95;
	--color-acc-5: #976f40;
	--color-acc: var(--color-acc-3);
	--color-grad: var(--color-acc-1) 0, var(--color-acc-4) 25%, var(--color-acc-3) 50%, var(--color-acc-4) 75%, var(--color-acc-5) 100%;
}
/* ============================================================== base */
html, body {
	height:100%;
}
body{
	background-color: var(--color-main);
	color: var(--color-white);
	-webkit-text-size-adjust:100%;
}
/* ============================================================== common */
.sct {
	padding: 0 1em;
	position: relative;
	z-index: 2;
}
.inr {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
	padding: 1em 0;
}
@media screen and (min-width: 1300px){
	.inr {
		padding: 2em 0;
	}
}
.btn {
	position: relative;
	overflow: hidden;
	display: grid;
	align-items: center;
	text-align: center;
	padding: 0.4em 2em 0.5em;
	line-height: 1.2;
	font-weight: bold;
	background-color: var(--color-acc);
	color: var(--color-main);
	text-decoration: none;
	border-radius: 3em;
	transition: 0.3s;
	text-transform: uppercase;
}
.btn:hover {
	background-color: var(--color-white);
}
.sct_hdr {
	position: relative;
	text-align: center;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	margin: 0 0 2em;
	padding: 2em 1em;
	color: var(--color-acc-3);
}
.sct_hdr::before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: var(--color-main);
	opacity: 0.7;
}
.sct_hdr div, .sct_hdr h2, .sct_hdr p {
	position: relative;
	z-index: 3;
}
@media screen and (min-width: 1000px){
	.sct_hdr {
		padding: 3em 1em;
	}
}
.fadein {
	opacity: 0;
	transition: 1s;
	transform : translate(0, 10px);
}
.fadein.active {
	opacity: 1;
	transform : translate(0, 0);
}
.fadein.fadein_lst {
	opacity: 1;
}
.fadein.fadein_lst li {
	opacity: 0;
	transition: 0.3s;
	transform : translate(0, 10px);
}
.fadein.fadein_lst li.active {
	opacity: 1;
	transform : translate(0, 0);
}

/* ============================================================== header */
.hdr {
	position: relative;
	z-index: 90;
	width: 100%;
	padding: 1em 1.2em;
	margin: 0;
	color: var(--color-white);
	background: color-mix(in srgb, var(--color-main) 90%, transparent);
	background-color: var(--color-main);
}
.hdr::before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	background: linear-gradient(to right, var(--color-grad));
}
.hdr_inr {
	display: grid;
	margin: 0 auto;
	max-width: 1160px;
	grid-template-columns: 1fr 14em;
	align-items: center;
	gap: 0.5em;
}
.hdr_logo {
	width: 4.5em;
}
.hdr_btns .btn {
	font-size: 67.5%;
	padding: 0.7em 1.5em 0.5em 0.5em;
}
.hdr_btns .btn::before {
	font-family: "Font Awesome 6 Free";
	content: '\f061';
	display: block;
	position: absolute;
	font-size: 120%;
	aspect-ratio: 1 / 1;
	right: 1em;
	top: calc(50% - 0.5em);
	transform: rotate(135deg);
	line-height: 1;
}

/* ============================================================== firstview */
.firstview {
	position: relative;
	background-color: var(--color-black);
	color: var(--color-white);
	width: 100%;
	padding: 1.5em 1em;
}
.firstview .inr {
	position: relative;
	z-index: 500;
	padding: 2em 0;
	max-width: 1160px;
	pointer-events: none;
}
.firstview_overlay {
	pointer-events: none;
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: color-mix(in srgb, var(--color-main) 70%, transparent);
	background: linear-gradient(to right bottom, color-mix(in srgb, var(--color-main) 90%, transparent) 0, color-mix(in srgb, var(--color-main) 25%, transparent) 100%);
	clip-path: polygon(0 0, 100% 0, 100% 1em, 50% 100%, 0 100%);
	clip-path: polygon(0 0, 100% 0, 50% 100%, 0 100%);
}
@media screen and (min-width: 1000px){
	.firstview_overlay {
		background: linear-gradient(to right bottom, color-mix(in srgb, var(--color-main) 90%, transparent) 0, color-mix(in srgb, var(--color-main) 25%, transparent) 100%);
		clip-path: polygon(0 0, 60% 0, 40% 100%, 0 100%);
	}
}
.firstview_bg {
	background-size: cover;
	height: inherit;
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.firstview_bg_video {
	object-fit: cover;
	height: 100%;
	width: 100%;
}
.firstview_ttl {
	font-size: 160%;
	line-height: 1.3;
	margin-bottom: 0.3em;
	color: var(--color-acc-3);
}
.firstview_ttl i {
	display: block;
}
.firstview_lead {
	font-size: 62.5%;
	margin-bottom: 4em;
	line-height: 1.6;
}
.firstview_lead i {
	display: inline-block;
}
.firstview_desc {
	font-size: 62.5%;
	max-width: 20em;
	margin-bottom: 2em;
	line-height: 1.4;
}
.firstview_btn .btn {
	font-size: 67.5%;
	width: 17em;
	padding: 0.5em 0 0.3em 1.5em;
	line-height: 1.1;
}
.firstview_btn .btn::before {
	content: "";
	display: block;
	position: absolute;
	width: 2em;
	aspect-ratio: 1 / 1;
	left: 0.8em;
	top: calc(50% - 1em);
	background-repeat: no-repeat;
	background-position: 0;
	background-size: cover;
	background-image: url("../images/ico_pdf.svg");
}

/* ============================================================== proof */
.proof {
	padding: 0;
}
.proof::before,
.proof::after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 2px;
	left: 0;
}
.proof::before {
	top: 0;
	background: linear-gradient(to right, var(--color-grad));
}
.proof::after {
	bottom: 0;
	background: linear-gradient(to left, var(--color-grad));
}
.proof .inr {
	padding: 0;
	max-width: 960px;
}
.proof_lst {
	padding: 1.5em;
	font-size: 82.5%;
	text-align: center;
}
/* ============================================================== counter */
.counter {
	padding-bottom: 1em;
}
.counter .ttl {
	position: relative;
	text-align: center;
	font-size: 120%;
	color: var(--color-acc-3);
	margin-bottom: 0.2em;
	letter-spacing: 0.06em;
}
.counter .ttl i {
	display: inline-block;
	width: 1em;
	margin-left: 0.2em;
}
.counter .lead {
	text-align: center;
	margin-bottom: 1em;
	text-transform: uppercase;
	font-size: 75%;
}
.counter_lst {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 0.5em;
	width: 100%;
	margin: 0 auto 1em;
	font-size: 72.5%;
}
.counter_lst > div {
	padding: 0.1em;
	background: linear-gradient(to right bottom, var(--color-grad));
	overflow: hidden;
	border-radius: 1em;
}
.counter_lst > div > div {
	display: grid;
	align-items: center;
	text-align: center;
	gap: 0;
	background-color: var(--color-main);
	overflow: hidden;
	border-radius: 1em;
	padding: 1em 0 0.5em;
}
.counter_lst span {
	display: block;
	text-align: center;
}
.counter_lst .txt {
	font-size: 87.5%;
	line-height: 1.4;
	align-self: end;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	height: 3em;
	display: grid;
	align-items: center;
	margin-bottom: 0.2em;
}
.counter_lst .odo {
	align-self: start;
	line-height: 1;
	margin: 0 auto;
	width: fit-content;
	font-size: 120%;
	position: relative;
}
.counter_lst .odo i {
	font-size: 75%;
	vertical-align: bottom;
	display: inline-block;
	padding-bottom: 1em;
	margin: 0 0.5em;
	vertical-align: bottom;
	position: relative;
	color: var(--color-acc-3);
}
.counter_lst .odo i:nth-of-type(1) {
	position: absolute;
	color: var(--color-white);
	font-size: 110%;
	line-height: 1;
	left: 0;
	top: 0;
}
.counter_lst > div:nth-of-type(2) .odo {
	padding-left: 1em;
}
.counter_lst > div:nth-of-type(3) .odo {
	padding-left: 1.5em;
}
.counter_lst > div:nth-of-type(2) .odo i:nth-of-type(1) {
	margin: 0;
}
.counter_lst > div:nth-of-type(2) .odo i:last-of-type {
	padding-bottom: 0.4em;
}
.counter_lst .odo i em {
	font-size: 320%;
	font-weight: bold;
	line-height: 1;
	letter-spacing: -0.1em;
	color: var(--color-acc-3);
	margin-right: 0.1em;
}
.counter_lst .odometer {
	font-size: 240%;
	font-weight: bold;
	line-height: 1;
	color: var(--color-acc-3);
	font-family: 'Clash Grotesk', sans-serif;
	letter-spacing: -0.02em;
}
.odometer-inside {
	display: flex;	
}

@media screen and (min-width: 1000px){
	.counter_lst {
		font-size: 125%;
	}
	.counter_lst > div > div {
		padding: 1em 0 1em;
	}
}
.counter .desc {
	width: fit-content;
	text-align: center;
	margin: 0 auto 2em;
	text-transform: uppercase;
	font-size: 62.5%;
}
.counter_btn .btn {
	width: fit-content;
	margin: 0 auto;
	background-color: var(--color-white);
	color: var(--color-black);
	font-size: 87.5%;
}
.counter_btn .btn span::after {
	font-size: 140%;
	font-family: "Font Awesome 6 Free";
	content: '\f061';
	line-height: 1;
	display: inline-block;
	transform: rotate(135deg);
	margin-left: 0.5em;
	color: var(--color-acc-3);
	transition: 0.3s;
}
.counter_btn .btn:hover {
	background-color: var(--color-acc-3);
}
.counter_btn .btn:hover span::after {
	color: var(--color-main);
}

/* ============================================================== items */
.items {
	padding: 0 0 4em;
}
.items .sct_hdr {
	background-image: url("../images/item_header_bg.jpg");
}
.items .sct_hdr p {
	font-size: 62.5%;
	letter-spacing: 0.1em;
	color: var(--color-white);
}
.items .sct_hdr h2 {
	font-size: 130%;
	font-weight: 900;
}
.items .sct_hdr h2 i {
	display: inline-block;
}
.items .inr {
	max-width: calc(1200px + 2em);
	padding: 0 1em;
}
.item_lst {
	margin: 0 0 2em;
	display: grid;
	gap: 2em;
}
.item_lst .box {
	position: relative;
	margin: 0 auto;
	width: 15em;
	padding: 1px;
}
@media screen and (min-width: 1000px){
	.item_lst {
		grid-template-columns: 1fr 1fr 1fr;
	}
	.item_lst .box {
		width: unset;
		margin: 0;
	}
	.item_lst .box_inr {
		padding: 1em;
	}
}
.item_lst .box::before,
.item_lst .box::after {
	content: "";
	display: block;
	position: absolute;
	border-radius: 2em;
}
.item_lst .box::before {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -2;
	background: linear-gradient(to right bottom, var(--color-grad));
}
.item_lst .box::after {
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	top: 1px;
	left: 1px;
	z-index: -1;
	background-color: var(--color-main);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
}
.item_lst .box_inr {
	width: 100%;
	height: 100%;
	position: relative;
	display: grid;
	grid-template-rows: auto auto 1fr;
	border-radius: 2em;
	overflow: hidden;
	padding: 1em 2em 1em;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
}
.item_lst .box_inr * {
	position: relative;
	z-index: 1;
}
.item_lst .box_inr::before {
	position: absolute;
	z-index: 0 !important;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: var(--color-main);
	opacity: 0.7;
}
.item_lst .box:nth-of-type(1) .box_inr {
	background-image: url("../images/item_01_bg.jpg");
}
.item_lst .box:nth-of-type(2) .box_inr {
	background-image: url("../images/item_02_bg.jpg");
}
.item_lst .box:nth-of-type(3) .box_inr {
	background-image: url("../images/item_03_bg.jpg");
}
.item_lst .box h3 {
	text-align: center;
	color: var(--color-acc-3);
	margin: 0 0 0.5em;
	font-weight: 500;
	letter-spacing: 0.15em;
}
.item_lst .box h3 i {
	display: block;
}
.item_lst .box ul {
	text-align: center;
	font-size: 75%;
}
.item_lst .item_btn {
	margin-top: 1em;
	align-self: end;
	text-align: center;
}
.item_lst .item_btn a {
	display: inline-block;
	position: relative;
	color: var(--color-white);
	text-decoration: none;
	padding: 0.3em 0;
	width: 7em;
}
.item_lst .item_btn a::before,
.item_lst .item_btn a::after {
	content: "";
	display: block;
	position: absolute;
	border-radius: 0.5em;
}
.item_lst .item_btn a::before {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -2;
	background: linear-gradient(to right bottom, var(--color-grad));
}
.item_lst .item_btn a::after {
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	top: 1px;
	left: 1px;
	z-index: -1;
	background-color: var(--color-main);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
}
.item_lst .item_btn span {
	font-size: 75%;
}
.items .cta_btn {
	text-align: center;
	margin-bottom: 1em;
}
.items .cta_btn .btn {
	width: fit-content;
	margin: 0 auto;
	padding: 0.4em 1em 0.5em;
	background-color: var(--color-acc-3);
	color: var(--color-main);
	font-size: 87.5%;
}
.items .cta_btn .btn span::after {
	font-size: 140%;
	font-family: "Font Awesome 6 Free";
	content: '\f061';
	line-height: 1;
	display: inline-block;
	transform: rotate(135deg);
	margin-left: 0.5em;
	color: var(--color-main);
	transition: 0.3s;
}
.items .cta_btn .btn:hover {
	background-color: var(--color-white);
}
.items .icons {
	margin: 0 auto;
	max-width: 640px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.items .icons figure {
	display: block;
	padding: 0.5em;
}
.items .icons p {
	font-size: 50%;
	text-align: center;
	line-height: 1.2;
}

/* ============================================================== feat */
.feat {
	padding-bottom: 3em;
}
.feat::before {
	content: "";
	display: block;
	position: absolute;
	width: 8em;
	height: 1px;
	top: -1.6em;
	left: calc(50% - 4em);
	background: linear-gradient(to right, var(--color-grad));
}
.feat .inr {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1em;
}
.feat .box {
	padding: 0.5em;
	background-color: var(--color-white);
	border-radius: 1em;
	color: var(--color-black);
}
.feat h3 {
	border-radius: 1em 1em 0 0;
	overflow: hidden;
	margin: 0 0 0.3em;
}
.feat ul {
	font-size: 62.5%;
	color: var(--color-main);
}
.feat ul {
	display: grid;
	gap: 0.6em;
	margin: 0 1em;
}
.feat li {
	position: relative;
	padding-left: 1em;
	line-height: 1.2;
}
.feat li::before {
	content: "";
	display: block;
	position: absolute;
	width: 0.4em;
	height: 1px;
	left: 0;
	top: 0.6em;
	background-color: var(--color-main);
}
@media screen and (min-width: 1000px) {
	.feat .inr {
		grid-template-columns: repeat(4, 1fr);
	}
}
/* ============================================================== journey */
.journey {
	padding: 0 0 2em;
}
.journey .sct_hdr {
	background-image: url("../images/journey_hdr_bg.jpg");
	margin-bottom: 3em;
}
.journey .sct_hdr_inr {
	margin: 0 auto;
	max-width: 1000px;
	position: relative;
}
.journey .sct_hdr h2 {
	padding-left: 46%;
	text-align: left;
	font-size: 100%;
}
.journey .sct_hdr i {
	display: block;
}
.journey .hdr_slider {
	position: absolute;
	width: 10em;
	top: -3.8em;
	left: 0;
}
@media screen and (min-width: 1000px){
	.journey .sct_hdr {
		padding: 4em 0;
	}
	.journey .sct_hdr h2 {
		font-size: 160%;
	}
	.journey .hdr_slider {
		width: 15em;
		top: -5.5em;
	}
}
.journey .inr {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1em;
	padding: 0 1em;
}
@media screen and (min-width: 750px){
	.journey .inr {
		grid-template-columns: repeat(3, 1fr);
	}
}
/* ============================================================== choice */
.choice {
	padding: 0;
}
.choice .sct_hdr {
	background-image: url("../images/choice_hdr_bg.jpg");
	margin-bottom: 0;
}
.choice .sct_hdr .ttl {
	font-size: 130%;
}
.choice .inr {
	max-width: 840px;
}

/* ============================================================== partner */
.sct.partner {
	padding: 0;
	background-color: var(--color-white);
}
.partner .inr {
	padding: 0;
	max-width: unset;
}
.partner .box {
    display: block;
}
.partner .box > div {
	display: grid;
	align-items: center;
	aspect-ratio: 10 / 6;
	line-height: 1;
	margin: 0;
	padding: 0 0.5em;
	text-align: center;
}
.partner .box > div:nth-of-type(1) {
	background-color: transparent;
}
.partner .box > div:nth-of-type(2) {
	background-color: transparent;
}
.partner .box img {
	width: 100%;
	max-width: unset;
	line-height: 1;
}
.partner .box .black img {
	filter: brightness(0) saturate(0);
}
.partner .box .narrow {
	padding: 0.5em 1.9em;
}
.partner .box .bg_black span {
	display: inline-block;
	background-color: var(--color-black);
	padding: 0.3em;
}
.partner .box .rakez {
	padding: 0.5em 2.4em;
}
@media screen and (min-width: 1000px){
	.partner .box .narrow {
		padding: 0.5rem 2rem;
	}
}

/* ============================================================== aac */
.aac .inr {
	max-width: 840px;
}
.aac h2 {
	margin: 0 auto 1em;
	width: 50%;
	max-width: 480px;
}
.aac_lst {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5em 1em;
}
.aac_lst li {
	position: relative;
	padding: 0.3em;
}
.aac_lst::before,
.aac_lst li::before {
	content: "";
	display: block;
	position: absolute;
	background-color: #384279;
	z-index: 3;
}
.aac_lst::before {
	top: calc(50% - 0.1em);
	left: 0;
	width: 100%;
	height: 0.2em;
}
.aac_lst li:nth-of-type(2):before,
.aac_lst li:nth-of-type(3):before,
.aac_lst li:nth-of-type(5):before,
.aac_lst li:nth-of-type(6):before {
	top: 0.5em;
	left: 0;
	width: 0.2em;
	height: calc(100% - 1em);
}
.aac_lst li:nth-of-type(2):before,
.aac_lst li:nth-of-type(5):before {
	left: -1em;
}


/* ============================================================== footer */
.ftr {
	position: relative;
	background-color: var(--color-white);
	color: var(--color-black);
	padding: 1em;
	border-top: 0.3em solid #f00;
	border-image: linear-gradient(to right, var(--color-grad)) 1;
	font-family: serif;
}
.ftr h2 {
	font-size: 130%;
	text-align: center;
	background: linear-gradient(to bottom, var(--color-grad));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin: 0 0 0.5em;
}
.ftr .lead {
	font-size: 62.5%;
	text-align: center;
	margin-bottom: 2em;
}
.ftr .set {
	display: grid;
	gap: 3em;
}
.ftr .box {
	position: relative;
}
.ftr .box:nth-of-type(2)::before,
.ftr .box:nth-of-type(3)::before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 0.2em;
	left: 0;
	top: -1.5em;
	background-color: #d4daef;
}
.ftr .set .box:nth-of-type(1) {
	text-align: center;
}
.ftr .set .box:nth-of-type(1) h3 {
	background: linear-gradient(to right, var(--color-grad));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.ftr .set .box:nth-of-type(1) p {
	font-size: 75%;
	line-height: 1.3;
}
.ftr .set .box:nth-of-type(2) dl {
	display: grid;
	grid-template-columns: 8.5em 1fr;
}
.ftr .set .box:nth-of-type(2) dl + dl {
	margin-top: 1em;
}
.ftr .set .box:nth-of-type(2) dt span {
	display: inline-block;
	background: linear-gradient(to right, var(--color-grad));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.ftr .set .box:nth-of-type(2) dd {
	font-size: 62.5%;
}
.ftr .set .box:nth-of-type(2) dd li i {
	display: inline-block;
}
.ftr .set .box:nth-of-type(3) {
	display: grid;
	grid-template-columns: 8em 1fr 6em;
	gap: 1em;
}
.ftr .set .box:nth-of-type(3) ul {
	font-size: 62.5%;
	text-align: center;
	color: var(--color-acc-3);
}
.ftr .set .box:nth-of-type(3) ul a {
	color: var(--color-acc-3);
	text-decoration: none;
}
.ftr .copyright {
	margin-top: 2em;
	font-size: 42.5%;
	text-align: center;
}
@media screen and (min-width: 1000px){
	.ftr h2 {
		font-size: 200%;
	}
	.ftr .lead {
		font-size: 100%;
	}
	.ftr .set {
		grid-template-columns: 2.1fr 2.5fr 1.2fr;
		gap: 2em;
	}	
	.ftr .box {
		padding: 1em 0;
	}
	.ftr .set .box:nth-of-type(1) {
		text-align: left;
	}
	.ftr .set .box:nth-of-type(1) h3 {
		font-size: 160%;
	}
	.ftr .set .box:nth-of-type(1) p {
		font-size: 100%;
	}
	
	.ftr .box:nth-of-type(2)::before,
	.ftr .box:nth-of-type(3)::before {
		width: 0.2em;
		height: 100%;
		left: -1em;
		top: 0;
	}
	.ftr .set .box:nth-of-type(2) dl {
		grid-template-columns: 6em 1fr;
	}
	.ftr .set .box:nth-of-type(2) dt {
		font-size: 75%;
		padding-top: 1.6em;
	}
	.ftr .set .box:nth-of-type(3) {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.ftr .set .box:nth-of-type(3) ul {
		font-size: 87.5%;
	}
	.ftr .set .box:nth-of-type(3) li {
		line-height: 1.2;
	}
	.ftr .set .box:nth-of-type(3) .qrcode {
		padding: 0 1em;
	}
	.ftr .copyright {
		font-size: 62.5%;
	}
}