@charset "UTF-8";
@font-face {
  font-family: "main-font";
  src: url(../font/SofiaSans-Bold.ttf);
}
body {
  font-family: "main-font", sans-serif;
}

* {
  animation-name: fuwa;
  animation-duration: 0.4s;
}

@keyframes fuwa {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
html {
  color: #333;
  scroll-behavior: smooth;
}

p {
  font-size: 16px;
  line-height: 2;
  text-align: justify;
}
@media (max-width: 900px) {
  p {
    line-height: 1.8;
  }
}

a[href^="tel:"] {
  color: #333;
  text-decoration: none;
}

.container {
  max-width: 1000px;
  width: 92%;
  margin: 0 auto;
}

.br_sp {
  display: none;
}
@media (max-width: 630px) {
  .br_sp {
    display: block;
  }
}

.main_h2 {
  position: relative;
  font-size: 33px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 3px;
  text-align: center;
  padding-bottom: 80px;
}
@media (max-width: 900px) {
  .main_h2 {
    font-size: 30px;
  }
}
@media (max-width: 630px) {
  .main_h2 {
    font-size: 28px;
  }
}
.main_h2 span {
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  color: #FFBE00;
  font-size: 20px;
  width: 100%;
  text-align: center;
}
@media (max-width: 630px) {
  .main_h2 span {
    top: 37px;
    font-size: 16px;
  }
}

.link_btn {
  display: flex;
  text-align: center;
  letter-spacing: 1px;
  color: #333;
  font-weight: bold;
  background: #ffffff;
  border: 1.5px solid #333;
  border-radius: 50px;
  transform: translate(0, 0);
  box-shadow: 2px 2px #333;
  padding: 7px 15px 5px;
  transition: all 0.2s;
}
@media (max-width: 1000px) {
  .link_btn {
    font-size: 14px;
    padding: 7px 0 7px 15px;
  }
}
@media (max-width: 630px) {
  .link_btn {
    box-shadow: 2px 2px #333;
  }
}
.link_btn:hover {
  transform: translateX(5px);
  transform: translate(2px, 2px);
  box-shadow: none;
}
.link_btn img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: 6px;
  transform: translateY(2px);
}
@media (max-width: 1000px) {
  .link_btn img {
    transform: translateY(1px);
  }
}

/*============
↓ ヘッダー
=============*/
header .header_top {
  position: fixed;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: #fff;
  box-shadow: 0px 5px 7px rgba(0, 0, 0, 0.0941176471);
  margin: 0 auto;
}
@media (max-width: 630px) {
  header .header_top {
    width: 100%;
  }
}
header .header_top .header_logo {
  max-width: 320px;
  width: 100%;
}
header .header_top .header_logo a {
  display: block;
}
header .header_top .header_logo a img {
  max-width: 320px;
  width: 100%;
  margin-left: 30px;
}
@media (max-width: 900px) {
  header .header_top .header_logo a img {
    max-width: 220px;
  }
}
@media (max-width: 630px) {
  header .header_top .header_logo a img {
    width: 150px;
    margin-left: 10px;
  }
}
header .header_top .header_right {
  display: flex;
  justify-content: space-between;
  width: 500px;
}
@media (max-width: 1000px) {
  header .header_top .header_right {
    justify-content: flex-end;
  }
}
header .header_top .header_right .header_tel {
  display: flex;
  align-items: center;
  max-width: 320px;
  width: 100%;
}
@media (max-width: 900px) {
  header .header_top .header_right .header_tel {
    max-width: 270px;
  }
}
@media (max-width: 630px) {
  header .header_top .header_right .header_tel {
    display: none;
  }
}
header .header_top .header_right .header_tel a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #333;
}
header .header_top .header_right .header_tel a .header_tel_top {
  display: flex;
  align-items: center;
}
header .header_top .header_right .header_tel a .header_tel_top img {
  max-width: 35px;
  width: 100%;
}
@media (max-width: 900px) {
  header .header_top .header_right .header_tel a .header_tel_top img {
    max-width: 30px;
  }
}
header .header_top .header_right .header_tel a .header_tel_top p {
  font-size: 35px;
  font-weight: bold;
  color: #094DAA;
  line-height: 1.3;
}
@media (max-width: 900px) {
  header .header_top .header_right .header_tel a .header_tel_top p {
    font-size: 30px;
  }
}
header .header_top .header_right .header_tel a .header_tel_bottom {
  padding-left: 9px;
  line-height: 1.3;
  font-size: 13px;
  font-weight: bold;
}
@media (max-width: 900px) {
  header .header_top .header_right .header_tel a .header_tel_bottom {
    font-size: 12px;
    padding-left: 2px;
  }
}
header .header_top .header_right .header_contact {
  max-width: calc(100% - 330px);
  width: 100%;
}
@media (max-width: 900px) {
  header .header_top .header_right .header_contact {
    max-width: 120px;
  }
}
@media (max-width: 630px) {
  header .header_top .header_right .header_contact {
    display: none;
    max-width: 80px;
  }
}
header .header_top .header_right .header_contact a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #094DAA;
  padding: 10px 0;
  transition: all 0.3s;
}
@media (max-width: 900px) {
  header .header_top .header_right .header_contact a {
    padding: 11px 0 15px;
  }
}
@media (max-width: 630px) {
  header .header_top .header_right .header_contact a {
    padding: 9px 0 12px;
  }
}
header .header_top .header_right .header_contact a:hover {
  background: #1a5fc0;
}
header .header_top .header_right .header_contact a img {
  max-width: 50px;
  width: 100%;
}
@media (max-width: 900px) {
  header .header_top .header_right .header_contact a img {
    max-width: 40px;
  }
}
@media (max-width: 900px) {
  header .header_top .header_right .header_contact a img {
    max-width: 30px;
  }
}
header .header_top .header_right .header_contact a p {
  color: #fff;
  font-weight: bold;
}
@media (max-width: 900px) {
  header .header_top .header_right .header_contact a p {
    line-height: 1 !important;
    font-size: 13px !important;
  }
}
@media (max-width: 630px) {
  header .header_top .header_right .header_contact a p {
    font-size: 11px !important;
  }
}
header .pc_nav {
  position: fixed;
  z-index: 101;
  width: 100%;
  top: 102px;
  background: #1A1311;
  box-shadow: 2px 5px 7px rgba(51, 51, 51, 0.4588235294);
}
@media (max-width: 900px) {
  header .pc_nav {
    top: 69px;
  }
}
header .pc_nav ul {
  display: flex;
}
header .pc_nav ul li {
  width: 16.6666666667%;
}
header .pc_nav ul li a {
  display: block;
  width: 100%;
  font-size: 14px;
  color: #fff;
  text-align: center;
  background: #1A1311;
  padding: 13px 0;
  transition: all 0.3s;
}
header .pc_nav ul li a:hover {
  background: #3C3C3D;
}
@media (max-width: 900px) {
  header .pc_nav ul li a {
    font-size: 13px;
  }
}
@media (max-width: 630px) {
  header .pc_nav {
    display: none;
  }
}

/*============
↑ ヘッダー
=============*/
/*============
↓ ハンバーガー
=============*/
.sp-nav {
  display: none;
}
@media (max-width: 630px) {
  .sp-nav {
    display: block;
    position: relative;
    background: #333;
    padding: 31px;
  }
}

.hamburger {
  top: 20px;
  right: 20px;
  z-index: 100;
  width: 48px;
  height: 48px;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #333;
}

.hamburger__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: #fff;
  transition: all 0.4s;
}

.hamburger__line:nth-of-type(1) {
  top: 14px;
}

.hamburger__line:nth-of-type(2) {
  top: 23px;
}

.hamburger__line:nth-of-type(3) {
  top: 32px;
}

/* メニューオープン時 */
.hamburger.active .hamburger__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}

.hamburger.active .hamburger__line:nth-of-type(2) {
  opacity: 0;
}

.hamburger.active .hamburger__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  color: #fff;
  background-color: #094DAA;
  box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
  transform: translateX(-100%);
  transition: transform 0.4s;
  z-index: 90;
  background: linear-gradient(90deg, #094DA9, #0c90ba);
}

.nav.active {
  transform: translateX(0);
}

.nav__list {
  padding: 100px 0 0;
  list-style: none;
  margin: 0 auto 30px;
}

