@charset "UTF-8";
*{
  margin: 0;
  padding: 0;
}
body{
  -webkit-touch-callout:none; /* リンク長押しのポップアップを無効化 */
  -webkit-user-select:none; /* テキスト長押しの選択ボックスを無効化*/
  font-family: 'Noto Sans JP', sans-serif;
  color:#555;
}
/* img{
    pointer-events: none;
} */
#header_pic {
  background: #cce4ff;
  height: 360px;
  display: flex;
  justify-content: center;
  text-align: center;
}
#logo_box{
  height: 200px;
  width: auto;
  align-self: center;
  /* padding-top: 60px; */
}
#logo_box img {
  height: 200px;
  width: auto;
}

#top_line {
  height: 30px;
  width: 100%;
  background: #ffffb3;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

#top_line::before {
  width: 100%;
  height: 100%;
	content:'';
	position:absolute;
	top: 0;
  left:50%;
	color: white;
	font-size: 0.6rem;
	padding: 0.2rem;
	background: #d9ffb3;
	transform:skewX(-30deg);
}
/* #home {
  heigt: 20px;
} */
#home a{
  margin-left: 8px;
}
#home img{
  height: 20px;
}

#bottom_line {
  height: 120px;
  width: 100%;
  background: #ffffb3;
  position: relative;
  overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

#bottom_line::before {
  width: 100%;
  height: 100%;
	content:'';
	position:absolute;
	top: 0;
  left:50%;
	color: white;
	font-size: 0.6rem;
	padding: 0.2rem;
	background: #d9ffb3;
	transform:skewX(-30deg);
	z-index: 1;
}

#greeting {
	z-index: 2;
	background: white;
	opacity: 0.7;
	padding: 0.3rem;
  font-weight: bold;
  color: #3d444d;
}
.title{
  font-size: 1.2rem;
  padding-left: 5%;
  padding-top: 1.0rem;
}
.title_sub{
  font-size: 1.0rem;
  padding-left: 7%;
  padding-top: 0.5rem;
}
#main_container{
  background: #f0f7ff;
  padding-bottom: 3rem;
}
.contentsWrap{
  margin: 0.5rem;
  margin-left: 5%;
}
.contentsInner{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  /* justify-content: center; */
}
.contentsItem{
  padding: 0.4rem;
}
/* .contentsItem a{
  display: block;
} */

#contents_logo .contentsInner .contentsItem img{
  width: 8rem;
  height: auto;
  border: solid 1px #ccc;
}
#contents_illust .contentsInner .contentsItem{
}
#contents_illust .contentsInner .contentsItem img{
  width: 8rem;
  height: auto;
  border: solid 1px #ccc;
  background: #fff;
}

#contents_webdesign .contentsInner .contentsItem img{
  width: 12rem;
  height: 14rem;
  object-fit: cover;
  /* overflow: hidden; */
}
#contents_webap .contentsInner .contentsItem img{
  height: 12rem;
  width: auto;
  object-fit: cover;
}
#contents_story .contentsInner .contentsItem img{
  width: 10rem;
  height: auto;
}

#carouselWrap{
  margin: 100px auto;
  width: 620px;
  height: 135px;
  padding: 5px;
  /* background: url('../images/pic/background.gif'); */
  background: #5c7b99;
  position: relative;
}
#carouselPrev{
  position: absolute;
  top: 65px;
  left: -20px;
  cursor: pointer;
}
#carouselNext{
  position: absolute;
  top: 65px;
  right: -20px;
  cursor: pointer;
}
#carousel{
  width: 100%;
  height: 100px;
  overflow: hidden;
}
#carouselInner ul.column{
  width: 605px;
  height: 105px;
  padding: 15px 0 15px 15px;
  list-style-type: none;
  float: left;
}
#carouselInner ul.column li{
  overflow: hidden;
  float: left;
  margin-right: 10px;
  display: inline;
}
#carouselInner ul.column li img{
  border: none;
}

.footer {
  background: #cce4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  flex-direction:column;
}
/* --------------------------------
 * smart phone
 * -------------------------------- */
 @media (max-width: 768px) {
   #contents_webap .contentsInner .contentsItem img{
     width: 90%;
     height: auto;
     object-fit: cover;
   }
}
