@charset "UTF-8";
/* ブレイクポイント設定 */
/* 色 */
/* 配置(フレックス) */
/* 擬似要素の共通基盤 */
/* レスポンシブ */
.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

/* 基盤 */
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.3037809648vw;
  }
}

body {
  color: black;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  width: 100%;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

a {
  position: relative;
  text-decoration: none;
  color: blue;
  display: block;
  -webkit-tap-highlight-color: transparent;
}

img {
  width: 100%;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ヘッダー(タイトル) */
.header {
  height: 12rem;
  background: green;
  color: #fff;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .header {
    height: 14rem;
    font-size: 2.2rem;
  }
}

.page-title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* スクロールでふわっと表示 */
.slide-in01__blank {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 10rem);
  font-size: 6rem;
}
@media screen and (max-width: 767px) {
  .slide-in01__blank {
    height: calc(100vh - 14rem);
    font-size: 3rem;
  }
}

.slide-in01__contents {
  margin: 15rem 0;
}

.slide-in01__content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 7.2rem;
  color: #fff;
  font-size: 4.6rem;
  padding: 0.6rem;
  margin: 0 auto;
}
.slide-in01__content::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(../images/言葉背景①.png) no-repeat 50% 50%/contain;
}

/* js */
.js-slideinLeft::before {
  clip-path: inset(0 100% 0 0);
  transition: 0.6s ease;
}

.js-slideinLeft.active::before {
  clip-path: inset(0 0 0 0);
}/*# sourceMappingURL=style.css.map */