.nav__contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3%;
  margin-bottom: 30px;
}
.nav__contact li {
  display: flex;
  justify-content: center;
  background: #fff;
  max-width: 450px;
  width: 100%;
}
.nav__contact li a {
  width: 100%;
  display: block;
  border: 2px solid #333;
  font-weight: bold;
  transition: all 0.3s;
}
.nav__contact li a:hover {
  color: #094DAA;
  border: 2px solid #094DAA;
}
.nav__contact .contact_tel {
  margin-bottom: 10px;
}
.nav__contact .contact_tel a {
  color: #333;
  text-align: center;
  font-size: 26px;
  line-height: 0;
  padding: 20px 0 15px;
  transition: all 0.3s;
}
.nav__contact .contact_tel a:hover {
  color: #094DAA;
}
.nav__contact .contact_tel a span {
  font-size: 15px;
  line-height: 0.7;
}
.nav__contact .contact_tel a img {
  width: 24px;
  transform: translate(-2px, -9px);
}
.nav__contact .contact_mail a {
  display: block;
  text-align: center;
  text-indent: 0.4em;
  width: 100%;
  font-size: 18px;
  color: #333;
  padding: 20px 0;
  transition: all 0.3s;
}
.nav__contact .contact_mail a:hover {
  color: #094DAA;
}
.nav__contact .contact_mail a img {
  width: 24px;
  transform: translate(-8px, -8px);
}

.nav__item {
  position: relative;
  border-bottom: 0.7px solid #fff;
  padding: 0 20px;
}
.nav__item .nav__link {
  display: block;
  padding: 12px 0;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
}
.nav__item::after {
  content: url(../img/hamburger.png);
  position: absolute;
  top: -18%;
  right: 10px;
  transform: translateY(-50%);
  scale: 0.2;
}
.nav__item:nth-child(1) {
  border-top: 0.7px solid #fff;
}
.nav__item:nth-child(1)::after {
  top: -16%;
}
.nav__item:nth-child(1) .nav__link {
  padding: 15px 0;
}

/*============
↑ ハンバーガー
=============*/
/*============
↓ フッター
=============*/
footer {
  padding-top: 30px;
}
@media (max-width: 630px) {
  footer {
    padding-top: 30px;
  }
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 630px) {
  footer .container {
    flex-direction: column;
    margin-bottom: 10px;
  }
}
@media (max-width: 630px) {
  footer .container .footer_left {
    width: 100%;
  }
}
footer .container .footer_left a {
  display: inline-block;
  margin-bottom: 15px;
}
footer .container .footer_left a img {
  max-width: 300px;
  width: 100%;
}
@media (max-width: 900px) {
  footer .container .footer_left a img {
    max-width: 280px;
  }
}
@media (max-width: 630px) {
  footer .container .footer_left a img {
    max-width: 240px;
  }
}
footer .container .footer_left p {
  font-size: 14px;
  line-height: 1.8;
}
@media (max-width: 630px) {
  footer .container .footer_left p {
    font-size: 13px;
    margin-bottom: 15px;
  }
}
footer .container .footer_right {
  margin-bottom: 30px;
}
@media (max-width: 630px) {
  footer .container .footer_right {
    width: 100%;
  }
}
footer .container .footer_right ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 350px;
}
@media (max-width: 900px) {
  footer .container .footer_right ul {
    max-width: 280px;
  }
}
footer .container .footer_right ul li {
  width: 50%;
  padding: 3px;
}
@media (max-width: 630px) {
  footer .container .footer_right ul li {
    width: 100%;
    padding: 2px;
  }
}
footer .container .footer_right ul li a {
  color: #333;
  font-size: 14px;
  font-weight: normal;
  padding: 10px 0;
  transition: all 0.3s;
}
@media (max-width: 900px) {
  footer .container .footer_right ul li a {
    font-size: 13px;
  }
}
@media (max-width: 630px) {
  footer .container .footer_right ul li a {
    font-size: 12px;
    padding: 7px 0;
  }
}
footer .container .footer_right ul li a:hover {
  color: #094DAA;
  font-weight: bold;
}
footer .copy {
  background: #333;
  color: #fff;
  font-size: 12px;
  text-align: center;
  width: 100%;
}

/*============
↓ フッター
=============*/
/*============
↓ メイン画像
=============*/
main.top-page .top_img {
  background: #6ED3FF;
  background-image: url(../img/main_bg.png);
  background-size: 600px;
  padding-top: 50px;
  margin-top: 149px;
}
@media (max-width: 900px) {
  main.top-page .top_img {
    padding-top: 37px;
    margin-top: 113px;
  }
}
@media (max-width: 630px) {
  main.top-page .top_img {
    padding-top: 50px;
    margin-top: 62px;
  }
}
main.top-page .top_img .container img {
  width: 100%;
}
@media (max-width: 630px) {
  main.top-page .top_img .container img {
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 630px) {
  main.top-page .top_img .container .main_pc {
    display: none;
  }
}
main.top-page .top_img .container .main_sp {
  display: none;
}
@media (max-width: 630px) {
  main.top-page .top_img .container .main_sp {
    display: block;
  }
}

/*============
↑ メイン画像
=============*/
/*============
↓ トップ 初めての方へ
=============*/
main.top-page .top_about {
  padding: 70px 0;
}
main.top-page .top_about .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 630px) {
  main.top-page .top_about .container {
    flex-direction: column;
  }
}
main.top-page .top_about .container .top_about_left {
  display: flex;
  flex-direction: column;
  width: 50%;
}
@media (max-width: 1000px) {
  main.top-page .top_about .container .top_about_left {
    width: 53%;
  }
}
@media (max-width: 630px) {
  main.top-page .top_about .container .top_about_left {
    width: 100%;
    margin-bottom: 50px;
  }
}
main.top-page .top_about .container .top_about_left h2 {
  margin-bottom: 15px;
}
main.top-page .top_about .container .top_about_left h2 span {
  font-size: 25px;
  font-weight: bold;
  line-height: 2.2;
  background: #FFBE00;
  padding: 8px 8px 5px 8px;
}
@media (max-width: 1000px) {
  main.top-page .top_about .container .top_about_left h2 span {
    font-size: 22px;
  }
}
@media (max-width: 630px) {
  main.top-page .top_about .container .top_about_left h2 span {
    font-size: 18px;
  }
}
main.top-page .top_about .container .top_about_left p {
  color: #fff;
  font-size: 15px;
  margin-bottom: 15px;
}
main.top-page .top_about .container .top_about_left .link_btn {
  width: 130px;
  align-self: flex-end;
}
main.top-page .top_about .container .top_about_right {
  width: 40%;
  display: flex;
  justify-content: end;
}
@media (max-width: 630px) {
  main.top-page .top_about .container .top_about_right {
    width: 100%;
    max-width: 300px;
  }
}
main.top-page .top_about .container .top_about_right img {
  max-width: 450px;
  width: 100%;
}

/*============
↑ トップ 初めての方へ
=============*/
/*============
↓ トップ 取扱商品一覧
=============*/
main.top-page .top_introduction {
  padding: 70px 0;
}
main.top-page .top_introduction .introduction_list {
  display: flex;
  flex-wrap: wrap;
  gap: 1%;
  margin-bottom: 30px;
}
@media (max-width: 630px) {
  main.top-page .top_introduction .introduction_list {
    gap: 3%;
  }
}
main.top-page .top_introduction .introduction_list li {
  width: 24.25%;
  margin-bottom: 1%;
}
@media (max-width: 630px) {
  main.top-page .top_introduction .introduction_list li {
    width: 48.5%;
    margin-bottom: 3%;
  }
}
main.top-page .top_introduction .introduction_list li a {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  border-radius: 10px;
  padding: 10px 15px 20px;
  transition: all 0.3s;
}
@media (max-width: 1000px) {
  main.top-page .top_introduction .introduction_list li a {
    font-size: 17px;
  }
}
@media (max-width: 900px) {
  main.top-page .top_introduction .introduction_list li a {
    font-size: 16px;
  }
}
@media (max-width: 630px) {
  main.top-page .top_introduction .introduction_list li a {
    font-size: 15px;
  }
}
main.top-page .top_introduction .introduction_list li a:hover img {
  scale: 1.15;
}
main.top-page .top_introduction .introduction_list li a img {
  width: 80%;
  scale: 1;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s;
}
main.top-page .top_introduction .link_btn_area {
  width: 180px;
}
@media (max-width: 1000px) {
  main.top-page .top_introduction .link_btn_area {
    width: 170px;
  }
}

