@charset "utf-8";
/* CSS Document */
/*=============================
	header
============================================================*/
#header{
	width: 100%;
	height: 80px;
	background: #171c61;
}
#header .inner{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	height: 100%
}
.hlogo{
	height: 100%;
	width: clamp(265px,20vw,350px);
	padding: 10px 0;
}
.hlogo img{
	width: 100%;
	height:100%;
	object-fit: contain;
}
#header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 88;
}
/*navi*/
#header nav{
	height: 100%;
}
.gnavi{
    display: flex;
	align-items: center;
    flex-wrap: wrap;
    list-style: none;
	height: 100%;
}

.gnavi li a{
    display: block;
    text-decoration: none;
    color: #f7dc3e;
}

.gnavi li a{
	position: relative;
	overflow: hidden;
	padding:15px 45px;
}
.gnavi li:nth-child(6) a,
.gnavi li:nth-child(7) a{
	padding:15px 60px;
}
.gnavi li span{
	position: absolute;
	left: 50%;
	top:0;
	transition: all .5s;
	transform: translate(-50%, 0);
	display: block;
	opacity:1;
	white-space: nowrap;
}

/*文字入れ替わり*/
.gnavi li span:nth-child(2){
	opacity:0;
    transform: translate(-50%,100%);
}
.gnavi li:hover span:nth-child(1),
.gnavi li a.current span:nth-child(1){
	opacity:0;
    transform: translate(-50%,-100%);
}
.gnavi li:hover span:nth-child(2),
.gnavi li a.current span:nth-child(2){
	opacity:1;
	transform: translate(-50%, 0);
}

@media(max-width:1023px){
	.gnavi{
		display: none;
	}
}
@media screen and (max-height: 700px), 
       screen and (max-width: 600px) {
    #header {
        height: 60px;
	}
}


/*=============================
	Mobile-navi
============================================================*/
.openbtn{
	position:fixed;
    z-index: 999;/*ボタンを最前面に*/
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
@media(min-width:1024px){
	.openbtn{
		display: none;
	}
}
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    right: 0;
    height: 3px;
    border-radius: 2px;
	background-color: #f7dc3e;
  	width: 100%;
	transform-origin: right center;
	transition: all .5s;
  }

.openbtn span:nth-of-type(1) {
	top:10px;	
	animation: equalizer01 7000ms infinite;
}

.openbtn span:nth-of-type(2) {
	top:23px;
	animation: equalizer02 5000ms infinite;
	animation-delay: 0.33s;
}

.openbtn span:nth-of-type(3) {
	top:38px;
	animation: equalizer02 5000ms infinite;
}
.openbtn.active span:nth-of-type(1) {
    transform: translate(-5px,0px) rotate(-45deg);
    animation: unset;
	width: 60%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
	animation: unset;
	transition: all .3s;
}

.openbtn.active span:nth-of-type(3){
   transform: translate(-5px, -7px) rotate(45deg);
    animation: unset;
	width: 60%;
}


#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 99;
	top:-150%;
    left:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#171c3f url("../img/spnav_bg.jpg")no-repeat right bottom/cover;
	transition: all 0.6s;
	color: #fff;
}

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

/*ナビゲーション*/
#g-nav ul {
	padding: 45px 10px 25px;

}

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

#g-nav li{
	list-style: none;
	border-bottom: 1px dotted #ff0;
}

#g-nav li a{
	color: #fff;
	text-decoration: none;
	padding:10px;
	padding-left: 1.8rem;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	position: relative;
}
#g-nav li a::before{
	position: absolute;
	content: '\f0da';
	font-family: "Font Awesome 6 Free";
	left: 10px;
	top: 10px;
	color: #ff0;
}
#g-nav li a .small{
	font-size: 70%;
	padding-left: 10px;
	color: #ff0;
}

