@charset "utf-8";

*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: rgb(18, 36, 93);
  line-height: 1;
  background-color: #fff;
}

img {
  max-width: 100%;
}


header {
  background-color: rgb(230, 238, 251);
  height: 20%;
}

.header-inner {
  height: 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header-logo {
  display: block;
  width: 30%;
  margin-left: 5%;
}

.site-menu ul {
  display: flex;
}

.site-menu ul li {
  margin: 0 20px;
}

.header-site-menu {
  margin-right: 5%;
}

.site-menu ul li a {
  font-weight: bold;
  font-size: 15px;
  padding-right: 30px;
}

.site-menu img {
  width: 50%;
}

ul.page-navi {
  padding: 0;
  text-align: center;
}

ul.page-navi li {
  display: inline-block;
}

ul.page-navi li a {
  display: block;
  color: rgb(18, 36, 93);
  padding: 1em;
  text-decoration: none;
}

ul.page-navi a::first-line {
  font-size: 16px;
  font-weight: bold;
}

.page-navi img {
  padding-bottom: 8px;
}

.form strong {
  color: rgb(234, 60, 97);
}

ul.page-navi li:hover {
  opacity: 0.5;
}


/* ここからメイン */
.guide-img {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 40px;
}

.guide-img img {
  width: 300px;
}

main p {
  text-align: center;
}

.guide-box {
  background-color: rgb(230, 238, 251);
  border-radius: 20px;
  display: flex;
  width: 65%;
  height: 330px;
  margin: 50px auto;
}

.guide-box-img {
  width: 40%;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 40px;
  margin-right: 60px;
}

.guide-box-img img {
  border-radius: 20px;
}

.content {
  width: 45%;
  height: 90%;
  margin: 20px auto;
  margin-bottom: 0;
  background-color: #fff;
  border-radius: 15px
}

.content h3 {
  text-align: center;
  font-size: 25px;
  margin: 10px auto;
  width: 40%;
  border-bottom: double 6px rgb(18, 36, 93);
  padding-bottom: 15px;
}

.content p {
  text-align: left;
  padding-top: 10px;
  width: 80%;
  margin: 0 auto;
}

.form-btn-area {
  text-align: center;
  height: 120px;
  margin-top: 10px;
}

.form-btn {
  margin-top: 40px;
  background-color: rgb(236, 90, 121);
  display: inline-block;
  min-width: 220px;
  line-height: 50px;
  border-radius: 14px;
  color: #fff;
  font-size: 20px;
  margin-bottom: 60px;
}

.form-btn:hover {
  background-color: rgb(241, 168, 184);
}

/* 買取の流れ */
.guide-img2 {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 100px;
}

.guide-img2 img {
  width: 300px;
}

.guide-box2 {
  background-color: rgb(230, 238, 251);
  border-radius: 20px;
  width: 85%;
  height: 700px;
  margin: auto;
}

.guide-box2 p {
  width: 500px;
  margin-right: 10px;
  padding-top: 30PX;
  text-align: left;
}

.guide-box2 img {
  width: 200px;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.guide-box2 h3 {
  background: linear-gradient(transparent 60%, #fff 30%);
  display: inline-block;
  font-size: 20px;
}

.no1 {
  display: flex;
  justify-content: center;
  width: 90%;
  margin: auto;
  padding-top: 40px;

}

.step1 {
  margin-top: 30px;
  transition: all .6s ease;
  transform: translateY(30px);
  opacity: 0;
}

.step1.is-show {
  transform: translateY(0);
  opacity: 1;
}

.no2 {
  display: flex;
  justify-content: center;
  width: 90%;
  margin: auto;
  padding-top: 20px;
}

.step2 {
  margin-top: 20px;
  transition: all .6s ease;
  transform: translateY(30px);
  opacity: 0;
  transition-delay: .2s;
}

.step2.is-show {
  transform: translateY(0);
  opacity: 1;
}

.no3 {
  display: flex;
  justify-content: center;
  width: 90%;
  margin: auto;
  padding-top: 30px;
}

.step3 {
  margin-top: 30px;
  transition: all .6s ease;
  transform: translateY(30px);
  opacity: 0;
  transition-delay: .4s;
}

.step3.is-show {
  transform: translateY(0);
  opacity: 1;
}

.form-btn-area2 {
  text-align: center;
  padding-bottom: 60px;
  height: 120px;
}

.form-btn2 {
  margin-top: 60px;
  background-color: rgb(236, 90, 121);
  display: inline-block;
  min-width: 220px;
  line-height: 50px;
  border-radius: 14px;
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}

.form-btn2:hover {
  background-color: rgb(241, 168, 184);
}

/* フッターついてくるところ */
.footer-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  z-index: 2;
  background: #fff;
  color: rgb(28, 37, 77);
  box-shadow: 0 -32px 30px -30px rgba(53, 47, 47, 0.15);

}

.btn-comment {
  padding-right: 10px;
}

.inblock {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.arrow_s {
  position: relative;
  display: inline-block;
  padding-left: 12px;
}

.arrow_s:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #333;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

.btn {
  background-color: rgb(236, 90, 121);
  display: inline-block;
  min-width: 200px;
  line-height: 50px;
  border-radius: 14px;
  color: #fff;
  font-size: 20px;
  text-align: center;
  margin-left: 10px;
}

.btn:hover {
  background-color: rgb(241, 168, 184);
}

/* フッター */
#pagetop {
  position: fixed;
  right: 5px;
  bottom: 60px;
  cursor: pointer;
  z-index: 10;
}

#pagetop img {
  width: 100px;
}

.footer {
  background-color: rgb(230, 238, 251);
  margin-top: 200px;
  margin-bottom: 80px;
  color: rgb(28, 37, 77);
}

.footer-logo {
  padding-top: 30px;
  padding-left: 100px;
}

.add-area {
  padding-left: 100px;
}

.footer-right {
  display: flex;
  justify-content: center;
  padding-right: 130px;
  margin-top: 40px;
}

.footer-site-menu ul {
  display: flex;
  text-align: center;
}

.footer-site-menu ul li {
  display: inline;
  padding: 0 40px 30px;
  font-weight: bold;
}

.footer-site-menu ul li:hover {
  opacity: 0.5;
}

.adress-small {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 14px;
}


@media (max-width: 850px) {

  header,
  .header-inner {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    background-color: rgb(230, 238, 251);
    z-index: 9999;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);

  }

  .header-inner {
    padding: 5px 50px 0 20px;
    position: fixed;
  }

  .header-inner .header-logo {
    width: 30%;
  }

  .site-menu ul li img {
    display: none;
  }

  .ham,
  .ham::before,
  .ham::after {
    display: block;
    width: 35px;
    height: 2px;
    background-color: #000;
    margin: 0 auto;
    position: relative;
    transition: all 0.5s 0.1s linear;
  }

  .header-inner {
    padding: 0;
  }

  .ham {
    transition: all 0.2s 0s linear;
  }

  .ham::before,
  .ham::after {
    content: "";
    position: absolute;
  }

  .ham::before {
    top: -10px
  }

  .ham::after {
    top: 10px;
  }

  .ham.is-show {
    background-color: transparent;
  }

  .ham.is-show::before {
    top: 0;
    transform: rotate(45deg);
  }

  .ham.is-show::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .site-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    width: 100%;
    height: 40%;
    background-color: rgba(230, 238, 251, 0.9);
    transition: 0.5S;
    z-index: -50;
  }

  .site-menu.is-show {
    top: 60px;
  }

  .site-menu ul {
    display: block;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }

  .site-menu ul li {
    text-align: center;
    padding-bottom: 3px;
    border-bottom: 1px solid rgb(28, 37, 77);
    font-weight: bold;
  }

  .site-menu ul li a {
    width: 150px;
  }

  .footer-logo {
    width: 45%;
  }

  main {
    margin: 0 auto;
  }

