<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* CSS Document */

body {
  text-align: center;
}

h1 {
  background-color: rgba(0,0,0,1);
  margin: 0 0 50px;
  padding: 0;
}

h2 {
  margin: 0;
  padding: 0 0 20px;
}

/* h3 {
  background-color: rgba(0,0,0,.1);
  font-size: 20px;
  margin: 0 0 40px;
  padding: 10px;
} */

img {
  height: auto;
  max-width: 100%;
}

.desc {
  margin: 0;
  padding: 0 0 50px;
}

.item {
  margin: 0 0 100px;
  text-align: center;
}

.image {
  display: table;
  height: 100%;
  margin-bottom: 30px;
  table-layout: fixed;
  width: 100%;
}

.image span {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

.image span img {
  max-height: 360px;
  width: auto;
}

.link {
  margin-bottom: 30px;
}

/* デザイン変更 */

h3 {
  padding: 8px;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.1818181818;
  font-family: "Venti";
  text-align: center;
  background: #ccc;
}

.dl_btn {
  display: block;
  width: 130px;
  margin: 0 auto;
  padding: 5px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #000000;
  transition: opacity 0.5s ease;
}

.dl_btn:hover {
  color: #fff;
  text-decoration: none;
  opacity: .7;
}

@media screen and (max-width: 768px) {
  h3 {
    padding: 2vw 0;
    margin-bottom: 3.5vw;
    font-size: 3vw;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.1935483871;
    font-family: "Venti";
    text-align: center;
    background: #ccc;
  }

  .dl_btn {
    width: 29vw;
    display: block;
    padding: 5px;
    font-size: 2.7vw;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.2222222222;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background: #000000;
    transition: opacity 0.5s ease;
  }

  .dl_btn:hover {
    opacity: 1;
  }
}</pre></body></html>