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

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

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

body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
  min-width: 1366px;
  position: relative;
  cursor: none !important;
  width: 100%;
  margin: 0;
  color: #000;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

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;
}

* {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -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;
  transition: transform 0.2s linear;
}
#cursor.active {
  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: 130;
}

#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: 140;
}

.fulfilling-bouncing-circle-spinner {
  box-sizing: border-box;
  height: 60px;
  width: 60px;
  position: relative;
  animation: fulfilling-bouncing-circle-spinner-animation infinite 4000ms ease;
}
.fulfilling-bouncing-circle-spinner * {
  box-sizing: border-box;
}
.fulfilling-bouncing-circle-spinner .orbit {
  height: 60px;
  width: 60px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  border: 1.8px solid #ec7b3f;
  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: 6px solid #ec7b3f;
  animation: fulfilling-bouncing-circle-spinner-circle-animation infinite 4000ms ease;
  transform: rotate(0deg) scale(1);
}
@keyframes fulfilling-bouncing-circle-spinner-animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fulfilling-bouncing-circle-spinner-orbit-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1);
  }
  62.5% {
    transform: scale(0.8);
  }
  75% {
    transform: scale(1);
  }
  87.5% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fulfilling-bouncing-circle-spinner-circle-animation {
  0% {
    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;
    transform: scale(1);
  }
  62.5% {
    border-color: inherit;
    transform: scale(1.4);
  }
  75% {
    border-color: inherit;
    transform: scale(1);
    opacity: 1;
  }
  87.5% {
    border-color: inherit;
    transform: scale(1.4);
  }
  100% {
    border-color: transparent;
    border-top-color: inherit;
    transform: scale(1);
  }
}
/*#wrapper {
  display: none;
}*/
.fadein {
  opacity: 0;
  transform: translate(0, 100px);
  transition: all 1s;
}
.fadein.active {
  opacity: 1;
  transform: translate(0, 0);
}

.header {
  width: 100%;
  background: #fff;
}
.header .inner {
  display: flex;
  width: 960px;
  margin: 0 auto;
  padding: 1rem 0;
  justify-content: space-between;
  align-items: center;
  background-color: white;
}
.header .inner .h1-wrap h1 {
  margin-bottom: 3px;
}
.header .inner .h1-wrap .sub {
  font-size: 10px;
  display: flex;
}
.header .inner .h1-wrap .sub p:nth-of-type(1) {
  font-weight: bold;
  font-size: 12px;
  padding-right: 7px;
}
.header .inner .h1-wrap .sub p:nth-of-type(2) {
  line-height: 1.2;
  font-size: 12px;
}
.header .inner .h1-wrap .sub p:nth-of-type(2) span:nth-of-type(1) {
  margin-bottom: 3px;
}
.header .inner .hdr-contact {
  display: flex;
}
.header .inner .hdr-contact .header__pc-tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.header .inner .hdr-contact .header__pc-tel .time {
  width: 100%;
  font-size: 12px;
  color: #00a349;
  border: solid 1px #00a349;
  text-align: center;
  padding: 3px 0 3px 5px;
  margin-bottom: 2px;
  font-family: "Noto Sans JP", sans-serif;
}
.header .inner .hdr-contact .header__pc-tel .header-tel__link {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}
.header .inner .hdr-contact .header__button {
  font-size: 16px;
  display: inline-block;
  position: relative;
  padding: 1.1em 1.2em;
  text-decoration: none;
  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;
  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;
  transform: rotate(-45deg);
  transform-origin: center;
  margin-left: 1rem;
}
.header .inner .hdr-contact .header__button:hover {
  transform: translateX(10px);
}

