@charset "utf-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
 
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
    color: color: rgb(105, 104, 104);
	width:100%;
	overflow-x: hidden !important;
}
ol, ul {
	list-style: none;
}
a {
    text-decoration: none !important;
    color: #212529 !important;
}
a:hover{
opacity:0.8;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* ==============================
ここから
============================== */
.sp {
	display:none;
}
img {
	vertical-align: bottom;
}
.header {
    display: flex;
    width: 70%;
    margin: 1rem auto;
	justify-content: space-between;
	align-items: center;
}
.header img {
    width: 36%;
    height: fit-content;
}
.header a img {
    width: 100%;
}
.header a {
    width: 30%;
}
/* ==============================
CTA
============================== */
.cta {
    background-color: #d2f5ff;
    padding: 5rem 0;
}
.cta-relative {
    position: relative;
    width: 50%;
    margin: auto;
}
.btn {
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    width: 90%;
    margin: auto;
}
.btn-flex {
    display: flex;
    margin-top: 0.3rem;
    justify-content: space-between;
}
.btn-flex a {
    width: 49%;
}
/* ==============================
事例スライダー
============================== */
/* セクション - 背景画像＆中央寄せ */
#case,
#voice,
#voicesp {
    padding: 60px 20px;
    background: url('https://kirakirakko-tochigi.com/lp05/wp-content/uploads/2025/12/case-back.webp') no-repeat center center;
    background-size: cover;

    /* 中身（.voices）を中央寄せ */
    display: flex;
    justify-content: center;
}

/* スライダーコンテナ */
.voices {
    width: 100%;
    max-width: 50%;          /* PCでもスマホでもこの幅の中に収める */
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    box-sizing: border-box;
}

/* slick が .slider を生成するので、これも中央寄せ用に幅を指定 */
.slider {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* スライド画像 */
.slider .slide-item {
    padding: 0 10px;
}

.slider .slide-item img {
    width: 100%;
    height: auto;
}

/* 矢印ボタン共通 */
.slick-prev,
.slick-next {
    width: 50px;
    height: 50px;
    z-index: 10;

    /* 縦位置：常にスライダーの中央に */
    top: 50%;
    transform: translateY(-50%);
}

/* 左右位置（PC基準） */
.slick-prev {
    left: -65px;
}

.slick-next {
    right: -65px;
}

/* デフォルト矢印を消す */
.slick-prev:before,
.slick-next:before {
    content: '';
}

/* カスタム矢印画像 */
.slick-prev {
    background: url('https://kirakirakko-tochigi.com/lp05/wp-content/uploads/2025/12/left.webp') no-repeat center center;
    background-size: contain;
}

.slick-next {
    background: url('https://kirakirakko-tochigi.com/lp05/wp-content/uploads/2025/12/right.webp') no-repeat center center;
    background-size: contain;
}

.slick-prev:hover,
.slick-next:hover {
    opacity: 0.8;
}

/* ドットナビ非表示（不要なら） */
.slick-dots {
    display: none !important;
}
.slick-slide img {
    width: 100% !important;
}
/* ==============================
よくある質問
============================== */
#question {
    background-color: #d6faff;
	padding-bottom: 4rem;
}
.qa-7 {
    max-width: 50%;
	margin: auto;
    margin-bottom: 25px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 4px rgb(0 0 0 / 2%), 0 2px 3px -2px rgba(0 0 0 / 5%);
    background-color: #007dce;
}

.qa-7 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.qa-7 summary::before,
.qa-7 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.qa-7 summary::before {
    color: #fff;
    content: "Q";
}

.qa-7 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    content: '';
    transition: transform .5s;
}

.qa-7[open] summary::after {
    transform: rotate(225deg);
}

.qa-7 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
	background-color: #fff;
	padding-top: 24px;
}

