@charset "utf-8";
/* CSS Document */
:root {
	--color-main: #f08500;
	--bglight: #fff7ee;
	
	--font-sge: "Special Gothic Expanded One", sans-serif;
}

/*===共通部分==============
====================================================================*/
html{
	font-size: 100%;
}
body{
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	color: #333;
	font-size: clamp(16px,2vw,18px);
	background: #fff;
	-webkit-font-smoothing: antialiased;/*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.7;
}
p{
	letter-spacing: 0.1em;
	line-height: 1.9;
}
h1,h2,h3,h4,h5,h6{
	font-weight: 600;
	line-height: 1.7;
}
a{
	text-decoration: none;
	color: #333;
	transition: .4s;
}
ul,ol{
	list-style: none;
	padding: 0;
}
main{
	width: 100%;
	height: 100%;
	overflow: hidden;
}

section {
	padding: clamp(60px,10vw,130px) 0 ;
	position: relative;
}
table{
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;/*隙間なし*/
}

/*改行　-------*/
@media (min-width: 451px){
	br.only450{
		display: none;
	}
}

@media (max-width: 450px){
	br.not450{
		display: none;
	}
}

span.ib{
	display: inline-block!important;
}

/*PC・SP表示-----------------------*/
.sp{
	display: none;
}
.pc{
	display: block;
}

@media (max-width: 400px) {
	.sp{
		display: block;
	}
	.pc{
		display: none;
	}
}

/*幅・高さ調整-------*/
* {
  box-sizing: border-box;
}
.inner{
	width: 96%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}
.inner.wide{
	max-width: 1400px;
}
.inner.max{
	max-width: none;
}
.inner.w960{
	max-width: 960px;
}
@media (max-width: 500px) {
	.inner{
		width: 90%;	
	}
}
/*高さ*/

.mg100{
	margin-bottom: 100px !important;
}
.mg80{
	margin-bottom: 80px !important;
}
.mg60{
	margin-bottom: 60px !important;
}
.mg50{
	margin-bottom: 50px !important;
}
.mg40{
	margin-bottom: 40px !important;
}
.mg30{
	margin-bottom: 30px !important;
}
.mg20{
	margin-bottom: 20px !important;
}
.mg10{
	margin-bottom: 10px !important;
}
.mg0{
	margin-bottom: 0 !important;
}

.pmg5 p{
	margin-bottom: 5px;
}
.pmg p{
	margin-bottom: 10px;
}
.pmg15 p{
	margin-bottom: 15px;
}
.pmg20 p{
	margin-bottom: 20px;
}
.pmg5 p:last-child,
.pmg p:last-child,
.pmg15 p:last-child,
.pmg20 p:last-child{
	margin-bottom: 0;
}

.t_center{
	text-align: center;
}
.t_left{
	text-align: left;
}
/* 画像　-------------------------- */
img, video-js {
  max-width: 100%;
  height: auto;
}
.obj-in{
	width: 100%;
	height: 100%;
	object-fit: contain
}
.obj-cov{
	width: 100%;
	height: 100%;
	object-fit: cover;	
}
.img_4-3{
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.img_16-9{
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

/*flexbox------------------------*/
.flexbox{
	display: flex;
	flex-wrap: wrap;
}
.f_jsb{
	justify-content: space-between;
}
.f_cent{
	justify-content: center;
}
.fac{
	align-items: center;
}

.comn2{
	width: 48%;
}
.comn3{
	width: calc( 100% / 3 - 20px);
}
.comn4{
	width: 35%;
}
.comn5{
	width: 62%;
}

.f_center{
	align-items: center;
}
@media (max-width: 767px){
	.flexbox{
		flex-direction: column;
	}
	.flexbox.rever{
		flex-direction: column-reverse;
	}
	.comn2, .comn3, .comn4, .comn5 {
		width: 100%;
		margin-bottom: 30px
	}
}

/*===============================
	btn
==========================================================*/
.mbtn {
  margin-top: 50px;
}

/* ボタン本体 */
.btn-more {
  display: inline-flex;
  align-items: center;
	justify-content: center;
  gap: 10px;
  padding: 14px 40px;
	min-width: 320px;
  border: 1px solid var(--color-main);
  color: var(--color-main);
  text-decoration: none;
  background: #fff;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

/* 矢印 */
.btn-more::after {
  content: "→";
  font-size: 18px;
  transition: 0.3s;
}

/* ホバー */
.btn-more:hover {
  background: var(--color-main);
  color: #fff;
	opacity: .8;
}

/* 矢印がスッと動く */
.btn-more:hover::after {
  transform: translateX(6px);
}


/* =========================================
   見出し
========================================= */
/* タイトル */
.sec_ttl {
  text-align: right;
}

.sec_ttl h2 {
  font-size:clamp(2.3rem, 1.914rem + 1.71vw, 3.2rem);
  color: var(--color-main);
  letter-spacing: 2px;
}

.sec_ttl h3 {
  font-size: clamp(1.3rem, 1.171rem + 0.57vw, 1.6rem);
}
/* =========================================
   H1
========================================= */
.visually-hidden{
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
}
/* ======================
   header 基本
======================================================== */
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap:30px;
	padding: 0 clamp(1.25rem, -6.023rem + 11.36vw, 2.5rem);
	background: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.08);
	z-index: 1000;
	transition: 0.4s ease;
}

/* ======================
   TOPページ（最初は隠す）
====================== */
.home #header {
  transform: translateY(-100%);
  opacity: 0;
}

