/* bass */
html {
	scroll-behavior: smooth;
}
.edit-link {
	display: none !important;
}
.post, .page{
	margin:0;
}
.entry-content{
	margin:0;
}
body{
	font-family: 'Noto Sans JP', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', sans-serif;
}
:root{
	--color-white:#fff;
	--width-s:100%;
	--width-m:60%;
	--width-l:80%;
	--width-h:45%;
}
.ltx{
	font-size:1.6rem;
}
.mtx{
	font-size:1.2rem;
}
.stx{
	font-size:0.9rem;
	line-height:1.7;
}
h4{
	padding:0;
	margin:0;
}

/* swiper */
.swiper-top{
	width:100%;
	height:100dvh;
}
.swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: bottom;
}
.slide-wrap{
	max-width: 1140px;
}
.slide-copy{
	position: absolute;
	display:flex;
	flex-direction:column;
	gap:30px;
	align-items:center;
	left: 50%;
	top: 45%;
	transform: translate(-50%, -50%);
	z-index: 2;
	max-width: 70%;
}
.slide-logo {
	margin: 0;
	width: clamp(64px, 40vw, 300px);
}

.slide-catch {
	white-space:nowrap;
	font-size:0.7rem;
}
.slide-side{
	position: absolute;
	top: 116px;
	right: 0;
	width: 15%;
	background:#fff;
}
.slide-side-title{
	padding:15px;
	color:#fff;
	background:#595757;
	text-align:center;
}
.slide-side-item{

}
@media (min-width: 768px) {
	.slide-copy{
		left: 35%;
	}
	.slide-catch{
		font-size:1rem;
	}
	.slide-side{
		width: 200px;
		top: 112px;
	}
}
@media (min-width: 992px) {
	.slide-copy{
		flex-direction:row;
		left: 8%;
		top: 70%;
		transform: translateY(-50%);
	}
	.slide-side{
		width: 230px;
	}
}

/* catch&triangle */
.catch{
	color:orange;
	position: relative;
	display: inline-block;
	border-bottom:1px solid orange;
}
.catch::after{
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -20px;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 16px solid orange;
}

/* slider-side-mb */
.slide-side{
	display: none;
}
.slide-side-mb{
	display: block;
	position: absolute;
	left: 0;
	bottom: 60px;
	width: 100%;
	z-index: 3;
}
.slide-side-mb .slide-side-list{
	display: flex;
	flex-wrap: nowrap;
	gap: 8px;
	overflow-x: auto;
	padding: 0 12px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}
.slide-side-mb .slide-side-list::-webkit-scrollbar{
	display: none;
}
.slide-side-mb .slide-side-item{
	flex: 0 0 auto;
	width: 110px;
	scroll-snap-align: start;
}
.slide-side-mb .slide-side-item img{
	display: block;
	width: 100%;
	height: auto;
}
@media (min-width: 768px) {
	.slide-side{
		display: block;
	}
	.slide-side-mb{
		display: none;
	}
}

/* container */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 60px 15px;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* section title */
.section_title_wrap{
	width:var(--width-s);
}
.section_title{
	display: flex;
	flex-direction: column;
	gap:18px;
	align-items: normal;
	white-space: nowrap;
}
@media (min-width: 768px) {
	.section_title_wrap{
		width:var(--width-m);
	}
	.section_title {
		flex-direction: row;
		align-items: center;
	}
}
@media (min-width: 992px) {
	.section_title_wrap{
		width:var(--width-l);
		max-width: 440px;
	}
}
.section_title h3{
	font-size:2rem;
	font-weight:normal;
	letter-spacing: 0.1em;
	margin:0;
}
.section_title span {
	letter-spacing: 0.08em;
	width:80%;
	
}
.section_title .bbw{
	border-bottom:1px solid #fff;
}
.section_title .bbb{
	border-bottom:1px solid #000;
}

