@charset "UTF-8";

/*------------------------------------------------
 変数
------------------------------------------------*/
:root {
	--key-color: #1fb3e4;
	--key-color-80: #33a3de;
	--key-color-70: #095369;
	--key-color-50: #80c5ea;
	--key-color-20: #cce8f7;
	--key-color-15: #eef2f566;
	--key-color-10: #eaf3f6;
	--key-color-5: #f2f9fd;
	--grey-color: #f5f5f5;
	--red-color: #e30613;
}

@custom-media --motionOK (prefers-reduced-motion: no-preference);
@custom-media --dark (prefers-color-scheme: dark);
@custom-media --light (prefers-color-scheme: light);

.gui-split-button {
  --theme:             hsl(220 75% 50%);
  --theme-hover:  hsl(220 75% 45%);
  --theme-active:  hsl(220 75% 40%);
  --theme-text:      hsl(220 75% 25%);
  --theme-border: hsl(220 50% 75%);
  --ontheme:         hsl(220 90% 98%);
  --popupbg:         hsl(220 0% 100%);

  --border: 1px solid var(--theme-border);
  --radius: 6px;
  --in-speed: 50ms;
  --out-speed: 300ms;

  @media (--dark) {
    --theme:             hsl(220 50% 60%);
    --theme-hover:  hsl(220 50% 65%);
    --theme-active:  hsl(220 75% 70%);
    --theme-text:      hsl(220 10% 85%);
    --theme-border: hsl(220 20% 70%);
    --ontheme:         hsl(220 90% 5%);
    --popupbg:         hsl(220 10% 30%);
  }
}

