@charset "utf-8";
/* =======================
  SP用デザイン
========================== */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "BIZ UDGothic", "Helvetica Neue", Arial,
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.6rem; /* 16px*/
  font-weight: 400;
}

.font-size_small {
  font-size: 1.6rem;
}
.font-size_small-s {
  font-size: 1.4rem;
}

.pc {
  display: none;
}

.center {
  display: flex;
  justify-content: center;
}

/* ============
  ヘッダー
============ */
header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1ch;
  width: 100%;
  height: 250px;
  margin-bottom: 30px;
  background-size: cover;
  border: none;
  position: relative;
}

.header__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  gap: 1ch;
  width: 70%;
  height: 60%;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 3px;
}
.header__title__logo {
  width: 250px;
  height: 120px;
  background: url(../img/kaneko-mobile.png) no-repeat center center;
  background-size: 90%;
}
.header__title__logo a {
  display: block;
  width: 100%;
  height: 100%;
}

/* ハンバーガーメニュー用 */
.menu-btn {
  position: fixed;
  top: 0px;
  right: 0px;
  display: flex;
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #3eaca8c0;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}
.menu-btn span:before {
  bottom: 8px;
}
.menu-btn span:after {
  top: 8px;
}
#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);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #3eaca8;
  transition: all 0.5s; /*アニメーション設定*/
}
.menu-content ul {
  padding: 70px 10px 0;
}
.menu-content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}
.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}
#menu-btn-check:checked ~ .menu-content {
  left: 0; /*メニューを画面内へ*/
}
#menu-btn-check {
  display: none;
}

