@charset "utf-8";
/* CSS Document */
/* メイン
--------------------------------------------
.main-wrap {
  position: relative;
  width: 100%;
  padding-top: 60px;
  overflow: hidden;
}
.main-massage {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  padding: 10px;
  width: 80%;
  height: 100px;
  z-index: 100;
  text-align: center;
  
  font-size: 1.5rem;
}
 */
  /* メイン
-------------------------------------------- */
  .main-wrap {
	position: relative;
    padding-top: 20%;
    height: 70vh;
	overflow: hidden;
  }
  .main-massage {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding: 19px 0 10px 0;
    width: 80%;
    height: 250px;
    z-index: 100;
    text-align: center;
    /*font-size:1.0vw;*/
    font-size: min(8.5vw, 9.2rem);
    letter-spacing: 0.0em;
    font-weight: 500;
    text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0px 0px 10px #fff;
	color: #192F60;
  }
  @keyframes rotation {
    0% {
      transform: rotate(0);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .warm-circle {
    position: absolute;
    top: -10%;
    right: 50%;
    bottom: 0;
    left: 0;
    margin: auto;
    padding: 10px;
    width: 28vh;
    height: 28vh;
    z-index: 90;
    animation: 55s linear infinite rotation;
  }
  .cool-circle {
    position: absolute;
    top: 5%;
    right: 0;
    bottom: 0;
    left: 40%;
    margin: auto;
    padding: 10px;
    width: 28vh;
    height: 28vh;
    z-index: 80;
    animation: 60s linear infinite rotation;
  }
  /*トップページのニュースティッカー
  .news-top {
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    bottom: 2%;
    width: 90vw;
    height: 80px;
    padding: 10px 10px 10px 10px;
    margin: auto;
    background: rgba(256, 256, 256, 0.8);
    border-radius: 10px;
    z-index: 70;
    overflow: hidden;
  }
  .news-ticker {
    display: inline-block;
    margin: 0px auto 0 20px;
    padding: 0px 0 0 0;
    overflow: hidden;
    width: 80%;
    font-size: 1.7rem;
    font-weight: 600;
  }
  .infoText {
    color: #fff;
    padding-left: 100%;
    white-space: nowrap;
    display: inline-block;
    animation: infoAnimation 30s linear infinite;
  }
  .infoText p {
    display: inline-block;
    margin: 0px 1rem 0 0;
    padding: 0px 0 0px 0;
  }
  /* 横に流れていくアニメーション */
  @keyframes infoAnimation {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }

*/




/* メイン背景が流れるボタン */
.btn {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  border: 0px solid #555; /* ボーダーの色と太さ */
  /*アニメーションの指定*/
  transition: ease .2s;
}
/*ボタン内spanの形状*/
.btn span {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #fff;
}
.btn:hover span {
  color: #333;
  transition: all 500ms;
}
/*== 背景が流れる（左から右） */
.bgleft:before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: linear-gradient(#faffa8, #fed800); /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
/*hoverした際の形状*/
.bgleft:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
/*メイン画像のズームアップ*/
@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.slide-wrap ul.bxslider li {
  animation: zoom-in 15s linear 0s 1 normal both;
}
div.preface-top {
  width: 90%;
  margin: 0px auto 50px auto;
  padding: 10px 0 0 0;
  background: url("../../images/bg-preface.png") no-repeat top center;
  background-size: contain;
}
div.preface-top > h2 {
  font-size: 2.4rem;
  text-align: center;
  margin: 0 0 10px 0;
}
div.preface-top > h3 {
  font-size: 1.7rem;
  text-align: center;
  margin: 0 0 10px 0;
  color: #666;
}
div.preface-top > p {
  font-size: 1.5rem;
  text-align: center;
}
h2.index-h2 {
  position: absolute;
  top: -30px;
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #999;
}
h2.index-h2 > span {
  font-weight: 400;
  color: #333;
  letter-spacing: 0.05em;
  margin-left: 20px;
}
h2.index-h2:after {
  position: absolute; /*positionをabsoluteに指定*/
  content: "";
  background-color: #006e54; /*下線の色*/
  width: 2em; /*線の幅*/
  height: 5px; /*線の太さ*/
  top: -5px; /*線のタテ位置*/
  left: 0; /*線のヨコ位置*/
  transform: translateX(5%); /*線のヨコ位置*/
}

/*企業情報　タブ*/
section.company-tab {
    width: 100%;
    padding: 40px 0 0 0;
    margin: 0;
    position: relative;
    background: url("../../images/index/bg-company.jpg") center top no-repeat;
  }
h2.company-tab {
	color: #fff;
	font-size: 2.2rem;
}
.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
	font-size: 1.6rem;
}
/*.tab-wrap:after {
  content: '';
  width: 100%;
  height: 3px;
  background: #0e4c7f;
  display: block;
  order: -1;
}*/
.tab-label {
  color: #666;
  background: rgba(256, 256, 256, 0.75);
  font-weight: 600;
  white-space: wrap;
  text-align: center;
  padding: 10px;
  order: -1;
  position: relative;
  z-index: 100;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  flex: 1;
  height: auto;
	font-size: 1.4rem;
	margin: 0 2px 0 2px;
}
.tab-label:hover {
  background: #fff;
  color: #180614;
  transition: 0.5s all;
}
/*.tab-label:not(:last-of-type) {
  margin-right: 5px;
}*/
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
	background: #fff;
}
.tab-switch:checked + .tab-label {
  background: #fff;
}
.tab-switch:checked + .tab-label + .tab-content {
  height: auto;
  overflow: auto;
  padding: 15px;
  opacity: 1;
  transition: .5s opacity;
  /*box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);*/
  z-index: 110;
}
.tab-switch {
  display: none;
}
.tab-02 > h3 {
	font-size: 1.7rem;
	font-family: 'Noto Sans JP', sans-serif;
}
@media print, screen and (min-width : 768px) {
  /* 矢印が動いてスクロールを促す
-------------------------------------------- */
  /*スクロールダウン全体の場所*/
  .scrolldown4 {
    /*描画位置※位置は適宜調整してください*/
    display: block;
  }
  /* メイン
-------------------------------------------- */
  .main-wrap {
    padding-top: 0%;
    height: 100vh;
  }
  .main-massage {
    position: absolute;
    top: -10%;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding: 0px 0 10px 0;
    width: 80%;
    height: 250px;
    z-index: 100;
    text-align: center;
    /*font-size:1.0vw;*/
    font-size: min(5.5vw, 9.2rem);
    letter-spacing: 0.0em;
    font-weight: 500;
    text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0px 0px 10px #fff;
  }
  @keyframes rotation {
    0% {
      transform: rotate(0);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .warm-circle {
    position: absolute;
    top: -10%;
    right: 20%;

    left: 0;
    margin: auto;
    padding: 10px;
    width: 48vh;
    height: 48vh;
    z-index: 90;
    animation: 55s linear infinite rotation;
  }
  .cool-circle {
    position: absolute;
    top: 5%;
    right: 0;
    bottom: 0;
    left: 20%;
    margin: auto;
    padding: 10px;
    width: 48vh;
    height: 48vh;
    z-index: 80;
    animation: 60s linear infinite rotation;
  }
  /*トップページのニュースティッカー*/
  .news-top {
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    bottom: 2%;
    width: 90vw;
    height: 80px;
    padding: 10px 10px 10px 10px;
    margin: auto;
    background: rgba(256, 256, 256, 0.8);
    border-radius: 10px;
    z-index: 70;
    overflow: hidden;
		display: -webkit-box;
	display: -moz-box;
	display: -webkit-flexbox;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: flex;
        justify-content: space-between;
	-webkit-justify-content: space-between;
        flex-wrap: wrap;
	-moz-flex-wrap: wrap;
    　-webkit-flex-wrap: wrap;
  }
	.news-btn {display: inline-block;
    margin: 0px 0 0 0px;}
  .news-ticker {
    display: inline-block;
    margin: 0px auto 0 20px;
    padding: 10px 0 0 0;
    overflow: hidden;
    width: 85%;
    font-size: 2.2rem;
    font-weight: 600;
  }
  .infoText {
    color: #fff;
    padding-left: 100%;
    white-space: nowrap;
    display: inline-block;
    animation: infoAnimation 30s linear infinite;
  }
  .infoText p {
    display: inline-block;
    margin: 0px 1rem 0 0;
    padding: 0px 0 0px 0;
  }
  /* 横に流れていくアニメーション */
  @keyframes infoAnimation {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  /**/
  section.preface {
    width: 1200px;
    margin: 100px auto 100px auto;
    padding: 0px 0px 0 0;
  }
  div.preface-top {
    width: 50%;
    margin: 0px auto 0 auto;
    padding: 50px 0px 0px 0px;
  }
  div.preface-top > h2 {
    font-size: 4.2rem;
    text-align: center;
    margin: 30px auto 0px auto;
    line-height: 1.3;
  }
  div.preface-top > h3 {
    font-size: 2.6rem;
    text-align: center;
  }
  div.preface-top > p {
    font-size: 2.0rem;
    text-align: center;
    line-height: 1.8;
    margin: 40px auto 0px auto;
  }
  h2.index-h2 {
    position: absolute;
    top: -50px;
    font-size: 4.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #999;
  }
  h2.index-h2 > span {
    font-weight: 400;
    color: #333;
    letter-spacing: 0.05em;
    margin-left: 20px;
  }
  h2.index-h2:after {
    position: absolute; /*positionをabsoluteに指定*/
    content: "";
    background-color: #006e54; /*下線の色*/
    width: 2em; /*線の幅*/
    height: 5px; /*線の太さ*/
    top: -5px; /*線のタテ位置*/
    left: 0; /*線のヨコ位置*/
    transform: translateX(5%); /*線のヨコ位置*/
  }
  p.index-btn {
    position: absolute;
    bottom: -20px;
    right: 50px;
  }
  /**/
  
  /*企業情報　タブ*/
  section.company-tab {
    width: 100%;
    padding: 240px 0 0 0;
    margin: 0;
    position: relative;
    background: url("../../images/index/bg-company.jpg") center top no-repeat;
  }
  h2.company-tab {
    position: absolute;
    top: 10%;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    text-align: center;
    z-index: 100;
    color: #fff;
	  font-size: 3.6rem
  }
  .tab-wrap {
    width: 1000px;
    margin: auto;
  }
  .tab-label {
    padding-top: 20px;
    height: 60px;
	  font-size: 1.6rem;
	  margin: 0 5px 0 5px;
  }
  /*.tab-wrap:after {
  content: '';
  width: 100%;
  height: 3px;
  background: #0e4c7f;
  display: block;
  order: -1;
}
  .tab-label:not(:last-of-type) {
    margin-right: 10px;
  }*/
  .tab-content {}
  .tab-switch:checked + .tab-label {
    background: #fff;
    color: #180614;
  }
  .tab-switch:checked + .tab-label + .tab-content {
    height: auto;
    overflow: auto;
    padding: 15px;
    opacity: 1;
    transition: .5s opacity;
    /*box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);*/
  }
  .tab-switch {
    display: none;
  }
	.tab-content2 {
		margin: 0 0 30px 0;
	}
  .tab-01, .tab-02 {
    width: 45%;
    margin: 20px 0 20px 0;
  }
}
@media print, screen and (min-width : 1280px) {
  /* メイン
-------------------------------------------- */
  .main-wrap {}
  /* 矢印が動いてスクロールを促す

}
@media print, screen and (min-width : 1600px) {
  /* メイン
-------------------------------------------- */
  .main-wrap {
    height: 100vh;
  }
}