@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;
	--bgGray1      : #f4f5f5;
	--bgGray2      : #f3f6f5;
	--borderGray1  : #d1d4d7;
	--borderGray2  : #d9d9d9;
	--darkRed      : #6c1f1f;
	--absRed       : #C14140;
	--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(--absRed);
}

@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: 387px;
	}
	
	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(--absRed);
	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: 58%;
	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(--absRed);
	background-color: var(--absRed);
}

.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(--absRed);
	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(47, 153, 91, .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(--absRed);
	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(--darkRed);
	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: #fff;
}

#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;
}

#problem .problemList li.ck01 {
	background: url(../images/ico_problem1.svg) no-repeat left 2px;
	background-size: 20px 21px;
}

#problem .problemList li.ck02 {
	background: url(../images/ico_problem2.svg) no-repeat left 2px;
	background-size: 20px 21px;
}

#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%;
	}
}

/* plm
================================================== */
#pbm {
	background-color: #f4f5f5;
}

#pbm .col {
	display: flex;
	gap: 48px;
}

#pbm .col figure {
    width: 396px;
    max-width: calc(50% - 24px);
}

#pbm .col figure img {
	width: 100%;
}

#pbm .col .text {
    flex: 1;
}

#pbm .problemList {
	padding: 32px;
	background-color: var(--white);
}

#pbm .problemList li {
	margin-bottom: .8em;
	padding-left: 30px;
}

#pbm .problemList li.ck01 {
	background: url(../images/ico_problem1.svg) no-repeat left 2px;
	background-size: 20px 21px;
}

#pbm .problemList li.ck02 {
	background: url(../images/ico_problem2.svg) no-repeat left 2px;
	background-size: 20px 21px;
}

#pbm .problemList li:last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 767px) {
	#pbm .col:not(:last-child) {
		margin-bottom: 64px;
	}
	
	#pbm .col,
	#pbm .col:nth-of-type(2n) {
		flex-direction: column;
	}
	
	#pbm .col figure {
		margin: 0 auto;
		width: 100%;
		max-width: 100%;
	}
}


/* reason
================================================== */
#reason {	background-color: #fff;
}

#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(--absRed);
	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(--absRed) 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(--absRed);
	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(--absRed);
}

#faq button::after {
	top: calc(50% - 12px);
	right: 35px;
	height: 24px;
	border-right: 2px solid var(--absRed);
	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(--darkRed);
	}
	
	#faq dt:hover + dd,
	#faq dd:hover {
		background-color: var(--bgGray2);
	}
}

#faq i {
	position: absolute;
	top: .5em;
	left: 24px;
	transform: translateY(-50%);
	color: var(--absRed);
	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(--absRed);
	background-color: var(--absRed);
	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;
	}
}


/* issue-section
================================================== */
.issue-section{
    width:100%;
    padding:60px 20px;
    box-sizing:border-box;
}

/* PC 2カラム */
.issue-grid{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:60px 80px;
}

/* 各ブロック */
.issue-card{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:30px;
}

/* テキスト */
.issue-text{
    flex:1;
}

.issue-text h3{
    margin:0 0 20px;
    font-size:28px;
    color:#d94b45;
    font-weight:500;
    line-height:1.3;
}

.issue-text ul{
    margin:0;
    padding-left:20px;
}

.issue-text li{
    font-size:16px;
    line-height:1.8;
    margin-bottom:8px;
	list-style: disc;
}

/* アイコン */
.issue-icon{
    width:140px;
    flex-shrink:0;
    text-align:center;
}

.issue-icon img{
    width:100%;
    height:auto;
    display:block;
}


/* =========================
   タブレット
========================= */
@media screen and (max-width:1024px){

    .issue-grid{
        gap:50px;
    }

    .issue-text h3{
        font-size:28px;
    }

    .issue-text li{
        font-size:16px;
		list-style: disc;
    }

    .issue-icon{
        width:110px;
    }

}


/* =========================
   スマホ
========================= */
@media screen and (max-width:768px){

    .issue-section{
        padding:40px 15px;
    }

    /* 1列 */
    .issue-grid{
        grid-template-columns:1fr;
        gap:45px;
    }

    .issue-card{
        align-items:flex-start;
        gap:20px;
    }

    .issue-text h3{
        font-size:26px;
        margin-bottom:15px;
    }

    .issue-text li{
        font-size:18px;
        line-height:1.7;
		list-style: disc;
    }

    .issue-icon{
        width:90px;
    }

}


