﻿/* 横幅1200px以下の場合のみ適用 */
@media (max-width: 768px) {
.none{
	display:none;
}
}
@media (min-width: 768px) {
.container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.main-contents {
  width: 75%;
  padding: 10px;
  /*background-color: #ccc;*/
}

.side-menu {
  /*width: 15%;*/
  padding: 10px;
  /*background-color: #faa;*/
}}

.auto-style1 {
	text-align: center;
}
  img{
    max-width: 98%;
    height: auto;
  }

/*点字*/

.auto-style263 a{
text-decoration: none;
}

.auto-style263 a,a:hover,a:visited{
    color: inherit;
}


/*点字文字だけ*/
.auto-style263-2 a{
text-decoration: none;
}

.auto-style263-2 a,a:hover,a:visited{
    color: inherit;
}

/*点字hover*/
.hover1-2:hover{
	background-color:#FFC400;
	color:#FFFFFF;
	font-weight:600;
	}
	

/*保安用品だけ*/
.auto-style274 a{
text-decoration: none;
}

.auto-style274 a,a:hover,a:visited{
    color: inherit;
}

.auto-style273 a{
text-decoration: none;
}

.auto-style273 a,a:hover,a:visited{
    color: inherit;
}

/*保安用品hover*/
.hover1-1-2:hover{
	background-color:#FF0047;
	color:#FFFFFF;
	font-weight:600;
	}


.hover1-1-3:hover{
	background-color:#3170B8;
	color:#FFFFFF;
	font-weight:600;
	}


/*建築資材*/
.auto-style274-3 a{
text-decoration: none;
}

.auto-style274-3 a,a:hover,a:visited{
    color: inherit;
}

.auto-style273-3 a{
text-decoration: none;
}

.auto-style273-3 a,a:hover,a:visited{
    color: inherit;
}

/*建築資材hover*/
.hover1-1-3:hover{
	background-color:#3170B8;
	color:#FFFFFF;
	font-weight:600;
	}

/*ここまで*/

/*土木資材*/
.auto-style273-4 a{
text-decoration: none;
}

.auto-style273-4 a,a:hover,a:visited{
    color: inherit;
}

/*土木資材hover*/
.hover1-1-4:hover{
	background-color:#6F31B8;
	color:#FFFFFF;
	font-weight:600;
	}

/*ここまで*/


/*足場用品*/
.auto-style274-5 a{
text-decoration: none;
}

.auto-style274-5 a,a:hover,a:visited{
    color: inherit;
}

.auto-style273-5 a{
text-decoration: none;
}

.auto-style273-5 a,a:hover,a:visited{
    color: inherit;
}

/*足場用品hover*/
.hover1-1-5:hover{
	background-color:#00ADA9;
	color:#FFFFFF;
	font-weight:600;
	}

/*ここまで*/


.hover1:hover{
  background-color: #FFE17F;
	color: #5D5D5D;
	text-shadow: 1px 1px 2px #FFFFFF;
}

.osu:hover{
	opacity:0.8;}
}


/*ここまで*/


/*保安*/

.auto-style263-1 a{
text-decoration: none;
}

.auto-style263-1 a,a:hover,a:visited{
    color: inherit;
}


.hover1-1:hover{
  background-color: #FF5B5B;/*薄い色*/
  
  	
	color: #5D5D5D;
	text-shadow: 1px 1px 2px #FFFFFF;
}

.futo{border-top:5px solid #FF5B5B;/*濃い色*/}


/*ここまで*/


.auto-style270 td{
	border:1px solid #808080;
}
/*========= ナビゲーションのためのCSS ===============*/
@media (max-width: 768px) {

#g-nav{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
	top:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#999;
    /*動き*/
	transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
	opacity: 1;
	z-index:999;
}

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

/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

#g-nav.panelactive ul {
    display: block;
}

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

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
    background-color:#E4E4CFB3;}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #666;
  	width: 45%;
  }

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

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

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

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

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

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
.iframehaba{
	width:100%;
}
	 }
	 
	 
<!-- ページ内検索ハイライトのカラーなど -->
.highlight{
font-weight:bold;
background-color:Yellow;
}

