
@import url("../css/reset.css");
@import url('https://fonts.googleapis.com/css?family=Montserrat+Alternates:700|Volkhov:700|Hammersmith+One|Arbutus+Slab|Poppins:800|Questrial|Bungee+Outline|Josefin+Sans:700|Noto+Sans+JP');


/* 全体の設定
------------------------------------------------------------*/
body {
	background: #f0f0f0;
  font-family: "Noto Sans JP","Montserrat","游ゴシック",YuGothic,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
}
a:link{
  text-decoration: none;
  color: #fff;
}


/* コンテナ
------------------------------------------------------------*/
#container {
  overflow: hidden;
}
.contentwrap {
  max-width: 1024px;
  margin: 0 auto;
}
.content {
  margin: 0 auto;
  width: 90%;
}


/* 各ページタイトル
------------------------------------------------------------*/
.titlewrap {
  padding-top: 80px;
  padding-bottom: 30px;
}
.title1 h1 {
  font-weight: lighter;
  font-size: 1.8em;
}
.title1 {
  border-bottom: solid 3px #bebebe;
  position: relative;
}
.title1:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #00ccd6;
  bottom: -3px;
  width: 50%;
}
.title2 {
    font-weight: lighter;
    color: #bebebe;
    text-align: right;
    letter-spacing: 10px;
}
.title2:first-letter {
  font-size: 1.5em;
}


