body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #333;
  font-size: 18px;
  line-height: 1.7;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

img {
  width: 100%;
  vertical-align: bottom;
}

h2 {
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 2rem;
}
h3 {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
dl {
    margin-top: 1rem;
}
dl dt {font-size: 22px;font-weight: 600;}
dl dd {
    margin-bottom: 2rem;
}
p {
  text-align: left;
}
a {
  color: #2EA7E0;
}
a:hover {
  text-decoration: underline;
}

.logo {
  width: 100px;
}
.site-header {
  background: #62A6D9;
  color: #fff;
  padding: 20px 0;
  position: relative;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.toypLogo {
  background-color: #62a6d9;
  padding: 20px 40px;
  margin-bottom: 2rem;
}
.site-header .logo {
  font-size: 24px;
  margin: 0;
}

.main-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
}
.jciLogo {
  width: 200px;
  margin: 0 auto;
  margin-bottom: 1rem;
}

.section {
  padding: 60px 0;
}
.section:nth-of-type(odd) {
  background-color: #F2F2F2;
}
.site-footer {
  background: #62A6D9;
  color: #fff;
  text-align: center;
  padding: 50px 0 20px;
}
.site-footer p {
  text-align: center;
}

#selector ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2% 2%;
}
#selector ul li {
  width: 32%;
  border: 1px solid #333;
  background-color: #fff;
  margin-top: 20px;
}
#selector ul li figure {
    display: flex;
}
#selector ul li figure .imgBox {
  width: 45%;
  padding: 10px;
}
#selector ul li figure figcaption {
  width: 100%;
  padding: 10px;
  font-size: 14px;
}
#selector ul li figure figcaption span {
  display: block;
  word-break: break-word;
}
#selector ul li figure figcaption span.name {
  margin-bottom: 1rem;
  border-bottom: 1px solid #333;
  padding: 0.5rem 0;
  font-size: 18px;
  font-weight: bold;
}
.kikan {
  display: block;
  border: 1px solid #333;
  padding: 20px;
  text-align: center;
  font-weight: bold;
  margin-top: 1rem;
  background: #fff;
}
.entryBtn {
  vertical-align:middle;
  margin: 50px 0 0;
}

.entryBtn a {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: auto;
  max-width: 250px;
  padding: 10px 25px;
  font-family: "Noto Sans Japanese";
  text-decoration: none;
  color: #fff;
  line-height: 1.8;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  background: #62A6D9;
  border-radius: 9999px;
  border-bottom: solid 5px #3b85c2;
}
.entryBtn a:hover {
  border-bottom: solid 2px #999;
  transform: translateY(3px);
}
.under {
  display: inline;
  background-position: left -100% center;
  padding-bottom: 0.6em;
  font-weight: bold;
  background-size: 200% 0.6em;
  background-repeat: repeat-x;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, rgb(255, 255, 102) 50%);
  transition: background-position 2s 0.1s;
}

/*=============================
.btn-trigger
=============================*/
.btn-trigger {
  position: relative;
  width: 45px;
  height: 30px;
  cursor: pointer;
  display: none;
}
.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
}
.btn-trigger, .btn-trigger span {
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}
.btn-trigger span:nth-of-type(1) {
  top: 0;
}
.btn-trigger span:nth-of-type(2) {
  top: 14px;
}
.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}
.btn-trigger {
  display: none;
}

/*=============================
#btn07
=============================*/
#btn07 span:nth-of-type(1) {
  -webkit-animation: btn07-bar01 .75s forwards;
  animation: btn07-bar01 .75s forwards;
}
@-webkit-keyframes btn07-bar01 {
  0% {
    -webkit-transform: translateY(14px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(14px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes btn07-bar01 {
  0% {
    transform: translateY(14px) rotate(45deg);
  }
  50% {
    transform: translateY(14px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
#btn07 span:nth-of-type(2) {
  transition: all .25s .25s;
  opacity: 1;
}
#btn07 span:nth-of-type(3) {
  -webkit-animation: btn07-bar03 .75s forwards;
  animation: btn07-bar03 .75s forwards;
}
@-webkit-keyframes btn07-bar03 {
  0% {
    -webkit-transform: translateY(-14px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-14px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes btn07-bar03 {
  0% {
    transform: translateY(-14px) rotate(-45deg);
  }
  50% {
    transform: translateY(-14px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
#btn07.active span:nth-of-type(1) {
  -webkit-animation: active-btn07-bar01 .75s forwards;
  animation: active-btn07-bar01 .75s forwards;
}
@-webkit-keyframes active-btn07-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(14px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(14px) rotate(45deg);
  }
}
@keyframes active-btn07-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(14px) rotate(0);
  }
  100% {
    transform: translateY(14px) rotate(45deg);
  }
}
#btn07.active span:nth-of-type(2) {
  opacity: 0;
}
#btn07.active span:nth-of-type(3) {
  -webkit-animation: active-btn07-bar03 .75s forwards;
  animation: active-btn07-bar03 .75s forwards;
}
.toypChirasi {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.toypChirasi img {
  width: 40%;
}
@-webkit-keyframes active-btn07-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-14px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-14px) rotate(-45deg);
  }
}
@keyframes active-btn07-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-14px) rotate(0);
  }
  100% {
    transform: translateY(-14px) rotate(-45deg);
  }
}

@media screen and (max-width: 900px) {
  .btn-trigger {
    display: block;
  }
  .main-nav ul {
    display: none;
  }
  .main-nav ul.active {
    display: block;
    position: absolute;
    top: 112px;
    left: 0;
    width: 100%;
    padding: 10%;
    background: #3b85c2;
  }
  .main-nav ul.active li:not(:first-child) {
    margin-top: 1rem;
  }
  .main-nav ul.active li a {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .site-header {
    padding: 0;
  }
  .main-nav ul.active {
    top: 72px;
  }
  #selector ul li {
    width: 49%;
  }
  .toypChirasi {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .toypChirasi img {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  body {
    font-size: 16px;
  }
  .section {
    padding: 30px 0;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 24px;
  }
  dl dt {
    font-size: 20px;
    font-weight: 600;
  }
  #selector ul li figure figcaption span.name {
    font-size: 16px;
  }
  .kikan {
    padding: 15px;
    font-size: 1.2em;
  }
}
@media screen and (max-width: 500px) {
  #selector ul li {
    width: 100%;
  }
}