/* =========================
   小さいスマホ
========================= */
@media screen and (max-width:480px){

    .issue-text h3{
        font-size:22px;
    }

    .issue-text li{
        font-size:16px;
		list-style: disc;
    }

    .issue-icon{
        width:75px;
    }

}

/* curriculum-table
================================================== */
.curriculum-table{
    max-width:1200px;
    margin:0 auto;
    font-family: sans-serif;
}

/* ===== PC ===== */

.curriculum-row{
    display:flex;
    gap:20px;
    margin-bottom:20px;
    align-items:stretch;
}

/* 左 Month */

.month{
    width:140px;
    background:#f5f5f2;
    display: grid;
    align-items:center;
    font-size:20px;
    font-weight:bold;
    color:#b53a3a;
	padding: 1em;
	text-align: center;
}
.month span{
    background:#f5f5f2;
    align-items:center;
    justify-content:center;
    font-size:17px;
    font-weight:bold;
    color:#b53a3a;
}

/* 右側 */

.content-wrap{
    flex:1;
    display:flex;
    gap:20px;
}

.theme-box{
    width:35%;
    background:#f5f5f2;
}

.detail-box{
    width:65%;
    background:#f5f5f2;
}

.head{
    background:linear-gradient(to right,#b32f2f,#e6c6c6);
    color:#fff;
    padding:12px 20px;
    font-size:18px;
    font-weight:bold;
}

.body{
    padding:24px 20px;
    font-size:16px;
    line-height:1.7;
}

.body strong{
    font-size:18px;
}


/* ===== SP ===== */

@media screen and (max-width:768px){

    .curriculum-row{
        display:block;
        margin-bottom:40px;
    }

    .month{
        width:100%;
        font-size:18px;
        margin-bottom:10px;
    }
    .month span{
        width:100%;
        font-size:16px;
        margin-bottom:10px;
    }

    .content-wrap{
        display:block;
    }

    .theme-box,
    .detail-box{
        width:100%;
        margin-bottom:12px;
    }

    /* 全Mthで見出し表示される */

    .head{
        display:block;
        font-size:18px;
        padding:12px;
    }

    .body{
        padding:18px;
        font-size:14px;
        line-height:1.7;
    }

    .body strong{
        font-size:16px;
    }

}

/* feature-section
================================================== */
/* 全体 */
.feature-section {
  padding: 60px 20px;
  background: #ffffff;
  box-sizing: border-box;
}

/* PC 3カラム */
.feature-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: stretch;
}

/* ボックス */
.feature-box {
  flex: 1;
  background: #f4f4f1;
  padding: 30px 25px;
  box-sizing: border-box;
}

/* タイトル */
.feature-box h2 {
  font-size: 24px;
  font-weight: 700;
  color: #C14140;
  text-align: center;
  margin: 0 0 35px;
  padding-bottom: 18px;
  border-bottom: 1px solid #c97d7d;
  line-height: 1.4;
}

/* 各項目 */
.feature-box .item {
  margin-bottom: 28px;
}

.feature-box .item:last-child {
  margin-bottom: 0;
}

/* 小見出し */
.feature-box .item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.4;
  color: #111;
}

/* 本文 */
.feature-box .item p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  color: #222;
}



/* =========================
   スマホ（縦積み）
========================= */
@media screen and (max-width: 768px) {

  .feature-section {
    padding: 30px 15px;
  }

  .feature-grid {
    display: block;
  }

  .feature-box {
    width: 100%;
    margin-bottom: 20px;
    padding: 25px 20px;
  }

  .feature-box:last-child {
    margin-bottom: 0;
  }

  .feature-box h2 {
    font-size: 20px;
    margin-bottom: 25px;
    padding-bottom: 12px;
  }

  .feature-box .item {
    margin-bottom: 22px;
  }

  .feature-box .item h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .feature-box .item p {
    font-size: 14px;
    line-height: 1.6;
  }

}

/* program-info and program-box
---------------------------------------------------*/
/* 全体 */
.program-info {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
}

/* 左右ボックス */
.program-box {
  flex: 1;
}

/* 見出し */
.program-box h2 {
  background: #C14140;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  padding: 10px 20px;
  margin-bottom: 25px;
  line-height: 1.2;
}

