/*
Theme Name: KOWA HOMES 2026
Author: kawatokio
Description: KOWA HOMES 2026オリジナルテーマ
Version: 1.0
Text Domain: KOWA HOMES 2026

*/

@charset "UTF-8";

/* =================================
	base
================================= */

body {
	margin: 0;
	padding: 0;
	color: #353535;
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 2;
	-webkit-text-size-adjust: 100%;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

a {
	color: inherit;
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	opacity: 0.7;
}

ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	line-height: 1.6em;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

hr {
  color: #000;
  opacity: 1;
}

.section_narrow hr{
	color: #A1A1A1;
}

.br_sp{
	display: none;
}
@media screen and (max-width: 767px) {
	.br_sp{
		display: block;
	}
}

.text_white {
	color: #fff;
}

.text_black {
	color: #353535;
}

.text_grey{
	color: #A1A1A1;
}

.text_blue{
	color: #0056ab;
}

.text_green{
	color: #72BF44;
}

.bg_grey{
	background: #f5f5f5;
}

.bg_white{
	background: #fff;
}

.bg_blue{
	background: #e0e4f460;
}

.bg_dark {
	background: rgba(53, 53, 53, 0.5);
}

.bg_light {
	background: rgba(255, 255, 255, 0.8);
}

.bg_black{
	background: #353535;
}

.border_grey{
	border: 2px solid #f5f5f5;
}

.border_black{
	border: 1px solid #353535;
}

.border_green{
	border: 1px solid #72BF44;
}

/* =================================
	common
================================= */
.container {
	max-width: 1200px;
}

.section {
	padding: 100px 0;
}

.section_title {
	display: flex;
	align-items: flex-end;
	gap: 0.5em;
	margin-bottom: 0.5em;
	font-family: "Balthazar", serif;
	font-size: 50px;
	font-weight: 400;
}

.section_title_center {
	justify-content: center;
}

.section_title span {
	font-family: "Shippori Mincho", serif;
	font-size: 80px;
	font-weight: 400;
	line-height: 1;
}

.gothic {
	font-family: "Noto Sans JP", sans-serif;
}

/* 狭いセクション */
.section_narrow .container {
	max-width: 900px;
}

.section_narrow_works .container {
	max-width: 800px;
}

/* アイコン タイトル */
.icon_title {
	display: flex;
	align-items: center;
	gap: 10px;
}

.icon_title img {
	width: 24px;
	height: 24px;
	display: block;
	object-fit: contain;
	flex-shrink: 0;
}
/* =================================
	section link
================================= */

.section_link {
	display: flex;
	justify-content: flex-end;
	margin-top: 60px;
}

.arrow_link {
	display: inline-flex;
	align-items: center;
	gap: 30px;
	padding-bottom: 10px;
	border-bottom: 1px solid #131313;
	color: #131313;
}

.arrow_link_text {
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.08em;
	line-height: 1;
}

.arrow_link_icon {
	display: inline-block;
	font-size: 18px;
	line-height: 1;
	transition: 0.3s;
}

.arrow_link:hover {
	opacity: 1;
}

.arrow_link:hover .arrow_link_icon {
	transform: translateX(5px);
}

@media screen and (max-width: 767px) {
	.section_link {
		margin-top: 40px;
	}
	.arrow_link {
		gap: 20px;
		padding-bottom: 8px;
	}
	.arrow_link_text,
	.arrow_link_icon {
		font-size: 16px;
	}
}

/* =================================
	bg image section
================================= */

.bg_img {
	position: relative;
}

.bg_img_overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.35);
	z-index: 1;
}

.bg_img_overlay_light {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.8);
	z-index: 1;
}

.bg_img_image img {
	width: 100%;
	height: auto;
	display: block;
}

.bg_img_content {
	position: absolute;
	inset: 0;
	z-index: 10;
}

.bg_img_content_inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	min-height: 100%;
	padding-left: 5vw;
}


.bg_img_text {
	color: #fff;
	line-height: 2;
	letter-spacing: 0.08em;
}

.bg_img_text_black {
	color: #353535;
	line-height: 2;
	letter-spacing: 0.08em;
}