.sp_flex{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 3vw;
}
.spnav_btn{
	width: 80%;
	max-width: 350px;
	min-width: 300px;
	display: block;
	padding: 8px 2rem;
	text-align: center;
	color: #fff;
	border: 1px solid #fff;
	margin: 10px 5px 0;
}
.sp_contact{
	text-align: center;
}
.sp_contact .spnav_btn{
	margin: 10px auto;
}
.sp_contact h3{
	margin-bottom: 3vw;
}
.sp_contact p{
	display: block;
	text-align: center;
}
/*============
@keyframes
=============*/
@keyframes equalizer01 {
  0%   { transform: scaleX(0.7); }
  10%  { transform: scaleX(0.5); }
  20%  { transform: scaleX(1.0); }
  30%  { transform: scaleX(0.1); }
  40%  { transform: scaleX(0.5); }
  50%  { transform: scaleX(0.7); }
  60%  { transform: scaleX(0.5); }
  70%  { transform: scaleX(0.1); }
  80%  { transform: scaleX(1.0); }
  90%  { transform: scaleX(0.1); }
  100% { transform: scaleX(0.7); }
}

@keyframes equalizer02 {
  0%   { transform: scaleX(0.3); }
  10%  { transform: scaleX(0.2); }
  20%  { transform: scaleX(0.4); }
  30%  { transform: scaleX(0.1); }
  40%  { transform: scaleX(0.2); }
  50%  { transform: scaleX(0.3); }
  60%  { transform: scaleX(0.2); }
  70%  { transform: scaleX(0.1); }
  80%  { transform: scaleX(0.4); }
  90%  { transform: scaleX(0.1); }
  100% { transform: scaleX(0.3); }
}

/*=============================
	pegetop
============================================================*/



/*=============================
	Footer
============================================================*/
/*foot-top*/
.foot-top{
	background: url("../img/foot-topbg.jpg")no-repeat center/cover;
}
.foot-top::before{
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background: #171c61;
	top: 0;
	left: 0;
	opacity: .3;
	z-index: -1;
}
.foot-top .inner{
	display: flex;
	justify-content: space-between;
}

.f_access, .f_contact{
	width: 48%;
	margin-bottom: 15px;
	text-align: center;
	color: #fff;
}
.f_access .mttl, .f_contact .mttl{
	color: #fff;	
}
.fbtn{
	margin: 20px 0;
}
.fbtn a{
	display:inline-block;
	border: 2px solid #fff;
	border-radius: 50px;
	padding: .5rem 1rem;
	text-align: center;
	color: #fff;
	min-width: 300px;
	font-size: 1.5rem;
	font-weight: 600;
	transition: .4s;
}

.fbtn a.ftel{
	color: #f7dc3e;
	transition: .4s;
	font-size: 1.7rem;
    line-height: 1.5;
}
.fb_icon{
	position: relative;
	margin-right: 8px;
	width: 1.8rem;
}
.fb_icon::before{
	position: absolute;
	content: '';
	width: 1.5rem;
	height: 1.8rem;
	top: 50%;
	left: -.5rem;
	transform: translateY(-50%);
	
}
.fb_icon.f-map::before{
	background: url("../img/icon_map.svg")no-repeat center/contain;
}
.fb_icon.f-phone::before{
	width: 2rem;
	height: 2rem;
	background: url("../img/icon_tel.svg")no-repeat center/contain;
}
.fbtn a:hover{
	background: rgba(255,255,255,.30);
	transition: .4s;
}
.fbtn a.ftel:hover{
	background: #f7dc3e;
	color: #fff;
	transition: .4s;
}

@media(max-width:767px){
	.foot-top .inner{
		flex-direction: column;
	}	
	.f_access, .f_contact{
		width: 100%;
	}
	.f_contact{
		border-top: 1px solid #fff;
		padding-top: 20px;
	}
}
/*Footer*/
footer{
	padding: 30px 0;
	text-align: center;
	background: #171c61;
	color: #fff;
}
.flogo{
	width: 80%;
	max-width: 400px;
	margin: 0 auto;
}
.copy{
	padding: 5px;
	font-size: 13px;
}
@media(max-width:767px){
	.copy{
		padding-bottom: 55px;
	}
}

