@charset "utf-8";
/*------------------------------------------------------------
	graduate
------------------------------------------------------------*/
#pagePath::before {
	background: #F5F5F5;
}
.pageHeader_wrap {
    display: flex;
    align-items: center;
    gap: 80px;
	margin-top: 0.5rem;
    width: 116.4rem;
	color: #fff;
}
.pageHeader_wrap p {
    color: #fff;
    margin-bottom: 0 !important;
}
.pageTitle h2 {
    width: unset;
}
#main {
	padding-bottom: 21.4rem;
}
#main .pageTitle {
	background-image: url(../img/faq/page_title_bg.webp);
}
#main .content {
	width: 116.4rem;
}
#main p {
	margin-bottom: 4rem;
    font-size: 1.8rem;
	line-height: 1.875;
}
#main p.lead {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 7rem;
}
#main .btn a {
	display: block;
}
#main .btn a:hover {
	opacity: 0.7;
}
#main section {
    /* background: #fff;
    border-radius: 20px;
    padding: 30px 40px;
	margin-bottom: 40px;
	border: 1px solid #005BAB; */
}

#main section .heading01 {
    margin-bottom: 3.3rem;
    color: #2078D0;
    font-weight: 500;
    font-size: 3.8rem;
    line-height: 1.356;
    display: flex;
    align-items: center;
}
#main section .heading01 .icon {
    width: 60px;
    margin-right: 20px;
}
/* ===== FAQ Accordion ===== */
.faq{
  --brand: #1f5fbf;          /* 青（Qバッジ/文字/矢印） */
  --bg: #eef6fb;             /* カード背景 */
  --line: rgba(31,95,191,.55); /* 展開時の区切り線 */
  --text: #163a67;           /* 質問テキスト */
  --body: #1b1f2a;           /* 回答テキスト */
  --radius: 28px;
}

.faq__list{
  display: grid;
  gap: 18px;
}

/* 1 item */
.faqItem{
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
}

/* summary clickable row */
.faqItem__q{
  list-style: none;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  cursor: pointer;
  color: var(--text);
}

/* remove default marker */
.faqItem__q::-webkit-details-marker{ display: none; }
.faqItem__q::marker{ content: ""; }

/* Q badge */
.faqItem__badge{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  letter-spacing: .02em;
  font-size: 20px;
}

/* title */
.faqItem__title{
  font-weight: 700;
  line-height: 1.55;
  font-size: 16px;
}

/* chevron */
.faqItem__icon{
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--brand);
  justify-self: end;
}
.faqItem__icon svg{
  width: 26px;
  height: 26px;
  display: block;
  transition: transform .2s ease;
}

/* answer area */
.faqItem__a{
  padding: 16px 18px 18px;
  border-top: 1px solid var(--line);
  color: var(--body);
  line-height: 2.0;
  font-size: 14.5px;
}

/* open state */
.faqItem[open] .faqItem__icon svg{
  transform: rotate(180deg);
}

/* focus styles (keyboard) */
.faqItem__q:focus-visible{
  outline: 3px solid rgba(31,95,191,.25);
  outline-offset: 3px;
  border-radius: calc(var(--radius) - 8px);
}

/* ===== Responsive ===== */
@media (max-width: 640px){
  .faq__list{ gap: 14px; }

  .faqItem__q{
    grid-template-columns: 52px minmax(0, 1fr) 40px;
    gap: 12px;
    padding: 14px 14px;
  }

  .faqItem__badge{
    width: 40px;
    height: 40px;
    font-size: 13px;
  }

  .faqItem__title{
    font-size: 15px;
    line-height: 1.6;
  }

  .faqItem__a{
    padding: 14px 14px 16px;
    font-size: 14px;
    line-height: 1.95;
  }
}



/* ===== responsive ===== */
@media (max-width: 640px){

}

@media all and (max-width: 896px) {
	.pageTitle {
        margin-bottom: 3.5rem;
        height: 19rem;
    }
	.pageHeader_wrap {
		display: flex;
		align-items: center;
		gap: 0;
		padding: 0 30px;
		color: #fff;
		flex-direction: column;
	}
	.pageTitle h2 {
		padding: 0 !important;
	}
	#main {
		padding-bottom: 16rem;
	}
	#main p {
		margin-bottom: 4rem;
		font-size: 1.6rem;
	}
	#main .btn {
		margin: 0 auto;
		max-width: 32rem;
	}
	
}

