@charset "UTF-8";



* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

a,
a:visited,
a:focus,
a:active,
a:link {
  text-decoration: none;
  outline: 0;
}

a {
  color: currentColor;
  transition: .2s ease-in-out;
}

h1, h2, h3, h4 {
  margin: .3em 0;
}

ul {
  padding: 0;
  list-style: none;
}

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



/*top.css*/
/* ボタン */
.btn {
  max-width: 120px;
  background-color: #fff;
  display: block;
  border: solid 1px #1f1f1f;
  font-size: 12px;
  padding: 10px 0;
  text-align: center;
  position: relative;
  z-index: 10;
}
.btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
  background-color: #1f1f1f;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
}
.btn:hover {
  color: #fff;
  opacity: 1;
}
.btn:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

/* Inview */
.fadein {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1s;
}
.fadein.inview {
  opacity: 1;
  transform: translateY(0);
}

/*-------------------------------------------
Mainvisual
-------------------------------------------*/
.mainvisual {
  height: 100%;
  margin-bottom: 0;
  position: relative;
}
.mainvisual .fade-img img {
  width: 100%;
  height: 600px;
  object-fit: cover;

}
.mainvisual .fade-img li {
  width: 100%;
  position: absolute;
  right: 0;
  opacity: 0;
 /* animation: fade 15s infinite;*/
}


.mainvisual .catchphrase {
  font-family: 'Zen Old Mincho', serif;
  font-size: 2rem;
	font-size: clamp(68p, 2vw, 100px);
	font-weight: bold;
  text-shadow: 1px 1px 3px #fff;
  position: absolute;
  top: 20%;
  left: 10%;
}

.mainvisual .catchlogo {
	width:80%;
  position: absolute;
  top: 35%;
  left: 10%;
}




/*---------------------------------------------------------------------------
ニュースブロック　PC
---------------------------------------------------------------------------*/

/*h2見出し（共通）*/
h2 {
	margin: 0;padding: 0;
	height: auto;
	font-size: 2.4rem;		/*文字サイズ。240%。*/
	font-weight: normal;	/*h要素のデフォルトの太字を標準に*/
		
	margin-bottom: 2vw;		/*下にスペースを空ける*/
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
}
/* セクションタイトル */
h2 .section-title {
  margin: 0 0 -1vw 4vw;
  position: relative;
  z-index: 10;
	/*
  color:#5E5D5D;*/
	color:#5c789c;
	font-size: 10vw;
	/*font-size:clamp(3rem, 0.786rem + 4.62vw, 4.25rem);*/
  font-weight: 500;
  letter-spacing: 0em;
}


h2.ttlcenter {
	align-items: center;	/*見出しをセンタリングする場合*/

}

/*h2見出しのサブテキスト（sub-text）*/
h2 span.sub-text {
	display: inline-block;
	border-top: 1px solid var(--primary-color);	/*上の線の幅、線種、varは色のことで冒頭のprimary-colorを読み込みます。*/
	font-size: 1.2rem;		/*文字サイズ*/
	opacity: 0.6;			/*透明度。色が60%出た状態。*/
	letter-spacing: 0.1rem;	/*文字間隔を少しだけ広く*/
	padding-top: 2rem;		/*上に空ける余白。ラインとの間の余白調整です。お好みで。*/
	margin-top:2vw;
}

/*見出し上のラインを消すスタイル*/
h2.no-line span.sub-text {
	border: none;
	padding-top: 0;
}

/*h3見出し（共通）*/
h3 {
	font-weight: 600;
	font-size: 1.4rem;	/*文字サイズ140%*/
}

/*-------------------------------------------
ニュース　PC
-------------------------------------------*/

.news {
	margin:0;
	padding:0 2em;
}

.new {
    display: grid;	/*gridを使う指定*/
    grid-template-columns: auto 1fr;	/*横並びの指定。日付とアイコン部分の幅は自動で、内容が入るブロックは残り幅一杯とる。*/
	max-width: 800px;	/*最大幅*/
	margin: 0 auto;
	padding:0;
}

