/*
Theme Name: Kozato Theme
Description: 有限会社小里工業のオリジナルテーマ
Version: 1.0
Author: 
*/


@charset "UTF-8";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 16px;
}

:root {
	--main-color: #000080;
	--sub-color: #f0d330;
	--accent-color: #fffeef;
	--button-color: #f8f525;
	--border-style: 1px solid #333;
	--card-bg: #fff;
	--bg-color: #fff;
	--font-serif: "BIZ UDMincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	--font-sanserif: Lato, "BIZ UDGothic", "Noto Sans JP", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
	--font-size: calc(1em + 0.2vw);
	--font-size-link: 1em;
	--font-size-button: calc(1em + 0.4em);
}

a {
	text-decoration: none;
	font-size: var(--font-size-link);
	color: var(--main-color);
}

a:hover {
	color: var(--sub-color);
}

ul,ol {
	list-style: none;
}

body {
	font-family: var(--font-sanserif);
	font-size: var(--font-size);
	margin: 0 auto;
}

h1,h2,h3,h4 {
	font-family: var(--font-sanserif);
	font-weight: 600;
}

/* 全体のベース */
.top-header {
	width: 100%;
	z-index: 1005;
	position: fixed;
}

.top-header.fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	background-color: var(--bg-color);
	box-shadow: 0 3px 5px rgba(155, 155, 155, 0.3);
}

/* 固定ヘッダー */
.sticky-header {
	position: sticky;
	top: 0;
}

/* ヘッダーの内側 */
.header-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
	max-width: 1400px;
	width: 100%;
	margin: 10px auto 0;
	transition: all 0.3s ease;
	border-radius: 10px 10px 10px 10px;
	background-color: rgba(255, 255, 255, 0.85);
}

.header-wrapper.hide {
	opacity: 0;
	transform: translateY(-100%);
	pointer-events: none;
}

.header-wrapper .logo{
	order: 1;
}
.header-wrapper .normal-nav{
	order: 2;
}
.header-wrapper .header-contact{
	order: 3;
}

.header-wrapper .media-nav{
	order: 4;
}



/* ロゴ */
.logo img {
	height: 40px;
}

.logo-txt {
	color: var(--main-color);
}

.logo-txt a {
	color: var(--main-color);
	text-shadow: 0 0 3px var(--bg-color);
	font-size: 1.8em;
	font-weight: bold;
	display: flex;
	align-items: center;
}


/* ナビゲーション */

.nav-menu li {
	margin: 0 10px;
}

/* ハンバーガーナビゲーション */

body.menu-open {
	overflow: hidden;
}

.hamburger {
	width: 30px;
	height: 22px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
}

.hamburger span {
	height: 3px;
	background: var(--main-color);
	border-radius: 3px;
}

/* メディアナビ初期非表示 */
.media-nav {
	display: none;
}

/* 通常ナビ表示 */
.normal-nav {
	display: block;
	transition: transform 0.3s ease;
	position: relative;
	z-index: 100;
}

.header-wrapper.hide + .normal-nav {
	transform: translateY(-80px); /* ヘッダー分上に移動 */
}

/* Contact */
.top-contact {
    font-size: 1.4em;
    color: var(--main-color);
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    position: relative;
    display: flex;
    align-items: center;
}

.top-contact::before {
    content: "";
    position: absolute;
    top: 53%;
    left: -1.5em;
    transform: translateY(-50%);
    background-image: url(../img/tel.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 1.1em;
    height: 1.1em;
}

.main-nav {
    transition: top 0.3s ease;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
/*
    background-color: rgba(255, 255, 255, 0.85);
*/
    border-radius: 0 0 10px 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 20px 10px;
    justify-content: center;
    gap: 50px;
}

/* ----- top-view ----- */

.top-view {
    height: 80vh;
    width: 100%;
    padding: 0;
    position: relative;
    margin: 0 auto 50px;
}

.top-view .slide-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.top-view .slide-wrapper .slide-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1);
    z-index: 0;
    pointer-events: none;
}

/* 表示される画像：ズームしながらフェードイン */
.slide.entering {
    animation: zoomInFadeIn 5s ease-in-out forwards;
    z-index: 2;
}

/* 退場する画像：ズームしながらフェードアウト */
.slide.leaving {
    animation: zoomOutFadeOut 5s ease-in-out forwards;
    z-index: 1;
}

