@charset "UTF-8";
body {
  font-family: myriad-pro, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  background-color: #ffef6c;
}

a {
  color: #000;
  text-decoration-line: none;
}

a:hover {
  opacity: 0.5;
}

ul li {
  list-style: none;
}

span.ball {
  display: inline-block;
  background-image: url(/image/ball.png);
  background-size: cover;
}

.btn {
  display: block;
  text-align: center;
  text-decoration: none;
  width: 400px;
  margin: auto;
  padding: 1rem 4rem;
  font-weight: bold;
  border: 2px solid #27acd9;
  background: #27acd9;
  color: #fff;
  border-radius: 100vh;
  transition: 0.5s;
}

.btn:hover {
  color: #27acd9;
  background: #fff;
}

.container {
  width: 1080px;
  margin: 0 auto;
}

.flexbox {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.sec-ttl {
  font-size: 1.5em;
  font-weight: bold;
}

div.sec-ttl {
  margin-bottom: 10px;
}

main {
  width: 100%;
}
main .sec-ttl {
  font-family: "Darumadrop One", cursive;
  font-size: 2em;
  text-align: center;
}
main span.ball {
  width: 50px;
  height: 50px;
  margin: 10px 0;
}

.card {
  line-height: 1.8;
  padding: 30px 16px 80px;
  text-align: center;
  max-width: 480px;
  margin: 50px auto;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

section article .ttl {
  font-size: 1.3em;
  font-weight: bold;
  padding: 5px 0;
  border-radius: 20px;
}
section article .text {
  font-size: 1.2em;
  margin: 10px 0;
}

.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s, transform 1s;
}

.fade.active {
  opacity: 1;
  transform: translateY(0px);
}

.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 60%;
  height: 80%;
}

@media screen and (min-width: 481px) {
  .sp {
    display: none;
  }
}
/* スマホ */
@media screen and (max-width: 480px) {
  .pc {
    display: none;
  }
  .card {
    max-width: 90%;
  }
  #prof article .item .card {
    width: 90% !important;
    float: none;
    margin: 30px auto;
    float: none;
  }
  #prof article .item {
    margin-right: 0px;
  }
  .btn {
    width: 80%;
  }
  .map iframe {
    width: 90%;
  }
}