/*日付、記事（共通）*/
.new dt,.new dd {
	border-bottom: 1px solid rgba(0,0,0,0.1);	/*下線の幅、線種、0,0,0は黒のことで0.1は色が10%出た状態。*/
	padding-top: 0.5rem;				/*上の余白*/
	padding-bottom: 1rem;			/*下の余白*/
}

/*日付*/
.new dt {
	padding-right: 4rem;			/*右の余白*/
}




/*-------------------------------------------
Company　PC
-------------------------------------------*/
.company {
	  margin-bottom: 80px;
	/*border-bottom:  solid 1px #cccccc;*/
}

/* セクションタイトル */
.company .section-title {
  margin: 0 0 -5vw 4vw;
  position: relative;
  z-index: 10;
	/*
  color:#5E5D5D;*/
	color:#5c789c;
	font-size: 10vw;
	/*font-size:clamp(3rem, 0.786rem + 4.62vw, 4.25rem);*/
  font-weight: 500;
  letter-spacing: 0em;
}



.company .flex {
  display: flex;
  align-items: center;
	background-color: #bcd9f9;
}

.company .flex .img {
  width: 80%;
}
.company .flex .img img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}
.company .flex .text {
  width: 60%;
	height: auto;
  /*background-color: #fff;*/
  padding: 0% 5% 0% 5%;
	margin-top:0%;
	margin-left:-10%;
	 text-align: justify;
  text-justify: inter-ideograph; /* 和文に適した値 */
}

.company .text .title {
	width:90%;
	padding-left:5%;
	padding-bottom: 1em;
  	margin-bottom: 0px;
  font-family: 'Zen Old Mincho', serif;
  font-size: 24px;
}

.company .text .description {
 width:90%;
	padding-left:5%;
  margin-bottom: 00px;
}

.company .text .description p{
  font-size: 15px;
  line-height: 1.8;
	
}


/*グラスモーフィズム*/
.glass {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	 margin-bottom: 0px;
}


/*ボックス上部の大きな装飾テキスト*/
.deco-text {
	position: absolute;
	right: 0;
	top: -13.5vw;		/*文字とボックスの配置バランスです。お好みで調整して下さい。*/
	color: #e8eaee;		/*文字色*/
	font-size: 7vw;		/*下の.box1のmargin-topと合わせる*/
	line-height: 1;
}







/*-------------------------------------------
Products　PC

.products {
  margin-bottom: 120px;
  position: relative;
}
.products::after {
  content: "";
  width: 70%;
  height: 300px;
  background-color: #fafafa;
  display: block;
  position: absolute;
  top: 6vw;
  right: 0;
  z-index: -10;
}
.products .text {
  width: 70%;
  padding: 0 5%;
  margin-left: auto;
}
.products .text .section-title {
  margin-bottom: 30px;
}
.products .text .description {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 60px;
}
.products .products-list-area {
  display: flex;
  margin-bottom: 40px;
  overflow-x: hidden;
}
.products .products-list-area .products-list {
  display: flex;
  animation: slide-left 60s infinite linear both;
}
.products .products-list-area .products-list li {
  width: calc(100vw / 3);
}
.products .products-list-area .products-list li img {
  width: 100%;
}
-------------------------------------------*/
@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.products .btn {
  margin: 0 auto;
}


/*-------------------------------------------
Service　PC
-------------------------------------------*/
.service-wrap {
  max-width: 80%;
  padding: 0 20px;
  margin: 0 auto;
}


/* セクションタイトル-Small */
.section-title-s {
  font-size: 32px;
  font-weight: 500;
  margin-top: 30px;
	margin-bottom: 30px;
  position: relative;
}
.section-title-s span {
  max-width:95%;
  display: block;
  padding: 0 20px;
  margin: 0 auto;
}
.section-title-s::before {
  content: "";
  /*width: calc((100% - 500px) / 2);*/
	width: calc((100% - 0) / 2);
  height: 1px;
  background-color: #1f1f1f;
  position: absolute;
  top: 12px;
  left: 0;
}
/* セクションタイトル 
.section-title {
  margin: 0 0 0vw 4vw;
  position: relative;
  z-index: 10;
text-align: right;
}
*/