.cta-wrap{
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #111;
  color: #fff;
  transform: translateY(55%);
  opacity: 0.85;
  transition: transform .35s ease, opacity .35s ease;
  z-index: 999;
  padding-bottom: env(safe-area-inset-bottom);
}
@media(min-width:768px){
	.cta-wrap{
		display: none;
	}
}

.cta-wrap.is-active{
  transform: translateY(0);
  opacity: 1;
}

.cta-lead{
  font-size: 12px;
  text-align: center;
  padding: 6px 10px;
  opacity: .9;
}

.cta-btns{
  display: flex;
}

.cta-btns a{
  flex: 1;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
	color: #fff;
}

.cta-tel{
  background: #000;
}

.cta-dm{
  background: #1a1a1a;
}


/*=============================
	FV
============================================================*/
#fv{
    width: 100%;
	height: auto;
    aspect-ratio: 48 / 23;
	max-height: calc(100vh - 80px);
	min-height: 55vh;
	position: relative;
	background:url("../img/fvbg.jpg")no-repeat top left/cover;
	z-index: 0;
}
.fvslider {
	position:relative;
	z-index: -1;
    width: 100%;
	height: auto;
    aspect-ratio: 48 / 23;
	max-height: calc(100vh - 80px);
	min-height: 55vh;
}
.slider-item01 {
    background:url("../img/slide01.png");
}
.slider-item02 {
    background:url("../img/slide02.png");
}
.slider-item03 {
    background:url("../img/slide03.png");
}
.slider-item {
    width: 100%;
    aspect-ratio: 48 / 23;
	height: auto;
	max-height: calc(100vh - 80px);
	min-height: 55vh;
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: 40% top;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}
.slider-item.slider-item02{
    background-position: 50% top;/*背景画像の位置を中央に*/
} 
.catch{
	color: #fff;
	position: absolute;
	content: '';
	width: 80%;
	bottom:clamp(15px,7vw,130px);
	left: 3vw;
	z-index: 3;
}
.catch .en{
	font-size: clamp(1.35rem, 0.678rem + 2.83vw, 2.8rem);
	transform: scaleY(1.3);
	line-height: 1;
	margin-bottom: 15px;
}
.catch .jp{
	font-size: clamp(1rem, 0.629rem + 1.56vw, 1.8rem);
	line-height: 1.3;
}
/*=============================
	index
============================================================*/
.visually-hidden{
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
}
/*aboutus*/
.t_about{
	background: url("../img/bg01.jpg")no-repeat center/cover;
}
.t_about_txtarea{
	width: 48%;
	padding:6vw 0 0 6vw; 
}
.t_about_imgarea{
	width: 45%;
	padding-left: 3%;
}
.t_about_imgarea img{
	width: 100%;
	object-fit: cover;
}

@media(max-width:767px){
	.t_about{
		background: url("../img/bg01.jpg")no-repeat 20% center/cover;
	}	
	.t_about_txtarea{
		width: 100%;	
		padding:3vw 6vw ; 
	}
	.t_about_imgarea{
		width: 100%;
		height: 300px;
	}
	.t_about_imgarea img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}	
}

/*特徴*/
.t_feature{
	background: url("../img/feature_bg.jpg")no-repeat;
	background-position: center center;
	background-size:cover;
}
.feat_inner{
	padding: 6vw 12vw;
}
.feat_inner p{
	font-size: clamp(17px,2.5vw,23px);
	font-weight: 600;
}

@media(max-width:530px){
	.feat_inner{
		padding: 14vw 0 10vw;
	}
}

