@charset "UTF-8";
/*key color*/
/*font*/
/*タブレット*/
/*スマホ*/
/*汎用横幅*/
/*リンクボタン*/
.first_view {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 400px;
  padding: 100px 5vw 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5)), url(../img/head_v.jpg);
  background-position: center, center top 35%;
  background-attachment: fixed;
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: cover, cover;
  overflow: hidden;
  border-radius: 0px 0px 15px 15px;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .first_view {
    flex-flow: column;
    height: 350px;
    padding: 90px 10px 10px;
  }
}
.first_view::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 400px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5)), url(../img/head_v.jpg) center no-repeat;
  background-size: cover;
  border-radius: 0px 0px 15px 15px;
}
@media screen and (max-width: 767px) {
  .first_view::before {
    flex-flow: column;
    height: 350px;
    padding: 90px 10px 10px;
  }
}
.first_view h1 {
  color: #fff;
  text-align: center;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .first_view h1 {
    top: 35%;
    font-size: 40px;
  }
  .first_view h1 span {
    display: inline-block;
  }
}

section h2 {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 28px;
}
section h2::before {
  display: block;
  content: "";
  -webkit-margin-before: 10px;
          margin-block-start: 10px;
  width: 30px;
  height: 40px;
}
@media screen and (max-width: 767px) {
  section h2 {
    font-size: 24px;
  }
  section h2::before {
    width: 30px;
    height: 40px;
    background-size: 100%;
  }
}
section dl dt {
  line-height: 1.5;
}
section dl dd {
  line-height: 1.5;
}

.purpose {
  padding: 80px 5vw;
}
@media screen and (max-width: 767px) {
  .purpose {
    padding: 40px 0;
  }
}
.purpose h2 {
  width: 85%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  -webkit-margin-after: 20px;
          margin-block-end: 20px;
}
@media screen and (max-width: 767px) {
  .purpose h2 {
    width: 90%;
  }
}
.purpose h2::before {
  background-image: url(../img/accent_brown.svg);
}
.purpose p {
  width: 85%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .purpose p {
    width: 90%;
  }
}

.overview {
  padding: 80px 5vw;
  background: linear-gradient(180deg, rgba(82, 124, 82, 0.75) 0%, rgba(82, 124, 82, 0.75)), url(../img/overview_back.jpg);
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  background-position: bottom center;
}
@media screen and (max-width: 767px) {
  .overview {
    padding: 40px 0;
  }
}
.overview h2 {
  width: 85%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  -webkit-margin-after: 20px;
          margin-block-end: 20px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .overview h2 {
    width: 90%;
  }
}
.overview h2::before {
  background-image: url(../img/accent_white.svg);
}
.overview dl {
  width: 85%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-flow: column;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .overview dl {
    width: 90%;
  }
}
.overview dl div {
  display: flex;
  padding: 10px;
  background: #fff;
}
.overview dl div dt {
  width: 85px;
}
.overview dl div dd {
  width: calc(100% - 85px);
}
.overview dl div dd a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-before: 10px;
          margin-block-start: 10px;
  gap: 10px;
  padding: 0.5em;
  border: 1px solid #327751;
  border-radius: 20px;
  font-size: 14px;
  color: #327751;
  transition: 0.5s;
}
.overview dl div dd a::after {
  content: "";
  display: block;
  width: 10px;
  height: 15px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: #327751;
  transition: 0.5s;
}
.overview dl div dd a:hover {
  opacity: 0.5;
}

