@charset: "UTF-8";

/* =====================
base
===================== */

html *,
::before,
::after {
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  font-size: 16px;
  font-weight: 300;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}

/* スマホ設定 最小～768pxまで*/
@media screen and (max-width: 768px) {
  body {
    font-size: 15px;
  }
}

img{
  display: inline-block;
  max-width: 100%;
  height: auto;
}


input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

p {
  line-height: 1.6;
  font-size: 100%;
  margin:2%;
}

a {
  color: #689fcb;
  text-decoration: underline;
  opacity: 1;
  transition: 0.3s ;
}

a:hover {
  color: #689fcb;
  text-decoration: none;
  opacity: 0.8;
}

a.trans {
  display: block;
}

a.trans:hover {
  opacity: 0.7;
}

.wrap {
  /* max-width: 1100px; */
  width: 92%;
  margin: auto;
}

/*チェックボックス*/

/* =====================
header
===================== */

#header{
	position: fixed;/*fixedを設定して固定*/
	height: 75px;/*高さ指定*/
	width:100%;/*横幅指定*/
  z-index: 999;/*最前面へ*/}

/*==ふわっと出現させるためのCSS*/

/*　上に上がる動き　*/

#header.UpMove{
	position: fixed;
	width:100%;
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 1;
	transform: translateY(0);
  }
  to {
    opacity: 0;
	transform: translateY(-100px);
  }
}

/*　下に下がる動き　*/

#header.DownMove{
	position: fixed;
	width:100%;
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(-100px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}


.wrap{}

.wrap_header_top{
  width: 100%;
  background: #fff;
  position: relative;
  top:75px;
}

.header_top{
  width: 100%;
  max-width:1100px ;
  margin:0 auto;
  padding: 0;
  color: #333;
  overflow: hidden;
  position: relative;
  padding-left: 90px;
  padding-right: 10px;
}

.header_top_L{
  /* width: 40%; */
  float: left;
  line-height: 40px;
}

.header_top_R{
  /* width: 59%; */
  float: right;
  position: relative;
  top:5px;
}

.header_top_R ul{
height: auto;
width:100%;
float: right;
margin-top:10px;
}

.header_top_R li{
  float: right;
  line-height: 1.6;
  list-style-type: none;
  font-size: 100%;

}
.header_top_R li a{
  color: #333; 
  display: block; 
  padding: 0 10px 0 0px;}

  .header_top_R li img{vertical-align: text-top;}


.wrap_header_btm{
  width: 100%;
  background: linear-gradient(#fff, #f4f4f4);
  border-bottom:1px solid #ccc;
}

.header_btm{
  width: 100%;
  max-width:1100px ;
  margin:0 auto;
  padding: 0;
  background: none;
  color: #000;
  /* overflow: hidden; */
  height: 1;
  /* padding-left: 10px; */
  /* padding-right: 10px; */
  position: relative;

}

.header_logo_txt{
  width:100%;
  max-width: 265px;
  position: relative;
  top: 10px;
  /* float: left; */
}


/*ドロップダウンメニュー*/

/*==ナビゲーション全体の設定*/
nav{
	background:none;
	color:#000;
	text-align: center;
  width: 100%;
  /* float: right; */
}
/*ナビゲーションを横並びに*/
nav ul{
	list-style: none;
	display: flex;
	justify-content: space-evenly;
  /* border-left:1px solid #eee; */
  /* border-right:1px solid #eee; */
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
	position: relative;
  font-size:120%;
  font-weight: 600;

}

/*ナビゲーションのリンク設定*/
nav ul li a{
	display: block;
	text-decoration: none;
	color: #999;
  padding: 30px 30px 20px 30px;
	transition:all .3s;
}

nav ul li a:hover{
	color:#d40d18;	
}


/*==矢印の設定*/

/*liの矢印の設定*/
nav ul li::before{
	content:'';
	position: absolute;
	right:-10px;
	top:30px;
	width:9px;
	height:9px;
	border-top: 1px solid #999;
    border-right:1px solid #999;
    transform: rotate(135deg);
}

nav ul li:hover::before{
	content:'';
	position: absolute;
	right:12px;
	top:23px;
	width:9px;
	height:9px;
	border-top: 0px solid #689fcb;
    border-right:0px solid #689fcb;
    transform: rotate(135deg);
}

nav ul li::after {
  position: absolute;
  bottom: 0px;
  left: 5%;
  content: '';
  width: 100%;
  height: 2px;
  background: #d40d18;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
nav ul li:hover::after {
  transform: scale(1, 1);
}


/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
	color: #000;
	border-bottom:solid 0px rgba(255,255,255,0.6);
}

nav li.has-child ul li:last-child a{
	border-bottom:none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
	background:#93bfe3;
}


/* タブレット設定 最小～1250pxまで*/
@media screen and (max-width: 1250px) {
  nav ul li{
    /* font-size:120%; */
  
  }
  nav{
    width: 100%;
  }
  nav ul li a{
    padding: 20px 10px 20px 20px;
  }

  nav ul li.has-child::before{
    position: absolute;
    right: -1px;
    top: 25px;
    width: 6px;
    height: 6px;
  }

  nav li.has-child ul {
    position: absolute;
    left: -30%;
}


}/* タブレット設定ここまで*/


/*==768px以下の形状*/

/* スマホ設定 最小～768pxまで*/
@media screen and (max-width: 768px) {

#header{display: none;}

.wrap_header_top {
  width: 100%;
  background: #fff;
  position: relative;
  top: 0px;
  text-align: center;
}

  .header_top{
    padding: 2%;
  }

  .header_top_L,
  .header_top_R {
    width: 100%;
    float: none;
    /* line-height: 40px; */
}
  
  .header_logo_txt{
    width:50%;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
  }
  

  .header_top_R ul {
    height: auto;
    width: 100%;
    float: none;
    margin: 0px;
}

.header_top_R li {
  float: none;
  line-height: 1.6;
  list-style-type: none;
  font-size: 100%;
  /* width: 100%; */
  border:1px solid #ccc;
  padding:2%;
  margin:2%;
}

.header_top_R li a{
  display: inline-block;
}



}/* ヘッダースマホ設定ここまで*/




/*ドロワーメニュー*/
/*===========================================================*/
/*機能編  5-1-12 クリックしたらナビが上から下に出現 */
/*===========================================================*/

#topHeader{
	animation: AppAnime 1.0s forwards;
  position: fixed;
  z-index: 999;
}