.bg_img .section_link {
	justify-content: flex-start;
	margin-top: 60px;
}

.bg_img .section_link_center {
	justify-content: center;
	margin-top: 60px;
}

.bg_img .arrow_link {
	border-bottom: 1px solid #fff;
	color: #fff;
}

.bg_img .arrow_link_black {
	border-bottom: 1px solid #353535;
	color: #353535;
}

@media screen and (max-width: 767px) {
	.bg_img_content_inner {
		padding: 60px 20px;
	}
	.bg_img_text {
		font-size: 16px;
		line-height: 1.8;
	}
	.bg_img_text_black {
		font-size: 16px;
		line-height: 1.8;
	}
	.bg_img .section_link {
		margin-top: 40px;
	}
}

/* =================================
	header
================================= */
:root {
	--header_height: 90px;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	background: #ffffffcc;
	border-bottom: 1px solid #f5f5f5 ;
}

.header_inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: var(--header_height);
	padding: 0 40px;
}

.header_logo  {
	width: 300px;
}

@media screen and (max-width: 767px) {
	:root {
		--header_height: 70px;
	}
	.header_logo {
		width: 220px;
	}
	.header_inner {
		padding: 0 20px;
	}
}

/* =================================
	menu
================================= */

.header_nav_list {
	display: flex;
	gap: 40px;
}

.header_nav_list a {
	letter-spacing: 0.1em;
}

.nav-switch {
	position: relative;
	display: inline-block;
	height: 1.5em;
	overflow: hidden;
	text-decoration: none;
}

.nav-switch span {
	display: block;
	transition: .3s;
}

.nav-switch .ja {
	transform: translateY(100%);
}

.nav-switch:hover .en {
	transform: translateY(-100%);
}

.nav-switch:hover .ja {
	transform: translateY(-100%);
}

.pc_only {
	display: block;
}

.sp_only{
	display: none !important;
}


@media screen and (max-width: 767px) {
	.pc_only {
		display: none;
	}
	.sp_only{
		display: block !important;
	}
	.header_inner {
		padding: 15px;
	}
	.header_logo  {
		width: 200px;
	}
}

/* =================================
	hamburger
================================= */

.hamburger {
	position: relative;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	cursor: pointer;
	z-index: 1100;
}

.hamburger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: #353535;
	transition: 0.3s;
}

.hamburger span:nth-child(1) {
	top: 9px;
}

.hamburger span:nth-child(2) {
	top: 19px;
}

.hamburger span:nth-child(3) {
	top: 28px;
}

/* active */
.hamburger.active span:nth-child(1) {
	transform: rotate(45deg);
	top: 19px;
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg);
	top: 19px;
}

/* 	drawer */
.drawer {
	position: fixed;
	top: 0;
	padding: 0 30PX;
	right: -100%;
	height: 100vh;
	background: rgba(255, 255, 255, 0.7);
	z-index: 999;
	transition: 0.4s;
}

.drawer.active {
	right: 0;
}

.drawer_nav {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.drawer_nav_list {
	text-align: center;
}

.drawer_nav_list li + li {
	margin-top: 30px;
}

.drawer_nav_list a {
	letter-spacing: 0.08em;
}

.sp_only {
	display: block;
}

@media screen and (max-width: 767px) {
	.drawer{
		padding: 0 20px;
	}
	.hamburger{
		margin-top: 10px;
	}
}

/* =================================
	パンくずリスト breadcrumb
================================= */

.breadcrumb_area {
	padding: 15px 0 10px;
	background: #f5f5f5;
}

#land_purchase .breadcrumb_area {
	padding: 15px 0 10px;
	background: #fff;
}

.breadcrumb ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.breadcrumb li {
	color: #666;
}

.breadcrumb li:not(:last-child)::after {
	content: ">";
	margin: 0 10px;
	color: #999;
}

.breadcrumb a {
	color: #666;
	text-decoration: none;
	transition: 0.3s;
}

.breadcrumb a:hover {
	opacity: 0.7;
}

/* =================================
	topページ main visual
================================= */

