@charset "UTF-8";
/* —————————————————
  共通項目
  —————————————————*/
html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  overflow-x: hidden;
  line-height: 1.5;
  color: #0084cc;
}

a {
  cursor: pointer;
  text-decoration: none;
  outline: none;
  color: #0084cc;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.l-wrap {
  width: calc(100% - 40px);
  max-width: 900px;
  margin: 0 auto;
}

/* ---- タイトル ---- */
.c-title {
  text-align: center;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.35;
}

@media screen and (max-width: 840px) {
  .c-title {
    font-size: 2.4rem;
  }
}
/* —————————————————
  ヘッダー header
  —————————————————*/
.l-header {
  width: 100%;
  height: 80px;
  margin: 0 auto;
  padding: 0 10px 0 36px;
  transition: 0.3s ease all;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 99;
}
.l-header .l-header__logo {
  position: relative;
  z-index: 9;
  margin-top: 10px;
}
.l-header .l-header__inner {
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  height: 100%;
}

.l-header__sp {
  display: none;
}

.l-header__nav {
  -ms-flex: 1;
      flex: 1;
}

.l-header__contact {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-align: end;
      align-items: flex-end;
  position: relative;
  z-index: 1;
}
.l-header__contact .c-tel {
  text-align: right;
  margin-right: 24px;
}
.l-header__contact .c-tel a {
  line-height: 0.8;
  font-size: 1.6rem;
  font-weight: 700;
  transition: 0.3s ease;
}
.l-header__contact .c-tel a:hover {
  opacity: 0.7;
}
.l-header__contact .c-tel span {
  display: inline-block;
}
.l-header__contact .c-tel .reception {
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 10px;
}
.l-header__contact .contact-btn {
  width: 40%;
  max-width: 142px;
  height: 50px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 5px;
  line-height: 1;
  transition: 0.3s ease;
}
.l-header__contact .contact-btn:hover {
  opacity: 0.7;
}
.l-header__contact .contact-btn.catalog {
  background-color: #00ACBA;
  margin-right: 10px;
}
.l-header__contact .contact-btn.mail {
  background-color: #0084cc;
  width: 137px;
}

.c-hamburger {
  display: none;
}

@media screen and (max-width: 840px) {
  .l-header {
    height: 60px;
    padding: 0 0 0 20px;
  }
  .l-header .l-header__logo {
    margin-top: 0;
  }
  .l-header__nav {
    z-index: 999;
    width: 100%;
    background: #fff;
    padding: 80px 0;
    -webkit-overflow-scrolling: touch;
    position: fixed;
    top: 60px;
    right: -120%;
    height: 100vh;
    transition: 0.3s ease all;
  }
  .l-header__nav.is-active {
    right: 0;
  }
  .l-header__sp {
    display: block;
    width: 60px;
    height: 60px;
    background-color: #00ACBA;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    margin: 0 0 0 auto;
  }
  .l-header__sp a {
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
  }
  .c-hamburger {
    transition: all 0.2s;
    position: relative;
    width: 60px;
    height: 60px;
    z-index: 999;
    display: block;
    background-color: #0084cc;
  }
  .c-hamburger span {
    display: inline-block;
    transition: all 0.2s;
    position: absolute;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
    width: 30px;
    left: 15px;
  }
  .c-hamburger span:nth-of-type(1) {
    top: 22px;
  }
  .c-hamburger span:nth-of-type(2) {
    top: 30px;
  }
  .c-hamburger span:nth-of-type(3) {
    top: 38px;
  }
  .c-hamburger.is-active span:nth-of-type(1) {
    -ms-transform: translateY(8px) rotate(-45deg);
        transform: translateY(8px) rotate(-45deg);
  }
  .c-hamburger.is-active span:nth-of-type(2) {
    opacity: 0;
  }
  .c-hamburger.is-active span:nth-of-type(3) {
    -ms-transform: translateY(-8px) rotate(45deg);
        transform: translateY(-8px) rotate(45deg);
  }
  .l-header__contact {
    display: block;
  }
  .l-header__contact .c-tel {
    text-align: center;
    max-width: 240px;
    margin: 0 auto 20px;
  }
  .l-header__contact .contact-btn {
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    border-radius: 0;
  }
  .l-header__contact .contact-btn.catalog {
    margin-right: auto;
    margin-bottom: 10px;
  }
  .l-header__contact .contact-btn.mail {
    width: 100%;
    max-width: 240px;
  }
}
/* —————————————————
  フッター footer
  —————————————————*/