/* 表示状態 */
.home #header.active {
  transform: translateY(0);
  opacity: 1;
}

/* ======================
   ナビ
====================== */
.pcnav ul {
  display: flex;
  gap:8px 30px;
}

.pcnav a {
  color: #333;
  letter-spacing: 0.05em;
  transition: 0.3s;
}

.pcnav a:hover {
	color: var(--color-main);
  opacity: 0.6;
}

@media(max-width:1255px){
	.navcont{
		display: none;
	}
}
/* ======================
   電話
====================== */
.headtel{
	display: flex;
	align-items: center;
}
.headtel a {
  font-size: clamp(1.5rem, -0.682rem + 3.41vw, 1.875rem);
  font-weight: bold;
  color: #333;
	white-space: nowrap;
}

.headtel span {
	font-size: 16px;
  margin-right: 5px;
}
.headtel a:hover{
	color: var(--color-main);
}

/* ======================
   ロゴ
====================== */
.logo{
	width: 18%;	
	min-width: 200px;
}

.logo img {
  max-height: 40px;	
  width: 100%;
  object-fit: contain
}


/* ======================
   右固定CTA
====================== */
.fixed-cta {
  position: fixed;
  top: 60%;
  right: -80px;
  transform: translateY(-50%); /* ← 画面外に隠す */
  z-index: 999;
  transition: 0.5s ease;
	width: 60px;
}

/* 表示状態 */
.fixed-cta.active {
  right: 0;
}

/* ボタンデザイン */
.fixed-cta a {
	display: block;
	background: var(--color-main);
	color: #fff;
	padding: 60px 16px 20px;
	writing-mode: vertical-rl; /* 縦書き */
	text-orientation: mixed;
	letter-spacing: 0.1em;  
	border-radius: 8px 0 0 8px;
	transition: 0.3s;
	position: relative;
}
.fixed-cta a::before{
	position: absolute;
	content: '';
	width: 80%;
	height: 25px;
	background: url("../img/icon/icon_mail_g.svg")no-repeat center/contain;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
}

.fixed-cta a:hover {
	opacity: .8;
}

/*========================
	Mobilenav
=========================================*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 777;
    /*ナビのスタート位置と形状*/
	top:-220%;
    left:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:url("../img/spnavbg.jpg")no-repeat center/cover;
    /*動き*/
	transition: all 0.6s;
}
#g-nav.bg02{
	background:url("../img/spnavbg_02.jpg")no-repeat center/cover;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
	width: 80%;
	max-width: 450px;
	margin: 100px auto 30px;
}

/*リストのレイアウト設定*/

#g-nav li{
	padding: .6rem 1rem;
	border-bottom: 1px dotted #333;
	
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	position: relative;
}
#g-nav li a::before{
	position: absolute;
	content: "\f054";
	color:  var(--color-main);
	left: -.5rem;
	top: 12px;
	font-family: "Font Awesome 6 Free";
}
.sptel{
	font-size: 1.75rem;
	font-weight: 600;
	text-align: center;
}
.sptel span{
	font-size: 1.2rem;
}
.splogo{
	margin: 20px auto;
	text-align: center;
}
.splogo img{
	width: 60%;
	max-width: 350px;
	margin: 0 auto;
	
}
@media(max-width:767px){
	#g-nav ul {
		margin: 30px auto 30px; 
	}
	#g-nav.panelactive #g-nav-list{
		padding-bottom: 60px;
	}
}
/*========= ボタンのためのCSS ===============*/