.section-title {
	position: absolute;
	right: 0;
  margin: 0 0 -2vw 4vw;
  position: relative;
  z-index: 10;
	/*
  color:#5E5D5D;*/
	color:#A7BAD3;
font-size: 6vw;
	/*font-size:clamp(3rem, 0.786rem + 4.62vw, 4.25rem);*/
  font-weight: 500;
  letter-spacing: -0em;
}

/*ボックス上部の大きな装飾テキスト*/
.deco-text {
	position: absolute;
	right: 0;
	top: -13.5vw;		/*文字とボックスの配置バランスです。お好みで調整して下さい。*/
	color: #e8eaee;		/*文字色*/
	font-size: 7vw;		/*下の.box1のmargin-topと合わせる*/
	line-height: 1;
}

/*-------------------------------------------
Products　PC
-------------------------------------------*/

#service {
  margin-bottom: 120px;
}

#service .section-title {
	position: absolute;
	right: 0;
  margin: 0 0 -2vw 4vw;
  position: relative;
  z-index: 10;
	/*
  color:#5E5D5D;*/
	color:#506E97;
font-size: 8vw;
	/*font-size:clamp(3rem, 0.786rem + 4.62vw, 4.25rem);*/
  font-weight: 500;
  letter-spacing: -0em;
}


#service .item {
  display: flex;
  align-items: center;
  box-shadow: 5px 5px 25px #ccc;
  margin-bottom: 40px;
}
#service .item.store {
  flex-direction: row-reverse;
}
#service .item .text {
  width: 44%;
  padding: 1% 5%;
}
#service .item .text .title-ja {
  font-size: 12px;
  margin-bottom: 5px;
}
#service .item .text .title-en {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
}
#service .item .text .description {
  font-size: 14px;
  margin-bottom: 20px;
}
#service .item .text .view-more {
  font-size: 14px;
  text-align: right;
  text-decoration: underline;
}

#service .item .img {
  width: 56%;
  overflow: hidden;
}
#service .item.interior .img {
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}
#service .item.store .img {
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}
#service .item .img img {
  transition: transform 0.8s ease;
}
#service .item:hover .img img {
  transform: scale(1.1);
}






/*-------------------------------------------
計測事例　Works　PC
-------------------------------------------*/
.works {
	width:100%;
  	display: flex;
  	justify-content: space-between;
  	margin: 0 auto;
	padding:0;
  	position: relative;
}


/* セクションタイトル */
.works .section-title {
    margin: 0 0 -5vw 0vw;
    position: relative;
    z-index: 10;
      /*
    color:#5E5D5D;*/
    color:#5c789c;
	font-size: 9vw;
      /*font-size:clamp(3rem, 0.786rem + 4.62vw, 4.25rem);*/
    font-weight: 500;
    letter-spacing: 0em;
}
.works::after {
  content: "";
  width: 70%;
  height: 70%;
  min-height: 420px;
  background-color: #DDD7D7;
  display: block;
  position: absolute;
  top: 6vw;
  left: 0;
  z-index: -10;
}

.works .text {
	width:40%;
  padding: 0 6% 0 5%;
}
.works .text .section-title {
  margin-bottom: 40px;
	
}

.works .text .description {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 00px;
}
.works .text .btn {
  margin-top: 30px;
	margin-bottom: 0;
}
.works .works-list {
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  margin-top: 170px;
	
}
.works .works-list img{
	background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0) 50%, rgba(0,0,0,1));
 
}
.works .works-list li {
  max-width: 500px;
}

/*-------------------------------------------
計測事例　PC
-------------------------------------------*/

.keisoku-list {
	  max-width: 1000px;
	margin-right: 20px;
  margin-bottom: 0px;
}
/*２カラムリスト*/
.keisoku-list .post-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  margin-bottom: 20px;
 margin-top: 170px;
}



.keisoku-list .post-list li {
   box-shadow: 2px 2px 4px gray;
}

