@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');
@import "reset.css";

/* base
================================================== */
:root {
	--white        : #ffffff;
	--textBlack    : #333333;
	--textGray     : #666666;
	--darkGreen    : #195532;
	--lightGreen   : #2f995b;
	--darkBlue    : #384586;
	--lightBlue   : #99a1c9;
	--bgGray1      : #f4f5f5;
	--bgGray2      : #f3f6f5;
	--borderGray1  : #d1d4d7;
	--borderGray2  : #d9d9d9;
	--darkRed      : #6c1f1f;
	--fontsize10  : .625rem;
	--fontsize12  : .75rem;
	--fontsize13  : .8125rem;
	--fontsize13_5: .843725rem;
	--fontsize14  : .875rem;
	--fontsize16  : 1.0rem;
	--fontsize18  : 1.125rem;
	--fontsize19  : 1.1875rem;
	--fontsize20  : 1.25rem;
	--fontsize22  : 1.375rem;
	--fontsize24  : 1.5rem;
	--fontsize26  : 1.625rem;
	--fontsize28  : 1.75rem;
	--fontsize30  : 1.875rem;
	--fontsize32  : 2.0rem;
	--fontsize34  : 2.125rem;
	--fontsize36  : 2.25rem;
	--fontsize38  : 2.375rem;
	--fontsize40  : 2.5rem;
	--fontsize48  : 3.0rem;
	--fontsize60  : 3.75rem;
	--fontsize64  : 4.0rem;
	--spacing      : 0.04em;
}

* {
	letter-spacing: var(--spacing);
}

body {
	background-color: #fff;
	color: var(--textBlack);
	font-size: var(--fontsize16);
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
	line-height: 1.5;
	overflow-wrap: anywhere;
	word-break: normal;
	line-break: strict;
	overflow-x: hidden;
	position: relative;
}

:focus-visible {
	outline: 2px solid var(--darkRed);
}

a,
button {
	transition: color .3s ease, background .3s ease;
}

img,
svg {
	max-width: 100%;
	height: auto;
	image-rendering: -webkit-optimize-contrast;
}

.srOnly {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
}

@media screen and (min-width: 768px) {
	.sp {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	.pc {
		display: none !important;
	}
}

.brCtrl span {
	display: inline-block;
}

/* layout
================================================== */
main {
	max-width: 1136px;
	margin: 0 auto;
}

@media screen and (max-width: 1200px) {
	main {
		margin: 0 32px;
	}
}

@media screen and (max-width: 767px) {
	main {
		margin: 0 16px;
	}
}

.wide,
main > section {
	margin-right: calc(-50vw - -50%);
	margin-left: calc(-50vw - -50%);
	padding-right: calc(50vw - 50%);
	padding-left: calc(50vw - 50%);
}

/* header
================================================== */
header {
	position: fixed;
	z-index: 10;
	width: 100%;
	padding: 13px 32px;
	border-bottom: 1px solid #fff;
	background-color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 40px;
}

header .logo {
	margin: -1.5px;
}

#globalNav a {
	font-weight: 600;
}

#globalNav a:hover {
	color: var(--darkBlue);
}

@media screen and (min-width: 1149px) {
	#globalNav {
		display: block !important;
	}
	
	#globalNav ul {
		display: flex;
		column-gap: 24px;
		align-items: center;
	}
}

@media screen and (min-width: 1281px) {
	#globalNav ul {
		column-gap: 24px;
	}
}

#globalNav ul li {
	width: auto;
	max-width: 100%;
	border: 1px solid #c9bfbb;
	border-radius: 4px;
	background: #f4efdd linear-gradient(to bottom, #f4efdd, #c6ab68);
}

@media screen and (max-width: 1148px) {
	#globalNav ul li:first-child {
		margin-bottom: 10px;
	}
}

#globalNav ul li a {
	display: block;
	min-height: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 40px 0 30px;
	border-radius: 4px;
	font-size: var(--fontsize20);
	position: relative;
}

@media (hover: hover) {
	#globalNav ul li a:hover {
		background-color: rgba(255, 255, 255, .33);
	}
}

main {
	padding-top: 96px;
}

@media screen and (max-width: 767px) {
	header {
		padding: 17px 16px;
	}
	
	header .logo {
		width: 187px;
	}
	
	main {
		padding-top: 64px;
	}
}

/* sp menu button
================================================== */
@media screen and (min-width: 1149px) {
	.focusTrap,
	#menuBtn,
	#globalNav .application {
		display: none;
	}
}

