/* --------------------------------

Primary style

-------------------------------- */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", Avenir, "Helvetica Neue", Helvetica, Arial, Verdana, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 200%;
	color: #444;
}

body, html {
  /* important */
  height: 100%;
}

a {
  color: #444;
  text-decoration: none;
}
a:hover {
  color: #ce181e;
  border-bottom: 2px solid #ce181e;
}


/* ADADのLinlを目立たなくする */
#footerbox a {
  color: #444;
  text-decoration: none;
}
#footerbox a:hover {
  color: #fff;
  border-bottom: 0 solid #ce181e;
}

/* --------------------------------

header

-------------------------------- */

/* cd-header
---------------------------------*/
.cd-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 2;
  border: 0px solid #ccc;
}
.cd-header:after {
  content: "";
  display: table;
  clear: both;
}
/* cd-logo
---------------------------------*/
.cd-header #cd-logo {
  float: left;
  margin: 8px 0 0 5%;
}
.cd-header #cd-logo img {
  display: block;
}
/* 960px以上
---------------------------------*/
@media only screen and (min-width: 960px) {
  .cd-header {
    height: 70px;
  }
  .cd-header #cd-logo {
    margin: 8px 0 0 5%;
  }
}

/* --------------------------------

cd-Main Nav

-------------------------------- */
/* 960px以下
---------------------------------*/
.cd-main-nav {
  float: right;
  margin-right: 5%;
  width: 44px;
  height: 100%;
  background: url("../img/cd-icon-menu.svg") no-repeat center center;
  background-size: 44px 44px;
  cursor: pointer;
}
.cd-main-nav ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.cd-main-nav ul.is-visible {
  -webkit-transform: translateY(70px);
  -moz-transform: translateY(70px);
  -ms-transform: translateY(70px);
  -o-transform: translateY(70px);
  transform: translateY(70px);
}
.cd-main-nav a {
  display: block;
  height: 70px;
  line-height: 70px;
  padding-left: 5%;
  background: #888;
  border-top: 1px solid #fff;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.cd-main-nav a:hover {
  background: #ce181e;
  color: #fff;
}
/* PC 960px以上
---------------------------------*/
@media only screen and (min-width: 960px) {
  .cd-main-nav {
    width: auto;
    height: auto;
    background: none;
    cursor: auto;
  }
  .cd-main-nav ul {
    position: static;
    width: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    line-height: 70px;
  }
  .cd-main-nav ul.is-visible {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .cd-main-nav li {
    display: inline-block;
    margin-left: 1em;
  }
  .cd-main-nav a {
    display: inline-block;
    height: auto;
    line-height: normal;
    background: transparent;
    padding: .6em 1em;
    border-top: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    color: #444;
  }
  .no-touch .cd-main-nav a:hover {
    color: #ce181e;
    border-bottom: 3px solid #ce181e;
    background: none;
  }
}

/* --------------------------------

cd-main-content

-------------------------------- */
.cd-main-content {
  /* you need to assign a min-height to the main content so that the children can inherit it*/
  height: 100%;
  position: relative;
  z-index: 1;
}
/* --------------------------------

cd-container

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}
.cd-container h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 200%;
  color: #444;
  margin: 30px 0 30px 0;
}
.cd-container h4 {
  font-size: 16px;
  font-weight: 600;
  color: #444;
  border-top: 1px dashed #F6A38B;
  border-bottom: 1px dashed #F6A38B;
  padding: 10px 0 15px 0;
  margin: 0px 0 20px 0;
  text-align: left;
}
.cd-container p {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 200%;
  margin: 20px 0 20px 0;
  color: #444;
}
/* 960px以上
---------------------------------*/
@media only screen and (min-width: 960px) {
  .cd-container h3 {
    font-size: 22px;
  }
  .cd-container h4 {
    font-size: 18px;
  }
  .cd-container p {
    font-size: 16px;
  }
}


/* max-width: 767px 上書き　改行無効 */
@media (max-width: 767px) {
  .cd-container h3 br {
    display: none;
  }
}

/* max-width: 767px 上書き　改行無効 */
@media (max-width: 767px) {
  .cd-container h3 {
    margin-top: -30px;
  }
}

/* max-width: 767px 上書き　改行無効 */
@media (max-width: 767px) {
  .cd-container #box-contact h3 {
    margin-top: 20px;
  }
  .cd-container #box-contact h3 br {
    display: block;
  }
}

