@charset "UTF-8";
html, body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  box-sizing: border-box;
  user-select: none;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 140px;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
}

.l-header__logo {
  align-self: center;
  margin-left: 30px;
  display: inline-block;
}

.l-container {
  max-width: 2000px;
  width: 100%;
  margin: 0 auto;
}

.l-container__img {
  max-width: 2000px;
  width: 300%;
}

.l-container__img__small {
  max-width: 661px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

.l-footer__p {
  text-align: center;
  padding: 20px 0;
  font-size: .9rem;
}

.swiper-container {
  margin-top: 160px;
}

#p-check {
  display: inline;
  width: 505px;
  float: right;
}

.p-form__caution {
  color: red;
  font-size: .8rem;
}

.p-form--center {
  text-align: center;
}

.p-form__h1 {
  display: flex;
  align-items: center;
  color: #ff6800;
  font-size: 2.4rem;
}

.p-form__h1__inner {
  padding: 0 20px;
}

.p-form__h1:before, .p-form__h1:after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: #ff6800;
  display: block;
}

.p-form__textbox {
  border: 1px solid #000;
  max-width: 420px;
  width: 100%;
  height: 40px;
}

.p-form__input__radio {
  padding-bottom: 10px;
}

.p-form__wrap {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
}

.p-form__wrap__p {
  border-left: 15px solid #ff6800;
}

.p-form__wrap__item {
  display: inline-block;
  width: 320px;
  font-size: 1.2rem;
  line-height: 40px;
}

.p-form__wrap__item__qaselect {
  line-height: 180px;
}

.p-form__wrap__item__select {
  max-width: 500px;
  width: 100%;
  text-align: left;
}

.p-form__wrap__item__contact {
  line-height: 56px;
}

.p-form__wrap__item__service {
  width: 300px;
  height: 70px;
  line-height: 70px;
}

.p-form__wrap__item__desire {
  display: inline-block;
  height: 26px;
  line-height: 26px;
  padding-bottom: 30px;
}

.p-form__wrap__textarea {
  border-left: 15px solid #ff6800;
}

.p-form__wrap__textarea textarea {
  border: 1px solid #000;
}

.p-confirm {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  line-height: 30px;
  border: 1px solid salmon;
  padding: 20px;
  border-radius: 5px;
}

@media (max-width: 880px) {
  .p-form {
    width: 96%;
  }
  .p-form__textbox {
    margin-left: 20px;
  }
  .p-form textarea {
    margin-left: 20px;
  }
}

@media (max-width: 560px) {
  .p-form--block {
    display: block;
  }
  .p-form__textbox {
    width: 94%;
  }
  .p-form textarea {
    width: 94%;
  }
  #p-check {
    display: inline-block;
    margin-left: 10px;
    width: 96%;
    float: none;
  }
}

.c-link__menu {
  display: flex;
  justify-content: space-around;
  max-width: 740px;
  width: 100%;
  height: 140px;
  position: relative;
  right: 0;
  left: 50px;
  list-style: none;
  align-items: center;
}

@media (max-width: 1040px) {
  .c-link__menu {
    flex-wrap: wrap;
    max-width: 600px;
    justify-content: flex-start;
  }
}

@media (max-width: 850px) {
  /*　ハンバーガーボタン　*/
  .c-link__menu {
    position: static;
    display: block;
    height: auto;
  }
  .c-link__menu li {
    display: block;
  }
  .hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    right: 13px;
    top: 12px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
  .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #555;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 10px;
  }
  .hamburger span:nth-child(2) {
    top: 20px;
  }
  .hamburger span:nth-child(3) {
    top: 30px;
  }
  /* ナビ開いてる時のボタン */
  .hamburger.active span:nth-child(1) {
    top: 16px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 16px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  nav.globalMenuSp {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    background: #fff;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
  }
  nav.globalMenuSp ul {
    background: #ccc;
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }
  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px solid #fff;
  }
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  nav.globalMenuSp ul li:hover {
    background: #ddd;
  }
  nav.globalMenuSp ul li a {
    display: block;
    text-decoration: none;
  }
  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp.active {
    transform: translateY(0%);
  }
}

.u-margin--t10 {
  margin-top: 10px;
}

.u-margin--t20 {
  margin-top: 20px;
}

.u-margin--t30 {
  margin-top: 30px;
}

.u-margin--t50 {
  margin-top: 50px;
}

.u-margin--t60 {
  margin-top: 60px;
}

.u-margin--t100 {
  margin-top: 100px;
}

.u-margin--t150 {
  margin-top: 150px;
}

.u-margin--l10 {
  margin-left: 10px;
}

.u-margin--l15 {
  margin-left: 15px;
}

.u-margin--l20 {
  margin-left: 20px;
}

.u-margin--b10 {
  margin-bottom: 10px;
}