.openbtn{
	display: block;
    width: 60px;
    height:60px;
	position: relative;
	background: var(--color-main);
	margin-left: 20px;
}
@media(min-width:1024px){
	.openbtn{display: none;}	
}	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 25%;
    height: 3px;
    border-radius: 2px;
	background-color: #fff;
  	width: 50%;
  }

.openbtn span:nth-of-type(1) {
	top:20px;	
}

.openbtn span:nth-of-type(2) {
	top:29px;
}

.openbtn span:nth-of-type(3) {
	top:39px;
}

.openbtn.active span:nth-of-type(1) {
    top: 22px;
    left: 25%;
    transform: translateY(6px) rotate(-45deg);
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 34px;
    left: 25%;
    transform: translateY(-6px) rotate(45deg);
}



/* =========================
   Footer
========================= */

footer {
  background: linear-gradient(to bottom,#000030 ,#111);
  color: #fff;
  padding: 80px 0 40px;
  position: relative;
}


/* 中身を前面に */
footer .inner {
  position: relative;
  z-index: 1;
}

/* =========================
   レイアウト
========================= */

.footer-flex {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.footer-info {
  width: 35%;
}

.footer-nav {
  width: 65%;
}

/* =========================
   ロゴ・会社情報
========================= */

.flogo {
  margin-bottom: 20px;
}

.flogo img {
  max-width: 200px;
}

.footer-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-info h3 span {
  font-size: 12px;
  opacity: 0.7;
  margin-left: 5px;
}

.footer-info p {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 5px;
  opacity: 0.9;
}

/* =========================
   ナビ
========================= */

.f-nav {
  display: flex;
  gap: clamp(1.25rem, -6.023rem + 11.36vw, 2.5rem);
  margin-bottom: 40px;
}

.f-nav ul {
  list-style: none;
}

.f-nav li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}


.f-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: .3s;
}

.f-nav li::before{
	position: absolute;
	content: '';
	width: 10px;
	height: 4px;
	left: 0;
	top: 50%;
	background: linear-gradient(30deg,#fccd00,#ea652d);
}
.f-nav a:hover {
  color: #d87a00;
}

/* 子メニュー */
.child {
  font-size: 14px;
  margin-left: 15px;
}

/* =========================
   カタログ
========================= */

.foot-catalog {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
}

.foot-catalog h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.foot-catalog h3 small {
  font-size: 16px;
  opacity: 0.7;
  margin-left: 10px;
}

/* メーカーリスト */
.foot-catalog ul {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.foot-catalog li {
  list-style: none;
  padding-left: 25px;
  position: relative;
}
.foot-catalog li::before{
	position: absolute;
	content: '';
	width: 13px;
	height: 5px;
	left: 0;
	top: 45%;
	background: linear-gradient(30deg,#fccd00,#ea652d);
}
.foot-catalog a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  display: flex;
  align-items: center;
  transition: .3s;
}

.foot-catalog a:hover {
  color: #d87a00;
}


/* =========================
   コピーライト
========================= */

.copy {
  text-align: center;
  font-size: 12px;
  padding: 15px 0;
  background: #111;
  color: var(--color-main);
}

/*=================================================
	sp_footernav
=======================*/
.sp_footbtn{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background:var(--color-main);
}
.sp_footbtn ul{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}
.sp_footbtn li:not(:last-child){
	border-right: 1px solid #fff;
}
.sp_footbtn li a{
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 6px 0;
	text-align: center;
	font-size: 13px;
	color: #fff;
}
.sp_footbtn .icon{
	height: 30px;
	width:30px;
	margin: 0 auto;

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



@media(min-width:768px){
	.sp_footbtn{
		display: none;
	}
}
@media(max-width:400px){
	.sp_footbtn li a{
		font-size: 11px;
	}	
	.sp_footbtn .icon{
		height: 20px;
		width:20px;
		margin: 0 auto;
	}
}