#menuBtn {
	position: fixed;
	top: 0;
	right: 0;
	width: 64px;
	height: 64px;
}

@media screen and (min-width: 768px) {
	#menuBtn {
		width: 96px;
		height: 96px;
	}
}

#menuBtn button {
	width: 100%;
	height: 100%;
	vertical-align: top;
	position: relative;
}

#menuBtn::after,
#menuBtn button::before,
#menuBtn button::after {
	content: '';
	position: absolute;
	width: 50%;
	left: 50%;
	transform: translateX(-50%);
	border-bottom: 2px solid var(--darkBlue);
	cursor: pointer;
	transition: top .3s, transform .3s;
}

#menuBtn::after {
	top: calc(50% - 1px);
}

#menuBtn button::before {
	top: 32%;
}

#menuBtn button::after {
	top: calc(68% - 2px);
}

body.menuOpen #menuBtn::after {
	width: 0;
}

body.menuOpen #menuBtn button::before,
body.menuOpen #menuBtn button::after {
	top: calc(50% - 1px);
	transition: top .3s, transform .3s;
}

body.menuOpen #menuBtn button::before {
	transform: translateX(-50%) rotate(45deg);
}

body.menuOpen #menuBtn button::after {
	transform: translateX(-50%) rotate(-45deg);
}

/* sp menu
================================================== */
@media screen and (max-width: 1148px) {
	body.menuOpen {
		overflow: hidden;
	}
	
	.focusTrap {
		display: none;
	}
	
	body.menuOpen .focusTrap {
		display: block;
	}
	
	#globalNav {
		position: fixed;
		top: 96px;
		left: 0;
		width: 100%;
		padding: 0 20px;
		overflow-y: auto;
		overflow-x: hidden;
		z-index: 90;
		background-color: #fff;
		height: calc(100vh - 64px);
		height: calc(100dvh - 64px);
		display: none;
	}
	
	#globalNav > ul {
		margin-bottom: 24px;
		column-gap: 24px;
	}
	
	#globalNav > ul li:not(:last-child) {
		border-bottom: 1px solid var(--borderGray1);
	}
	
	#globalNav > ul li a {
		display: block;
		padding: 16px;
		font-size: var(--fontsize20);
		font-weight: 500;
		text-align: center;
	}
}

@media screen and (max-width: 767px) {
	#globalNav {
		top: 64px;
	}
}

/* KV
================================================== */
#kv {
	padding: 60px calc(50vw - 50% + 23px);
	background: url('../images/img_kv_2.jpg') no-repeat 50% 0 / cover;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#kv h1 {
	width: 78%;
	color: var(--white);
	font-size: var(--fontsize32);
	font-weight: 500;
	text-shadow: 0 0 24px rgba(0, 0, 0, .75);
}

#kv h1 strong {
	display: block;
	margin-top: 24px;
	font-size: var(--fontsize60);
	line-height: 1.35;
	text-indent: -0.625em;
}

#kv h1 strong span {
	margin-left: .625em;
}

#kv ul {
	width: 39%;
}

#kv li:not(:last-child) {
	margin-bottom: 12px;
}

#kv li a {
	display: block;
	min-height: 144px;
	padding: 0 17px;
	background-color: rgba(23, 19, 1, 0.6);
	border: 1px solid;
	border-image: linear-gradient(to top, #E8A700 0%, #D3B30C 36%, #BF9500 56%, #FFE103 64%, #D0B41D 88% 100%) 1;
	clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
	color: var(--white);
	font-weight: 500;
	letter-spacing: 0;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}

#kv li a::before,
#kv li a::after {
	content: '';
	position: absolute;
	width: 34px;
	height: 34px;
	border-top: 1px solid;
}

#kv li a::before {
	top: 6px;
	right: 6px;
	transform: rotate(45deg);
	border-top-color: #D0B41D;
}

#kv li a::after {
	bottom: 6px;
	left: 6px;
	transform: rotate(225deg);
	border-top-color: #E8A700;
}