.l-footer {
  background-color: #F8F8F8;
  border-top: 1px solid #B4B4B4;
}
.l-footer .l-footer__inner {
  padding: 28px 20px 24px;
}

.l-footer__contact {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
  z-index: 1;
}
.l-footer__contact .contact-btn {
  width: 50%;
  max-width: 300px;
  height: 70px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  border-radius: 5px;
  line-height: 1;
  transition: 0.3s ease;
  border: 1px solid #0084cc;
}
.l-footer__contact .contact-btn:hover {
  opacity: 0.7;
}
.l-footer__contact .contact-btn.mail {
  background-color: #0084cc;
  margin-right: 45px;
}
.l-footer__contact .contact-btn.tel {
  background-color: #fff;
  color: #0084cc;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
  font-size: 2rem;
}
.l-footer__contact .contact-btn.tel .icon {
  margin-right: 6px;
  display: inline-block;
}
.l-footer__contact .contact-btn.tel .reception {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 6px;
}

.c-copyLight {
  padding: 12px 0;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: #0084cc;
}

@media screen and (max-width: 840px) {
  .l-footer .l-footer__inner {
    padding: 20px;
  }
  .l-footer__contact .contact-btn {
    height: 60px;
    font-size: 1.4rem;
  }
  .l-footer__contact .contact-btn.mail {
    margin-right: 10px;
  }
  .l-footer__contact .contact-btn.tel {
    font-size: 1.4rem;
  }
  .l-footer__contact .contact-btn.tel .icon {
    margin-right: 4px;
  }
  .l-footer__contact .contact-btn.tel .icon img {
    width: 10px;
  }
  .l-footer__contact .contact-btn.tel .reception {
    font-size: 1.1rem;
  }
}
/* —————————————————
  トップページ home
  —————————————————*/
/* ---- フォーム ---- */
.p-contact__form {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
.p-contact__form h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 12px;
  line-height: 1.5;
}
.p-contact__form .text {
  font-size: 1.2rem;
  margin-bottom: 12px;
  line-height: 1.5;
}
.p-contact__form p {
  font-size: 1.6rem;
  margin-bottom: 20px;
  line-height: 1.5;
}
.p-contact__form .form-field input[type=text],
.p-contact__form .form-field input[type=tel],
.p-contact__form .form-field input[type=email],
.p-contact__form .form-field select,
.p-contact__form .form-field textarea {
  background-color: #fff;
  width: 100%;
  padding: 13px 20px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  font-size: 1.6rem;
  border: 1px solid rgba(27, 34, 76, 0.5);
}
.p-contact__form .form-field input[type=text]::-moz-placeholder,
.p-contact__form .form-field input[type=tel]::-moz-placeholder,
.p-contact__form .form-field input[type=email]::-moz-placeholder,
.p-contact__form .form-field textarea::-moz-placeholder {
  color: #B4B4B4;
}
.p-contact__form .form-field input[type=text]:-ms-input-placeholder,
.p-contact__form .form-field input[type=tel]:-ms-input-placeholder,
.p-contact__form .form-field input[type=email]:-ms-input-placeholder,
.p-contact__form .form-field textarea:-ms-input-placeholder {
  color: #B4B4B4;
}
.p-contact__form .form-field input[type=text]::placeholder,
.p-contact__form .form-field input[type=tel]::placeholder,
.p-contact__form .form-field input[type=email]::placeholder,
.p-contact__form .form-field textarea::placeholder  {
  color: #B4B4B4;
}
.p-contact__form .form-field input:focus,
.p-contact__form .form-field select:focus {
  outline: none;
}
.p-contact__form .form-field select:invalid {
  color: #B4B4B4;
}
.p-contact__form .form-field select option:first-child {
  color: #B4B4B4;
}
.p-contact__form .form-field select option {
  color: #0084cc;
}
.p-contact__form .form-field.c-fBox {
  display: -ms-flexbox;
  display: flex;
}
.p-contact__form .form-field.c-fBox .item:first-child {
  margin-right: 20px;
}
.p-contact__form .form-field:not(:last-child) {
  margin-bottom: 13px;
}
.p-contact__form .form-field.has-select {
  position: relative;
  margin-bottom: 10px;
}
.p-contact__form .form-field.has-select::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #B4B4B4;
  line-height: 1;
  width: 10px;
  height: 10px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  -ms-transform: translateY(-50%) rotate(135deg);
      transform: translateY(-50%) rotate(135deg);
  position: absolute;
  top: 50%;
  right: 18px;
}
.p-contact__form .submitBtn {
  width: 100%;
  height: 50px;
  margin: 25px auto 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  color: #fff;
  font-weight: 700;
  background-color: #00ACBA;
  border-radius: 5px;
  font-size: 1.6rem;
  transition: opacity 0.3s ease;
}
.p-contact__form .submitBtn:hover {
  opacity: 0.7;
}
.p-contact__form .note {
  text-align: center;
  font-size: 1.6rem;
  margin-top: 15px;
  font-weight: 700;
  line-height: 1.68;
}