.keisoku-list .post-list li .img {
  margin-bottom: 0px;
	
}
.keisoku-list .post-list li .img img {
  border-radius: 0px;
}
.keisoku-list .post-list li time {
  font-size: 12px;
}
.keisoku-list .post-list li .title {
  font-size: 14px;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-weight: bold;
	margin-top: 0px;
  margin-bottom: 0px;
	padding:5px;
	background:#E7E7E7;
text-align: center;
}
		
		
.keisoku-list .post-list li .text {
	width:100%;
  font-size: 14px;
  margin-top: 0px;
	background:#E7E7E7;
}




/* ボタン */
.btn {
  margin: 0 auto 80px;
}




/*-------------------------------
FAQ　よくあるご要望
---------------------------------*/

.faq-wrap {
	background: #dbeaf8;
	margin-top: 5vw;
	padding: 20px 0;
}

#faq {
  max-width: 900px;
  margin: auto;
  padding: 0 15px;
  text-align: center;
}

section.faq {
  padding-top: 3em;
  padding-bottom: 3em;

}

#faq ul {
  text-align: left;
}
.transition, p, ul li i:before, ul li i:after {
  transition: all 0.3s;
}

#faq .no-select, #faq h2 {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
}

#faq h1 {
  color: #000;
  margin-bottom: 30px;
  margin-top: 0;
}

#faq h2 {
  color: #cc071e;
  font-family: 'hm_light', sans-serif;
  font-size: 20px;
  line-height: 34px;
  text-align: left;
  padding: 15px 15px 0;
  text-transform: none;
  font-weight: 300;
  letter-spacing: 1px;
  display: block;
  margin: 0;
  cursor: pointer;
  transition: .2s;
}

#faq p {
  color: #333;
  text-align: left;
  font-family: 'hm_light', sans-serif;
  font-size: 14px;
  line-height: 1.45;
  position: relative;
  overflow: hidden;
  max-height: 250px;
  will-change: max-height;
  contain: layout;
  display: inline-block;
  opacity: 1;
  transform: translate(0, 0);
  margin-top: 5px;
  margin-bottom: 15px;
  padding: 0 50px 0 15px;
  transition: .3s opacity, .6s max-height;
  hyphens: auto;
  z-index: 2;
}

#faq ul {
  list-style: none;
  perspective: 900;
  padding: 0;
  margin: 0;
}
#faq ul li {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0;
  /*padding-bottom: 4px;*/
  /*padding-top: 18px;*/
  background: #fff;
  box-shadow: 0 3px 10px -2px rgba(0,0,0,0.1);
  -webkit-tap-highlight-color: transparent;
}
#faq ul li + li {
  margin-top: 15px;
}
#faq ul li:last-of-type {
  padding-bottom: 0;
}
#faq ul li i {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 28px;
  right: 15px;
}
#faq ul li i:before, ul li i:after {
  content: "";
  position: absolute;
  background-color: #cc071e;
  width: 3px;
  height: 9px;
}
#faq ul li i:before {
  transform: translate(-2px, 0) rotate(45deg);
}
#faq ul li i:after {
  transform: translate(2px, 0) rotate(-45deg);
}
#faq ul li input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  touch-action: manipulation;
}
#faq ul li input[type=checkbox]:checked ~ h2 {
  color: #000;
}
#faq ul li input[type=checkbox]:checked ~ p {
  /*margin-top: 0;*/
  max-height: 0;
  transition: .3s;
  opacity: 0;
  /*transform: translate(0, 50%);*/
}
#faq ul li input[type=checkbox]:checked ~ i:before {
  transform: translate(2px, 0) rotate(45deg);
}
#faq ul li input[type=checkbox]:checked ~ i:after {
  transform: translate(-2px, 0) rotate(-45deg);
}




/*-----------------------
トピックス
------------------------*/

