@charset "UTF-8";
/*
#overview
Gulp入門サンプル

サンプルファイルです
*/
/*#styleguide
サンプル見出し1gul

```
<h1>見出し1</h1>
```
*/
html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
  min-width: 1366px;
  position: relative;
  cursor: none !important;
}

body {
  width: 100%;
  margin: 0;
  color: #000;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8;
}

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

a {
  text-decoration: underline;
  color: inherit;
}

a:hover {
  cursor: none !important;
}

#cursor {
  position: fixed;
  background: #556e51;
  border-radius: 5px;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  /*真ん中にくるようにマイナスマージンで調整*/
  z-index: 999999;
  /*一番手前に来るように*/
  pointer-events: none;
  /*クリックできなくなるのを防ぐため。noneで対応*/
  opacity: 0;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

#cursor.active {
  -webkit-transform: scale(2.4);
          transform: scale(2.4);
}

/* 好みで使用してください
p, dl, dt, dd, ul, li{
    line-height: 1.5;
    font-feature-settings : "palt";
    text-align:justify; 
    text-justify: inter-ideograph;
}
*/
img {
  border: none;
}

.sp {
  display: none !important;
}

#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  top: 0px;
  left: 0px;
  background: #f4f4f4;
  z-index: 1;
}

#loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  margin-left: -30px;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.fulfilling-bouncing-circle-spinner,
.fulfilling-bouncing-circle-spinner * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.fulfilling-bouncing-circle-spinner {
  height: 60px;
  width: 60px;
  position: relative;
  -webkit-animation: fulfilling-bouncing-circle-spinner-animation infinite 4000ms ease;
          animation: fulfilling-bouncing-circle-spinner-animation infinite 4000ms ease;
}

.fulfilling-bouncing-circle-spinner .orbit {
  height: 60px;
  width: 60px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  border: calc(60px * 0.03) solid #ec7b3f;
  -webkit-animation: fulfilling-bouncing-circle-spinner-orbit-animation infinite 4000ms ease;
          animation: fulfilling-bouncing-circle-spinner-orbit-animation infinite 4000ms ease;
}

.fulfilling-bouncing-circle-spinner .circle {
  height: 60px;
  width: 60px;
  color: #ec7b3f;
  display: block;
  border-radius: 50%;
  position: relative;
  border: calc(60px * 0.1) solid #ec7b3f;
  -webkit-animation: fulfilling-bouncing-circle-spinner-circle-animation infinite 4000ms ease;
          animation: fulfilling-bouncing-circle-spinner-circle-animation infinite 4000ms ease;
  -webkit-transform: rotate(0deg) scale(1);
          transform: rotate(0deg) scale(1);
}

