@charset "utf-8";

/* CSS Document */
@font-face {
  font-family: "segoesc";
  src: url("../font/segoesc/segoesc.ttf");
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: none;
  font-family: "游ゴシック", "segoesc";
  background-color: rgba(139, 181, 199, 0.5);
  overflow-x: hidden;
  width: 100%;
}

/* パンくずリスト（Breadcrumb）*/
.Breadcrumb {
  margin: 0 20px;
}

.Breadcrumb ol {
  display: flex;
}

.Breadcrumb li {
  font-size: 1rem;
  font-weight: bold;
}

.Breadcrumb ol li+li::before {
  content: '→';
  margin: 0 0.5em;
  color: #666;
}

/*Main-img*/
.mission {
  position: relative;
  margin-bottom: 20px;
}

.mission img {
  width: 100vw;
  height: 500px;
  object-fit: cover;
}

.text {
  width: 100vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 4.3rem;
  font-weight: bold;
  font-family: "游ゴシック";
  text-align: center;
}

.accordion-header {
  cursor: pointer;
  background-color: #57A2C7;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  padding: 10px;
  border: 1px solid #ccc;
  margin: 0 20px 10px;
}

.news-date {
  font-size: 12px;
  color: #fff;
  margin-left: 10px;
}

.accordion-content {
  display: none;
  background-color: #fff;
  font-size: 16px;
  color: #333;
  padding: 10px;
  border: 1px solid #ccc;
  margin: 0 20px 20px;
}

#Footer-placeholder {
  margin-top: 20px;
}

@media screen and (min-width: 960px) {
  .accordion {
    padding: 0 40px;
  }
}