.mv {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.mv_inner {
	position: relative;
	z-index: 10;
	display: flex;
	align-items: center;
	height: 100vh;
}

.mv_title {
	color: #fff;
	font-family: "Shippori Mincho", serif;
	font-size: 2em;
	font-weight: 400;
	line-height: 1.6;
}

.mv_title span {
	display: inline-block;
	padding: 20px 30px;
	background: rgba(53, 53, 53, 0.5);
}

.mv_video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
}

.sp_video {
	display: none;
}
@media screen and (max-width: 767px) {
	.mv_title{
		font-size: 1.3em;
	}
	.mv_title span {
		padding: 10px 15px;
	}
}

/* =================================
	spec
================================= */

.spec{
	margin-top: 30px;
}

.spec_item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.spec_item_image img {
	display: block;
	width: 180px;
	height: auto;
}

.spec_item_title {
	width: 180px;
	margin-top: 1em;
	padding-bottom: 15px;
	border-bottom: 1px solid #222;
	line-height: 1;
}

.spec_item_text {
	width: 180px;
	margin-top: 0.5em;
	font-size: 0.8em;
	line-height: 1.4;
}

@media screen and (max-width: 767px) {
	.spec_item_title {
		margin-top: 20px;
		font-size: 20px;
	}
}

/* =================================
	topics
================================= */
.topics {
	padding: 120px 0;
}

.topics_container {
	max-width: 900px;
}

.topics_list {
	margin-top: 30px;
	border-top: 1px solid #d8d8d8;
}

.topics_item {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 40px;
	padding: 35px 0;
	border-bottom: 1px solid #d8d8d8;
}

.topics_date {
	font-size: 0.8em;
	letter-spacing: 0.08em;
	color: #666;
}

.topics_title {
	font-weight: 500;
	line-height: 1.6;
}

.topics_text {
	font-size: 0.9em;
	line-height: 2;
}

@media screen and (max-width: 767px) {
	.topics {
		padding: 80px 0;
	}
	.topics_list {
		margin-top: 50px;
	}
	.topics_item {
		grid-template-columns: 1fr;
		gap: 15px;
		padding: 25px 0;
	}
	.topics_title {
		margin-bottom: 10px;
	}
	.topics_text {
		line-height: 1.8;
	}
}

/* =================================
	STORYページ
================================= */

.full_section {
	position: relative;
	height: 100vh;
	overflow: hidden;
}

.full_section .container-fluid {
	padding-right: 0;
	padding-left: 0;
}

.full_section_image,
.full_section_image picture,
.full_section_image img {
	width: 100%;
	height: 100%;
}

.full_section_image img {
	display: block;
	object-fit: cover;
}

.full_section_overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.overlay_dark {
	background: rgba(53, 53, 53, 0.8);
}

.overlay_light {
	background: rgba(255, 255, 255, 0.8);
}

.full_section_content {
	position: absolute;
	inset: 0;
	z-index: 10;
}

.full_section_inner {
	display: flex;
	align-items: center;
	height: 100%;
}

.position_left {
	justify-content: flex-start;
}

.position_center {
	justify-content: center;
	text-align: center;
	flex-direction: column;
	gap: 30px;
}

.position_right {
	justify-content: flex-end;
}

.full_section_box {
	width: min(55vw, 780px);
	box-sizing: border-box;
	padding: 50px 5vw;
}

.position_left .full_section_box {
	padding-left: min(12vw, 220px);
}

.position_right .full_section_box {
	padding-right: min(12vw, 220px);
}

.full_section_title {
	margin-bottom: 30px;
	font-family: "Balthazar", serif;
	font-size: clamp(48px, 6vw, 96px);
	line-height: 1;
	letter-spacing: 0.08em;
}

.full_section_text {
	line-height: 2;
	letter-spacing: 0.08em;
}

.half_visual_image {
	height: 100vh;
	margin-left: 25vw;
}

.half_visual_image_right {
	height: 100vh;
	margin-left: 35vw;
}

.half_visual_image_left {
	height: 100vh;
	margin-right: 35vw;
}