/*TOP-service*/
.t_service{
	background: url("../img/bg01.jpg") no-repeat center center/100%;
}
.srevice_txtarea{
	width: 45%;
}
.srevice_linkarea{
	width: 50%;
}
.srevice_link{
	display: grid;
	grid-template-rows: repeat(3, 180px);
	gap: 10px; 
}
.srevice_link li{
	width: 100%;
}
.srevice_link a{
	position: relative;
	color: #fff;
	z-index: 0;
	overflow: hidden;
	width: 100%;
	height: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.srevice_link a .en{
	position: relative;
	font-size: 1.9rem;
	padding-bottom:15px;
	
}
.srevice_link a .en::after{
	position: absolute;
	content: '';
	width: clamp(65px, 3vw, 100px);
	height: 2px;
	background: #f7dc3e;
	bottom:10px;
	left: 50%;
	transform:translateX(-50%);
}

.srevice_link .linkimg{
	position: absolute;
	width: 100%;
	height: 100%;
	bottom:0;
	left: 30%;
	transform: translate(-50%,-80%);
	z-index: -2;
}

.srevice_link a::before{
	position: absolute;
	width: 100%;
	height: 100%;
	content: '';
	background: #333;
	opacity: .4;
	z-index: -1;
	top: 0;
	left: 0;
}

.linkimg img{
	width: 160%;
	object-fit: cover;
	object-position: center;
	transition: .4s;
}
.srevice_link a:hover .linkimg img{
	transform: scale(1.1);
	transition: .4s;
}

@media(max-width:767px){
	.srevice_txtarea,.srevice_linkarea{
	width: 100%;
	}
}
/*t_works*/
.t_works{
	background: #E1E7FF;
}


.tw_slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
	aspect-ratio: 4 / 3;	
}

.tw_slider .slick-slide {
    margin:0 10px;
}


/*TOPnews*/
.news::before{
	position: absolute;
	content: '';
	width: 30vw;
	height: 80%;
	bottom: -3vw;
	right: 1vw;
	background: url("../img/logo/logo_mark.svg")no-repeat center bottom/contain;
	opacity: .4;
	z-index: -1;
}
.news .flex{
	display: flex;

}
.ttlarea{
	width: 280px;
}
#newsWrap{
	width: calc(100% - 320px);
	height: 200px;
	overflow-y: auto;
	padding: 1rem;	
}
#newsList li{
	padding: 1rem 1.5rem;
	border-bottom: 1px dotted #666;
	transition: .4s
}
#newsList .title{
	padding-left: 2rem;
	transition: .4s
}

#newsList a:hover .title{
	letter-spacing: .2rem;
	color: #00039A;
	transition: .4s
}

#newsWrap::-webkit-scrollbar {
  width: 3px;
}

#newsWrap::-webkit-scrollbar-track {
  background-color: transparent;
}

#newsWrap::-webkit-scrollbar-thumb {
  background-color: #E1E7FF;
  border-radius: 8px;
}
@media(max-width:767px){
	.news .flex{
		display: block;
	}	
	.ttlarea{
		width: 100%;
	}
	#newsWrap{
		width: 100%;	
	}	
}
@media(max-width:500px){
	#newsWrap .up_ymd{
		font-size: 80%;
		display: block;
	}
	#newsList .title {
		display: block;
		padding-left: 1rem;
		white-space: nowrap;
	}	
}
/*contents_link*/
.contents_link{
	display: flex;
	justify-content: center;
	gap: 15px;
}
.contents_link li{
	width: calc(98% / 3 - 30px);
	height: 180px;
	overflow: hidden;
}
.contents_link a{
	display: flex;
	position:relative;
	width: 100%;
	height: 100%;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	color: #fff;
	z-index: 0;
}
.contents_link a::before{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	content: '';
	background: #333;
	opacity: .4;
	z-index: -1;
}
.con_linkimg{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -2;
}
.con_linkimg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .4s;
}
.contents_link a:hover .con_linkimg img{
	transform: scale(1.1);
	transition: .4s;
}
.contents_link a .en{
	position: relative;
	font-size: 1.8rem;
	padding-bottom:15px;
	
}
.contents_link a .en::after{
	position: absolute;
	content: '';
	width: clamp(65px, 3vw, 100px);
	height: 2px;
	background: #f7dc3e;
	bottom:10px;
	left: 50%;
	transform:translateX(-50%);
}
@media(max-width:767px){
	.contents_link{
		flex-direction: column;
	}
	.contents_link li{
		width: 98%;
		height: 180px;
		overflow: hidden;
	}
}

