@charset "utf-8";
/*===================================================================
	faq
===================================================================*/
/* 見出し */
.faq_head {
    margin-top: 20px;
    margin-bottom: 30px;
    text-align: center;
}

/* 検索欄 */
.search_wrap {
    background-color: rgba(231, 231, 231, 0.3);
    padding: 25px;
    border-radius: 10px;
}
.search_input {
    display: flex;
    align-items: center;
}

.search_input input {
    border: none;
    border-radius: 10px;
    margin:0 20px 0 0;
    height: 100%;
    height: 45px;
}
.search_wrap button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
    width: 150px;
    height: 45px;
    border-radius: 10px;
	border:none;
}
.search_wrap button > span {
    background-image: url("../image/contents/vendor/search.png");
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: left 30%;
    padding-left: 35px;
    background-position-y: center;
}
.search_wrap .submit_wrap { flex:0 0 auto; }
.search_wrap .reset_wrap { margin-left:20px; flex:0 0 auto; }
.search_wrap .reset_wrap .reset_btn { text-decoration:underline; }
body.pc .search_wrap .reset_wrap .reset_btn:hover { text-decoration:none; }
@media (max-width: 575px){
    .search_wrap {
        padding: 15px 10px;
    }
    .search_wrap .search_input { flex-wrap:wrap; }
    .search_wrap .search_input input { margin:0 0 10px; }
	.search_wrap .submit_wrap button { width:90px; height:40px; }
}
@media (max-width: 991px) {
    .search_input input {
        padding: 5px;
    }
    .search_wrap button {
        padding: 0;
        max-width: 100px;
    }
    .search_wrap button > span {
        background-size: 14px 14px;
		padding-left:22px;
    }
}

/* カテゴリ */
.category {
    width: 220px;
    background: #fff;
    border-radius: 8px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    margin: 10px;
}

.category summary {
    padding: 12px 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    list-style: none;
    position: relative;
    user-select: none;
    background-color: #fafafa;
}

.category summary::-webkit-details-marker {
    display: none;
}

.category summary::after {
    content: "▾";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #999;
    transition: transform 0.2s ease;
}

.category[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}

.category ul {
    list-style: none;
    margin: 0;
    padding: 8px 10px 10px;
    background-color: #fafafa;
}

