#container.toilet-trouble {
	padding: 0 16px;
}
.head-list-wrapper {
	margin: 2em 0;
}
.head-list-wrapper .head-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1em;
}
.head-list-wrapper .head-list li {
	width: 20%;
}
.head-list-wrapper .head-list li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1em;
}
.head-list-wrapper .head-list li img {
	width: 100px;
	height: auto;
}
.head-list-wrapper .head-list li span {
	padding: 1em;
	border: 1px solid #3babd2;
}

@media screen and (max-width: 767px) {
	.head-list-wrapper .head-list li img {
		width: 70px;
	}
	.head-list-wrapper .head-list li span {
		font-size: 0.7em;
	}
}

/* 信頼の証セクションのデザイン */
.trust-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3, #007bff);
}

.trust-section h3 {
    text-align: center;
    color: #333;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
    position: relative;
}

.trust-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 2px;
}

.trust-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.trust-item {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e9ecef;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
    border-color: #007bff;
}

.trust-item::before {
    content: '✓';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #007bff;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.trust-item:nth-child(1)::before {
    background: #28a745;
}

.trust-item:nth-child(2)::before {
    background: #ffc107;
}

.trust-item:nth-child(3)::before {
    background: #17a2b8;
}

.trust-item:nth-child(4)::before {
    background: #dc3545;
}

