@charset "UTF-8";
/* ブレイクポイント設定 */
/* 色設定 */
/* 配置(フレックス) */
/* 擬似要素の共通基盤 */
/* transition */
/* ホバーで左から右遷移の動き */
.hoverLeft a::before {
  transform: translateX(-100%);
  transition: 0.3s;
}
.hoverLeft:hover a::before {
  transform: translateX(0);
}

/* レスポンシブ */
.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;
  color: #fff;
  background: orange;
  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%;
}

/* ホバーでボタン色反転 */
.hover01 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 12rem);
}
@media screen and (max-width: 767px) {
  .hover01 {
    height: calc(100vh - 14rem);
  }
}

.hover01__blue-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40rem;
  height: 9rem;
  border: solid 2px #009CFF;
  border-radius: 5rem;
  overflow: hidden;
}
.hover01__blue-btn a {
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  background: #009CFF;
  transition: 0.3s;
}
.hover01__blue-btn a::before {
  position: absolute;
  content: "";
  display: block;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}
.hover01__blue-btn a span {
  font-size: 2.5rem;
  margin-right: 0.7em;
}
.hover01__blue-btn a .blue-btn__circle {
  position: relative;
  width: 4rem;
  height: 4rem;
}
@media screen and (max-width: 767px) {
  .hover01__blue-btn a .blue-btn__circle {
    width: 3.9rem;
    height: 3.9rem;
  }
}
.hover01__blue-btn a .blue-btn__circle::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.5rem;
  height: 1.5rem;
  background: url(../images/Vector.png) no-repeat 50% 50%/contain;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .hover01__blue-btn a .blue-btn__circle::before {
    width: 1.2rem;
    height: 1.9rem;
  }
}
.hover01__blue-btn:hover a {
  color: #009CFF;
}
.hover01__blue-btn:hover a .blue-btn__circle::before {
  transform: translate(calc(-50% + 0.5rem), -50%);
}/*# sourceMappingURL=style.css.map */