/* news */
.news{
	background: url(../images/news_bg.webp) center center / cover no-repeat;
}
.news_inner{
	display: flex;
	width: 100%;
	margin: 0 auto;
	padding:10px;
	background:#fff;
}
.news_area_title{
	width:20%;
	font-weight:bold;
	color:orange;
}
.news_area{
	width:80%;
}
.news_area ul{
	list-style:none;
	padding:0;
	margin:0;
	font-size:0.8rem;
}
.news_area .news_item a{
	text-decoration:none;
	color:#000;
	display: flex;
	gap: 20px;
	align-items:center;
}
.news_cat {
	display: inline-block;
	padding: 4px 10px;
	background-color: orange;
	color: #fff;
	font-size: 12px;
	border-radius: 20px;
	margin-right: 8px;
}
.news_list_link{
	text-align:right;
	display: inline-block;
	padding: 4px 10px;
	background-color: #000;
	color: #fff;
	font-size: 12px;
	border-radius: 20px;
	margin-right: 8px;
}
.news_more_wrap{
	text-align: right;
	margin-top: 20px;
}
.news_more {
	display: inline-block;
	margin-top: 20px;
	padding: 8px 20px;
	background: #000;
	color: #fff;
	font-size:0.8rem;
	border-radius: 20px;
	text-decoration: none;
}
.news_more_wrap a:visited{
	color:#fff;
}
@media (min-width: 768px) {
	.news_inner{
		width: 90%;
		padding:30px 60px;
	}
	.news_area .news_item a{
		display: flex;
		gap: 20px;
		align-items:center;
	}
	
}
@media (min-width: 992px) {
	.news_inner{
		width: 80%;
		padding:30px 120px;
	}
}
/* bussiness */
.business {
	background: url(../images/bussiness_bg.webp) 85% center / cover no-repeat;
	min-height: 420px;
	overflow: hidden;
	color:var(--color-white);
	text-shadow:1px 1px 3px rgba(0,0,0,0.6);
	display:flex;
	justify-content: center;
	align-items: center;
}

/* advantage */
.advantage{
	background-color: orange ;
	min-height: 420px;
	overflow: hidden;
	color:var(--color-white);
	text-shadow:1px 1px 3px rgba(0,0,0,1);
	display:flex;
	justify-content: center;
	align-items: center;
}

.advantage ol {
	list-style: none;
	counter-reset: num;
	padding: 1.5rem 0;
	margin-left: 0;
}

.advantage ol li {
	counter-increment: num;
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 0.6rem;
}

.advantage ol li::before {
	content: counter(num);
	font-size: 1.7rem;
	min-width: 24px;
	text-align: center;
}
.advantage img{
	width:100%;
}
.advantage_cards{
	display:flex;
	flex-direction: column;
	gap:10px;
	justify-content: space-around; 
	align-items: stretch;
}
.advantage_card{
	flex:1;
	background: #FFF;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border: 1px solid rgba(255,255,255,0.3);
	box-shadow: 0 8px 10px rgba(0,0,0,0.3);
	color:#000;
	text-shadow:none;
	padding:10px;

}


.advantage_card img{
	  width: 100%;
	  height:  214px;
	  object-fit: cover;
}

.advantage_sub{
	padding:0;
	margin:0;
	font-size:0.9rem;
}
.advantage_card span{
	color:#69AF30;
	font-size:0.6rem;
	display:block;
}
@media (min-width: 768px) {
	.advantage_cards {
		flex-direction: row;
	}
	.advantage_card{
		border:none;
		box-shadow:none;
	}
	.advantage_sub{
		font-size:0.6rem;
	}
}
@media (min-width: 992px) {
	.advantage_sub{
		font-size:0.9rem;
	}
}

/* production */
.production{
	background-color:#FFFEF6;
	min-height: 420px;
	overflow: hidden;
	display:flex;
	justify-content: center;
	align-items: center;
}