/* --------------------------------

タイトルで使うcirclemoji

-------------------------------- */
.circlemoji {
  border-radius: 50%;
  height: 130px;
  width: 140px;
  background-color: #ce181e;
  display: flex;
	align-items: center;
	justify-content: center;
  margin: 20px auto 10px auto;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}
/* アニメーションを追加
---------------------------------*/
.circlemoji {
  animation: pulse_1719 3s linear infinite;
  transform-origin: 50% 50%;
}
@keyframes pulse_1719 {
  0% { transform: scale(1.1) }
  33.33333% { transform: scale(0.8) }
  66.66667% { transform: scale(1.1) }
  100% { transform: scale(1.1) }
}
.circlemojisita {
  margin: 0px auto 30px auto;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  color: #ce181e;
}

/* --------------------------------

採用に関して本当にbox

-------------------------------- */
.saiyo-box {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
	position: relative;
	display: inline-block;
	padding: 10px 15px 20px 15px;
	height: auto;
	line-height: 34px;
	color: #19283C;
	text-align: center;
	background: #fff;
	border: 1px dashed #F6A38B;
	z-index: 0;
}
.saiyo-box:before {
	content: "";
	position: absolute;
	bottom: -18px; left: 50%;
	margin-left: -18px;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 18px 18px 0 18px;
	border-color: #fff transparent transparent transparent;
	z-index: 0;
}
.saiyo-box:after {
	content: "";
	position: absolute;
	bottom: -19px; left: 50%;
	margin-left: -19px;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 19px 19px 0 19px;
	border-color: #F6A38B transparent transparent transparent;
	z-index: -1;
}
/* 採用に関して本当にお困りではありませんか？ */
.saiyo-box h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 150%;
  margin-top: 0px;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  text-align: left;
}
/*若くてやる気 */
ul.saiyo {
  margin-left: 10px;
}
li.saiyo  {
  font-size: 16px;
  font-weight: 500;
  line-height: 200%;
  text-align: left;
  list-style-type: none!important;/*ポチ消す*/
}
/*理由は簡単です。 */
.saiyo-box h3 {
  font-size: 20px;
  margin-top: 20px;
  margin-left: 10px;
  margin-bottom: 0px;
  text-align: left;
}
  /*日本は超少子高齢化 */
.saiyo-box p {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0em;
  line-height: 200%;
  color: #444;
  margin-top: 10px;
  margin-left: 10px;
  margin-bottom: 10px;
  text-align: left;
}

/* max-width: 767px 上書き　改行無効 */
@media (max-width: 767px) {
  .saiyo-box p br {
    display: none;
  }
}

/*アンダーライン青 */
.under-blue {
border-bottom: dashed 1px #87CEFA;
}
.font-red{
  font-weight: 600;
  color: #ce181e;
}
/* 960px以上
---------------------------------------------------- */
@media screen and (min-width: 960px) {
  .saiyo-box {
    max-width: 960px;
  }
  /* 採用に関して本当にお困りではありませんか？ */
  .saiyo-box h2 {
    font-size: 33px;
    margin-left: 100px;
    margin-right: 80px;
    margin-bottom: 20px;
  }
  /*若くてやる気 */
  ul.saiyo {
    margin-left: 100px;
  }
  li.saiyo  {
    font-size: 18px;
  }
  /*理由は簡単です。 */
  .saiyo-box h3 {
    margin-top: 30px;
    margin-left: 100px;
  }
    /*日本は超少子高齢化 */
  .saiyo-box p {
    font-size: 18px;
    margin-left: 100px;
    margin-bottom: 20px;
  }
}