@keyframes AppAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}



#g-nav{
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position:fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
top:-120%;
width:100%;
  height: 100vh;/*ナビの高さ*/
background:#fff;
  /*動き*/
transition: all 0.6s;
}

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

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

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

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

#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; */
}


/*===========================================================*/
/*機能編  5-2-5	MENUが×に */
/*===========================================================*/

.openbtn{
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 90px;
  height: 115px;
  /* border-left: 2px solid #333; */
  background: #fff;
  margin: 20px;
  border: 1px solid #eee;
}
	
/*ボタン内側*/
.openbtn span{
  display: inline-block;
  transition: all .4s;/*アニメーションの設定*/
  position: absolute;
  left: 30%;
  height: 2px;
  border-radius: 5px;
  background: #333;
  width: 40%;
}


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

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

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

.openbtn span:nth-of-type(3)::after {
content:"MENU";/*3つ目の要素のafterにMenu表示を指定*/
position: absolute;
top:18px;
left:0px;
color: #333;
font-size: 13px;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

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

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

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

.openbtn.active span:nth-of-type(3)::after {
content:"Close";/*3つ目の要素のafterにClose表示を指定*/
  transform: translateY(0) rotate(-45deg);
top:20px;
left:36px;
}

.dw_logo_ja{
  width: 50%;
  position: relative;
  padding:0;
  margin: 0 auto;
}

.dw_menu_inbox{width:90%; margin:40px 5% 150px 5%; overflow: hidden;}
.dw_menu{color:#2d2d2d; width:90%; margin:40px 5% 0 5%;}
.dw_menu_ttl{border-left:0px solid #eee; padding-left:0px; font-size:120}
.dw_menu ul{padding:0; margin:15px 0 0 12px; overflow: hidden;}
.dw_menu li{
  color:#2d2d2d;
  list-style-type: none;
  background:#fff url(../images/icn_arrow_blu.png)no-repeat;
  background-size: 10px;
  background-position: left center;
  padding-left: 20px;
  width:100%;
  border-bottom:1px dotted #ddd;
}
.dw_menu li a{
  color:#2d2d2d;
  padding:7% 0;
  display: block;
}

.dw_menu_sns{}
.dw_menu_sns ul{
  width: 50%;
  margin:0 auto 0 auto;
  padding:8% 0 0 0;
}
.dw_menu_sns li{
  width: 25%;
  text-align: center;
  float: left;
}


/* スマホ設定 最小～768pxまで*/
@media screen and (max-width: 768px) {

  .openbtn{
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    cursor: pointer;
    width: 55px;
    height: 75px;
    /* border-left: 2px solid #333; */
    background: #fff;
    margin: 8px;
    border: 1px solid #eee;
  }
    
  /*ボタン内側*/
  .openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 25%;
    height: 2px;
    border-radius: 5px;
    background: #333;
    width: 50%;
  }
  
  
  .openbtn span:nth-of-type(1) {
  top:16px;	
  }
  
  .openbtn span:nth-of-type(2) {
  top:26px;
  }
  
  .openbtn span:nth-of-type(3) {
  top:36px;
  }
  
  .openbtn span:nth-of-type(3)::after {
  content:"MENU";/*3つ目の要素のafterにMenu表示を指定*/
  position: absolute;
  top:13px;
  left:0px;
  color: #333;
  font-size: 10px;
  }
  
  /*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
  
  .openbtn.active span:nth-of-type(1) {
    top: 20px;
    left: 20%;
    transform: translateY(6px) rotate(-45deg);
    width: 60%;
  }
  
  .openbtn.active span:nth-of-type(2) {
  opacity: 0;
  }
  
  .openbtn.active span:nth-of-type(3){
    top: 32px;
    left: 20%;
    transform: translateY(-6px) rotate(45deg);
    width: 60%;
  }
  
  .openbtn.active span:nth-of-type(3)::after {
  content:"Close";/*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
  top:15px;
  left:24px;
  }
  
  .dw_logo_ja{
    width: 50%;
    position: relative;
    padding:0;
    margin:0 auto;
  }
  
  .dw_menu_inbox{width:90%; margin:40px 5% 150px 5%; overflow: hidden;}
  .dw_menu{color:#2d2d2d; width:90%; margin:40px 5% 0 5%;}
  .dw_menu_ttl{border-left:0px solid #eee; padding-left:0px; font-size:120%;font-family: 'Shippori Mincho', serif !important; font-weight: 900;}
  .dw_menu ul{padding:0; margin:15px 0 0 12px; overflow: hidden;}
  .dw_menu li{
    color:#2d2d2d;
    list-style-type: none;
    background:#fff url(../images/icn_arrow_gry.png)no-repeat;
    background-size: 10px;
    background-position: left center;
    padding-left: 20px;
    width:100%;
    border-bottom:1px dotted #ddd;
  }
  .dw_menu li a{
    color:#2d2d2d;
    padding:7% 0;
    display: block;
  }

  .ft_logo_ja{
    width: 60%;
    padding:0px;
    margin:0 20% 10% 20%;
  }
  
  .ft_menu{margin:5% 10% 5% 8%;}
  .ft_menu_ttl{border-left:3px solid #fff; padding-left:10px; font-size:110%;}
  .ft_menu ul{padding:0; margin:3% 0 0 12px; overflow: hidden;}
  .ft_menu li{width:100%; border-bottom:1px dotted #999;}
  .ft_menu li a{padding:7% 0; display: block;}

}/* ドロワースマホ設定ここまで*/

/*ドロワーメニューここまで*/



/* =====================
main
===================== */
#appearHeader{width: 100%; background:#f2f2f2; margin:0; padding: 0;}
.wrap_white{width: 100%; padding:0; margin:0; background:#ffffff ; overflow: hidden;}
.wrap_w-gry{width: 100%; padding:0; margin:0; background:#f2f2f2 ; overflow: hidden;}
.wrap_d-gry{width: 100%; padding:0; margin:0; background:#555 ; overflow: hidden;}
.wrap_blk{width: 100%; padding:0; margin:0; background:#000000 ; overflow: hidden;}
.inbox{
  width: 100%;
  max-width:1000px ;
  margin:0 auto;
  padding: 0;
  overflow: hidden;
  position: relative;
  padding: 80px 0px 150px 0px;
}

h3.main_ttl{
  font-size: 30px;
  color: #2b2b2b;
  font-weight: 600;
  line-height: 190%;
  position: relative;
  padding: 0 65px ;
  text-align: center;
  display: inline-block;
}

h3.main_ttl:before, h3.main_ttl:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: black;
}

h3.main_ttl:before {
  left:0;
}
h3.main_ttl:after {
  right: 0;
}

h3.main_ttl_wd50R{
  font-size: 30px;
  color: #fff;
  text-align: left;
  font-weight: 300;
  line-height: 190%;
  margin-bottom:30px;
}

h3.main_ttl_wd50R span{
  font-size: 40%;
    display: block;
    font-weight: 100;
    height: 30px;
}

p.ttl_cap{
  display: block;
  font-size: 14px;
  color: #9b9b9b;
  text-align: center;
  font-weight: 300;
  line-height: 100%;
  margin:0px;
  margin-bottom:2px;
}

p.ttl_cap_wd50R{
  display: block;
  font-size: 14px;
  color: #fff;
  text-align: left;
  font-weight: 300;
  line-height: 100%;
  margin:0px;
  margin-bottom:10px;
}

h5.paragraph_ttl{
  font-size: 160%;
  font-family: 'Shippori Mincho', serif !important;
  line-height: 1.7;
  margin: 30px 0 2% 0;
  text-align: center;
}

h5.paragraph_ttl span{
  background: linear-gradient(transparent 50%, #f8e2e2 50%);
}

img.img_bloc{
  margin: 20px auto 10px auto !important;

}



a.btn_blu{
  background:#689fcb url(../images/icn_arrow_wht.png)no-repeat;
  background-size: 15px;
  background-position: right 15px center;
  width: 48%;
  display: inline-block;
  color: #fff;
  font-size: 120%;
  line-height: 130%;
  padding:22px 20px 20px 20px;
  box-shadow: 2px 2px 2px 0px #ccc;
  border:solid 1px #689fcb;
  border-radius:3px;
  text-align: center;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  transition: 0.3s ;
  float: left;
  margin:0 1%;
}

a.btn_blu:hover{background-color: #4f88b6;}

.btn_blu .rubi{font-size: 13px;opacity: 0.7;}

a.btn_wht{
  background:#fff url(../images/icn_arrow_gry.png)no-repeat;
  background-size: 15px;
  background-position: right 15px center;
  width: 48%;
  display: inline-block;
  color: #000;
  font-size: 120%;
  line-height: 130%;
  padding:22px 20px 20px 20px;
  box-shadow: 2px 2px 2px 0px #ccc;
  border:solid 1px #ccc;
  border-radius:3px;
  text-align: center;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  transition: 0.3s ;
  float: left;
  margin:0 1%;
}

a.btn_wht:hover{background-color: #f2f2f2;}

.btn_wht .rubi{font-size: 13px;opacity: 0.7;}


/* 追加分　小松屋NEWS */

.news_list{
  width: 100%;
  position: relative;
}
.news_list_single{
  width: 22%;
  margin:0% 1%;
  display: inline-block;
  vertical-align: top;
}
.news_list_single_img{
  width: 220px;
  height:220px;
  border: 1px solid #ddd;
}
.news_list_single_img img{
  width: 218px;
  height:218px;
  object-fit: cover;
}
.news_list_single_date{
  font-size: 80%;
  color: #999;
  line-height: 1.6;
  margin:1%;
  text-align: left;
}
.news_list_single_txt{
  font-size: 90%;
  line-height: 1.3;
  margin:1%;
  text-align: left;
}

.news_list_more{
  position: absolute;
  top:70px;
  right:0;
}





/* タブレット設定 最小～1250pxまで*/
@media screen and (max-width: 1250px) {
  .inbox{
    width: 94%;
    margin:0 3%;
    padding: 8% 0px 10% 0px;
  }
}

/* スマホ設定 最小～768pxまで*/
@media screen and (max-width: 768px) {
  .inbox{
    width: 95%;
    margin: 0 auto;
    padding: 8% 0 10% 0;
  }

  h3.main_ttl{
    font-size: 150%;
    line-height: 160%;
  }

  p.ttl_cap{
    margin-bottom:2%;
  }
  
  .btn_area{
    margin: 5% auto;
  }
  
  a.btn_blu{
    width: 100%;
    margin:2%;
  }
  
  a.btn_wht{
    width: 100%;
    margin:2%;
  }
  

  h5.paragraph_ttl{
    font-size: 130%;
    line-height: 1.7;
    margin: 4% auto 1% auto;
    text-align: center;
    width: 90%;
  }


  .news_list{
    margin: 0 auto;
    padding: 0;
    width: 100%;  /* コンテンツが見切れて見えるようにする */
    overflow-x: auto;  /* 横スクロールの指定 */
    white-space: nowrap;  /* 横スクロールの指定 */
    overflow-scrolling: touch;  /* スクロールを滑らかにする */
    -webkit-overflow-scrolling: touch;  /* スクロールを滑らかにする */
  }
  .news_list_single{
    width: 150px;
    margin:0% 0.5%;
    display: inline-block;
    list-style: none;
    height: 210px;  /* 横スクロールする範囲の高さを指定 */
  }

  .news_list_single_img{
    width: 150px;
    height:150px;
    border: 1px solid #ddd;
  }
  .news_list_single_img img{
    width: 148px;
    height:148px;
    object-fit: cover;
  }

  .news_list_single_txt{
    overflow: hidden;
  }

  .news_list_more{
    position: absolute;
    top:50px;
    right:5px;
  }

  .news_list_more img{
   width:60%; 
   float: right;
  }
  

}/* mainスマホ設定ここまで*/



/* =====================
コンテンツ内専用CSS
===================== */

div.main{
  width: 100%;
  max-width: 1100px;
  margin:100px auto 0px auto;
}

table.tbl_main{
  border:0;
  margin: 0 auto;
  padding:0;
  background: none;
  width: 100%;
}

table.tbl_main th{
  border:0;
  margin: 0 auto;
  background: #fff;
  padding:0;
}

table.tbl_main td{
  border:0;
  margin: 0 auto;
  background: #fff;
  padding:1%;
}

.inbox .bloc_purpose02{
  background:url(../images/img_bloc_purpose02.png)no-repeat;
  background-size: 100%;
  background-position: center top;
  padding-top: 180px;
  margin-top:20px;
}

.inbox .bloc_mission{
  background:url(../images/img_bloc_mission.png)no-repeat;
  background-size: ;
  background-position: center top 100px;
  padding-top: 0px;
  margin-top:20px;
}

.icn_roundsquare_red{
  background: #cc1515;
  border-radius: 10em;
  width: 200px;
  margin:0 auto;
  padding:10px;
  text-align: center;
  color: #fff;
}

.bk_tbl_keireki{
  background:url(../images/img_bloc_keireki_bg.jpg)no-repeat;
  background-size: 100%;
  background-position: center top 130px;
  padding-top: 0px;
  margin-top:20px;
  overflow: hidden;
  min-height: 850px;
}

table.tbl_keireki{
  border:0;
  margin: 0;
  padding:0;
  width: 100%;
  background: none;
}

table.tbl_keireki th{
  color: #000;
  font-weight: 300;
  font-size: 100%;
  line-height: 1.6;
  text-align: left;
  padding:1% 2%;
  background:rgba(238,238,238,0.5);
}

table.tbl_keireki td{
  color: #000;
  font-weight: 300;
  font-size: 100%;
  line-height: 1.6;
  text-align: left;
  padding:1% 2%;
  background:rgba(255,255,255,0.5);
}

h6.blk_ttl{
  font-size: 100%;
  line-height: 1.3;
  padding: 0.5% 2%;
  margin:2% 0 0 0;
  text-align: center;
  background: #2b2b2b;
  color: #fff;
  font-weight: 300;
  display: inline-block;
}

table.tbl_activity{
  border:0;
  margin: 0 auto;
  padding:0;
  background: none;
  width: 98%;
}

table.tbl_activity th,
table.tbl_activity td{
  color: #000;
  font-weight: 300;
  font-size: 90%;
  line-height: 1.2;
  text-align: left;
  padding:0 1% 1% 1%;
  margin:0;
  width: 33%;
}

table.tbl_company_profile{
  margin: 2% auto;
  padding:0;
  background: none;
  width: 98%;
  border:1px solid #ccc;
  border-collapse: collapse;
}
table.tbl_company_profile th{
  color: #fff;
  font-weight: 300;
  font-size: 90%;
  line-height: 1.5;
  text-align: center;
  padding:2%;
  margin:0;
  width: 20%;
  border:1px solid #ccc;
  border-collapse: collapse;
  background: #757575;
  vertical-align: middle;
}
table.tbl_company_profile td{
  color: #000;
  font-weight: 300;
  font-size: 90%;
  line-height: 1.5;
  text-align: left;
  padding:2%;
  margin:0;
  width: 30%;
  border:1px solid #ccc;
  border-collapse: collapse;
  background: #fff;
  vertical-align: middle;
}

table.tbl_company_profile td.gray{
  background: #f4f4f4;
}

/* タブレット設定 最小～1250pxまで*/
@media screen and (max-width: 1250px) {

  .bk_tbl_keireki{
    background:url(../images/img_bloc_keireki_bg.jpg)no-repeat;
    background-size: 100%;
    background-position: center top 220px;
  }

}



/* スマホ設定 最小～768pxまで*/
@media screen and (max-width: 768px) {

  div.main{
    width: 95%;
    margin:1% auto 5% auto;
  }

  .inbox .bloc_purpose02{
    background:url(../images/img_bloc_purpose02.png)no-repeat;
    background-size:100% ;
    background-position: center top;
    padding: 110px 0 0 0;
    margin-top:0px;
  }
  
  .inbox .bloc_mission{
    background:url(../images/img_bloc_mission.png)no-repeat;
    background-size: 100%;
    background-position: center top 100px;
    padding-top: 0px;
    margin-top:10px;
  }

  table.tbl_keireki{}

  table.tbl_keireki th{
    font-size: 90%;
    line-height: 1.6;
    text-align: left;
    padding:1% 2%;
    background:rgba(238,238,238,0.5);
  }
  table.tbl_keireki td{
    color: #000;
    font-weight: 300;
    font-size: 90%;
    line-height: 1.6;
    text-align: left;
    padding:1% 2%;
    background:rgba(255,255,255,0.5);
  }

  .bk_tbl_keireki{
    background-position: center top 490px;
    min-height: 750px;
  }

  table.tbl_activity th,
table.tbl_activity td{
  font-size: 80%;
  width: 30%;
}


}

/* =====================
フォーム
===================== */

.form_contact{
  font-size: 16px;
  width: 80%;
  margin:5% auto 0 auto;
}

.form_contact input,
.form_contact textarea,
.form_contact select{
  margin: 0.5% 0 3% 0;
  padding: 3% 2%;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form_contact select{
  background:#fff url(../images/icn_arrow_gry_dwn.png)no-repeat;
  background-size: 15px;
  background-position: right 15px center;
}

.form_contact input.btn_blu{
  background:#689fcb url(../images/icn_arrow_wht.png)no-repeat;
  background-size: 15px;
  background-position: right 15px center;
  width: 48%;
  display: block;
  color: #fff;
  font-size: 120%;
  line-height: 130%;
  padding:22px 20px 20px 20px;
  box-shadow: 2px 2px 2px 0px #ccc;
  border:solid 1px #689fcb;
  border-radius:3px;
  text-align: center;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  transition: 0.3s ;
  margin:3% auto;
}

.form_contact input.btn_blu:hover{background-color: #4f88b6;}

.form_contact .require{
  color: #cc1515;
}

.form_contact .form_item_ttl{
  width: 20%;
  float: left;
  line-height: 1.6;
  padding:30px 1% 1%;
  font-weight: bold;
}
.form_contact .form_item_enter{
  width: 80%;
  float: right;
  padding:1%;
}

/* スマホ設定 最小～768pxまで*/
@media screen and (max-width: 768px) {

  .form_contact{
    width: 90%;
    margin:5% auto 0 auto;
    font-size: 90%;
  }

  .form_contact .form_item_ttl {
    padding: 20px 1% 1%;
}

.form_contact .form_item_ttl{
  width: 100%;
  float: none;
  line-height: 1.6;
  padding:30px 1% 1%;
  font-weight: bold;
}
.form_contact .form_item_enter{
  width: 100%;
  float: none;
  padding:1%;
}


}

/* =====================
footer
===================== */

.ft_menu_txt{
  text-align: center;
  clear:both;
}

.ft_menu_txt a{color: #ccc;}

.ft_menu_txt span{color: #999; display: inline-block; padding:0 20px;}
.ft_copy_txt{font-size: 90%; color: #ccc; text-align: center; clear:both; padding:30px 0 30px 0;}

#pagetop{
  position: fixed;/*fixedを設定して固定*/
  right:30px;
  bottom:30px;
  z-index: 999;/*最前面へ*/
}
#pagetop a{
  color: #ccc;
  background:#333 url(../images/icn_arrow_up_wht.png)no-repeat;
  background-size: 15px;
  background-position:left 50% top 20px;
  width: 90px;
  height: 90px;
  display: inline-block;
  font-size: 12px;
  text-align: center;
  padding:52px 0 0 0;
  box-shadow: 1px 1px 2px 0px #ccc;
  /* border-radius:10em;
  -moz-border-radius: 10em;
  -webkit-border-radius: 10em;
  -o-border-radius: 10em;
  -ms-border-radius: 10em; */
  transition: 0.3s ;
  float: left;
  margin:0 1%;
}

.footer_top_L{
  width: 40%;
  float: left;
  line-height: 40px;
}

.footer_top_R{
  width: 59%;
  float: right;
  /* position: relative; */
  /* top:5px; */
}

.footer_top_R ul{
height: auto;
width:100%;
float: right;
/* margin-top:10px; */
}

.footer_top_R li{
  float: right;
  line-height: 1.6;
  list-style-type: none;
  font-size: 100%;
  width:50%;
}
.footer_top_R li a{
  color: #333; 
  display: block; 
  padding: 0 0 0 10px;}


.footer_top_R li img{vertical-align: text-top;}

.footer_logo_txt{width: 200px;}

#footer .inbox{padding: 60px 0px 50px 0px;}

/* スマホ設定 最小～768pxまで*/
@media screen and (max-width: 768px) {

  .ft_logo_ja{
    width: 60%;
    padding:0px;
    margin:0 20% 10% 20%;
  }
  
  .ft_menu{margin:5% 10% 5% 8%;}
  .ft_menu_ttl{border-left:3px solid #fff; padding-left:10px; font-size:110%;}
  .ft_menu ul{padding:0; margin:3% 0 0 12px; overflow: hidden;}
  .ft_menu li{width:100%; border-bottom:1px dotted #999;}
  .ft_menu li a{padding:7% 0; display: block;}
  .ft_menu_txt{
    width: 100%;
  }
  
  .ft_menu_txt a{display: inline-block; padding:5%;}
  
  .ft_menu_txt span{display: none;}
  .ft_copy_txt{font-size: 90%; padding:30px 0 10% 0;}
  
  #pagetop{
    position: fixed;/*fixedを設定して固定*/
    right:30px;
    bottom:30px;
    z-index: 999;/*最前面へ*/
  }
  #pagetop a{
    background-size: 20px;
    background-position:left 50% top 15px;
    width: 70px;
    height: 70px;
    font-size: 10px;
    padding:43px 0 0 0;
    box-shadow: 1px 1px 2px 0px #ccc;
  }


  .footer_top_L{
    width: 90%;
    float: none;
    line-height: auto;
    margin:0 auto;
    text-align: center;
  }
  
  .footer_top_R{
    width: 90%;
    float: none;
    /* position: relative; */
    /* top:5px; */
    margin:0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer_top_R ul{
  height: auto;
  width:100%;
  float: right;
  /* margin-top:10px; */
  }
  
  .footer_top_R li{
    float: right;
    line-height: 1.6;
    list-style-type: none;
    font-size: 100%;
    width:50%;
  }
  .footer_top_R li a{
    color: #333; 
    display: block; 
    padding: 0 0 0 10px;}
  
  
  .footer_logo_txt{width: 150px;}
  
  #footer .inbox{padding: 10% 5%;}


}/* footerスマホ設定ここまで */


/* ワードプレス追加設定 */

#page .site-content{
  position: relative;
  top:100px;
}

#content .content-area{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

#primary .site-main{
  width: 70%;
  float: right;
}

.singular .entry-title{
  font-size: 30px !important;
  line-height: 160%;
  font-weight: 900;
}

#primary #news_side_bar{
  width: 25%;
  float: left;
  /* margin-top: 20px; */
}

#news_side_bar .side_bar_ttl{
  font-size: 110%;
  text-align: center;
  color: #999;
  line-height: 160%;
  margin: 20px 0;
  padding: 0;
}

#news_side_bar .side_bar_menu{

}

#news_side_bar .side_bar_menu ul{
  overflow: hidden;
  padding: 0;
  margin: 0 0 10px 0;
}
#news_side_bar .side_bar_menu li{
  width: 99%;
  background: linear-gradient(#fff, #f4f4f4);
  background-size: 15px;
  background-position: right 15px center;
  display: block;
  color: #000;
  font-size: 110%;
  line-height: 130%;
  padding:30px 0;
  box-shadow: 2px 2px 2px 0px #eee;
  border:solid 1px #ccc;
  text-align: center;
  transition: 0.3s ;
  margin:0 0 10px 0;
}
#news_side_bar .side_bar_menu a{}
#news_side_bar .side_bar_menu li:hover{
  background: linear-gradient(#f4f4f4, #fff);
}

h1.page-title,
.spage-title{
  color: #cc0000;
    border: 1px solid #cc0000;
    display: inline-block;
    padding: 10px 20px;
    font-weight: normal;
}

.entry-header {}

.archive_set .entry-header h2.entry-title,
.archive_set .entry-content,
.archive_set .entry-footer
{
  width: 450px;
  float: right;
  /* margin-top: 0 !important; */
}

.archive_set .entry-header .post-thumbnail{
  width: 300px;
  height: 250px;
  float: left;
  margin-top: 0;
  border:1px solid #ddd;
}

.archive_set .entry-header .post-thumbnail img
{
  width: 298px !important;
  height: 248px !important;
  object-fit: cover; /* この一行を追加するだけ！ */
}

article.post{
  clear: both;
  margin-bottom: 30px;
  overflow: hidden;
}

.archive_set .entry-header h2.entry-title{
  line-height: 1.5;
}

.more-link{
  font-size: 80%;
  background: none;
  padding: 0;
  margin:0;
  display: block;
  text-align: right;
  color: #689fcb !important;
}

.archive_set .entry-content p{
  font-size: 90%;
  line-height: 1.4;
}

.archive_set .entry-footer{
  font-size: 80%;
  color: #999;
  margin:10px 0 20px 0 !important;
}

.spage-date{
  font-size: 80%;
  color: #999;
  margin:20px 0 10px 0 !important;
}

.widget-area{
  margin:150px auto 100px auto;
}

.search-result-count{font-size: 130%; color: #999; text-align: center;}


.no-results form{
  margin:50px auto;
  text-align: center;
}

.no-results input[type=submit] {
  -webkit-appearance: button;
  background: #ccc;
  display: inline-block;
  padding: 10px;
  cursor: pointer;
  margin: 0;
}

.no-results input[type=search] {
border: 1px solid #999;
   border-radius: 3px;
    color: var(--form--color-text);
    line-height: var(--global--line-height-body);
    padding: var(--form--spacing-unit);
    margin: 0;
    max-width: 100%;
}


.singlepg_set article.post p{
  margin: 40px 0;
  max-width: 98% !important;
}

.singlepg_set .post-thumbnail,
.wp-block-image{
  text-align: center;
  max-width: 100% !important;
}

.nav-links .nav-previous,
.nav-links .nav-next{
  width: 35%;
  display: inline-block;
  vertical-align: top;
}

.nav-links .meta-nav{
  border-bottom:1px solid #333;
  font-weight: 900;
}

.nav-links .meta-nav .svg-icon{
  padding: 10px 0 0 0;
}

.nav-links .post-title{
  font-size: 80%;
  color: #999;
  width: 80%;
  margin: 3% auto;
}

.humanbook_2col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 620px;
}

.humanbook_2col img{
  display: block;
  margin-bottom: 10px;
}

.humanbook_2col span{
  font-size:14px;
}

.sp_br{
  display: none;
}

.honmamon_sub_txt{
  background: unset !important;
  font-size: 22px;
}

#komatsuya_youtube{
  max-width: 1000px;
  width: 94%;
  margin: 60px auto;
  overflow: hidden;
}

.youtube_2colbox{
      display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: center;
    font-size: 16px;
    margin: 60px auto 0;
}

.youtube_2colbox iframe{
  aspect-ratio: 16 / 9;
}

.youtube_2colbox div{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer_sns{
  display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
    width: auto !important;
    margin: 10px auto 0;
}

.footer_sns li{
    width: 100%;
    height: auto;
}

.footer_sns li a{
  padding:unset;
}

/* スマホ設定 最小～768pxまで*/
@media screen and (max-width: 768px) {

  .honmamon_sub_txt{
    background: unset;
    font-size: 17px;
  }

  .sp_br{
    display: block;
  }

  #page .site-content{
    position: relative;
    top:10px;
  }

  #primary .site-main{
    width: 90%;
    float: none;
    margin: 0 auto;
  }
  
  #primary #news_side_bar{
    width: 90%;
    float: none;
    margin: 0 auto 3% auto;;
  }

  #news_side_bar .side_bar_ttl {
    font-size: 100%;
    margin: 2% 0;
}

#news_side_bar .side_bar_menu li {
  width: 48%;
  display: inline-block;
  font-size: 80%;
  line-height: 100%;
  padding: 5% 0;
  margin: 0 0 3% 1%;
}

h1.page-title, .spage-title {
  display: block;
  text-align: center;
}

h1.page-title, .spage-title {
  margin-bottom: 5%;
}

.archive_set .entry-header h2.entry-title,
.archive_set .entry-content,
.archive_set .entry-footer
{
  width: 100%;
  float: none;
  /* margin-top: 0 !important; */
}

.archive_set .entry-header .post-thumbnail{
  width: 100%;
  height: 300px;
  float: none;
  margin-top: 0;
  border:1px solid #ddd;
}

.archive_set .entry-header .post-thumbnail img
{
  width: 100% !important;
  height: 300px !important;
  object-fit: cover; /* この一行を追加するだけ！ */
}

article.post{
  clear: both;
  margin-bottom: 30px;
  overflow: hidden;
}

.archive_set .entry-header h2.entry-title{
  line-height: 1.5;
}

.more-link{
  font-size: 80%;
  background: none;
  padding: 0;
  margin:0;
  display: block;
  text-align: right;
  color: #689fcb !important;
}

.archive_set .entry-content p{
  font-size: 90%;
  line-height: 1.4;
}

.archive_set .entry-footer{
  font-size: 80%;
  color: #999;
  margin:10px 0 20px 0 !important;
}

.spage-date{
  font-size: 80%;
  color: #999;
  margin:20px 0 10px 0 !important;
}

.widget-area{
  margin:5% auto ;
}

.singular .entry-title{
  font-size: 20px !important;
  line-height: 160%;
  font-weight: 900;
}

.nav-links .nav-previous,
.nav-links .nav-next{
  width: 45%;
  display: inline-block;
}

.humanbook_2col{
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

.youtube_2colbox{
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 20px auto 0;
    font-size: 14px;
}

}

/* ワードプレス追加設定ここまで */