@charset "UTF-8";
:root {
  --headerHeight: 100px;
  --paddingSection: 40px;
  --paddingLR: 24px;
}
@media screen and (max-width: 959px) {
  :root {
    --headerHeight: 80px;
    --paddingSection: 40px;
  }
}

:root {
  --color_main: #000;
}

/*========== トップページ ==========*/
/*==========
メインビジュアル
==========*/
#mv {
  height: 100vh;
  height: 100dvh;
  height: 100svh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  text-align: center;
  background: center/240px url("../img/common/white_00081.jpg") repeat;
}
#mv .title {
  font-size: 2rem;
  font-family: "Shippori Mincho", serif;
}
#mv .text {
  font-family: "Shippori Mincho", serif;
}
#mv img {
  width: 80%;
  max-width: 200px;
}
@media screen and (max-width: 959px) {
  #mv .title {
    font-size: 1.25rem;
  }
  #mv img {
    max-width: 160px;
  }
}