/* --------------------------------

font-awesomeの色指定

-------------------------------- */
/*レ点青*/
.fa-check:before {
  color: #66ccff;
}
.fa-red:before {
  color: #F6A38B;
}
/* --------------------------------

モンゴル・ベトナム人材採用

-------------------------------- */
.countryblock{
margin:0px;
border:dashed 1px #F6A38B;
background-color:#fff;
padding: 10px 30px 20px 30px;
margin: 0px 0px 30px 0px;
text-align:left;
}
ol.sample3{
  counter-reset:list;
  list-style-type:none;
}
ol.sample3 li{
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 200%;
  position:relative;
  padding: 15px 0px 15px 40px;
  margin: 0px 0px 0px 0px;
  border-bottom:dashed 1px #F6A38B;
}
ol.sample3 li:before{
  counter-increment: list;
  content: counter(list);
  position: absolute;
  left: 0px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  color: #fff;
  background: #F6A38B;
  border-radius: 50%;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
img.example {
vertical-align: middle;
}
/* 960px以上
---------------------------------------------------- */
@media screen and (min-width: 960px) {
  ol.sample3 li {
    font-size: 16px;
  }
}
/* --------------------------------

モンゴル・ベトナム人材採用
国旗と国名

-------------------------------- */
.flagandcountry{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
}
.flag {
  width: 100%;
  text-align: center;
  margin-top: 10px;
}
.country {
  text-align: center;
  margin: 0px auto 0px auto;
}
.country h4 {
  width: 100%;
  font-size: 16px;
  text-align: center;
  margin: 0px auto 0px auto;
  border: none;
}
/* 960px以上
---------------------------------------------------- */
@media screen and (min-width: 960px) {
  .flag {
    width: 13%;
    text-align: left;
    margin-top: 10px;
  }
  .country {
    width: 87%;
    text-align: left;
    margin-top: 10px;
  }
  .country h4 {
    font-size: 20px;
    text-align: left;;
  }
}

/* --------------------------------

cd-fixed-bg それぞれの背景と中の文字
h3とｈ4

-------------------------------- */
.cd-fixed-bg {
  position: relative;
  min-height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}
.cd-fixed-bg h1, .cd-fixed-bg h2 {
  font-size: 42px;
  font-family: 'Noto Sans JP', sans-serif;
	font-weight: 900;
	letter-spacing: 0.1em;
	line-height: 200%;
	color: #fff;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.cd-fixed-bg h2 {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 90%;
  max-width: 1170px;
}
/*理系人材採用にお悩みの方必見！ */
.cd-fixed-bg h4 {
  font-size: 18px;
  font-family: 'Noto Sans JP', sans-serif;
	font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 150%;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  margin: 0px auto 0px auto;
}
.cd-fixed-bg.cd-bg-1 {
  background-image: url("../img/jc-1.jpg");
}
.cd-fixed-bg.cd-bg-2 {
  background-image: url("../img/jc-2.jpg");
}
.cd-fixed-bg.cd-bg-3 {
  background-image: url("../img/jc-3.jpg");
}
.cd-fixed-bg.cd-bg-4 {
  background-image: url("../img/jc-4.jpg");
}
/* 768px以上
---------------------------------------------------- */
@media only screen and (min-width: 768px) {
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 52px;
  }
  /*理系人材採用にお悩みの方必見！ */
  .cd-fixed-bg h4 {
    font-size: 24px;
    margin: 0px auto 0px auto;
  }
}
/* 960px以上
---------------------------------------------------- */
@media only screen and (min-width: 960px) {
  .cd-fixed-bg {
    background-attachment: fixed;
  }
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 66px;
  }
  /*理系人材採用にお悩みの方必見！ */
  .cd-fixed-bg h4 {
    font-size: 28px;
    margin: 0px auto 0px auto;
  }
}
/* --------------------------------

cd-scrolling-bg

-------------------------------- */
.cd-scrolling-bg {
  position: relative;
  min-height: 100%;
  padding: 4em 0;
  line-height: 1.6;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.cd-scrolling-bg.cd-color-1 {
  background-color: #fffff5;
}
.cd-scrolling-bg.cd-color-2 {
  background-color: #fffff5;
}
.cd-scrolling-bg.cd-color-3 {
  background-color: #fffff5;
}
.cd-scrolling-bg.cd-color-4 {
  background-color: #fffff5;
}
.cd-scrolling-bg.cd-color-5 {
  background-color: #777;
  box-shadow: none;
}

/* --------------------------------

cd-intro 人材採用支援のみに使用

-------------------------------- */
.cd-intro {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
  width: 90%;
  max-width: 1170px;
}

/* --------------------------------

map 16:9のサイズ想定なら9/16=0.56=56%

-------------------------------- */
/* mapとFacebook
---------------------------------------------------- */
.mapface {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
}
.m1 {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}
.m2 {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}
/* 600px以上767px以下
---------------------------------------------------- */
@media screen and (min-width: 600px) and (max-width: 767px)  {
  .mapface {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    border: 0px solid red;
  }
  .m1 {
    width: 55%;
    text-align: left;
  }
  .m2 {
    width: 45%;
    text-align: right;
  }
}
/* 768px以上959px以下
---------------------------------------------------- */
@media screen and (min-width: 768px) and (max-width: 959px)  {
  .mapface {
    width: 100%;
    max-width: 768px;
    margin: 20px auto;
    border: 0px solid blue;
  }
  .m1 {
    width: 64%;
    text-align: left;
  }
  .m2 {
    width: 36%;
    text-align: right;
  }
}
/* 960px以上
---------------------------------------------------- */
@media screen and (min-width: 960px) {
  .mapface {
    width: 100%;
    margin: 20px auto 0px auto;
    border: 0px solid orange;
  }
  .m1 {
    width: 70%;
    text-align: left;
  }
  .m2 {
    width: 30%;
    text-align: right;
  }
}
/* Google map 599px以下
---------------------------------------------------- */
.ggmap{
	position: relative;
	width: 100%;
  margin-left: auto;
  margin-right: auto;
	padding: 0 0 60%;
	overflow: hidden;
}
.ggmap iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}
/* Google map 600px以上767px以下
---------------------------------------------------- */
@media screen and (min-width: 600px) and (max-width: 767px)  {
  .ggmap{
    position: relative;
    max-width: 330px;
    margin-top: 0px;
    padding: 0 0 100%;
    overflow: hidden;
  }
  .ggmap iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
  }
}
/* Google map 768px以上959px以下
---------------------------------------------------- */
@media screen and (min-width: 768px) and (max-width: 959px)  {
  .ggmap{
    position: relative;
    max-width: 491px;
    margin-top: 0px;
    padding: 0 0 81%;
    overflow: hidden;
  }
  .ggmap iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
  }
}
/* 960px以上
---------------------------------------------------- */
@media screen and (min-width: 960px) {
  .ggmap{
    position: relative;
    max-width: 672px;
    margin-top: 0px;
    padding: 0 0 60%;
    overflow: hidden;
  }
  .ggmap iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
  }
}
/* --------------------------------

丸数字をcssだけでつくる

-------------------------------- */
p.circle {
  color: #fff;
  background-color:#ce181e;
  padding: 0;
  margin: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
}


