@charset "utf-8";
/*===========================================================*/
/*クリックしたらナビが下から上に出現 */
/*===========================================================*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  bottom: -120%;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: #eb6100;
  /*動き*/
  transition: all 0.6s;
}
/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  bottom: 0;
}
/*ナビゲーションの縦スクロール*/
#g-nav #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/*リストのレイアウト設定*/
#g-nav li {
  font-size: 1.4rem;
  line-height: 1.3em;
  list-style: none;
  text-align: center;
}
#g-nav li a {
  text-decoration: none;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}
#g-nav li a:link, #g-nav li a:visited {
  color: #FFFFFF;
}
#g-nav li a:hover, #g-nav li a:focus, #g-nav li a:active {
  color: #F7FF25;
}
/* 599px以下
--------------------------------------------*/
@media screen and (max-width:599px) {
  #g-nav li {
    font-size: 1.4rem;
    padding: 18px 0px 18px 0px;
  }
}
/* 600px以上767px以下
--------------------------------------------*/
@media screen and (min-width:600px) and (max-width:767px) {
  #g-nav li {
    font-size: 1.5rem;
    padding: 20px 0px 20px 0px;
  }
}
/* 768px以上、1189px以下
--------------------------------------------*/
@media screen and (min-width:768px) and (max-width:1189px) {
  #g-nav li {
    font-size: 1.6rem;
    padding: 22px 0px 22px 0px;
  }
}
/* 1190px以上
--------------------------------------------*/
@media screen and (min-width:1190px) {
  #g-nav li {
    font-size: 1.8rem;
    padding: 24px 0px 24px 0px;
  }
}
/*===========================================================*/
/*MENUが×に */
/*===========================================================*/
.openbtn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 0;
  right: 0;
  cursor: pointer;
  width: 80px;
  height: 70px;
  border-left: 2px solid #333;
  font-size: 1.4rem;
}
/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all .4s; /*アニメーションの設定*/
  position: absolute;
}
.openbtn span:nth-of-type(1), .openbtn span:nth-of-type(3) {
  height: 2px;
  background: #333;
  width: 30%;
  opacity: 0;
  top: 22px;
  left: 20px;
}
.openbtn span:nth-of-type(2) {
  top: 22px;
  left: 18px;
  text-transform: uppercase;
  color: #333;
  font-size: 1.6rem;
}
@media screen and (max-width:550px) {
  .openbtn span:nth-of-type(2) {
    font-size: 1.4rem;
  }
}
.openbtn span:nth-of-type(3) {
  top: 35px;
}
/*activeクラスが付与されると線が回転して×になり、Menu表記をしている2つ目の要素が透過して消える*/
.openbtn.active span:nth-of-type(1), .openbtn.active span:nth-of-type(3) {
  opacity: 1;
}
.openbtn.active span:nth-of-type(1) {
  top: 28px;
  left: 30px;
  transform: translateY(6px) rotate(-45deg);
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 40px;
  left: 30px;
  transform: translateY(-6px) rotate(45deg);
}
/*===========================================================*/
/*追従メニューの現在地ハイライト*/
/*===========================================================*/
/*========= 現在地表示のためのCSS ===============*/
#header {
  position: fixed; /*header固定*/
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
  z-index: 8;
  display: flex;
  align-items: center;
  background: #fff;
}
/* 599px以下
--------------------------------------------*/
@media screen and (max-width:599px) {
  #header {
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    height: 75px;
  }
}
/* 600px以上767px以下
--------------------------------------------*/
@media screen and (min-width:600px) and (max-width:767px) {
  #header {
    height: 75px;
  }
}
/* 768px以上、1189px以下
--------------------------------------------*/
@media screen and (min-width:768px) and (max-width:1189px) {
  #header {
    height: 85px;
  }
}
/* 1190px以上
--------------------------------------------*/
@media screen and (min-width:1190px) {
  #header {
    height: 85px;
  }
}
#header #pcnav {
  justify-content: center;
}
#pcnav ul {
  list-style: none;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  margin: 0 0 0 15%;
}
#pcnav li {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  font-size: 1.4rem;
}
#pcnav li a {
  display: block;
  text-decoration: none;
  color: #333;
  padding: 0 10px;
  transition: all 0.3s;
}
#pcnav li.current a, #pcnav li a:hover {
  color: #eb6100;
}
/*===========================================================*/
/*スクロールをするとエリアの高さに合わせて線が伸びる*/
/*===========================================================*/
.scrollgress {
  z-index: 99; /*他のposition指定しているエリアより前に出すためz-indexの数字を大きく*/
}
/*===========================================================*/
/*下線が伸びて背景に変わる*/
/*===========================================================*/
.btnlinestretches3 {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  color: #333;
  padding: 5px 30px;
  display: inline-block;
  text-decoration: none;
  outline: none;
}
/*テキストの設定*/
.btnlinestretches3 span {
  /*テキストを前面に出すためz-indexの値を高く設定*/
  position: relative;
  z-index: 2;
}
.btnlinestretches3:hover span {
  color: #fff;
}
/*線の設定*/
.btnlinestretches3::after {
  content: '';
  /*絶対配置で線の位置を決める*/
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  /*線の形状*/
  background: #333;
  width: 100%;
  height: 3px;
  /*アニメーションの指定*/
  transition: all 0.3s ease-in-out;
}
/*線が伸びて背景に*/
.btnlinestretches3:hover::after {
  height: 100%;
}
/*===========================================================*/
/*ページの指定の高さを超えたら右から出現*/
/*===========================================================*/
/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #eb6100;
  width: 60px;
  height: 50px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.6rem;
  transition: all 0.3s;
}
#page-top a:hover {
  background: #777;
}
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 2;
  font-size: 1.4rem;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateX(100px);
}
/*　左の動き　*/
#page-top.LeftMove {
  animation: LeftAnime 0.5s forwards;
}
@keyframes LeftAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*　右の動き　*/
#page-top.RightMove {
  animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(100px);
  }
}
/*===========================================================*/
/*任意の場所をクリックすると隠れていた内容が開き、先に開いていた内容が閉じる*/
/*===========================================================*/
/*アコーディオン全体*/
.accordion-area {
  list-style: none;
}
.accordion-area li {
  margin: 10px 0;
  font-size: 1.4rem;
}
.accordion-area section {
  border: 1px solid #ccc;
}
/*アコーディオンタイトル*/
.title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: normal;
  padding: 3% 3% 3% 50px;
  transition: all .5s ease;
}
@media screen and (max-width:768px) {
  .title {
    font-size: 1.4rem;
  }
}
/*アイコンの＋と×*/
.title::before, .title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background-color: #333;
}
.title::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}
.title::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.title.close::before {
  transform: rotate(45deg);
}
.title.close::after {
  transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
.box {
  display: none; /*はじめは非表示*/
  background: #f3f3f3;
  margin: 0 3% 3% 3%;
  padding: 3%;
}
/*===========================================================*/
/* 最低限おぼえておきたい動き*/
/*===========================================================*/
/*4-9　シャッ（左から）*/
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden; /*　はみ出た色要素を隠す　*/
  opacity: 0;
}
@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #eb6100; /*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/* 4-1 ふわっ（下から） */
.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);
  }
}
/* 4-2　パタッ（左へ） */
.flipLeft {
  animation-name: flipLeftAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  perspective-origin: left center;
  opacity: 0;
}
@keyframes flipLeftAnime {
  from {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
  }
  to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
/* スマホ表示用。flipLeftTriggerを指定している親要素に指定しないとうまく動かない*/
#vision, .service-area {
  transform: translate3d(0, 0, 0);
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgLRextendTrigger, .bgappearTrigger, .fadeUpTrigger, .flipLeftTrigger {
  opacity: 0;
}
/*===========================================================*/
/* スクロールすると下のエリアがヘッダーにかぶさる*/
/*===========================================================*/
#top-main {
  width: 100%;
  height: 100vh;
  position: relative;
}
#top-main:before {
  content: '';
  position: fixed;
  top: 10vh;
  left: 5%;
  z-index: -2;
  width: 90%;
  height: 80vh;
  /*背景画像設定*/
  background: url("../../common/image/topimage.jpg") no-repeat center;
  background-size: cover;
}
@media screen and (max-width:767px) {
  #top-main:before {
    background-position: top center;
    background-size: auto 90%;
  }
}
.topmark {
  position: fixed;
  z-index: -1;
}
.topmark .area1 {
  width: 60%;
  height: auto;
}
#contents {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #fff;
  overflow: hidden;
  margin-top: 2px;
}
#contents #main-area {
  padding: 15px 5px 5px 5px;
}
#contents #sub {
  background: url(../../common/image/sub-bg.gif) repeat left top;
  padding: 10px;
  margin-bottom: 10px;
}
/* 599px以下
--------------------------------------------*/
@media screen and (max-width:599px) {
  .topmark {
    top: 24vh;
    left: 10%;
  }
  .topmark .area1 {
    width: 55%;
    height: auto;
  }
}
/* 600px以上767px以下
--------------------------------------------*/
@media screen and (min-width:600px) and (max-width:767px) {
  .topmark {
    top: 28vh;
    left: 12%;
  }
  .topmark .area1 {
    width: 55%;
    height: auto;
  }
}
/* 768px以上、1189px以下
--------------------------------------------*/
@media screen and (min-width:768px) and (max-width:1189px) {
  .topmark {
    top: 30vh;
    left: 15%;
  }
  .topmark .area1 {
    width: 70%;
    height: auto;
  }
  #contents #main-area {
    float: left;
    width: 55%;
    margin-left: 7%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  #contents #sub {
    float: right;
    width: 25%;
    margin-right: 7%;
    margin-left: 6%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
/* 1190px以上
--------------------------------------------*/
@media screen and (min-width:1190px) {
  .topmark {
    top: 26vh;
    left: 15%;
  }
  .topmark .area1 {
    width: 80%;
    height: auto;
  }
  #contents #main-area {
    float: left;
    width: 47%;
    margin-left: 10%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  #contents #sub {
    float: right;
    width: 25%;
    margin-right: 10%;
    margin-left: 8%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
/* catchwrapアニメーション
------------------------------------------------------------*/
.fadeDownTrigger {
  opacity: 0;
}
.fadeRightTrigger {
  opacity: 0;
}
.fadeLeftTrigger {
  opacity: 0;
}
/* 左から */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 上から */
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* アニメーションスタートの遅延*/
.delay-time2 {
  animation-delay: 0.5s;
}