/*=============================
	下層共通
============================================================*/
#pagettl{
	padding: clamp(80px, 12vh, 140px) 0;
	position: relative;
	z-index: 2;
}
#pagettl::before{
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background: url("../img/pagettl.jpg")no-repeat center 20%/cover;
	filter: grayscale(1);
	top: 0;
	left: 0;
	z-index: 0;
}
#pagettl::after{
  position: absolute;
  content: '';
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 1;
}
#pagettl h1 {
	position: relative;	
	z-index: 3;
	color: #fff;
}
#pagettl h1 .en{
	font-size: 2.4rem;
	padding-right: 1rem;
	letter-spacing: .15em;
	opacity: .8;
	line-height: 1.2;
}
#pagettl h1 .ja{
	font-size: 1.5rem;
	padding-left: 2rem;
	border-left: 1px solid #fff;
}

@media (max-width: 600px){
  #pagettl h1{
    display: flex;
    flex-direction: column;
    gap: .5rem;
  }
  #pagettl h1 .ja{
    padding-left: 0;
    border-left: none;
  }
}
/*パンくず*/
.breadcrumb {
	width: 98%;
	max-width: 1600px;
	margin: 0 auto;
	padding:5px 0;
}
.breadcrumb li {
  display: inline;/*横に並ぶように*/
  list-style: none;
  font-size: 1rem;
}

.breadcrumb li:after {
  /* >を表示*/
  content: '>';
  padding: 0 0.2em;
  color: #555;
}

.breadcrumb li:last-child:after {
  content: '';
}

.breadcrumb li a {
  text-decoration: none;
  color: gray;
}

.breadcrumb li:first-child a:before {
  /*家アイコン*/
  font-family: FontAwesome;
  content: '\f015';
  font-weight: normal;
  font-size: .7rem;
  color: #171c61;
  padding: 0 5px;
	top: 0;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

/*==============
	news-detail.php用
==========================================*/
.ntitle{
	padding-bottom: 3px;
	border-bottom: 2px solid #171c61;
	position: relative;
	background: #171c61;
	color: #FFE500;
	line-height: 2;
    padding: 5px 0;
    padding-left: 4rem;
    font-size: clamp(18px, 2.3vw, 25px);
}
.ntitle::before{
	position: absolute;
	content: '';
	width: 2.8rem;
	height: 2.8rem;
	background: url("../img/logo/logo_mark.svg")no-repeat center/contain;
	top: 50%;
	left: 5px;
	transform: translateY(-50%);
}


.detail #up_ymd{
	text-align: end;
	font-size: 16px;	
}
.detail #up_ymd span{
	position: relative;
	padding-left: 25px;
}

.detail #up_ymd span::before{
	position: absolute;
	content: '\f073';
	font-family: "Font Awesome 6 Free";
	font-weight: 600;
	width: 10px;
	height: 18px;
	left: 3px;
}
.news-box{
	background: #fff;
	padding: clamp(15px,3vw,2.5rem);
}

.detailUpfile{
	max-width: 680px;
	margin: 15px 0;
}
.detailUpfile img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.detail font{
	padding-bottom: 2px;
	border-bottom: 1px solid #eee;
}

