@charset "utf-8";
/* Copyright 2020 FSFIELD All Rights Reserved. */

/* ------------------------------------------------------------

FAQ

------------------------------------------------------------ */

/* ページタイトル
---------------------------------------------- */
.pagettl::after{background-image: url("../assets/images/portfolio/2.jpg");}

/* コンテンツ
---------------------------------------------- */
.info {
	padding-top: 20px;
}

.ttl_info01 {
	font-size: 3rem;
	font-weight: bold;
	border-bottom: 1px solid #DFDFDF;
	padding: 0 0 20px;
	margin-bottom: 40px;
	position: relative;
}

.ttl_info01::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 2px;
	margin-left: 10px;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: contain;
}

.box_info,
.box_info02 {
	margin-bottom: 60px;
}

.bbox_info:last-of-type,
.bbox_info02:last-of-type {
	margin-bottom: 0;
}

.box_info h3 {
	background: #EEE;
	padding: 20px;
	font-weight: bold;
	font-size: 1.6rem;
	text-align: center;
	border-bottom: 2px solid #FFF;
}

.box_info_inner {
	background: #EEE;
	padding: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* サイトデザインに合わせたスタイル設定 */
:root {
  --pc-blue: #007bc3; 
  --pc-gray: #f9f9f9; 
  --pc-border: #e0e0e0;
}

.faq-section {
  width: 98%;
  max-width: 1000px;
  margin: 40px auto;
  font-family: "Noto Sans JP", sans-serif;
}

.faq-category-title {
  font-size: 20px;
  color: #3ed2a7;
  margin: 40px 0 15px 0;
  padding-left: 15px;
  border-left: 5px solid #3ed2a7;
  line-height: 1.4;
  font-weight: bold;
}

.faq-group {
  border-top: 1px solid var(--pc-border);
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid var(--pc-border);
  background: #fff;
}

.faq-check { display: none; }

.faq-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 15px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-label:hover { background-color: var(--pc-gray); }

.faq-question {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
}

.faq-icon {
  flex-shrink: 0;
  position: relative;
  width: 18px;
  height: 18px;
  margin-left: 10px;
}

.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; height: 2px;
  background-color: var(--pc-blue);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  overflow: hidden;
}

.faq-inner {
  min-height: 0;
  padding: 0 15px;
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  white-space: pre-wrap;
}

.faq-check:checked ~ .faq-content { grid-template-rows: 1fr; }
.faq-check:checked ~ .faq-content .faq-inner { padding-bottom: 25px; }
.faq-check:checked ~ .faq-label .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }

@media (min-width: 768px) {
  .faq-category-title { font-size: 24px; }
  .faq-question { font-size: 18px; }
  .faq-label { padding: 25px 30px; }
  .faq-inner { padding: 0 30px; font-size: 16px; }
}


/* --ボタン-- */
.functionBtn-buy01 a {
	background: #3ED2A5;
    display: inline-flex;
    align-items: center;
	gap: 8px;
	line-height: 1.2;
	padding: 15px 40px;
	min-width: 200px;
	border-radius: 45px;
	color: #FFF;
	text-align: center;
	font-size: 2rem;
  margin:5px 10px;
}

.functionBtn-buy01 a:hover {
	opacity: 0.7;
}

.functionBtn-buy01 a img{
	width: 32px;
	border-radius: 45px;
}