/*
Theme Name: remar-theme_v2
Text Domain: remar-theme_v2
Version: 0.1.2
*/
html {
  margin-top: 0 !important;
}

.sp {
  display: block;
}

.pc {
  display: none;
}

a:hover {
  opacity: 0.8;
}

.c-wrap {
  padding: 0 20px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  background-color: #fff;
  z-index: 100;
}

.header__wrap {
  display: flex;
  justify-content: space-between;
}

.header__logo {
  width: calc(100% - 55px);
  max-width: 150px;
  padding-top: 10px;
  padding-left: 15px;
}
.header__logo a {
  display: block;
}
.header__logo .img {
  width: 100%;
  padding-top: 30%;
  background-size: contain;
  background-position: top left;
  background-repeat: no-repeat;
}

.header__btn {
  padding: 12px 12px;
  width: 55px;
  height: 55px;
  cursor: pointer;
  z-index: 999;
  margin-left: auto;
}
.header__btn span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #222;
  margin: 0 auto;
  transition: all 0.3s ease-in-out;
}
.header__btn span:nth-of-type(1) {
  margin-top: 3px;
}
.header__btn span:nth-of-type(2) {
  margin-top: 8px;
}
.header__btn span:nth-of-type(3) {
  margin-top: 8px;
}

.header__menu {
  display: none;
  position: absolute;
  top: 55px;
  z-index: 101;
  width: 100%;
}

.is_menu_open .header {
  background-color: transparent;
}
.is_menu_open #js_black_bg {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
}
.is_menu_open .header__btn span:nth-child(1) {
  transform: rotate(45deg);
  transform-origin: center center;
  top: 50%;
  margin-top: 13px;
}
.is_menu_open .header__btn span:nth-child(2) {
  width: 0;
  left: 50%;
}
.is_menu_open .header__btn span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg);
  -webkit-transform-origin: center center;
  margin-top: -12px;
}

.header__menu_list {
  padding: 100px 20px;
  text-align: center;
}
.header__menu_list ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}
.header__menu_list ul li:last-child {
  margin-bottom: 30px;
}
.header__menu_list ul li a {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.header__menu_list .tel a {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  border-radius: 50px;
}
.header__menu_list .tel a::before {
  display: block;
  content: "";
  background: url(./img/common/telephone-fill.png) no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.header__menu_list .mail a {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  border-radius: 50px;
}
.header__menu_list .mail a::before {
  display: block;
  content: "";
  background: url(./img/common/mail.png) no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.main_content {
  margin-top: 55px;
}

.footer {
  padding: 60px 0 30px;
  background-color: #eee;
}
.footer .scroll_btn {
  display: none;
  position: fixed;
  bottom: 35px;
  right: 20px;
  z-index: 99;
  width: 40px;
  background-color: #333;
  transition: all 0.3s ease-in-out;
  padding: 8px;
  border-radius: 50%;
}
.footer .logo {
  padding: 0 80px;
  margin-bottom: 40px;
}
.footer .txt {
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
}
.footer .copy {
  margin-top: 60px;
  text-align: center;
}
.footer .copy p {
  font-size: 10px;
}

@media screen and (min-width: 1024px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  .c-wrap {
    padding: 0;
    margin: 0 auto;
    max-width: 1300px;
  }
  .header__wrap {
    align-items: center;
  }
  .header__logo {
    width: 100%;
    max-width: 200px;
    padding-top: 10px;
    padding-left: 20px;
    padding-bottom: 10px;
  }
  .header__btn {
    display: none;
  }
  .header__menu {
    display: block !important;
    position: initial;
    width: auto;
    padding-right: 20px;
  }
  .header__menu_list {
    padding: 0;
    text-align: left;
    display: flex;
    align-items: center;
  }
  .header__menu_list ul {
    display: flex;
    align-items: center;
    margin-right: 20px;
  }
  .header__menu_list ul li {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    margin-right: 20px;
  }
  .header__menu_list ul li a {
    color: #000;
  }
  .header__menu_list ul li a.tel, .header__menu_list ul li a.mail {
    color: #fff;
  }
  .header__menu_list ul li:last-child {
    margin-bottom: 0;
    margin-right: 0;
  }
  .main_content {
    margin-top: 74px;
  }
  .footer {
    padding: 80px 0 30px;
  }
  .footer .flex {
    display: flex;
    align-items: center;
  }
  .footer .flex .c_l {
    width: 30%;
  }
  .footer .flex .c_r {
    width: 70%;
  }
  .footer .logo {
    padding: 0;
    max-width: 250px;
    margin-bottom: 20px;
  }
  .footer .txt {
    text-align: left;
  }
  .footer .footer_menu ul {
    display: flex;
  }
  .footer .footer_menu ul li {
    margin-right: 30px;
  }
  .footer .footer_menu ul li:last-child {
    margin-right: 0;
  }
  .footer .footer_menu ul li a {
    font-size: 14px;
  }
}