.category ul a {
    display: block;
    text-decoration: none;
    padding: 10px;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 6px;
    margin-top: 6px;
    font-size: 14px;
    color: #333;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}
.category ul a.active { background:#FFF8F5; color:#d71b1b; font-weight:bold; border:1px solid #d71b1b; }
.category ul li:hover {
    background: #f5f5f5;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.05);
}

/* FAQ */
.FAQ {
    background-image: url("../image/contents/vendor/LP_faqimage.png");
    background-size: cover;
}
.faq_wrap {
    flex-grow: 1;
    margin-left: 30px;
}

.faq_main {
    display: flex;
    margin-top: 30px;
}

.faq_detail {
    border-radius: 8px;
    background: #fff;
    color: white;
    width: 100%;
}

.faq_summary {
    background-color: #D71B1B;
    padding: 4px 16px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.3em;
    cursor: pointer;
    user-select: none;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
	line-height:1.3;
}

.faq_summary::marker {
    content: "";
}

.faq_summary::after {
    content: "＋";
    font-size: 24px;
    transition: none;
}

.summary_text {
    display: flex;
    align-items: center;
}

details[open] summary::after {
    content: "ー";
}

.faq-body {
    padding: 12px 16px;
    background: #fff;
    color: black;
}

.faq-body p {
    margin: 0;
    font-weight: bold;
}

.q {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    border-radius: 50%;
    background-color: white;
    color: #D71B1B;
    text-align: center;
    padding: 0 10px;
    min-width: 35px;
    min-height: 35px;
}

.faq_title {
    font-size: 1.5em;
    font-weight: 900;
    padding-left: .5em;
    margin-bottom: 1em;
    border-left: 5px solid #D71B1B;
}

@media (max-width: 991px) {
    .faq_wrap {
        margin: 0;
    }

    .faq_summary {
        font-size: 1em;
    }

    .faq_title {
        font-size: 1.2em;
    }

    .q {
        min-width: 30px;
        min-height: 30px;
    }

    .faq-body p {
        font-size: 0.9em;
    }

    .faq_summary::after {
        font-size: 18px;
    }
}


/*===================================================================
	お問い合わせ
===================================================================*/
.contact_CTA {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url("../image/contents/vendor/contact_bg.jpg");
    background-color: rgba(255, 255, 255, 0.8);
    background-blend-mode: lighten;
    background-size: cover;
    padding: 40px 0;
}

.contact_link {
    display: block;
    padding: 8px 50px;
    width: 100%;
    margin-bottom: 30px;
    margin-top: 10px;
    background-color: #F28805;
    color: white !important;
    font-weight: bold;
    font-size: 1.2em;
    text-decoration: none !important;
    border-radius: 5px;
}

.contact_link span {
    background-image: url("../image/contents/vendor/mail.png");
    background-repeat: no-repeat;
    background-size: 30px;
    padding-left: 40px;
    background-position-y: center;
}

/* お問い合わせパネル */
.contact-container.active {
    right: 0;
    z-index: 1000;
}

.contact-handle:hover {
    background-color: #e68900;
}

.contact-container {
    --handle-width: 40px;
    position: fixed;
    right: 0;
    top: 30%;
    height: 180px;
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease;
    z-index: 10;
    transform: translateX(calc(100% - var(--handle-width)));
}

.contact-panel {
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 16px;
    width: 260px;
    height: 100%;
    transition: transform 0.3s ease;
}

.contact-container.active {
    transform: translateX(0);
}

.contact-handle {
    position: relative;
    width: var(--handle-width);
    background: #F28805;
    height: 100%;
    color: white;
    font-weight: bold;
    font-size: 1.2em;
    letter-spacing: 2.5px;
    padding: 0 5px;
    padding-top: 20px;
    border-radius: 5px 0 0 5px;
    cursor: pointer;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-align: center;
    user-select: none;
    position: relative;
    z-index: 2;
    transition: background 0.2s;
}

.contact-handle::before {
    position: absolute;
    top: 6%;
    right: 11%;
    display: block;
    width: 30px;
    height: 20px;
    content: "";
    background-image: url("../image/contents/vendor/mail.png");
    background-repeat: no-repeat;
    background-size: 25px;
    background-position-y: top;
    background-position-x: center;
}

.contact-handle:hover {
    background: #ffaa00;
}

.contact-panel button {
    display: block;
    width: 100%;
    background: #ffcc00;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 10px;
}

.contact-panel button:hover {
    background: #ffaa00;
}

.contact-panel p {
    font-size: 0.9em;
    font-weight: 500;
}

.contact-panel .phone {
    font-size: 1.2em;
    font-weight: bold;
}

.contact-panel .hours {
    font-size: 0.7em;
}

.panel-form {
    display: block;
    padding: 8px 10px;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 10px;
    background-color: #F28805;
    color: white !important;
    font-weight: bold;
    text-decoration: none !important;
    border-radius: 5px;
}

.panel-form span {
    background-image: url("../image/contents/vendor/mail.png");
    background-repeat: no-repeat;
    background-size: 25px;
    padding-left: 35px;
    background-position-y: center;
}


/*===================================================================
	共通見出し
===================================================================*/
.LP_head span {
    color: red;
    font-weight: bold;
}
.LP_head h2 {
    font-weight: bold;
}
@media (max-width: 767px) {
	.LP_head h2 { font-size: 30px; }
}
@media (min-width: 768px) {
	.LP_head h2 { font-size: 40px; }
}


/*===================================================================
	LP_トップ画像
===================================================================*/
.heroimage_wrap {
    position: relative;
}

.heroimage img {
    width: 100%;
}

.heroimage_text_wrap {
    position: absolute;
    bottom: 30px;
    left:0;
	width:100%;
}

.heroimage_text_main {
    text-align: start;
    font-size: 2.4em;
    color: white;
    font-weight: bold;
    text-shadow: black 1px 0 10px;
    margin-bottom: 20px;
    line-height: 2;
}

.heroimage_text_main_item {
    display: inline-block;
    padding-left: 1em;
    text-indent: -1em;
}

.heroimage_text_main_item::before {
    content: "・";
}

.heroimage_text_desc {
    line-height: 2;
    text-align: start;
    font-size: 1.2em;
    color: white;
    font-weight: bold;
    text-shadow: black 1px 0 10px;
    margin-bottom: 30px;
}

.heroimage_text .heroimage_text_desc,
.heroimage_text .contact_link {
    margin-left: 2.4em;
}

/* ヒーロー画像テキスト部分のレスポンシブ対応 */
@media (max-width: 1200px) {
    .heroimage_wrap {
        height: 500px;
        overflow: hidden;
    }

    .heroimage {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: left center;
    }
    .heroimage_text_main {
        font-size: 2.0em;
        margin-bottom: 15px;
    }

    .heroimage_text_desc {
        font-size: 1.1em;
        margin-bottom: 25px;
    }
    .heroimage_text .heroimage_text_desc,
    .heroimage_text .contact_link {
        margin-left: 2.0em;
    }
}
@media (max-width: 991px) {
    .heroimage_wrap {
        height: 450px;
        overflow: hidden;
    }

    .heroimage_wrap img:first-child {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: left center;
    }

    .heroimage_text_wrap {
        text-align: center;
    }

    .heroimage_text_main {
        font-size: 1.6em;
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .heroimage_text_desc {
        font-size: 1.0em;
        margin-bottom: 20px;
        line-height: 1.8;
    }
    .heroimage_text .heroimage_text_desc,
    .heroimage_text .contact_link {
        margin-left: 1.6em;
    }
}
@media (max-width: 768px) {
    .heroimage_wrap {
        height: 400px;
        overflow: hidden;
    }

    .heroimage {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: left center;
    }

    .heroimage_text_main {
        font-size: 1.5em;
        margin-bottom: 12px;
        line-height: 1.5;
    }

    .heroimage_text_desc {
        font-size: 1.1em;
        margin-bottom: 18px;
        line-height: 1.7;
    }
    .heroimage_text .heroimage_text_desc,
    .heroimage_text .contact_link {
        margin-left: 1.5em;
    }
}
@media (max-width: 480px) {
    .heroimage {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: left center;
    }

    .heroimage_text_main {
        font-size: 1.4em;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .heroimage_text_desc {
        font-size: 1.1em;
        margin-bottom: 15px;
        line-height: 1.6;
    }
    .heroimage_text .heroimage_text_desc,
    .heroimage_text .contact_link {
        margin-left: 1.4em;
    }
}
@media (min-width: 576px) {
	.heroimage_text_wrap { bottom:auto; top:50%; transform:translateY(-50%); }
}
@media (min-width: 768px) {
	.heroimage_wrap .center { text-align:right; }
	.heroimage_wrap .heroimage_text { text-align:left; display:inline-block; }
}

.LP_contact {
    width: fit-content;
}
@media (max-width: 480px) {
    .LP_contact {
        max-width: 280px;
    }
}
@media (min-width: 481px) and (max-width: 767px) {
    .LP_contact {
        max-width: 300px;
	}
}
@media (max-width: 767px) {
    .LP_contact {
        text-align: center;
        padding: 12px 20px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .LP_contact {
        text-align: left;
    }
}
@media (max-width: 991px) {
    .LP_contact {
        margin: 0;
    }
}


/*===================================================================
	.benefit
===================================================================*/
.benefit .image_bento {
    width: 15%;
    position: absolute;
    top: 0;
    right: 0;
	transform:translateY(-50%);
	min-width:150px;
}
@media (max-width: 480px) {
    .benefit .image_bento {
        width: 35%;
    }
}
@media (min-width: 481px) (max-width: 767px) {
    .benefit .image_bento {
        width: 30%;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .benefit .image_bento {
        width: 25%;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .benefit .image_bento {
        width: 18%;
    }
}

.benefit_list {
    margin-top: 50px;
}
@media (max-width: 991px) {
    .benefit_list {
		gap: 30px;
		flex-direction: column;
	}
}
@media (min-width: 992px) {
    .benefit_list {
		display: flex;
		align-items: center;
        gap: 20px;
        justify-content: center;
		align-items:stretch;
    }
}

.benefit_list img {
    width: 150px;
    margin-bottom: 15px;
}

@media (min-width: 992px) {
    .benefit_list img {
        width: 200px;
        margin-bottom: 10px;
    }
}

.benefit_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #F9F9F9;
    border-radius: 10px;
}
.benefit_card span {
    margin-top: -15%;
    color: red;
    font-weight: bold;
    font-size:50px;
}
@media (max-width: 991px) {
	.benefit_card {
		padding: 25px;
		margin-top:40px;
	}
	.benefit_card span { margin-top:-70px; }
}
@media (min-width: 992px) {
    .benefit_card {
        padding: 20px;
    }
}

.benefit_card h3 {
    font-weight: bold;
    font-size:32px;
}

.benefit_detail {
    font-weight: bold;
    color: red;
    margin-bottom: 5px;
	font-size:20px;
}

.benefit_desc {
    font-weight: bold;
    color: black;
    text-align: start;
    line-height: 1.5;
}

@media (min-width: 992px) {
    .benefit_card span {
        margin-top: -18%;
    }
    .benefit_desc {
        line-height: normal;
    }
}
@media (min-width: 992px) and (max-width:1199px) {
	.benefit_detail { font-size:17px; }
}


/*===================================================================
	.service
===================================================================*/
.service { background:url(../image/contents/vendor/LP_faqimage.png) no-repeat center top / cover; }
.service .image_bento-left {
    width: 15%;
    position: absolute;
    top: 0%;
    left: 0;
	transform:translateY(-50%);
	min-width:130px;
}
.service_list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

@media (min-width: 768px) {
    .service_list {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}
.service_card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 40px 30px;
}

.service_icon {
    width: 170px;
    margin-bottom: 20px;
}

.service_card h3 {
    margin-bottom: 10px;
    font-weight: bold;
}
@media (max-width: 991px) {
	.service_card h3 { font-size:26px; }
}
@media (min-width: 992px) {
	.service_card h3 { font-size:31px; }
}

.service_card p {
    color: #333;
    line-height: 1.6;
    font-weight: bold;
	text-align:left;
}


/*===================================================================
	トップFAQ
===================================================================*/
.LP_faq_wrap {}
.morefaq {
    background-color: black;
    padding: 10px 30px;
    border-radius: 25px;
    color: white !important;
    text-decoration: none !important;
}

.morefaq span {
    background-image: url("../image/contents/vendor/arrow_right.png");
    background-repeat: no-repeat;
    padding-left: 30px;
    padding-bottom: 10px;
}


/*===================================================================
	#Achievements Slider
===================================================================*/
.Achievements .image_bento {
    width: 13%;
    position: absolute;
    top: 0;
    right: 0;
	transform:translateY(-50%);
}
@media (max-width: 480px) {
    .Achievements .image_bento {
        width: 35%;
    }
}
@media (min-width: 481px) and (max-width: 767px) {
    .Achievements .image_bento {
        width: 28%;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .Achievements .image_bento {
        width: 25%;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .Achievements .image_bento {
        width: 18%;
    }
}
.achievements-slider {
    margin: 40px 0;
    position: relative;
}

.achievement-item {
    padding:10px 15px;
	width:380px;
}
.achievement-item_unit {
    text-align: center;
	background:#F9F9F9;
	box-shadow:0 1px 8px rgba(0,0,0,0.2);
    border-radius: 8px;
	overflow:hidden;
}

.achievement-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.achievement-item .achievement-item_text {
    display: flex;
    flex-direction: column;
    align-items: center;
	justify-content:center;
	padding:20px 0;
}
.achievement-item h3 {
    font-size: 27px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
	line-height:1.3;
}
.achievement-item p {
    width: fit-content;
    font-size: 19px;
    font-weight: bold;
    line-height: 1.4;
    color: white;
    background: #D71B1B;
    padding: 4px 15px;
    border-radius: 20px;
    display: inline-block;
}
.achievement-item p + p { margin-top:8px; }

/* Slick slider custom styles */
.achievements-slider .slick-dots {
    bottom: -40px;
}

.achievements-slider .slick-dots li button:before {
    font-size: 12px;
    color: #6C2C33;
}

.achievements-slider .slick-dots li.slick-active button:before {
    color: #6C2C33;
}

/* Prev/Next buttons positioned inside */
.achievements-slider .slick-prev,
.achievements-slider .slick-next {
    z-index: 15;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.8) !important;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
}

.achievements-slider .slick-prev:hover,
.achievements-slider .slick-next:hover {
    background: rgba(0, 0, 0, 1);
}

.achievements-slider .slick-prev {
    left: 60px;
}

.achievements-slider .slick-next {
    right: 60px;
}
.achievements-slider .slick-prev:before,
.achievements-slider .slick-next:before {
    color: white;
    font-size: 16px;
    line-height: 40px;
    width: 40px;
    height: 40px;
	content:"";
	display:inline-block;
    background-size: 10px;
	background-repeat:no-repeat;
	background-position:center center;
	opacity:1;
}
.achievements-slider .slick-prev:before {
    background-image: url("../image/contents/vendor/icon_left2.png") !important;
}

.achievements-slider .slick-next:before {
    background-image: url("../image/contents/vendor/icon_right2.png") !important;
}

/* レスポンシブ対応 */
@media (max-width: 575px) {
	.achievement-item { width:300px; }
	.achievement-item h3 { font-size:20px; }
	.achievement-item p { font-size:1em; }
}
@media (max-width: 1200px) {
    .achievements-slider .slick-prev {
        left: 30px;
    }
    .achievements-slider .slick-next {
        right: 30px;
    }
    .achievements-slider .slick-prev,
    .achievements-slider .slick-next {
        width: 35px;
        height: 35px;
    }
    .achievements-slider .slick-prev:before,
    .achievements-slider .slick-next:before {
        font-size: 14px;
        line-height: 35px;
        width: 35px;
        height: 35px;
    }
}


/*===================================================================
	#Flow Cards
===================================================================*/
.Flow .image_bento-left {
    width: 15%;
    position: absolute;
    top: 0%;
    left: 0;
	transform:translateY(-50%);
	min-width:150px;
}
.flow_cards {
    gap: 5px;
    margin-top: 40px;
}
.flow_cards .flow_card {
    background: #F7F7F7;
    border-radius: 15px;
    padding: 15px 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 768px) {
	.flow_cards {
		display: flex;
		align-items: stretch;
		gap: 5px;
		flex-wrap: wrap;
	}
	.flow_cards .flow_card {
		flex:1 0 0;
	}
}

.flow_cards .flow_card .flow_number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: red;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 40px;
}

.flow_cards .flow_card .flow_icon {
    margin: 20px 0 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flow_cards .flow_card .flow_icon img {
    width:103px;
}
.flow_cards .flow_card .flow_text { display:flex; align-items:center; justify-content:center; }
.flow_cards .flow_card h3 > * { display:block; }
.flow_cards .flow_card h3 .main {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 0;
}
.flow_cards .flow_card h3 .sub {
    font-size: 12px;
    font-weight: bold;
    color: #333;
    margin: 0;
	line-height:1.3;
}

.flow_cards .flow_arrow {
    color: gray;
    font-size: 12px;
    font-weight: bold;
    margin: 0 5px;
}
@media (max-width: 575px){
    .flow_cards .flow_card h3 .main { font-size:20px; }
}
@media (min-width: 576px) and (max-width: 767px){
    .flow_cards .flow_card h3 .main {
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    .flow_cards {
        gap: 20px;
    }
    .flow_card {
        padding: 25px 20px;
    }
    .flow_cards .flow_arrow { text-align:center; margin:15px 0 20px; }
    .flow_cards .flow_arrow span {
        transform: rotate(90deg);
        font-size: 18px;
		display:inline-block;
    }
	.flow_cards .flow_card .flow_icon img {
        width: 100px;
    }
    .flow_number {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}
@media (min-width: 768px) {
	.flow_cards .flow_arrow {
		display:flex;
		align-items:center;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.flow_cards .flow_card { padding:25px 10px; }
	.flow_cards .flow_card h3 .main { font-size:1em; }
	.flow_cards .flow_arrow { font-size: 15px; }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .flow_cards .flow_card {
        padding: 25px 15px;
    }
    .flow_cards .flow_arrow {
        font-size: 20px;
    }
}
@media (min-width: 768px) and (max-width: 1200px) {
    .flow_cards {
        gap: 10px;
    }
}