/*============
↑ トップ 取扱商品一覧
=============*/
/*============
↓ トップ 買取の流れ
=============*/
main.top-page {
  background: linear-gradient(#094DAA 20%, #2d67b8 30%, #2d67b8 83%, #5FC0F6 95%);
}
@media (max-width: 630px) {
  main.top-page {
    background: linear-gradient(#094DAA 20%, #2d67b8 30%, #2d67b8 87%, #5FC0F6 98%);
  }
}
main.top-page .top_flow {
  position: relative;
  padding: 70px 0;
}
main.top-page .top_flow .item1 {
  position: absolute;
  left: 8%;
  top: -10%;
  max-width: 230px;
  width: 13%;
}
@media (max-width: 630px) {
  main.top-page .top_flow .item1 {
    left: 5%;
    top: -4%;
    max-width: 300px;
    width: 23%;
  }
}
main.top-page .top_flow .step_flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  gap: 0.5%;
}
@media (max-width: 1000px) {
  main.top-page .top_flow .step_flow {
    justify-content: center;
    gap: 1%;
  }
}
@media (max-width: 630px) {
  main.top-page .top_flow .step_flow {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2%;
    max-width: 500px;
  }
}
main.top-page .top_flow .step_flow .step1, main.top-page .top_flow .step_flow .step2, main.top-page .top_flow .step_flow .step3, main.top-page .top_flow .step_flow .step4 {
  position: relative;
  background: #fff;
  width: 210px;
  height: 210px;
  border-radius: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1000px) {
  main.top-page .top_flow .step_flow .step1, main.top-page .top_flow .step_flow .step2, main.top-page .top_flow .step_flow .step3, main.top-page .top_flow .step_flow .step4 {
    width: 190px;
    height: 190px;
  }
}
@media (max-width: 900px) {
  main.top-page .top_flow .step_flow .step1, main.top-page .top_flow .step_flow .step2, main.top-page .top_flow .step_flow .step3, main.top-page .top_flow .step_flow .step4 {
    width: 170px;
    height: 170px;
  }
}
@media (max-width: 630px) {
  main.top-page .top_flow .step_flow .step1, main.top-page .top_flow .step_flow .step2, main.top-page .top_flow .step_flow .step3, main.top-page .top_flow .step_flow .step4 {
    width: 160px;
    height: 160px;
    margin-bottom: 5%;
  }
}
main.top-page .top_flow .step_flow .step1 h2, main.top-page .top_flow .step_flow .step2 h2, main.top-page .top_flow .step_flow .step3 h2, main.top-page .top_flow .step_flow .step4 h2 {
  position: absolute;
  top: 0;
  left: 0;
  color: #094DAA;
  background: #FFBE00;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  font-size: 14px;
  text-align: center;
  font-weight: lighter;
  line-height: 1.1;
}
@media (max-width: 1000px) {
  main.top-page .top_flow .step_flow .step1 h2, main.top-page .top_flow .step_flow .step2 h2, main.top-page .top_flow .step_flow .step3 h2, main.top-page .top_flow .step_flow .step4 h2 {
    width: 50px;
    height: 50px;
    font-size: 12px;
    line-height: 0.8;
  }
}
@media (max-width: 900px) {
  main.top-page .top_flow .step_flow .step1 h2, main.top-page .top_flow .step_flow .step2 h2, main.top-page .top_flow .step_flow .step3 h2, main.top-page .top_flow .step_flow .step4 h2 {
    top: -3px;
    left: -10px;
  }
}
main.top-page .top_flow .step_flow .step1 h2 .step_area, main.top-page .top_flow .step_flow .step2 h2 .step_area, main.top-page .top_flow .step_flow .step3 h2 .step_area, main.top-page .top_flow .step_flow .step4 h2 .step_area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 0.95;
}
main.top-page .top_flow .step_flow .step1 h2 .step_area .step_num, main.top-page .top_flow .step_flow .step2 h2 .step_area .step_num, main.top-page .top_flow .step_flow .step3 h2 .step_area .step_num, main.top-page .top_flow .step_flow .step4 h2 .step_area .step_num {
  font-weight: bold;
  font-size: 28px;
}
@media (max-width: 1000px) {
  main.top-page .top_flow .step_flow .step1 h2 .step_area .step_num, main.top-page .top_flow .step_flow .step2 h2 .step_area .step_num, main.top-page .top_flow .step_flow .step3 h2 .step_area .step_num, main.top-page .top_flow .step_flow .step4 h2 .step_area .step_num {
    font-size: 24px;
  }
}
main.top-page .top_flow .step_flow .step1 .step_p_1, main.top-page .top_flow .step_flow .step2 .step_p_1, main.top-page .top_flow .step_flow .step3 .step_p_1, main.top-page .top_flow .step_flow .step4 .step_p_1 {
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  font-weight: bold;
  margin-bottom: 0px;
}
@media (max-width: 1000px) {
  main.top-page .top_flow .step_flow .step1 .step_p_1, main.top-page .top_flow .step_flow .step2 .step_p_1, main.top-page .top_flow .step_flow .step3 .step_p_1, main.top-page .top_flow .step_flow .step4 .step_p_1 {
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  main.top-page .top_flow .step_flow .step1 .step_p_1, main.top-page .top_flow .step_flow .step2 .step_p_1, main.top-page .top_flow .step_flow .step3 .step_p_1, main.top-page .top_flow .step_flow .step4 .step_p_1 {
    font-size: 13px;
  }
}
main.top-page .top_flow .step_flow .step1 .step_p_2, main.top-page .top_flow .step_flow .step2 .step_p_2, main.top-page .top_flow .step_flow .step3 .step_p_2, main.top-page .top_flow .step_flow .step4 .step_p_2 {
  font-size: 13px;
  line-height: 1.3;
  text-align: center;
}
@media (max-width: 1000px) {
  main.top-page .top_flow .step_flow .step1 .step_p_2, main.top-page .top_flow .step_flow .step2 .step_p_2, main.top-page .top_flow .step_flow .step3 .step_p_2, main.top-page .top_flow .step_flow .step4 .step_p_2 {
    font-size: 12px;
  }
}
@media (max-width: 900px) {
  main.top-page .top_flow .step_flow .step1 .step_p_2, main.top-page .top_flow .step_flow .step2 .step_p_2, main.top-page .top_flow .step_flow .step3 .step_p_2, main.top-page .top_flow .step_flow .step4 .step_p_2 {
    font-size: 11px;
  }
}
main.top-page .top_flow .step_flow .step1 .step_img, main.top-page .top_flow .step_flow .step2 .step_img, main.top-page .top_flow .step_flow .step3 .step_img, main.top-page .top_flow .step_flow .step4 .step_img {
  max-width: 60px;
  margin-top: 10px;
}
@media (max-width: 1000px) {
  main.top-page .top_flow .step_flow .step1 .step_img, main.top-page .top_flow .step_flow .step2 .step_img, main.top-page .top_flow .step_flow .step3 .step_img, main.top-page .top_flow .step_flow .step4 .step_img {
    max-width: 50px;
  }
}
main.top-page .top_flow .step_flow .step2 {
  transform: translateX(2%);
}
main.top-page .top_flow .step_flow li .step_prompt {
  max-width: 15px;
  width: 100%;
}
@media (max-width: 1000px) {
  main.top-page .top_flow .step_flow li .step_prompt {
    max-width: 10px;
  }
}
@media (max-width: 630px) {
  main.top-page .top_flow .step_flow li .step_prompt {
    display: none;
  }
}
main.top-page .top_flow .link_btn_area {
  width: 180px;
}
@media (max-width: 1000px) {
  main.top-page .top_flow .link_btn_area {
    width: 170px;
  }
}

/*============
↑ トップ 買取の流れ
=============*/
/*============
↓ トップ 対応エリア
=============*/
main.top-page .top_area {
  position: relative;
  padding: 70px 0;
}
main.top-page .top_area .item2 {
  position: absolute;
  right: 8%;
  top: -6%;
  max-width: 230px;
  rotate: 20deg;
  width: 14%;
}
@media (max-width: 630px) {
  main.top-page .top_area .item2 {
    right: 4%;
    top: -4%;
    max-width: 300px;
    rotate: 20deg;
    width: 24%;
  }
}
main.top-page .top_area .area_row {
  display: flex;
  gap: 5%;
}
@media (max-width: 630px) {
  main.top-page .top_area .area_row {
    flex-direction: column;
    align-items: center;
  }
}
main.top-page .top_area .area_row .area_left {
  width: 55%;
}
@media (max-width: 630px) {
  main.top-page .top_area .area_row .area_left {
    width: 100%;
    margin-bottom: 30px;
  }
}
main.top-page .top_area .area_row .area_left .prefectures {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
main.top-page .top_area .area_row .area_left .prefectures li {
  color: #094DAA;
  background: #fff;
  border-radius: 50px;
  padding: 3px 10px;
  margin-bottom: 10px;
}
@media (max-width: 1000px) {
  main.top-page .top_area .area_row .area_left .prefectures li {
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  main.top-page .top_area .area_row .area_left .prefectures li {
    font-size: 13px;
  }
}
main.top-page .top_area .area_row .area_left .municipality li {
  color: #fff;
  font-size: 15px;
  border-top: solid 1px #fff;
  padding: 10px 0;
}
@media (max-width: 1000px) {
  main.top-page .top_area .area_row .area_left .municipality li {
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  main.top-page .top_area .area_row .area_left .municipality li {
    font-size: 13px;
  }
}
main.top-page .top_area .area_row .area_left .municipality li span {
  white-space: nowrap;
}
main.top-page .top_area .area_row .area_right {
  width: 43%;
  text-align: right;
}
@media (max-width: 630px) {
  main.top-page .top_area .area_row .area_right {
    max-width: 350px;
    width: 100%;
    text-align: center;
  }
}
main.top-page .top_area .area_row .area_right img {
  width: 100%;
  max-width: 330px;
}
@media (max-width: 630px) {
  main.top-page .top_area .area_row .area_right img {
    max-width: 320px;
  }
}

/*============
↑ トップ 対応エリア
=============*/
/*============
↓ トップ ブログ
=============*/
.top_blog {
  position: relative;
  padding: 70px 0;
}
.top_blog .item3 {
  position: absolute;
  left: 8%;
  top: -2%;
  max-width: 230px;
  width: 14%;
}
@media (max-width: 630px) {
  .top_blog .item3 {
    left: 8%;
    top: -4%;
    max-width: 230px;
    width: 25%;
  }
}
.top_blog dl {
  margin-bottom: 50px;
}
.top_blog dl .blog_area {
  position: relative;
  border-bottom: 1px solid #fff;
}
.top_blog dl .blog_area:nth-child(1) dt::after {
  content: "NEW";
  position: absolute;
  top: 18px;
  left: 115px;
  color: #094DAA;
  background: #FFBE00;
  font-weight: lighter;
  border-radius: 50px;
  padding: 2px 20px;
}
@media (max-width: 630px) {
  .top_blog dl .blog_area:nth-child(1) dt::after {
    font-size: 11px;
    left: 95px;
    padding: 2px 12px 1px;
  }
}
.top_blog dl .blog_area a {
  color: #fff;
  display: flex;
  gap: 1%;
  padding: 20px 0 10px;
}
@media (max-width: 630px) {
  .top_blog dl .blog_area a {
    flex-direction: column;
    padding: 20px 0 20px;
  }
}
.top_blog dl .blog_area a dt {
  width: 200px;
  padding-left: 1%;
}
@media (max-width: 1000px) {
  .top_blog dl .blog_area a dt {
    font-size: 15px;
  }
}
@media (max-width: 630px) {
  .top_blog dl .blog_area a dt {
    width: 100%;
    padding-left: 0;
    margin-bottom: 5px;
  }
}
.top_blog dl .blog_area a dd {
  width: calc(99% - 200px);
  padding-right: 1%;
}
@media (max-width: 1000px) {
  .top_blog dl .blog_area a dd {
    font-size: 15px;
  }
}
@media (max-width: 630px) {
  .top_blog dl .blog_area a dd {
    width: 100%;
  }
}
.top_blog .link_btn_area {
  width: 146px;
}
@media (max-width: 1000px) {
  .top_blog .link_btn_area {
    width: 140px;
  }
}

/*============
↑ トップ ブログ
=============*/
/*============
↓ トップ お問い合わせ
=============*/
.contact {
  padding: 70px 0 0;
}
.contact ul {
  display: flex;
  justify-content: center;
  gap: 3%;
  margin-bottom: 30px;
}
@media (max-width: 630px) {
  .contact ul {
    flex-direction: column;
    align-items: center;
  }
}
.contact ul li {
  display: flex;
  justify-content: center;
  background: #fff;
  max-width: 450px;
  width: 100%;
}
.contact ul li a {
  width: 100%;
  display: block;
  border: 2px solid #333;
  font-weight: bold;
  transition: all 0.3s;
}
.contact ul li a:hover {
  color: #094DAA;
  border: 2px solid #094DAA;
}
@media (max-width: 630px) {
  .contact ul .contact_tel {
    margin-bottom: 15px;
  }
}
.contact ul .contact_tel a {
  color: #333;
  background-color: #fff;
  text-align: center;
  font-size: 37px;
  line-height: 0;
  scale: 1;
  padding: 27px 0;
  transition: all 0.3s;
}
@media (max-width: 900px) {
  .contact ul .contact_tel a {
    font-size: 30px;
  }
}
.contact ul .contact_tel a:hover {
  color: #094DAA;
  scale: 1.05;
}
.contact ul .contact_tel a span {
  font-size: 17px;
}
@media (max-width: 900px) {
  .contact ul .contact_tel a span {
    font-size: 16px;
  }
}
.contact ul .contact_tel a img {
  width: 37px;
  transform: translate(-5px, -11px);
}
@media (max-width: 900px) {
  .contact ul .contact_tel a img {
    width: 31px;
    transform: translate(-2px, -9px);
  }
}
.contact ul .contact_mail a {
  display: block;
  text-align: center;
  text-indent: 0.4em;
  width: 100%;
  font-size: 26px;
  color: #333;
  background-color: #fff;
  scale: 1;
  padding: 27px 0;
  transition: all 0.3s;
}
@media (max-width: 900px) {
  .contact ul .contact_mail a {
    font-size: 21px;
  }
}
.contact ul .contact_mail a:hover {
  color: #094DAA;
  scale: 1.05;
}
.contact ul .contact_mail a img {
  width: 30px;
  transform: translate(-8px, -8px);
}
@media (max-width: 900px) {
  .contact ul .contact_mail a img {
    width: 27px;
  }
}

/*============
↑ トップ お問い合わせ
=============*/
/*============
↓ サブ 共通
=============*/
.sub-page .sub-title {
  background: #1a5fc0;
  padding: 70px 0 110px;
  margin-top: 149px;
}
@media (max-width: 900px) {
  .sub-page .sub-title {
    padding: 77px 0 100px;
    margin-top: 114px;
  }
}
@media (max-width: 630px) {
  .sub-page .sub-title {
    padding: 80px 0 100px;
    margin-top: 62px;
  }
}
.sub-page .sub-title h2 {
  position: relative;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 5px;
}
@media (max-width: 900px) {
  .sub-page .sub-title h2 {
    font-size: 30px;
  }
}
.sub-page .sub-title h2 span {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: #FFBE00;
  letter-spacing: 2px;
  width: 100%;
  font-size: 24px;
  text-align: center;
}
@media (max-width: 900px) {
  .sub-page .sub-title h2 span {
    font-size: 19px;
  }
}
.sub-page .sub-description {
  padding: 0 0 70px;
}
.sub-page .sub-description ul {
  padding: 10px 0 50px;
}
@media (max-width: 630px) {
  .sub-page .sub-description ul {
    padding: 10px 0 50px;
  }
}
.sub-page .sub-description ul li {
  font-size: 14px;
  display: inline-block;
  padding: 2px;
}
.sub-page .sub-description ul li:not(:last-child)::after {
  content: ">";
  padding-left: 5px;
  color: #094DAA;
}
.sub-page .sub-description ul li a {
  color: #094DAA;
}
.sub-page .sub-description h3 {
  position: relative;
  text-align: center;
  color: #094DAA;
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 60px;
}
@media (max-width: 900px) {
  .sub-page .sub-description h3 {
    font-size: 21px;
  }
}
.sub-page .sub-description h3::after {
  content: "";
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFBE00;
  width: 140px;
  height: 3px;
}
.sub-page .contact {
  background: linear-gradient(#2d67b8 10%, #2d67b8 33%, #5FC0F6 75%);
}

.sub-blue-area {
  background: #D8EEF2;
}

/*============
↑ サブ 共通
=============*/
/*============
↓ 初めての方へ
=============*/
.beginneg-page .sub-blue-area {
  padding: 80px 0;
}
.beginneg-page .sub-blue-area .three-point {
  margin-bottom: 70px;
}
@media (max-width: 630px) {
  .beginneg-page .sub-blue-area .three-point {
    margin-bottom: 50px;
  }
}
.beginneg-page .sub-blue-area .three-point h3 {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  background-color: #fff;
  padding: 30px 0 10px;
  border-top: 2.5px solid #094DAA;
  border-bottom: 2.5px solid #094DAA;
  margin-bottom: 30px;
}
@media (max-width: 630px) {
  .beginneg-page .sub-blue-area .three-point h3 {
    font-size: 22px;
  }
}
.beginneg-page .sub-blue-area .three-point h3 span {
  position: relative;
  font-size: 1.5em;
  color: #094DAA;
}
.beginneg-page .sub-blue-area .three-point h3 span::after {
  content: url(../img/beginneg-star.png);
  position: absolute;
  top: -179px;
  left: -1099%;
  scale: 0.05;
}
@media (max-width: 630px) {
  .beginneg-page .sub-blue-area .three-point h3 span::after {
    top: -180px;
    left: -1254%;
  }
}
.beginneg-page .sub-blue-area .three-point ul {
  display: flex;
}
@media (max-width: 630px) {
  .beginneg-page .sub-blue-area .three-point ul {
    flex-direction: column;
  }
}
.beginneg-page .sub-blue-area .three-point ul li {
  text-align: center;
  margin-bottom: 10px;
}
@media (max-width: 630px) {
  .beginneg-page .sub-blue-area .three-point ul li img {
    max-width: 400px;
    width: 100%;
  }
}
.beginneg-page .sub-blue-area ul.five-point li {
  display: flex;
  gap: 5%;
  background: #fff;
  padding: 4%;
}
@media (max-width: 630px) {
  .beginneg-page .sub-blue-area ul.five-point li {
    padding: 6%;
  }
}
.beginneg-page .sub-blue-area ul.five-point li.beginneg-left {
  flex-direction: row-reverse;
}
@media (max-width: 630px) {
  .beginneg-page .sub-blue-area ul.five-point li.beginneg-left {
    flex-direction: column-reverse;
  }
}
.beginneg-page .sub-blue-area ul.five-point li.beginneg-right {
  flex-direction: row;
  margin: 50px 0;
}
@media (max-width: 900px) {
  .beginneg-page .sub-blue-area ul.five-point li.beginneg-right {
    margin: 30px 0;
  }
}
@media (max-width: 630px) {
  .beginneg-page .sub-blue-area ul.five-point li.beginneg-right {
    flex-direction: column-reverse;
  }
}
.beginneg-page .sub-blue-area ul.five-point li .beginneg-p {
  width: 60%;
}
@media (max-width: 630px) {
  .beginneg-page .sub-blue-area ul.five-point li .beginneg-p {
    width: 100%;
    margin-bottom: 30px;
  }
}
.beginneg-page .sub-blue-area ul.five-point li .beginneg-p h3 {
  font-size: 25px;
  color: #094DAA;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (max-width: 900px) {
  .beginneg-page .sub-blue-area ul.five-point li .beginneg-p h3 {
    font-size: 22px;
  }
}
@media (max-width: 630px) {
  .beginneg-page .sub-blue-area ul.five-point li .beginneg-p h3 {
    font-size: 22px;
  }
}
.beginneg-page .sub-blue-area ul.five-point li img {
  max-width: 380px;
  width: 40%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 630px) {
  .beginneg-page .sub-blue-area ul.five-point li img {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
}

/*============
↑ 初めての方へ
=============*/
/*============
↓ 買取の流れ
=============*/
.flow-page .sub-description {
  padding: 0 0 10px;
}
.flow-page .sub-description h3 {
  position: relative;
  text-align: center;
  color: #094DAA;
  font-size: 25px;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 60px;
}
@media (max-width: 900px) {
  .flow-page .sub-description h3 {
    font-size: 21px;
  }
}
@media (max-width: 900px) {
  .flow-page .sub-description h3::after {
    top: 60px !important;
  }
}
.flow-page .flow-area1 ul {
  margin-bottom: 100px;
}
@media (max-width: 630px) {
  .flow-page .flow-area1 ul {
    margin-bottom: 70px;
  }
}
.flow-page .flow-area1 ul li {
  position: relative;
  background-color: #D8EEF2;
  padding: 5% 4% 4% 7%;
  margin-left: 50px;
}
@media (max-width: 900px) {
  .flow-page .flow-area1 ul li {
    margin-left: 30px;
  }
}
@media (max-width: 630px) {
  .flow-page .flow-area1 ul li {
    padding: 6% 3% 6% 15%;
  }
}
.flow-page .flow-area1 ul li .flow-step {
  position: absolute;
  top: 50%;
  left: -35px;
  transform: translateY(-50%);
  color: #094DAA;
  background: #FFBE00;
  width: 90px;
  height: 90px;
  border-radius: 50px;
  font-size: 16px;
  text-align: center;
  font-weight: lighter;
  line-height: 1.1;
}
@media (max-width: 1000px) {
  .flow-page .flow-area1 ul li .flow-step {
    width: 70px;
    height: 70px;
    font-size: 14px;
    line-height: 0.8;
  }
}
.flow-page .flow-area1 ul li .flow-step .step_area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 0.95;
}
.flow-page .flow-area1 ul li .flow-step .step_area .step_num {
  font-weight: bold;
  font-size: 40px;
}
@media (max-width: 1000px) {
  .flow-page .flow-area1 ul li .flow-step .step_area .step_num {
    font-size: 28px;
  }
}
.flow-page .flow-area1 ul li .flow-row {
  display: flex;
  gap: 3%;
}
.flow-page .flow-area1 ul li .flow-row .flow-left {
  width: 14%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 630px) {
  .flow-page .flow-area1 ul li .flow-row .flow-left {
    display: none;
  }
}
.flow-page .flow-area1 ul li .flow-row .flow-left img {
  max-width: 100px;
  width: 100%;
}
.flow-page .flow-area1 ul li .flow-row .flow-right {
  width: 83%;
}
@media (max-width: 630px) {
  .flow-page .flow-area1 ul li .flow-row .flow-right {
    width: 95%;
  }
}
.flow-page .flow-area1 ul li .flow-row .flow-right h3 {
  position: relative;
  font-size: 25px;
  font-weight: bold;
  color: #094DAA;
  margin-bottom: 30px;
}
@media (max-width: 900px) {
  .flow-page .flow-area1 ul li .flow-row .flow-right h3 {
    margin-bottom: 15px;
  }
}
@media (max-width: 630px) {
  .flow-page .flow-area1 ul li .flow-row .flow-right h3 {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 20px;
    line-height: 1.3;
    min-height: 50px;
    padding-left: 50px;
    margin-bottom: 5px;
  }
}
.flow-page .flow-area1 ul li .flow-row .flow-right h3 img {
  position: absolute;
  display: none;
}
@media (max-width: 630px) {
  .flow-page .flow-area1 ul li .flow-row .flow-right h3 img {
    display: block;
    width: 45px;
    top: 3px;
    left: -3px;
  }
}
.flow-page .flow-area1 ul li .flow-row .flow-right p {
  font-size: 15px;
  line-height: 1.8;
}
.flow-page .flow-area1 ul .step-item {
  text-align: center;
}
.flow-page .flow-area1 ul .step-item img {
  width: 30px;
  rotate: 90deg;
  margin: 20px 0 15px;
}
@media (max-width: 630px) {
  .flow-page .flow-area1 ul .step-item img {
    width: 20px;
  }
}
.flow-page .flow-area2 .container {
  padding: 70px 0 90px;
}
@media (max-width: 630px) {
  .flow-page .flow-area2 .container {
    padding: 70px 0 70px;
  }
}
.flow-page .flow-area2 .container .flow-area2-bg1 {
  background: #fff;
  border: solid 2.5px #094DAA;
  border-radius: 10px;
  padding: 5px;
}
.flow-page .flow-area2 .container .flow-area2-bg1 .flow-area2-bg2 {
  border: dotted 2.5px #094DAA;
  border-radius: 5px;
  padding: 5%;
}
@media (max-width: 630px) {
  .flow-page .flow-area2 .container .flow-area2-bg1 .flow-area2-bg2 {
    padding: 9% 5% 7% 5%;
  }
}
.flow-page .flow-area2 .container .flow-area2-bg1 .flow-area2-bg2 h3 {
  position: relative;
  text-align: center;
  color: #094DAA;
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 50px;
}
@media (max-width: 630px) {
  .flow-page .flow-area2 .container .flow-area2-bg1 .flow-area2-bg2 h3 {
    font-size: 19px;
    margin-bottom: 30px;
  }
}
.flow-page .flow-area2 .container .flow-area2-bg1 .flow-area2-bg2 h3::after {
  content: "";
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFBE00;
  width: 140px;
  height: 3px;
}
@media (max-width: 630px) {
  .flow-page .flow-area2 .container .flow-area2-bg1 .flow-area2-bg2 h3::after {
    top: 30px;
  }
}
/*============
↑ 買取の流れ
=============*/
/*============
↓ 取扱商品一覧
=============*/
.introduction-page .sub-description h3 {
  position: relative;
  text-align: center;
  color: #094DAA;
  font-size: 25px;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 60px;
}
@media (max-width: 900px) {
  .introduction-page .sub-description h3 {
    font-size: 21px;
  }
}
.introduction-page .sub-description h3::after {
  content: "";
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFBE00;
  width: 140px;
  height: 3px;
}
@media (max-width: 900px) {
  .introduction-page .sub-description h3::after {
    top: 65px;
  }
}
.introduction-page .sub-blue-area {
  padding: 100px 0;
}
@media (max-width: 900px) {
  .introduction-page .sub-blue-area {
    padding: 100px 0 70px;
  }
}
@media (max-width: 630px) {
  .introduction-page .sub-blue-area {
    padding: 70px 0 40px;
  }
}
.introduction-page .sub-blue-area .introduction_list {
  display: flex;
  flex-wrap: wrap;
  gap: 1%;
  margin-bottom: 30px;
}
@media (max-width: 630px) {
  .introduction-page .sub-blue-area .introduction_list {
    gap: 3%;
  }
}
.introduction-page .sub-blue-area .introduction_list li {
  width: 24.25%;
  margin-bottom: 1%;
}
@media (max-width: 630px) {
  .introduction-page .sub-blue-area .introduction_list li {
    width: 48.5%;
    margin-bottom: 3%;
  }
}
.introduction-page .sub-blue-area .introduction_list li a {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  border-radius: 10px;
  padding: 10px 15px 20px;
  transition: all 0.3s;
}
@media (max-width: 1000px) {
  .introduction-page .sub-blue-area .introduction_list li a {
    font-size: 17px;
  }
}
@media (max-width: 900px) {
  .introduction-page .sub-blue-area .introduction_list li a {
    font-size: 15px;
  }
}
@media (max-width: 630px) {
  .introduction-page .sub-blue-area .introduction_list li a {
    font-size: 15px;
  }
}
.introduction-page .sub-blue-area .introduction_list li a:hover img {
  scale: 1.15;
}
.introduction-page .sub-blue-area .introduction_list li a img {
  width: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  scale: 1;
  transition: all 0.3s;
}

/*============
↑ 取扱商品一覧
=============*/
/*============
↓ 取扱商品一覧 個別
=============*/
.item-page .sub-description {
  background: #D8EEF2;
  padding-bottom: 30px;
}
.item-page .sub-blue-area {
  padding-bottom: 90px;
}
.item-page .sub-blue-area .item-area .container {
  padding: 0px 0 60px;
}
@media (max-width: 630px) {
  .item-page .sub-blue-area .item-area .container {
    padding: 0px 0 70px;
  }
}
.item-page .sub-blue-area .item-area .container .item-area2-bg1 {
  background: #fff;
  border: solid 2.5px #094DAA;
  border-radius: 10px;
  padding: 5px;
}
.item-page .sub-blue-area .item-area .container .item-area2-bg1 .item-area2-bg2 {
  border: dotted 2.5px #094DAA;
  border-radius: 5px;
  padding: 5%;
}
@media (max-width: 630px) {
  .item-page .sub-blue-area .item-area .container .item-area2-bg1 .item-area2-bg2 {
    padding: 9% 5% 7% 5%;
  }
}
.item-page .sub-blue-area .item-area .container .item-area2-bg1 .item-area2-bg2 h3 {
  position: relative;
  text-align: center;
  color: #094DAA;
  font-size: 23px;
  font-weight: bold;
  letter-spacing: 3px;
  margin-bottom: 50px;
}
@media (max-width: 630px) {
  .item-page .sub-blue-area .item-area .container .item-area2-bg1 .item-area2-bg2 h3 {
    font-size: 19px;
    margin-bottom: 30px;
  }
}
.item-page .sub-blue-area .item-area .container .item-area2-bg1 .item-area2-bg2 h3::after {
  content: "";
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFBE00;
  width: 140px;
  height: 3px;
}
@media (max-width: 630px) {
  .item-page .sub-blue-area .item-area .container .item-area2-bg1 .item-area2-bg2 h3::after {
    top: 30px;
  }
}
.item-page .sub-blue-area .item-area .container .item-area2-bg1 .item-area2-bg2 .item-content {
  margin-bottom: 20px;
}
.item-page .sub-blue-area .item-area .container .item-area2-bg1 .item-area2-bg2 .item-list {
  background: #FFF4C5;
  border-radius: 10px;
  font-size: 14px;
  font-weight: bold;
  padding: 20px 30px;
}
.item-page .sub-blue-area .link_btn {
  max-width: 125px;
  padding-left: 30px;
}

/*============
↑ 取扱商品一覧 個別
=============*/
/*============
↓ よくある質問
=============*/
@media (max-width: 630px) {
  .faq-page .sub-description h3 {
    line-height: 1.3;
  }
}
@media (max-width: 630px) {
  .faq-page .sub-description h3::after {
    top: 64px;
  }
}
.faq-page .faq-content {
  padding: 90px 0;
}
@media (max-width: 630px) {
  .faq-page .faq-content {
    padding: 70px 0;
  }
}
.faq-page .faq-content .faq-accordion {
  margin: 0 auto;
}
.faq-page .faq-content .faq-accordion .panel {
  margin-bottom: 10px;
}
.faq-page .faq-content .faq-accordion .panel .panel-header {
  position: relative;
  width: 100%;
  padding: 20px 20px 20px 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #094DAA;
  color: #fff;
  font-weight: bold;
  border: none;
  cursor: pointer;
  font-size: 18px;
  text-align: left;
  transition: all 0.3s;
}
@media (max-width: 900px) {
  .faq-page .faq-content .faq-accordion .panel .panel-header {
    font-size: 17px;
    padding: 20px 20px 20px 75px;
  }
}
@media (max-width: 630px) {
  .faq-page .faq-content .faq-accordion .panel .panel-header {
    font-size: 15px;
  }
}
.faq-page .faq-content .faq-accordion .panel .panel-header:hover {
  background: #1a5fc0;
}
.faq-page .faq-content .faq-accordion .panel .panel-header::before {
  content: "Q";
  position: absolute;
  top: 50%;
  left: 21px;
  transform: translateY(-50%);
  color: #1a5fc0;
  background: #FFBE00;
  font-size: 25px;
  text-align: center;
  align-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50px;
}
@media (max-width: 900px) {
  .faq-page .faq-content .faq-accordion .panel .panel-header::before {
    font-size: 20px;
    width: 40px;
    height: 40px;
  }
}
.faq-page .faq-content .faq-accordion .panel .panel-header .icon {
  font-size: 22px;
  transform: rotate(0deg);
  transition: transform 0.3s;
}
@media (max-width: 630px) {
  .faq-page .faq-content .faq-accordion .panel .panel-header .icon {
    padding-left: 10px;
  }
}
.faq-page .faq-content .faq-accordion .panel .panel-header.active .icon {
  transform: rotate(45deg);
}
.faq-page .faq-content .faq-accordion .panel .panel-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
}
.faq-page .faq-content .faq-accordion .panel .panel-content .panel-body {
  position: relative;
  background: #fff;
  padding: 25px 20px 25px 90px;
  border-top: 1px solid #eee;
}
@media (max-width: 900px) {
  .faq-page .faq-content .faq-accordion .panel .panel-content .panel-body {
    padding: 25px 20px 25px 75px;
  }
}
.faq-page .faq-content .faq-accordion .panel .panel-content .panel-body::before {
  content: "A";
  position: absolute;
  top: 50%;
  left: 21px;
  transform: translateY(-50%);
  color: #fff;
  background: #1a5fc0;
  font-size: 25px;
  text-align: center;
  align-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50px;
}
@media (max-width: 900px) {
  .faq-page .faq-content .faq-accordion .panel .panel-content .panel-body::before {
    font-size: 20px;
    width: 40px;
    height: 40px;
  }
}

/*============
↑ よくある質問
=============*/
/*============
↓ 会社概要
=============*/
.company-page .sub-description {
  max-width: 1000px;
  margin: 0 auto;
  background-image: url(../img/company-city.png);
  background-repeat: no-repeat;
  background-size: 350px;
  background-position: 0px 100%;
  padding: 0 0 130px;
}
@media (max-width: 630px) {
  .company-page .sub-description {
    background-size: 250px;
  }
}
.company-page .sub-description h3 {
  margin-top: 50px;
}
@media (max-width: 630px) {
  .company-page .sub-description h3 {
    margin-top: 0px;
  }
}
.company-page .sub-description p {
  font-size: 16px;
  line-height: 2.3;
  margin-bottom: 30px;
}
@media (max-width: 630px) {
  .company-page .sub-description p {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 20px;
  }
}
.company-page .sub-description .company-img {
  text-align: right;
}
.company-page .sub-description .company-img img {
  width: 100%;
  max-width: 230px;
}
@media (max-width: 630px) {
  .company-page .sub-description .company-img img {
    max-width: 200px;
  }
}
.company-page .company-content {
  background: #2d67b8;
  padding: 130px 0 50px;
}
@media (max-width: 900px) {
  .company-page .company-content {
    padding: 90px 0 30px;
  }
}
@media (max-width: 900px) {
  .company-page .company-content {
    padding: 70px 0 30px;
  }
}
.company-page .company-content .company-content-row {
  display: flex;
  align-items: flex-start;
  gap: 5%;
}
@media (max-width: 630px) {
  .company-page .company-content .company-content-row {
    flex-direction: column;
  }
}
.company-page .company-content .company-content-row .company-content-left {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
}
@media (max-width: 900px) {
  .company-page .company-content .company-content-row .company-content-left {
    width: 55%;
  }
}
@media (max-width: 630px) {
  .company-page .company-content .company-content-row .company-content-left {
    width: 100%;
    margin-bottom: 30px;
  }
}
.company-page .company-content .company-content-row .company-content-left dt {
  width: 35%;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  color: #fff;
  padding: 10px 10% 10px 0;
}
@media (max-width: 900px) {
  .company-page .company-content .company-content-row .company-content-left dt {
    width: 130px;
    padding: 10px 5% 10px 0;
  }
}
@media (max-width: 630px) {
  .company-page .company-content .company-content-row .company-content-left dt {
    width: 130px;
    font-size: 15px;
    padding: 10px 9% 10px 0;
  }
}
.company-page .company-content .company-content-row .company-content-left dt:not(:nth-last-of-type(8)) {
  border-top: 1px solid #fff;
}
.company-page .company-content .company-content-row .company-content-left dd {
  width: 65%;
  color: #fff;
  padding: 10px 0;
}
@media (max-width: 900px) {
  .company-page .company-content .company-content-row .company-content-left dd {
    width: calc(100% - 130px);
  }
}
@media (max-width: 630px) {
  .company-page .company-content .company-content-row .company-content-left dd {
    width: calc(100% - 130px);
    font-size: 15px;
    pointer-events: none;
    text-decoration: none;
  }
}
.company-page .company-content .company-content-row .company-content-left dd:not(:nth-last-of-type(8)) {
  border-top: 1px solid #fff;
}
.company-page .company-content .company-content-row .company-content-left dd a {
  pointer-events: none;
  text-decoration: none;
}
.company-page .company-content .company-content-right {
  width: 45%;
}
@media (max-width: 900px) {
  .company-page .company-content .company-content-right {
    width: 40%;
  }
}
@media (max-width: 630px) {
  .company-page .company-content .company-content-right {
    width: 100%;
  }
}
.company-page .company-content .company-content-right iframe {
  width: 100%;
  height: 400px;
}
@media (max-width: 630px) {
  .company-page .company-content .company-content-right iframe {
    height: 200px;
  }
}
.company-page .company-area {
  background: #2d67b8;
  padding: 100px 0;
}
@media (max-width: 900px) {
  .company-page .company-area {
    padding: 70px 0 50px;
  }
}
.company-page .company-area .container .area_row {
  display: flex;
  gap: 5%;
}
@media (max-width: 630px) {
  .company-page .company-area .container .area_row {
    flex-direction: column;
    align-items: center;
  }
}
.company-page .company-area .container .area_row .area_left {
  width: 55%;
}
@media (max-width: 630px) {
  .company-page .company-area .container .area_row .area_left {
    width: 100%;
    margin-bottom: 30px;
  }
}
.company-page .company-area .container .area_row .area_left .prefectures {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.company-page .company-area .container .area_row .area_left .prefectures li {
  color: #094DAA;
  font-size: 14px;
  background: #fff;
  border-radius: 50px;
  padding: 3px 10px;
  margin-bottom: 10px;
}
@media (max-width: 1000px) {
  .company-page .company-area .container .area_row .area_left .prefectures li {
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  .company-page .company-area .container .area_row .area_left .prefectures li {
    font-size: 13px;
  }
}
.company-page .company-area .container .area_row .area_left .municipality li {
  color: #fff;
  font-size: 14px;
  border-top: solid 1px #fff;
  padding: 10px 0;
}
@media (max-width: 1000px) {
  .company-page .company-area .container .area_row .area_left .municipality li {
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  .company-page .company-area .container .area_row .area_left .municipality li {
    font-size: 13px;
  }
}
.company-page .company-area .container .area_row .area_left .municipality li span {
  white-space: nowrap;
}
.company-page .company-area .container .area_row .area_right {
  width: 43%;
  text-align: right;
}
@media (max-width: 630px) {
  .company-page .company-area .container .area_row .area_right {
    max-width: 350px;
    width: 100%;
    text-align: center;
  }
}
.company-page .company-area .container .area_row .area_right img {
  width: 100%;
  max-width: 400px;
}
@media (max-width: 630px) {
  .company-page .company-area .container .area_row .area_right img {
    max-width: 320px;
  }
}
.company-page h3 {
  position: relative;
  font-size: 25px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 50px;
}
.company-page h3::after {
  content: "";
  position: absolute;
  top: 38px;
  left: 0;
  background: #FFBE00;
  width: 100%;
  height: 3px;
}

/*============
↑ 会社概要
=============*/
/*============
↓ ブログ
=============*/
@media (max-width: 630px) {
  .blog-page .sub-description h3 {
    line-height: 1.3;
  }
}
@media (max-width: 630px) {
  .blog-page .sub-description h3::after {
    top: 64px;
  }
}
.blog-page .sub-blue-area {
  padding: 90px 0 120px;
}
@media (max-width: 630px) {
  .blog-page .sub-blue-area {
    padding: 60px 0 80px;
  }
}
.blog-page .sub-blue-area .blog-row {
  display: flex;
  justify-content: space-between;
  gap: 5%;
}
@media (max-width: 630px) {
  .blog-page .sub-blue-area .blog-row {
    flex-direction: column;
    width: 100%;
  }
}
.blog-page .sub-blue-area .blog-row .blog-left {
  width: 70%;
  text-align: center;
}
@media (max-width: 630px) {
  .blog-page .sub-blue-area .blog-row .blog-left {
    width: 100%;
    margin-bottom: 70px;
  }
}
.blog-page .sub-blue-area .blog-row .blog-left li {
  border-bottom: 1px solid #333;
}
.blog-page .sub-blue-area .blog-row .blog-left li a {
  display: block;
  background: transparent;
  padding-top: 20px;
  padding-bottom: 40px;
  transition: all 0.3s;
}
@media (max-width: 900px) {
  .blog-page .sub-blue-area .blog-row .blog-left li a {
    padding-top: 15px;
    padding-bottom: 30px;
  }
}
.blog-page .sub-blue-area .blog-row .blog-left li a:hover {
  background: #E7F5F7;
}
.blog-page .sub-blue-area .blog-row .blog-left li a .blog-content {
  display: flex;
  align-items: center;
  margin-bottom: 11px;
}
.blog-page .sub-blue-area .blog-row .blog-left li a .blog-content time {
  display: block;
  font-size: 17px;
  color: #094DAA;
  margin-left: 10px;
  margin-right: 10px;
}
@media (max-width: 900px) {
  .blog-page .sub-blue-area .blog-row .blog-left li a .blog-content time {
    font-size: 16px;
  }
}
@media (max-width: 630px) {
  .blog-page .sub-blue-area .blog-row .blog-left li a .blog-content time {
    font-size: 15px;
  }
}
.blog-page .sub-blue-area .blog-row .blog-left li a .blog-content .blog-category-title {
  font-size: 15px;
  font-weight: bold;
  color: #094DAA;
  background: #fff;
  border: 1px solid #094DAA;
  border-radius: 50px;
  padding: 2px 10px;
}
@media (max-width: 900px) {
  .blog-page .sub-blue-area .blog-row .blog-left li a .blog-content .blog-category-title {
    font-size: 13px;
    padding: 2px 7px;
  }
}
@media (max-width: 630px) {
  .blog-page .sub-blue-area .blog-row .blog-left li a .blog-content .blog-category-title {
    font-size: 13px;
    padding: 2px 7px;
  }
}
.blog-page .sub-blue-area .blog-row .blog-left li a h3 {
  font-size: 21px;
  font-weight: bold;
  color: #094DAA;
  line-height: 1.5;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-left: 10px;
}
@media (max-width: 630px) {
  .blog-page .sub-blue-area .blog-row .blog-left li a h3 {
    font-size: 19px;
  }
}
.blog-page .sub-blue-area .blog-row .post_none {
  width: 70%;
  text-align: center;
  margin-top: 50px;
}
@media (max-width: 630px) {
  .blog-page .sub-blue-area .blog-row .post_none {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 100px;
  }
}
.blog-page .sub-blue-area .blog-row .blog-left2 {
  width: 70%;
  text-align: center;
}
@media (max-width: 630px) {
  .blog-page .sub-blue-area .blog-row .blog-left2 {
    width: 100%;
  }
}
.blog-page .sub-blue-area .blog-row .blog-left2 .blog-content2 {
  width: 100%;
  background: #fff;
  border-radius: 15px;
  padding: 5% 5% 10%;
  margin-bottom: 50px;
}
@media (max-width: 630px) {
  .blog-page .sub-blue-area .blog-row .blog-left2 .blog-content2 {
    padding: 6% 3% 8% 3%;
  }
}
.blog-page .sub-blue-area .blog-row .blog-left2 .blog-content2 h3 {
  font-size: 25px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 10px;
}
@media (max-width: 630px) {
  .blog-page .sub-blue-area .blog-row .blog-left2 .blog-content2 h3 {
    line-height: 1.4;
    font-size: 23px;
  }
}
.blog-page .sub-blue-area .blog-row .blog-left2 .blog-content2 time {
  display: block;
  font-size: 15px;
  color: #094DAA;
  font-weight: bold;
  margin-bottom: 30px;
}
@media (max-width: 630px) {
  .blog-page .sub-blue-area .blog-row .blog-left2 .blog-content2 time {
    margin-bottom: 20px;
  }
}
.blog-page .sub-blue-area .blog-row .blog-left2 .blog-content2 hr {
  border-bottom: none;
  margin-bottom: 30px;
}
.blog-page .sub-blue-area .blog-row .blog-left2 .blog-content2 .blog-thumbnail img {
  margin-bottom: 20px;
}
.blog-page .sub-blue-area .blog-row .blog-left2 .link_btn {
  max-width: 120px;
  padding-left: 25px;
  margin: 0 auto;
}
@media (max-width: 630px) {
  .blog-page .sub-blue-area .blog-row .blog-left2 .link_btn {
    margin-bottom: 60px;
  }
}
.blog-page .sub-blue-area .blog-row .blog-right {
  width: 25%;
}
@media (max-width: 630px) {
  .blog-page .sub-blue-area .blog-row .blog-right {
    width: 100%;
  }
}
.blog-page .sub-blue-area .blog-row .blog-right .blog-category {
  background: #fff;
  border-radius: 15px;
  padding: 8%;
}
.blog-page .sub-blue-area .blog-row .blog-right .blog-category h3 {
  position: relative;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
}
.blog-page .sub-blue-area .blog-row .blog-right .blog-category h3::after {
  content: "";
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFBE00;
  width: 100%;
  height: 3px;
}
.blog-page .sub-blue-area .blog-row .blog-right .blog-category ul li {
  margin-bottom: 8px;
}
.blog-page .sub-blue-area .blog-row .blog-right .blog-category ul li a {
  display: block;
  font-size: 15px;
  font-weight: bold;
  color: #094DAA;
  background: transparent;
  border: 1px solid #094DAA;
  border-radius: 50px;
  padding: 5px 15px;
  transition: all 0.3s;
}
.blog-page .sub-blue-area .blog-row .blog-right .blog-category ul li a:hover {
  background: #094DAA;
  color: #fff;
}
.blog-page .sub-blue-area .blog-row .blog-right .blog-category ul li a.active_color {
  background: #094DAA;
  color: #fff;
}

/*============
↑ ブログ
=============*/
/*============
↓ お問い合わせ
=============*/
@media (max-width: 630px) {
  .contact-page h3 {
    line-height: 1.4;
  }
}
@media (max-width: 630px) {
  .contact-page h3::after {
    top: 64px !important;
  }
}
.contact-page .sub-blue-area {
  padding: 80px 0;
}
.contact-page .sub-blue-area .form-text {
  display: flex;
  gap: 2%;
  margin-bottom: 10px;
}
@media (max-width: 630px) {
  .contact-page .sub-blue-area .form-text {
    flex-direction: column;
  }
}
.contact-page .sub-blue-area .form-text .form1 {
  width: 30%;
}
@media (max-width: 630px) {
  .contact-page .sub-blue-area .form-text .form1 {
    width: 100%;
  }
}
.contact-page .sub-blue-area .form-text .form1 label {
  display: block;
  width: 100%;
  background: #1a5fc0;
  font-size: 18px;
  color: #fff;
  box-sizing: border-box;
  padding: 5% 5%;
}
@media (max-width: 630px) {
  .contact-page .sub-blue-area .form-text .form1 label {
    font-size: 15px;
    font-weight: bold;
    background: transparent;
    color: #094DAA;
    padding: 0%;
    margin-bottom: 5px;
  }
}
.contact-page .sub-blue-area .form-text .form2 {
  width: 70%;
}
@media (max-width: 630px) {
  .contact-page .sub-blue-area .form-text .form2 {
    width: 100%;
    height: 50px;
    margin-bottom: 15px;
  }
}
.contact-page .sub-blue-area .form-text .form2 input {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 1px solid #1a5fc0;
  padding-left: 20px;
}
.contact-page .sub-blue-area .form-text .form2 input::-moz-placeholder {
  font-size: 14px;
  color: #9e9e9e;
}
.contact-page .sub-blue-area .form-text .form2 input::placeholder {
  font-size: 14px;
  color: #9e9e9e;
}
.contact-page .sub-blue-area .form-content {
  display: flex;
  gap: 2%;
}
@media (max-width: 630px) {
  .contact-page .sub-blue-area .form-content {
    flex-direction: column;
  }
}
.contact-page .sub-blue-area .form-content .form1 {
  height: 250px;
  width: 30%;
}
@media (max-width: 630px) {
  .contact-page .sub-blue-area .form-content .form1 {
    width: 100%;
    height: auto;
  }
}
.contact-page .sub-blue-area .form-content .form1 label {
  display: block;
  align-content: center;
  width: 100%;
  height: 100%;
  background: #1a5fc0;
  font-size: 18px;
  color: #fff;
  box-sizing: border-box;
  padding: 5% 5%;
}
@media (max-width: 630px) {
  .contact-page .sub-blue-area .form-content .form1 label {
    background: transparent;
    color: #094DAA;
    font-size: 15px;
    font-weight: bold;
    padding: 0%;
    margin-bottom: 5px;
  }
}
.contact-page .sub-blue-area .form-content .form2 {
  height: 250px;
  width: 70%;
}
@media (max-width: 630px) {
  .contact-page .sub-blue-area .form-content .form2 {
    width: 100%;
  }
}
.contact-page .sub-blue-area .form-content .form2 textarea {
  width: 100%;
  height: 100%;
  display: block;
  box-sizing: border-box;
  border: 1px solid #1a5fc0;
  padding: 15px;
}
.contact-page .sub-blue-area .sub {
  display: block;
  margin: 0 auto;
  text-align: center;
  background: #1a5fc0;
  border: none;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #fff;
  width: 100%;
  max-width: 300px;
  border-radius: 50px;
  padding: 15px;
  margin-top: 50px;
  transition: all 0.3s;
}
.contact-page .sub-blue-area .sub:hover {
  background: #2470db;
}
@media (max-width: 630px) {
  .contact-page .sub-blue-area .sub {
    font-size: 15px;
    padding: 10px 0;
  }
}

.wpcf7-not-valid-tip {
  position: relative;
  z-index: 2;
  font-weight: bold;
}

/*============
↑ お問い合わせ
=============*/
/*============
↓  ページネーション
=============*/
.wp-pagenavi {
  clear: both;
  text-align: center;
  margin-top: 70px;
  margin-bottom: 50px;
}

.wp-pagenavi a, .wp-pagenavi span {
  color: #161616;
  font-size: 18px;
  background-color: #FFF;
  border: solid 1px #e0e0d2;
  padding: 10px 20px;
  margin: 0 4px;
  white-space: nowrap;
  transition: 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
}
@media (max-width: 630px) {
  .wp-pagenavi a, .wp-pagenavi span {
    font-size: 16px;
    padding: 5px 16px;
    margin: 0 3px;
  }
}

.wp-pagenavi a:hover {
  color: #FFF;
  background-color: #1a5fc0;
  border-color: #1a5fc0;
}

.wp-pagenavi span.current {
  color: #FFF;
  background-color: #094DAA;
  border-color: #094DAA;
  font-weight: bold;
}

/*============
↑  ページネーション
=============*/
/*============
↓ プライバシーポリシー
=============*/
.content-page .sub-blue-area {
  padding: 100px 0;
}
@media (max-width: 630px) {
  .content-page .sub-blue-area {
    padding: 60px 0;
  }
}
.content-page .sub-blue-area h2 {
  font-size: 25px;
  font-weight: bold;
  margin-top: 60px;
}
.content-page .sub-blue-area h3 {
  font-size: 20px;
  font-weight: bold;
  margin-top: 40px;
}
.content-page .sub-blue-area h4 {
  font-size: 20px;
  margin-top: 40px;
}
.content-page .sub-blue-area p {
  line-height: 1.6;
  margin-top: 20px;
}

/*============
↑ プライバシーポリシー
=============*/
/*============
↓ 404
=============*/
.page-404 .sub-blue-area {
  padding: 260px 0 150px;
}
@media (max-width: 630px) {
  .page-404 .sub-blue-area {
    padding: 180px 0 150px;
  }
}
.page-404 .sub-blue-area .container {
  text-align: center;
}
.page-404 .sub-blue-area .container img {
  display: block;
  max-width: 250px;
  margin: 0 auto 50px;
}
@media (max-width: 900px) {
  .page-404 .sub-blue-area .container img {
    width: 200px;
  }
}
@media (max-width: 630px) {
  .page-404 .sub-blue-area .container img {
    max-width: 160px;
  }
}
.page-404 .sub-blue-area .container a {
  display: block;
  max-width: 300px;
  background: #094DAA;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  margin: 0 auto;
  transition: 0.3s all;
}
.page-404 .sub-blue-area .container a:hover {
  background: #1a5fc0;
}

/*============
↑ 404
=============*//*# sourceMappingURL=format.css.map */