.trust-item strong {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.trust-item span {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
    .trust-section {
        padding: 20px;
        margin: 20px 0;
    }

    .trust-section h3 {
        font-size: 20px;
    }

    .trust-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .trust-item {
        padding: 15px;
    }

    .trust-item strong {
        font-size: 16px;
    }

    .trust-item span {
        font-size: 13px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .trust-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* アニメーション効果 */
.trust-item {
    animation: fadeInUp 0.6s ease-out;
}

.trust-item:nth-child(1) { animation-delay: 0.1s; }
.trust-item:nth-child(2) { animation-delay: 0.2s; }
.trust-item:nth-child(3) { animation-delay: 0.3s; }
.trust-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* お客様の声スライダー用スタイル */
.voice-swiper-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.voice-swiper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
}

/* Swiperスライドの基本スタイル */
.voice-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.voice-item {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.voice-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.voice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.voice-location {
    font-weight: bold;
    color: #007bff;
    font-size: 14px;
    background: #e7f3ff;
    padding: 5px 12px;
    border-radius: 15px;
    border: 1px solid #b3d9ff;
}

.voice-name {
    font-weight: bold;
    color: #333;
    font-size: 14px;
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 15px;
}

.voice-title {
    font-weight: bold;
    color: #333;
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.voice-content {
    flex: 1;
    margin-bottom: 15px;
}

.voice-content p {
    line-height: 1.6;
    color: #555;
    font-size: 14px;
    margin: 0;
}

/* Swiperナビゲーションボタン */
.voice-swiper .swiper-button-next,
.voice-swiper .swiper-button-prev {
    color: #007bff;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.voice-swiper .swiper-button-next:hover,
.voice-swiper .swiper-button-prev:hover {
    background: #007bff;
    color: #fff;
}

.voice-swiper .swiper-button-next::after,
.voice-swiper .swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}

/* Swiperページネーション */
.voice-swiper .swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.voice-swiper .swiper-pagination-bullet {
    background: #007bff;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.voice-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #007bff;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
    .voice-swiper-container {
        padding: 10px;
    }

    .voice-item {
        padding: 20px;
    }

    .voice-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .voice-location {
        font-size: 13px;
    }

    .voice-name {
        font-size: 13px;
    }

    .voice-title {
        font-size: 15px;
    }

    .voice-content p {
        font-size: 13px;
    }



    .voice-swiper .swiper-button-next,
    .voice-swiper .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .voice-swiper .swiper-button-next::after,
    .voice-swiper .swiper-button-prev::after {
        font-size: 14px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .voice-item {
        padding: 22px;
    }

    .voice-content p {
        font-size: 13px;
    }
}

/* アニメーション効果 */
.voice-item {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* アクセシビリティ対応 */
.voice-swiper .swiper-button-next:focus,
.voice-swiper .swiper-button-prev:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

.voice-swiper .swiper-pagination-bullet:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* もっと見るボタンのデザイン */
.voice-more-button {
    text-align: center;
    margin-top: 30px;
    padding: 20px 0;
}

.voice-more-button a {
	color: #fff;
}

.more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
}

.more-btn:hover::before {
    left: 100%;
}

.more-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-text {
    font-weight: bold;
    letter-spacing: 0.5px;
}

.btn-icon {
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.more-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* ボタンのフォーカス状態 */
.more-btn:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
    .voice-more-button {
        margin-top: 20px;
        padding: 15px 0;
    }

    .more-btn {
        padding: 12px 25px;
        font-size: 14px;
        gap: 8px;
    }

    .btn-icon {
        font-size: 16px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .more-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* アニメーション効果 */
.more-btn {
    animation: fadeInUp 0.8s ease-out;
}

/* 高コントラストモード対応 */
@media (prefers-contrast: high) {
    .more-btn {
        border: 2px solid #fff;
        background: #000;
        color: #fff;
    }

    .more-btn:hover {
        background: #333;
    }
}

/* プリント用スタイル */
@media print {
    .voice-more-button {
        display: none;
    }
}

/* CSSのみでアコーディオン機能を実装 */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.faq-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* チェックボックスを非表示 */
.faq-checkbox {
    display: none;
}

.faq-question {
    background: #f8f9fa;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #e0e0e0;
    margin: 0;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question .faq-question-title {
    margin: 0 2em !important;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

/* チェックされた時のスタイル */
.faq-checkbox:checked + .faq-question .faq-toggle {
    transform: rotate(45deg);
    color: #0056b3;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fff;
}

/* チェックされた時に回答を表示 */
.faq-checkbox:checked ~ .faq-answer {
    max-height: 200px;
    padding: 20px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #555;
    font-size: 14px;
}

/* チェックされた時のアイテム全体のスタイル */
.faq-checkbox:checked ~ .faq-question {
    background: #e7f3ff;
    border-bottom-color: #007bff;
}

.faq-item:has(.faq-checkbox:checked) {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

/* FAQレスポンシブ対応 */
@media (max-width: 767px) {
    .faq-container {
        padding: 15px;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question .faq-question-title {
        font-size: 15px;
        padding-right: 15px;
    }

    .faq-toggle {
        font-size: 20px;
        min-width: 25px;
    }

    .faq-checkbox:checked ~ .faq-answer {
        padding: 15px;
    }

    .faq-answer p {
        font-size: 13px;
    }
}

/* FAQアニメーション効果 */
.faq-item {
    animation: fadeInUp 0.5s ease-out;
}

/* FAQアクセシビリティ対応 */
.faq-question:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

.faq-question:focus .faq-toggle {
    color: #0056b3;
}

/* FAQキーボードナビゲーション */
.faq-question:focus-visible {
    background: #e7f3ff;
}

/* FAQ高コントラストモード対応 */
@media (prefers-contrast: high) {
    .faq-item {
        border-width: 2px;
    }

    .faq-question {
        background: #000;
        color: #fff;
    }

    .faq-question .faq-question-title {
        color: #fff;
    }

    .faq-toggle {
        color: #fff;
    }
}

/* FAQプリント用スタイル */
@media print {
    .faq-item {
        break-inside: avoid;
        border: 1px solid #000;
    }

    .faq-question {
        background: #f0f0f0;
    }

    .faq-checkbox:checked ~ .faq-answer {
        max-height: none;
        display: block;
    }
}

/* スムーズなアニメーションのための調整 */
.faq-answer {
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ホバー効果の改善 */
.faq-question:hover .faq-toggle {
    color: #0056b3;
}

/* フォーカス時の視覚的フィードバック */
.faq-question:focus-within {
    background: #e7f3ff;
}

/* アニメーションの最適化 */
@media (prefers-reduced-motion: reduce) {
    .faq-answer,
    .faq-toggle,
    .faq-item,
    .voice-item {
        transition: none;
    }
}


.toilet-trouble #sagyou01 img, .toilet-trouble #sagyou02 img {
	width: auto;
}

.compare-table table {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  margin: 2em auto;
  width: 90%;
  max-width: 800px;
  border-collapse: collapse;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.compare-table th {
  background-color: #f8f9fa;
  color: #333;
  font-weight: 600;
  padding: 18px 15px;
  text-align: center;
  border-bottom: 2px solid #dee2e6;
}
.compare-table th.main-head {
  background-color: #007bff;
  color: #ffffff;
  font-size: 1.1em;
}

.compare-table td {
  padding: 15px;
  text-align: center;
  color: #555;
  border-bottom: 1px solid #e9ecef;
}

.compare-table tr {
  background-color: #ffffff;
}

.compare-table tr:nth-of-type(even) {
  background-color: #f8f9fa;
}

.compare-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: #333;
}
.trust-img img {
	 width: 80%;
    height: 257px;
    object-fit: contain;
}