.half_visual_image,
.half_visual_image_right,
.half_visual_image_left, img {
	height: 100%;
	width: auto;
	display: block;
	object-fit: contain;
}

.text_large {
	font-size: 1.8em;
	line-height: 2;
}

/* 	scroll */
.scroll_down {
	position: absolute;
	left: 50%;
	bottom: 40px;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	z-index: 20;
}

.scroll_text {
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.scroll_icon {
	position: relative;
	display: block;
	width: 60px;
	height: 18px;
	animation: scrollArrow 1.8s infinite;
}

.scroll_icon::before,
.scroll_icon::after {
	content: "";
	position: absolute;
	top: 0;
	width: 32px;
	height: 2px;
	background: currentColor;
}

.scroll_icon::before {
	left: 0;
	transform: rotate(15deg);
	transform-origin: left center;
}

.scroll_icon::after {
	right: 0;
	transform: rotate(-15deg);
	transform-origin: right center;
}

/* animation */
@keyframes scrollArrow {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(8px);
	}
	100% {
		transform: translateY(0);
	}
}

@media screen and (max-width: 960px) {
	.half_visual_image {
		margin-left: 0;
		margin-right: 20vw;
	}
}

@media screen and (max-width: 767px) {
	.full_section_inner {
		padding: 0 ;
	}
	.full_section_title {
		margin-bottom: 20px;
		font-size: 42px;
	}
	.full_section_text {
		line-height: 1.8;
	}
	.scroll_down {
		bottom: 25px;
	}
	.full_section_box {
		width: calc(100% - 70px);
		padding: 30px 10px ;
	}
	.full_section_title {
		margin-bottom: 20px;
		font-size: 42px;
	}
	.position_left .full_section_box {
		padding-left: 10px;
	}
	.position_right .full_section_box {
		padding-right: 10px;
	}
	.text_large {
		font-size: 1.3em;
		line-height: 5;
	}

}

/* =================================
	固定page header
================================= */

.page_header {
	position: relative;
	overflow: hidden;
	padding-top: var(--header_height);
}

.page_header_image,
.page_header_image picture,
.page_header_image img {
	width: 100%;
	height: 100%;
}

.page_header_image img {
	display: block;
	object-fit: cover;
}

.page_header_overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.25);
	z-index: 1;
}

.page_header_content {
	position: absolute;
	inset: 0;
	z-index: 2;
}

.page_header_inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}

.page_header_text {
	font-size: 20px;
	color: #fff;
}

@media screen and (max-width: 767px) {
	.page_header {
		height: 50vh;
		min-height: 350px;
	}
	.page_header_text {
		font-size: 16px;
	}
}

/* =================================
	会社概要
================================= */
.company {
	padding: 120px 0;
}

.company_container {
	max-width: 900px;
}

.company_list {
	margin-top: 30px;
}

.company_item {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 40px;
	padding: 35px 0;
	align-items: center;
	border-bottom: 1px solid #d8d8d8;
}

.company_item:last-child {
	border-bottom: none;
}

@media screen and (max-width: 767px) {
	.company {
		padding: 80px 0;
	}
	.company_list {
		margin-top: 50px;
	}
	.company_item {
		grid-template-columns: 1fr;
		gap: 15px;
		padding: 25px 0;
	}
}


/* =================================
	Q&A
================================= */
.faq_wrap{
	max-width:900px;
	margin:0 auto;
}
@media screen and (max-width: 980px) {
	.faq_wrap {
		margin: 0 20px;
	}
}

.faq_accordion .accordion-item{
	border:none;
	border-bottom:1px solid #ddd;
	margin-bottom:1.5rem;
}

.faq_accordion .accordion-button{
	background:none;
	box-shadow:none;
	padding:0 0 1.5rem;
	align-items:center;
}

.faq_accordion .accordion-button:not(.collapsed){
	background:none;
	color:inherit;
}

.faq_q,
.faq_a{
	width:48px;
	height:48px;
	border-radius:50%;
	display:flex;
	align-items:center;
	justify-content:center;
	color:#fff;
	font-weight:700;
	flex-shrink:0;
}

