@charset "UTF-8";

html {
  font-size: 62.5%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background: url('../images/suw-homepage-background.jpg') repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  font-family: 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
}

.header-main {
  color: #000000;
  margin: 50px 480px 30px;
  padding: 18px 40px 15px;
  border-color: #cbcbcb #4e474e #4e474e #cbcbcb;
  border-style: solid;
  border-width: 5px;
}
.header-title {
  font-size: 38px;
  font-weight: 400;
  color: #ff0000;
}
.header-sub-title {
  font-size: 25px;
  font-weight: 200;
  color: #ff00ff;
}
.header-buttons {
  color: #000000;
}
.button {
  display: inline-block;
  width: 120px;
  padding: 20px;
  background-color: #918a91;
  letter-spacing: 1px;
  font-size: 1.5rem;
  border-radius: 28px;
  text-decoration: underline;
  font-weight: bold;
  color: #0000ff;
}

/* --------------------------------
 * アクセスカウンター
 * -------------------------------- */
span {
  display: inline-block;
  padding: 6px 6px 4px;
  background: #e870b3;
  margin-right: -2px;
}
.access-counter {
  width: 50%;
  margin: 10px auto;
  background-color: aqua;
  padding: 5px 0;
}
.counter-description {
  color: #0000ff;
  font-size: 21px;
  font-style: italic;
  font-weight: bold;
}

/* --------------------------------
 * あいさつ
 * -------------------------------- */
.greeting {
  color: #ff6347;
  display: flex;
  justify-content: center;
}
.greeting-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 50px;
  font-style: italic;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 4px;
  text-shadow: -3px -3px 2px #77571a, 3px 3px 5px #eacec8;
}
.arabou-l {
  transform: scale(1.9);
  animation: arabou 3s linear infinite;
  -moz-animation: arabou 3s linear infinite;
  -webkit-animation: arabou 3s linear infinite;
  -o-animation: arabou 3s linear infinite;
}
.arabou-r {
  transform: scale(1.9);
  animation: arabou 3s linear infinite;
  -moz-animation: arabou 3s linear infinite;
  -webkit-animation: arabou 3s linear infinite;
  -o-animation: arabou 3s linear infinite;
}
.greeting-text {
  color: #000000;
  font-size: 1.8rem;
}

@keyframes arabou {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.1);
  }
  40% {
    transform: scale(1.2);
  }
  60% {
    transform: scale(1.3);
  }
  80% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1.5);
  }
}

/* --------------------------------
 * about
 * -------------------------------- */
.title {
  color: #000000;
}
.description {
  color: #000000;
}