/* トップページ
------------------------------------------------------------*/
.topwrapper {
  height: 850px;
  background: linear-gradient(80deg, #7bc5ff, #00ccd6, #b39dff);
}
.topanime  {
  font-family: 'Josefin Sans';
  display: flex;
  justify-content: center; /*左右中央揃え*/
  align-items: center;     /*上下中央揃え*/
  padding-top: 300px;
  margin-bottom: auto;
  color:#fff;
  font-size: 5.5em;
  text-align: center;
  overflow: hidden;
}
/* トップページアニメーション メインコピーここから */
.animate__bounceInUp {
  animation-delay: 0.2s;
}
/* トップページアニメーション メインコピーここまで */

.toplinewrap {
  margin-top: 20px;
}
.topline-l {
  float: left;
  height: 50px;
  width: 50%;
  background: #ffd900;
}
.topline-l img {
  max-width: 100%;
  margin-left: auto;
  padding-top: 10px;
  padding-right: 60px;
}
.topline-r p {
  font-size: 1.0em;
  text-align: left;
  margin-left: 50px;
  padding-top: 12px;
}
.topline-r {
  height: 50px;
  width: 50%;
  text-align: center;
  background: #ffB900;
  overflow: hidden;
}

/* トップページアニメーション 社名・サブコピーここから */
.animate__slideInLeft, .animate__slideInRight {
  animation-delay: 0.8s; /* アニメーション開始時間 */
}
/* トップページアニメーション 社名・サブコピーここまで */


/* お問い合わせボタン(共通)
------------------------------------------------------------*/
.contactbtn-wrap {
  text-align: center;
  color: #fff;
}
.btn,
a.btn {
  font-size: 1.2rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
}
a.btn-flat {
  overflow: hidden;

  padding: 0.7rem 5rem;
        border-radius: 0.5em;
    box-shadow: 2px 3px 7px 2px rgba(0, 0, 0, 0.02);
  background: #ff6800;
}
a.btn-flat span {
  position: relative;
}
a.btn-flat:before {
  position: absolute;
  top: 0;
  left: 0;

  width: 150%;
  height: 500%;

  content: "";
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
  transform: translateX(-98%) translateY(-25%) rotate(45deg);

  background: #ffbe00;
}
a.btn-flat:hover:before {
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
}
a.btn-flat:hover {
  color: #000;
}


/* メニュー
------------------------------------------------------------*/
a,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
}
.outer-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.outer-menu .checkbox-toggle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  width: 60px;
  height: 60px;
  opacity: 0;
}
.outer-menu .checkbox-toggle:checked + .hamburger > div {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.outer-menu .checkbox-toggle:checked + .hamburger > div:before,
.outer-menu .checkbox-toggle:checked + .hamburger > div:after {
  top: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.outer-menu .checkbox-toggle:checked + .hamburger > div:after {
  opacity: 0;
}
.outer-menu .checkbox-toggle:checked ~ .menu {
  pointer-events: auto;
  visibility: visible;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-duration: 0.75s;
          transition-duration: 0.75s;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div > div {
  opacity: 1;
  -webkit-transition: opacity 0.4s ease 0.4s;
  transition: opacity 0.4s ease 0.4s;
}
.outer-menu .checkbox-toggle:hover + .hamburger {
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}
.outer-menu .checkbox-toggle:checked:hover + .hamburger > div {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
.outer-menu .hamburger {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 60px;
  height: 60px;
  padding: 0.5em 1em;
  background: rgba(0, 204, 214, 0.75);
  border-radius: 0 0.12em 0.12em 0;
  cursor: pointer;
  -webkit-transition: box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}
.outer-menu .hamburger > div {
  position: relative;
  -webkit-box-flex: 0;
          flex: none;
  width: 100%;
  height: 2px;
  background: #FEFEFE;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}
.outer-menu .hamburger > div:before,
.outer-menu .hamburger > div:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: inherit;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.outer-menu .hamburger > div:after {
  top: 10px;
}
.outer-menu .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  outline: 1px solid transparent;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}
.outer-menu .menu > div {
  width: 200vw;
  height: 200vw;
  color: #FEFEFE;
  background: rgba(0, 160, 220, 0.97);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-box-flex: 0;
          flex: none;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow: hidden;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}
.outer-menu .menu > div > div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  -webkit-box-flex: 0;
          flex: none;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}
.outer-menu .menu > div > div > ul {
  list-style: none;
  padding: 0 1em;
  margin: 0;
  display: block;
  max-height: 100vh;
}
.outer-menu .menu > div > div > ul > li {
  padding: 0;
  margin: 1em;
  font-size: 24px;
  display: block;
}
.outer-menu .menu > div > div > ul > li > a {
  position: relative;
  display: inline;
  cursor: pointer;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.outer-menu .menu > div > div > ul > li > a:hover {
  color: #e5e5e5;
}
.outer-menu .menu > div > div > ul > li > a:hover:after {
  width: 100%;
}
.outer-menu .menu > div > div > ul > li > a:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -0.15em;
  left: 0;
  width: 0;
  height: 2px;
  background: #e5e5e5;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}


/* ご挨拶
------------------------------------------------------------*/
.messagewrap {
  position: relative;
}
.messagebgr {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 400px 200px 0;
  border-color: transparent #ffd900 transparent transparent;
  z-index: 1;
  right: 0;
  transition: all 0.5s linear;
  transform: translateX(80px);
  opacity: 0;
}
.messagebgr.active {
  transform: translateX(0);
  opacity: 0.3;
}
.messagebgl {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 200px 0 0 400px;
  border-color: transparent transparent transparent #ffd900;
  z-index: 1;
  bottom: 0;
  transition: all 0.5s linear;
  transform: translateX(-80px);
  opacity: 0;
}
.messagebgl.active {
  transform: translateX(0);
  opacity: 0.3;
}

/* メッセージ背景のアニメーションここから */
@keyframes message-faderight {
    from {
    transform: translate(0,0);
    }
    to {
    transform: translate(-80px,0);
    }
}
@keyframes message-fadeleft {
    from {
    transform: translate(0,0);
    }
    to {
    transform: translate(80px,0);
    }
}
@keyframes message-fadeIn { /*animetion-nameで設定した値を書く*/
    0% {opacity: 0} /*アニメーション開始時は不透明度0%*/
    100% {opacity: 0.3} /*アニメーション終了時は不透明度100%*/
}
/* メッセージ背景のアニメーションここまで */

/* メッセージ文字部分ここから */
.messagetitle {
  margin-bottom: 30px;
}
.messagebox {
  position: relative;
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 85%;
  z-index: 2
}
.messagelong {
  line-height: 2.5;
  margin: 15px 30px;
 }
.sign {
  display: inline-block;
  left: 100%;
  position: relative;
  transform: translateX(-100%);
  z-index: 3;
}
.name {
  font-size: 1.3em;
}
/* メッセージ文字部分ここまで */


/* 業務内容
------------------------------------------------------------*/
.servicewrap {
  display: flex;
  justify-content: center; /*左右中央揃え*/
  align-items: center;     /*上下中央揃え*/
}
.iconwrapper {
  margin-bottom: 20px;
}
.iconanime i {
  color: #fff;
  font-size: 75px;
  margin-top: 20px;
}
.iconanime {
  margin-bottom: 20px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #00ccd6;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}
.iconanime:nth-child(2) {
  margin-left: 50px;
}
.iconanime:nth-child(3) {
  margin-left: 100px;
}
.iconanime:nth-child(4) {
  margin-left: 150px;
}
.iconanime:nth-child(5) {
  margin-left: 200px;
}

/* スクロール後のアニメーション設定ここから */
.iconanime.active {
  animation: iconfadein 0.1s ease forwards, iconanime 0.5s ease forwards;
}
@keyframes iconfadein {
  100% {  opacity: 1;}
}
@keyframes iconanime
{
    0% {
        transform:scale(0.1);
    }
    100% {
        transform:scale(1);
    }
}
/* スクロール後のアニメーション設定ここまで */

/*アイコンアニメーション遅延の指定ここから*/
.iconanime.active:nth-child(1) {
  animation-delay: 0;
}
.iconanime.active:nth-child(2) {
  animation-delay: 0.2s;
}
.iconanime.active:nth-child(3) {
  animation-delay: 0.4s;
}
.iconanime.active:nth-child(4) {
  animation-delay: 0.6s;
}
.iconanime.active:nth-child(5) {
  animation-delay: 0.8s;
}
/*アイコンアニメーション遅延の指定ここまで*/

.textwrapper {
  margin-top:78px;
  margin-bottom: 103px;
}
.textanime {
  transition: all 0.5s 0.5s linear;
  transform: translateX(0);
  opacity: 0;
}
.textanime.active {
  transform: translateX(20px);
  opacity: 1;
}
.text1 {
  font-size: 1.5em;
  border-bottom: dotted 2px #bebebe; 
}
.text2 {
  margin-top: 5px;
}
.textwrapper:nth-child(1) {
  margin-left: -150px;
}
.textwrapper:nth-child(2) {
  margin-left: -100px;
}
.textwrapper:nth-child(3) {
  margin-left: -50px;
}
.textwrapper:nth-child(4) {
  margin-left: -00px;
}

/*カルーセルパネルレイアウト*/
.sliderwrap {
  color: #fff;
  background: #00ccd6;
  text-align: center;
  padding: 10px 0 20px 0;
}
.sliderwrap h2 {
  letter-spacing: 10px;
  margin-bottom: 10px;
}
.sliderinfo {
  max-width: 75%;
  margin: 0 auto;
  padding-bottom: 15px;
}

/* 料金表（未使用）
------------------------------------------------------------*/
/*
.priceinfo {
  text-align: center;
  margin-bottom: 30px;
}
.pricewrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pricebox {
  width: 30%;
  margin-bottom: 35px;
}
.pricebutton {
  background: black;
  border-radius: 50px;
  margin-bottom: 10px;
   padding-top: 5px;
  padding-bottom: 5px;
}
.pricebutton p {
  text-align: center;
  color: #fff;
}
.pricetext {
  margin: 0 auto;
  text-align: center;
  width: 80%;
}
*/


/* 会社概要
------------------------------------------------------------*/
.tbl-01 th,
.tbl-02 th {
  width: 150px;
  text-align: left;
  padding: 10px;
}
.tbl-01 td {
　border: solid 1px #ccc;
  padding: 10px;
}
.tbl-02 td {
  text-align: center;
　border: solid 1px #ccc;
  display: inline-block;
  padding: 10px;
  margin-right: 30px;
}
.subtitle {
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
}
.subtitle:after {
  border-top: 1px solid;
  content: "";
  flex-grow: 1;
  margin-left: 10px;
}
.square {
  color: #00ccd6;
}
.oubowrap {
    padding: 1em 0 1.2em 0;
    margin-top: 2em;
    margin-left: 7em;
    margin-right: 7em;
    background: #fff;
    border-top: solid 5px #5d627b;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
}
.oubo-telwrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0.8em;
  margin-bottom: 10px;
  font-weight: bold;
}
.oubo-telwrap p {
  color: #5d627b;
}
.oubotext {
  font-size: 1.1em;
  margin-right: 0.8em;
}
.tel {
  font-size: 1.7em;
}
.tel a {
  color: #ff6800;
}


/* 採用情報
------------------------------------------------------------*/
.recwrap {
  width: 85%;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  top: 40px;
  margin-bottom: 50px;
}
.recbg {
  opacity: 0;
  height: 940px;
  background: linear-gradient(80deg, #7bc5ff, #00ccd6, #b39dff);
  background-size: 600% 600%;
}
.recbg.active {
  animation: bg-move 20s ease infinite, bg-rotate 2s forwards, rec-fadein 3s ease 0.3s 1 forwards;
}
@keyframes bg-move {
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}
@keyframes bg-rotate{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(4deg)translate3d(0, 0, 0); }
}
.rectext {
  position: absolute;
  z-index: 2;
  display: flex;
  top: 0;
}
.rectext:nth-child(1) {
  left: 50px;
}
.rectext:nth-child(2) {
  right: 50px;
  margin-top: 250px;
}
.rectext:nth-child(3) {
  left: 50px;
  margin-top: 500px;
}
.rec-a {
  font-family: 'Montserrat Alternates';
  opacity: 0;
  color: #fff;
  font-weight: bold;
  font-size: 250px;
}
.rec-a.active {
  animation: rec-fadein 3s ease 0.3s 1 forwards;
}
.rec-b {
  opacity: 0;
  color: #fff;
  font-size: 80px;
  margin-top: auto;
  margin-bottom: auto;
}
.rec-b.active {
  animation: rec-faderight 1s ease 0.3s 1 forwards;
}
.rec-b.active:nth-child(1) {
  animation: rec-fadeleft 1s ease 0.3s 1 forwards;
}
@keyframes rec-faderight {
  from {
    opacity: 0;
    transform: translateX(-10px);
    }
  to {
    opacity: 1;
    transform: translateX(5px);
    }
}
@keyframes rec-fadeleft {
  from {
    opacity: 0;
    transform: translateX(10px);
    }
  to {
    opacity: 1;
    transform: translateX(-5px);
    }
}
.rec-c {
  max-width: 70%;
  opacity: 0;
  position: absolute;
  display: inline-block;
  z-index: 3;
  color: #fff;
  text-align: right;
  font-size: 30px;
  bottom: 50px;
  right: 50px;
}
.rec-c.active {
  animation: rec-fadein 1s ease 0.5s 1 forwards;
}
@keyframes rec-fadein { /*animetion-nameで設定した値を書く*/
  0% {opacity: 0} /*アニメーション開始時は不透明度0%*/
  100% {opacity: 100} /*アニメーション終了時は不透明度100%*/
}


/* アクセス
------------------------------------------------------------*/
#access a {
  color: #000;
}
.accessinfowrap {
  margin-bottom: 50px;
}
.accessinfowrap dl {
  margin-bottom: 10px;
}
.accessinfowrap a {
  color: #000;
}
.accessinfo {
  display: flex;
}
.accessinfo-l {
  flex: 1.5;
}
.accessinfo-r {
  flex: 8;
}

/* googlemap */
.map {
  clear: both;
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  margin-top: 50px;
  margin-bottom: 10px;
}
.map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}


/* トップに戻るボタン
------------------------------------------------------------*/
.pagetop {
  padding-bottom: 30px;
  max-width: 50px;
  margin-left: auto;
  margin-right: 20px;
}
.pagetop i {
  padding-top: 15px
}
.pagetop a {
  display: block;
  z-index: 999;
  border-radius: 30px;
  width: 50px;
  height: 50px;
  background-color: #00ccd6;
  color: #fff;
  font-size: 120%;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}
.pagetop a:hover {
  text-decoration: none;
  opacity: 0.7;
}


/* フッター
------------------------------------------------------------*/
.footer {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px; 
  margin-top: 10px; 
  background: #424242;
  box-shadow: 0px -10px 0px 0px rgb(0, 204, 214);
}
.footermenuwrap {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.footermenu-l {
  display: flex;
}
.footermenu-l li {
  border-right: solid 1px #fff;
  color: #fff;
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 15px;
 }
 .footermenu-l li:first-child {
  padding-left: 0;
}
 .footermenu-r {
  float: right;
    display: flex;
}
 .footermenu-r li {
  border-right: solid 1px #fff;
  color: #fff;
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 15px;
 }
.footermenu-r li:last-child {
  border: none;
  padding-right: 0;
}
.footer img {
  display: inline;
  max-width: 100%;
  max-height: auto;
}
.small {
  font-size: 0.8em;
  color: #fff;
}


/* レスポンシブ設定
------------------------------------------------------------*/

/*横幅1024pxまで
------------------------------------------------------------*/
@media screen and (min-width:1024px) {
  /* トップページ */
  .topanime  {
    font-size: 6.5em;
  }

  /*　採用情報 */
  .recwrap {
    max-width: 90vw;
    max-height: auto;
  }
}


/*横幅896px以下
------------------------------------------------------------*/
@media screen and (max-width: 896px) {
  .title1 h1 {
    font-size: 1.5em;
  }
  .title2 {
      letter-spacing: 5px;
  }
  .title2:first-letter {
    font-size: 1.3em;
  }
  .titlewrap {
    max-width: 95%;
    margin: 0 auto;
  }

  /* トップページ */
  .topwrapper {
    height: 700px;
  }
  .topanime  {
    display: block;
    padding-top: 150px;
    font-size: 5em;
  }
  .topline-l img {
    padding-right: 15px;
  }
  .topline-r p {
    margin-left: 15px;
  }

  /* 業務内容 */
  .leftwrapper {
    margin-left: -30px;
  }
  .iconanime:nth-child(2) {
    margin-left: 0;
  }
  .iconanime:nth-child(3) {
    margin-left: 0;
  }
  .iconanime:nth-child(4) {
    margin-left: 0;
  }
  .iconanime:nth-child(5) {
    margin-left: 0;
  }
  .textwrapper:nth-child(1) {
    margin-left: 0;
  }
  .textwrapper:nth-child(2) {
    margin-left: 0;
  }
  .textwrapper:nth-child(3) {
    margin-left: 0;
  }
  .textwrapper:nth-child(4) {
    margin-left: 0;
  }
  .textwrapper:nth-child(5) {
    margin-left: 0;
  }

  /* 採用情報 */
  .recwrap {
  width: 90%;
  }
  .recbg {
    height: 800px;
  }
  .rec-a {
    font-size: 200px;
  }
  .rec-b {
    font-size: 60px;
  }
  .rec-c {
    max-width: 90%;
    font-size: 25px;
  }
  .rectext:nth-child(3) {
    left: 20px;
  }
  .rectext:nth-child(2) {
    right: 20px;
    margin-top: 200px;
  }
  .rectext:nth-child(3) {
    left: 20px;
    margin-top: 400px;
  }
  .oubowrap {
    margin-left: 6em;
    margin-right: 6em;
  }
  .oubo-telwrap {
    display: block;
    text-align: center;
    margin-bottom: 10px;
  }
}


/*横幅600px以下
------------------------------------------------------------*/
@media screen and (max-width: 600px) {
  /* トップページ */
  .topwrapper {
    height: 100vh;
  }
  .topanime  {
    padding-top: 120px;
    font-size: 3.5em;
  }
  .toplinewrap {
    display: block;
    margin-top: 30px;
  }
  .topline-l {
    height: 40px;
    width: 100%;
  }
  .topline-l img {
    margin: 0 auto;
    padding-top: 6px;
     padding-right: 0;
  }
  .topline-r p {
    text-align: center;
    *font-size: 1.5em;
    padding-top: 8px;
  }
  .topline-r {
    height: 40px;
    width: 100%;
  }
  .animate__slideInLeft, .animate__slideInRight {
    animation-delay: 0.8s; /* アニメーション開始時間 */
  }

  /* ご挨拶 */
  .messagebox {
    width: 100%;
  }
  .messagelong {
    margin: 15px 10px;
  }
  .messagebgr {
    border-width: 0 270px 150px 0;
  }
  .messagebgl {
    border-width: 150px 0 0 270px;
  }
  @keyframes message-faderight {
      from {
      transform: translate(0,0);
      }
      to {
      transform: translate(-20px,0);
      }
    }
  @keyframes message-fadeleft {
      from {
      transform: translate(0,0);
      }
      to {
      transform: translate(20px,0);
      }
    }

  /* 業務内容 */
  .iconanime {
  width: 130px;
  height: 130px;
  }
  .iconanime i {
  font-size: 70px;
  }
  .textwrapper {
    margin-top:73px;
    margin-bottom: 83px;
  }

  /*料金表（未使用）
  .pricewrap {
    display: inline-block;
    justify-content: center;
  }
  .pricebox {
    width: 100%;
  }
  */

  /*会社概要・採用情報のテーブル設定*/
  .tbl-01 th,
  .tbl-01 td,
  .tbl-02 th {
    border-bottom: none;
    display: inline-block;
    width: 100%;
  }
  .tbl-02 td{
    padding-top:10px;
    padding-bottom: 10px;
    padding-right: 5px;
    padding-left: 10px;
    border-bottom: none;
    display: block;
    float: left;
    text-align: center;
    margin-right: 0;
  }

  /*採用情報*/
  .recbg {
    height: 550px;
  }
  .rec-a {
    font-size: 130px;
  }
  .rec-b {
    font-size: 40px;
  }
  .rec-c {
    font-size: 20px;
    bottom: 30px;
  }
  .rectext:nth-child(1) {
    left: 20px;
  }
  .rectext:nth-child(2) {
    right: 20px;
    margin-top: 130px;
  }
  .rectext:nth-child(3) {
    left: 20px;
    margin-top: 260px;
  }
  .oubowrap {
    margin-left: 0;
    margin-right: 0;
  }
  /*フッター*/
  .footermenu-l {
    display: inline-block;
  }
  .footermenu-l li {
    border-right: none;
    padding-right: 0;
    padding-left: 0;
    margin-right: 20px;
   }
   .footermenu-r {
    display: inline-block;
  }
   .footermenu-r li {
    border-right: none;
    padding-right: 0;
    padding-left: 0;
    margin-left: 20px;
   }
}


/*横幅480px以下
------------------------------------------------------------*/
@media screen and (max-width: 480px) {
  /* 業務内容 */
  .servicewrap {
    font-size: 80%;
  }
  .textwrapper {
    margin-top:43px;
    margin-bottom: 55px;
  }
  .iconanime {
    width: 90px;
    height: 90px;
  }
  .iconanime i {
    font-size: 50px;
  }

   /*採用情報*/
  .recbg {
    height: 480px;
  }
  .rec-a {
    font-size: 130px;
  }
  .rec-b {
    font-size: 30px;
  }
  .rec-c {
    font-size: 15px;
    bottom: 30px;
  }
  .rectext:nth-child(1) {
    left: 20px;
  }
  .rectext:nth-child(2) {
    right: 20px;
    margin-top: 110px;
  }
  .rectext:nth-child(3) {
    left: 20px;
    margin-top: 220px;
  }
}