.history_board {
  padding: 80px 5vw;
  background: url(../img/yakuin_back.png);
  background-repeat: no-repeat;
  background-size: 150%;
  background-position: right 50% bottom -50%;
}
@media screen and (max-width: 767px) {
  .history_board {
    padding: 40px 0;
    background-size: 220%;
    background-position: right 50% bottom 0%;
  }
}
.history_board .history {
  -webkit-margin-after: 80px;
          margin-block-end: 80px;
}
@media screen and (max-width: 767px) {
  .history_board .history {
    -webkit-margin-after: 40px;
            margin-block-end: 40px;
  }
}
.history_board .history h2 {
  width: 85%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  -webkit-margin-after: 20px;
          margin-block-end: 20px;
}
@media screen and (max-width: 767px) {
  .history_board .history h2 {
    width: 90%;
  }
}
.history_board .history h2::before {
  background-image: url(../img/accent_brown.svg);
}
.history_board .history dl {
  width: 85%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-flow: column;
  border-radius: 15px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .history_board .history dl {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .history_board .history dl {
    border-radius: 10px;
  }
}
.history_board .history dl div {
  display: flex;
  padding: 10px;
}
.history_board .history dl div:not(:last-of-type) {
  border-bottom: 1px solid #C2B5A0;
}
.history_board .history dl div dt {
  width: 130px;
  color: #327751;
}
.history_board .history dl div dd {
  width: calc(100% - 130px);
}
.history_board .board {
  -webkit-margin-after: 60px;
          margin-block-end: 60px;
}
.history_board .board h2 {
  width: 85%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  -webkit-margin-after: 20px;
          margin-block-end: 20px;
}
@media screen and (max-width: 767px) {
  .history_board .board h2 {
    width: 90%;
  }
}
.history_board .board h2::before {
  background-image: url(../img/accent_brown.svg);
}
.history_board .board h2 small {
  font-size: 16px;
}
.history_board .board dl {
  width: 85%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-flow: column;
  padding: 20px 40px;
  border-radius: 15px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .history_board .board dl {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .history_board .board dl {
    padding: 10px 20px;
    border-radius: 10px;
  }
}
.history_board .board dl div {
  display: flex;
  padding: 10px 0;
}
@media screen and (max-width: 767px) {
  .history_board .board dl div {
    flex-flow: column;
  }
}
.history_board .board dl div:not(:last-of-type) {
  border-bottom: 1px solid #C2B5A0;
}
.history_board .board dl div dt {
  width: 150px;
  color: #327751;
}
@media screen and (max-width: 767px) {
  .history_board .board dl div dt {
    width: 100%;
  }
}
.history_board .board dl div dd {
  width: calc(100% - 150px);
}
@media screen and (max-width: 767px) {
  .history_board .board dl div dd {
    width: 100%;
  }
}
.history_board .board dl div dd p {
  display: flex;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .history_board .board dl div dd p {
    flex-flow: column-reverse;
  }
}
.history_board .board dl div dd p .name {
  display: inline-block;
  width: 5rem;
  -webkit-margin-end: 2rem;
          margin-inline-end: 2rem;
}
@media screen and (max-width: 767px) {
  .history_board .board dl div dd p .name {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-margin-end: 1rem;
            margin-inline-end: 1rem;
  }
}
.history_board .board dl div dd p .company {
  color: #327751;
}
@media screen and (max-width: 767px) {
  .history_board .board dl div dd p .company {
    display: block;
    color: rgba(50, 119, 81, 0.7);
  }
  .history_board .board dl div dd p .company br {
    display: none;
  }
  .history_board .board dl div dd p .company span {
    display: block;
  }
}
.history_board .member_list {
  width: 85%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .history_board .member_list {
    width: 90%;
  }
}
.history_board .member_list h2::before {
  background-image: url(../img/accent_brown.svg);
}
@media screen and (max-width: 767px) {
  .history_board .member_list {
    flex-flow: column;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
  }
}

.access {
  background: #BCAC93;
  color: #fff;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .access {
    flex-flow: column;
  }
}
.access h2 {
  justify-content: center;
  -webkit-margin-after: 20px;
          margin-block-end: 20px;
}
.access h2::before {
  background-image: url(../img/accent_white.svg);
}
.access .access_data {
  width: 50%;
  padding-block: 80px;
  padding-inline: 20px;
}
.access .access_data p {
  text-align: center;
  line-height: 1.5;
}
.access .access_data p:first-of-type {
  -webkit-margin-after: 10px;
          margin-block-end: 10px;
}
@media screen and (max-width: 767px) {
  .access .access_data {
    width: 100%;
    padding-block: 40px;
  }
}
.access .map {
  width: 50%;
}
.access .map iframe {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .access .map {
    width: 100%;
  }
}

.related_links {
  padding-block: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .related_links {
    flex-flow: column;
    gap: 20px;
  }
}
.related_links a {
  width: 270px;
}
@media screen and (max-width: 767px) {
  .related_links a {
    width: 90%;
  }
}
/*# sourceMappingURL=top.css.map */