#kv li strong {
	margin: 4px 10px 0;
	font-size: var(--fontsize24);
	letter-spacing: var(--spacing);
	line-height: 1.4;
	background-image: linear-gradient(to right, #EBC53B 10%, #FEE49D 61%, #C09D1E 86%, #F6D24D 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

@media screen and (max-width: 767px) {
	#kv {
		padding: 32px 16px 24px;
		background-image: url('../images/img_kv_sp_2.jpg');
		flex-direction: column;
		row-gap: 24px;
		overflow-x: hidden;
	}
	
	#kv h1 {
		width: auto;
		margin-right: calc(-12px + -.625em);
		margin-left: -12px;
		font-size: var(--fontsize22);
		text-align: center;
	}
	
	#kv h1 strong {
		margin-top: 12px;
		font-size: var(--fontsize32);
		text-indent: 0;
	}
	
	#kv h1 strong span {
		margin-left: 0;
	}
	
	#kv ul {
		width: 100%;
	}
	
	#kv li a {
		min-height: 113px;
		padding: 0 12px;
		clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
		font-size: var(--fontsize13_5);
	}
	
	#kv li a::before,
	#kv li a::after {
		width: 23px;
		height: 23px;
	}
	
	#kv li a::before {
		top: 3.5px;
		right: 3.5px;
	}
	
	#kv li a::after {
		bottom: 3.5px;
		left: 3.5px;
	}
	
	#kv li strong {
		padding: 0 24px;
		font-size: var(--fontsize19);
	}
}

/* application
================================================== */
.application {
	padding-top: 23px;
	padding-bottom: 24px;
	border-top: 1px solid var(--darkBlue);
	background-color: var(--darkBlue);
}

.application ul {
	display: flex;
	gap: 24px;
	justify-content: center;
}

.application li {
	width: 360px;
	max-width: 100%;
	border: 1px solid #14482a;
	border-radius: 4px;
	background: #f4efdd linear-gradient(to bottom, #f4efdd, #c6ab68);
	box-shadow: 0 0 16px rgba(0, 0, 0, .33);
}

.application li a {
	display: block;
	min-height: 83px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 40px 0 30px;
	border-radius: 4px;
	font-size: var(--fontsize20);
	font-weight: 600;
	position: relative;
}

@media (hover: hover) {
	.application li a:hover {
		background-color: rgba(255, 255, 255, .33);
	}
}

.application li a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 18px;
	transform: translateY(-50%);
	border-width: 5px 0 5px 10px;
	border-color: transparent transparent transparent var(--textBlack);
}

.application li a span {
	display: blok;
	font-size: var(--fontsize14);
	font-weight: 500;
}

@media screen and (max-width: 767px) {
	.application ul {
		flex-direction: column;
		align-items: center;
	}
	
	.application li {
		width: 100%;
	}
}

/* section
================================================== */
main > section {
	padding-top: 95px;
	padding-bottom: 120px;
	border-top: 1px solid transparent;
}

main section h2 {
	margin: 0 auto 80px;
	color: var(--darkBlue);
	font-size: var(--fontsize48);
	font-weight: 600;
	line-height: 1.35;
	text-align: center;
}

main section h2 span[lang] {
	display: block;
	margin-bottom: 8px;
	font-size: var(--fontsize20);
	line-height: 1.5;
}

main section h2 .marker {
	background-image: linear-gradient(to bottom, transparent calc(100% - 12px), rgb(153, 161, 201, .2) calc(100% - 12px));
}

main section h3 {
	margin-bottom: 24px;
	font-size: var(--fontsize32);
	font-weight: 600;
}

main section h4 {
	margin-bottom: 16px;
	color: var(--darkBlue);
	font-size: var(--fontsize24);
}

main section p {
	margin-bottom: 2em;
	line-height: 2;
}

main section p:last-child {
	margin-bottom: 0;
}

main section a {
	color: var(--lightBlue);
	text-decoration: underline;
}

@media screen and (max-width: 767px) {
	main > section {
		padding-top: 64px;
		padding-bottom: 80px;
	}
	
	main section h2 {
		margin-bottom: 64px;
		font-size: var(--fontsize40);
	}
	
	main section h2 span[lang]{
		font-size: var(--fontsize16);
	}
	
	main section h3 {
		font-size: var(--fontsize24);
	}
	
	main section h4 {
		font-size: var(--fontsize20);
	}
}

/* problem
================================================== */
#problem {
	background-color: var(--bgGray1);
}

#problem .col {
	display: flex;
	gap: 48px;
}

#problem .col figure {
    width: 396px;
    max-width: calc(50% - 24px);
}

#problem .col figure img {
	width: 100%;
}

#problem .col .text {
    flex: 1;
}

#problem .problemList {
	padding: 32px;
	background-color: var(--white);
}

#problem .problemList li {
	margin-bottom: .8em;
	padding-left: 30px;
	background: url(../images/ico_problem1.svg) no-repeat left 2px;
}