.production_cards{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.production_card{
	/*flex: 1 1 calc(50% - 10px);*/ /*2cl*/
	flex: 1 1 100%;
	border:1px solid orange;
}
@media (min-width: 768px) {
	.production_card {
		flex: 0 0 calc(33.333% - 20px);
	}
}

/* flow */
.flow{
	background-color: orange;
	min-height: 420px;
	overflow: hidden;
	color:var(--color-white);
	text-shadow:1px 1px 3px rgba(0,0,0,0.6);
	display:flex;
	justify-content: center;
	align-items: center;
}
.flow ul{
	list-style:none;
	padding-left:0;
	margin:0;
}
.flow li{
	position: relative;
	padding-left:1.5em;
}
.flow li::before{
	content:"※ ";
	position:absolute;
	left:0;
}
.flow_cards{
	display:flex;
	flex-direction: column;
	gap:10px;
	justify-content: space-around; 
	align-items: stretch;
	margin-top:2em;
}
.flow_card{
	background: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border: 1px solid rgba(255,255,255,0.3);
	box-shadow: 0 8px 10px rgba(0,0,0,0.3);
	color:#000;
	text-shadow:none;
	padding:20px;
}
@media (min-width: 768px) {
	.flow{
		background: url(../images/flow_bg.webp) center center / cover no-repeat;
	}
	.flow_card{
		background:#fff;
		border:none;
		box-shadow:none;
	}
}

/* company */
.company{
	background: url(../images/company_bg.webp) center center / cover no-repeat;
	min-height: 420px;
	overflow: hidden;
	text-shadow:1px 1px 3px rgba(255,255,255,0.6);
	display:flex;
	justify-content: center;
	align-items: center;
}
.company_sub{
	font-size:0.7rem;
}
.company_cards{
	display:flex;
	flex-direction: column;
	gap:60px;
	justify-content: space-around; 
	align-items: stretch;
	margin:60px 0;
}
.company_card{
	flex:1;
	align-items: center;
	justify-content: center;
	display: flex;
	flex-direction: column;
}
.company_card img {
	width:50%;
}
.company_info {
	margin: 0;
	padding: 0;
}

.company_info .info_row {
	display: flex;
	gap: 10px;
	padding: 20px 0;
	border-bottom: 1px dotted #666;
}

.company_info .info_row:last-child {
	border-bottom: none;
}

.company_info dt {
	width: 80px;
	flex-shrink: 0;
	margin: 0;
}

.company_info dd {
	margin: 0;
	flex: 1;
}
@media (min-width: 768px) {
	.company_cards {
		gap: 10px;
		flex-direction: row;
	}
	.company_info .info_row{
		gap: 10px;
	}
	.company_info dt {
		width: 90px;
	}
}
@media (min-width: 992px) {
	.company_sub{
		font-size:0.9rem;
	}
	.company_info .info_row{
		gap: 40px;
	}
	.company_info dt {
		width: 120px;
	}
}
/* section inner */
.business_inner,
.advantage_inner,
.flow_inner{
	width:var(--width-s);
}

@media (min-width: 768px) {
	.business_inner,
	.advantage_inner,
	.flow_inner{
		width:var(--width-m);
	}
	.business {
		background: url(../images/bussiness_bg.webp) right center / cover no-repeat;
	}
}
@media (min-width: 992px) {
	.business_inner,
	.advantage_inner {
		width:var(--width-l);
	}
	.flow_inner{
		width:var(--width-h);
	}
}

/* page top */
.page_mv{
	
}
.page_mv img{
	min-height: 400px;
	object-fit: cover;
    object-position: bottom;
}


/* =========================================
	 Header
========================================= */
.custom-logo {
	max-width: 50%;
	height: auto;
	min-width:72px;
	margin-right: 15px;
}
.site-header {
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
	z-index: 100;
}
.site-header.is-sticky {
	position: fixed;
	top: 0;
	left: 0;
}
.header-bar {
	width: 100%;
	background: orange;
}

.header-bar .container {
	padding-top: 0;
	padding-bottom: 0;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 56px;
}


/* 左コピー */
.header-bar__lead {
	flex: 0 0 auto;
	color: #fff;
	font-size: clamp(0.7rem, 1vw, 0.9rem);
	line-height: 1.4;
	white-space: nowrap;
	padding-right: 20px;
}

/* PCナビ */
.header-nav {
	flex: 1 1 auto;
	display: flex;
	justify-content: right;
}

.header-nav .menu {
	display: flex;
	align-items: stretch;
	margin: 0;
	padding: 0;
	list-style: none;
}

.header-nav .menu > li {
	flex:1;
	min-width: 150px;
}

.header-nav .menu > li > a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 56px;
	padding: 0 6px;
	color: #fff;
	text-decoration: none;
	border-left: 1px solid rgba(255, 255, 255, 0.35);
	transition: background 0.3s ease, opacity 0.3s ease;
	position: relative;
}
.header-nav .menu > li > a::after {
	content: "";
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 0;
	height: 2px;
	background: #fff;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.3s ease;
}
.header-nav .menu > li:last-child > a {
	border-right: 1px solid rgba(255, 255, 255, 0.35);
}
.header-nav .menu > li.is-current > a::after {
	transform: scaleX(1);
}
.header-nav .menu > li > a:hover {
	background: rgba(255, 255, 255, 0.08);
}
.header-nav .menu > li > a:hover::after {
	transform: scaleX(1);
}
.header-nav .menu > li.is-current > a::after,{
	transform: scaleX(1);
}
.header-nav .menu > li > a span{
	font-size:0.6rem;
}
/* 右メール */
.header-bar__contact {
	flex: 0 0 auto;
}
.header-bar__contact span{
	font-size:0.6rem;
}

