@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

body,
html {
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 1201px) {
  .is-pc2 {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
@media screen and (min-width: 1201px) {
  .is-sp-tab {
    display: none;
  }
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

body {
  color: #292929;
  font-family: YuMincho, "Yu Mincho", serif;
  background-color: #fff;
  overflow-x: hidden;
  font-size: 1.8rem;
  font-weight: 400;
}

html {
  font-size: 62.5%;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

dl,
dd,
dt {
  padding: 0;
  margin: 0;
}

figure {
  margin: 0;
  padding: 0;
}

main {
  padding-left: 19.7472%;
}
@media all and (max-width: 1109px) {
  main {
    padding-left: 0;
  }
}

.side-bar {
  width: 19.7472%;
  background-color: #fff;
  padding-left: 35px;
  position: fixed;
  z-index: 1000;
  height: 100vh;
}
@media all and (max-width: 1109px) {
  .side-bar {
    display: none;
  }
}

.side-h1 {
  color: #4B4B4B;
  font-size: 1.8rem;
  padding-top: 100px;
  max-width: 200px;
}

.side-nav {
  margin-top: 60px;
  color: #AFAFAF;
  font-size: 1.6rem;
  max-width: 200px;
}
.side-nav li {
  line-height: 2.3;
}
.side-nav li a {
  transition: all 0.6s;
  display: block;
  width: 100%;
}
.side-nav li a:hover {
  color: #4b4b4b;
  transform: translateX(20px);
}

.side-address-box {
  margin-top: 120px;
  max-width: 217px;
  font-size: 1.4rem;
}

.sns-icons {
  display: flex;
  width: 99.83px;
}

.instagram-link {
  font-size: 3rem;
  font-weight: 900;
}

.fa-link {
  margin-left: 12.8px;
  font-size: 3rem;
  font-weight: 900;
}
.fa-link::before {
  display: none;
}

.li-link {
  margin-left: 12.8px;
  font-size: 3rem;
  font-weight: 900;
}

.yo-link {
  margin-left: 12.8px;
  font-size: 3rem;
  font-weight: 900;
}

/*===================================================
# ヘッダー
=================================================== */
header {
  width: 100%;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 65px;
  z-index: 298;
  background-color: rgba(255, 255, 255, 0.9);
}
@media all and (min-width: 1110px) {
  header {
    display: none;
  }
}

.header-container {
  position: relative;
  width: 100%;
}

/* ハンバーガーアイコン＆ドロワーメニュー
----------------------------------------------*/
.drawer-icon {
  position: fixed;
  right: 10px;
  top: 10px;
  display: none;
  z-index: 300;
  width: 60px;
  height: 60px;
  background-color: #1d2088;
  border-radius: 50%;
}

@media screen and (max-width: 1109px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-active {
  transform: translateX(-260px);
}

.drawer-icon.is-active .drawer-icon__bar1 {
  top: 8px;
  transform: rotate(-45deg);
  background-color: #fff;
}

.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}

.drawer-icon.is-active .drawer-icon__bar3 {
  top: 8px;
  transform: rotate(45deg);
  background-color: #fff;
}

.drawer-icon__bars {
  width: 26px;
  height: 20px;
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  width: 26px;
  height: 2px;
  background-color: #fff;
  top: 0;
  left: 0;
  transition: transform 0.5s ease 0s;
}

.drawer-icon__bar1 {
  top: 0px;
}

.drawer-icon__bar2 {
  top: 8px;
}

.drawer-icon__bar3 {
  top: 16px;
}

.drawer-content {
  width: 260px;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  background-color: #1d2088;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  z-index: 299;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
}
.drawer-content.is-active {
  transform: translateX(0);
}

.drawer-content__item {
  border-bottom: 1px dotted #fff;
}
.drawer-content__item a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 18px 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .drawer-content__item a {
    font-size: 1.6rem;
  }
}
.drawer-content__item a::after {
  content: "";
  position: absolute;
  right: 20px;
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  width: 7.5px;
  height: 7.5px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
}

.drawer-h3, .drawer-p, .drawer-address-box, .drawer-address-number, .drawer-address, .drawer-tel {
  color: #fff;
  padding-left: 16px;
}

.drawer-h3 {
  font-size: 1.6rem;
  margin-top: 36px;
  line-height: 1.8;
}

.drawer-tel {
  margin-top: 30px;
}

.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 297;
  display: none;
}
.drawer-background.is-active {
  display: block;
}

/*===================================================
# メインビジュアル
=================================================== */
.main-visual {
  position: relative;
  height: 100vh;
}
.main-visual video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 4.5rem;
  font-weight: 400;
  text-align: center;
  font-size: 0;
}
@media screen and (max-width: 767px) {
  .main-message {
    font-size: 3.2rem;
    width: 100%;
    line-height: 2;
  }
}

.main-message-wrap {
  display: flex;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  font-size: 4.5rem;
  text-shadow: 2px 2px 10px #777, -2px 2px 10px #777, 2px -2px 10px #777, -2px -2px 10px #777;
}
@media screen and (max-width: 767px) {
  .main-message-wrap {
    font-size: 3.2rem;
  }
}

.main-message-wrap2 {
  display: inline-flex;
  overflow: hidden;
  text-align: center;
  font-size: 4.5rem;
  text-shadow: 2px 2px 10px #777, -2px 2px 10px #777, 2px -2px 10px #777, -2px -2px 10px #777;
}
@media screen and (max-width: 767px) {
  .main-message-wrap2 {
    font-size: 3.2rem;
  }
}

.main-message-wrap3 {
  display: inline-flex;
  overflow: hidden;
  text-align: center;
  font-size: 4.5rem;
  text-shadow: 2px 2px 10px #777, -2px 2px 10px #777, 2px -2px 10px #777, -2px -2px 10px #777;
}
@media screen and (max-width: 767px) {
  .main-message-wrap3 {
    font-size: 3.2rem;
  }
}

.main-message span {
  display: block;
  transform: translate(0, 105%);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}

.main-message-wrap.-visible span {
  transform: translate(0, 0);
}

.main-message-wrap2.-visible span {
  transform: translate(0, 0);
}

.main-message-wrap3.-visible span {
  transform: translate(0, 0);
}

.main-message-wrap span:nth-child(2) {
  transition-delay: 0.06s;
}

.main-message-wrap span:nth-child(3) {
  transition-delay: 0.12s;
}

.main-message-wrap span:nth-child(4) {
  transition-delay: 0.18s;
}

.main-message-wrap span:nth-child(5) {
  transition-delay: 0.24s;
}

.main-message-wrap span:nth-child(6) {
  transition-delay: 0.3s;
}

.main-message-wrap2 span:nth-child(1) {
  transition-delay: 0.36s;
}

.main-message-wrap2 span:nth-child(2) {
  transition-delay: 0.42s;
}

.main-message-wrap2 span:nth-child(3) {
  transition-delay: 0.48s;
}

.main-message-wrap2 span:nth-child(4) {
  transition-delay: 0.54s;
}

.main-message-wrap2 span:nth-child(5) {
  transition-delay: 0.6s;
}

.main-message-wrap2 span:nth-child(6) {
  transition-delay: 0.66s;
}

.main-message-wrap3 span:nth-child(1) {
  transition-delay: 0.72s;
}

.main-message-wrap3 span:nth-child(2) {
  transition-delay: 0.78s;
}

.main-message-wrap3 span:nth-child(3) {
  transition-delay: 0.84s;
}

.main-message-wrap3 span:nth-child(1) {
  transition-delay: 0.9s;
}

.main-message-wrap3 span:nth-child(2) {
  transition-delay: 0.96s;
}

.main-message-wrap3 span:nth-child(3) {
  transition-delay: 1.02s;
}

.main-message-wrap3 span:nth-child(4) {
  transition-delay: 1.08s;
}

.main-message-wrap3 span:nth-child(5) {
  transition-delay: 1.14s;
}

.main-message-wrap3 span:nth-child(6) {
  transition-delay: 1.2s;
}

.main-message-wrap3 span:nth-child(7) {
  transition-delay: 1.26s;
}

/*===================================================
# 人を想う、暮らし想う
=================================================== */
.concept-area {
  padding-top: 90px;
  padding-bottom: 118px;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .concept-area {
    padding-top: 60px;
    padding-bottom: 70px;
  }
}
.concept-area .container {
  max-width: 476px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 16px;
}
.concept-area .util-title {
  position: relative;
  padding-top: 126px;
}
@media screen and (max-width: 767px) {
  .concept-area .util-title {
    padding-top: 71px;
  }
}
.concept-area .util-title:before {
  position: absolute;
  content: "";
  background: url(../img/icon/home.svg) no-repeat center;
  background-size: cover;
  width: 73.04px;
  height: 78.57px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .concept-area .util-title:before {
    width: 51px;
    height: 53px;
  }
}

.left-title {
  position: absolute;
  writing-mode: vertical-rl;
  color: #F3F3F3;
  font-size: 8.5rem;
}
@media screen and (max-width: 767px) {
  .left-title {
    display: none;
  }
}

.util-title {
  font-size: 3.6rem;
  text-align: center;
  position: relative;
  width: 100%;
  color: #6A6A6A;
}
.util-title::after {
  content: attr(data-title);
  font-size: 2.3rem;
  color: #D4D4D4;
  display: block;
}

.living-box {
  margin-top: 85px;
  line-height: 2.5;
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .living-box {
    margin-top: 30px;
    line-height: 2;
  }
}

/*===================================================
# リフォーム・リノベーション
=================================================== */
.reform-area {
  background: #F8F8F8;
  padding-top: 105px;
  padding-bottom: 116px;
}
@media screen and (max-width: 767px) {
  .reform-area {
    padding-top: 60px;
    padding-bottom: 70px;
  }
}

.reform-flex {
  margin-top: 64px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .reform-flex {
    flex-flow: column-reverse;
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 50px;
  }
}

.reform-texts {
  max-width: 366px;
  margin-left: auto;
  margin-left: 60px;
}
@media all and (min-width: 768px) and (max-width: 1280px) {
  .reform-texts {
    margin-left: auto;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .reform-texts {
    margin-left: 0;
  }
}
.reform-texts h3 {
  font-size: 2.3rem;
  line-height: 1.625;
}
@media all and (max-width: 1280px) {
  .reform-texts h3 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .reform-texts h3 {
    margin-top: 30px;
    font-size: 2rem;
    line-height: 1.8;
  }
}

.reform-message {
  margin-top: 62px;
  line-height: 2;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .reform-message {
    margin-top: 15px;
    line-height: 1.8;
  }
}

.reform-image {
  margin-left: 5.6%;
  max-height: 500px;
}
@media all and (min-width: 768px) and (max-width: 1280px) {
  .reform-image {
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .reform-image {
    margin-left: 0;
  }
}
.reform-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.reform-flex.second {
  margin-top: 0;
  display: flex;
  flex-flow: row-reverse;
  margin-right: auto;
  padding-right: 18px;
  box-sizing: content-box;
}
@media all and (min-width: 1600px) {
  .reform-flex.second {
    padding-right: 30px;
  }
}
@media all and (min-width: 768px) and (max-width: 1280px) {
  .reform-flex.second {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .reform-flex.second {
    margin-top: 60px;
    flex-flow: column-reverse;
  }
}
.reform-flex.second .reform-texts {
  padding-top: 75px;
  max-width: 324px;
  margin-left: 6.3333%;
}
@media all and (min-width: 1600px) {
  .reform-flex.second .reform-texts {
    margin-left: 76px;
  }
}
@media all and (min-width: 768px) and (max-width: 1280px) {
  .reform-flex.second .reform-texts {
    margin-right: auto;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .reform-flex.second .reform-texts {
    margin-left: 0;
    padding-top: 0;
  }
}
.reform-flex.second .reform-texts h3 {
  line-height: 1.5;
}
.reform-flex.second .reform-texts .reform-message {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .reform-flex.second .reform-texts .reform-message {
    margin-top: 15px;
    line-height: 1.8;
  }
}
.reform-flex.second .reform-image {
  margin-left: 0;
  max-height: 500px;
}
@media all and (min-width: 768px) and (max-width: 1280px) {
  .reform-flex.second .reform-image {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .reform-flex.second .reform-image {
    max-height: none;
  }
}
.reform-flex.second .reform-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.reform-flex.third {
  margin-top: 0;
}
@media all and (min-width: 768px) and (max-width: 1280px) {
  .reform-flex.third {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .reform-flex.third {
    margin-top: 60px;
  }
}
.reform-flex.third .reform-texts {
  margin-top: auto;
  margin-bottom: auto;
}
.reform-flex.third .reform-texts h3 {
  max-width: 312px;
}
.reform-flex.third .reform-texts .reform-message {
  margin-top: 47px;
  max-width: 317px;
}
@media screen and (max-width: 767px) {
  .reform-flex.third .reform-texts .reform-message {
    margin-top: 15px;
    line-height: 1.8;
  }
}
.reform-flex.third .reform-image {
  margin-left: 5.6%;
}
@media all and (min-width: 768px) and (max-width: 1280px) {
  .reform-flex.third .reform-image {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .reform-flex.third .reform-image {
    margin-left: 0;
  }
}

/*===================================================
# リフォーム・ギャラリー
=================================================== */
.gallery-area {
  padding-top: 253px;
  padding-bottom: 275px;
}
@media screen and (max-width: 767px) {
  .gallery-area {
    padding-top: 60px;
    padding-bottom: 70px;
  }
}
.gallery-area .container {
  padding: 0 18px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-flex {
  display: flex;
  flex-wrap: wrap;
  max-width: 1300px;
  width: 100%;
  margin: 107px auto 0;
  box-sizing: content-box;
}
@media screen and (max-width: 1200px) {
  .gallery-flex {
    width: auto;
  }
}

.gallery-image {
  width: calc(33.3% - 13.3333333333px);
}
.gallery-image:nth-of-type(3n+1) {
  transition-delay: 0.2s;
}
.gallery-image:nth-of-type(3n+2) {
  transition-delay: 0.4s;
}
.gallery-image:nth-of-type(3n) {
  transition-delay: 0.6s;
}
@media screen and (max-width: 1200px) {
  .gallery-image {
    width: calc(50% - 10px);
  }
  .gallery-image:nth-of-type(2n+1) {
    transition-delay: 0.2s;
  }
  .gallery-image:nth-of-type(2n) {
    transition-delay: 0.4s;
  }
}
.gallery-image + .gallery-image {
  margin-left: 20px;
}
@media screen and (max-width: 1200px) {
  .gallery-image + .gallery-image {
    margin-left: 0;
  }
}
.gallery-image:nth-of-type(3n + 1) {
  margin-left: 0;
}
@media screen and (max-width: 1200px) {
  .gallery-image:nth-of-type(3n + 1) {
    margin-left: 0px;
  }
}
@media screen and (max-width: 1200px) {
  .gallery-image:nth-of-type(even) {
    margin-left: 20px;
  }
}
.gallery-image:nth-of-type(n + 4) {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .gallery-image:nth-of-type(n + 4) {
    margin-top: 0;
  }
}
@media screen and (max-width: 1200px) {
  .gallery-image:nth-of-type(n + 3) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .gallery-image:last-of-type {
    margin-left: auto;
    margin-right: auto;
  }
}

.gallery-image {
  transform: translate(0, 20%);
  opacity: 0;
  transition: 1s;
}
.gallery-image.show {
  transform: translate(0, 0);
  opacity: 1;
}

/*===================================================
# お知らせ
=================================================== */
.info-area {
  padding-bottom: 330px;
}
@media screen and (max-width: 767px) {
  .info-area {
    padding-bottom: 85px;
  }
}
.info-area .container {
  max-width: 908px;
  margin: 0 auto;
  position: relative;
  padding: 0 18px;
  box-sizing: content-box;
}

.info-flex {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .info-flex {
    display: block;
  }
}
.info-flex:first-of-type {
  margin-top: 125px;
}
@media screen and (max-width: 767px) {
  .info-flex:first-of-type {
    margin-top: 60px;
  }
}
.info-flex:nth-of-type(n + 2) {
  margin-top: 39px;
}
@media screen and (max-width: 767px) {
  .info-flex:nth-of-type(n + 2) {
    margin-top: 50px;
  }
}

.info-image {
  flex: 0 0 204px;
}

.info-image-wrap {
  position: relative;
  padding-top: 49.019%;
}
@media screen and (max-width: 767px) {
  .info-image-wrap {
    padding-top: 66%;
  }
}
.info-image-wrap img {
  position: absolute;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.info-contents-flex {
  margin-left: 7.37%;
  display: flex;
  color: #434343;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .info-contents-flex {
    display: block;
    margin-left: 0;
    margin-top: 25px;
  }
}

@media screen and (max-width: 767px) {
  .info-time {
    font-size: 1.4rem;
  }
}

.info-title {
  margin-left: 45px;
}
@media screen and (max-width: 767px) {
  .info-title {
    margin-left: 0;
    font-size: 1.6rem;
  }
}

.info-list-wrap {
  text-align: right;
}

.info-list {
  display: inline-block;
  margin-top: 70px;
  position: relative;
  right: 0;
  padding-right: 46.75px;
  color: #7F7F7F;
  transition: 0.4s;
}
@media screen and (min-width: 768px) {
  .info-list:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .info-list {
    font-size: 1.6rem;
    padding-right: 35px;
  }
}
.info-list::after {
  content: "";
  width: 22px;
  height: 6px;
  border-bottom: 1px solid #B1B1B1;
  border-right: 1px solid #B1B1B1;
  transform: skew(45deg);
  position: absolute;
  position: absolute;
  top: 50%;
  right: 3px;
  transform: translateY(-50%) skew(45deg);
}

/*===================================================
# STEP
=================================================== */
.step-flex {
  display: flex;
  max-width: 1200px;
  width: auto;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: content-box;
}
@media all and (max-width: 1109px) {
  .step-flex {
    max-width: 854.5px;
    margin: 0 auto;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .step-flex {
    display: block;
    width: auto;
  }
}

.step-image {
  flex: 0 1 566px;
}
@media all and (max-width: 1197px) {
  .step-image {
    flex: 0 1 400px;
  }
}

.step-image-wrap {
  padding-top: 100.53%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .step-image-wrap {
    padding-top: 66%;
  }
}
.step-image-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.step-texts {
  flex: 0 1 507px;
  width: 100%;
  margin-left: 7.0833%;
}
@media screen and (max-width: 767px) {
  .step-texts {
    margin-left: 0;
  }
}

.step-h3 {
  font-size: 2.7rem;
  line-height: 1.6;
}
@media all and (max-width: 1109px) {
  .step-h3 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .step-h3 {
    font-size: 2.2rem;
    text-align: center;
    margin-top: 25px;
  }
}

.step-texts-flex {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #707070;
  padding-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .step-texts-flex {
    display: block;
  }
}
.step-texts-flex:first-of-type {
  margin-top: 79px;
}
@media all and (max-width: 1109px) {
  .step-texts-flex:first-of-type {
    margin-top: 23px;
  }
}
.step-texts-flex:nth-of-type(n + 2) {
  margin-top: 25px;
}
@media all and (max-width: 1109px) {
  .step-texts-flex:nth-of-type(n + 2) {
    margin-top: 18px;
  }
}

.step-icon-flex {
  display: flex;
  width: 106.91px;
}
@media all and (max-width: 1109px) {
  .step-icon-flex {
    width: 81px;
  }
}

.step-blue {
  color: rgb(29, 32, 136);
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.1rem;
}

.flag {
  width: 106.91px;
  height: 48.44px;
}
@media all and (max-width: 1109px) {
  .flag {
    width: 77px;
    height: 35px;
  }
}
@media screen and (max-width: 767px) {
  .flag {
    width: 77px;
    height: 35px;
  }
}

.step-message {
  margin-left: 45px;
  font-weight: 700;
  font-size: 1.9rem;
}
@media all and (max-width: 1109px) {
  .step-message {
    margin-left: 18px;
  }
}
@media all and (max-width: 1280px) {
  .step-message {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .step-message {
    margin-top: 10px;
    margin-left: 0;
    font-size: 1.7rem;
  }
}

/*===================================================
# 会社紹介
=================================================== */
.company-area {
  padding-top: 217px;
  padding-bottom: 230px;
}
@media screen and (max-width: 767px) {
  .company-area {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
.company-area .container {
  max-width: 1067px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  box-sizing: content-box;
}

.company-flex {
  display: flex;
  max-width: 1067px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .company-flex {
    flex-flow: column-reverse;
  }
}

.company-texts {
  max-width: 360px;
}
@media screen and (max-width: 767px) {
  .company-texts {
    margin-top: 35px;
    max-width: 100%;
    text-align: center;
  }
}

.company-h3 {
  font-size: 1.4rem;
}

.company-h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .company-h2 {
    font-size: 1.6rem;
  }
}

.company-address {
  font-size: 1.6rem;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .company-address {
    margin-top: 35px;
  }
}

.tel-big {
  margin-top: 62px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .tel-big {
    margin-top: 30px;
    font-size: 1.8rem;
  }
}
.tel-big span {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .tel-big span {
    font-size: 2.3rem;
  }
}

.google-map-btn {
  margin-top: 33px;
  border: 1px solid #707070;
  font-size: 1.7rem;
  width: 233px;
  height: 38px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .google-map-btn {
    margin-left: auto;
    margin-right: auto;
  }
}

.company-picture {
  flex: 0 1 600px;
  margin-left: 10.028%;
}
@media screen and (max-width: 767px) {
  .company-picture {
    margin-left: 0;
    height: auto;
    flex-basis: auto;
  }
}

.company-picture-wrap {
  position: relative;
  padding-top: 83.333%;
}
.company-picture-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
}

/*===================================================
# CONTACT
=================================================== */
.contact-area {
  background-color: #F8F8F8;
  padding-top: 100px;
  padding-bottom: 88px;
  padding-left: 16px;
  padding-right: 16px;
}

.contact-box {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  padding: 76px 20px 113px;
  box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .contact-box {
    padding-top: 60px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.contact-title {
  font-size: 6.4rem;
  color: #000000;
  text-align: center;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .contact-title {
    font-size: 2.5rem;
    text-align: center;
  }
}

.contact-sub {
  color: #8B8B8B;
  font-size: 1.7rem;
  margin-top: 18px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-sub {
    font-size: 1.6rem;
  }
}

.contact-tel {
  margin-top: 47px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 4.7rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-tel {
    font-size: 2.3rem;
    margin-top: 30px;
  }
}

.contact-time {
  font-size: 1.3rem;
  color: #4E4E4E;
  text-align: center;
  line-height: 1;
  margin-top: 10px;
}

.contact-wrap {
  max-width: 772px;
  margin: 0 auto;
}

.contact-flex {
  display: flex;
}
@media screen and (max-width: 767px) {
  .contact-flex {
    display: block;
  }
  .contact-flex:nth-of-type(-n + 3) .mandatory {
    margin-left: 26px;
  }
}
@media all and (max-width: 850px) {
  .contact-flex:nth-of-type(n + 4) .mandatory {
    transform: translateX(20px);
  }
}
@media screen and (max-width: 850px) and (max-width: 767px) {
  .contact-flex:nth-of-type(n + 4) .mandatory {
    transform: translateX(0px);
  }
}
.contact-flex:first-of-type {
  margin-top: 137px;
  margin-top: 80px;
}
.contact-flex:nth-of-type(n + 2) {
  margin-top: 47px;
}

.contact-flex-address {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .contact-flex-address .contact-left {
    width: 100%;
  }
}

.contact-left {
  font-size: 1.8rem;
  color: #000000;
  width: 225px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .contact-left {
    width: 163px;
    font-size: 1.6rem;
  }
}

.mandatory {
  width: 73px;
  height: 32px;
  background-color: #002878;
  color: #fff;
  display: inline-block;
  margin-left: auto;
  text-align: center;
  line-height: 32px;
}
@media screen and (max-width: 767px) {
  .mandatory {
    font-size: 1.4rem;
    width: 50px;
    height: 28px;
  }
}

.contact-right {
  max-width: 500px;
  width: 100%;
  margin-left: 47px;
}
@media screen and (max-width: 767px) {
  .contact-right {
    max-width: 100%;
    margin-left: 0;
    margin-top: 15px;
  }
}

.right1 {
  max-width: 200px;
  width: 100%;
  position: relative;
}
.right1::before {
  position: absolute;
  content: "〒";
  position: absolute;
  position: absolute;
  top: 50%;
  left: -33px;
  transform: translateY(-50%);
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .right1 {
    max-width: 150px;
    margin-left: 35px;
  }
}

.right2 {
  width: 100%;
  margin-left: auto;
  margin-top: 48px;
}

input[type=text],
input[type=email],
input[type=tel] {
  width: 100%;
  display: block;
  height: 53px;
  background-color: #F8F8F8;
  border-radius: 9px;
  border: none;
  padding: 12px 16px;
}

.contact-left.inquiry {
  font-size: 1.6rem;
  align-items: normal;
}
@media screen and (max-width: 767px) {
  .contact-left.inquiry {
    width: 200px;
  }
}

textarea {
  min-height: 310px;
  width: 100%;
  display: block;
  background-color: #F8F8F8;
  border-radius: 9px;
  border: none;
  padding: 0.5em 1em;
  font-size: 1.6rem;
}

.wpcf7-list-item {
  margin: 0;
  margin-top: 35px;
}

.check-test {
  display: none;
}

.check-test + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 45px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .check-test + span {
    padding: 0 0 0 40px;
  }
}

.check-test + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 2px;
  content: "";
  display: block;
  height: 27px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 27px;
}
@media screen and (max-width: 767px) {
  .check-test + span::before {
    width: 20px;
    height: 20px;
  }
}

.check-test + span::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border-bottom: 3px solid #292929;
  border-left: 3px solid #292929;
  content: "";
  display: block;
  height: 10px;
  left: 0;
  margin-top: -0.2em;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s ease 0s;
  width: 25px;
}
@media screen and (max-width: 767px) {
  .check-test + span::after {
    width: 18px;
    height: 8px;
  }
}

.check-test:checked + span::after {
  opacity: 1;
}

.wpcf7-list-item-label {
  font-size: 1.7rem;
}
@media screen and (max-width: 767px) {
  .wpcf7-list-item-label {
    font-size: 1.6rem;
  }
}

.explanation {
  font-size: 1.5rem;
}

.policy-link {
  text-decoration: underline;
  color: #008db7;
}

.submit {
  -webkit-appearance: none;
  background-color: rgba(0, 0, 0, 0.32);
  background-image: none;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

.submit:hover,
.submit:focus {
  outline: none;
}

.submit::-moz-foucus-inner {
  border: none;
  padding: 0;
}

input[type=submit] {
  width: 285px;
  height: 47px;
  border: 1px solid #A9A9A9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 97px auto 0;
  background-color: #fff;
  font-size: 2.2rem;
  font-weight: 400;
  color: #292929;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  input[type=submit] {
    font-size: 2rem;
    margin-top: 50px;
  }
}

/*===================================================
# フッター
=================================================== */
footer {
  background-color: #002878;
  color: #fff;
  height: 64px;
  font-size: 1.4rem;
  padding-left: 2.307%;
  padding-right: 2.307%;
}
@media all and (max-width: 870px) {
  footer {
    height: 98px;
  }
}

.footer-flex {
  display: flex;
  align-items: center;
  height: 64px;
  position: relative;
}
@media all and (max-width: 870px) {
  .footer-flex {
    display: block;
    height: inherit;
  }
}

.footer-nav {
  display: flex;
}
@media all and (max-width: 870px) {
  .footer-nav {
    position: absolute;
    margin-top: 15px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.footer-nav li {
  padding-left: 15px;
}
@media all and (max-width: 870px) {
  .footer-nav li {
    white-space: nowrap;
  }
}
.footer-nav li:first-child {
  padding-left: 0;
}
.footer-nav li:nth-child(n+2) {
  margin-left: 15px;
  border-left: 1px solid #fff;
}

.copyright {
  margin-left: auto;
}
@media all and (max-width: 870px) {
  .copyright {
    white-space: nowrap;
    font-size: 1.1rem;
    position: absolute;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 767px) {
  .copyright {
    font-size: 1.1rem;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .util-title {
    font-size: 2.3rem;
  }
}
.util-title::after {
  font-size: 1.6rem;
}