@charset "UTF-8";
html, body {
  min-height: 100vh;
  font-family: "Noto Sans JP", sans-serif;
  padding: 0;
  margin: 0;
  font-size: 1.66667vw;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  scroll-behavior: smooth;
}

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

ul li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
  transition: all 0.5s ease;
}
a:active, a:visited {
  text-decoration: none;
  color: #000;
  transition: all 0.5s ease;
}
a:hover {
  opacity: 0.6;
  transition: all 0.5s ease;
}

.pc {
  display: block;
}
@media screen and (max-width: 640px) and (max-width: 1000px) {
  .pc {
    display: none !important;
  }
}

.tab {
  display: none;
}
@media screen and (max-width: 768px) {
  .tab {
    display: block;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 640px) {
  .sp {
    display: inline-block !important;
  }
}

#wrapper {
  overflow: hidden;
  font-size: clamp(14px, 0.7rem, 16px);
}

/*共通ボタン設定*/
.btn01 {
  margin: 0 auto 1.3rem;
  width: 96%;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.btn01 a {
  display: flex;
  align-items: center;
  border: 1px solid #CCC;
  padding: 12px 12px 12px 15px;
  font-size: clamp(14px, 0.8rem, 15px);
  background: #FFF;
  line-height: 1;
}
.btn01 a::after {
  font-family: "Material Icons";
  content: "\e5cc";
  color: #0059b9;
  font-size: 24px;
}

.btn_link {
  font-size: 14px;
  text-align: center;
}
.btn_link a {
  display: flex;
  line-height: 1;
  justify-content: center;
  padding: 10px 0;
  margin: 0;
  background: #FFF;
}
.btn_link a::after {
  font-family: "Material Icons";
  content: "\e5cc";
  font-size: 22px;
  color: #0059b9;
  line-height: 0.8;
}

/*fixヘッダー*/
header {
  position: relative;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 0 13px;
  background-color: #FFF;
  box-sizing: border-box;
  /*　上に上がる動き　*/
  /*　下に下がる動き　*/
}
@media screen and (max-width: 480px) {
  header {
    height: 58px;
  }
}
header .inner {
  display: flex;
  align-items: center;
  height: 110px;
  justify-content: space-between;
  width: 98%;
  max-width: 1000px;
  margin: 0 auto;
  transition: all 0.5s;
  overflow: hidden;
}
@media screen and (max-width: 850px) {
  header .inner {
    height: 85px;
  }
}
header .inner .logo {
  display: block;
  margin: 0 auto 0 0;
  width: 40%;
  max-width: 400px;
}
header .inner .logo h1, header .inner .logo p {
  font-size: clamp(12px, 0.7rem, 14px);
  font-weight: 400;
  margin: 0 0 5px 0;
}
header .inner .logo img {
  width: 100%;
  height: auto;
}
header .inner .tel {
  font-size: 14px;
  text-align: center;
  max-width: 264px;
  width: 30%;
  font-weight: 600;
  margin: 0 1rem;
}
header .inner .tel a {
  display: block;
  padding: 0.2rem 0;
}
@media screen and (max-width: 850px) {
  header .inner .tel {
    display: none;
  }
}
header .inner .btn_contact {
  position: relative;
}
header .inner .btn_contact a {
  background: rgb(0, 173, 255);
  background: linear-gradient(180deg, rgb(0, 173, 255) 0%, rgb(67, 90, 220) 100%);
  border: 2px solid #FFF;
  border-radius: 10px;
  color: #FFF;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 15px 13px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  filter: drop-shadow(0px 2px 3px #999999);
}
header .inner .btn_contact a::before {
  font-family: "Material Icons";
  content: "\e158";
  font-size: 24px;
  color: #2e3192;
}
header .inner .btn_contact::before {
  content: "";
  background-image: url(../img/btn_contact_ico.svg);
  width: 83px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  z-index: 1;
  left: -11px;
  top: -14px;
}
@media screen and (max-width: 768px) {
  header .inner .logo {
    width: 55%;
    max-width: 100%;
  }
}
@media screen and (max-width: 640px) {
  header .inner {
    height: 65px;
    padding: 3px 0 2px 0;
  }
  header .inner .logo {
    width: 78%;
  }
  header .inner .btn_contact {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  header .inner {
    height: 56px;
    padding: 0;
  }
}
header.UpMove {
  animation: UpAnime_h 0.8s forwards;
  position: relative;
}
@keyframes UpAnime_h {
  from {
    opacity: 1;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
header.DownMove {
  animation: DownAnime_h 0.8s forwards;
  position: fixed;
  filter: drop-shadow(0px 1px 2px #CCC);
}
header.DownMove .inner {
  transition: all 0.5s;
}
@keyframes DownAnime_h {
  from {
    opacity: 1;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*ハンバーガーメニュー*/
.menu-btn {
  position: absolute;
  top: 5px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  display: none;
}
@media screen and (max-width: 640px) {
  .menu-btn {
    display: flex;
  }
}
.menu-btn span, .menu-btn span:before, .menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #CCC;
  position: absolute;
}
.menu-btn span:before {
  bottom: 8px;
}
.menu-btn span:after {
  top: 8px;
}
@media screen and (max-width: 480px) {
  .menu-btn {
    height: 46px;
    width: 46px;
  }
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
  background-color: #FFF;
}

#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: #FFF;
}

#menu-btn-checkfix:checked ~ .menu-btn.fix span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-checkfix:checked ~ .menu-btn.fix span::before {
  bottom: 0;
  transform: rotate(45deg);
  background-color: #FFF;
}

#menu-btn-checkfix:checked ~ .menu-btn.fix span::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: #FFF;
}

#menu-btn-check, #menu-btn-checkfix {
  display: none;
}

.menu-content {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 100%; /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #0059b9;
  transition: all 0.5s; /*アニメーション設定*/
  padding: 10rem 0 0 0;
}
.menu-content::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100vh;
  bottom: 0;
  left: 0;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
  background-repeat: repeat-x;
}
.menu-content .logo {
  width: 12%;
  max-width: 77px;
  margin: 0 auto;
  padding: 4% 0 0 0;
}
.menu-content .btnset {
  display: flex;
  align-items: center;
  width: 93%;
  margin: 0 auto;
  justify-content: space-evenly;
  padding: 2% 0;
  max-width: 600px;
}
.menu-content .btnset .m_logo {
  height: 4vh;
}
.menu-content .btnset .w_logo {
  height: 3vh;
}
@media screen and (max-width: 640px) {
  .menu-content .btnset {
    display: block;
  }
  .menu-content .btnset p {
    text-align: center;
    margin: 4% 0;
  }
  .menu-content .btnset .m_logo {
    height: 4.2vh;
  }
  .menu-content .btnset .w_logo {
    height: 3.2vh;
  }
}
.menu-content ul {
  padding: 40px 0 0;
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}
.menu-content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
  line-height: 1.4;
  position: relative;
  text-align: center;
  padding: 6px 0;
  display: flex;
  align-items: center;
}
.menu-content ul li span {
  border: 1px solid;
  line-height: 1;
  display: block;
  font-size: clamp(14px, 0.8rem, 16px);
  padding: 6px 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.menu-content ul li h3 {
  padding: 3% 0 2%;
  font-size: clamp(16px, 1.2rem, 28px);
}
.menu-content ul li p {
  font-size: clamp(12px, 0.7rem, 15px);
}
.menu-content ul li a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  color: #ffffff;
  padding: 10px;
  position: relative;
  font-size: clamp(14px, 1.6rem, 16px);
}
.menu-content ul li::after {
  font-family: "Material Icons";
  content: "\e409";
  font-size: clamp(14px, 1.2rem, 18px);
  color: #FFF;
}
@media screen and (max-width: 640px) {
  .menu-content ul {
    display: block;
  }
  .menu-content ul li {
    padding: 6px 0;
    line-height: 1;
  }
  .menu-content ul li span {
    margin: 0 10px 0 0;
  }
  .menu-content ul li a {
    display: flex;
    padding: 8px 0;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
  .menu-content ul li h3 {
    padding: 0;
  }
  .menu-content ul li p {
    width: 97%;
    text-align: right;
    padding: 1% 0 0;
  }
}
.menu-content .area {
  width: 90%;
  margin: 30px auto 20px auto;
}
.menu-content .area ul {
  padding: 0;
}
.menu-content .area h3 {
  margin: 10px auto;
  background: rgba(255, 255, 255, 0.2509803922);
  padding: 8px;
  box-sizing: border-box;
  color: #FFF;
  font-weight: 600;
  font-size: 15px;
}
.menu-content .area dl dt {
  padding: 7px;
  color: #FFF;
  background: rgba(0, 0, 0, 0.22);
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 0 20px;
}
.menu-content .area dl dd ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  width: 100%;
  margin: 0 0 0 20px;
}
.menu-content .area dl dd ul li {
  border-bottom: none;
}