.p-contact__policy {
  font-size: 1.2rem;
  margin-top: 10px;
  line-height: 1;
}
.p-contact__policy a {
  display: inline-block;
  line-height: 1;
  color: #00ACBA;
  text-decoration: underline;
}
.p-contact__policy a:hover {
  opacity: 0.7;
}

.p-contact__check {
  margin-top: 26px;
}
.p-contact__check input[type=checkbox] {
  display: none;
}
.p-contact__check .check__txt {
  position: relative;
  font-size: 1.6rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.p-contact__check .check__txt::before {
  content: "";
  display: block;
  background-color: #fff;
  width: 20px;
  height: 20px;
  border: 1px solid #0084cc;
  margin-right: 15px;
}
.p-contact__check input[type=checkbox]:checked + .check__txt::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 7px;
  width: 7px;
  height: 12px;
  -ms-transform: rotate(40deg);
      transform: rotate(40deg);
  border-bottom: 2px solid #0084cc;
  border-right: 2px solid #0084cc;
}

@media screen and (max-width: 840px) {
  .p-contact__form .form-field input[type=text],
  .p-contact__form .form-field input[type=tel],
  .p-contact__form .form-field input[type=email],
  .p-contact__form .form-field select {
    padding: 14px 16px;
  }
  .p-contact__form .form-field.c-fBox .item:first-child {
    margin-right: 15px;
  }
}
/* ---- mainvisual ---- */
.p-mv {
  width: 100%;
  position: relative;
  margin-top: 80px;
  padding-top: 80px;
  padding-bottom: 65px;
  background: url(../img/pixta_81336471_L.jpg) no-repeat left top/cover;
  color: #fff;
}
.p-mv input, .p-mv select {
  color: #000;
}
.p-contact {
  margin-top: 80px;
  padding-top: 80px;
  padding-bottom: 65px;
}

.p-mv__box {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin: 0 auto;
  position: relative;
  z-index: 9;
  width: calc(100% - 24px);
  max-width: 905px;
  margin: 0 auto;
}
.p-mv__box .p-mv__txt {
  width: 50%;
  margin-top: 40px;
  font-weight: 700;
  line-height: 1.35;
}
.p-mv__box .p-mv__txt .p-mv__title {
  font-size: 7rem;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 50px;
}
.p-mv__box .p-mv__txt .p-mv__subTtl {
  font-size: 3.2rem;
}
.p-mv .p-mv__contact {
  width: 300px;
}
.p-mv .p-mv__contact .contact_title {
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  margin-top: -0.25em;
}