.qa-7[open] p {
    transform: none;
    opacity: 1;
}
.qa-7 p::before {
    color: #ff2129;
    line-height: 0.7;
    content: "A";
}
.red {
    color: #ff2129;
    font-size: 1.1rem;
}
.qa-7 h6 {
    background-color: #fff;
    padding: 2rem;
    font-size: 0.9rem;
    line-height: 1.5rem;
}
/* ==============================
お問い合わせフォーム
============================== */
#contact {
    background-color: #9ae3ff;
    padding-bottom: 5rem;
}
.hp-form {
    width: 40%;
    margin: auto;
    background-color: #fff;
    padding: 2rem;
    border-radius: 25px;
}
.hp-form table {
    width: 100%;
}
.trtr {
    width: 100%;
	display: block;
}
.tdtd {
    width: 100%;
    display: block;
}
.thth,.thth2 p {
    display: flex;
    justify-content: space-between;
    width: 100%;
	font-weight:bold;
	margin-bottom: 10px;
	margin-top: 30px;
}
.thth span,.thth2 span {
    color: #e30e03;
    font-weight: bold;
	font-size: 0.7rem;
}
.tdtd input,.tdtd textarea {
    width: 100%;
	border: 2px solid #d5d5d5;
    border-radius: 6px;
    background-color: #efefef;
}
.thth2 {
    position: relative;
}
.p {
    position: absolute;
    top: 50%;
    font-weight: bold;
}
.hp-form-btn {
    text-align: center;
}
.hp-form-btn input {
    width: 50%;
    margin: auto;
    padding: 1rem 0;
    margin-top: 2rem;
    margin-left: 3rem;
	border: 2px solid black;
	font-weight: bold;
    font-size: 1.5rem;
	box-shadow: 0px 2px 2px 0px rgb(0 0 0 / 50%), inset 0px -3px 6px -2px rgb(0 0 0 / 30%);
    background: linear-gradient(#ffc414, #fdf0c8);
}
.thth p {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
/* ==============================
プライバシーポリシー
============================== */
.privacy-area {
    width:100%;
/* 	overflow: scroll; */
    height: 150px;
	overflow-x: hidden !important;
	border: 3px solid #ebebeb;
    background-color: #fafafa;
	margin-top:2rem;
}
.privacy-area h3 {
    text-align: center;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 1rem;
}
.privacy-area h4 {
    font-weight: bold;
    padding: 1.5rem 0 0.5rem 0;
}
.privacy-area p {
    line-height: 1.5rem;
}
.doui {
    text-align: center;
    margin-top: 1.5rem;
}
.new-btn {
    text-align: center;
    margin-top: 1rem;
    margin-left: -1rem;
}
#company td a {
    color: #212529 !important;
}
#company th a {
    color: #212529 !important;
}
.footer {
    text-align: center;
    margin-top: 5rem;
}
.kasou-title {
    background-color: #20c000;
    padding: 3rem 0;
    text-align: center;
    font-size: 2rem;
    color: #fff;
}
.news {
    width: 80%;
    margin: auto;
    margin-top: 4rem;
}
.blog-wrap:first-child {
	border-top: 1px solid #dbdbdb;
}
.blog-wrap {
    padding: 1rem;
    border-bottom: 1px solid #dbdbdb;
}
.home-btn {
    position: fixed;
    bottom: 3%;
    right: 3%;
}
/* ==============================
ラストフッター
============================== */
#company {
    width: 100%;
    background-color: #000000;
	padding: 1rem 0;
	font-size: 0.8rem;
}
#company table {
    width: 30%;
    margin: auto;
}
#company th {
    padding-top: 0.7rem;
	font-weight:bold;
}
#company td {
	font-weight:bold;
}
small {
	text-align:center;
	display: flow-root;
    padding-top:1rem;
	font-weight:bold;
}
#company p {
	position:absolute;
	z-index:-1;
}
#company tbody,tbody a,footr {
    color: #fff !important;
}
#company td a {
    color: #ffffff !important;
}
/* ==============================
フローティング
============================== */
/* フローティングボタン（スマホのみ） */
.floating-btn {
    position: fixed;
    bottom: -120px;   /* ← 最初は画面外に隠す */
    left: 0;
    width: 100%;
    display: flex;
    justify-content: end;
    z-index: 9999;
    transition: bottom 0.4s ease;
}

.floating-btn.active {
    bottom: 0;       /* ← 表示される位置 */
}

.floating-btn.hidden {
    bottom: -120px;   /* ← 最後は再び非表示 */
}

.floating-btn .float-item {
    width: 25%;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.floating-btn .float-item img {
    width: 100%;
    height: auto;
    margin-bottom: 3px;
}