@charset "UTF-8";
/*-----------------------------------------------------------
*** [ KDDI株式会社 共通 main] ***
------------------------------------------------------------*/

/*--------------------------------------
    カスタムプロパティ
--------------------------------------*/
:root {
  --page-main: #0091d7;
  --page-light: #e1f2f9;
  --uq-blue: #003399;
}

/* = [ レイアウト ] ===========================================*/
.p-faq-container {
  max-width: 1020px;
  margin: 40px auto 0;
  padding: 0 15px;
}
@media screen and (max-width: 767px) {
  .main {
    overflow: visible !important;
  }
  .p-faq-container {
    margin-top: 0;
    padding: 0;
  }  
}

/* = [ 見出し ] ===========================================*/
.p-faq-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}
.p-faq-heading__text {
  font-size: 2.2rem;
  line-height: 1;
  text-align: center;
}
.p-support-headig {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.75;
  text-align: center;
}

/* = [ テキストリンク ] ===========================================*/
.c-text-link {
	color: var(--page-main);
	text-decoration: underline !important;
}
.c-text-link:hover {
	text-decoration: none !important;
}
.right-arrow::after,
.bottom-arrow::after {
	display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: -3px;
	font-size: 2.2rem;
	font-family: "Material Icons";
	line-height: 1;
	text-decoration: none;
  vertical-align: -5px;
	content: "\e313";
}
.right-arrow::after {
	transform: rotate(-90deg);
}
.external::after {
	display: inline-block;
	position: relative;
	top: 1px;
	margin-left: 0.2em;
	font-size: 1.6rem;
	font-family: "Material Icons";
	line-height: 1;
	text-decoration: none;
	content: "\e89e";
}
@media screen and (max-width: 767px) {
  .right-arrow::after,
  .bottom-arrow::after {
    width: 15px;
    height: 15px;
    margin-left: -2px;
    font-size: 1.8rem;
    vertical-align: -6px;
  }
  .external::after {
    top: 2px;
    margin-left: 0.1em;
    font-size: 1.5rem;
  }  
}

/* = [ ボタンリンク ] ===========================================*/
.btn-w300 {
  max-width: 300px;
  margin: 25px auto 0;
}
@media screen and (max-width: 767px) {
  .btn-w300 {
    margin: 18px auto 0;
  }
}

/* = [ テキスト ] ===========================================*/
.p-faq-notes {
  font-weight: 300;
  font-size: 1.2rem;
}

/* = [ カテゴリー ] ===========================================*/
.category-select-list {
  display: flex;
  column-gap: 10px;
  justify-content: center;
}
.category-select-item input {
	display: none;
}
.category-select-item input:checked + .checkbox-custom {
  background-color: #f3f5f9;
  border-color: var(--uq-blue);
}
.checkbox-custom {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 40px;
  padding: 0 30px;
	font-weight: 400;
	font-size: 1.3rem;
  border: 1px solid #ADADAD;
  border-radius: 20px;
  color: #333333;
  background-color: #fff;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s, border-color 0.3s;
}
.category-select-link {
  display: flex;
  align-items: center;
  position: relative;
	font-weight: 400;
	font-size: 1.3rem;
}
.category-select-link::after {
  position: absolute;
  right: 15px;
  width: 14px;
  height: 14px;
  background: url("../img/faq_icon_arrow.svg") no-repeat 0 0;
	content: "";
}
@media screen and (max-width: 1050px) {
  .category-select {
    position: sticky;
    top: 52px;
    z-index: 1;
    padding: 20px 0 10px;
    background-color: rgba(255,255,255,0.95);
  }
  .category-select-list {
    flex-wrap: wrap;
    gap: 10px;
    overflow-x: hidden;
    padding: 0 15px;
  }
}
@media screen and (max-width: 699px) {
  .category-select-list::after {
    display: block;
    width: 160px;
    height: 40px;
    content: '';
  }
	.checkbox-custom {
		padding: 0 26px;

  }
}

/* = [ accordion ] ===========================================*/
.p-faq {
  display: flex;
  flex-direction: column;
  row-gap: 14px;
  padding: 30px 0 20px;
  background-color: var(--page-light);
}
.p-faq__inner {
  max-width: 708px;
  width: 100%;
  margin: auto;
}
.p-faq__q {
  align-items: center;
  position: relative;
  min-height: 95px;
  padding: 19px 79px 14px 18px;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}
.p-faq__q button {
	display: flex;
	column-gap: 14px;
	align-items: center;
	width: 100%;
	min-height: 58px;
	padding: 0;
	border: none;
	background: #fff;
	cursor: pointer;
}
.p-faq__q::after {
	position: absolute;
	top: 0;
	right: 25px;
	bottom: 0;
	transform: rotate(90deg);
	width: 30px;
	height: 30px;
	margin: auto;
	font-size: 3rem;
	font-family: 'Material Icons';
	line-height: 1;
	content: "\e5cc";
}
.p-faq__q.is-open::after {
	transform: rotate(-90deg);
}
.p-faq__a {
	display: flex;
	column-gap: 14px;
	padding: 21px 9px 21px 18px;
}
.p-faq__icon {
	width: 100%;
	max-width: 44px;
}
.p-faq__q-text {
	font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.3;
	text-align: left;
}
.p-faq__a-text {
	align-self: center;
  font-size: 1.9rem;
  line-height: 1.65;
}
.p-faq__a-text sup {
  font-size: 1.1rem;
}
.p-faq__bullet {
  position: relative;
}
.p-faq__bullet::before {
  margin-right: 0.8em;
  color: var(--page-main);
  font-size: 50%;
  vertical-align: middle;
  content: "●";
}
.p-faq-cta {
	margin-top: 37px;
}
@media screen and (max-width: 767px) {
	.p-faq {
    row-gap: 10px;
    padding: 20px 15px 15px;
	}
	.p-faq__q {
		min-height: 68px;
		padding: 14px 57px 10px 13px;
		border-radius: 10px;
	}
	.p-faq__q button {
		column-gap: 10px;
		min-height: 42px;
	}
	.p-faq__q::after {
		right: 18px;
		width: 22px;
		height: 22px;
		font-size: 2.2rem;
	}
	.p-faq__a {
		column-gap: 10px;
		padding: 15px 7px 15px 13px;
	}
	.p-faq__icon {
		max-width: 32px;
	}
	.p-faq__q-text {
		font-size: 1.6rem;
	}
	.p-faq__a-text {
		font-size: 1.4rem;
	}
	.p-faq__a-text sup {
		font-size: 0.8rem;
	}
	.p-faq-cta {
		margin-top: 27px;
	}
}