@charset "UTF-8";
/* ブレイクポイント設定 */
/* 色 */
/* 配置(フレックス) */
/* transition */
/* レスポンシブ */
.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 {
  max-width: 100%;
  width: 100%;
  height: auto;
  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 {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* pagetop */
.page-top__blank {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 10rem);
  font-size: 6rem;
}

.blank01 {
  background: lightgreen;
}

.blank02 {
  background: greenyellow;
}

.pagetop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 10;
  width: 8rem;
  height: 8rem;
  background: gainsboro;
  border-radius: 1rem;
  cursor: pointer;
  padding-top: 1.2rem;
}
.pagetop a {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}
.pagetop a .arrow {
  width: 3.2rem;
}
.pagetop a .text {
  color: #002c50;
  font-size: 1.2rem;
}

.js-show {
  opacity: 0;
  transition: 0.3s;
}

.js-show.show {
  opacity: 1;
}/*# sourceMappingURL=style.css.map */