@charset "utf-8";

:root {
  /* ================================================
   * Base Colors
   * ================================================ */
  --color-base-red: #cc0000;
  --color-base-wh: #ffffff;
  --color-base-bg-body: #f0eeec;
  --color-base-txt-basis: #3d3d3d;
  --color-base-chacol100: #4d4639;
}

body,
#Page {
	background: var(--color-base-bg-body);
}

h2,
dt,
dd,
p {
	color: var(--color-base-txt-basis);
}

table td {
	vertical-align: middle
}

details summary {
  list-style: none;
}
summary {
  display: block;
  list-style-type: none;
}
summary::-webkit-details-marker {
  display: none;
}

#Menu:before,
#Menu:after {
	content: none;
}

/* #Header,#HeaderInner {
	height: 46px !important;
} */
#Title {
	height: 46px !important;
	line-height: 46px !important;
}
#Title a {
	line-height: 1;
	padding-top: 15px;
	padding-bottom: 10px;
}

#Header #Menu,
#Menu.border_top {
	border: none;
	background-color: initial;
}

#Footer {
	background: transparent !important;
}

/* FAQページ */
.faq-section {
	padding: 24px;
	max-width: 728px;
	margin-inline: auto;
}
.faq-section h2 {
	font-size: 24px;
	font-weight: bold;
	line-height: 1.48;
	text-align: center;
}

/* ご利用ガイド */
.faq-guide-link-container {
	margin-top: 24px;
	margin-bottom: 24px;
}
.faq-guide-link {
	display: flex;
	align-items: center;
	background-color: var(--color-base-wh);
	border-radius: 12px;
	text-decoration: none;
	color: var(--color-base-txt-basis);
	font-size: 14px;
	line-height: 1.48;
	position: relative;
	height: 48px;
	padding-left: 16px;
	padding-right: 16px;
	max-width: 327px;
	margin-inline: auto;
}
.faq-guide-link-text {
	margin-top: 2px;
	margin-left: 2px;
	line-height: 1;
}
.faq-guide-icon.faq-guide-icon-arrow {
	margin-left: auto;
}

/* アコーディオンアイコン　プラスボタン */
.faq-toggle-icon,
.faq-toggle-icon::after{
    display: block;
    box-sizing: border-box;
    background: currentColor;
    border-radius: 10px;
}
.faq-toggle-icon {
    position: absolute;
    transform: translate(0, -50%) scale(0.9);
    width: 10px;
    height: 2px;
    top: 50%;
    right: 19px;
    transition: 0.4s;
    background-color: var(--color-base-chacol100);
}
.faq-toggle-icon::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 10px;
    top: -4px;
    left: 4px;
    background-color: var(--color-base-chacol100);
}

/* フィルター */
.faq-filter {
	margin-right: -24px;
	margin-bottom: 24px;
	margin-left: -24px;
	margin-bottom: 24px;
	overflow-x: auto;
	padding-left: 24px;
}

.faq-filter-list {
	display: flex;
	justify-content: flex-start;
	list-style: none;
	padding: 0;
}

.faq-filter-list-item {
	margin-right: 4px;
}
.faq-filter-list-item:last-child {
	padding-right: 24px;
}

.faq-filter-tab {
	border: none;
	border-radius: 20px;
	display: block;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.32;
	text-decoration: none;
	color: #B3B3B3;
	width: max-content;
	padding: 3px 8px;
	text-decoration: none;
	border-radius: 16px;
	cursor: pointer;
	background-color: initial;
}

.faq-filter-tab[aria-current="page"],
.faq-filter-tab:hover {
	background-color: #E0DFDD;
	font-weight: bold;
	color: var(--color-base-txt-basis);
}

/* FAQセクション */
.faq-category-section {
	padding: 0;
	margin-bottom: 32px;
}
.faq-category-section > h2 {
	color: var(--color-base-txt-basis);
	font-size: 1.8rem;
	font-weight: bold;
	text-align: left;
	margin-bottom: 12px;
	line-height: 1.32;
}

.faq-item {
	margin-bottom: 8px;
	background-color: var(--color-base-wh);
	border-radius: 16px;
	min-height: 56px;
	overflow: hidden;
}
.faq-item.is-open .faq-toggle-icon::after{
    display: none;
}
.faq-item.is-open .faq-icon::after {
	transform: translate(-50%, -50%) rotate(180deg);
}

.faq-summary {
	display: flex;
	align-items: center;
	position: relative;
	cursor: pointer;
	padding: 8px 16px;
	min-height: 56px;
}
.faq-summary-contents {
	display: flex;
	align-items: center;
	padding-right: 28px;
	width: 100%;
}
.faq-summary-title {
	color: #3D3D3D;
	font-size: 1.6rem;
	line-height: 1.48;
	border-left: dotted 1px #D4D2CF;
	margin-left: 8px;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 12px;
}

.faq-answer {
	display: none;
	position: relative;
	margin-left: 16px;
	margin-right: 16px;
	border-top: solid 1px #F2F2F2;
}
.faq-answer-inner {
	padding-top: 8px;
	padding-bottom: 16px;
}
.faq-answer-text {
	margin: 0;
	font-size: 1.6rem;
	line-height: 1.48;
}
.faq-answer-link {
	color: #006DC5;
}
.faq-answer img {
	text-align: center;
	width: 100%;
	height: auto;
	margin-top: 4px;
}
.faq-answer-text + .faq-answer-table {
	margin-top: 4px;
}
.faq-answer-table {
	table-layout: fixed;
	border-collapse: separate;
	border-spacing: 0;
  border-radius: 8px;
  overflow: hidden;
	border: solid 1px #D4D2CF;
	font-size: 1.2rem;
	line-height: 1.48;
}
.faq-answer-table-thead {
	background-color: #707070;
}
.faq-answer-table-thead th {
	color: #fff;
	font-weight: bold;
	vertical-align: middle;
	text-align: center;
	padding: 16px 8px;
}
.faq-answer-table-thead th:not(:first-child) {
	border-left: solid 1px #D4D2CF;
}
.faq-answer-table-tbody tr:last-child th,
.faq-answer-table-tbody tr:last-child td {
  border-bottom: none;
}
.faq-answer-table-tbody th,.faq-answer-table-tbody td {
	color: #3D3D3D;
	font-weight: normal;
	padding: 8px;
}
.faq-answer-table-tbody th {
	background-color: #EBEAE6;
	text-align: center;
	vertical-align: middle;
}
.faq-answer-table-tbody td {
	border-left: solid 1px #D4D2CF;
}

/* +/- アイコンの実装 */
.faq-icon {
	position: relative;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	margin-left: 1rem;
}
.faq-icon::before,
.faq-icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 2px;
	background-color: #888;
	border-radius: 2px;
	transform: translate(-50%, -50%);
	transition: transform 0 ease;
}
.faq-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

/* お問い合わせボタン */
.faq-contact-button {
	min-height: 56px;
	width: 263px;
	border-radius: 80px;
	border: solid 1px #E0DEDC;
	background-color: #FCFCFC;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-inline: auto;
}
.faq-contact-button-text {
	color: var(--color-base-chacol100);
	font-size: 18px;
	font-weight: bold;
	line-height: 1.32;
}

.faq-note-text {
	color: var(--color-base-txt-basis);
	font-size: 12px;
	line-height: 1.48;
	text-align: center;
	margin-top: 8px;
}

.is-hidden {
	display: none;
}

@media (max-width: 767px) {}
@media (max-width: 320px) {
	.faq-answer-table {
		font-size: 1.1rem;
	}
}