@charset "utf-8";
/* --------------------------------------------------
	html
-------------------------------------------------- */
html, body {
  height: 100%;
  background-color: #FFFFFF;
	color: #222;
  font-size: 1em;
  line-height: 160%;
  font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
}

@media screen and (min-width : 1000px) {
html, body {
  font-size : 1em;
}
}
/* --------------------------------------------------
	img切り替え
-------------------------------------------------- */
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
.pc { display: none !important; }
.sp { display: block !important; }
}
/* --------------------------------------------------
	リンク調整
-------------------------------------------------- */
#link01 {
  margin-top:-50px;
  padding-top:50px;
}
@media only screen and (min-width: 1000px) {
#link01 {
  margin-top:-50px;
  padding-top:50px;
}
}


/* --------------------------------------------------
	float
-------------------------------------------------- */
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.img-right {
  float: right;
}
.img-left {
  float: left;
  margin: 20px;
}
/* --------------------------------------------------
	margin
-------------------------------------------------- */
.ma_top_10{
  margin-top: 10px;
}
.ma_top_20{
  margin-top: 20px;
}
.ma_top_30{
  margin-top: 30px;
}
.ma_top_40{
  margin-top: 40px;
}
.ma_top_50{
  margin-top: 50px;
}
.ma_bottom_10{
  margin-bottom: 10px;
}
.ma_bottom_20{
  margin-bottom: 20px;
}
.ma_bottom_30{
  margin-bottom: 30px;
}
.ma_bottom_40{
  margin-bottom: 40px;
}
.ma_bottom_50{
  margin-bottom: 50px;
}
.ma_left_10{
	margin-left: 10px;
}
.ma_left_20{
	margin-left: 20px;
}
.ma_left_30{
	margin-left: 30px;
}
.ma_left_40{
	margin-left: 40px;
}
.ma_left_50{
	margin-left: 50px;
}
/* --------------------------------------------------
	font_size
-------------------------------------------------- */
.fs_d {
	font-size: 14px;
	line-height: 170%;
}
@media screen and (min-width : 1000px) {
.fs_d {
	  font-size : 14px;
}
}

.fs_db {
	font-size: 16px;
	line-height: 170%;
	font-weight: bold;
}
@media screen and (min-width : 960px) {
.fs_db {
	  font-size : 16px;
}
}

.fs_big {
	font-size: 44px;
	line-height: 170%;
	font-weight: bold;
}
@media screen and (min-width : 960px) {
.fs_big {
	  font-size : 55px;
}
}

.fs_ttl {
	font-size: 18px;
	line-height: 170%;
	font-weight: bold;
	letter-spacing: 0.5em;
	border-bottom: 2px solid #5e5696; 
}

@media screen and (min-width : 960px) {
.fs_ttl {
	font-size: 26px;
	line-height: 170%;
	font-weight: bold;
	letter-spacing: 0.5em;
}
}
.fs_ttl2 {
	font-size: 16px;
	line-height: 170%;
	letter-spacing: 0.5em;
	color: #999999;
}


/* --------------------------------------------------
	font_color
-------------------------------------------------- */
.red {
  color: #C00;
}
.pink {
  color: #F69;
  font-weight: bold;
}
.blue {
  color: #19193d;
  font-weight: bold;
}
.white {
  color: #FFF;
  font-weight: bold;
}
.yellow {
  color:#FAFA03;
  font-weight: bold;
}
.green {
  color:#28AA32;
  font-weight: bold;
}
.orange {
  color:#F67103;
  font-weight: bold;
}
/* --------------------------------------------------
	bg_color
-------------------------------------------------- */
.bg_red {
  background-color: #118cd2;
  color: #FFF;
}
.bg_red a {
  color: #FC0;
}
.bg_blue {
  background-color: #99ccff;
}
.bg_white {
  background-color: #fff;
}
/* --------------------------------------------------
	main_image
-------------------------------------------------- */
.flex_box {
	background-color: #ffffff;
}
@media screen and (min-width : 1000px) {
.flex_box {
	display: flex;
	align-items:stretch;
	justify-content:start;
	flex-wrap: wrap;
	
}
}

