@charset "utf-8";
/* CSS Document */
html {
  font-size: 16px;
}
body {
  color: #070707;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  overflow-x: hidden;
  line-break: strict;
}
.roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: bold;
}
img {
  width: 100%;
  height: auto;
}
.flex {
  display: flex;
}
.flex-j-between {
  justify-content: space-between;
}
.flex-a-ctr {
  align-items: center;
}
.text_color {
  color: #005bab;
}
.text_weight-b {
  font-weight: 700;
}
.sp {
  display: none;
}
.bg_color {
  background-color: #f2f6fa;
}
.pa_inner {
  padding: 100px 0;
}
.s_inner {
  width: min(1070px, 90%);
  margin: 0 auto;
}
.m_inner {
  width: min(1160px, 90%);
  margin: 0 auto;
}
.text_space {
  display: inline-block;
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 3.720vw;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .text_space {
    margin-top: 20px;
  }
}
/* ==========================
          header
========================== */
.inner {
  width: 90%;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
}
.header > .inner {
  width: 100%;
  max-width: 100%;
  height: 100%;
  padding-left: 3.5rem;
}
.header {
  font-weight: 500;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 5rem;
  background-color: #fff;
  z-index: 9999;
  transition: all 0.4s ease-out;
}
.header_logo a {
  display: inline-block;
}
.header_logo a img {
  width: 192px;
  height: 38px;
}
.gnav_tel a {
  display: inline-flex;
}
.gnav_tel a {
  flex-direction: column;
}
.gnav_tel .hours {
  font-size: 14px;
  font-weight: 400;
}
.gnav_tel .num {
  color: #005bab;
  font-size: 23px;
}
.gnav_tel .hours_span {
  margin-left: 0.5rem;
}
.btn a {
  position: relative;
  z-index: 1;
  display: block;
  border-radius: 84px;
  min-width: min(17.5rem, 100%);
  color: #fff;
  background: #ed2e34;
  width: 100%;
}
.gnav_menu {
  gap: 20px;
}
.gnav_btn {
  display: none;
}
.time {
  margin-left: 4px;
  font-size: 15px;
}
.tel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}
.tel::before {
  content: "";
  display: block;
  background: url("../image/tel_icon.png")no-repeat;
  background-size: 100%;
  width: 14px;
  height: 20px;
}
.gnav .cta_tel a {
  align-items: flex-start;
}
.gnav_cta {
  align-items: center;
  margin-right: 2.3rem;
  gap: 1rem;
}
.gnav .gnav_contact {
  width: 215px;
  height: 45px;
}
.contact_span {
  margin: 0 -3px 0 -4px;
}
#overlay {
  width: 100%;
}
@keyframes fadeInText {
  to {
    opacity: 1;
  }
}
@keyframes underlineGrow {
  to {
    transform: scaleX(1);
  }
}
@keyframes fade_nav {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@media screen and (min-width: 1380px) {
  .gnav, .gnav ul, .gnav li, .gnav a {
    height: 100%;
  }
  .gnav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 2.5rem;
  }
  .gnav a {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 1380px) {
  .header {
    height: 4.5714285714rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
  }
  .header_logo a img {
    width: 10.125rem;
    height: auto;
  }
  .header > .inner {
    padding-left: 18px;
  }
  .gnav_btn, .tel_btn {
    position: fixed;
    top: 0;
    right: 0;
    width: 4.5714285714rem;
    height: 4.5714285714rem;
    border-left: 1px solid #e7e5e4;
    cursor: pointer;
    z-index: 9999;
    justify-content: center;
  }
  .gnav_btn {
    display: flex;
  }
  .gnav_btn-lines span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #005bab;
    transition: all 0.4s ease-out;
  }
  .gnav_btn-lines {
    position: relative;
    width: 1.7142857143rem;
    height: 1.1428571429rem;
  }
  .gnav_btn-lines span:nth-of-type(1) {
    transform: translateY(0px) rotate(0deg);
  }
  .gnav_btn-lines span:nth-of-type(2) {
    transform: translateY(8px) rotate(0deg);
    opacity: 1;
  }
  .gnav_btn-lines span:nth-of-type(3) {
    transform: translateY(16px) rotate(0deg);
  }
  .gnav_btn-lines.active span:nth-of-type(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .gnav_btn-lines.active span:nth-of-type(2) {
    opacity: 0;
    transform: translateY(8px) rotate(0deg);
  }
  .gnav_btn-lines.active span:nth-of-type(3) {
    transform: translateY(8px) rotate(-45deg);
  }
  #overlay {
    display: none;
    width: 100%;
    height: 100%;
    text-align: left;
    position: fixed;
    top: 4.5714285714rem;
    right: 0;
    overflow-y: scroll;
    background: #f2f6fa;
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity .3s, transform .3s;
    z-index: 1;
  }
  #overlay.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
    z-index: 9998;
  }
  .gnav ul li a {
    position: relative;
    transition: opacity .3s, transform .3s;
  }
  .gnav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #005bab;
  }
  .gnav.active ul li a::after {
    animation: underlineGrow 0.6s ease forwards;
    transform: scaleX(0);
    transform-origin: left;
    animation-delay: 0.8s;
  }
  .gnav_menu {
    display: block;
  }
  .gnav_cta {
    display: none;
  }
  .gnav--link {
    display: block;
    padding: 2rem 1rem 1rem;
    width: 100%;
  }
  .gnav_contact a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .overlay_inner {
    max-width: calc(220px + 10vw);
    margin: auto;
    opacity: 0;
    padding: 10vw 0 0;
    transform: translateX(-20px);
  }
  .overlay_inner.active {
    animation: fade_nav 1s ease 0.4s 1 forwards;
  }
}
@media screen and (max-width: 767px) {
  .gnav_cta {
    margin-right: 0;
  }
}
/* ==========================
           KV
========================== */
.kv {
  background: url("../image/kv.jpg")no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 5rem;
  width: 100%;
  height: 66vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.kv_content {
  width: min(842px, 96%);
  padding: 66px 0;
  margin: 0 auto;
}
.kv_items {
  margin-top: 40px;
}
.kv_text {
  text-align: center;
}
.kv_text img {
  width: min(707px, 96%);
}
.kv_items .kv_item-list {
  width: 260px;
}
.common_cta-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(856px, 79%);
  height: 25vh;
  margin: 0 auto;
}
.common_cta-btn p {
  font-size: 1.85rem;
  text-align: center;
}
.common_cta-btn-items {
  margin-top: 28px;
}
.common_cta {
  width: 417px;
  height: 91px;
}
.common_cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 84px;
  min-width: min(17.5rem, 100%);
  width: 100%;
  height: 100%;
}
.common_cta-tel a {
  color: #0060b1;
  font-size: 2.125rem;
  border: 2px solid #0060b1;
  background-color: #fff;
}
.common_cta-tel .hours {
  display: block;
  font-size: 14px;
}
.common_cta-tel .tel_no {
  display: flex;
  align-items: center;
}
.common_cta-tel img {
  width: 40px;
  margin-right: 12px;
}
.common_cta-contact a {
  color: #fff;
  font-size: 1.625rem;
  font-weight: 500;
  background: #ed2e34;
}
.common_cta-contact a:hover, .common_cta-tel a:hover, .gnav a:hover {
  opacity: 0.7;
}
.common_cta-contact img {
  width: 31px;
  margin-top: 6px;
  margin-right: 12px;
}
.common_cta-contact .contact_span {
  margin: 0 -6px 0 -9px;
}
@media screen and (max-width: 1380px) {
  .kv {
    background: url(../image/kv_sp.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: 4.5714285714rem;
    height: 72vh;
  }
  .kv_content {
    padding: 0;
  }
  .kv_items {
    width: 86%;
    margin: 34px auto 0;
    gap: 6px;
  }
  .kv_items .kv_item-list {
    width: 78%;
  }
  .common_cta-btn-items {
    flex-direction: column-reverse;
    gap: 12px;
  }
  .common_cta-inner {
    height: auto;
    margin: 14px auto 16px;
  }
  .common_cta-tel a {
    font-size: 1.8rem;
  }
  .common_cta {
    width: 100%;
    height: 70px;
  }
  .common_cta-tel .hours {
    font-size: 12px;
  }
  .time {
    font-size: 13px;
  }
  .common_cta-contact a {
    font-size: 1.321rem;
  }
  .common_cta-btn-items {
    margin-top: 18px;
  }
  .common_cta-btn p {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 600px) {
  .kv {
    height: 54vh;
  }
}
@media screen and (max-width: 320px) {
  .common_cta-inner {
    height: auto;
    margin-top: 10px;
  }
  .common_cta-btn-items {
    margin-top: 14px;
  }
  .kv_items {
    margin: 17px auto 0;
  }
  .common_cta {
    height: 60px;
  }
}
/* ==========================
          お悩み
========================== */
.issue {
  background-color: #ececec;
}
.issue_content {
  align-items: flex-end;
  justify-content: space-between;
  width: 905px;
  margin: auto;
}
.issue_text .title {
  font-size: 2.375rem;
  margin-bottom: 4.125rem;
}
.issue_text .title span {
  font-size: 3.5rem;
}
.issue_text .text {
  display: inline-flex;
  font-size: 1.25rem;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}
.issue_text .text li {
  display: inline-flex;
  align-items: center;
  background-color: #fff;
  border-radius: 3px;
  padding: 19px 0 19px 21px;
  width: 760px;
}
.issue_text .text li::before {
  display: block;
  content: "";
  background: url("../image/issue-text_icon.png")no-repeat;
  background-size: 100%;
  width: 38px;
  height: 28px;
  margin-right: 14px;
}
.issue_icon {
  margin-bottom: -34px;
}
.issue_text .text .text_color {
  display: contents;
}
.title_sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .issue {
    padding: 60px 0;
  }
  .issue_content {
    width: 94%;
  }
  .issue_text .text li {
    line-height: 1.6;
    padding: 19px 21px 19px 21px;
    width: 100%;
  }
  .issue_icon {
    margin-right: 20px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .issue_text .title, .issue_icon {
    display: none;
  }
  .issue_text .text {
    font-size: 1.07rem;
  }
  .issue_text .text li::before {
    width: 33px;
    height: 24px;
    margin-right: 14px;
    flex: none;
  }
  .issue_text .text .text_color {
    font-weight: bold;
  }
  .title_sp {
    display: block;
    width: 80%;
    margin: 0 auto 30px;
  }
}
/* ==========================
          　解決
========================== */
.emphasis {
  background: url("../image/b_bg.jpg")no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.emphasis::before {
  display: block;
  content: "";
  border-right: 76px solid transparent;
  border-left: 76px solid transparent;
  border-top: 58px solid #ececec;
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
}
.point_text {
  color: #fff;
  font-size: 2.81rem;
  text-align: center;
  line-height: 1.3;
  padding: 106px 0 80px;
}
.point_text span {
  font-size: 1.88rem;
}
@media screen and (max-width: 767px) {
  .point_text span {
    font-size: 1.1rem;
  }
  .point_text {
    font-size: 1.6rem;
    line-height: 1.4;
    padding: 2.9rem 0 2.3rem;
  }
  .emphasis::before {
    border-right: 32px solid transparent;
    border-left: 32px solid transparent;
    border-top: 31px solid #ececec;
  }
  .point_text .point_span {
    font-size: 1.7rem;
    margin-left: -4px;
  }
}
/* ==========================
        選ばれる理由
========================== */
.common_title {
  font-size: 1.88rem;
  text-align: center;
  line-height: 1.4;
}
.common_title span {
  display: block;
  font-size: 2.81rem;
}
.reason_inner {
  width: min(1070px, 90%);
  margin: 100px auto 0;
}
.reason_list-item {
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0px 5px 13px 0px rgba(16, 17, 17, 0.1);
  position: relative;
}
.reason_list-item::before {
  display: block;
  content: "";
  background: url("../image/reason-no_01.png")no-repeat;
  background-size: 100%;
  width: 80px;
  height: 66px;
  position: absolute;
  top: -37px;
  left: 28px;
}
.reason_list-item-02::before {
  background: url("../image/reason-no_02.png")no-repeat;
  background-size: 100%;
  width: 96px;
  height: 66px;
}
.reason_list-item-03::before {
  background: url("../image/reason-no_03.png")no-repeat;
  background-size: 100%;
  width: 89px;
  height: 61px;
}
.reason_list-item-04::before {
  background: url("../image/reason-no_04.png")no-repeat;
  background-size: 100%;
  width: 89px;
  height: 61px;
}
.reason_list-item .text_box {
  margin: 54px 0 0 28px;
}
.text_box .title {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.6;
}
.reason_list-item .img {
  width: 392px;
}
.line {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.line::after {
  display: inline-block;
  content: "";
  background-color: #fee223;
  width: 100%;
  height: 11px;
  position: absolute;
  left: 0;
  bottom: 5px;
  z-index: -1;
}
.text_box .text {
  line-height: 1.78;
  margin-top: 18px;
}
.reason_list-item-02, .reason_list-flex {
  margin-top: 66px;
}
.reason_list-item-03, .reason_list-item-04 {
  width: min(515px, 100%);
}
.reason_list-flex .text_box {
  margin: 45px 0 30px;
}
.reason_list-flex .title, .reason_list-flex .text {
  margin: 0 28px;
}
.reason_list-flex .title {
  margin-bottom: 30px;
}
.reason_list-flex .text {
  margin-top: 30px;
}
.reason_list-flex .img {
  width: 100%;
}
@media (min-width: 1076px) {
  .reason_list-item {
    flex-direction: row;
  }
}
@media (max-width: 1076px) {
  .reason_list-item {
    display: inline-flex;
    flex-direction: column;
    width: 100%;
  }
  .common_title {
    font-size: 1.3rem;
  }
  .common_title span {
    font-size: 1.9rem;
  }
  .reason_inner {
    margin: 80px auto 0;
  }
  .reason_list-item .img {
    width: 100%;
  }
  .reason {
    padding: 60px 0;
  }
  .reason_list-item .text_box, .reason_list-flex .text_box {
    margin: 40px 0;
  }
  .text_box .title, .text_box .text {
    margin: 0 1rem;
  }
  .text_box .title {
    margin-bottom: 1rem;
  }
  .text_box .text {
    font-size: 1rem;
    margin-top: 1em;
  }
  .reason_list-item::before {
    width: 73px;
    height: 55px;
    top: -28px;
    left: 1rem;
  }
  .reason_list-item-01::before {
    width: 60px;
    height: 50px;
  }
  .text_box .title {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.8;
  }
  .line::after {
    height: 8px;
  }
  .reason_list-flex {
    flex-direction: column;
    gap: 66px;
  }
}
/* ==========================
          事例紹介
========================== */
.examples .title {
  font-size: 2.81rem;
  text-align: center;
}
.examples .img {
  width: min(651px, 84%);
  margin: 72px auto 0;
}
.slide {
  transform: scale(.8);
  transition: transform 0.5s ease, opacity 0.5s ease;
  border-radius: 3px;
  box-shadow: 0px 0px 27px 0px rgba(16, 17, 17, 0.07);
  width: 1000px;
  padding: 58px;
  margin: 68px auto;
}
.slide.slick-center {
  transform: scale(1);
}
.slider .title {
  display: flex;
  align-items: center;
  font-size: 1.75rem;
  font-weight: 500;
  text-align: left;
  border-bottom: 2px solid #005bab;
  padding-bottom: 26px;
  margin-bottom: 38px;
  gap: 12px;
}
.slider .title::before {
  display: block;
  content: "";
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 15px solid #005bab;
  margin-top: 2px;
}
.slider .img {
  width: 460px;
  margin: 0;
}
.slider .text {
  width: 43%;
  line-height: 1.8;
}
.slick-dots li button:before {
  font-size: 17px !important;
}
.slick-dots li button:before {
  color: #a0a0a0 !important;
}
.slick-dots li.slick-active button:before {
  color: #005bab !important;
}
.slick-dots {
  bottom: 0 !important;
}
@media (max-width: 1000px) {
  .examples {
    padding: 60px 0;
  }
  .slide .box {
    flex-direction: column;
  }
  .slide .title {
    align-items: flex-start;
    font-size: 1.75rem;
    line-height: 1.6;
    padding-bottom: 12px;
    margin-bottom: 20px;
  }
  .slide {
    width: 340px;
    padding: 20px;
    margin: 40px auto;
  }
  .slider .img {
    width: 100%;
    margin: 0 !important;
  }
  .slider .text {
    width: 100%;
    margin-top: 10px;
  }
  .slider .title::before {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .examples .title {
    font-size: 2rem;
  }
  .examples .img {
    margin: 40px auto 0;
  }
  .slide .title {
    font-size: 1.2rem;
  }
}
/* ==========================
          回収品例
========================== */
.collection_items {
  flex-wrap: wrap;
  margin-top: 100px;
}
.collection_items .box {
  width: 524px;
}
.collection_items .box:nth-child(3), .collection_items .box:nth-child(4) {
  margin-top: 60px;
}
.collection_items .box .title {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 500;
  text-align: center;
  background-color: #0962b0;
  border-radius: 3px 3px 0 0;
  padding: 23px 0;
}
.collection_items .box .text {
  line-height: 1.5;
  text-align: center;
  background-color: #fff;
  border-radius: 0 0 3px 3px;
  padding: 22px 10px;
}
.collection_items .box .img {
  position: relative;
}
.collection_items .box .img::before {
  display: block;
  content: "";
  border-right: 24px solid transparent;
  border-left: 24px solid transparent;
  border-top: 15px solid #0962b0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.attention {
  font-size: 14px;
  font-weight: 500;
  margin-top: 24px;
}
.slick-prev, .slick-next {
  display: none !important;
}
@media (max-width: 1090px) {
  .collection {
    padding: 60px 0;
  }
  .collection_items {
    margin-top: 60px;
  }
  .collection_items .box:nth-child(2), .collection_items .box:nth-child(3), .collection_items .box:nth-child(4) {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .collection_items .box .title {
    font-size: 1.4rem;
    padding: 18px 0;
  }
  .attention_span {
    display: block;
    margin-left: 1em;
  }
}
.value {
  position: relative;
  align-items: center;
  background-color: #fff;
  border: 2px solid #dddddd;
  border-radius: 16px;
  width: min(850px, 90%);
  padding: 57px 40px 37px;
  margin: 166px auto 0;
  gap: 3vw;
}
.value::before {
  content: "";
  display: block;
  background: url("../image/value.png")no-repeat;
  background-size: 100%;
  width: 703px;
  height: 62px;
  position: absolute;
  top: -37px;
  left: 50%;
  transform: translateX(-50%);
}
.value .img {
  width: 224px;
}
.value .text {
  flex: 1;
  line-height: 1.8;
  font-weight: 500;
}
.value .text_space {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .value {
    flex-direction: column-reverse;
    padding: 60px 40px;
    margin: 126px auto 0;
    gap: 12vw;
  }
  .value::before {
    content: "";
    display: block;
    background: url("../image/value_sp.png")no-repeat;
    background-size: 100%;
    width: 81%;
    height: 93px;
    top: -41px;
  }
  .attention {
    font-weight: 400;
    line-height: 1.5;
  }
}
/* ==========================
          料金表
========================== */
.price_list .common_title .title_span {
  display: inline-block;
  font-size: 2.6rem;
}
.price_list .tablebox {
  width: min(1175px, 100%);
  margin: 100px auto 0;
}
.price_list .attention {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 6px;
}
@media (max-width: 767px) {
  .price_list .tablebox {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    margin-top: 60px;
  }
  .scroll-content {
    display: inline-block;
  }
  .tablebox img {
    width: 180%;
    display: block;
    max-width: none;
  }
  .pa_inner {
    padding: 60px 0;
  }
  .price_list .common_title .title_span {
    font-size: 2rem;
  }
  .price_list .attention {
    font-size: 14px;
  }
}
/* ==========================
          CTA
========================== */
.cta::before {
  display: none;
}
.cta_pa {
  padding: 60px 0;
  height: auto;
}
.cta .title {
  color: #fff;
  font-size: 2.25rem;
  line-height: 1.78;
}
.cta .common_cta-btn-items {
  margin-top: 58px;
}
@media (max-width: 767px) {
  .cta .title {
    color: #fff;
    font-size: 1.5rem;
  }
  .cta_pa {
    padding: 52px 0 60px;
    margin: 0 auto;
    width: 90%;
  }
  .cta .common_cta-btn-items {
    margin-top: 40px;
  }
}
/* ==========================
          流れ
========================== */
.flow_top {
  margin-top: 60px;
}
.flow_items {
  flex-wrap: wrap;
  counter-reset: num;
}
.flow_items .box {
  width: 254px;
  position: relative;
  margin-top: 140px;
}
.flow_items .box::before {
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  counter-increment: num;
  content: counter(num)"";
  font-size: 24px;
  font-weight: 600;
  background-color: #0962b0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  position: absolute;
  top: -67px;
  left: 50%;
  transform: translateX(-50%);
}
.flow_items .box::after {
  display: block;
  content: "";
  background-color: #0962b0;
  width: 218px;
  height: 2px;
  position: absolute;
  top: -46px;
  right: -131px;
}
.flow_items .box_05 .title::after {
  display: block;
  content: "";
  background-color: #0962b0;
  width: 218px;
  height: 2px;
  position: absolute;
  top: -46px;
  left: -131px;
}
.flow_items .box_last::before, .flow_items .box_last::after, .flow_items .box_ll::after {
  display: none;
}
.flow_items .box .title {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 33px;
}
.flow_items .box .text {
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
  margin-top: 28px;
}
.flow_items .box .line::after {
  bottom: -4px;
}
@media (max-width: 1200px) {
  .flow_top {
    margin-top: 60px;
  }
  .flow_items .box {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    position: relative;
    margin-top: 60px;
    padding-left: 50px;
    height: 144px;
    gap: 20px;
  }
  .flow_items .box::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -4px;
    left: 0;
    transform: none;
  }
  .flow_items .box::after {
    width: 2px;
    height: 149px;
    position: absolute;
    top: 46px;
    right: 0;
    left: 18px;
  }
  .flow_items .box_05 .title::after {
    display: none;
  }
  .flow_items .box .img {
    width: 20%;
  }
  .flow_items .box .text {
    font-size: 1rem;
    text-align: left;
    margin-top: 0;
  }
  .flow_items .box .title {
    text-align: left;
    margin-bottom: 33px;
    width: 240px;
  }
  .flow_items .box_last::before, .flow_items .box_last::after, .flow_items .box_ll::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .flow_top {
    padding-left: 20px;
    margin-top: 20px;
  }
  .flow_items .box {
    flex-direction: column;
    padding-left: 60px;
    margin-top: 40px;
    height: auto;
  }
  .flow_items .box .title {
    margin-bottom: 6px;
    width: 240px;
  }
  .flow_items .box .img {
    width: 70%;
  }
  .flow_items .box::before {
    top: -8px;
  }
  .flow_items .box::after {
    height: 93%;
  }
  .flow_items .box .text {
    width: 74%;
  }
}
/* ==========================
          対応エリア
========================== */
.area {
  background: url("../image/area_bg.jpg")no-repeat;
  background-size: cover;
  background-position: center;
  padding: 120px 0 20px;
}
.area .title {
  width: 218px;
  margin: auto;
}
.area .area_items {
  flex-wrap: wrap;
  width: min(1070px, 90%);
  margin: 80px auto 0;
}
.area .area_items .text {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 500;
  width: min(260px, 49%);
  background-color: #d25555;
  border-radius: 3px;
  padding: 10px 0;
}
.area .area_items .text:nth-child(5), .area .area_items .text:nth-child(6), .area .area_items .text:nth-child(7), .area .area_items .text:nth-child(8) {
  margin-top: 24px;
}
.area .attention {
  font-weight: 500;
  text-align: right;
  width: min(1070px, 90%);
  margin: 120px auto 0;
}
@media (max-width: 1155px) {
  .area .area_items .text {
    margin-top: 14px;
  }
  .area .area_items .text:nth-child(5), .area .area_items .text:nth-child(6), .area .area_items .text:nth-child(7), .area .area_items .text:nth-child(8) {
    margin-top: 14px;
  }
}
@media (max-width: 767px) {
  .area {
    background: url("../image/area_bg-sp.jpg")no-repeat;
    background-size: cover;
    padding: 80px 0;
  }
  .area .area_items {
    margin: 40px auto 0;
  }
  .area .area_items .text {
    font-size: 1.4rem;
  }
  .area .attention {
    text-align: left;
    margin: 20px auto 0;
  }
  .area .title {
    width: 188px;
  }
}
/* ==========================
        よくある質問
========================== */
.faq {
  margin-top: 100px;
}
.faq-list_item {
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #0962b0;
  margin-bottom: 22px;
  cursor: pointer;
  transition: 0.4s ease;
}
.faq_question, .faq_answer {
  padding: 20px 40px 20px 24px;
  display: flex;
  align-items: flex-start;
  font-weight: 500;
  position: relative;
}
.faq_answer {
  background-color: #f6f6f6;
  border-radius: 0 0 4px 4px;
}
.faq_icon {
  width: 20px;
  margin-right: 20px;
  flex-shrink: 0;
}
.faq_text {
  flex: 1;
  line-height: 1.4;
}
.faq_toggle {
  position: absolute;
  top: 50%;
  right: 36px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
}
.faq_toggle span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 2px;
  background-color: #0962b0;
  transition: 0.4s ease;
}
.faq_toggle span:nth-child(2) {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}
.faq_question.active .faq_toggle span:nth-child(2) {
  transform: rotate(0deg);
}
.faq_answer {
  display: none;
}
.faq_question.active + .faq_answer {
  display: flex;
}
@media screen and (max-width: 767px) {
  .faq {
    margin-top: 60px;
  }
  .faq_title {
    font-size: 20px;
  }
  .faq_text {
    padding-right: 15px;
  }
}
/* ==========================
        お問い合わせ
========================== */
.contact {
  background: url("../image/contact_bg.jpg")no-repeat;
  background-size: cover;
  background-position: center;
}
.contact .common_title {
  color: #fff;
  font-size: 2.81rem;
}
@media screen and (max-width: 767px) {
  .contact {
    padding-bottom: 80px;
  }
}
/* ==========================
        会社概要
========================== */
.about_items {
  margin-top: 80px;
}
.about_items .box {
  display: flex;
  border-bottom: 1px solid #0962b0;
  font-size: 1.125rem;
  line-height: 1.7;
  padding-left: 26px;
}
.about_items .box p:nth-child(1) {
  color: #005bab;
  font-weight: 600;
  padding-left: 6px;
  width: 302px;
}
.about_items .box p {
  padding: 40px;
}
.about_items .box p:nth-child(2) {
  flex: 1;
}
.about_items .box span {
  font-size: 1rem;
}
@media only screen and (max-width: 1181px) {
  .about_items {
    margin-top: 40px;
  }
  .about_items .box {
    font-size: 1rem;
    flex-direction: column;
  }
  .about_items .box p:nth-child(1) {
    padding-bottom: 0;
  }
  .about_items .box p:nth-child(2) {
    padding-top: 10px;
  }
  .about_items .box p {
    padding: 20px;
  }
}
.copyright {
  color: #fff;
  font-size: 14px;
  text-align: center;
  background-color: #003673;
  padding: 24px 0;
}
@media only screen and (max-width: 767px) {
  .copyright {
    color: #fff;
    font-size: 12px;
    text-align: center;
    background-color: #003673;
    padding: 26px 0;
    margin-bottom: 67px;
  }
}
.floating {
  width: 100%;
  display: none
}
@media screen and (max-width: 768px) {
  .floating {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000
  }
  .floating__button {
    display: flex;
    align-items: flex-end;
  }
  .floating {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
    position: fixed;
    right: 20px;
    bottom: 0;
    z-index: 1000;
  }
  .floating.active {
    opacity: 1;
    transform: translateY(0);
  }
}