.main-image {
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 80px;
}
.main-image:before {
  content: "";
  display: block;
  width: 100%;
  height: 65px;
  border-top: 4px solid #fff;
  background: #3498db;
  position: absolute;
  z-index: 99;
}
.main-image img {
  width: 1366px;
  height: 564px;
  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: #e2f0fa;
  text-align: center;
  padding: 60px 0;
  position: relative;
}
.youtube h3 {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

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

.showroom {
  margin-bottom: 40px;
}
.showroom img {
  margin: 0 auto;
}
.showroom .sr-list {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 960px;
  margin: 10px auto 0;
}
.showroom .sr-list li {
  list-style: none;
  background: #fff7ad;
  border-radius: 10px;
}
.showroom .sr-list li .shop-title {
  text-align: center;
  color: #c11111;
  font-size: 2rem;
  font-weight: bold;
  margin: 10px 0 5px;
}
.showroom .sr-list li .shop-info {
  text-align: center;
  margin: 5px 0 10px;
  font-size: 1.7rem;
}
.showroom .sr-list li .shop-info a {
  color: #3498db;
  transition: 0.2s;
}
.showroom .sr-list li .shop-info a:hover {
  opacity: 0.7;
}
.showroom .sr-list.column1 li {
  display: flex;
  width: 100%;
}
.showroom .sr-list.column1 li div {
  width: 50%;
}
.showroom .sr-list.column1 li div img {
  border-radius: 10px 0 0 10px;
}
.showroom .sr-list.column1 li div:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.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;
}
.cv a {
  position: absolute;
  bottom: 30px;
  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);
}

@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-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;
  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%;
  transform: translateX(-50%);
}
.voice h2 img {
  width: 700px;
  height: auto;
}
.voice img.image {
  position: absolute;
  margin: 0 auto;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.tenuki {
  padding-bottom: 80px;
}
.tenuki img {
  margin: 0 auto;
}

.nayami {
  position: relative;
  background-color: #e2f0fa;
}
.nayami h2 {
  position: relative;
  z-index: 100;
}
.nayami img, .nayami .inner 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: 821px;
  background-color: #d6eaf8;
  z-index: 99;
  top: 0;
}
.nayami .chiiki {
  background-color: #fff;
  margin-bottom: 60px;
}
.nayami .chiiki .inner {
  display: flex;
  width: 960px;
  margin: 0 auto;
  padding-top: 80px;
  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: #e2f0fa;
}
.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%;
  transform: translateX(-50%);
}

.reason {
  position: relative;
}
.reason h2 {
  margin-bottom: 40px;
  background: #e2f0fa;
}
.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: 109px;
}
.reason > .wrap {
  margin-top: -73px;
  background: #fff;
  z-index: 99;
  position: relative;
  padding-top: 100px;
}
.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: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.reason .inner .box .wrap.row-reverse {
  flex-direction: row-reverse;
}
.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: 205px;
  background-image: url(../img/top/onayami-linebg.png);
  background-size: cover;
  z-index: 99;
  top: 88px;
}
.paint .wrap {
  background: #d6eaf8;
  margin-top: -41px;
  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: -84px 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: 84px;
}
.features .inner {
  width: 960px;
  margin: 0 auto 56px;
  display: flex;
  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: 203px;
  background-image: url(../img/top/onayami-linebg.png);
  background-size: cover;
  z-index: 99;
  top: 87px;
}
.voice2 .wrap {
  background-color: #e2f0fa;
  position: relative;
  z-index: 100;
  margin-top: -77px;
  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 #d6eaf8;
  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 5px 5px 15px;
  width: 100%;
}
.voice2 .wrap .slider .box .title {
  color: #3498db;
  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 .line {
  position: absolute;
  width: 100%;
  height: 206px;
  background-image: url(../img/top/onayami-linebg.png);
  background-size: cover;
  z-index: 99;
  top: 113px;
}
.from-boss .inner {
  width: 960px;
  margin: 0 auto 32px;
  display: flex;
  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: flex;
  flex-wrap: wrap;
  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: flex;
  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: flex;
  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: 88px;
}
.faq .wrap {
  background-color: #d6eaf8;
  position: relative;
  z-index: 99;
  margin-top: -77px;
  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: flex;
  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: 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: flex;
  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: 105px;
}
.company .inner {
  width: 800px;
  margin: 0 auto;
}
.company .inner .image {
  margin-bottom: 40px;
}
.company .inner dl {
  display: flex;
  border-bottom: 2px solid #fff;
}
.company .inner dl dt {
  width: 235px;
  padding: 12px 16px;
  font-size: 22px;
  background-color: #d6eaf8;
  border-right: 2px solid #fff;
  font-weight: bold;
}
.company .inner dl dd {
  width: 563px;
  padding: 12px 16px;
  font-size: 18px;
  background-color: #e2f0fa;
}
.company .inner dl dd p {
  margin-bottom: 16px;
  font-size: 1.8rem;
}
.company .inner dl dd p:last-child {
  margin-bottom: 0;
}
.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 h1 {
  position: relative;
  z-index: 100;
  margin-bottom: 32px;
}
.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: 145px;
}
.contact .inner {
  width: 960px;
  margin: 0 auto;
}
.contact .inner p.caution {
  background-color: #e2f0fa;
  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: 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, .contact .inner form dl dd textarea:-ms-input-placeholder, .contact .inner form dl dd textarea::-ms-input-placeholder, .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: flex;
  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;
  transition: 0.3s;
  box-shadow: 5px 5px 1px #fdd6bc;
}
.contact .mfp_element_submit:hover {
  background-position: 98% center;
  background-color: #814923;
}