/* --------------------------------

よくある質問

-------------------------------- */
#box-question {
  max-width: 960px;
  margin-top: 30px;
  margin-bottom: 0px;
  margin-right: auto;
  margin-left: auto;
  padding: 15px;
  font-weight: 600;
  text-align: left;
  background-color:#999;
  color: #fff;
}
#box-answer {
  max-width: 960px;
  margin-top: 0px;
  margin-bottom: 30px;
  margin-right: auto;
  margin-left: auto;
  padding: 5px 15px 5px 15px;
  background-color:#fdeff5;
}

/* --------------------------------

よくある質問、アコーデオン式

-------------------------------- */
label {
  background-color:#999;
  color: #fff;
  font-weight: 600;
  padding: 10px;
  display: block;
  margin-bottom: 20px;
  border: 1px solid #fff;
}
input[type="checkbox"].on-off{
  display: none;
}
.qanda ul {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  margin: 0;
  padding: 0;
  list-style: none;
}
.qanda li {
  padding: 5px 15px 5px 15px;
  background-color:#fdeff5;
}
input[type="checkbox"].on-off + ul{
  height: 0;
  overflow: hidden;
}
input[type="checkbox"].on-off:checked + ul{
  height: 200px;
}

/* --------------------------------

お問い合わせ

-------------------------------- */
#box-contact {
	max-width: 960px;
	margin-top: 0px;
	margin-bottom: 10px;
	margin-right: auto;
	margin-left: auto;
  text-align: center;
}
#box-contact h2 {
	font-size: 62px;
	font-weight: 400;
	letter-spacing: 0.01em;
	line-height: 100%;
	color: #fff;
  text-align: center;
}
#box-contact h3 {
	font-size: 20px;
  font-family: "Open Sans", Avenir, "Helvetica Neue", Helvetica, Arial, Verdana, 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
	font-weight: 500;
	letter-spacing: 0em;
	line-height: 150%;
	color: #fff;
  text-align: center;
}

/* max-width: 767px以下 上書き */
@media (max-width: 767px) {
  #box-contact h3 {
  	font-size: 18px;
    font-family: "Open Sans", Avenir, "Helvetica Neue", Helvetica, Arial, Verdana, 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  	font-weight: 500;
  	letter-spacing: 0em;
  	line-height: 150%;
  	color: #fff;
    text-align: center;
  }
}


#box-contact p {
	color: #222;
  margin-top: 0px;
}


/* max-width: 767px以下 上書き */
@media (max-width: 767px) {
  #box-contact p {
  	font-size: 12px;
  }
}

