@charset "utf-8";
/*  font-family: "Noto Sans JP", sans-serif;*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");

/*=====ボディ設定*/
html {
  font-size: 62.5%;
  line-height: 1;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
}

body {
  font-size: 1.6rem;
  overflow: hidden;
}

/*=====フッター*/
footer {
  width: 100%;
  background-color: #7438a3;
  color: white;
  line-height: 2;
  position: relative;
}
.block_footer {
  width: 940px;
  margin: 0 auto;
}

h2 {
  font-weight: 700;
  font-size: 2.2rem;
  padding-top: 39px;
}
footer img {
  width: 317px;
  position: absolute;
  bottom: 15%;
  right: 10%;
  z-index: 9999;
}
.copyrights {
  margin-top: 79px;
  padding: 20px;
  text-align: center;
}
/*=====ボタン*/
.botton a {
  background: white;
  border-radius: 7px;
  position: relative;
  display: flex;
  justify-content: flex-start;
  max-width: 280px;
  padding: 10px 25px;
  color: #7438a3;
  line-height: 1.8;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  border: 1px solid #7438a3;
  margin-top: 22px;
}
.botton a:hover {
  background: #fff;
  color: #7438a3;
}

.botton a:hover:after {
  border-color: #fff;
}
.botton a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 2px;
  background-color: #7438a3;
  transition: 0.3s ease-in-out;
}

.botton a::before {
  content: "";
  position: absolute;
  right: 19px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #7438a3;
  border-right: 2px solid #7438a3;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s ease-in-out;
}
