@charset "utf-8";
/* common.css */

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* reset    　　　　　　　　　                                            */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
body, div, textarea, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
dl, dt, dd, ol, ul, li, form, label, table, tr, th, td {
	padding: 0;
	font-weight: normal;
	font-size: 100%;
	margin-bottom: 0px;
	margin-left: 0;
	margin-right: 0;
	margin-top: 0;
}

body {
	-webkit-text-size-adjust: 100%;
}

img {
	vertical-align: bottom;
	border: 0;
}

ol,
ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* clear fix 　　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.row:before,
.doc_set:before,
.inner:before,
.cf:before,
.row:after,
.doc_set:after,
.inner:after,
.cf:after {
	content: "";
	display: table;
}

.row:after,
.doc_set:after,
.inner:after,
.cf:after {
	clear: both;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* 基本あれこれ　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
body {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 18px;
	line-height: 1.8em;
	color: #84404d;
	background-color: #f4bcbc;
}

/* -- ボックス ----------------------------------------------- */
.doc_set {

}
.data_box {
	margin-left: 25px;
	margin-right: 25px;
}
.inner {
	padding-left: 50px;
	padding-right: 50px;
}
.img_100 img {
	width: 100%;
	height: auto;
}

/* -- リスト ----------------------------------------------- */
.list_nomal {
	margin-left: 1.2em;
	list-style-type: disc;
}


/* -- フェードイン ----------------------------------------------- */
/* 下から上 */
.fadein_up {
    opacity : 0;
    transform : translate(0px, 100px);
    transition : all 500ms;
}
.fadein_up.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

/* 左から右 */
.fadein_lr {
    opacity : 0;
    transform : translate(-200px, 0px);
    transition : all 500ms;
}
.fadein_lr.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

/* 右から左 */
.fadein_rl {
    opacity : 0;
    transform : translate(200px, 0px);
    transition : all 500ms;
}
.fadein_rl.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

/* その場で */
.fadein_stay {
    opacity : 0;
    transition : all 1000ms;
}
.fadein_stay.scrollin {
    opacity : 1;
}

/* -- 画面開いてすぐにフェードイン ----------------------------------------------- */
/* その場で */
.op_fadeIn{
animation-name:fadeInAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 下から */
.op_fadeUp{
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 上から */
.op_fadeDown{
animation-name:fadeDownAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

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

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 左から */
.op_fadeLeft{
animation-name:fadeLeftAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
  transform: translateX(-100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* 右から */
.op_fadeRight{
animation-name:fadeRightAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateX(100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* -- その他 ----------------------------------------------- */

.over {
}

/* TEL リンク */
a[href^="tel:"] { 
    cursor: default;
} 

/* PC・スマホ 表示、非表示 */
.pc_none {
	display: none;	
}
.sp_none {
	
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* header　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#header {
	background-image: url(../pre_images/header_bg.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% auto;
	width: 768px;
	margin-left: auto;
	margin-right: auto;
	background-color: #FFFFFF;
	position: relative;
}
#logo img {
	width: 100%;
	height: auto;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* container　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#container {
	width: 768px;
	margin-left: auto;
	margin-right: auto;
	background-color: #FFFFFF;
	position: relative;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* footer　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#footer {
	text-align: center;
	padding-bottom: 30px;
	width: 768px;
	margin-left: auto;
	margin-right: auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #FFFFFF;
}
#ft_logo {
	margin-bottom: 30px;
	border-top: 5px solid #84404D;
	padding-top: 50px;
}
#ft_logo img {
	width: 200px;
	height: auto;
}
#footer p {
	font-size: 16px;
	font-weight: 700;
}
#copy {
	border-top: 5px solid #84404d;
	margin-top: 50px;
	padding-top: 20px;
	font-size: 12px !important;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* 固定ナビ　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#fix_box {
	position: fixed;
	right: 0px;
	bottom: 0px;
}
#fix_box ul {
	font-size: 0px;
}
#fix_box li {
	margin-left: 1px;
	display: inline-block;
	font-size: 14px;
	vertical-align: bottom;
}
#fix_box li img {
	width: auto;
	height: 80px;
}
#bt_tel img {
	border-top-left-radius: 20px;
}



















/* ↓↓↓↓↓↓↓↓↓↓ ---以下スマホ--- ↓↓↓↓↓↓↓↓↓↓ */


@media screen and (max-width: 768px) {

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* 基本あれこれ　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
body {
	font-size: 15px;
	line-height: 1.6em;
}
	
/* -- ボックス ----------------------------------------------- */
.doc_set {
	padding-left: 20px;
	padding-right: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.data_box {
	margin-left: 15px;
	margin-right: 15px;
}
.inner {
	width: 100%;
	padding-left: 0px;
	padding-right: 0px;
}

/* -- その他 ----------------------------------------------- */	

/* PC・スマホ 表示、非表示 */
.pc_none {
	display: inherit;
}
.sp_none {
	display: none;
}
	
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* header　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#header {
	width: 100%;
}
	
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* container　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#container {
	width: 100%;
}
	
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* footer　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#footer {
	padding-top: 50px;
	padding-bottom: 100px;
	width: 100%;
}
#footer p {
	font-size: 14px;
}
#copy {
	font-size: 10px !important;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* 固定ナビ　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#fix_box {
	right: 0px;
	bottom: 0px;
	left: 0px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	background-color: #ffffff;
}
#fix_box ul {
}
#fix_box li {
	margin-left: 0px;
	text-align: center;
	background-color: #86414e;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#fix_box li a {
	display: block;
}
#fix_box li img {
	height: 60px;
}

/* 個別設定 */
#bt_tel {
	width: calc(100% - 162px);
}
#bt_tel img {
	border-top-left-radius: 0px;
}
#bt_mail {
	width: 81px;
	border-left: 1px solid #FFFFFF;
}
#bt_recruit {
	width: 81px;
	border-left: 1px solid #FFFFFF;
}
}