.header-bar__contact a {
	display: flex;
	flex-direction:column;
	justify-content: center;
	height: 56px;
	padding: 0 16px;
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.3s ease, opacity 0.3s ease;
}

.header-bar__contact a:hover {
	background: rgba(255, 255, 255, 0.08);
}

/* ハンバーガー */
.header-toggle {
	display: none;
	position: relative;
	width: 44px;
	height: 44px;
	margin-left: 16px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.header-toggle span {
	position: absolute;
	left: 9px;
	width: 26px;
	height: 2px;
	background: #fff;
	transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.header-toggle span:nth-child(1) {
	top: 13px;
}

.header-toggle span:nth-child(2) {
	top: 21px;
}

.header-toggle span:nth-child(3) {
	top: 29px;
}

.site-header.is-open .header-toggle span:nth-child(1) {
	top: 21px;
	transform: rotate(45deg);
}

.site-header.is-open .header-toggle span:nth-child(2) {
	opacity: 0;
}

.site-header.is-open .header-toggle span:nth-child(3) {
	top: 21px;
	transform: rotate(-45deg);
}

/* モバイルメニュー */
.mobile-nav {
	display: none;
	width: 100%;
	background: orange;
}

.mobile-nav .container {
	padding-top: 0;
	padding-bottom: 0;
}

.mobile-nav__inner {
	padding-top: 8px;
	padding-bottom: 12px;
}

.mobile-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile-menu > li {
	margin: 0;
	padding: 0;
}

.mobile-menu > li > a {
	display: block;
	padding: 14px 0;
	color: #fff;
	text-decoration: none;
	line-height: 1.4;
	border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.mobile-nav__contact a {
	display: block;
	padding: 14px 0 8px;
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	line-height: 1.4;
	border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.mobile-menu > li > a span,
.mobile-nav__contact a span{
	padding-left:15px;
	font-size:0.6rem;
}


/* =========================================
	 Tablet
========================================= */
@media (max-width: 992px) {
	.site-header.is-sticky {
		top: 0;
	}
	.site-header.is-open .mobile-nav {
		display: block;
	}
	
	.header-inner {
		min-height: 52px;
	}

	.header-bar__lead {
		font-size: 10px;
		padding-right: 12px;
	}

	.header-nav,
	.header-bar__contact {
		display: none;
	}

	.header-toggle {
		display: block;
		margin-left: auto;
	}
}

/* =========================================
	 Mobile
========================================= */
@media (max-width: 768px) {
	.site-header {
		top: 40px;
	}
	.site-header.is-sticky {
		top: 0;
	}
	.header-inner {
		min-height: 48px;
	}

	.header-bar__lead {
		max-width: calc(100% - 56px);
		font-size: 9px;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.header-toggle {
		width: 40px;
		height: 40px;
	}

	.header-toggle span {
		left: 8px;
		width: 24px;
	}

	.header-toggle span:nth-child(1) {
		top: 12px;
	}

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

	.header-toggle span:nth-child(3) {
		top: 26px;
	}

	.site-header.is-open .header-toggle span:nth-child(1),
	.site-header.is-open .header-toggle span:nth-child(3) {
		top: 19px;
	}

	.mobile-menu > li > a,
	.mobile-nav__contact a {
		font-size: 13px;
	}
}

/*contact*/
/*--- forms ---*/
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea {
	width:100%;
}

input[type="submit"].conf-button-submit-r:disabled, 
input[type="button"].button-submit-r:disabled{
	background:#e6e6e6;
	color:#fff;
	padding:20px 50px;
}
input[type="submit"].conf-button-submit-r, 
input[type="button"].button-submit-r{
	background:#BF192A;
	color:#fff;
	padding:20px 50px;
}
input[type="button"].back_button{
	background:#BF192A;
	color:#fff;
	padding:20px 50px;
}

@media(min-width:768px){
	input[type="submit"].conf-button-submit-r:disabled, 
	input[type="button"].button-submit-r:disabled{
		background:#e6e6e6;
		color:#fff;
		padding:20px 100px;
	}
	input[type="submit"].conf-button-submit-r, 
	input[type="button"].button-submit-r{
		background:#BF192A;
		color:#fff;
		padding:20px 100px;
	}
	input[type="button"].back_button{
		background:#BF192A;
		color:#fff;
		padding:20px 100px;
	}
}


input[type="submit"].conf-utton-submit-r:hover, 
input[type="button"].button-submit-r:hover {
	border-color: #7F1424;
}
input[type="submit"].conf-button-submit-r:active,
input[type="submit"].conf-button-submit-r:focus, 
input[type="button"].button-submit-r:active, 
input[type="button"].button-submit-r:focus {
	border-color: #7F1424;
}
.contact-notice{
	font-size:0.8rem;
	padding:10px 0;
}
.contact-notice a, .contact-notice a:hover, .contact-notice a:visited{
	color:#000;
	text-decoration: underline;
}
.conf-table th{
	white-space:nowrap;
}
.conf-form1 h3, 
.thanks_area h3{
	text-align:center;
	padding:50px 0 20px 0;
}
.conf-message{
	padding-bottom: 30px;
}

.form1{
	margin:50px 0;
}
.formbg-a{
	background:#fff;
}
.formbg-b{
	background:#E8ECEE;
}
.wpcf7-form .req {
	background-color: #BF192A;
	color: white;
	padding: 2px 5px;
	border-radius: 3px;
	margin-left: 10px;
	font-size: 0.8rem;
}
.form1 tr,
.conf-table tr{
	border-bottom:1px #231815 dotted;
}
.form1 tr:last-child,
.conf-table tr:last-child{
	border:unset;
}
.form1 td,
.conf-table td,
.conf-table th
{
	padding:15px 0;
}
.conf1{
	display:none;
}
.thanks1{
	display:none;
	min-height: 500px;
	font-size: 1.4rem;
	line-height: 1.6;
	letter-spacing: 0.1rem;
}
.form1 th,
.form1 td,
.conf-table th,
.conf-table td{
	display:inline-block;
}
.form1 th{
	padding-left:0;
}
.form td{
	padding-right:0;
}
.form-item,
.conf-form-item{
	display:block !important;
}
@media(min-width:576px){
	.form1 th,
	.form1 td,
	.conf-table th,
	.conf-table td{
		display:table-cell;
	}
	.form-item{
		display:inline-block;
	}
	.form1 td,
	.conf-table td,
	.conf-table th{
		padding:15px 0;
	}
	.form1 th{
		padding-left:15px;
	}
	.form1 td{
		padding-right:15px;
	}
}
.wpcf7-form.sent .wpcf7-response-output {
	display: none;
}
.form-button-area{
	text-align:center;
	width:100%;
}

/* footer */
.site-footer {
	display: flex;
	align-items: stretch;
	width: 100%;
	color: #fff;
	font-family: inherit;
}

.footer-contact,
.footer-company {
	width: 50%;
}

.footer-contact {
	background: orange;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 48px 40px;
}

.footer-contact-inner {
	width: 100%;
	max-width: 480px;
}

.footer-contact-title {
	margin: 0 0 24px;
	font-size: clamp(40px, 5vw, 64px);
	line-height: 1;
	letter-spacing: 0.12em;
	font-weight: 300;
	color: #fff;
}

.footer-contact-mail {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	background: #fff;
	border-radius: 999px;
	padding: 14px 22px;
	text-decoration: none;
	color: #000;
	margin-bottom: 18px;
	position: relative;
	min-width: 320px;
	max-width: 100%;
	box-sizing: border-box;
}

.footer-contact-mail:hover {
	opacity: 0.9;
}

.footer-contact-mail-main {
	display: block;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
}

.footer-contact-mail-sub {
	display: block;
	font-size: 10px;
	line-height: 1.2;
	color: #555;
}

.footer-contact-mail-arrow {
	margin-left: auto;
	font-size: 18px;
	line-height: 1;
	font-weight: 700;
}

.footer-contact-text {
	margin: 0;
	font-size: 16px;
	line-height: 1.8;
	color: #fff;
}

.footer-company {
	background: #000;
	padding: 48px 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.footer-company-top {
	display: flex;
	/*align-items: flex-start;
	justify-content: space-between;*/
	gap: 24px;
	/*margin-bottom: 40px;*/
}

.footer-logo img {
	width:80%;
	min-width:200px;
}
.footer-company-info p {
	margin: 0 0 8px;
	font-size: 16px;
	line-height: 1.7;
	color: #fff;
	/*min-width:300px;*/
}

.footer-nav ul {
	display: flex;
	align-items: center;
	gap: 40px;
	margin: 0;
	padding: 0;
	list-style: none;
	flex-wrap: wrap;
}

.footer-nav a,
.footer-nav span {
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	line-height: 1.6;
}

.footer-nav a:hover {
	opacity: 0.7;
}

@media (max-width: 767px) {
	.site-footer {
		flex-direction: column;
	}

	.footer-contact,
	.footer-company {
		width: 100%;
	}

	.footer-contact,
	.footer-company {
		padding: 32px 20px;
	}

	.footer-contact-title {
		font-size: 40px;
		margin-bottom: 20px;
	}

	.footer-contact-mail {
		width: 100%;
		min-width: 0;
		padding: 14px 18px;
	}

	.footer-contact-mail-main {
		font-size: 16px;
	}

	.footer-contact-mail-sub {
		font-size: 10px;
	}

	.footer-contact-text {
		font-size: 14px;
		line-height: 1.7;
	}

	.footer-company-top {
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 28px;
	}



	.footer-company-info p {
		font-size: 14px;
		line-height: 1.8;
	}

	.footer-nav ul {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}
}