@media screen and (max-width: 840px) {
  .p-mv {
    margin-top: 60px;
    padding-top: 60px;
    padding-bottom: 40px;
  }
  .p-mv__box {
    display: block;
  }
  .p-mv__box .p-mv__txt {
    width: 100%;
    margin-top: 0;
    text-align: center;
    margin-bottom: 40px;
  }
  .p-mv__box .p-mv__txt .p-mv__subTtl {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .p-mv__box .p-mv__txt .p-mv__title {
    font-size: 3.2rem;
  }
  .p-mv .p-mv__contact {
    width: 90%;
    max-width: 540px;
    margin: 0 auto;
  }
  .p-mv .p-mv__contact .contact_title {
    font-size: 2.2rem;
  }
}
/* ---- corporate ---- */
.p-corporate {
  padding: 50px 0 42px;
  border-bottom: 1px solid #B4B4B4;
}

.p-corporate__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.p-corporate__list li {
  max-width: 160px;
}
.p-corporate__list li:not(:last-child) {
  margin-right: 26px;
}

@media screen and (max-width: 840px) {
  .p-corporate {
    padding: 30px 0;
  }
  .p-corporate__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-corporate__list li {
    width: 31.8333333333%;
    max-width: 100%;
    margin-bottom: 8px;
  }
  .p-corporate__list li:not(:last-child) {
    margin-right: 0;
  }
  .p-corporate__list li:not(:nth-child(3n)) {
    margin-right: 2%;
  }
}
/* ---- problem ----- */
.p-problem {
  padding-top: 45px;
}
.p-problem .c-title {
  margin-bottom: 40px;
}
.p-problem .p-problem__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 90px;
}
.p-problem .p-problem__block .problem__item {
  width: 33.3333333333%;
  max-width: 290px;
}
.p-problem .p-problem__block .problem__item .item_img {
  max-width: 170px;
  margin: 0 auto 35px;
}
.p-problem .p-problem__block .problem__item .item_img img {
  border-radius: 50%;
  overflow: hidden;
}
.p-problem .p-problem__block .problem__item .item_text {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
.p-problem .p-problem__bottom {
  padding: 55px 0 45px;
  background-color: #0084cc;
  color: #fff;
  position: relative;
}
.p-problem .p-problem__bottom::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 30px solid transparent;
  border-left: 30px solid transparent;
  border-top: 30px solid #fff;
  border-bottom: 0;
  position: absolute;
  top: 0;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
}
.p-problem .p-problem__bottom .text {
  font-size: 3.6rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.38;
}

@media screen and (max-width: 840px) {
  .p-problem {
    padding-top: 60px;
  }
  .p-problem .p-problem__block {
    display: block;
    margin-bottom: 60px;
  }
  .p-problem .p-problem__block .problem__item {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .p-problem .p-problem__block .problem__item .item_img {
    margin: 0 auto 20px;
  }
  .p-problem .p-problem__block .problem__item:not(:last-child) {
    margin-bottom: 40px;
  }
  .p-problem .p-problem__bottom {
    padding: 50px 20px 40px;
  }
  .p-problem .p-problem__bottom::before {
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-top: 20px solid #fff;
    border-bottom: 0;
  }
  .p-problem .p-problem__bottom .text {
    font-size: 2.4rem;
  }
}
/* ---- feature ---- */
.p-feature {
  padding: 70px 0;
}
.p-feature .c-title {
  margin-bottom: 75px;
}
.p-feature .p-feature__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.p-feature .p-feature__item .item_text {
  width: 65%;
}
.p-feature .p-feature__item .item_text .feature_title {
  font-size: 2.6rem;
  font-weight: 700;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 25px;
}
.p-feature .p-feature__item .item_text .feature_title::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url("../img/icon_check.svg") no-repeat left top/100%;
  margin-right: 10px;
}
.p-feature .p-feature__item .item_text .desc {
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.7;
}
.p-feature .p-feature__item .item_img {
  width: 27.8%;
  max-width: 250px;
}
.p-feature .p-feature__item:not(:last-of-type) {
  margin-bottom: 60px;
}

@media screen and (max-width: 840px) {
  .p-feature {
    padding: 60px 0;
  }
  .p-feature .c-title {
    margin-bottom: 40px;
  }
  .p-feature .p-feature__item {
    display: block;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
  }
  .p-feature .p-feature__item .item_text {
    width: 100%;
    margin-bottom: 10px;
  }
  .p-feature .p-feature__item .item_text .feature_title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .p-feature .p-feature__item .item_text .feature_title::before {
    width: 26px;
    height: 26px;
  }
  .p-feature .p-feature__item .item_text .desc {
    font-size: 1.6rem;
  }
  .p-feature .p-feature__item .item_img {
    width: 100%;
    max-width: 100%;
  }
  .p-feature .p-feature__item .item_img img {
    width: 100%;
  }
  .p-feature .p-feature__item:not(:last-of-type) {
    margin-bottom: 50px;
  }
}
/* ---- CTA ---- */
.p-cta {
  background: url("../img/cta.jpg") no-repeat left bottom/cover;
  padding: 80px 0 70px;
  color: #fff;
}
.p-cta a {
  color: #fff;
}
.p-cta .c-title {
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 30px;
}
.p-cta .c-btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  max-width: 300px;
  height: 60px;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  background-color: #00ACBA;
  margin: 0 auto 20px;
  transition: 0.3s ease all;
}
.p-cta .c-btn:hover {
  opacity: 0.7;
}
.p-cta .u-center {
  text-align: center;
}
.p-cta .c-link {
  font-size: 1.6rem;
  text-decoration: underline;
}

