@charset "utf-8";
/* CSS Document */


		main{ position: relative; padding-top:  8rem;}
        @media (max-width: 768px) {main{ position: relative; padding-top: 6rem!important;}}
		
        .faq-fv {
            background-image: url("../images/company-page-fv-pc.jpg");
            background-size: cover;
            background-position: center;
            height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

		@media screen and (max-width: 736px){
            .faq-fv {
                background-image: url("../images/company-page-fv-sp.jpg");
				height: 270px;
            }
        } 

        .faq-fv::before {
            content: '';
            position: absolute;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.4);
        }
        .faq-fv-en {
            font-family: 'Inter', sans-serif;
            font-size: 4rem;
            font-weight: 800;
            color: #fff;
            line-height: 1;
            letter-spacing: 0.1em;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            position: relative;
            z-index: 10;text-align:center;
        }

		@media screen and (max-width: 736px){
            .faq-fv-en {
                font-size: 3rem;
				line-height: 0.7;
            }
        } 
        .faq-fv-jp {
            font-size: 1.25rem;
            font-weight: 400;
            color: #fff;
            margin-top: 0.5rem;
            text-shadow: 0 1px 3px rgba(0,0,0,0.5);
            position: relative;
            z-index: 10;
			text-align: center;
        }


		/*トップテキスト*/

			.faq-contents{
				padding-bottom: 3rem;
				background-color: rgb(242, 235, 222);
			}

			.faq-pad{
				padding: 0 1.2rem;
			}

			.faq-txt-wrap{
				padding-top: 5rem;
				padding-bottom: 5rem;
				margin-bottom: 6rem;
			}

		@media screen and (max-width: 736px){
			.faq-txt-wrap{
				padding-top: 3rem;
				padding-bottom: 4rem;
		}}	
		
			.faq-txt b{
				padding-right: 5px;
			}

        /* カテゴリナビ */

        .category-nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-top: 2rem;
        }
        .category-link {
            padding: 0.6rem 1.5rem;
            background: #fff;
            border: 1px solid #ddd;
            font-size: 0.95rem;
            font-weight: 600;
            border-radius: 9999px;
            transition: all 0.3s;
        }
        .category-link:hover {
            background: #a67c34;
            color: #fff;
            border-color: #a67c34;
        }

        /* 各セクションの着地位置をヘッダーの高さ分ずらす */
        #cat-service,
        #cat-payment,
        #cat-reservation,
        #cat-other {
            scroll-margin-top: 200px; /* ヘッダーの高さ(128px) + 余白 */
        }

        @media (max-width: 768px) {
            #cat-service,
            #cat-payment,
            #cat-reservation,
            #cat-other {
                scroll-margin-top: 120px; /* スマホ用ヘッダー高さ(80px) + 余白 */
            }
        }

        /* アコーディオン */
        .faq-item {
            background: #fff;
            margin-bottom: 1rem;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }
        .faq-question {
            width: 100%;
            padding: 1.5rem;
			font-size: 1.05rem;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 700;
            transition: background 0.2s;
        }
		
		@media screen and (max-width: 736px){		
		.faq-question {
			padding: 1.2rem;
		}
		.faq-question i{
			font-size: 0.9rem;
		}		
		
		}
		
        .faq-question:hover { background: #fcfcfc; }
        .faq-question::before {
            content: "Q.";
            color: #a67c34;
            margin-right: 1rem;
            font-size: 1.2rem;
        }

		.faq-question span{
			width: 100%;
			font-size:1rem;
		}

		@media screen and (max-width: 736px){		
		.faq-question span{
			width: 85%;
			font-size: 0.95rem;
			font-weight: 600;
			line-height: 1.6;
	        padding-right: 0.7rem;
		}}
	
		
        .faq-answer {
			max-height: 0;
    		overflow: hidden;
    		/* transitionを cubic-bezier にすると、より高級感のある動きになります */
    		transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    		background: #fdfdfd;
    		border-top: 0 solid #eee;
        }
        .faq-answer-inner {
            padding: 1.5rem;
            display: flex;
            line-height: 1.8;
        }
        .faq-answer-inner::before {
            content: "A.";
            color: #433f37;
            font-weight: 900;
            margin-right: 1.2rem;
            font-size: 1.2rem;
        }
        .faq-item.is-active .faq-answer {
            max-height: 500px;
            border-top-width: 1px;
        }
        .faq-item.is-active .faq-icon {
            transform: rotate(180deg);
        }
        .faq-icon { transition: transform 0.3s; color: #ccc; }

        /* セクション見出し */
        .section-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
        }
      @media screen and (max-width: 736px){
        .section-title {
            font-size: 1.2rem;
            font-weight: 600;
        }}
        .section-title::after {
            content: '';
            flex-grow: 1;
            height: 1px;
            background: #eee;
            margin-left: 1.5rem;
        }

		.faq-contact{
			padding: 5rem 1.2rem;
		}

        /* アニメーション */
        .fade-in-section { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
        .fade-in-section.is-visible { opacity: 1; transform: translateY(0); }