/* メイン */
.guide-img,
.guide-img2{
  width: 50%;
  margin-left: auto;
  margin-right:auto ;
}
/* 利用方法1 */
.guide-box{
  flex-wrap: wrap;
  border-radius: 0;
  width: 100%;
}
.guide-box-img{
  display: none;
}
.content{
  width: 95%;
  margin-top: 14px;
}
.content h3{
  font-size: 20px;
  padding-top: 14px;
  padding-bottom: 8px;
}
.content p{
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 26px;
}
.form-btn{
  margin-top: 2px;
  margin-bottom: 0;
  min-width: 200px;
}
/* 買い取りの流れ */
.guide-img2{
  margin-top: 0;
  margin-bottom: 50px;
}
.no1{
  background-color: #fff;
  border-radius: 10px;
  flex-wrap: wrap;
  padding-top: 0;
  text-align: center;
  margin-top: 20px;
}
.guide-box2{
  width: 100%;
  height: 1490px;
  border-radius: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}
.guide-box2 p{
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
  line-height: 2;
}
  /* フッター */
  #pagetop img{
    width: 80px;
    }
    p.btn-comment {
      padding-left: 20px;
  }
  .btn{
      width: 120px;
      margin-right: 20px;
  }
      
  .footer {
    margin-top: 40px;
  }

  .add-area {
    padding-left: 0;
  }

  .add-area p,
  .footer-logo {
    padding-left: 20px;
  }

  .footer-logo {
    padding-top: 10px;
    width: 35%;
  }

  .add-area p {
    font-size: 10px;
  }

  .adress-small {
    font-size: 10px;
  }

  .footer-site-menu ul {
    flex-wrap: nowrap;
  }

  .footer-site-menu ul li {
    font-size: 10px;
    padding: 0 5px 10px;
  }

  .footer-right {
    padding-right: 0;
    justify-content: center;
  }

  .adress-small {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

}