@charset "UTF-8";
:root {
  --fs-ss: clamp(0.8rem, calc(0.9rem + 0.625vw), 0.9rem);
  --fs-s: clamp(1rem, calc(1.25rem + 0.625vw), 1.4rem);
  --fs-m: clamp(1.24rem, calc(1.4rem + 0.625vw), 1.7rem);
  --fs-l: clamp(2.1rem, calc(2.1rem + 0.625vw), 2.8rem) ;
}

.fs-ss {
  font-size: var(--fs-ss);
}

.fs-s {
  font-size: var(--fs-s);
}

.fs-m {
  font-size: var(--fs-m);
}

.fs-l {
  font-size: var(--fs-l);
}

body {
  background: #eee;
  margin: 0;
  padding: 0;
}
body h1 {
  font-family: "游明朝体", "Yu Mincho", YuMincho;
  font-size: var(--fs-l);
  width: 100%;
  height: 420px;
  text-align: center;
  text-shadow: 2px 2px 10px skyblue, -2px 2px 10px skyblue, 2px -2px 10px skyblue, -2px -2px 10px skyblue;
  margin: auto;
  border-top: 3px solid #88ccff;
  border-bottom: 3px solid #88ccff;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
body h1::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("./../images/bg_image.jpg");
  background-position: center 60%;
  background-size: cover;
  border-top: 5px solid skyblue;
  border-bottom: 5px solid skyblue;
  box-sizing: border-box;
  display: block;
  position: absolute;
  opacity: 0.75;
  z-index: -1;
}
body h1 a {
  color: #eee;
  text-decoration: none;
  transition: 0.5s;
}
body h1 a:hover {
  opacity: 0.5;
  transition: 0.3;
}
body h1 a::after {
  content: " - 再起動と再起する島のかけ言葉 - ";
  width: 100%;
  height: 100%;
  font-size: var(--fs-s);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  text-shadow: none;
  display: block;
  bottom: calc(210px - var(--fs-l));
}

.exp {
  font-size: 1em;
  font-weight: 300;
  color: #333;
  text-align: center;
  margin: 8em auto;
}
@media (max-width: 720px) {
  .exp {
    font-size: 1em;
    margin: 2em 12%;
  }
}
.exp span {
  display: inline-block;
  padding-bottom: 1em;
}

.flex-cards {
  width: 86%;
  margin: 64px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-flow: row;
  gap: 16px 4%;
}
@media (max-width: 1280px) {
  .flex-cards {
    width: 95%;
  }
}
@media (max-width: 720px) {
  .flex-cards {
    flex-flow: column;
    gap: 32px 4%;
  }
}
.flex-cards a {
  width: 30%;
  transition: transform 0.3s ease;
  text-decoration: none;
}
@media (max-width: 720px) {
  .flex-cards a {
    width: 100%;
  }
}
.flex-cards a .card {
  height: 320px;
  background: #eee;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.flex-cards a .card:hover {
  transform: translateY(-12px);
  transition: transform 0.3s ease;
}
.flex-cards a .card-image {
  height: 150px;
  background-size: cover;
  background-position: center;
}
.flex-cards a .card-date {
  font-size: var(--fs-ss) 0.8em;
  color: white;
  background: skyblue;
  padding: 2px 16px;
  opacity: 0.5;
}
.flex-cards a .card-title {
  height: calc(2.4em + 32px);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee;
  box-sizing: border-box;
}
.flex-cards a .card-title h2 {
  color: #222;
  font-size: 1.2rem;
  text-align: left;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
}
.flex-cards a .card-description {
  font-size: 1em;
  color: gray;
  padding: 0 16px;
  background: #eee;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
}

footer {
  width: 100%;
  min-height: 80px;
  color: white;
  font-size: var(--fs-ss);
  text-align: center;
  margin: 0;
  padding: 1em 0;
  border-top: 4px solid skyblue;
  background-image: url("./../images/bg_image.jpg");
  background-position: center 90%;
  background-size: cover;
  opacity: 0.75;
}/*# sourceMappingURL=style.css.map */