.faq_q{
	background:#005bac;
	margin-right:20px;
}

.faq_a{
	background:#333;
	margin-right:20px;
}

.faq_question{
	font-size:1.4rem;
	font-weight:500;
	line-height:1.6;
}

@media screen and (max-width: 767px) {
	.faq_question{
		font-size: 1.2em;
	}
}

.faq_answer_wrap{
	display:flex;
	align-items:flex-start;
}

.faq_answer{
	line-height:2;
	color:#555;
	padding-top:0.5rem;
}

/* Bootstrap矢印 */
.faq_accordion .accordion-button::after{
	width:2rem;
	height:2rem;
	background-size:2rem;
}


/* =================================
	お問い合わせ
================================= */
.contact-form, contact-confirm{
	margin: 0 auto;
	max-width: 900px;
}

.required-badge{
	display:inline-block;
	margin-left:10px;
	padding:0 10px;
	background:#D4183D;
	color:#fff;
	font-size:12px;
	border-radius:4px;
	font-weight:700;
}

.contact-form .form-label{
	display:block;
	font-size:1rem;
}

.contact-form .form-control,
.contact-form .form-select{
	height:56px;
	background:#fff;
	border:1px solid #ccc;
	border-radius:4px;
}

.contact-form textarea.form-control{
	height:auto;
	min-height:220px;
}

.privacy-box{
	background:#f5f5f5;
}

.contact-form .btn_send,
.contact-confirm .btn_send{
	background-color: #0056A8;
	color: #fff;
	min-width:320px;
	font-size:1.1rem;
	font-weight:700;
	padding:20px;
}

.btn_send:hover{
	background: #0056A877;
}

.btn_back{
	background:#fff;
	border:1px solid #0056A8;
	color:#0056A8;
	min-width:320px;
	font-size:1.1rem;
	font-weight:700;
	padding:20px;
	transition:.3s;
}

.btn_back:hover{
	background:#0056A877;
	color:#fff;
}

.contact-form .form-select{
	background-image: var(--bs-form-select-bg-img);
	background-repeat: no-repeat;
	background-position: right .75rem center;
	background-size: 16px 12px;
	padding-right: 2.25rem;
}

@media (max-width: 767px) {
	.btn_send {
		margin-top: 10px;
	}
}

/* =================================
   土地の買取について
================================= */

.land_purchase {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 120px;
    padding-bottom: 180px;
}

.land_purchase_img {
    display: block;
    width: 100%;
    margin-bottom: -280px;
}

/* タブレット */
@media (max-width: 991.98px) {
    .land_purchase {
        padding-top: 80px;
        padding-bottom: 120px;
    }
    .land_purchase_img {
        margin-bottom: -180px;
    }
}

/* スマホ */
@media (max-width: 575.98px) {
    .land_purchase {
        padding-top: 40px;
        padding-bottom: 60px;
    }
    .land_purchase_img {
        margin-bottom: -80px;
    }
}

.btn-green {
    background-color: #13ae67;
    border-color: #13ae67;
    color: #fff;
    border-radius: 2em;
    transition: 0.3s;
}

.btn-green:hover {
    background-color: #13ae67aa;
    border-color: #13ae67aa;
    color: #fff;
}

/* =================================
	施工例一覧
================================= */

.works_img_wrap {
	position: relative;
}

.works_img_wrap img {
	display: block;
	width: 100%;
	height: auto;
}

.works_img_wrap .section_link {
	position: absolute;
	right: 30px;
	bottom: 30px;
	z-index: 10;
}

.works_img_wrap .arrow_link {
	border-bottom: 1px solid #fff;
	color: #fff;
}


/* =================================
	施工例一覧singleページ
================================= */
.single_nav {
	display: grid;
	grid-template-columns: repeat(3, 170px);
	justify-content: space-between;
}

.single_nav_link {
	height: 60px;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;

	background: #fff;
	border: 2px solid #353535;
	border-radius: 4px;

	text-decoration: none;

	transition: .3s;
}

.single_nav_link:hover {
	background: #f5f5f5;
	color: #353535;
}