.topics-wrap {
	margin:1vw 0;
	border:solid 1px #ccc;
}
.topics-box{
  	position: relative;
	border:solid 1px #ccc;
	height:200px auto;
	box-shadow: 0 0 8px gray;
}
.topics-box_inner{
  padding: 1em;
	  color:  #4D4D4D;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
font-size:1em;
	line-height: 1.4em;
}
.topics-box:before,
.topics-box:after{
  content: "";
  width: 4em;
  height: 4em;
  position: absolute;
}
.topics-box::before{
  border-top: 1px solid #4D4D4D;
  border-left: 1px solid #4D4D4D;
}
.topics-box::after{
  border-bottom: 1px solid #4D4D4D;
  border-right: 1px solid  #4D4D4D;
  right: 0;
  bottom: 0;
}
.topics-box h3{
  margin: 0 0 0.5em;
	line-height: 1.5em;
}
.topics-box h3:first-letter{
  font-size: 1.4em;
  color:  #00000;
}

.colitems {
  display: flex;
  justify-content: space-around;
}
.colitem {
	padding: 8px 20px;
  margin: 2em 1em;
  width: 95%;
  height: auto;
  background-color: #fff;
  color: #000;
}

/*-------------------------------------------
Faq & Contact
-------------------------------------------*/
.faq-contact {
  display: flex;
  justify-content: space-between;
	margin-top: 3em;
  padding: 0 5% 80px;
}
.faq-contact .item {
  width: 48%;
  position: relative;
}
.faq-contact .item::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0) 50%, rgba(0,0,0,1));
  position: absolute;
  top: 0;
  left: 0;
}
.faq-contact .item .title {
  color: #fff;
  position: absolute;
  left: 25px;
  bottom: 20px;
}
.faq-contact .item .title .en {
  display: block;
  font-size: 4vw;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.faq-contact .item .title .ja {
  display: block;
  font-size: 14px;
}
.faq-contact .item .arrow {
  width: clamp(85px, 10vw, 140px);
  position: absolute;
  right: 25px;
  bottom: 20px;
}
.faq-contact .item .arrow img {
  width: 100%;
}
/*-------------------------------------------
バナー
-------------------------------------------*/

#banner {
		background: #ccc;
	margin-left:0em;
	margin-right:0em;
	margin-bottom: 0;
	padding-top: 1rem;
	padding-bottom:0.5em;
}

	/*listブロック全体を囲むブロック*/