.flex_item2 {
	width: 100%;
    padding: 40px;
    color:  #222;               /* 文字色 */
}
@media screen and (min-width : 1000px) {
.flex_item2 {
	width: 33%;
    padding: 20px;
    color:  #222;               /* 文字色 */
}
}
.flex_item2:nth-child(1) {
    background-color:  #c1bed8; /* 背景色指定 */
}
 
.flex_item2:nth-child(2) {
    background-color:  #222; /* 背景色指定 */
	color:#fff;
}
 
.flex_item2:nth-child(3) {
    background-color: #c1bed8; /* 背景色指定 */
}

.flex_item2:nth-child(4) {
    background-color:  #222; /* 背景色指定 */
	color:#fff;
}
 
.flex_item2:nth-child(5) {
    background-color: #c1bed8; /* 背景色指定 */
}
.flex_item2:nth-child(6) {
    background-color:  #222; /* 背景色指定 */
	color:#fff;
}
 
.flex_item2:nth-child(7) {
    background-color: #c1bed8; /* 背景色指定 */
}

/* --------------------------------------------------
	ttl
-------------------------------------------------- */
.ttl {
  width: 100%;
  margin: 0 auto;
	padding-top: 3%;
	padding-bottom: 3%;
  text-align: left;
  color: #222222;
	
}


/* --------------------------------------------------
	hr
-------------------------------------------------- */
hr {
	height: 0; 
	margin-top: 20px;
	margin-bottom: 20px;
	padding: 0; 
	border: 0; 
	border-top: 1px dashed #ccc;
}
/* --------------------------------------------------
	wrapper
-------------------------------------------------- */
#wrapper {
  color: #555;
}

@media screen and (min-width : 768px) {
#wrapper {
  width: 100%;
}
}

@media screen and (min-width : 1000px) {
#wrapper {
  width: 1000px;
  margin: 0 auto;
}


	
/* --------------------------------------------------
	box
-------------------------------------------------- */
}
.box {
  width: 100%;
  
  
}
@media screen and (min-width : 1000px) {
	.box {
  width: 90%;
  margin: 0 auto;
  padding: 2%;
}
}
.box2 {
	margin: 0px auto;
  width: 90%;

}
@media screen and (min-width : 1000px) {
	.box2 {
  width: 70%;
  margin: 0 auto;
  padding: 2%;
}
}
.box_gray {
  margin: 0 auto;
  background-color: #eeeeee;
}

/* --------------------------------------------------
	footer
-------------------------------------------------- */
#footer {
	background-color: #fff;
	color: #222222;
	padding-top: 2%;
	padding-bottom: 2%;
}
@media screen and (min-width : 1000px) {
#footer {
	display: flex;
	align-items:stretch;
	justify-content:center;
}
}
#footer a {
	  color: #222222;
}
.flex_item {
    padding: 2%;
    color:  #222;
}

.copy{
	background-color: #000;
	text-align: center;
	font-size: 12px;
	color: #FFF;
	padding-top: 2%;
	padding-bottom: 2%;
}
/* --------------------------------------------------
	レイアウト
-------------------------------------------------- */
.layout {
	background-color: #fff;
	color: #222222;
	padding-top: 0%;
	padding-bottom: 3%;
	width: 100%;
	
}
@media screen and (min-width : 1000px) {
.layout {
	display: flex;
	align-items:stretch;
	justify-content:center;
}
}
.item {
	width: 100%;
    padding: 20px;
	background-color: #f5f5f5;
}
@media screen and (min-width : 1000px) {
.item {
	width: 460px;
}
}

.vision {
	background-color: #fff;
	color: #222222;
	padding-top: 0%;
	padding-bottom: 3%;
	width: 100%;
	
}
@media screen and (min-width : 1000px) {
.vision {
	display: flex;
	align-items:stretch;
	justify-content:center;
}
}
.item2 {
	width: 100%;
    padding: 20px;
	background-color: #fff;
}
@media screen and (min-width : 1000px) {
.item2 {
	width: 700px;
}
}
.item3 {
	width: 100%;
	padding-left: 60px;
	padding-right: 60px;
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #fff;
}
@media screen and (min-width : 1000px) {
.item3 {
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
	width: 260px;
}
}