.under {
  padding-bottom: 10px;
	border-bottom: 4px solid #ce181e;
}
#box-sbt {
	max-width: 100px;
	margin-top: 10px;
	margin-bottom: 30px;
	margin-right: auto;
	margin-left: auto;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;

}
input[type="submit"]{
	width:100px;
	height:100px;
  margin-top: 30px;
  margin-bottom: 30px;
  margin-right: auto;
  margin-left: auto;
	background-color:#ce181e;
	border:none;
	color:#fff;
	font-size:16px;
	font-weight:700;
	text-align:center;
  border-radius: 50%;

}
input[type="submit"]:hover{
	background-color:#fff !important;
	color:#ce181e;
}

/* --------------------------------

footer

-------------------------------- */
#footerbox{
	width: 100%;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 30px;
	padding-bottom: 30px;
	font-size: 12px;
	font-family: "Open Sans", Avenir, "Helvetica Neue", Helvetica, Arial, Verdana, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 200%;
	color: #fff;
	text-align: center;
	background: #999;
}


#kaiketu {
  display:block;
  position: absolute;
  left:0;
  right:0;
  bottom:60px;
  margin-left:auto;
  margin-right:auto;
  z-index: 9999;
}













/* CSSアニメーションの設定 */
   .poyon {
     -webkit-animation: poyon 1.1s linear 0s 1;
     animation: poyon 1.1s linear 0s 1;
   }
   @-webkit-keyframes poyon {
     0%   { -webkit-transform: scale(0.8, 1.4) translate(0%, -100%); }
     10%  { -webkit-transform: scale(0.8, 1.4) translate(0%, -15%); }
     20%  { -webkit-transform: scale(1.4, 0.6) translate(0%, 30%); }
     30%  { -webkit-transform: scale(0.9, 1.1) translate(0%, -10%); }
     40%  { -webkit-transform: scale(0.95, 1.2) translate(0%, -30%); }
     50%  { -webkit-transform: scale(0.95, 1.2) translate(0%, -10%); }
     60%  { -webkit-transform: scale(1.1, 0.9) translate(0%, 5%); }
     70%  { -webkit-transform: scale(1.0, 1.0) translate(0%, 0%); }
     100% { -webkit-transform: scale(1.0, 1.0) translate(0%, 0%); }
   }
   @keyframes poyon {
     0%   { transform: scale(0.8, 1.4) translate(0%, -100%); }
     10%  { transform: scale(0.8, 1.4) translate(0%, -15%); }
     20%  { transform: scale(1.4, 0.6) translate(0%, 30%); }
     30%  { transform: scale(0.9, 1.1) translate(0%, -10%); }
     40%  { transform: scale(0.95, 1.2) translate(0%, -30%); }
     50%  { transform: scale(0.95, 1.2) translate(0%, -10%); }
     60%  { transform: scale(1.1, 0.9) translate(0%, 5%); }
     70%  { transform: scale(1.0, 1.0) translate(0%, 0%); }
     100% { transform: scale(1.0, 1.0) translate(0%, 0%); }
   }

/* 特設サイトを見るボタン */
.a-button-aki {
  text-align: center;
  text-decoration: none;
  margin: 20px auto 20px auto;
  outline: none;
}
.a-button {
  display: inline-block;
  width: 200px;
  height: 54px;
  text-align: center;
  text-decoration: none;
  outline: none;
  position: relative;
  z-index: 2;
  background-color: #ce181e;
  border: 2px dashed #ce181e;
  color: #fff;
  line-height: 50px;
  font-size: 18px;
  font-weight: 600;
}
.a-button:hover {
  background-color: #fff;
  border: 2px dashed #ce181e;
  border-color: #ce181e;
  color: #ce181e;
}
.a-button::before,
.a-button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #ce181e;
}
.a-button,
.a-button::before,
.a-button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.a-button::before {
  right: 0;
}
.a-button::after {
  left: 0;
}
.a-button:hover::before,
.a-button:hover::after {
  width: 0;
  background-color: #ce181e;
}




/* --------------------------------

20230914会社概要にTimee追加

-------------------------------- */
.hover-image {
   width: 140px;
   height: 47px;
}
.hover-image img {
  width: 140px;
  height: 47px;
}

.hover-image:hover img {
   display: none;
}

.hover-image:hover {
   background-image: url("../img/timee-logo-hover.jpg")!important;
   background-repeat: no-repeat;
}
