@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

#content_wrapper {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
	background: linear-gradient(to top right,#E5ECF7, #FBFCFD);
	padding: 20px;
}

#faq_title h2 {
	font-size: 1.2em;
}

#faq_title h4 {
	font-size: 0.8em;
	line-height: 1em;
	color: #9d9e9e;
	margin-left: 4px;
}

#flight_faq_nav {
	margin: 20px 0;
}

#flight_faq_nav ul li a{
	text-decoration: none;
	font-weight: bolder;
	line-height: 1.8em;
	margin-left: 10px;
	font-size: 2rem;
}

.faq-category {
  font-size: 3rem;
  font-weight: bold;
  margin: 6rem 0 2rem;
  border-left: 6px solid #0078d7;
  padding-left: 0.75rem;
}

.faq-item {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  padding: 1.4rem;
  margin-bottom: 1.5rem;
}

.faq-question {
  display: flex;
  align-items: baseline;
  margin-bottom: 0.75rem;
}

.faq-question .label {
  font-size: 3rem;
  font-weight: bold;
  color: #0078d7;
  margin-right: 1rem;
}

.faq-question .text {
  font-size: 1.8rem;
  font-weight: bold;
}

.faq-answer {
  display: flex;
  align-items: baseline;
}

.faq-answer .label {
  font-size: 3rem;
  font-weight: bold;
  color: #ADD8E6;
  margin-right: 1rem;
}

.faq-answer .text {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.6em;
	margin-bottom: 1rem;
}



/* タブレット以上の画面サイズ */
@media screen and (min-width: 768px) {
	
#content_wrapper {
	padding: 50px;
  }
	
}

/* デスクトップ以上の画面サイズ */
@media screen and (min-width: 1025px) {
#faq_content {
	max-width: 1200px;
	margin: 0 auto;
  }
	
#faq_title h2 {
	font-size: 1.6em;
}

#faq_title h4 {
	font-size: 1em;
}
	
#flight_faq_nav ul li a{
	font-size: 1.3em;
}

.faq-category {
  font-size: 3rem;
}

.faq-item {
  padding: 1.6rem;
  margin-bottom: 1.5rem;
}

.faq-question .label {
  font-size: 3rem;
	  margin-right: 1rem;
}

.faq-question .text {
  font-size: 1.8rem;
}

.faq-answer .label {
  font-size: 3rem;
	  margin-right: 1rem;
}

.faq-answer .text {
  font-size: 1.4rem;
}
	
	
}