.list-grid2 {
		display: grid;
		grid-template-columns: repeat(3, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 3vw;	/*ブロックの間に空けるマージン的な指定*/
		margin-left:1em;
		margin-right:1em;
		padding-bottom: 1rem;
		text-align: center;
		vertical-align: middle;
	}

	/*ボックス１個あたり*/
.list-grid2 .list {
		margin-bottom: 0;	/*下に空けるスペースをなくす*/
	}


.list-grid2.list * {margin: 0;padding: 0;}

/*ボックス１個あたり*/
.list-grid2 .list {
    display: grid;
	margin-bottom: 2rem;	/*ボックスの下に空けるスペース*/
	
}

/*ボックス内のp要素*/
.list-grid2 .list p {
	font-size: 0.85rem;	/*文字サイズを85%に*/
	line-height: 1.5;	/*行間を狭くする*/
}

/*ボックス１個あたり*/
.list-grid2 .list {
	padding: 0rem;			/*ボックス内の余白。１文字分。*/
	background: #ccc;		/*背景色*/
	color: #111;			/*文字色*/
    grid-template-rows: auto 1fr auto;	/*１つ目（この場合はfigure要素のサイズ）と「詳しくみる」ボタンの高さは自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
	/*box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}

/*ボックス内のfigure画像*/
.list-grid2 .list figure {
	margin: -1rem;			/*画像を枠いっぱいに表示させる為に上の「.list-grid1 .list」のpadding分をネガティブマーインで指定*/
	margin-bottom: 0.5rem;	/*画像の下に空けるスペース*/
}

/*ボックス内のfigure画像*/
.list-grid2 .list figure {
	margin: 0 auto;
	padding:0;
}

/*ボックス内のfigure画像*/
.list-grid2 .list  p{
	text-align: center;
	margin: 0 auto;
	padding:0;
}



/*-------------------------------------------
タブレット
-------------------------------------------*/
	@media screen and (max-width:1024px) {
/*ブロック全体*/
.news {
	margin:0;
	padding:0 2em;
}


.new {
    display: grid;	/*gridを使う指定*/
    grid-template-columns: auto 1fr;	/*横並びの指定。日付とアイコン部分の幅は自動で、内容が入るブロックは残り幅一杯とる。*/
	max-width: 550px;	/*最大幅*/
	margin: 0 auto;
}
		/*日付、記事（共通）*/
.new dt,.new dd {
	border-bottom: 1px solid rgba(0,0,0,0.1);	/*下線の幅、線種、0,0,0は黒のことで0.1は色が10%出た状態。*/
	padding-top: 0.5rem;				/*上の余白*/
	padding-bottom: 1rem;			/*下の余白*/
}

/*日付*/
.new dt {
	padding-right: 1rem;			/*右の余白*/
}
		
		/*-------------------------------------------
Service　PC
-------------------------------------------*/
.service-wrap {
  max-width: 90%;
  padding: 0 20px;
  margin: 0 auto;
}

		
		
}







/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 767px) {
  /* セクションタイトル */
  .section-title-s {
    margin-bottom: 10px;
	    letter-spacing: 0.05em;
	  padding-left: 5vw;
  }
  .section-title-s::before {
    content: none;
  }



/*-------------------------------------------
メインビジュアル SP
-------------------------------------------*/
  .mainvisual {
    height: 100%;
    margin-bottom: 0;
  }
  .mainvisual .fade-img img {
    height: 400px;
  }
  .mainvisual .fade-img li {
    width: 100%;
  }
  
.mainvisual .catchphrase {
  font-family: 'Zen Old Mincho', serif;
  font-size: 20px;
  text-shadow: 1px 1px 3px #fff;
  position: absolute;
  top: 20%;
  left: 10%;
}

.mainvisual .catchlogo {
	width:80%;
  position: absolute;
  top: 40%;
  left: 10%;
}
	
	
 /*-------------------------------------------
ニュース SP
 -------------------------------------------*/

.news {
	margin:0;
	padding:0 3em;
}


.new {
    display: grid;	/*gridを使う指定*/
    grid-template-columns: auto 1fr;	/*横並びの指定。日付とアイコン部分の幅は自動で、内容が入るブロックは残り幅一杯とる。*/
	max-width: 550px;	/*最大幅*/
	margin: 0 auto;
}
		/*日付、記事（共通）*/
.new dt,.new dd {
	border-bottom: 1px solid rgba(0,0,0,0.1);	/*下線の幅、線種、0,0,0は黒のことで0.1は色が10%出た状態。*/
	padding-top: 0.5rem;				/*上の余白*/
	padding-bottom: 1rem;			/*下の余白*/
}

/*日付*/
.new dt {
	padding-right: 1rem;			/*右の余白*/
}
	
		
 /*-------------------------------------------
company SP
 -------------------------------------------*/
	
  .company {
    margin-bottom:60px;
  }
  .company .section-title {
	      font-size: 10vw;
    margin: 0 0 -7vw;
    text-align: center;
	      letter-spacing: -0.05em;
	  padding-left: 5vw;
  }

  .company .flex {
    flex-direction: column;
	  background-color:#fff;
  }
		.company .flex h2.ttlcenter {
	align-items: center;	/*見出しをセンタリングする場合*/		
			
}

	
  .company .flex .img {
    width: 100%;
  }
  .company .flex .img img {
    height: 300px;
  }
	
	
	
  .company .flex .text {
    width: 100%;
    margin-left: 0;
 height: 350px;
  background-color: #fff;
  padding: 0% 0 0% 10%;
  margin: 0 0 0 -8%;
}
	.company .flex .text {
  width: 100%;
	height: 450px;
  /*background-color: #fff;*/
  padding: 0;
  margin: 0%;
	 text-align: justify;
  text-justify: inter-ideograph; /* 和文に適した値 */
}
	
  .company .flex .text .title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .company .flex .text .description {
    margin-bottom: 20px;
  }
  
  /*-------------------------------------------
  Products　SP

  .products {
    margin-bottom: 60px;
  }
  .products::after {
    width: 100%;
    height: 250px;
    top: 10vw;
  }
  .products .text {
    width: 100%;
    padding: 0 20px;
  }
  .products .text .section-title {
    text-align: center;
  }
  .products .text .description {
    margin-bottom: 20px;
  }
  .products .products-list-area {
    margin-bottom: 20px;
  }
  
	  -------------------------------------------*/
	
	


  /*-------------------------------------------
  Service　SP
  -------------------------------------------*/
  #service {
    margin-bottom: 60px;
  }
	
#service .section-title {
	position: absolute;
	right: 0;
  margin: 0 0 -3vw 4vw;
  position: relative;
  z-index: 10;
	/*
  color:#5E5D5D;*/
	color:#506E97;
font-size: 11vw;
	/*font-size:clamp(3rem, 0.786rem + 4.62vw, 4.25rem);*/
  font-weight: 500;
  letter-spacing: -0em;
}

  #service .item {
    flex-direction: column;
    margin-bottom: 20px;
  }
  #service .item.store {
    flex-direction: column;
  }
  #service .item .text {
    width: 100%;
    padding: 20px;
  }
  #service .item .text .title-en {
    font-size: 26px;
  }
  #service .item .img {
    width: 100%;
  }
  #service .item.interior .img,
  #service .item.store .img {
    clip-path: none;
  }
 
	
	
  /*-------------------------------------------
  Works　SP
  -------------------------------------------*/
  .works {
    flex-direction: column;
    margin-bottom: 60px;
  }
  .works::after {
    width: 100%;
    height: 90%;
    min-height: auto;
    top: 10vw;
  }
  .works .text {
    padding: 0 20px;
    margin-bottom: 40px;
  }