#problem .problemList li:last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 767px) {
	#problem .col:not(:last-child) {
		margin-bottom: 64px;
	}
	
	#problem .col,
	#problem .col:nth-of-type(2n) {
		flex-direction: column;
	}
	
	#problem .col figure {
		margin: 0 auto;
		width: 100%;
		max-width: 100%;
	}
}

/* reason
================================================== */
#reason .col:not(:last-child) {
	margin-bottom: 80px;
}

#reason .col {
	display: flex;
	gap: 48px;
}

#reason .col:nth-of-type(2n) {
	flex-direction: row-reverse;
}

#reason .col figure {
	width: 396px;
	max-width: calc(50% - 24px);
}

#reason .col figure img {
	width: 100%;
}

#reason .col .text {
	flex: 1;
}

#reason h3 {
	padding-left: 3em;
	color: var(--darkBlue);
	position: relative;
}

#reason h3 b {
	position: absolute;
	top: 0;
	left: 0;
	font-size: var(--fontsize64);
	font-weight: 400;
	line-height: 1;
}

@media screen and (max-width: 767px) {
	#reason .col:not(:last-child) {
		margin-bottom: 64px;
	}
	
	#reason .col,
	#reason .col:nth-of-type(2n) {
		flex-direction: column;
	}
	
	#reason .col figure {
		margin: 0 auto;
		width: 100%;
		max-width: 100%;
	}
	
	#reason h3 b {
		font-size: var(--fontsize48);
	}
}

/* message
================================================== */
#message {
	padding-top: 0;
	padding-bottom: 0;
	background: linear-gradient(150deg, #747e86, #96a4ae);
	color: var(--white);
	display: flex;
	align-items: flex-end;
}

#message .text {
	margin: 96px 0;
	flex: 1;
}

#message h2 {
	margin: 0 0 40px;
	color: var(--white);
	text-align: left;
	background-image: none;
}

#message h3 {
	font-size: var(--fontsize28);
}

#message .text .sign {
	margin-top: 12px;
}

#message .img {
	margin-right: -128px;
	margin-left: -80px;
	width: 586px;
	max-width: 56%;
}

@media screen and (max-width: 1392px) {
	#message .img {
		margin-right: calc(-50vw - -50%);
	}
}

@media screen and (max-width: 767px) {
	#message {
		flex-direction: column;
	}
	
	#message .text {
		margin: 64px 0 0;
	}
	
	#message h2 {
		text-align: center;
	}
	
	#message h3 {
		font-size: var(--fontsize24);
	}
	
	#message .img {
		margin: 0 auto;
		max-width: 100%;
	}
	
	#message .img img {
		margin-left: -16px;
		max-width: calc(100% + 16px);
	}
}

/* curriculum
================================================== */
#curriculum {
	background: url('../images/bg_curriculum.jpg') no-repeat 50% 100% / cover;
}

#curriculum .cols {
	display: flex;
	gap: 64px 48px;
}

#curriculum .cols:not(:last-of-type) {
	margin-bottom: 56px;
}

#curriculum .col {
	flex: 1;
}

#curriculum figure img {
	width: 100%;
}

#curriculum h3 {
	margin: 24px 0 16px;
}

#curriculum .col3 h3 {
	font-size: var(--fontsize24);
}

@media screen and (max-width: 767px) {
	#curriculum {
		background-image: url('../images/bg_curriculum_sp.jpg');
	}
	
	#curriculum .cols {
		flex-direction: column;
	}
	
	#curriculum h3 {
		font-size: var(--fontsize20);
	}
	
	#curriculum figure {
		margin: 0 auto;
	}
}

/* voice
================================================== */
#voice h3 {
	margin-top: 80px;
	text-align: center;
}

#voice .col {
	display: flex;
	gap: 36px 64px;
	align-items: flex-start;
	margin-top: 64px;
}

#voice section:nth-of-type(2n-1) .col:nth-of-type(2n-1),
#voice section:nth-of-type(2n) .col:nth-of-type(2n) {
	flex-direction: row-reverse;
}

#voice figure {
	width: 192px;
	text-align: center;
}

#voice figcaption {
	margin-top: 16px;
	color: var(--textGray);
	font-size: var(--fontsize14);
	text-align: center;
}

#voice .text {
	flex: 1;
	padding: 31px 39px;
	border: 1px solid var(--borderGray2);
	box-shadow: 8px 8px 0 var(--borderGray1);
	position: relative;
}