@-webkit-keyframes fulfilling-bouncing-circle-spinner-animation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes fulfilling-bouncing-circle-spinner-animation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes fulfilling-bouncing-circle-spinner-orbit-animation {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  62.5% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  75% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  87.5% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes fulfilling-bouncing-circle-spinner-orbit-animation {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  62.5% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  75% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  87.5% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes fulfilling-bouncing-circle-spinner-circle-animation {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    border-color: transparent;
    border-top-color: inherit;
  }
  16.7% {
    border-color: transparent;
    border-top-color: initial;
    border-right-color: initial;
  }
  33.4% {
    border-color: transparent;
    border-top-color: inherit;
    border-right-color: inherit;
    border-bottom-color: inherit;
  }
  50% {
    border-color: inherit;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  62.5% {
    border-color: inherit;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  75% {
    border-color: inherit;
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  87.5% {
    border-color: inherit;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    border-color: transparent;
    border-top-color: inherit;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes fulfilling-bouncing-circle-spinner-circle-animation {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    border-color: transparent;
    border-top-color: inherit;
  }
  16.7% {
    border-color: transparent;
    border-top-color: initial;
    border-right-color: initial;
  }
  33.4% {
    border-color: transparent;
    border-top-color: inherit;
    border-right-color: inherit;
    border-bottom-color: inherit;
  }
  50% {
    border-color: inherit;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  62.5% {
    border-color: inherit;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  75% {
    border-color: inherit;
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  87.5% {
    border-color: inherit;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    border-color: transparent;
    border-top-color: inherit;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.mb20 {
  margin-bottom: 20px!important;
}

#wrapper {
  display: none;
}

.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.fadein.active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.header {
  width: 100%;
  background: #fff;
}

.header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 960px;
  margin: 0 auto;
  padding: 1rem 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: white;
}

.header .inner .h1-wrap h1 {
  width: 243px;
}

.header .inner .h1-wrap .sub {
  font-size: 10px;
  display: flex;
  align-items: center;
}

.header .inner .h1-wrap .sub span:nth-of-type(1) {
  font-weight: bold;
  font-size: 12px;
  padding-right: 7px;
}

.header .inner .hdr-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .inner .hdr-contact .header__pc-tel .time {
  font-size: 12px;
  color: #00a349;
  border: solid 1px #00a349;
  text-align: center;
  padding: 3px 0;
  margin-bottom: 2px;
  font-family: 'Noto Sans JP', sans-serif;
}

.header .inner .hdr-contact .header__button {
  font-size: 16px;
  display: inline-block;
  position: relative;
  padding: 1.1em 1.2em;
  text-decoration: none;
  background: -webkit-gradient(linear, left top, left bottom, from(#fa7722), to(#ed5e00));
  background: linear-gradient(#fa7722, #ed5e00);
  background: -ms-linear-gradient(top, #fa7722, #ed5e00);
  color: #FFF;
  border-bottom: solid 4px #6c310b;
  border-right: solid 2px #6c310b;
  border-radius: 100vh;
  text-align: center;
  height: 60px;
  margin-left: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header .inner .hdr-contact .header__button::before {
  content: " ";
  position: absolute;
  bottom: -5px;
  left: -1px;
  width: 0;
  height: 0;
  border-width: 0 6px 6px 0px;
  border-style: solid;
  border-color: transparent;
}

.header .inner .hdr-contact .header__button::after {
  content: " ";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  border-right: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  margin-left: 1rem;
}

.header .inner .hdr-contact .header__button:hover {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

.main-image {
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 100px;
}

.main-image:before {
  content: "";
    display: block;
    width: 100%;
    height: 64px;
    border-top: 4px solid #fff;
    background: #23ac38;
    position: absolute;
    z-index: 99;
}

.main-image img {
  width: 1366px;
  height: 580px;
  margin: 0 auto;
  position: relative;
  z-index: 100;
}

.main-under-cv {
  margin: -80px auto 40px;
  display: flex;
  justify-content: center;
}

.youtube {
  width: 960px;
  margin: 80px auto 40px;
  background: #fffde5;
  text-align: center;
  padding: 60px 0;
  position: relative;
}

.youtube h3 {
  position: absolute;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.contest {
  text-align: center;
  margin-bottom: 40px;
}

.contest img {
  margin: 0 auto;
}

.eki {
  margin-bottom: 56px;
}

.eki img {
  margin: 0 auto;
}

.cv {
  width: 960px;
  height: 400px;
  background: url(../img/top/cv-pc.png);
  background-size: contain;
  position: relative;
  margin: 0 auto 110px;
  animation: yureru 2s infinite;
}
@keyframes yureru {
	30% {
		transform: translate(0px, 0px);
	}
	35% {
		transform: translate(-2px, 0px);
	}
	40% {
		transform: translate(2px, 0px);
	}
	45% {
		transform: translate(-2px, 0px);
	}
	50% {
		transform: translate(2px, 0px);
	}
	55% {
		transform: translate(-2px, 0px);
	}
	60% {
		transform: translate(0px, 0px);
	}
}

.cv a {
  position: absolute;
  bottom: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.cv a:nth-of-type(1) {
  left: 3%;
}
.cv a:nth-last-of-type(1) {
  left: 41%;
}
.cv a:hover{
  transform: translateX(10px);
}

.cv-company {
  width: 960px;
  height: 661px;
  background: url(../img/top/cv-company-pc.jpg);
  background-size: contain;
  position: relative;
  margin: 0 auto 110px;
  animation: yureru 2s infinite;
}

.cv-company a {
  position: absolute;
  bottom: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.cv-company a:nth-of-type(1) {
  left: 13%;
}
.cv-company a:nth-last-of-type(1) {
  left: 51%;
}
.cv-company a:hover{
  transform: translateX(10px);
}

.voice {
  background-image: url(../img/top/voice-bg-pc.png);
  background-size: cover;
  position: relative;
  width: 100%;
  height: 1000px;
  margin-bottom: 60px;
}

.voice h2 {
  position: absolute;
  top: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.voice h2 img {
  width: 700px;
  height: auto;
}

.voice img.image {
  position: absolute;
  margin: 0 auto;
  top: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.tenuki {
  padding-bottom: 80px;
}

.tenuki img {
  margin: 0 auto;
}

.nayami {
  position: relative;
  background-color: #fffde5;
}

.nayami h2 {
  position: relative;
  z-index: 100;
}

.nayami img {
  margin: 0 auto;
  position: relative;
  z-index: 100;
}

.nayami .line {
  position: absolute;
  width: 100%;
  height: 200px;
  background-image: url(../img/top/onayami-linebg.png);
  background-repeat: repeat-x;
  z-index: 99;
  top: 78px;
}

.nayami .wrap {
  width: 100%;
  position: relative;
  background-color: #fff;
  margin: -29px 0;
  z-index: 99;
}

.nayami .wrap .bg {
  position: absolute;
  width: 100%;
  height: 722px;
  background-color: #cae6c0;
  z-index: 99;
  top: 0;
}

.nayami .chiiki {
  background-color: #fff;
  margin-bottom: 60px;
}

.nayami .chiiki .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 960px;
  margin: 0 auto;
  padding-top: 80px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.nayami .chiiki .inner .txt {
  width: 520px;
}

.nayami .chiiki .inner .txt p {
  font-size: 22px;
  margin-bottom: 32px;
  line-height: 1.5;
}

.nayami .chiiki .inner .txt p span {
  color: #c81616;
  font-weight: bold;
}

.merit {
  position: relative;
}

.merit img {
  position: relative;
  z-index: 100;
  margin: 0 auto;
}

.merit .line {
  position: absolute;
  width: 100%;
  height: 204px;
  background-image: url(../img/top/onayami-linebg.png);
  background-size: cover;
  z-index: 99;
  top: 116px;
}

.merit .wrap {
  background: #cae6c0;
}

.merit .wrap .inner {
  width: 960px;
  margin: -32px auto 0;
  padding-top: 60px;
  padding-bottom: 90px;
}
.merit .wrap .inner img{
  margin-bottom:16px;
}
.youtube2 {
  padding: 191px 0 24px;
}

.youtube2 .inner {
  width: 960px;
  margin: 0 auto 40px;
  background: #fffde5;
  text-align: center;
  padding: 60px 0;
  position: relative;
}

.youtube2 .inner h2 {
  position: absolute;
  top: -154px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.reason {
  position: relative;
}

.reason h2 {
  margin-bottom: 40px;
}

.reason img {
  position: relative;
  z-index: 100;
  margin: 0 auto;
}

.reason .line {
  position: absolute;
  width: 100%;
  height: 200px;
  background-image: url(../img/top/onayami-linebg.png);
  background-size: cover;
  z-index: 99;
  top: 111px;
}

.reason .inner {
  width: 960px;
  margin: 0 auto 56px;
}

.reason .inner .box p.title {
  margin-bottom: 40px;
}

.reason .inner .box p.title img {
  margin: 0 auto;
}

.reason .inner .box .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}

.reason .inner .box .wrap .txt {
  width: 480px;
}

.reason .inner .box .wrap .txt p {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 24px;
}

.reason .inner .box .wrap .txt p.intro {
  font-size: 22px;
}

.reason .inner .box .wrap .txt p span {
  color: #c11111;
}

.reason .inner .box .wrap .list {
  width: 430px;
  border: 10px solid #00a349;
  border-radius: 10px;
  padding-bottom: 24px;
}

.reason .inner .box .wrap .list p {
  margin-bottom: 0;
}

.reason .inner .box .wrap .list p.title {
  text-align: center;
  color: #fff;
  background-color: #00a349;
  padding: 20px 0;
  font-size: 24px;
}

.reason .inner .box .wrap .list ul {
  padding: 16px;
}

.reason .inner .box .wrap .list ul li {
  font-size: 16px;
  list-style-type: none;
  font-weight: bold;
  margin-bottom: 6px;
}

.reason .inner .box .wrap .image {
  width: 432px;
}

.reason .inner .box .wrap .image img {
  width: 100%;
  height: auto;
}

.paint {
  position: relative;
}

.paint img {
  position: relative;
  z-index: 100;
  margin: 0 auto;
}

.paint .line {
  position: absolute;
  width: 100%;
  height: 200px;
  background-image: url(../img/top/onayami-linebg.png);
  background-size: cover;
  z-index: 99;
  top: 91px;
}

.paint .wrap {
  background: #cae6c0;
  margin-top: -38px;
  padding-bottom: 120px;
}

.paint .wrap .inner {
  width: 960px;
  margin: -32px auto 0;
  padding-top: 60px;
  padding-bottom: 16px;
}
.paint .wrap .inner img{
  margin-bottom:16px;
}

.paint .wrap .inner .point-box {
  background: #fff;
  border-radius: 10px;
  padding: 32px;
}

.paint .wrap .inner .point-box .cont {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0;
}

.features {
  position: relative;
}

.features h2 {
  margin-bottom: 40px;
}

.features h2 img {
  margin: -80px auto 0;
}

.features img {
  position: relative;
  z-index: 100;
  margin: 0 auto;
}

.features .line {
  position: absolute;
  width: 100%;
  height: 200px;
  background-image: url(../img/top/onayami-linebg.png);
  background-size: cover;
  z-index: 99;
  top: 80px;
}

.features .inner {
  width: 960px;
  margin: 0 auto 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.features .inner .image {
  width: 440px;
}

.features .inner .txt {
  width: 480px;
}

.features .inner .txt p {
  font-size: 18px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.features .inner .txt p.intro {
  font-size: 22px;
  font-weight: bold;
}

.features .inner .txt p.intro:nth-of-type(1) {
  margin-bottom: 8px;
}

.features .inner .txt p span {
  color: #c11111;
  font-weight: bold;
}

.voice2 {
  position: relative;
  margin-top: 36px;
}

.voice2 h2 {
  margin-bottom: 40px;
  position: relative;
  z-index: 101;
}

.voice2 img {
  position: relative;
  z-index: 100;
  margin: 0 auto;
}

.voice2 .line {
  position: absolute;
  width: 100%;
  height: 200px;
  background-image: url(../img/top/onayami-linebg.png);
  background-size: cover;
  z-index: 99;
  top: 91px;
}

.voice2 .wrap {
  background-color: #cae6c0;
  position: relative;
  z-index: 100;
  margin-top: -76px;
  margin-bottom: 40px;
  padding: 100px 0 60px;
}

.voice2 .wrap .inner {
  width: 960px;
  margin: 0 auto;
}

.voice2 .wrap .slider .box {
  background: #fff;
    border-radius: 10px;
    width: 960px;
    padding: 64px 30px 30px 30px;
}

.voice2 .wrap .slider .box .photo-wrap {
  display: flex;
  justify-content: space-between;
}

.voice2 .wrap .slider .box .photo-wrap p {
  position:relative;
}

.voice2 .wrap .slider .box .photo-wrap p img {
  border: 4px solid #cae6c0;
  padding: 6px;
}

.voice2 .wrap .slider .box .photo-wrap p:nth-of-type(1)::before {
  content:"";
  background: url('../img/top/v2title_before.png');
  width: 171px;
  height: 62px;
  position:absolute;
  top: -38px;
  z-index: 110;
}

.voice2 .wrap .slider .box .photo-wrap p:nth-of-type(2)::before {
  content:"";
  background: url('../img/top/v2title_after.png');
  width: 171px;
  height: 62px;
  position:absolute;
  top: -38px;
  z-index: 110;
}

.voice2 .wrap .slider .box table.data {
  border: 1px solid #f5b13a;
  border-collapse: collapse;
  width: 100%;
  margin: 16px 0;
}

.voice2 .wrap .slider .box table tr {
  border-bottom: 1px solid #f5b13a;
}

.voice2 .wrap .slider .box table th {
  background: #f5b13a;
  color: #fff;
  font-size: 18px;
  width: 234px;
  padding: 4px;
    margin: 1px;
    display: inline-block;
}

.voice2 .wrap .slider .box table td {
  font-size: 18px;
  padding: 5px;
}

.voice2 .wrap .slider .box .title {
  color: #23ac38;
  margin: 16px 0 4px;
  font-weight: bold;
  font-size: 16px;
}

.voice2 .wrap .slider .box .comment {
  font-size: 18px;
}

.from-boss {
  position: relative;
  /* margin-top: -40px; */
  margin-bottom: 60px;
}

.from-boss h2 {
  margin-bottom: 40px;
  position: relative;
  z-index: 101;
}

.from-boss img {
  position: relative;
  z-index: 100;
  margin: 0 auto;
}

.from-boss .line2 {
  position: absolute;
  width: 100%;
  height: 200px;
  background-image: url(../img/top/line2-bg.png);
  background-size: cover;
  z-index: 99;
  top: 118px;
}

.from-boss .inner {
  width: 960px;
  margin: 0 auto 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.from-boss .inner .txt {
  width: 480px;
}

.from-boss .inner .txt p {
  font-size: 18px;
  margin-bottom: 24px;
}

.from-boss .inner p.intro {
  font-weight: bold;
  font-size: 22px;
}

.from-boss .inner .txt p span {
  color: #c11111;
  font-weight: bold;
}

.from-boss .inner .image {
  width: 441px;
}

.from-boss .inner .image img {
  margin-bottom: 16px;
}

.from-boss .wide {
  width: 960px;
  margin: 0 auto;
}

.from-boss .wide p {
  font-size: 18px;
  margin-bottom: 24px;
}

.from-boss .wide p span {
  color: #c11111;
  font-weight: bold;
}

.from-boss .wide p.name {
  font-weight: bold;
  text-align: right;
}

.from-boss .wide p img {
  margin: 32px auto 0;
}

.staff {
  position: relative;
}

.staff h2 {
  margin-bottom: 40px;
  position: relative;
  z-index: 101;
}

.staff img {
  position: relative;
  z-index: 100;
  margin: 0 auto;
}

.staff .line {
  position: absolute;
  width: 100%;
  height: 200px;
  background-image: url(../img/top/onayami-linebg.png);
  background-size: cover;
  z-index: 99;
  top: 116px;
}

.staff .wrap {
  background-color: #cae6c0;
  position: relative;
  z-index: 100;
  margin-top: -68px;
  margin-bottom: 0;
  padding: 100px 0 160px;
}

.staff .wrap .inner {
  width: 960px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.staff .wrap .inner .box {
  width: 180px;
  background-color: #fff;
  margin-right: 15px;
  margin-bottom: 40px;
}

.staff .wrap .inner .box .txt {
  padding: 16px 0;
  text-align: center;
}

.staff .wrap .inner .box .txt p {
  line-height: 1.3;
  margin-bottom: 24px;
}

.staff .wrap .inner .box .txt p.name {
  font-size: 21px;
  font-weight: bold;
}

.staff .wrap .inner .box .txt p.name span {
  font-size: 17px;
  display: block;
  font-weight: normal;
}

.staff .wrap .inner .box .txt span.career {
  text-align: center;
  background-color: #00a349;
  padding: 8px 16px;
  color: #fff;
  font-size: 17px;
  border-radius: 20px;
}

.staff .wrap .inner .box:nth-of-type(5n) {
  margin-right: 0;
}

.media {
  position: relative;
  margin-top: -89px;
}

.media h2 {
  margin-bottom: 40px;
  position: relative;
  z-index: 100;
}

.media img {
  position: relative;
  z-index: 100;
  margin: 0 auto;
}

.media .line {
  position: absolute;
  width: 100%;
  height: 200px;
  background-image: url(../img/top/onayami-linebg.png);
  background-size: cover;
  z-index: 99;
  top: 89px;
}

.media .wrap {
  background-color: #fffde5;
  position: relative;
  z-index: 99;
  margin-top: -77px;
  margin-bottom: 0;
  padding: 80px 0 60px;
}

.media .wrap .center {
  text-align: center;
  font-size: 18px;
}

.media .wrap2 {
  background-color: #fffde5;
  position: relative;
  z-index: 99;
  margin-top: -30px;
  margin-bottom: 0;
  padding: 80px 0 60px;
}

.media .wrap .inner {
  width: 960px;
  margin: 0 auto;
}

.media .wrap .inner .wrap2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.media .wrap .inner .wrap2 .box p.title {
  margin-bottom: 8px;
}

.media .wrap .inner .tv {
  margin-bottom: 60px;
}

.media .wrap .inner .tv p.title {
  margin-bottom: 16px;
}

.media .wrap .inner .tv .image {
  font-size: 18px;
}

.media .wrap .inner .tv .image img {
  margin-bottom: 16px;
}

.media .wrap .inner .radio {
  padding-bottom: 160px;
}

.media .wrap .inner .radio p.title {
  margin-bottom: 16px;
}

.media .wrap .inner .radio .r-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
}

.media .wrap .inner .radio .r-wrap .txt {
  width: 480px;
}

.media .wrap .inner .radio .r-wrap .txt p {
  font-size: 18px;
  margin-bottom: 24px;
}

.media .wrap .inner .radio .r-wrap .txt p span {
  color: #c11111;
  font-weight: bold;
}

.media .wrap .inner .radio .r-wrap .txt a {
  font-size: 18px;
  color: #c11111;
}

.media .wrap .inner .radio .r-wrap .image {
  width: 441px;
}

.media .wrap .inner .radio .image span {
  display: block;
  font-size: 18px;
  margin-top: 32px;
}

.contributions {
  position: relative;
  margin-top: -89px;
}

.contributions h2 {
  margin-bottom: 40px;
  position: relative;
  z-index: 100;
}

.contributions img {
  position: relative;
  z-index: 100;
  margin: 0 auto;
}

.contributions .line {
  position: absolute;
  width: 100%;
  height: 200px;
  background-image: url(../img/top/onayami-linebg.png);
  background-size: cover;
  z-index: 99;
  top: 92px;
}

.contributions .wrap {
  background-color: #fffde5;
  position: relative;
  z-index: 99;
  margin-top: -77px;
  margin-bottom: 0;
  padding: 80px 0 160px;
}

.contributions .wrap .inner {
  width: 960px;
  margin: 0 auto;
}

.contributions .wrap .inner p.title {
  margin-bottom: 32px;
}

.contributions .wrap .inner .image {
  margin-bottom: 40px;
}

.contributions .wrap p {
  font-size: 18px;
}
.contributions .wrap .other-wrap{
display: flex;
justify-content: space-between;
}
.contributions .wrap .other-wrap .txt{
  width:450px;
}
.contributions .wrap .other-wrap .image{
  width:365px;
}

.contributions .wrap p.other {
  margin-bottom: 32px;
}

.faq {
  position: relative;
  margin-top: -89px;
}

.faq h2 {
  margin-bottom: 40px;
  position: relative;
  z-index: 100;
}

.faq h2 img {
  position: relative;
  z-index: 100;
  margin: 0 auto;
}

.faq .line {
  position: absolute;
  width: 100%;
  height: 200px;
  background-image: url(../img/top/onayami-linebg.png);
  background-size: cover;
  z-index: 99;
  top: 92px;
}

.faq .wrap {
  background-color: #cae6c0;
  position: relative;
  z-index: 99;
  margin-top: -74px;
  margin-bottom: 60px;
  padding: 80px 0 60px;
}

.faq .wrap .inner {
  width: 800px;
  margin: 0 auto;
}

.faq .wrap .inner .box {
  background-color: #fff;
  padding: 24px;
  margin-bottom: 40px;
}

.faq .wrap .inner .box p.title {
  padding: 8px 60px 8px 0;
  position: relative;
  font-size: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
  background-image: url(../img/top/icon-green-bottom.png);
  background-position: 98% center;
  background-repeat: no-repeat;
}

.faq .wrap .inner .box p.title.open {
  background-image: url(../img/top/icon-green-top.png);
}

.faq .wrap .inner .box p.title img {
  margin-right: 24px;
}

.faq .wrap .inner .box .ans {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.faq .wrap .inner .box .ans .icon {
  width: 81px;
}

.faq .wrap .inner .box .ans .txt {
  width: 655px;
}

.faq .wrap .inner .box .ans .txt p {
  font-size: 18px;
  margin-bottom: 24px;
}

.faq .wrap .inner .box .ans .txt p span {
  color: #c11111;
  font-weight: bold;
}

.faq .wrap .inner .box .ans .txt .a-wrap {
  width: 655px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.faq .wrap .inner .box .ans .txt .a-wrap .txt-wrap {
  width: 360px;
}

.faq .wrap .inner .box .ans .txt .a-wrap .txt-wrap p {
  font-size: 18px;
}

.faq .wrap .inner .box .ans .txt .a-wrap .txt-wrap p span {
  color: #c11111;
  font-weight: bold;
}

.faq p.img-right {
  display: flex;
  justify-content: flex-end;
}

.company {
  position: relative;
  /* margin-top: -40px; */
  margin-bottom: 100px;
}

.company h2 {
  position: relative;
  z-index: 100;
  margin-bottom: 32px;
}

.company img {
  margin: 0 auto;
  position: relative;
  z-index: 100;
}

.company .line {
  position: absolute;
  width: 100%;
  height: 200px;
  background-image: url(../img/top/onayami-linebg.png);
  background-repeat: repeat-x;
  z-index: 99;
  top: 100px;
}

.company .inner {
  width: 800px;
  margin: 0 auto;
}

.company .inner .image {
  margin-bottom: 40px;
}

.company .inner dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 2px solid #fff;
}

.company .inner dl dt {
  width: 235px;
  padding: 12px 16px;
  font-size: 22px;
  background-color: #cae6c0;
  border-right: 2px solid #fff;
  font-weight: bold;
}

.company .inner dl dd {
  width: 563px;
  padding: 12px 16px;
  font-size: 18px;
  background-color: #e2f5db;
}

.company .inner dl dd li {
  list-style-type: none;
}

.company .inner dl:nth-last-of-type(1) {
  margin-bottom: 40px;
}
.for-contact{
  text-align: center;
  margin-bottom: 60px;
}
.for-contact a img{
margin: 0 auto;
}

.for-contact a:hover {
background-position: 98% center;
background-color: #814923;
}
.contact {
  position: relative;
  padding-top: 40px;
  border-top: 1px solid #e4e4e4;
}

.contact h2 {
  position: relative;
  z-index: 100;
  margin-bottom: 32px;
}

.contact img {
  margin: 0 auto;
  position: relative;
  z-index: 100;
}

.contact .line {
  position: absolute;
  width: 100%;
  height: 200px;
  background-image: url(../img/top/onayami-linebg.png);
  background-repeat: repeat-x;
  z-index: 99;
  top: 148px;
}

.contact .inner {
  width: 960px;
  margin: 0 auto;
}

.contact .inner p.caution {
  background-color: #cae6c0;
  padding: 40px 110px;
  font-size: 18px;
  margin-bottom: 40px;
}

.contact .inner p.caution span {
  display: block;
  margin-top: 24px;
  color: #c11111;
  font-size: 22px;
  font-weight: bold;
}

.contact .inner form dl {
  width: 960px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact .inner form dl dt {
  width: 30%;
  font-weight: bold;
  padding: 2%;
  font-size: 22px;
  text-align: left;
  display: flex;
  align-items: center;
}

.contact .inner form dl dt span.required {
  color: #fff;
  background: #c11111;
  padding: 5px 16px;
  font-size: 14px;
  margin-right: 16px;
  border-radius: 5px;
}

.contact .inner form dl dt span.optional {
  color: #fff;
  background: #999999;
  padding: 5px 16px;
  font-size: 14px;
  margin-right: 16px;
  border-radius: 5px;
}

.contact .inner form dl dd {
  width: 70%;
  padding: 2%;
  font-size: 22px;
}

.contact .inner form dl dd input[type="text"] {
  width: 100%;
  padding: 5px 10px;
  line-height: 2;
}

.contact .inner form dl dd input[type="radio"] {
  margin-right: 8px;
  margin-bottom: 24px;
  vertical-align: inherit;
}

.contact .inner form dl dd textarea {
  width: 100% !important;
  height: 200px !important;
}

.contact .inner form dl dd textarea::-webkit-input-placeholder {
  font-size: 14px;
}

.contact .inner form dl dd textarea:-ms-input-placeholder {
  font-size: 14px;
}

.contact .inner form dl dd textarea::-ms-input-placeholder {
  font-size: 14px;
}

.contact .inner form dl dd textarea::placeholder {
  font-size: 14px;
}

.contact .inner form dl dd label {
  margin-right: 16px;
}

.contact .inner form dl dd.radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.contact .inner .privacy {
  width: 960px;
  margin: 40px auto 0;
  border-top: 2px solid #00a349;
  padding: 40px 0 0;
}

.contact .inner .privacy h3 {
  font-size: 24px;
  font-weight: bold;
  color: #00a349;
  text-align: center;
  margin-bottom: 40px;
}

.contact .inner .privacy .privacy-area {
  width: 700px;
  height: 300px;
  overflow-y: scroll;
  border: 1px solid #999;
  padding: 40px;
  margin: 40px auto;
}

.contact .inner .privacy .privacy-area p.title {
  font-size: 15px;
  font-weight: bold;
  margin-top: 16px;
  margin-bottom: 5px;
}

.contact .inner .privacy .privacy-area p.title:nth-of-type(1) {
  margin-top: 0;
}

.contact .inner .privacy .privacy-area p.name {
  font-size: 16px;
  font-weight: bold;
  margin-top: 24px;
}

.contact .inner .privacy .privacy-area a {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}

.contact .inner .privacy .privacy-area span {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
  margin-top: 12px;
}

/* .contact .inner p.agree {
  text-align: center;
  margin-bottom: 32px;
  font-size: 18px;
} */
.agree{
  padding: 2%;
  font-size: 22px;
  margin: 20px 0;
  text-align: center;
}
/* .agree span.required {
  color: #fff;
  background: #c11111;
  padding: 10px 16px;
  font-size: 14px;
  margin-right: 16px;
  border-radius: 5px;
  font-weight: bold;
} */
/* .agree #errormsg_horns{
  text-align: center;
} */

.contact .mfp_element_submit {
  width: 300px;
  background: #fa7722;
  border: none;
  font-size: 20px;
  color: #fff;
  padding: 10px 0;
  border-radius: 30px;
  margin: 0 auto 40px;
  background-image: url(../img/top/icon-white.png);
  background-repeat: no-repeat;
  background-position: 96% center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 5px 5px 1px #fdd6bc;
          box-shadow: 5px 5px 1px #fdd6bc;
}

.contact .mfp_element_submit:hover {
  background-position: 98% center;
  background-color: #814923;
}
.blinking{
	-webkit-animation:blink 1.5s ease-in-out infinite alternate;
    -moz-animation:blink 1.5s ease-in-out infinite alternate;
    animation:blink 1.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0.2;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0.2;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0.2;}
    100% {opacity:1;}
}

.mfp_buttons span{
  display: block;
}
p.thanks-txt {
  Width: 90%;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin: 60px auto 24px;
}

p.thanks-sub {
  width: 90%;
  text-align: center;
  font-size: 16px;
  margin: 0 auto 16px;
}

.for-top {
  margin: 60px auto;
  text-align: center;
}

.for-top a {
  display: block;
  width: 280px;
  padding: 15px 0;
  text-align: center;
  background: #00a349;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin: 0 auto 40px;
}

.for-top a:hover {
  background: #cae6c0;
}

footer {
  background-color: #cae6c0;
  padding: 2rem 0;
  width: 100%;
}

.footer__wrap {
  width: 960px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__company p {
  margin-top: 1rem;
}

.footer__bunner {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 3rem;
  justify-content: flex-end;
}

.footer__bunner .footer_fm {
  /*width: 55%; */
  width: 100%;
}

.footer__bunner .footer_119 {
  width: 100%;
}

.footer__bunner .footer_jio {
  width: 100%;
  margin-top: 1rem;
}

.footer__bunner-right {
  display: block;
  width: 40%;
  margin: 0 0 0 1rem;
}

.copy {
  background-color: #00a349;
  padding: 1rem 1rem 110px;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  color: #FFF;
}

.pc-fix {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 100px;
  background-color: #f9ce08;
  z-index: 9999;
}

.pc-fix .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pc-fix .inner a {
  border-right: 2px solid #fff;
}

.pc-fix .inner a:nth-of-type(1) {
  border-left: 2px solid #fff;
}

.pc-fix .inner a img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.pc-fix .inner a img:hover {
  opacity: 0.7;
}

#page_top {
  position: fixed;
  bottom: 130px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background: #00a349;
  z-index: 99999;
}

#page_top a {
  display: block;
  width: 50px;
  height: 50px;
  padding-top: 5px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
}

@media screen and (min-width: 320) and (max-width: 767) {
  .wrap {
    width: 100%;
  }
}
.mb00 {
  margin-bottom: 0!important;
}
.mt80 {
  margin-top: 80px!important;
}
.bottom4 {
  bottom: 4%!important;
}

.customer-voice {
  position: relative;
}

.customer-voice h2 {
  position: relative;
  z-index: 100;
}

.customer-voice img {
  margin: 0 auto;
  position: relative;
  z-index: 100;
}

.customer-voice .line {
  position: absolute;
  width: 100%;
  height: 200px;
  background-image: url(../img/top/onayami-linebg.png);
  background-repeat: repeat-x;
  z-index: 99;
  top: 75px;
}

.customer-voice .wrap {
  margin: -36px 0;
  background-color: #fffde5;
}

.customer-voice .wrap .kuchikomi {
  padding: 60px 0 90px;
}

.customer-voice .voice-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 960px;
  margin: 0 auto 24px;
}

.customer-voice .voice-box {
  width: 464px;
  background: #fff;
  border-radius: 10px;
  position: relative;
  margin-bottom: 36px;
}

.customer-voice .voice-box:nth-of-type(1),
.customer-voice .voice-box:nth-of-type(2) {
  margin-bottom: 80px;
}

.customer-voice .voice-box h3 {
  position: absolute;
  top: -50px;
  left: calc(50% - 219px);
  z-index: 110;
}

.customer-voice .voice-box .house-photo {
  margin-top: 90px;
}

.customer-voice .voice-box.notitle .house-photo {
  margin-top: 16px;
}

.customer-voice .voice-box .house-info {
  color: #23ac38;
  font-weight: bold;
  margin: 8px 24px;
}

.customer-voice .voice-box .voice-comment {
  margin: 8px 24px 16px;
}

.youtube h3 img,.youtube2 h2 img {
  max-width: initial;
  height: auto;
}

.footer__company a img {
}

.privacy {
  position: relative;
  padding-top: 40px;
  border-top: 1px solid #e4e4e4;
}

.privacy h2 {
  position: relative;
  z-index: 100;
  margin-bottom: 32px;
}

.privacy h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.privacy h4 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.privacy p {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.privacy img {
  margin: 0 auto;
  position: relative;
  z-index: 100;
}

.privacy .line {
  position: absolute;
  width: 100%;
  height: 200px;
  background-image: url(../img/top/onayami-linebg.png);
  background-repeat: repeat-x;
  z-index: 99;
  top:40px;
}

.privacy .inner {
  width: 960px;
  margin: 0 auto;
}

.privacy .inner p.caution {
  background-color: #cae6c0;
  padding: 40px 110px;
  font-size: 18px;
  margin-bottom: 40px;
}

.privacy .inner p.caution span {
  display: block;
  margin-top: 24px;
  color: #c11111;
  font-size: 22px;
  font-weight: bold;
}

.privacy .inner form dl {
  width: 960px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.privacy .inner form dl dt {
  width: 25%;
  font-weight: bold;
  padding: 2%;
  font-size: 22px;
  text-align: left;
}

.privacy .inner form dl dt span.required {
  color: #fff;
  background: #c11111;
  padding: 5px 16px;
  font-size: 14px;
  margin-right: 16px;
  border-radius: 5px;
}

.privacy .inner form dl dt span.optional {
  color: #fff;
  background: #999999;
  padding: 5px 16px;
  font-size: 14px;
  margin-right: 16px;
  border-radius: 5px;
}

.privacy .inner form dl dd {
  width: 75%;
  padding: 2%;
  font-size: 22px;
}

.privacy .inner form dl dd input[type="text"] {
  width: 100%;
  padding: 5px 10px;
  line-height: 2;
}

.privacy .inner form dl dd input[type="radio"] {
  margin-right: 8px;
  margin-bottom: 24px;
  vertical-align: inherit;
}

.privacy .inner form dl dd textarea {
  width: 100% !important;
  height: 200px !important;
}

.privacy .inner form dl dd textarea::-webkit-input-placeholder {
  font-size: 14px;
}

.privacy .inner form dl dd textarea:-ms-input-placeholder {
  font-size: 14px;
}

.privacy .inner form dl dd textarea::-ms-input-placeholder {
  font-size: 14px;
}

.privacy .inner form dl dd textarea::placeholder {
  font-size: 14px;
}

.privacy .inner form dl dd label {
  margin-right: 16px;
}

.privacy .inner form dl dd.radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.privacy .inner .privacy {
  width: 960px;
  margin: 40px auto 0;
  border-top: 2px solid #00a349;
  padding: 40px 0 0;
}

.privacy .inner .privacy h3 {
  font-size: 24px;
  font-weight: bold;
  color: #00a349;
  text-align: center;
  margin-bottom: 40px;
}

.privacy .inner .privacy .privacy-area {
  width: 700px;
  height: 300px;
  overflow-y: scroll;
  border: 1px solid #999;
  padding: 40px;
  margin: 40px auto;
}

.privacy .inner .privacy .privacy-area p.title {
  font-size: 15px;
  font-weight: bold;
  margin-top: 16px;
  margin-bottom: 5px;
}

.privacy .inner .privacy .privacy-area p.title:nth-of-type(1) {
  margin-top: 0;
}

.privacy .inner .privacy .privacy-area p.name {
  font-size: 16px;
  font-weight: bold;
  margin-top: 24px;
}

.privacy .inner .privacy .privacy-area a {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}

.privacy .inner .privacy .privacy-area span {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
  margin-top: 12px;
}

.privacy .inner p.agree {
  text-align: center;
  margin-bottom: 32px;
  font-size: 18px;
}

.privacy .mfp_element_submit {
  width: 300px;
  background: #fa7722;
  border: none;
  font-size: 20px;
  color: #fff;
  padding: 10px 0;
  border-radius: 30px;
  margin: 0 auto 40px;
  background-image: url(../img/top/icon-white.png);
  background-repeat: no-repeat;
  background-position: 96% center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 5px 5px 1px #fdd6bc;
          box-shadow: 5px 5px 1px #fdd6bc;
}

.privacy .mfp_element_submit:hover {
  background-position: 98% center;
  background-color: #814923;
}

/* 202401 追加 */
/* 共通CTA */
.cta{
  z-index: 2;
  position: relative;
  margin: 40px auto 40px;
  overflow: hidden;
  padding: 80px 0 20px;
}
.cta .cv{
  animation: none;
  margin: 0 auto;
  background: url(../img/top/cv-pc_02.png);
}
.cta .bg-paint{
	position:absolute;
	margin: 0px;
	list-style-type: none;
	z-index:-1;
	top: 0;
  height: 100%;
}
.cta .bg-paint li{
	transition: 1.4s;
	transition-delay: 0.5s;
	transition-timing-function:cubic-bezier(.42,.02,.25,.99);
  height: 100%;
}
.cta .js-bg-paint{
	transform: translate(-1500px,0);
	-webkit-transform: translate(-1500px,0);
}
.cta .js-bg-paint.is-inview{
	transform: translate(-100px,0);
	-webkit-transform: translate(-100px,0);
}
.cta .bg-paint li img{
  max-width: none;
  height: 100%;
}

/* 会社案内CTA */
.cta-company{
  z-index: 2;
  position: relative;
  margin: 40px auto 80px;
  overflow: hidden;
  padding: 110px 0 10px;
}
.cta-company .cta-company-head{
  width: 960px;
  height: 177px;
  margin: 0 auto;
  position: relative;
}
.cta-company .cv-company{
  animation: none;
  margin: 0 auto;
  background: url(../img/top/cv-company-pc_02.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 580px;
}
.cta-company .bg-paint{
	position:absolute;
	margin: 0px;
	list-style-type: none;
	z-index:-1;
	top: 0;
  height: 100%;
}
.cta-company .bg-paint li{
	transition: 1.4s;
	transition-delay: 0.5s;
	transition-timing-function:cubic-bezier(.42,.02,.25,.99);
  height: 100%;
}
.cta-company .js-bg-paint{
	transform: translate(-3000px,0);
	-webkit-transform: translate(-3000px,0);
}
.cta-company .js-bg-paint.is-inview{
	transform: translate(-300px,0);
	-webkit-transform: translate(-300px,0);
}
.cta-company .bg-paint li img{
  max-width: none;
  height: 100%;
}