.works .text {
	width:100%;
  padding: 0 6% 0 5%;
}

  .works .text h2 .section-title {	      
	  font-size: 24vw;
	  font-weight:500;

	letter-spacing: 0.05em;
	  padding-left: 3vw;
	  	  padding-bottom: -50vw;
  }
	
	
  .works .works-list {
    margin-top: 0;
  }
.works .text .description {
text-align: center;
}
	
/*-------------------------------------------
  計測事例　SP
  -------------------------------------------*/
	
  .keisoku-list {
	  width: 100%;
    margin:0;
  }
  .keisoku-list .post-list {
    /*grid-template-columns: repeat(2, 1fr);*/
	 /*  gap: 5px;*/
 grid-template-columns: repeat(1, 1fr);
  gap: 10px;
	  /*display: block;*/
	   margin-top:0;
	    margin-left: 5%;
	    margin-right:  5%;

  }


  /* ボタン */
  .btn {
    margin: 0 auto 60px;
  }
	
	
/*-----------------------
トピックス　SP
------------------------*/
.topics-wrap {
	margin:2vw 0;
	border:solid 1px #ccc;
}
.topics-box{
  position: relative;
	border:solid 1px #ccc;
	height:auto;
	box-shadow: 0 0 8px gray;
}
.colitems {
    flex-direction: column;
  }

.colitem {
  margin: 0 1em;
  width: 95%;
  height: auto;
  background-color: #fff;
}
	
	
  /*-------------------------------------------
  Faq & Contact　SP
  -------------------------------------------*/
  .faq-contact {
    flex-direction: column;
    padding: 0 20px 40px;
  }
  .faq-contact .item {
    width: 100%;
    margin-bottom: 20px;
  }
  .faq-contact .item .title .en {
    font-size: 8vw;
  }
  /*-------------------------------------------
/*list-grid2（3カラムボックス）バナー　SP
---------------------------------------------------------------------------*/

	/*listブロック全体を囲むブロック*/
.list-grid2 {
		display: grid;
		grid-template-columns: repeat(1, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 1vw;	/*ブロックの間に空けるマージン的な指定*/
		margin-left:1em;
		margin-right:1em;
		padding-bottom: 0;
		text-align: center;
		vertical-align: middle;
	}

	/*ボックス１個あたり*/
.list-grid2 .list {
		margin-bottom: 0;	/*下に空けるスペースをなくす*/
	}
.list-grid2.list * {margin: 0;padding: 0;}

/*ボックス１個あたり*/
.list-grid2 .list {
    display: grid;
	margin-bottom: 2rem;	/*ボックスの下に空けるスペース*/
	
}


}