/*------------------------------------------------
 Base style
------------------------------------------------*/
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
}
html{
	/*ページ読み込み時のウインドウの高さを基準とする*/
	height: 100%;
	/* スムーズスクロール */
	scroll-behavior: smooth;
	/* スマホでスムーズスクロール */
	-webkit-overflow-scrolling: touch;
	scroll-padding-top: 200px;
}
@media (max-width: 480px) {
	html {
		-webkit-overflow-scrolling: touch;
	scroll-padding-top: 50px;
	}
}
body {
  background-color: #fff;
	color: #095369; 
	position: relative;
}
html, body {
  width: 100%;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video,
input,textarea {
	font-size: 15px;
	font-family: "Roboto", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
	font-feature-settings: "palt";/* 文字間自動調整 */
	font-optical-sizing: auto;
  line-height: 1.7;
	/*letter-spacing: 0.06rem;*/
	letter-spacing: 0.02rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 100px 15px;
	/*padding: 150px 15px;*/
  box-sizing: border-box;
}
img {
	display: block;
  max-width: 100%;
  height: auto;
}
.movie {
	line-height: 100%;
	display: flex;
	align-items: end;
}
p {
  line-height: 2;
}
small {
  font-size: 80%;
}
.big {
  font-size: 120%;
}
a {
  text-decoration: none;
  color: #212529;;
}
  /* a:visited {
    color: #333;
} */
a:hover{
  transition: all .4s;
}
/* PCとスマホで表示切り替え PC=表示、SP=非表示 */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
/* PCとスマホで改行切り替え pc_br=表示、SP=非表示 */
.pc_br {
  display: block;
}
.sp_br {
  display: none;
}
.inner_1140 {
	margin: 0 auto;
	padding: 60px 0 100px 0;
	max-width: 1140px;
}
.inner_1000 {
	margin: 0 auto;
	padding: 60px 0 100px 0;
	max-width: 1000px;
}
.inner_960 {
	margin: 0 auto;
	padding: 60px 0 100px 0;
	width: 960px;
}
.inner_800 {
	margin: 0 auto;
	padding: 60px 0 100px 0;
	width: 800px;
}
.inner_100p {
	margin: 0 auto;
	width: 100%;
}
.inner_90p {
	margin: 0 auto;
	width: 90%;
	max-width: 1140px;
}
.inner_80p {
	margin: 0 auto;
	width: 80%;
	max-width: 1140px;
}
.inner_70p {
	margin: 0 auto;
	width: 70%;
	max-width: 1140px;
}
.inner_60p {
	margin: 0 auto;
	width: 60%;
	max-width: 1140px;
}
.narrow {
	letter-spacing: -0.02em;
}
.bold {
	font-weight: bold;
}
.blue {
	color: var(--key-color);
}
.red {
	color: #d70051;
}
.img_center {
	margin: 0 auto;
}
/* PCのときは電話番号をクリックさせない */
a[href^="tel"] { 
	pointer-events: none;
}
@media (max-width: 1280px) {
	body {
	/*	padding-top: 76px;*/
	}
}
@media (max-width: 1140px) {
  .container{
		max-width: none;
    padding: 70px 30px;
  }
	.inner_1140 {
		width: auto;
		padding: 40px 15px 30px 15px;
	}
	.inner_1000 {
		width: auto;
		padding: 40px 15px 30px 15px;
	}
	.inner_960 {
		width: auto;
		padding: 40px 15px 30px 15px;
	}
	.inner_800 {
		width: auto;
		padding: 40px 15px 30px 15px;
	}
	.inner_80p {
		width: 90%;
	}
	.inner_70p {
		width: 90%;
	}
	.inner_60p {
		width: 90%;
	}
}
@media (max-width: 480px) {
	html, body, div, span, applet, object, iframe,
	h1, h2, h3, h4, h5, h6, p, blockquote, pre,
	a, abbr, acronym, address, big, cite, code,
	del, dfn, em, img, ins, kbd, q, s, samp,
	small, strike, strong, sub, sup, tt, var,
	b, u, i, center,
	dl, dt, dd, ol, ul, li,
	fieldset, form, label, legend,
	table, caption, tbody, tfoot, thead, tr, th, td,
	article, aside, canvas, details, embed,
	figure, figcaption, footer, header, hgroup,
	menu, nav, output, ruby, section, summary,
	time, mark, audio, video,
	input,textarea {
		font-size: 14px;
	}
	.pc_br {
		display: none;
	}
	.sp_br {
		display: block;
	}
	/* スマホの時にはクリックできるように */
	a[href^="tel"] {
		pointer-events: auto;
		text-decoration: underline;
	}
}

@media (max-width: 1024px) {
  /* PCとスマホで表示切り替え PC=非表示、SP=表示 */
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
@media (max-width: 768px) {
  html{
    font-size: 14px;
  }
}
@media (max-width: 480px) {
}


/*------------------------------------------------
マージン・パディング
------------------------------------------------*/
.mb_120 { margin-bottom: 120px !important; }
.mb_80 { margin-bottom: 80px !important; }
.mb_60 { margin-bottom: 60px !important; }
.mb_40 { margin-bottom: 40px !important; }
.mb_20 { margin-bottom: 20px !important; }
@media only screen and (max-width:768px) {	
	.mb_120 { margin-bottom: 100px !important; }
	.mb_80 { margin-bottom: 30px !important; }
	.mb_60 { margin-bottom: 20px !important; }
	.mb_40 { margin-bottom: 20px !important; }
	.mb_20 { margin-bottom: 15px !important; }
}
@media only screen and (max-width:480px) {
	.mb_120 { margin-bottom: 50px !important; }
}




/*------------------------------------------------
 ライトボックス
------------------------------------------------*/
.lightbox .lb-image {
	border: none !important;
	border-radius: 0 !important;
}
.lb-outerContainer {
	border-radius: 0 !important;
	background-color: transparent !important;
}


/*------------------------------------------------
 見出し　.mds_01 
------------------------------------------------*/
.mds_01 {
	margin-bottom: 3rem;
	font-size: 48px;
	font-family: "Roboto", sans-serif;
  font-weight: 500;
	text-align: center;
	line-height: 1.4;
	color: var(--key-color);
}
.mds_01 span {
	display: block;
	font-weight: bold;
	font-size: 0.95rem;
	letter-spacing: 0.15rem;
	color:  #095369;
}

@media only screen and (max-width: 640px) {
    .mds_01 {
        margin-bottom: 2.5rem;
        font-size: 38px;
    }
}

@media only screen and (max-width: 480px) {
    .mds_01{
        margin-bottom: 2rem;
        font-size: 22px;
    }
}

/*------------------------------------------------
 見出し　.mds_02
------------------------------------------------*/
.mds_02 {
	margin-bottom: 1rem;
	padding: 0.5rem 1rem;
	background-color: var(--key-color-80);
	border-radius: 4px;
	font-weight: bold;
	font-size: 22px;
	line-height: 1.4;
	color: #fff;
	letter-spacing: 0.1rem;
}



/*------------------------------------------------
 見出し　.mds_03
------------------------------------------------*/
.mds_03 {
	margin-bottom: 1rem;
	padding: 0.5rem 0.5rem 0.3rem 0.5rem;
	border-bottom: 3px solid var(--key-color-80);
	font-weight: bold;
	font-size: 22px;
	line-height: 1.4;
}


/*------------------------------------------------
 背景つきbox　.bg_box
------------------------------------------------*/
.bg_box_01 {
	padding: 2.5rem 0;
	background-color: var(--key-color-10);
}
.bg_box_02 {
	padding: 2.5rem 0;
	background-color: var(--key-color-15);
}
.bg_box_03 {
	padding: 2.5rem 0;
	background-color: #999;
}
@media screen and (max-width:480px) {
	.bg_box_01,.bg_box_02 {
		padding: 1.5rem 0;
	}
}


/*------------------------------------------------
 枠つきbox　.border_box
------------------------------------------------*/
.border_box {
	padding: 2.5rem 0;
	border: 10px solid  var(--key-color-20);
}
@media screen and (max-width:480px) {
	.border_box {
		padding: 1.5rem;
	}
}

/*------------------------------------------------
 ボタン　.btn_arrow
------------------------------------------------*/
.btn_arrow {
	margin: 1rem 0;
}
.btn_arrow a {
	position: relative;
	padding: 1rem 5.5rem 1rem 3rem;
	font-size: 0.95rem;
	font-weight: bold;
	line-height: 1;
} 
.btn_arrow a::after {
	position: absolute;
	right: 2rem;
	bottom: 1.3rem;
  content: '';
  width: 25px;
  height: 7px;
  transform: skew(35deg);
	transition: all .3s;
}
.btn_arrow a:hover::after {
	right: 1.2rem;
	transition: all .3s;
}
/*水色ボタン*/
.btn_arrow.color a {
	background-color: var(--key-color);
	color: #fff;
}
.btn_arrow.color a::after {
	border-bottom: solid 1px #fff;
  border-right: solid 1.4px #fff;
}
/*白ボタン*/
.btn_arrow.wh a {
	border: solid 2px var(--key-color);
	background-color: #fff;
	color: #000;
	border-radius: 3px;
}
.btn_arrow.wh a::after {
	border-bottom: solid 1px var(--key-color);
  border-right: solid 1.4px var(--key-color);
}
/*黒ボタン*/
.btn_arrow.bk a {
	border: none;
	background-color: transparent;
	color: var(--key-color-70);
}
.btn_arrow.bk a::after {
	border-bottom: solid 1px var(--key-color-70);
  border-right: solid 1.4px var(--key-color-70);
}
@media (max-width: 640px) {
	.btn_arrow a {
		padding: 0.6rem 3.5rem 0.6rem 1rem;
		font-size: 0.95rem;
	} 
	.btn_arrow a::after {
		bottom: 1.0rem;
		right: 1.5rem;
	}
}

/*黒枠ボタン*/
.btn_01 {
	border: 1px solid #095369;
	padding: 15px 25px;
	border-radius: 3px;
	color: #095369;
}
.btn_01:first-child {
	margin-right: 25px;
}
.btn_01:hover {
	background-color: #095369;
	color: #fff;
}
.btn_02 a {
	border: 1px solid var(--key-color);
	background-color: var(--key-color);
	padding: 15px 25px;
	border-radius: 3px;
	color: #fff;
	/*margin-top: 15px;*/
	display: inline-block;
}
.btn_02 a:hover {
	background-color: #fff;
	color: var(--key-color);
}
.btn_03 a {
	border: 1px solid var(--key-color-70);
	background-color: var(--key-color-70);
	padding: 15px 25px;
	border-radius: 3px;
	color: #fff;
	display: inline-block;
}
.btn_03 a:hover {
	background-color: #fff;
	color: var(--key-color-70);
}

@media (max-width:480px) {
	.btn_01 {
		padding: 5px 10px;
	}
	.btn_02 a,.btn_03 a {
		padding: 10px 15px;
	}
}

/*------------------------------------------------
 iframe .youtube
------------------------------------------------*/
.youtube {
	max-width: 100%;
}
@media (max-width: 640px) {
	.youtube {
		height: 200px;
	}
}

/*------------------------------------------------
.flex_box
------------------------------------------------*/
.flex_box {
	display: flex;
	gap: 1rem;
}

/*------------------------------------------------
.img_box_list
------------------------------------------------*/
.img_box_list {
	display: flex;
	flex-wrap: wrap;
	gap: 4%;
}
.img_box_list .box {
	margin-bottom: 3rem;
	width: 48%;
}
.img_box_list .box img {
	margin-bottom: 1rem;
}
.img_box_list .box .name {
	margin-bottom: 1rem;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}
.img_box_list .box .name::after {
	display: block;
	content: "";
	width: 50px;
	height: 2px;
	margin: 0.3rem auto 0 auto;
	background-color: var(--key-color);
}
.img_box_list .box .text {
	line-height: 1.6;
	text-align: center;
	color: #333;
}


/*------------------------------------------------
dl.info_table
------------------------------------------------*/
dl.info_table {
	display: flex;
	flex-wrap: wrap;
} 
dl.info_table dt:first-of-type,
dl.info_table dd:first-of-type {
	border-top: 1px solid var(--key-color-20);
}
dl.info_table dt {
	width: 15%;
	padding: 1rem 0.5rem 1rem 1.5rem;
	border-bottom: 1px solid var(--key-color-20);
	font-weight: bold;
}
dl.info_table dt:nth-of-type(2n+1),
dl.info_table dd:nth-of-type(2n+1) {
	background-color: var(--key-color-5);
}
dl.info_table dd {
	width: 85%;
	padding: 1rem 0.5rem;
	border-bottom: 1px solid var(--key-color-20);
}




/*------------------------------------------------
ul.list_01
------------------------------------------------*/
ul.list_01 > li {
	margin: 0 0.6rem 0.4rem 0.6rem;
	text-indent: -1.5rem;
	padding-left: 1.5rem;
}
ul.list_01 > li:before {
  content: "";  
  width: 0.8rem; 
  height: 0.8rem;
  display: inline-block;
	margin-right: 0.5rem;
  background-color: var(--key-color-50);
  border-radius:  50%;
}

/*------------------------------------------------
ul.list_01_child ページ上部ナビ　※取扱商品、施工実績
------------------------------------------------*/
ul.list_01_child {
	display: flex;
	gap: 1.5rem;
	margin-left: 0.2rem;
}
ul.list_01_child li {
	margin: 0;
	text-indent: 0;
}
ul.list_01_child li a {
	color: #666;
}
#products ul.list_01 > li > a,
#works ul.list_01 > li > a {
	font-weight: 700;
}
ul.list_01 li a {
	text-decoration: underline;
}

.grecaptcha-badge { visibility: hidden; }