/* 左側 definition list */
.info-list {
  margin: 0;
  padding: 0;
}

.info-list .row {
  display: flex;
  margin-bottom: 14px;
  align-items: flex-start;
}

/* ラベル */
.info-list dt {
  width: 120px;
  background: #e5e3d8;
  padding: 12px 10px;
  font-size: 18px;
  box-sizing: border-box;
  flex-shrink: 0;
  text-align: center;
}

/* 内容 */
.info-list dd {
  margin: 0;
  padding: 10px 0 10px 18px;
  font-size: 19px;
  font-weight: bold;
  line-height: 1.5;
}

.info-list dd span {
  display: block;
  font-size: 16px;
  font-weight: normal;
  color: #555;
}

/* 右側リスト */
.target-list ul {
  margin: 20px 0 0;
  padding-left: 30px;
}

.target-list li {
  font-size: 20px;
  margin-bottom: 14px;
  line-height: 1.6;
  list-style-type: disc;
}

/* =========================
   スマホ対応
========================= */
@media screen and (max-width: 768px) {

  /* 縦積み */
  .program-info {
    flex-direction: column;
    gap: 35px;
    padding: 0 15px;
  }

  /* 見出し */
  .program-box h2 {
    font-size: 20px;
    padding: 10px 15px;
    margin-bottom: 18px;
  }

  /* 左側も縦積みに変更 */
  .info-list .row {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .info-list dt {
    width: 100%;
    font-size: 15px;
    padding: 10px;
    text-align: left;
  }

  .info-list dd {
    padding: 12px 0 0;
    font-size: 16px;
    line-height: 1.6;
  }

  .info-list dd span {
    font-size: 13px;
  }

  /* 右側 */
  .target-list ul {
    padding-left: 20px;
    margin-top: 10px;
  }

  .target-list li {
    font-size: 16px;
    margin-bottom: 10px;
  }

}

/* 予約フォーム
--------------------------------------------------- */
.booking-section {
  width: 100%;
  padding: 40px 20px;
  box-sizing: border-box;
}

.booking-container {
  max-width: 1100px;
  margin: 0 auto;
}

.booking-container iframe {
  width: 100%;
  height: 900px;
  border: none;
  display: block;
}

/* タブレット */
@media screen and (max-width: 1024px) {
  .booking-container iframe {
    height: 1100px;
  }
}

/* スマホ */
@media screen and (max-width: 768px) {
  .booking-section {
    padding: 20px 10px;
  }

  .booking-container iframe {
    height: 1400px;
  }
}

/* ABSとは
-------------------------------------------- */
.about-abs{
    max-width:1200px;
    margin:0 auto;
    padding: 30px;
    font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
    color:#222;
}

/*==========================
 上段
==========================*/

.about-flex{
    display:flex;
    align-items:center;
}

.about-image{
    flex:0 0 30%;
	margin-right: 50px;
}

.about-image img{
    width:100%;
    display:block;
}

.about-text{
    flex:1;
    font-size: 18px;
    line-height:2;
    letter-spacing:.05em;
}

.about-text p{
    margin-bottom:30px;
}

/*==========================
 下段
==========================*/

.ipo-area{
    margin-top:90px;
}

.ipo-area h2{
    color:#d64840;
    font-size:28px;
    font-weight: bold;
    margin-bottom:35px;
    line-height:1.3;
	text-align: center;
}

.ipo-area p{
    font-size:18px;
    line-height:1.9;
}

/*==========================
 タブレット
==========================*/

@media (max-width:1024px){

.about-flex{
    gap:40px;
}

.about-text{
    font-size:18px;
}

.ipo-area h2{
    font-size:26px;
}

.ipo-area p{
    font-size:18px;
}

}

/*==========================
 スマホ
==========================*/

@media (max-width:768px){

.about-abs{
    padding:40px 20px;
}

.about-flex{
    display:block;
}

.about-image{
    width:100%;
    margin-bottom:30px;
}

.about-image img{
    width:100%;
    height:auto;
}

.about-text{
    font-size:17px;
    line-height:1.9;
}

.about-text p{
    margin-bottom:20px;
}

.ipo-area{
    margin-top:45px;
}

.ipo-area h2{
    font-size:26px;
    margin-bottom:20px;
}

.ipo-area p{
    font-size:17px;
    line-height:1.9;
}

}