.btn {
  display       : inline-block;
  border-radius : 0;          /* 角丸       */
  font-size     : 16pt;        /* 文字サイズ */
  text-align    : center;      /* 文字位置   */
  cursor        : pointer;     /* カーソル   */
  padding       : 0.5em 3em;   /* 余白       */
  background    : #5e5696;     /* 背景色     */
  color         : #ffffff;     /* 文字色     */
  line-height   : 1em;         /* 1行の高さ  */
  transition    : .3s;         /* なめらか変化 */
  box-shadow    : 0px 0px 0px #666666;  /* 影の設定 */
  border        : 1px solid #5e56966;    /* 枠の指定 */
margin-bottom: 5px;
	
}
.btn:hover {
  box-shadow    : none;        /* カーソル時の影消去 */
  color         : #5e5696;     /* 背景色     */
  background    : #ffffff;     /* 文字色     */
}







.link_btn {
	overflow: hidden;
  list-style: none;
	
}

.link_btn li {
	float: left;
  width: 24%;
  text-align: center;
  background: #FF9900;  
  margin-right: 1%;
	border-radius:15px;
}

.link_btn li a {
  text-decoration: none;
  color: #fff;
  font-size: 0.8em;

}



/* 経営理念 */
.flex-container {
	background-color: #fff;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	flex-direction: column;
}
@media screen and (min-width : 1000px) {
.flex-container {
	flex-direction: row;
}
}
.flex-item {
	margin: 0px auto;
	margin-bottom: 1%;
	width: 60%;padding: 1%;

	box-sizing: border-box;
	color: #222;
	}
@media screen and (min-width : 1000px) {
.flex-item {
	margin: 0px auto;
	margin-bottom: 0.5%;
	width: 21%;
	padding: 1%;
	box-sizing: border-box;
	color: #222;
	}}
.flex-item img{
	width: 60%;
}











/* --------------------------------------------------
	page-top
-------------------------------------------------- */
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 100%;
}
#page-top a {
  background: #666;
  text-decoration: none;
  color: #fff;
  width: 40px;
  padding: 10px 0;
  text-align: center;
  display: block;
  border-radius: 5px;
}
#page-top a:hover {
  text-decoration: none;
  background: #999;
}



/* --------------------------------------------------
	動き
-------------------------------------------------- */
.sa {
  opacity: 0;
  transition: all .5s ease;
}
 
.sa.show {
  opacity: 1;
  transform: none;
}
.sa--lr {
  transform: translate(-100px, 0);
}
 
.sa--rl {
  transform: translate(100px, 0);
}
.sa--up {
  transform: translate(0, 100px);
}
.sa--down {
  transform: translate(0, -100px);
}


/* --------------------------------------------------
	form
-------------------------------------------------- */
#formWrap {
	width:80%;
	margin:0 auto;
	color:#555;
	line-height:120%;
	font-size:90%;
}
table.formTable {
	width:100%;
	margin:0 auto;
	border-collapse:collapse;
	background-color: #fff;
}
table.formTable td, table.formTable th {
	border:1px solid #efefef;
	padding:10px;
}
table.formTable th {
	width:30%;
	font-weight:normal;
	background:#ccc;
	text-align:left;
}

/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:1000px) {
#formWrap {
	width:100%;
	margin:0 auto;
}
table.formTable th, table.formTable td {
	width:auto;
	display:block;
}
table.formTable th {
	margin-top:0px;
	border-bottom:0;
}
input[type="text"], textarea {
	width:100%;
	padding:5px;
	font-size:110%;
	display:block;
}
input[type="submit"], input[type="reset"], input[type="button"] {
	display:block;
	width:100%;
	height:40px;
}
}


/* --------------------------------------------------
	slider
-------------------------------------------------- */

.slider {
	margin: 0 0 50px;
}
.slider img {
	width: 100%;
	height: auto;
}

.single-item {
	max-width: 600px;
	margin: 0 auto 50px;
}
.slick-prev::before, .slick-next::before {
	font-size: 24px;
}
.lazy-item .slick-next,
.thumb-item-nav .slick-next,
.multiple-item .slick-next,
.center-item .slick-next {
	right: 20px;
	z-index: 99;
}
.lazy-item .slick-prev,
.thumb-item-nav .slick-prev,
.multiple-item .slick-prev,
.center-item .slick-prev {
	left: 15px;
	z-index: 100;
}
.single-item .slick-prev::before,
.single-item .slick-next::before {
	color: #666;
}
.slick-dots {
	bottom:-25px;
}