@media screen and (max-width: 840px) {
  .p-cta {
    padding: 40px 16px;
  }
  .p-cta .c-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
}
/* ---- case ---- */
.p-case {
  padding-top: 75px;
}
.p-case .c-title {
  margin-bottom: 38px;
}
.p-case .p-case__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 60px;
}
.p-case .p-case__block .case__item {
  width: 50%;
}
.p-case .p-case__block .case__item:not(:nth-child(3n)) {
  margin-right: 30px;
}
.p-case .p-case__block .name {
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.p-case .p-case__block .item_img {
  margin-bottom: 15px;
}
.p-case .p-case__block .title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.7;
}
.p-case .p-case__block .category {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.p-case .p-case__block .category li {
  background-color: #F8F8F8;
  font-size: 1.6rem;
  padding: 5px 10px;
}
.p-case .p-case__block .category li:not(:last-child) {
  margin-right: 8px;
}
.p-case .p-case__block .desc {
  font-size: 1.6rem;
  line-height: 1.68;
}
.p-case .p-corporate__list {
  margin-bottom: 80px;
}
.p-case .p-case__bottom {
  background-color: #F8F8F8;
  padding: 40px 16px 35px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.p-case .p-case__bottom .text {
  font-size: 2.6rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 25px;
}
.p-case .p-case__bottom .c-btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  max-width: 300px;
  height: 60px;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 700;
  border-radius: 5px;
  background-color: #0084cc;
  margin: 0 auto 20px;
  transition: 0.3s ease all;
}
.p-case .p-case__bottom .c-btn:hover {
  opacity: 0.7;
}
.p-case .p-case__bottom .u-center {
  text-align: center;
}
.p-case .p-case__bottom .c-link {
  font-size: 1.6rem;
  text-decoration: underline;
}

@media screen and (max-width: 840px) {
  .p-case {
    padding-top: 60px;
  }
  .p-case .c-title {
    margin-bottom: 40px;
  }
  .p-case .p-case__block {
    display: block;
  }
  .p-case .p-case__block .case__item {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
  }
  .p-case .p-case__block .case__item:not(:nth-child(3n)) {
    margin-right: auto;
  }
  .p-case .p-case__block .case__item:not(:last-child) {
    margin-bottom: 60px;
  }
  .p-case .p-case__block .title {
    margin-bottom: 15px;
  }
  .p-case .p-case__block .category {
    margin-bottom: 15px;
  }
  .p-case .p-case__block .category li {
    font-size: 1.4rem;
  }
  .p-case .p-case__block .desc {
    font-size: 1.4rem;
  }
  .p-case .p-case__bottom {
    padding: 40px 16px;
  }
  .p-case .p-case__bottom .text {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
}
/* ---- flow ---- */
.p-flow {
  padding-top: 70px;
}
.p-flow .c-title {
  margin-bottom: 50px;
}
.p-flow .p-flow__item {
  background-color: #F8F8F8;
  padding: 15px 38px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
}
.p-flow .p-flow__item:not(:last-child) {
  margin-bottom: 47px;
}
.p-flow .p-flow__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-top: 18px solid #0084cc;
  border-bottom: 0;
  position: absolute;
  bottom: -32px;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
}
.p-flow .p-flow__item .title {
  font-size: 2.5rem;
  font-weight: 700;
  width: 22%;
  line-height: 1.36;
}
.p-flow .p-flow__item .desc {
  font-size: 1.6rem;
  width: 78%;
}

@media screen and (max-width: 840px) {
  .p-flow {
    padding-top: 60px;
  }
  .p-flow .c-title {
    margin-bottom: 40px;
  }
  .p-flow .p-flow__item {
    padding: 20px;
    display: block;
  }
  .p-flow .p-flow__item:not(:last-child) {
    margin-bottom: 40px;
  }
  .p-flow .p-flow__item:not(:last-child)::after {
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-top: 15px solid #0084cc;
    bottom: -28px;
  }
  .p-flow .p-flow__item .title {
    font-size: 2rem;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .p-flow .p-flow__item .desc {
    font-size: 1.4rem;
    width: 100%;
  }
}
/* ----- faq ----- */
.p-faq {
  padding: 75px 0;
}
.p-faq .c-title {
  margin-bottom: 25px;
}

.p-acc {
  margin-bottom: 15px;
  border-top: 1px solid #0084cc;
  padding: 24px 0;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
}
.p-acc:last-child {
  border-bottom: 1px solid #0084cc;
}
.p-acc::after {
  content: "+";
  font-size: 4rem;
  line-height: 0.8;
  position: absolute;
  top: 20px;
  right: 16px;
  color: #0084cc;
}
.p-acc.is-open::after {
  content: "−";
}

.p-acc .acc__title {
  font-size: 1.6rem;
  position: relative;
  transition: 0.3s ease all;
  padding-right: 50px;
}

.p-acc .acc_container {
  display: none;
  background-color: #F8F8F8;
  padding: 20px 26px;
  margin-top: 18px;
}

.p-acc .acc_container p {
  margin: 0;
  padding: 0;
  position: relative;
  font-size: 1.6rem;
}

.p-acc .acc_container p a {
  color: #3e82df;
}

.p-acc .acc_container p a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 840px) {
  .p-faq {
    padding: 60px 0;
  }
  .p-faq .c-title {
    margin-bottom: 40px;
  }
  .p-acc {
    padding: 24px 0;
  }
  .p-acc::after {
    font-size: 2.8rem;
    top: 24px;
    right: 10px;
  }
  .p-acc .acc_container {
    padding: 20px;
  }
  .p-acc .acc_container p {
    font-size: 1.4rem;
  }
}
/* ----- request ----- */
.p-request {
  padding: 75px 0 45px;
  background-color: rgba(213, 213, 213, 0.13);
}
.p-request .c-title {
  margin-bottom: 40px;
  border-bottom: 1px solid #B4B4B4;
  padding-bottom: 35px;
}
.p-request .p-request__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.p-request .p-request__block .p-contact__form {
  width: 300px;
  margin: 0;
}
.p-request .p-request__block .p-contact__form .contact_title {
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.p-request .p-request__block .p-request__recommend {
  width: 61.2%;
}
.p-request .p-request__block .p-request__recommend .title {
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  margin-top: -0.25em;
}
.p-request .p-request__block .p-request__recommend .item_img {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  position: relative;
  margin-bottom: 74px;
}
.p-request .p-request__block .p-request__recommend .item_img figure {
  width: 250px;
}
.p-request .p-request__block .p-request__recommend .item_img figure:first-child {
  -ms-transform: translate(-35px, 0);
      transform: translate(-35px, 0);
}
.p-request .p-request__block .p-request__recommend .item_img figure:last-child {
  -ms-transform: translate(40px, 40px);
      transform: translate(40px, 40px);
}
.p-request .p-request__block .p-request__recommend .recommend_box {
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #eee;
  padding: 24px 25px;
}
.p-request .p-request__block .p-request__recommend .recommend_box p {
  font-size: 1.8rem;
  color: #00ACBA;
  font-weight: 700;
  margin-bottom: 5px;
  margin-top: -0.25em;
}
.p-request .p-request__block .p-request__recommend .recommend_box .list {
  font-size: 1.8rem;
  color: #0084cc;
}
.p-request .p-request__block .p-request__recommend .recommend_box .list li {
  font-weight: 700;
  text-indent: -10px;
  padding-left: 16px;
}
.p-request .p-request__block .p-request__recommend .recommend_box .list li:not(:last-child) {
  margin-bottom: 4px;
}
.p-request .p-request__block .p-request__recommend .recommend_box .list li::before {
  content: "・";
  color: #00ACBA;
  display: inline-block;
  margin-right: 5px;
}

@media screen and (max-width: 840px) {
  .p-request {
    padding: 60px 0;
  }
  .p-request .c-title {
    padding-bottom: 25px;
  }
  .p-request .p-request__block {
    display: block;
  }
  .p-request .p-request__block .p-contact__form {
    width: 90%;
    max-width: 540px;
    margin: 0 auto;
  }
  .p-request .p-request__block .p-request__recommend {
    width: 100%;
    margin-bottom: 40px;
  }
  .p-request .p-request__block .p-request__recommend .title {
    font-size: 2.2rem;
  }
  .p-request .p-request__block .p-request__recommend .recommend_box {
    padding: 24px 20px 20px;
  }
  .p-request .p-request__block .p-request__recommend .recommend_box p {
    font-size: 1.6rem;
  }
  .p-request .p-request__block .p-request__recommend .recommend_box .list {
    font-size: 1.6rem;
  }
  .p-request .p-request__block .p-request__recommend .recommend_box .list li:not(:last-child) {
    margin-bottom: 4px;
  }
  .p-request .p-request__block .p-request__recommend .recommend_box .list li::before {
    margin-right: 2px;
  }
}