/* ============
  メイン main
============ */
section {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
h2 {
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 5pt;
  text-shadow: 0px 1px 1px #ffffff;
  background: url(../img/h2_bg.jpg) no-repeat center bottom;
  background-size: contain;
  width: 200px;
  height: 40px;
  text-align: center;
  margin-bottom: 20px;
}

h2 > span {
  display: inline-block;
  padding-bottom: 1px;
}

h3 {
  font-weight: 700;
  font-size: 2rem;
}

p {
  font-size: 2rem;
  line-height: 175%;
  text-align: center;
}

/* --- お知らせ --- */

.news__text {
  width: 80%;
  margin: 0px auto;
  line-height: 175%;
}
.news__text a {
  text-decoration: underline;
}
.maintext {
  text-align: left;
}
.news_maintext__h4 {
  margin-top: 30px;
}

/* --- はじめに --- */
.intro__text {
  margin-bottom: 20px;
  font-size: 1.8rem;
  line-height: 175%;
  text-align: center;
}
.intro__text a {
  text-decoration: underline;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact__btn--call {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 50px;
  background: #ffffff;
  border: 3px solid #f4b207;
  border-radius: 50px;
}
.contact__btn--call > span {
  display: inline-block;
  font-weight: 700;
  width: 250px;
  padding-left: 20px;
  color: black;
  position: relative;
}
.contact__btn--call > span::before {
  content: "";
  display: inline-block;
  background-image: url(../img/call.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  width: 23px;
  height: 28px;
  position: absolute;
  left: 20px;
  top: 4px;
}

.contact__btn--mail {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 50px;
  background: #f4b207;
  border: 3px solid #f4b207;
  border-radius: 50px;
}
.contact__btn--mail > span {
  display: inline-block;
  font-weight: 700;
  width: 250px;
  padding-left: 20px;
  color: black;
  position: relative;
}
.contact__btn--mail > span::before {
  content: "";
  display: inline-block;
  background-image: url(../img/mail.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  width: 30px;
  height: 32px;
  position: absolute;
  left: 20px;
  top: 8px;
}

/* --- 取扱商品 --- */

.service__text {
  margin-bottom: 70px;
  font-size: 1.8rem;
  width: 100%;
}
.service__block {
  width: 100%;
}
/* 鍵と錠 */
.service__item--left {
  width: 100%;
  text-align: center;
}
.service__lock {
  position: relative;
  margin-bottom: 10px;
  width: 100%;
}
.service__lock::before {
  content: "";
  display: inline-block;
  background-image: url(../img/lock.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  width: 51px;
  height: 51px;
  position: absolute;
  left: 0;
  right: 0;
  top: -55px;
  margin: auto;
}
.service__lock--list {
  font-size: 1.8rem;
  display: inline-block;
  margin: 0 auto 80px auto;
  list-style: circle;
  text-align: left;
  width: 70%;
}

.service__lock--item {
  display: list-item;
  list-style: circle;
  margin-bottom: 3px;
  padding: 3px 5px;
}

.service__lock--item-miwa {
  display: inline-block;
  text-align: center;
  width: 250px;
  margin-top: 20px;
  list-style: none;
  background-color: #3eaca8c9;
  padding: 10px 10px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.8rem;
}
.service__lock--item-miwa a:hover {
  color: #fff;
}

/* 建具・その他 */
.service__item--right {
  width: 100%;
  text-align: center;
}
.service__door {
  position: relative;
  margin-bottom: 10px;
}
.service__door::before {
  content: "";
  display: inline-block;
  background-image: url(../img/door.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  width: 51px;
  height: 51px;
  position: absolute;
  left: 0;
  right: 0;
  top: -55px;
  margin: auto;
}
.service__door--list {
  font-size: 1.8rem;
  display: inline-block;
  margin: auto;
  text-align: left;
  width: 70%;
}
.service__door--item {
  display: list-item;
  list-style: circle;
  border-radius: 5px;
  margin-bottom: 3px;
  padding: 3px 5px;
}

/* --- 店舗案内 --- */
.shop__pic {
  width: 100%;
  padding: 1px 0px;
  background-color: black;
  text-align: center;
  margin-bottom: 80px;
}
.shop > img {
  height: auto;
  margin: 0 auto;
}

.shop__block {
  width: 100%;
  text-align: center;
}

/* 所在地 */
.shop__block--left {
  width: 100%;
}
.shop__address {
  position: relative;
  margin-bottom: 10px;
  text-align: center;
}
.shop__address::before {
  content: "";
  display: inline-block;
  background-image: url(../img/shop.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  width: 51px;
  height: 51px;
  position: absolute;
  left: 0;
  right: 0;
  top: -55px;
  margin: auto;
}
.shop__address--item {
  display: inline-block;
  width: auto;
  font-size: 2rem;
  text-align: left;
  margin: 0 auto 10px auto;
  width: 90%;
}
.shop__address--item > li {
  margin-bottom: 3px;
  padding: 3px 5px;
}
/* 地図ボタン */
.shop__btn {
  width: 200px;
  height: 40px;
  margin: 0 auto;
  margin-bottom: 80px;
}
.shop__btn--map {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 40px;
  background: #f4b207;
  border: 2px solid #f4b207;
  border-radius: 50px;
}
.shop__btn--map > span {
  display: inline-block;
  font-weight: 700;
  width: 250px;
  position: relative;
}
/* 営業エリア */
.shop__block--right {
  width: 100%;
  text-align: center;
}
.shop__area {
  position: relative;
  margin-bottom: 10px;
  text-align: center;
}
.shop__area::before {
  content: "";
  display: inline-block;
  background-image: url(../img/area.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  width: 51px;
  height: 51px;
  position: absolute;
  left: 0;
  right: 0;
  top: -55px;
  margin: auto;
}
/* ============
  美和製品
============ */
.miwa__cy {
}
.miwa__h2-small {
  font-size: 2.1rem;
}
.miwa__cp__block {
  display: flex;
  flex-direction: column;
}
.cp_logo {
  width: 20%;
  margin: 0 auto 10px auto;
}
.cp_logo img {
  width: 100%;
}
.cp_text {
  width: 90%;
  text-align: left;
  margin: 0 auto 10px auto;
  font-size: 1.8rem;
}
.miwa__cy--list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 80%;
  margin: 0 auto;
}
.miwa__cy--list-item {
  border: 1px solid #3eaca8;
  border-radius: 50px;
  text-align: center;
  padding: 10px;
  margin-bottom: 10px;
}
.miwa__cy--list-item img {
  width: 80%;
}
.cp__lock--item {
  width: 98%;
}
.cp__lock--item img {
  width: 98%;
}
/* ============
  よくあるご質問
============ */
#question {
  width: 96%;
  margin: 0 auto;
  margin-bottom: 60px;
  font-size: 1.6rem;
}
.question__h2 {
  font-size: 2.1rem;
}
.question__block {
  border: 2px #3eaca8 solid;
  margin-bottom: 10px;
}
.question__block a {
  text-decoration: underline;
}
.question__h4 {
  padding: 10px;
  background-color: #3eaca87e;
  font-weight: 700;
}
.question__text {
  padding: 10px;
  text-align: left;
  font-size: 1.6rem;
}
.question__font-size_small {
  padding: 10px;
  font-size: 1.4rem;
  text-align: left;
}

/* ============
  会社概要
============ */
#about-company {
  width: 96%;
  margin: 0 auto;
  margin-bottom: 60px;
  font-size: 1.4rem;
}
#about-company > table {
  border: #000 2px solid;
}
#about-company tr td {
  padding: 5px;
  border: #000 1px solid;
}

/* ============
  個人情報保護方針
============ */
#privacy {
  width: 96%;
  margin: 0 auto;
  margin-bottom: 60px;
  font-size: 1.6rem;
}
.question__h3 {
  font-size: 2.1rem;
}
.question__block {
  border: 2px #3eaca8 solid;
  margin-bottom: 10px;
}
.privacy__h3 {
  margin-bottom: 40px;
}
.privacy__h4 {
  padding: 10px;
  font-weight: 700;
}
.privacy__text {
  padding: 10px;
  text-align: left;
  font-size: 1.6rem;
}
.question__font-size_small {
  padding: 10px;
  font-size: 1.4rem;
  text-align: left;
}

/* ============
  お問合わせフォーム
============ */
.mailform__h2 {
  font-size: 2.2rem;
  height: 50px;
}
.mailform__main {
  width: 96%;
  margin: 0 auto;
}
.mailform__info {
  width: 96%;
  padding: 20px 10px 10px 10px;
  background-color: #f4b207;
  border-radius: 10px;
  margin: 20px auto 50px auto;
  text-align: center;
  font-weight: 700;
}
.mailform__info p {
  font-size: 3rem;
  margin-top: 15px;
  letter-spacing: 1.7pt;
}
.mailform__main form {
}
.mailform__main form input {
  border: 1px solid #b5b5b5;
  border-radius: 10px;
  padding: 10px;
  text-align: left;
}
.mailform__main form input:focus {
  border: 1px solid orange;
}
.mailform__main p.input-area {
  margin: 10px 0px 40px 5px;
  padding: 10px 0 10px 10px;
  font-size: 1.8rem;
  border-left: 5px solid #f4b207;
  text-align: left;
}
.mailform__main p.radio-area {
  display: flex;
  margin: 10px 0px 40px 5px;
  padding: 10px 0 10px 10px;
  border-left: 5px solid #f4b207;
}
.Radio {
  margin-right: 40px;
}
.Radio-Input {
  display: none;
  appearance: none;
  position: absolute;
}
.Radio-Text {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
}
.Radio-Text::before {
  content: "";
  display: block;
  border-radius: 50%;
  border: 1px solid #b5b5b5;
  width: 20px;
  height: 20px;
}
.Radio-Input:checked + .Radio-Text::after {
  content: "";
  position: absolute;
  left: calc(8px - 5px);
  display: block;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  background-color: orange;
}
.mailform__main p.MakerSelect {
  margin: 10px 0px 40px 5px;
  padding: 10px 0 10px 10px;
  font-size: 1.8rem;
  border-left: 5px solid #f4b207;
  text-align: left;
}
.mailform__main select {
  border: 1px solid #b5b5b5;
  padding: 10px;
  width: 100%;
}
.MakerSelect__markt {
  text-align: right;
}
.mailform__main .TextArea {
  margin: 10px 0px 40px 5px;
  padding: 10px 0 10px 10px;
  font-size: 1.8rem;
  border-left: 5px solid #f4b207;
}
.mailform__main textarea {
  border: 1px solid #b5b5b5;
  border-radius: 10px;
  padding: 10px;
  font-size: 1.6rem;
  width: 100%;
  text-align: left;
  line-height: 150%;
}
.mailform__main textarea:focus {
  border: 1px solid orange;
}
.mailform__main .name input {
  width: 45%;
}
.mailform__main .tell input {
  width: 30%;
}
.mailform__main .mail input {
  width: 100%;
}
.mailform__main .required {
  background: red;
  color: #fff;
  font-size: 1.6rem;
  padding: 3px;
  border-radius: 5px;
}
.mailform__main p.Submit {
  text-align: center;
}
.mailform__main p.Submit input {
  padding: 20px 50px;
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
}
.mailform__main p.Submit input:hover {
  padding: 20px 50px;
  background-color: #27969a;
  border: 1px solid #27969a;
  color: #fff;
}
.mailform__main p.FormMailer {
  text-align: center;
  font-size: 1.6rem;
}
.FormNotice p {
  width: 96%;
  margin: 0px auto 10px auto;
  font-size: 1.6rem;
  text-align: left;
}
.FormNotice a {
  text-decoration: underline;
}
.tenpu {
  width: 96%;
  padding: 20px;
  background-color: #f4b207;
  border-radius: 10px;
  margin: 40px auto;
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
}
.tenpu p {
  margin-top: 20px;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: left;
}
.tenpu a {
  text-decoration: underline;
}

/* ============
  フッター
============ */
footer {
  background-color: black;
  padding: 30px 0;
  color: #fff;
}
.footer__block {
  text-align: center;
}
.footer__contact {
  display: block;
  flex-direction: column;
  width: 250px;
  margin: 0 auto 0 auto;
}
.footer__nav {
  display: inline-block;
  text-align: left;
  margin: 50px auto;
}
.footer__nav--item > li {
  display: list-item;
  list-style: disc;
  margin-bottom: 3px;
  padding: 3px 5px;
}
.footer__nav--item > li a {
  text-decoration: underline;
}

.footer__company-info {
  width: 80%;
  margin: auto;
}
.footer__company-copylight {
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
}
.copylight-mark {
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}
/* ============
 フェードイン
============ */
.fade-in {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
}
.fade-in-up {
  transform: translate(0, 50px);
}
.fade-in-down {
  transform: translate(0, -50px);
}
.fade-in-left {
  transform: translate(-50px, 0);
}
.fade-in-right {
  transform: translate(50px, 0);
}
.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============
  TOPへ戻る
============ */
.gotop {
  display: block;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  background: #3eaca8;
  border: none;
  padding-top: 25px;
  text-align: center;
  letter-spacing: 1px;
  font-size: 85%;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  opacity: 0.8;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10000;
}
.gotop::before {
  content: "";
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 25%;
  height: 25%;
  top: 25%;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  transform: rotate(-45deg);
}
.gotop:hover {
  opacity: 1;
}

/* =======================
  PC用デザイン
========================== */
@media screen and (min-width: 1025px) {
  /* PC用レイアウト 1,025px以上の範囲に収めるデザインはこの中に記述 */
  body {
    background-color: #3eaca83b;
    background: url(../img/shikkui02.jpg) no-repeat fixed;
    background-size: cover;
  }
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  a {
    transition: 0.3s;
  }
  .font-size_small {
    font-size: 1.6rem;
  }
  .box {
    height: 500px;
    align-items: flex-start;
    justify-content: center;
  }
  .header__title {
    width: 100%;
    height: 200px;
    border-radius: 0px;
    align-items: flex-start;
  }
  .header__title__logo {
    margin-left: 10px;
    width: 350px;
    height: 164.7px;
  }
  .header__nav {
    z-index: 95;
    position: absolute;
    align-items: center;
    top: 50px;
  }
  .header__nav--list {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header__nav--item {
    margin: 0 20px;
    font-weight: 700;
    font-size: 2.4rem;
  }
  .header__nav--item a {
    padding-bottom: 5px;
    border-bottom: 3px solid #3eaca8;
  }
  .header__nav--item a:hover {
    border-bottom: 3px solid #f4b207;
  }
  .header__contact {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 100;
  }
  .sd__logo img {
    border: 1px solid #3eaca8;
    border-radius: 10px;
    width: 100px;
    height: 100px;
  }
  .gotoindex__box {
    width: 200px;
    margin: 0 auto 30px;
  }
  .gotoindex {
    font-size: 2rem;
    padding-bottom: 2px;
    border-bottom: 1px solid #000;
  }
  section {
    width: 80%;
    min-width: 599px;
    max-width: 900px;
    margin: 0 auto 50px auto;
    padding: 40px;
    background: #ffffff;
    box-shadow: 0px 10px 0px rgba(255, 255, 255, 0.4);
    border-radius: 85px;
  }
  h2 {
    font-weight: 700;
    font-size: 3rem;
    letter-spacing: 5pt;
    text-shadow: 0px 1px 1px #ffffff;
    background: url(../img/h2_bg.jpg) no-repeat center bottom;
    background-size: contain;
    width: 300px;
    height: 50px;
    text-align: center;
    margin-bottom: 20px;
  }
  h2 > span {
    display: inline-block;
    padding-bottom: 1px;
  }
  .question__h2,
  .mailform__h2 {
    font-weight: 700;
    font-size: 3rem;
    letter-spacing: 5pt;
    text-shadow: 0px 1px 1px #ffffff;
    background: url(../img/h2_bg.jpg) no-repeat center bottom;
    background-size: contain;
    width: 350px;
    height: 50px;
    text-align: center;
    margin-bottom: 20px;
  }
  h3 {
    font-weight: 700;
    font-size: 2.8rem;
    letter-spacing: 5px;
  }
  .intro__text {
    font-size: 2.5rem;
    margin-bottom: 70px;
  }
  .contact {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    min-width: 600px;
  }
  .contact__btn--call {
    width: 270px;
    height: 60px;
    font-size: 2.4rem;
  }
  .contact__btn--call > span {
    width: 250px;
    padding-left: 20px;
    color: black;
    position: relative;
  }
  .contact__btn--call > span::before {
    left: 20px;
    top: 8px;
  }
  .contact__btn--mail {
    width: 270px;
    height: 60px;
    font-size: 2.4rem;
  }
  .contact__btn--mail:hover {
    background-color: rgb(255, 136, 0);
    border: 3px solid rgb(255, 136, 0);
    transition: 0.3s;
  }
  .contact__btn--mail > span {
    display: inline-block;
    font-weight: 700;
    width: 250px;
    padding-left: 20px;
    color: black;
    position: relative;
  }
  .contact__btn--mail > span::before {
    left: 18px;
    top: 13px;
  }
  .service__text {
    font-size: 2.5rem;
    margin-bottom: 100px;
  }
  .service__block {
    display: flex;
  }
  .service__lock {
    margin-bottom: 25px;
  }
  .service__lock--list {
    font-size: 2.2rem;
    width: 80%;
  }
  .service__door {
    margin-bottom: 25px;
  }
  .service__door--list {
    font-size: 2.2rem;
    width: 80%;
  }
  .shop__block {
    display: flex;
  }
  .shop__btn--map:hover {
    background-color: rgb(255, 136, 0);
    border: 2px solid rgb(255, 136, 0);
    transition: 0.3s;
  }
  .shop__block--left {
  }
  .shop__block--right {
  }
  .shop__address {
    margin-bottom: 25px;
  }
  .shop__area {
    margin-bottom: 25px;
  }
  .mailform__info {
    font-size: 2rem;
  }
  .mailform__main p.input-area {
    text-align: left;
  }
  .question__block {
    width: 100%;
  }
  .question__h4 {
    font-size: 2.2rem;
  }
  .question__text {
    font-size: 1.8rem;
  }
  table {
    width: 100%;
    font-size: 2rem;
    line-height: 200%;
  }
  td {
    padding: 20px;
  }
  td.label {
    text-align: center;
    align-items: center;
    vertical-align: middle;
  }

  .miwa__cp__block {
    display: flex;
    flex-direction: row;
  }
  .cp_logo {
    width: 80px;
    margin-right: 20px;
  }
  .miwa__cy--list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
  .miwa__cy--list-item {
    width: 48%;
  }
  .cp__lock-box {
    display: flex;
    align-items: center;
  }
  .cp__lock--item {
    width: 500px;
    margin-right: 20px;
  }
  .cp__lock--item img {
    width: 100%;
  }
  footer {
    padding: 50px 0 0 0;
  }
  .footer__block {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 1000px;
    height: 250px;
    margin: 0 auto;
    padding: 0;
  }
  .footer__contact {
    display: flex;
    flex-direction: column;
    height: 150px;
    margin: 0;
  }
  .footer__company-info {
    width: 300px;
    height: 150px;
    margin: 0;
    line-height: 200%;
  }
  .footer__nav {
    width: 300px;
    height: 200px;
    margin: 0;
  }
  .footer__nav--item a:hover {
    color: #3eaca8;
  }
}
