*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  margin: 0;
}

body {
  overflow-x: hidden;
  font-family: 'Noto sans Jp','Yu Gothic black',sans-serif,'メイリオ';
  color: #4D4D4D
}

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

a {
  background: transparent;
  text-decoration: none;
  color: inherit;
}

/* =============================================
カードのCSSはここから
============================================= */

/* 共通CSS */
.container {
  width: 100%;
  padding: 10rem 1rem 15rem 1rem;
}

ul.item {
  list-style: none;
  display: flex;
  justify-content:
  flex-start; 
  max-width: 1180px;
  margin: 0 auto;
  margin-bottom: 50px;

}

li.list {
  width: 33.3%;
  margin-right: 20px;
}

li.list:last-child {
  margin-right: 0;
}

div.image img {
 padding: 10px 20px 10px 20px;
  width: 100%;
  object-fit: cover;
}

h3.title {
  font-weight: bold;
  font-size: 20px;
}

p.content {
  line-height: 1.2;
  color: #333;
}

/* サービス内容 */
.service-container {
  background-color: azure;
}

li.list {
  flex-direction: column;
  min-height: 300px;
  max-width: 380px;
  background: #fff;
  box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.2);
}

li.list div.image {
  width: 100%;
}

h3.title {
  padding: 1rem 1rem 0.5rem;
}

p.content {
  padding: 0 1rem;
  height: 40px;
}

li a.btn {
  display: inline-block;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  border-radius: 30px;
  padding: 6px 18px 6px 18px;
  color: #fff;
  background: #124a8f;
  margin: auto auto 1.5rem auto;
  border: 2px solid #124a8f;
  transition: 0.2s;
}

li a.btn:hover {
  color: #124a8f;
  background: #fff;
}

.download-btn {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding: 50px 5px 10px 5px;
  margin-right: auto;
  justify-content:space-around;
  padding:0 2px;
  justify-content: center; /*左右間で中央*/
  align-items: center;/*上下間で中央*/
  display: flex;/*画面に合わせてサイズが変わる*/
  flex-wrap:wrap;/*要素の折り返し設定*/
  }

  h2 {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem 2rem ;
    margin-bottom: 50px;
    border-left: 4px dotted #434343;
  }

  .section1{
    height: auto;

    }
  

  .section2{
  background-color: rgb(119, 164, 220);
  }

  .catalog-img{
    padding: 30px 20px 50px 20px;
    text-align: center;  
    margin-left: auto;
    margin-right: auto;
  }

  .catalog-img-text{
    width: 960px;
    text-align: center;  
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    padding: 10px 30px 5px 30px;
  }

.ttl_center5 {
  font-weight: bold;
  width: fit-content;
  margin: auto;
  padding: 0.5em 1em;
  margin-bottom: 0.3em;
  text-align: center;
  position: relative;
}
.ttl_center5::before, .ttl_center5::after {
  content: '';
  background-color: #4c9ac0;
  width: 50%;
  height: 3px;
  position: absolute;
}
.ttl_center5::before {
  top: 0;
  left: 0;
}
.ttl_center5::after {
  bottom: 0;
  right: 0;
}
         

.box-btn {
  width: 960px;
  text-align: center;
margin-left: auto;
margin-right: auto;
  font-size: 18px;
  display: flex;
	justify-content: space-between;
  padding-bottom: 1.5em;
}

a.btn_29 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 260px;
	margin: auto;
	padding: 1rem 2rem;
	position: relative;
	border-radius: 5px;
	border: 1px solid #2589d0;
	font-weight: bold;
	letter-spacing: 2px;
	background: transparent;
	color: #2589d0;
	overflow: hidden;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}
a.btn_29:hover {
	color: #fff;
	background: #2589d0;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
a.btn_29:hover::before {
	-webkit-animation: sh02 0.5s 0s linear;
	-moz-animation: sh02 0.5s 0s linear;
	animation: light 0.5s 0s linear;
}
a.btn_29::before {
	content: '';
	display: block;
	width: 0px;
	height: 86%;
	position: absolute;
	top: 7%;
	left: 0%;
	opacity: 0;
	background: #fff;
	box-shadow: 0 0 50px 30px #fff;
	-webkit-transform: skewX(-20deg);
	-moz-transform: skewX(-20deg);
	-ms-transform: skewX(-20deg);
	-o-transform: skewX(-20deg);
	transform: skewX(-20deg);
}
@keyframes light {
	from {opacity: 0; left: 0%;}
	50% {opacity: 1;}
	to {opacity: 0;left: 100%;}
}
.kensaku{
  width: 450px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 10px 80px 10px;
}

/*フォーム全体*/
#form1{
  position:relative;/*フォームの相対位置*/	
  max-width:520px;/*フォームのサイズ*/
  margin-bottom:15px;/*フォームの下に余白*/	 	
  }
  /*検索ボックス*/
  #sbox{
  position:absolute;/*フォームの絶対位置*/	
  left:0;
  top:0; 	
  outline:0;/*クリック時の青い枠線消す*/	
  height:50px;/*検索ボックスの高さ*/	
  padding:0 10px;/*テキスト位置調整*/	 
  border-radius:2px 0 0 2px;/*検索ボックスの角を丸める*/		
  background:#eee;/*検索ボックスの背景カラー*/		
  }
  /*検索ボタン*/
  #sbtn{
  width:70px;/*検索ボタンの横幅*/ 
  height:50px;/*検索ボタンの縦幅*/ 
  position:absolute;/*検索ボタンの絶対位置*/  
  left:270px;/*検索ボタンの位置調整*/  
  top:0;
  border-radius:0 2px 2px 0;/*検索ボタンの角を丸める*/ 
  background:#7fbfff;/*検索ボタンの背景カラー*/ 
  border:none;/*検索ボタンの枠線を消す*/ 
  color:#fff;/*検索ボタンのテキストカラー*/ 
  font-weight:bold;/*検索ボタンのテキスト太字*/ 
  font-size:16px;/*検索ボタンのフォントサイズ*/ 
  }
  /*検索ボタンマウスオーバー時*/
  #sbtn:hover{
  color:#666;/*検索ボタンマウスオーバー時のフォントカラー*/ 
  }