.single_nav_arrow {
	font-size: 1.2rem;
	line-height: 1;
}

@media (max-width: 767px) {
	.single_nav {
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 0 1rem;
	}
}

/* ギャラリー */
.works_carousel img {
	width: 100%;
	height: 600px;
	object-fit: cover;
}

/* =================================
	singleページ
================================= */

/* =================================
	WORKS&ON SALE
================================= */

.works_section{
	position: relative;
	padding-bottom: 80px;
}

.works_on_sale{
	position: absolute;
	left: 50%;
	bottom: 10px;
	transform: translateX(-50%);
	z-index: 10;
	background: #353535ee;
	color: #fff;
	text-align: center;
	padding: 20px 30px;
	width: 600px;
}

.works_on_sale .section_title{
	margin-bottom: 0;
}

@media screen and (max-width: 767px) {
	.works_on_sale{
		width: 90%;
	}
	.works_on_sale .section_title{
		font-size: 1.8em;
	}

}

/* =================================
	footer
================================= */

.footer {
	padding: 100px 0 40px;
}

.footer_nav {
	display: grid;
	grid-template-columns: 120px 1fr 220px;
	gap: 80px;
	margin-bottom: 100px;
}

.footer_nav_center {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

/* title */
.footer_nav_title a {
	color: #555;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.06em;
	line-height: 1.6;
}
/* 2 column */
.footer_nav_main {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
}

.footer_nav_list li + li {
	margin-top: 22px;
}

.footer_nav_list a {
	color: #555;
	font-size: 15px;
	line-height: 1.8;
	letter-spacing: 0.04em;
}

/* home */
.footer_nav_home a {
	font-size: 30px;
	font-family: "Balthazar", serif;
	letter-spacing: 0.08em;
}

.footer_bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
}

/* info */
.footer_info {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

/* address */
.footer_address,
.footer_tel {
	color: #666;
	font-size: 15px;
	line-height: 1.8;
}

/* copy */
.footer_copy {
	color: #c8c8c8;
	font-size: 12px;
	letter-spacing: 0.08em;
}

@media screen and (max-width: 991px) {

	.footer {
		padding: 80px 0 30px;
	}

	.footer_nav {
		grid-template-columns: 1fr;
		gap: 60px;
		margin-bottom: 80px;
	}

	.footer_nav_main {
		gap: 40px;
	}

	.footer_bottom {
		flex-direction: column;
		align-items: center;
	}

}

@media screen and (max-width: 767px) {

	.footer {
		padding: 60px 0 30px;
	}

	.footer_nav {
		gap: 50px;
		margin-bottom: 60px;
	}

	.footer_nav_center {
		gap: 30px;
	}

	.footer_nav_main {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.footer_nav_title a {
		font-size: 18px;
	}

	.footer_nav_list li + li {
		margin-top: 16px;
	}

	.footer_nav_list a {
		font-size: 14px;
	}

	.footer_nav_home a {
		font-size: 24px;
	}

	.footer_info {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}

	.footer_logo {
		font-size: 28px;
	}

	.footer_address,
	.footer_tel {
		font-size: 14px;
	}

	.footer_copy {
		font-size: 11px;
		line-height: 1.8;
	}

}

/* =================================
	fixed banner button
================================= */

.fixed_banner {
	position: fixed;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	z-index: 50;
	transition: 0.3s;
}

.fixed_banner_btn {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 130px;
	padding: 10px 8px;
	background: #353535;
	color: #fff;
}

.fixed_banner.hide {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.fixed_banner_btn + .fixed_banner_btn {
	margin-top: 3px;
}

.fixed_banner_btn:hover {
	opacity: 1;
	background: #35353588;
}

.fixed_banner_icon {
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.fixed_banner_icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.fixed_banner_text {
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
	.fixed_banner {
		top: 90%;
	}
	.fixed_banner_btn {
		width: 110px;
		padding: 10px 8px;
		gap: 10px;
	}
	.fixed_banner_icon {
		width: 24px;
	}
	.fixed_banner_text {
		font-size: 12px;
	}
}