/* 最終状態保持 */
@keyframes zoomInFadeIn {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes zoomOutFadeOut {
    0% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        transform: scale(1.1); /* ←ここ重要！ */
    }
}

.txt-slide {
    position: absolute;
    top: 0;
    left: 10%;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}

.txt-slide.entering {
    opacity: 1;
    animation: fadeInZoom 5s ease-in-out forwards;
}

.txt-slide.leaving {
    opacity: 0;
    animation: fadeOutZoom 5s ease-in-out forwards;
}

@keyframes fadeInZoom {
    0% { opacity: 0; transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes fadeOutZoom {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.95); }
}

.top-view .slide-wrapper .slide-inner img {
    width: 100%;
    object-fit: cover;
}

.top-view div.top-txt-box {
    max-width: 1000px;
    width: 100%;
    height: 10vh;
    font-size: 2em;
    color: #fff;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 20;
    text-shadow: 0 0 3px #000080;
}

main {
    width: 100%;
    margin: 0 auto;
    background-color: var(--bg-color);
    padding: 50px 0 0;
}


/* ----- sec-header ----- */

.sec-header {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.sec-header h2 {
    position: relative;
    font-size: 1.8em;
    display: inline-block;
}

.sec-header h2.top-d:before {
    position: absolute;
    top: 50%;
    left: -1em;
    content: "";
    background-color: var(--main-color);
    width: 0.5em;
    height: 3px;
    border-radius: 10px;
}

.sec-header h2.top-d:after {
    position: absolute;
    top: 50%;
    right: -1em;
    content: "";
    background-color: var(--main-color);
    width: 0.5em;
    height: 3px;
    border-radius: 10px;
}

.span-txt {
    display: block;
    font-size: 0.6em;
    color: var(--main-color);
    letter-spacing: 0.4em;
    margin: 0 0 2px 5px;
}

/* ----- sec-1 ----- */

.sec-1 {
    width: 100%;
    height: 60vh;
    margin: 0 auto;
    padding: 10px 0;
    align-items: center;
    background-image: url(../img/sec-1-img_03.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0;
}

.sec-1 div.sec-1-txt {
    width: 100%;
    max-width: 600px;
    height: auto;
    padding: 20px;
    margin: 30px auto 0 100px;
    line-height: 1.8em;
    letter-spacing: 0.1em;
}

.sec-1 .sec-1-txt h3 {
    font-size: 1.6em;
    text-align: left;
    margin: 0 auto 20px;
    letter-spacing: 0;
}

.sec-1 .img-1 {
    max-width: 500px;
    width: 100%;
    display: block;
}

.sec-1-txt .sec-1-link {
    color: var(--bg-color);
    display: block;
    width: 200px;
    height: 50px;
    margin: 40px 10px 0 auto;
    padding: 10px;
    background-color: var(--main-color);
    border-radius: 50px;
    text-align: center;
    transition: all 0.3s ease;
}

.sec-1-txt .sec-1-link:hover {
    background-color: var(--bg-color);
    color: var(--main-color);
    box-shadow: 0 0 3px var(--main-color);
}

/* ----- sec-2 ----- */

.sec-2 {
    width: 100%;
    margin: 50px auto;
    background-image: url(../img/sec-2-img.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    place-items: center;
    gap: 10px;
    padding: 0 20px;
}

.sec-grid li {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

.sec-grid li a.mask {
    display: block;
    max-width: 350px;
    width: 100%;
    overflow: hidden;
    margin: 30px auto;
}

.sec-grid li a.mask div.txt-box {
    max-width: 350px;
    width: 100%;
    background-color: var(--bg-color);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.sec-grid li a.mask div.txt-box h3 {
    font-size: 1.4em;
    margin: 20px auto;
}

.sec-grid li a.mask div.txt-box p {
    font-size: 0.8em;
}

.sec-grid li a.mask div.txt-box span.btn {
    background-color: var(--main-color);
    display: block;
    width: 200px;
    height: 50px;
    border-radius: 50px;
    padding: 10px;
    text-align: center;
    color: var(--bg-color);
    margin: 20px auto;
    transition: all 0.3s ease;
}

.sec-grid li a.mask img {
    width: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.sec-grid li a.mask:hover img {
    transform: scale(1.05);
}

.sec-grid li a.mask:hover div.txt-box span.btn {
    background-color: var(--bg-color);
    color: var(--main-color);
    box-shadow: 0 0 3px var(--main-color);
}

/* ----- sec-3 ----- */
.sec-3 {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 0;
}

.sec-3 ul {
    max-width: 1000px;
    width: 100%;
    margin: 30px auto 0;
}

.sec-3 ul li {
    display: flex;
    justify-content: flex-start;
    gap: 50px;
    margin: 0 auto 20px;
}

.sec-3 ul time {
    display: block;
    width: 200px;
}

/* ----- aside ----- */

aside {
    background-image: url(../img/rec-img-1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}


/* ----- aside End ----- */

/* ----- sec-4 ----- */

.sec-4 {
    background-image: url(../img/contact_02.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 30px auto 0;
    padding: 0 0 0 160px;
}

.sec-4-inner {
    max-width: 600px;
    width: 100%;
    background-color: rgba(233, 233, 233, 0.4);
    border-radius: 10px;
    height: 300px;
    padding: 50px 20px 20px;
    line-height: 2em;
    text-align: center;
}

.sec-4 .link-btn {
    display: block;
    width: 200px;
    background-color: var(--main-color);
    color: #fff;
    padding: 15px;
    margin: 75px auto 0;
    border-radius: 50px;
    line-height: 1em;
    height: 50px;
    text-align: center;
    transition: all 0.3s ease;
}

.sec-4 .link-btn:hover {
    background-color: var(--bg-color);
    color: #333;
}

/* ----- Map Info ----- */

.map-info {
    display: flex;
    justify-content: stretch;
    margin: 0 auto;
}

.map-info div.dt {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 2.2em;
    color: #333;
    width: 100%;
}

.map-info div.dt dt {
    width: 250px;
    height: 250px;
    margin: 10px auto;
}

.map-info div.dt img {
    object-fit: cover;
    width: 100%;
}

.map-info div.map {
    width: 100%;
}

.map-info div.map iframe {
    display: block;
    width: 100%;
    height: 99.9%;
    border: 0;
}

/* ----- footer ----- */

footer {
    background-color: var(--main-color);
    padding: 10px 0 30px;
}

footer .site-footer-copyright p.copyright {
    display: block;
    font-size: 0.7em;
    text-align: center;
    color: #fff;
}

footer p {
    text-align: center;
    letter-spacing: 0.3em;
    color: #fff;
}

.foot-txt {
    writing-mode: vertical-rl;
}

.foot-inner {
    max-width: 800px;
    width: 100%;
    margin: 10px auto 30px;
}

.foot-inner ul {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    font-size: 0.8em;
}

.foot-inner ul li {
    border-left: 1px solid #fff;
    text-align: center;
}

.foot-inner ul li a {
    color: var(--bg-color);
}

.foot-inner ul li:last-child {
    border-right: 1px solid #fff;
}

small {
    display: block;
    text-align: center;
    color: #fff;
}

/* ----- page-top-view ----- */

.top-img-box {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.top-img-box img {
    width: 100%;
    object-fit: cover;
}

.page-top {
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: var(--main-color);
}

.page-top div.page-top-txt {
    text-align: center;
    margin: 0 auto;
    font-size: 1.6em;
    color: #fff;
}

.page-txt-box span {
    display: block;
    font-size: 0.6em;
    position: relative;
    width: 150px;
    margin: 30px 0 50px;
    z-index: 5;
}

.page-txt-box span::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.5em;
    left: 0;
    bottom: 1px;
    z-index: -1;
    background-color: var(--main-color);
}

/* ----- About ----- */

.a-sec-0 {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto 50px;
    padding: 50px 0 0;
    display: flex;
    justify-content: center;
    gap: 50px;
}

/*
.a-sec-0 img {
    width: 200px;
    height: 200px;
}
*/

.a-sec-0-txt {
    max-width: 800px;
    width: 100%;
    background-color: rgba(233, 233, 233, 0.4);
    padding: 20px;
    margin: 0 auto 20px;
    font-size: 0.9em;
}

.a-sec-0-txt p.daihyo {
    font-family: var(--font-serif);
    text-align: right;
    margin: 30px 20px 0 auto;
}


.a-sec-0-txt p.daihyo img.kozato_sign {
	width: 100%;
	height: auto;
}

.a-sec-0 .prof {
    width: 500px;
    height: auto;
}

.a-sec-0 .prof img {
    width: 100%;
    object-fit: cover;
}

.prof_img {
    animation: profzoomInFadeIn 10s ease-in-out forwards;
}

@keyframes profzoomInFadeIn {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.a-sec-1 {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 50px;
    padding: 50px 0 0;
}

.a-sec-table {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    border: none;
    border-collapse: collapse;
}

.a-sec-table tr:nth-child(odd) {
    background-color: #f2f2f2;
}

.a-sec-table th {
    padding: 20px 0 20px 20px;
    text-align: left;
}

.a-sec-table td {
    padding: 20px 0 20px 20px;
    text-align: left;
}

.enkaku-header {
    margin: 50px auto 20px;
}

.enkaku {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 50px;
    padding: 50px 20px;
}

.enkaku-table {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
}

.enkaku tr:nth-child(odd) {
    background-color: #f2f2f2;
}

.enkaku th {
    width: 12em;
    font-weight: normal;
    padding: 20px 0 20px 20px;
    text-align: left;
    display: flex;
    align-items: center;
    font-size: 0.9em;
}

.enkaku th span {
    display: block;
    width: 2.4em;
    margin: 0 0 0 1.2em;
}

.enkaku td {
    padding: 20px 10px 20px 0;
    text-align: left;
    font-size: 0.9em;
}

/* ----- Service Start ----- */
/* ----- s-sec-1 ----- */

.s-sec-0 {
    max-width: 1200px;
    width: 100%;
    margin: 50px auto;
}

.s-sec-0 .sec-0-grid {
    max-width: 1000px;
    width: 100%;
    gap: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 auto;
}

.sec-0-grid a.mask {
    display: block;
    padding: 10px;
    max-width: 180px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    border: 1px solid var(--main-color);
    transition: all 0.3s ease;
}

.sec-0-grid a.mask p {
    position: relative;
    font-size: 0.8em;
}

.sec-0-grid a.mask p::after {
    position: absolute;
    content: " ≪ ";
    transform: rotate(-90deg);
    font-size: 0.8em;
    top: 4px;
}

.sec-0-grid a.mask:hover {
    background-color: #a1c7ff;
    color: white;
}

.sec-0-grid a.mask img {
    width: 100%;
    max-width: 110px;
}

.s-sec-header {
    max-width: 1200px;
    width: 100%;
    height: 150px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-size: 1.8em;
}

.s-sec-1 {
    max-width: 1200px;
    width: 100%;
    margin: 50px auto;
}

.s-sec-1 img {
    max-width: 600px;
    width: 100%;
    margin: 20px auto;
    display: block;
}

.s-sec-1-inner {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.s-sec-1-inner .txt-box {
    background-color: #f3f3f3;
    margin: 0 auto 20px;
}

.s-sec-1-inner .yajirusi {
    display: block;
    margin: 0 auto 20px;
    width: 50px;
    height: 25px;
}

.s-sec-1-inner h3 {
    margin: 0 auto;
    padding: 10px;
    background-image: linear-gradient(90deg, var(--main-color), rgba(57, 210, 248, 1) );
    color: #fff;
}

.s-sec-1-inner p {
    max-width: 1000px;
    width: 100%;
    padding: 30px 20px;
    font-size: 0.9em;
    margin: 0 auto;
}

.txt-box-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.txt-box-grid img {
    border: 5px solid #fff;
    border-radius: 5px;
    box-shadow: 1px 1px 3px #666;
    max-width: 250px;
    width: 100%;
}

/* アニメーション定義 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 初期状態（非表示） */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* アニメーション開始時に追加されるクラス */
.animate-on-scroll.active {
    animation: fadeInUp 0.6s ease forwards;
}

/* service s-sec-3 */

.s-sec-3 {
    margin: 0 auto 50px;
}

.s-sec-3-inner {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.s-sec-3-inner p {
    padding: 30px 0;
}

.s-sec-3-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    width: 100%;
    gap: 50px;
    margin: 0 auto;
}

.case-item {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

.case-item figure img {
    width: 100%;
    object-fit: cover;
}

.case-item figcaption {
    margin: 20px auto 0;
}

.case-item h4 {
    padding: 10px;
    background-color: #dbdbdb;
    margin: 0 auto 10px;
}

.case-item ul li {
    display: flex;
    border-bottom: 1px solid #dbdbdb;
    align-items: center;
    padding: 5px 0;
    font-size: 0.9em;
}

.case-item ul li span {
    display: block;
    width: 6em;
    font-weight: bold;
    font-size: 1.1em;
}

/* service s-sec-4 */ 

.s-sec-4 {
    margin: 0 auto 30px;
}

.s-sec-4-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 0;
}

.s-sec-4-inner h3 {
    margin: 0 auto;
    padding: 10px;
    background-image: linear-gradient(90deg, var(--main-color), rgba(57, 210, 248, 1) );
    color: #fff;
}

.s-sec-4-inner p {
    padding: 20px 0;
}

.s-sec-4-inner img {
    max-width: 350px;
    width: 100%;
}

.s-sec-1-inner-2 {
    max-width: 1000px;
    width: 100%;
    margin: 20px auto 0;
}

.s-sec-1-inner-2 h3 {
    margin: 20px auto;
}

.s-sec-1-inner-2 table {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 0.9em;
    border-bottom: 1px solid #dbdbdb;
}

.s-sec-1-inner-2 .tr-title {
    border-top: 1px solid #dbdbdb;
    border-bottom: 1px solid #dbdbdb;
    text-align: left;
    background-color: #f2f2f2;
}

.s-sec-1-inner-2 table th {
    padding: 10px;
    border: 1px solid #dbdbdb;
}

.s-sec-1-inner-2 table td {
    padding: 10px;
    border: 1px solid #dbdbdb;
}

.s-sec-1-inner-2 table.s-table-2 {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 0.9em;
    border-bottom: 1px solid #dbdbdb;
}

#s-1,#s-2,#s-3,#s-4,#s-5 {
    position: relative;
    z-index: 1;
}

#s-1::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(img/s-img_02.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter:blur(1px) brightness(0.6);
    z-index: -1;
}

#s-2::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(img/s-img_03.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter:blur(1px) brightness(0.6);
    z-index: -1;
}

#s-3::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(img/s-img_04.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter:blur(1px) brightness(0.6);
    z-index: -1;
}

#s-4::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(img/s-img_05.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter:blur(1px) brightness(0.6);
    z-index: -1;
}

#s-5::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(img/s-img_06.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter:blur(1px) brightness(0.6);
    z-index: -1;
}


/* ----- Contact Start ----- */
/* ----- c-sec-1 ----- */

.c-sec-1 {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 100px;
    padding: 50px 0;
}

.c-sec-1 div {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.c-sec-table {
    max-width: 800px;
    width: 100%;
    margin: 50px auto 0;
    border: none;
    border-collapse: collapse;
}

.c-sec-table th {
    background-color: var(--main-color);
    color: var(--bg-color);
    padding: 20px 0 20px 20px;
    text-align: left;
    min-width: 100px;
}

.c-sec-table td {
    background-color: #fff;
    padding: 20px 0 20px 20px;
    text-align: left;
    min-width: 200px;
}

input[required] {
    max-width: 400px;
    width: 100%;
    background-color: rgba(233, 233, 233, 0.65);
    height: 32px;
    padding: 3px 0 3px 10px;
    border-radius: 5px;
    font-size: 24px;
    border: none;
}

textarea {
    max-width: 400px;
    width: 100%;
    background-color: rgba(233, 233, 233, 0.65);
    height: 250px;
    padding: 3px 0 3px 10px;
    border-radius: 5px;
    font-size: 24px;
    border: none;
}

.c-txt {
    max-width: 800px;
    width: 100%;
    margin: 50px auto 0;
}

.c-sec-1 .btn-1 {
    display: block;
    width: 200px;
    height: 50px;
    padding: 10px;
    color: var(--bg-color);
    background-color: var(--main-color);
    border-radius: 50px;
    margin: 50px auto 0;
    transition: all 0.3s ease-in;
    border: none;
    font-size: 1em;
    cursor: pointer;
    text-align: center;
}

.c-sec-1 .btn-1:hover {
    background-color: var(--sub-color);
    color: #333;
    box-shadow: 0 0 10px var(--sub-color);
}
