/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 16 2025 | 09:24:11 */
#Faq .contents{
	padding-top:60px;
	padding-bottom:100px;
}
#Faq .contents h1{
	font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
	font-size: 34px;
	text-align:center;
	margin-bottom:60px;
}


<style>
/* --- 全体のコンテナ --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    color: #333;
}

/* --- 検索エリアのデザイン --- */
.faq-search-box {
    background-color: #f4f4f4;
    padding: 40px;
    border-radius: 4px;
    margin-bottom: 40px;
}

.faq-search-label {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
	font-family: "Zen Kaku Gothic New", sans-serif;
}

/* 白い入力枠 */
.faq-input-wrapper {
    background-color: #fff;
    border-radius: 10px;
    padding: 5px 15px;
    display: flex;
    align-items: center;
}

/* テキスト入力欄 */
.faq-search-input {
    border: none;
    background: transparent;
    flex-grow: 1;
    padding: 10px 10px;
    font-size: 16px;
    outline: none;
    color: #333;
	   font-family: "Zen Kaku Gothic New", sans-serif;
}
.faq-search-input::placeholder {
    color: #bbb;
}

/* 検索ボタン */
.faq-search-btn {
    background-color: #5ea8ff;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: opacity 0.3s;
    white-space: nowrap;
}
.faq-search-btn:hover {
    opacity: 0.8;
}
/* 検索ボタン内の虫眼鏡アイコン */
.search-btn-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* --- Q&Aリストのデザイン --- */
.faq-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden;
	padding:5px 20px;
}

/* 質問部分 */
.faq-question {
    padding: 10px 0px;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    font-weight: 500;
    list-style: none; 
    font-size: 16px;
    outline: none; /* 黒い線を消す設定 */
	font-family: "Zen Kaku Gothic New", sans-serif;
}
details {
    outline: none;
}
.faq-question::-webkit-details-marker {
    display: none; 
}

/* Qアイコン */
.icon-q {
    background-color: #FFE0E1;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
	font-family: "Roboto", sans-serif;
}

/* ▼ 変更箇所：開閉アイコンのデザイン ▼ */
.arrow-icon-wrapper {
    margin-left: auto; /* 右端に寄せる */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease; /* くるっと回るアニメーション */
}

/* アイコン自体のサイズと色 */
.arrow-svg {
    width: 30px;  /* 画像に合わせて少し大きめに調整 */
    height: 30px;
    fill: #333;   /* アイコンの色（黒） */
}

/* アコーディオンが開いている時は180度回転 */
details[open] .arrow-icon-wrapper {
    transform: rotate(180deg);
}

/* 回答エリア */
.faq-answer {
    padding: 0 0px 20px 0px;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
    color: #333;
    border-top: 1px solid #D6D6D6;
    padding-top: 20px;
    font-size: 16px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight:400;
}

/* Aアイコン */
.icon-a {
    background-color: #FF6369;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
	font-family: "Roboto", sans-serif;
}

/* --- ページネーションのデザイン --- */
.pagination-container {
    margin-top: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

/* 数字ボタン */
.pagination-btn {
    border: none;
    background: transparent;
    color: #5ea8ff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    padding: 5px 10px;
    transition: opacity 0.2s;
    font-family: Arial, sans-serif;
}
.pagination-btn:hover {
    opacity: 0.7;
}
/* 現在のページ */
.pagination-btn.active {
    color: #000;
    cursor: default;
    pointer-events: none;
}
.pagination-btn.active:hover { opacity: 1; }

/* 矢印ボタン共通 */
.pagination-arrow-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}
/* 戻るボタンの位置調整 */
.pagination-prev-btn {
    margin-right: 10px; 
}
/* 次へボタンの位置調整 */
.pagination-next-btn {
    margin-left: 10px;
}

.pagination-arrow-svg {
    width: 24px;
    height: 24px;
    fill: #000;
    stroke: #000;
    stroke-width: 0;
}

/* 検索中は隠すクラス */
.pagination-hidden {
    display: none !important;
}

/* スマホ対応 */
@media (max-width: 480px) {
    .faq-search-box { padding: 20px; }
    .faq-question, .faq-answer { padding: 15px; }
    .icon-q, .icon-a { width: 32px; height: 32px; font-size: 14px; margin-right: 10px; }
    .faq-search-btn { padding: 10px 15px; }
    .pagination-btn { font-size: 18px; gap: 10px; }
}



@media (max-width: 833px) {
	#Faq .contents{
	padding-top:30px;
	padding-bottom:50px;
		padding-right:15px;
		padding-left:15px;
}
#Faq .contents h1{
	font-size: 26px;
	margin-bottom:30px;
}
	.faq-search-input {
    padding: 0px;
    font-size: 16px;
}
	
	.faq-search-btn {
padding: 5px 10px;
    font-weight: 500;
    font-size: 14px;
    gap: 4px;
}
	.faq-item {
	padding:5px 15px;
}
	    .faq-question, .faq-answer {
        padding: 10px 0px;
    }
}


/* スマホでの検索ボタンはみ出し対策 */
@media (max-width: 480px) {
    /* 1. 入力欄が限界まで縮めるようにする（一番重要） */
    .faq-search-input {
        min-width: 0; 
        width: 100%; /* 念のため */
    }

    /* 2. ボタンの余白を少し減らしてコンパクトに */
    .faq-search-btn {
        padding: 5px 10px; /* 左右の余白を25px→15pxに減らす */
    }
    
    /* 3. 外側の箱の余白もスマホ用に調整 */
    .faq-search-box {
        padding: 20px 15px; /* 左右の余白を減らして入力エリアを確保 */
    }
}