* {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

* {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

* {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

* {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

* {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

* {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

* {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

* {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.auto-style121 {
	font-size: medium;
	color: #008000;
	font-weight: normal;
}

.auto-style54 {
	border-collapse: collapse;
	border: 1px solid #808080;
}
  table{
	width:97%;
}
table{
	width:85%;
}
.auto-style109 {
	text-align: center;
	border: 1px solid #808080;
}
    .auto-style254 {
	text-align: center;
	font-family: "Meiryo UI";
	font-size: medium;
	color: #383838;
	border: 1px solid #808080;
}
.auto-style252 {
	color: #383838;
}
.auto-style238 {
	text-align: center;
	font-size: medium;
	color: #000000;
	font-family: "Meiryo UI";
	border: 1px solid #808080;
}
.auto-style239 {
	color: #000000;
}
  .auto-style206 {
	font-size: medium;
}
.auto-style130 {
	font-family: "Meiryo UI";
}
  .auto-style217 {
	font-family: "Meiryo UI";
	font-size: medium;
}


.auto-style244 {
	text-align: center;
}
.auto-style253 {
	text-align: center;
	color: #383838;
}
    .auto-style242 {
	border-collapse: collapse;
	border: 2px solid #808080;
}

.auto-style241 {
	text-align: center;
	font-family: "Meiryo UI";
	font-size: medium;
	border: 1px solid #808080;
}
.auto-style240 {
	text-align: center;
	border: 1px solid #808080;
}
.auto-style110 {
	text-align: center;
	font-family: "Meiryo UI";
	border: 1px solid #808080;
}
.auto-style116 {
	font-size: medium;
	font-family: "Meiryo UI";
}
.auto-style258 {
	font-size: medium;
	color: #008000;
}

/*追従ボタン*/
.fixed_btn{
        background-color: transparent;
        border: none;
        cursor: pointer;
        outline: none;
        padding: 0;
        appearance: none;
        color:#FFFFFF;
        font-size:medium;
        font-weight:bold;
}
.pc
{
  position: fixed;
  bottom: 20px; 
  left: 15px;
  padding:none;
  color:red;
  
}

@import url('all.css');

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html a.btn {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
}

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 2rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #eb6100;
  opacity: 0.9;
}

.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: #FF720E;
  opacity: 1;
}

.fa-position-left {
  position: absolute;
  top: calc(50% - 0.5em);
  left: 1rem;
}

/*モバイル*/
@media only screen and (max-width: 750px) {
.fixed2_btn{
        background-color: transparent;
        border: none;
        cursor: pointer;
        outline: none;
        padding: 0;
        appearance: none;
        color:#ffffff;
        font-size:medium;
        font-weight:bold;
}
.mobile{ position: fixed;
  bottom: 10px; 
  left: 10px;
  padding:none;
  color:red;
  
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html a.btn{
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
}

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 1rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #eb6100;
  opacity: 0.9;
}

.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: #FF720E;
  opacity: 1;
}
}
/* パソコンで見たときは".pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.mobile { display: none !important; }
 
/* スマートフォンで見たときは".mobile "のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pc { display: none !important; }
    .mobile { display: block !important; }
}
/*ここまで*/

    .auto-style248 {
	text-align: center;
	/*フォントサイズ*/
	font-size: clamp(1.25rem, 0rem + 4vw, 2.5rem);
	font-family: "Meiryo UI";
	color: #434343;
}


    .auto-style114 {
	text-align: center;
	border: 1px solid #808080;
	background-color: #7189AB;
	font-family: "Meiryo UI";
	color: #6983A8;
}
.auto-style6 {
	text-align: center;
	font-size: clamp(1.25rem, -1.875rem + 5vw, 1.875rem);
		font-family: "Meiryo UI";
	padding:0.5em;
	color: #FFFFFF;
}
.auto-style267 {
	color: #0B2750;
}
    .auto-style260 {
	font-size: large;
	font-family: "Meiryo UI";
	color: #0B2750;
	text-align: left;
}
.auto-style3 {
	text-align: center;
	border: 1px solid #808080;
}
.auto-style269 {
	text-align: center;
	border: 1px solid #808080;
	font-family: "Meiryo UI";
	background-color: #E7F2FC;
}
.auto-style268 {
	font-size: small;
}
.auto-style119 {
	text-align: center;
	border: 1px solid #808080;
	color: #0000FF;
	font-family: "Meiryo UI";
}

.auto-style274 {
	text-align: center;
	border-collapse: collapse;
}

.auto-style296 {
	font-size: font-size: clamp(1.25rem, 0rem + 4vw, 2.5rem);
	color: #FFFFFF;
	text-align: center;
	margin-top: 16px;
	padding: 0.47em;
	background-color: #494949;
}

.auto-style297 {
	text-align: center;
	border: 1px solid #808080;
	color: #FF0000;
	font-family: "Meiryo UI";
}

.auto-style280-11{
	text-align: center;
	background-color: #B9644E;
}
.auto-style281-11{
	font-size: x-large;
	font-family: "源ノ角ゴシック JP Heavy";
	color: #FFFFFF;
}
.auto-style282-11 {
	font-family: "源ノ角ゴシック JP Heavy";
	color: #FFFFFF;
}
.auto-style283-11 {
	font-family: "平成丸ゴシック Std W4";
	font-size: medium;
	color: #FFFFFF;
}
.tophover{
 text-decoration: none;
}
.tophover:hover{
	background-color:#4EB968;
	color:black;
	}
/*CSS内へ、トップへ戻るボタン*/
#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0;
  bottom: 0;
/*色はここで変える*/
  background: #3fefee;
  opacity: 0.6;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f062';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
/*ここまで*/


.auto-style301 {
	text-align: center; /*フォントサイズ*/;
	font-size: medium;
	font-family: "Meiryo UI";
	color: #434343;
}



.auto-style299 {
	text-align: center;
	background-color: #FFFFFF;
}
@media only screen and (max-width:560px){
	iframe{
	width:97%;
	height:auto;
	}
}