/*=============================
	SHOP
============================================================*/
.about-wrap{
  	display: flex;
	justify-content: space-between;
	align-items: center;
}
.about-wrap-txt{
	width: 58%;
	max-width: 580px;
}
.about-wrap-img{
	width: 38%;
}
.about-lead{
  font-size: clamp(1.1rem,2vw,1.3rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
}
.about-lead::before{
  content: "";
  position: absolute;
  left: -1rem;
  top: 0;
  width: 4px;
  height: 100%;
  background: #111;
}
.w-box{
	padding: 3rem;
	border-radius: 15px;
	background: #fff;
}

.shop-table tr{
	border-bottom: 1px solid #999;
}
.shop-table th,
.shop-table td{
	padding: 1rem 1.5rem;
}
.shop-table th{
	width: 28%;
	color:#666;
	font-weight:500;
}
.map{
	width: 100%;
	height: 45vh;
}
@media(max-width:767px){
	.about-wrap{
		flex-direction: column;
	}
	.about-wrap-txt,
	.about-wrap-img{
		width: 100%;
		margin-bottom: 15px;
	}	
}
@media(max-width:550px){
	.w-box{
		padding: clamp(15px,5vw,30px);
	}	
	.shop-table tr{
		border: 1px solid #999;
	}	
	.shop-table th,
	.shop-table td{
		display: block;
		width: 100%;
		padding: 1rem 1.5rem;
		text-align: center;
	}
	.shop-table th{
		background: #f5f5f5;
	}
}

/*=============================
	Gallery
============================================================*/
.gallery-lead{
  margin-bottom:2rem;
  font-size: clamp(20px,2.5vw,25px);	
  color: #171c61;
}
#gallery_wrap{
  padding-top:clamp(40px,6vw,80px);
}
#gallery_list{
columns: 4;/*段組みの数*/
padding:0 15px;/*ギャラリー左右に余白をつける*/
margin:0;
}

#gallery_list li {
    margin-bottom: 20px;/*各画像下に余白をつける*/
	overflow: hidden;
	transition: .4s;
	break-inside: avoid;
}
.photo {
	position: relative;
	display: block;
}

.detail_text {
	position: absolute;
	width: 100%;
	bottom: 0;      /* 表示位置は好みで調整 */
	left: 0;
	opacity: 0;
	pointer-events: none; /* ←重要！ */
	transition: opacity 0.3s ease;
	background: rgba(0,0,0,0.6);
	color: #fff;
	padding: 5px 10px;
}

.photo:hover .detail_text {
  opacity: 1;
}
/*ギャラリー内のイメージは横幅100%にする*/
#gallery_list img{
	width:100%;
	height:auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/
	transition: .4s;
}

#gallery_list li:hover img{
	transform: scale(1.05);
	transition: .4s;
}
/*　横幅900px以下の段組み設定　*/
@media only screen and (max-width: 900px) {
	#gallery_list{
	columns:3;
	}	
}

@media only screen and (max-width: 768px) {
	#gallery_list{
		columns:2;
		
	}	
}
.pager_link{
	text-align: end;
	margin: 10px 0;
}
.pager_link a{
	background: #171c61;
	color: #f7dc3e;
	padding: 3px 8px;
	margin-right: 5px;
}
.pager_link a.current{
	color: #fff;
}
@media (hover: none) {
  .detail_text{
    opacity: 1;
  }
}
/*=============================
	取引先一覧
============================================================*/
.partner-list{
  padding:clamp(40px,6vw,80px) 0;	
}
.partner-lead{
  font-weight:500;
  color:#555;
  line-height:1.8;
}
.partner-list{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:30px;
}
.partner-list li{
  text-align:center;
}
.partner-list img{
  max-height:60px;
  max-width:100%;
  object-fit:contain;
  margin-bottom:10px;
}

@media (max-width:900px){
  .partner-list{
    grid-template-columns: repeat(3,1fr);
  }
}

@media (max-width:768px){
  .partner-list{
    grid-template-columns: repeat(2,1fr);
    gap:20px;
  }
}
/*=============================
	設備紹介
============================================================*/
.equipment-list{
  padding:clamp(40px,6vw,80px) 0;	
  display:flex;
  flex-direction:column;
  gap:clamp(40px,6vw,80px);
}

