@charset "UTF-8";
@media only screen and (min-width: 768px) and (max-width: 1366px) and (orientation: landscape) {
  /* ここにスタイルを記述 */
  body {
    overflow: hidden;
  }
  .wrapper {
    width: 100vw;
    height: 100vh;
    background-image: url(../img/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0;
    overflow: hidden;
  }
  .inner-box {
    padding: 3% 5%;
  }
  #error-message {
    display: none; /* エラーメッセージを非表示 */
  }
}
/* 指定された範囲外のスタイル */
@media only screen and (max-width: 767px), only screen and (min-width: 1367px), only screen and (orientation: portrait) {
  #error-message {
    display: block; /* エラーメッセージを表示 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #f44336;
    color: white;
    text-align: center;
    padding: 20px;
    z-index: 1000;
  }
  .wrapper {
    display: none;
  }
}
@keyframes slideFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.body-slideFadeInUp {
  animation: slideFadeInUp 0.55s cubic-bezier(0.4, 1, 0.5, 1) forwards;
}

@media only screen and (min-width: 768px) and (max-width: 1366px) and (orientation: landscape) {
  /* ここにスタイルを記述 */
  .list-header-wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .list-header-wrap h1 {
    width: 160px;
    display: inline-flex;
  }
  .list-header-wrap h1 img {
    width: 100%;
  }
  .list-header-wrap p {
    width: 32px;
    display: inline-flex;
  }
  .list-header-wrap p img {
    width: 100%;
  }
  .contents-front {
    padding-left: 5%;
    display: flex;
    align-items: center;
    justify-content: left;
    padding-top: 28vh;
  }
  h1 {
    width: 348px;
  }
  h1 img {
    width: 100%;
  }
  h1 strong {
    font-size: 50px;
    font-weight: bold;
  }
  h2 {
    font-size: 18px;
    letter-spacing: 1.25px;
    line-height: 36px;
    color: #050505;
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .cta-big a, .cta-chat a {
    width: 328px;
    height: 80px;
    border-radius: 40px;
    background-color: #050505;
    display: block;
    text-align: center;
    color: #FFFFFF;
    line-height: 80px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    box-shadow: 5px 5px 14px rgba(33, 49, 78, 0.2862745098);
  }
}
.cursor {
  display: inline-block;
  margin-left: 2px;
  opacity: 1;
  animation: blink 0.7s infinite; /* 点滅アニメーション */
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}