.u-margin--b20 {
  margin-bottom: 20px;
}

.u-margin--b30 {
  margin-bottom: 30px;
}

.u-margin--b50 {
  margin-bottom: 50px;
}

.u-margin--b150 {
  margin-bottom: 150px;
}

.u-margin--tb30 {
  margin: 30px 0;
}

@media (max-width: 850px) {
  .u-margin__menu--l20 {
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .u-margin__fegure--l10 {
    margin-left: 10px;
  }
}

.c-btn {
  position: relative;
}

.c-btn__form {
  max-width: 180px;
  width: 100%;
  background: #ff9200;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
}

.c-btn__arrow {
  position: fixed;
  right: 20px;
  bottom: 30px;
  padding: 10px 15px;
  border-radius: 5px;
  background-color: rgba(210, 210, 210, 0.8);
}

.c-btn__menu li {
  display: flex;
  font-weight: 600;
  color: #fff;
}

.c-btn__menu li:first-child {
  margin-left: 0;
}

.c-btn__menu li a {
  display: inline-block;
}

.c-btn__menu__tel {
  background: #FFB319;
  line-height: 58px;
  min-width: 164px;
  width: 100%;
  height: 60px;
  max-width: 260px;
  padding: 0 10px;
  text-align: center;
  padding: 0 10px;
  min-width: 200px;
}

.c-btn__menu__order {
  background: #fd2a00;
  background: linear-gradient(0deg, #fd2a00 0%, #ff7900 100%);
  line-height: 60px;
  min-width: 164px;
  width: 100%;
  height: 60px;
  max-width: 260px;
  padding: 0 10px;
  text-align: center;
}

.c-btn__menu__online {
  background: #00ae35;
  background: linear-gradient(0deg, #00ae35 0%, #00e790 100%);
  color: #ffff00;
  min-width: 164px;
  width: 100%;
  height: 60px;
  max-width: 260px;
  padding: 0 10px;
  text-align: center;
  padding-top: 15px;
}

.c-btn__menu__online__txt {
  display: block;
  text-align: center;
  color: #fff;
  padding-top: 2px;
}

.c-btn__menu__document {
  background: #008ade;
  background: linear-gradient(0deg, #008ade 0%, #00c8d3 100%);
  line-height: 60px;
  min-width: 164px;
  width: 100%;
  height: 60px;
  max-width: 260px;
  padding: 0 10px;
  text-align: center;
}

.c-btn__p {
  text-align: center;
}

.c-btn--right {
  text-align: right;
}

.c-btn__confirm {
  max-width: 200px;
  width: 100%;
  background: #FFB319;
  border-radius: 5px;
  color: #fff;
  padding: 10px 0;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
}

.c-btn__back {
  max-width: 80px;
  width: 100%;
  background: salmon;
  border-radius: 5px;
  color: #fff;
  padding: 10px 0;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
}

.c-btn__back__a {
  max-width: 80px;
  width: 100%;
  background: salmon;
  border-radius: 5px;
  color: #fff;
  padding: 10px 0;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 10px 20px;
}

@media (max-width: 1040px) {
  .c-btn__menu li:nth-child(4) {
    margin-left: 0;
  }
}

@media (max-width: 850px) {
  .c-btn__menu a {
    display: block;
    max-width: none;
    min-width: none;
    background: tomato;
    color: #fff;
    margin: 0;
  }
  .c-btn__menu__online__txt {
    color: #ffff00;
  }
}

@media (max-width: 660px) {
  .c-btn__online {
    width: 90%;
  }
  .c-btn__tel {
    width: 90%;
  }
}

.c-figure {
  display: flex;
  justify-content: center;
}

.c-figure img:first-child {
  max-width: 408px;
  width: 51%;
}

.c-figure img:last-child {
  max-width: 369px;
  width: 49%;
}

@media (max-width: 880px) {
  .c-figure img:first-child {
    width: 47%;
  }
  .c-figure img:last-child {
    width: 45%;
  }
}

.u-z_index--10 {
  z-index: 10;
}

.u-z_index--20 {
  z-index: 20;
}

.u-font__size--08r {
  font-size: .8rem;
}

.u-font__size--13r {
  font-size: 1.3rem;
}

#s-kengaku_back {
  max-width: 1000px;
  width: 100%;
  max-height: 1840px;
  height: 100%;
  background: url("../img/kengaku_back_rp.jpg") repeat-y;
}

.fade_out {
  display: none;
}

.swiper-container, .swiper-container img {
  width: 100%;
  height: auto;
}

.req {
  color: red;
}

/* 業務発注フォーム */
@media (max-width: 1020px) {
  .swiper-button-prev, .swiper-button-next {
    width: 20px;
  }
}

@media (max-width: 640px) {
  .swiper-button-prev, .swiper-button-next {
    width: 10px;
  }
}