.equipment-list li{
  display:flex;
  gap:40px;
  align-items:center;
}

.equipment-list li:nth-child(even){
  flex-direction:row-reverse;
}
.equipment-list .img{
	width: 38%;
}

.equipment-list .txt{
	width: 58%;
}
.equipment-list .txt h3{
	margin-bottom: 15px;
	border-bottom: 1px solid #171c61;
	 border-left: 3px solid #171c61;
	color:  #171c61;
	padding: 3px 1rem;
}

@media (max-width:768px){
	.equipment-list li,
	.equipment-list li:nth-child(even){
		flex-direction:column;
	}
	.equipment-list .img,
	.equipment-list .txt{
		width:100%;
	}	
	.equipment-list .txt h3{
		margin-bottom: 10px;
		padding: 6px 0.8rem;
	}
}
/*=============================
	Service
============================================================*/

.bg-light{
  background:#f5f6fb;
}

.service-block .mttl .en{
	font-size:clamp(2rem, 1.768rem + 0.98vw, 2.5rem);
}

.service-flex{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap:5%;
	margin-top: 20px;
  background:#fff;
  padding:30px;
  border-radius:20px;
}

.service-img{
  width:38%;
  position:relative;
}

.service-img::after{
  content:"Option Service";
  position:absolute;
  bottom:10px;
  right:10px;
  font-size:0.75rem;
  color:#fff;
  background:rgba(23,28,97,.8);
  padding:4px 10px;
  border-radius:20px;
}
#s02 .service-img::after{ 
	content:"Custom Service";
	background:rgba(120,80,40,.8); 
}
#s03 .service-img::after{ 
	content:"Tier Service";
	background:rgba(60,120,80,.8); 
}

.service-img img{
  width:100%;
  border-radius:15px;
}

.service-txt{
  width:58%;
}

.service-txt .lead{
  margin-bottom:25px;
  line-height:1.9;
}

.subttl{
  margin:0 0 15px;
  font-weight:600;
  color:#171c61;
}

.service-list li{
	margin-bottom:6px;
	padding:0 15px 0 1.2rem;
	position: relative;
	line-height:1.6;
}

.service-list li::before{
	position: absolute;
	content: 'ー';
	font-size: 13px;
	color:#171c61;
	top: 3px;
	left: 0;
}
.service-point{
  margin:30px 0;
  padding:1.5rem 2.5rem;
  background:#f5f6fb;
  border-radius:10px;
	border-left:4px solid #171c61;
}
.bg-light .service-point{
	background: #fff;
}
.service-point h4{
  margin-bottom:10px;
}

.service-point ul li{
	margin-bottom:12px;
	position:relative;
	padding-left: 1rem;
	border-bottom: 1px dashed #171c61;
}
.service-point ul li::before{
	position: absolute;
	content: '●';
	font-size: 8px;
	color:#171c61;
	top: 8px;
	left: 0;
}
.service-note{
  color:#555;
}

.gallery-slide img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.gallery-slide .slick-slide {
    margin:0 10px;/*スライド左右の余白調整*/
}

/* SP */
@media (max-width:768px){
  .service-flex{
    flex-direction:column;
  }
  .service-img,
  .service-txt{
    width:100%;
  }
}
@media (max-width:550px){
	.service-point{
	  margin:30px 0;
	  padding:1.5rem ;
	}
}
/*取扱メーカー*/
.brand-wrap{
  margin-top:30px;
}

.brand-list{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:15px;
  margin-bottom:20px;
}

.brand-list li{
  display:flex;
  align-items:center;
  justify-content:center;
}

.brand-list img{
  max-height: 90%;
  max-width:100%;
  object-fit:contain;
	box-shadow: 2px 2px 4px #7c9ac1;	
}

.brand-note{
  color:#666;
  font-size:0.9rem;
}


@media (max-width:600px){
  .brand-list{
    grid-template-columns:repeat(2,1fr);
    gap:10px;
  }
}