.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: #3498db;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin: 0 auto 40px;
  text-decoration: none;
  transition: 0.2s;
}
.for-top a:hover {
  opacity: 0.7;
}

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

.footer__wrap {
  width: 960px;
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
}

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

.footer__bunner {
  width: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.footer__bunner a {
  display: flex;
  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: #3498db;
  padding: 1rem 1rem 110px;
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
  color: #FFF;
}

.pc-fix {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 100px;
  background-color: #bc3642;
  z-index: 101;
}
.pc-fix .inner {
  display: flex;
  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 {
  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: #3498db;
  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: 320px) and (max-width: 767px) {
  .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: #e2f0fa;
}
.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: 100;
}
.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: #3498db;
  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;
}

.youtube .youtube-wrap iframe {
  border: none;
}

.footer__company a img {
  mix-blend-mode: multiply;
}

.privacy {
  position: relative;
  padding-top: 40px;
  border-top: 1px solid #e4e4e4;
}
.privacy h2 {
  position: relative;
  z-index: 100;
  margin-bottom: 32px;
}
.privacy h3, .privacy h4, .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: 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, .privacy .inner form dl dd textarea:-ms-input-placeholder, .privacy .inner form dl dd textarea::-ms-input-placeholder, .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: flex;
  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;
  transition: 0.3s;
  box-shadow: 5px 5px 1px #fdd6bc;
}
.privacy .mfp_element_submit:hover {
  background-position: 98% center;
  background-color: #814923;
}

.privacy-policy-title {
  font-size: 22px;
}

.privacy-policy-wrap {
  border: 1px solid #BAB9B9;
  height: 280px;
  padding: 0 20px;
  overflow-y: scroll;
  margin-bottom: 18px;
}

.privacy-policy-wrap .privacy-policy-box * {
  font-size: 1.6rem;
}

.privacy-policy-wrap .privacy-policy-box h3,
.privacy-policy-wrap .privacy-policy-box h4,
.privacy-policy-wrap .privacy-policy-box p,
.privacy-policy-wrap .privacy-policy-box ul,
.privacy-policy-wrap .privacy-policy-box li {
  margin-top: 1rem;
}

.privacy-policy-wrap .privacy-policy-box li {
  list-style: none;
}

.privacy-policy-wrap .privacy-policy-box .list-2nd li {
  padding-left: 1em;
}/*# sourceMappingURL=style.css.map */