#voice .text::before {
	content: '';
	position: absolute;
	top: 79px;
	left: -17px;
	width: 34px;
	height: 34px;
	border: 1px solid;
	border-color: var(--borderGray2) #fff #fff var(--borderGray2);
	background-color: #fff;
	transform: rotate(-45deg);
}

@media screen and (min-width: 768px) {
	#voice .participant .col:nth-of-type(2n-1) .text::before,
	#voice .manager .col:nth-of-type(2n) .text::before {
		left: auto;
		right: -17px;
		transform: rotate(135deg);
		box-shadow: 0 -10px 0 var(--borderGray1);
	}
	
	#voice .fullText {
		display: block !important;
	}
}

@media screen and (max-width: 767px) {
	#voice h3 {
		margin-top: 64px;
	}
	
	#voice .col,
	#voice section:nth-of-type(2n-1) .col:nth-of-type(2n-1),
	#voice section:nth-of-type(2n) .col:nth-of-type(2n) {
		flex-direction: column;
		margin-top: 56px;
	}
	
	#voice figure {
		width: 240px;
		margin: 0 auto;
	}
	
	#voice figure img {
		width: 144px;
	}
	
	#voice figcaption {
		font-size: var(--fontsize12);
	}
	
	#voice .text {
		width: 100%;
		padding: 23px;
	}
	
	#voice .text::before {
		top: -14px;
		left: calc(50% - 14px);
		width: 28px;
		height: 28px;
		transform: rotate(45deg);
	}
	
	#voice .fullText {
		margin-bottom: 16px;
		display: none;
	}
	
	#voice .moreBtn button {
		width: 100%;
		min-height: 83px;
		margin-top: 12px;
		padding: 16px 32px;
		border: 1px solid #fff;
		border-radius: 4px;
		box-shadow: 0 0 16px rgba(0, 0, 0, .33);
		text-align: center;
		font-size: var(--fontsize20);
		font-weight: 600;
		position: relative;
		z-index: 1;
	}
	
	#voice .moreBtn button::after {
		content: '';
		position: absolute;
		top: 50%;
		right: 18px;
		transform: translateY(-50%);
		border-width: 10px 5px 0 5px;
		border-color: var(--textBlack) transparent transparent;
	}
	
	#voice .moreBtn.show button::after {
		transform: translateY(-50%) rotate(180deg);
	}
}

/* flow
================================================== */
#flow {
	background-color: var(--bgGray1);
}

#flow ol {
	counter-reset: number 0;
}

#flow ol > li {
	padding: 39px;
	border: 1px solid #fff;
	background-color: #fff;
	display: flex;
	align-items: center;
}

#flow ol > li:not(:last-child) {
	margin-bottom: 72px;
	position: relative;
}

#flow ol > li:not(:last-child)::after {
	content: '';
	position: absolute;
	top: calc(100% + 24px);
	left: 50%;
	transform: translateX(-50%);
	border-width: 24px 16px 0;
	border-color: var(--darkBlue) transparent transparent;
}

#flow li h3 {
	margin-bottom: 0;
	width: 268px;
	border-right: 1px solid var(--borderGray1);
}

#flow li h3::before {
	counter-increment: number 1;
	content: counter(number, decimal-leading-zero);
	display: block;
	margin-bottom: 12px;
	color: var(--lightBlue);
	font-size: var(--fontsize48);
	font-weight: 300;
	line-height: 1;
}

#flow li .text {
	margin-left: -1px;
	padding-left: 48px;
	flex: 1;
	border-left: 1px solid var(--borderGray1);
}

#flow li .text p {
	margin-bottom: 12px;
}

#flow li .text .comment {
	text-indent: -1.275em;
	margin-left: 1.275em;
	margin-bottom: 4px;
	color: var(--textGray);
	font-family: 'Noto Sans JP', sans-serif;
	font-size: var(--fontsize14);
	line-height: 1.75;
}

#flow li .text dl {
	margin-top: 24px;
	padding: 24px;
	background-color: #f9f9f9;
}

#flow li .text dd {
	margin-top: 12px;
	font-size: var(--fontsize14);
	line-height: 1.75;
}

#flow li .text ul {
	list-style: disc;
	padding-left: 1.25em;
	margin-bottom: 12px;
}

#flow li .text ul li {
	margin-bottom: 8px;
}