#menu-btn-check:checked ~ .menu-content {
  left: 0; /*メニューを画面内へ*/
  overflow: scroll;
}

#menu-btn-checkfix:checked ~ .menu-content {
  left: 0; /*メニューを画面内へ*/
  overflow: scroll;
}

.breadcrumb {
  width: 90%;
  max-width: 1000px;
  margin: 2% auto;
  font-size: clamp(12px, 0.6rem, 14px);
  font-family: "Noto Sans JP";
  line-height: 1.4;
}

footer {
  width: 100%;
  box-sizing: border-box;
  background-repeat: no-repeat;
  margin: 0;
  padding: 4% 0 2%;
  background: #fff;
}
@media screen and (max-width: 640px) {
  footer {
    padding: 5% 0 35%;
  }
}
footer .inner {
  font-size: clamp(14px, 0.8rem, 16px);
  width: 93%;
  margin: 0 auto;
  line-height: 1.4;
  max-width: 1000px;
}
footer .inner .logo {
  height: auto;
  width: 40%;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: clamp(12px, 0.6rem, 14px);
}
footer .inner .logo a {
  display: block;
  padding: 0.4rem 0;
}
footer .inner .logo a img {
  width: 100%;
  height: auto;
}
footer .inner .logo .company {
  font-weight: 600;
  color: #0059b9;
  font-size: clamp(16px, 0.8rem, 18px);
}
@media screen and (max-width: 640px) {
  footer .inner .logo {
    width: 80%;
  }
}
footer .inner nav {
  width: 100%;
  display: grid;
  grid-template-columns: 28% 69%;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  footer .inner nav {
    display: block;
  }
}
footer .inner nav .cont {
  width: 100%;
}
footer .inner nav .cont ul li {
  font-size: 14px;
  border-top: 1px solid rgba(204, 204, 204, 0.8);
}
footer .inner nav .cont ul li:last-child {
  border-bottom: 1px solid rgba(204, 204, 204, 0.8);
}
footer .inner nav .cont ul li a {
  display: flex;
  line-height: 1;
  justify-content: space-between;
  padding: 18px 0;
  margin: 0;
}
footer .inner nav .cont ul li a::after {
  font-family: "Material Icons";
  content: "\e5cc";
  font-size: 22px;
  color: #0059b9;
  line-height: 0.8;
}
@media screen and (max-width: 640px) {
  footer .inner nav .cont ul {
    width: 90%;
    margin: 20px auto;
    padding: 15px;
  }
}
footer .inner nav .area {
  width: 100%;
}
footer .inner nav .area h3 {
  font-size: clamp(16px, 0.8rem, 18px);
  margin-bottom: 20px;
  text-align: center;
  padding: 10px;
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
}
footer .inner nav .area ul {
  display: flex;
  flex-wrap: wrap;
}
footer .inner nav .area ul li {
  padding: 0 15px 5px 0;
}
footer .inner nav .area ul li a {
  text-decoration: underline;
}
footer .sitemap {
  font-size: clamp(12px, 0.7rem, 13px);
  text-align: center;
  display: block;
  padding: 1%;
}
footer small {
  font-size: clamp(12px, 0.7rem, 13px);
  text-align: center;
  display: block;
  padding: 2rem 0 1rem;
}
footer .powerd a {
  font-size: clamp(12px, 0.7rem, 13px);
  text-align: center;
  display: block;
  padding: 2rem 0 1rem;
  color: #0059b9;
}
footer .page-top {
  position: fixed;
  right: 0;
  bottom: 26px;
  opacity: 0;
  transform: translateY(100px);
  z-index: 100;
  /*　上に上がる動き　*/
  /*　下に下がる動き　*/
}
footer .page-top a {
  background: #000;
  color: #FFF;
  font-size: 12px;
  padding: 7px 15px 11px;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .page-top a::before {
  font-family: "Material Icons";
  content: "\e5ce";
}
footer .page-top.UpMove {
  animation: UpAnime 0.8s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
footer .page-top.DownMove {
  animation: DownAnime 0.8s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
@media screen and (max-width: 640px) {
  footer .page-top.UpMove {
    animation: UpAnime 0.8s forwards;
  }
  @keyframes UpAnime {
    from {
      opacity: 0;
      transform: translateY(0px);
    }
    to {
      opacity: 1;
      transform: translateY(-100px);
    }
  }
  footer .page-top.DownMove {
    animation: DownAnime 0.8s forwards;
  }
  @keyframes DownAnime {
    from {
      opacity: 1;
      transform: translateY(-100px);
    }
    to {
      opacity: 0;
      transform: translateY(0px);
    }
  }
}

.foot_navi {
  display: none;
}
@media screen and (max-width: 640px) {
  .foot_navi {
    display: block;
    position: fixed;
    bottom: -1px;
    width: 100%;
    z-index: 100;
    box-sizing: border-box;
    z-index: 90;
  }
  .foot_navi .cv {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px 0;
  }
  .foot_navi .cv a {
    background-color: #f15a24;
    color: #FFF;
    border-radius: 20px;
    padding: 10px 40px 12px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    width: -moz-fit-content;
    width: fit-content;
    display: block;
    margin: 0 auto;
  }
  .foot_navi .cv a span {
    font-size: 14px;
  }
  .foot_navi ul {
    display: grid;
    grid-template-columns: repeat(5, 20%);
    justify-content: space-between;
    width: 100%;
    margin: 0 auto 0 0;
    background-color: #FFF;
    filter: drop-shadow(0px 8px 7px black);
  }
  .foot_navi ul li {
    position: relative;
    list-style: none;
    background-color: #FFF;
    border-right: 1px solid #CCC;
    /*トップへ*/
    /*売却実績*/
    /*お客様の声*/
    /*会社概要*/
    /*電話で相談*/
  }
  .foot_navi ul li:last-child {
    border-right: none;
  }
  .foot_navi ul li a {
    height: 64px;
    color: #000;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 8px 0;
    margin: 0 auto;
    box-sizing: border-box;
    align-items: center;
    text-align: center;
    font-weight: 700;
  }
  .foot_navi ul li a::before {
    color: #0059b9;
    font-size: 22px;
  }
  .foot_navi ul li:nth-of-type(1) a::before {
    font-family: "Material Icons";
    content: "\e88a";
  }
  .foot_navi ul li:nth-of-type(2) a::before {
    font-family: "Material Icons";
    content: "\e85d";
  }
  .foot_navi ul li:nth-of-type(3) a::before {
    font-family: "Material Icons";
    content: "\e851";
  }
  .foot_navi ul li:nth-of-type(4) a::before {
    font-family: "Material Icons";
    content: "\ea40";
  }
  .foot_navi ul li:nth-of-type(5) a::before {
    font-family: "Material Icons";
    content: "\e61d";
  }
}

.foot_navi02 {
  display: none;
}
@media screen and (max-width: 640px) {
  .foot_navi02 {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 100;
    box-sizing: border-box;
    z-index: 90;
  }
  .foot_navi02 ul {
    display: grid;
    grid-template-columns: 77% 23%;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto 0 0;
  }
  .foot_navi02 ul li {
    position: relative;
    height: 68px;
    list-style: none;
    z-index: 0;
  }
  .foot_navi02 ul li a {
    color: #FFF;
    font-size: 12px;
    display: flex;
    width: 96%;
    justify-content: center;
    padding: 3px 0;
    margin: 0 auto;
    align-items: center;
  }
  .foot_navi02 ul li:first-child {
    background: #86E900;
    background: linear-gradient(180deg, rgb(134, 233, 0) 0%, rgb(0, 133, 59) 100%);
    border-right: 1px solid #FFF;
  }
  .foot_navi02 ul li:first-child p {
    position: relative;
  }
  .foot_navi02 ul li:first-child p a {
    color: #ffff00;
    font-weight: 700;
    font-size: 17px;
    -webkit-text-stroke: 5px #1c4417;
    paint-order: stroke;
    flex-wrap: wrap;
    padding: 18px 0 2px 26px;
    justify-content: center;
    width: 94%;
    box-sizing: border-box;
    margin: 0 auto;
    align-items: flex-end;
  }
  .foot_navi02 ul li:first-child p a span {
    font-size: 13px;
    margin: 0 0 0 2px;
  }
  .foot_navi02 ul li:first-child p a + span {
    color: #1c4417;
    font-size: 12px;
    display: block;
    position: absolute;
    right: 0;
    top: 3px;
    font-weight: 700;
    left: 0;
    margin: auto;
    width: 68%;
    text-align: left;
  }
  .foot_navi02 ul li:first-child p:last-child {
    width: 92%;
    margin: 0 auto 0 13px;
  }
  .foot_navi02 ul li:first-child p:last-child img {
    width: 100%;
    height: auto;
    opacity: 1 !important;
  }
  .foot_navi02 ul li:first-child p:last-child a {
    flex-direction: column;
    font-weight: 700;
  }
  .foot_navi02 ul li:first-child::before {
    content: "";
    width: 65px;
    background-image: url(../img/image_footer_staff.png);
    height: 78px;
    display: block;
    background-size: contain;
    position: absolute;
    bottom: 0;
    z-index: -1;
    background-repeat: no-repeat;
  }
  .foot_navi02 ul li:last-child {
    background: #00ADFF;
    background: linear-gradient(180deg, rgb(0, 173, 255) 0%, rgb(67, 90, 220) 100%);
    position: relative;
  }
  .foot_navi02 ul li:last-child span {
    position: absolute;
    width: 64px;
    top: -13px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .foot_navi02 ul li:last-child span img {
    width: 100%;
    height: auto;
    opacity: 1 !important;
  }
  .foot_navi02 ul li:last-child a {
    flex-direction: column;
    font-weight: 700;
    text-align: center;
    padding: 0;
    margin: 8px 0 0px 0;
    width: 100%;
  }
  .foot_navi02 ul li:last-child a::before {
    font-family: "Material Icons";
    content: "\e158";
    font-size: 24px;
    color: #2e3192;
    line-height: 1;
  }
}/*# sourceMappingURL=common.css.map */