@charset "UTF-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");
body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #333;
  margin: 0;
  padding: 0;
  height: 100%;
  font-size: 1.5em;
  line-height: 1.6;
  letter-spacing: 0.15rem;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.en {
  font-family: "Montserrat", sans-serif;
}

/*-------------------------------------------------
基本設定
--------------------------------------------------*/
a,
a img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover,
a img:hover {
  opacity: 0.8;
  text-decoration: none;
}

a.textlink {
  color: #ff8900;
  text-decoration: underline;
}

a.textlink:hover {
  text-decoration: none;
}

hr {
  background-color: #c7c7c7;
  display: block;
  border: 0;
  height: 1px;
}

a[href^="tel:"] {
  cursor: default;
}

.txt-center {
  text-align: center;
}

/*---------------------------------------------
  VISUAL
---------------------------------------------*/
html, body {
  height: 100%;
}

.visual {
  width: 100%;
  height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.visual:after {
  clear: both;
  content: "";
  display: table;
}

.visual__inner {
  text-align: center;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.visual__logo img {
  max-width: 100%;
  width: 220px;
  margin-bottom: 50px;
}
@media (max-width: 480px) {
  .visual__logo img {
    margin-bottom: 40px;
    width: 200px;
  }
}

.visual__txt {
  margin-bottom: 50px;
}
@media (max-width: 480px) {
  .visual__txt {
    margin-bottom: 40px;
  }
}

.copy {
  font-size: 12px;
}
.copy::before {
  content: "©";
}
.copy {
  position: absolute;
  left: 50%;
  bottom: 50px;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 100%;
  overflow: hidden;
}
@media (max-width: 480px) {
  .copy {
    font-size: 11px;
    bottom: 30px;
  }
}