@media screen and (max-width: 767px) {
	#flow ol > li {
		padding: 31px 23px;
		flex-direction: column;
	}
	
	#flow ol > li:not(:last-child) {
		margin-bottom: 47px;
	}
	
	#flow ol > li:not(:last-child)::after {
		top: calc(100% + 18px);
		border-width: 15px 10px 0;
	}
	
	#flow li h3 {
		width: 100%;
		padding-bottom: 32px;
		border-right: 0;
		border-bottom: 1px solid var(--borderGray1);
		text-align: center;
	}
	
	#flow li h3::before {
		font-size: var(--fontsize40);
	}
	
	#flow li .text {
		margin-left: 0;
		padding-left: 0;
		padding-top: 24px;
		border-left: 0;
	}
}

/* faq
================================================== */
#faq dl {
	padding-bottom: 12px;
	border-bottom: 1px solid var(--borderGray1);
}

#faq dt {
	margin: 12px 0 -12px;
	border-top: 1px solid var(--borderGray1);
	font-size: var(--fontsize20);
	font-weight: 500;
}

#faq button {
	width: 100%;
	padding: 32px 72px;
	position: relative;
}

#faq button::before,
#faq button::after {
	content: '';
	position: absolute;
	z-index: 1;
}

#faq button::before {
	top: calc(50% - 1px);
	right: 24px;
	width: 24px;
	border-bottom: 2px solid var(--darkBlue);
}

#faq button::after {
	top: calc(50% - 12px);
	right: 35px;
	height: 24px;
	border-right: 2px solid var(--darkBlue);
	transition: transform .3s ease;
}

#faq button[aria-expanded="true"]::after {
	transform: rotate(90deg);
}

#faq dd {
	margin-bottom: -12px;
	padding-bottom: 32px;
	padding-right: 16px;
	padding-left: 72px;
	line-height: 2;
	position: relative;
	display: none;
	cursor: pointer;
	z-index: 1;;
}

#faq dt,
#faq dd {
	transition: color .3s ease, background-color .3s ease;
}

@media (hover: hover) {
	#faq dt:hover,
	#faq dt:has(+dd:hover) {
		background-color: var(--bgGray2);
		color: var(--darkBlue);
	}
	
	#faq dt:hover + dd,
	#faq dd:hover {
		background-color: var(--bgGray2);
	}
}

#faq i {
	position: absolute;
	top: .5em;
	left: 24px;
	transform: translateY(-50%);
	color: var(--lightBlue);
	font-size: var(--fontsize28);
	font-style: normal;
	line-height: 1;
}

#faq dt i {
	top: calc(32px + .5em);
}

@media screen and (max-width: 767px) {
	#faq dt {
		font-size: var(--fontsize18);
	}
	
	#faq button {
		padding: 24px 52px;
	}
	
	#faq button::before {
		right: 16px;
		width: 20px;
	}
	
	#faq button::after {
		top: calc(50% - 10px);
		right: 25px;
		height: 20px;
	}
	
	#faq dd {
		padding-left: 52px;
	}
	
	#faq i {
		left: 16px;
		font-size: var(--fontsize24);
	}
	
	#faq dt i {
		top: calc(24px + .5em);
	}
}

/* footer
================================================== */
footer {
	padding: 16px;
	border-top: 1px solid var(--darkBlue);
	background-color: var(--darkBlue);
	text-align: center;
}

footer .application {
	padding-top: 23px;
	padding-bottom: 0;
}

footer .footNav {
	display: flex;
	justify-content: center;
	margin: 48px 0;
}

footer .footNav li {
	padding: 0 32px;
	border-right: 1px solid #648d76;
	border-left: 1px solid #648d76;
	line-height: 1;
}

footer .footNav a {
	color: var(--white);
}

footer .footNav a:hover {
	text-decoration: underline;
}

footer .copyright {
	color: var(--white);
	font-size: var(--fontsize12);
	line-height: 1;
}

@media screen and (max-width: 767px) {
	footer .footNav {
		margin: 40px 0;
	}
}
/*-- Campaign --*/
#campaign {
	 width: 100%;
  margin-inline: auto;
}
#campaign > .camp {
	padding: 20px 0;
	border-image: linear-gradient(lightyellow,lightyellow) fill 0//0 100vw 0 100vw;
}
.camp h3 {
	color: #A25089;
	font-weight: bold;
	font-size: 1.5em;
	margin-bottom: 10px;
}
.camp p {
	font-size: 1.1em;
}
.camp p span {
	font-size: 1.3em;
	font-weight: bold;
	color: red;
}