.header-container .wrap,
.footer .wrap {
  width: 1256px;
  margin: 0 auto;
}
.content {
  margin: 0;
}
.main {
  padding: 0;
}

.wrap {
  width: auto;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .header-container .wrap {
    width: auto;
    margin: 0 auto;
  }
  .section-contents {
    padding: 30px 0px;
  }
  .footer .wrap {
    width: auto;
  }
}

.ff-title {
  font-family: "Times New Roman", 游明朝, "Yu Mincho", 游明朝体, YuMincho,
    "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", HiraMinProN-W3, HGS明朝E,
    "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
@media screen and (max-width: 769px) {
  /*全幅にする*/
  main.main {
    padding: 16px 0px !important;
  }

  /*全幅を解除*/
  #sec_01{
    padding: 30px 20px;
  }
  #sec_03 {
    padding: 30px 10px;
  }

}

/************************************
** sec_01
************************************/

.wrapper {
  margin-bottom: 50px;
}

.section-title-en {
  color: #29a9e0;
  font-weight: 700;
}

.section-title {
  margin-top: 12px;
  padding-bottom: 40px;
  font-size: 2em;
  font-weight: 700;
  line-height: 1;
  position: relative;
}

.section-lead {
  line-height: 2.5;
}

.button {
  padding: 17px 0;
  width: 260px;
  font-size: 1rem;
  letter-spacing: 0.18em;
  overflow: hidden;
  position: relative;
}

.button-ghost {
  border: 1px solid #3434;
  background: transparent;
  transition: all 0.5s ease 0.2s;
  z-index: 1;
}

.button-ghost:hover {
  background: #29abe2;
  color: #fff;
  border: 1px solid #29abe2;
}

@media screen and (max-width: 769px) {
  #sec_01 .section-lead {
    text-align: left;
  }
}


/************************************
** sec_02
************************************/
#sec_02 {
    padding: 30px 0;
    background: #3cb44a;
}
#sec_02 .section-title-en {
    color: #fff;
}

.article-card-outer {
  margin: 2% auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 1150px;
  text-align: left;
}
.article-card-outer .article-card {
  width: 24.25%;
  background-color: #fff;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.07);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  margin-bottom:2%;
  padding: 10px;
  border-radius: 5%;
}
.article-card-outer .article-card:hover {
  box-shadow: 2px 8px 20px 0 rgba(31, 32, 68, 0.25);
  -webkit-transform: scale(1.01);
  -ms-transform: scale(1.01);
  transform: scale(1.01);
}
.article-card-outer .article-card .card-link {
  width: 100%;
  text-decoration: none;
  color: #343434;
}
.article-card-outer .article-card .card-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.article-card-outer .article-card .card-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.article-card-outer .article-card .card-image img {
	width: 80%;
}
.article-card-outer .article-card .card-body {
  padding: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.article-card-outer .article-card .card-body .title {
  font-size: 1.2em;
}
.card-body p { font-size: 0.8em; }
.article-card-outer .article-card .card-body .excerpt {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin: 8px 0 65px;
  font-size: 1.4rem;
}
@media screen and (max-width: 769px) {
  .article-card-outer {
    margin: 0 5%;  /* margin: 11% auto 0 */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .article-card-outer .article-card {
    width: 100%;
  }
  .article-card-outer .article-card:not(:first-child) {
    margin-top: 10px; /* margin-top: 19px; */
  }
  .article-card-outer .article-card .card-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .article-card-outer .article-card .card-image {
    width: 100%;
	display: none; /* スマホ時はeyecatchを表示させない */
  }
  .article-card-outer .article-card .card-image img {
    height: auto;
  }
  .article-card-outer .article-card .card-body {
    width: 100%;
  }
  .article-card-outer .article-card .card-body .title {
    font-size: 0.9em;
    font-weight: 700;
  }
  .article-card-outer .article-card .card-body .excerpt {
    margin: 8px 0 0;
    font-size: 1.2rem;
  }
}
/************************************
** sec_04
************************************/
.news-items { padding: 0 10%; }

.news-items .item {
    height: 70px;
    border: 1px solid #ddd;
    margin: 0 0 -1px;
    position: relative;
    padding: 0 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
	text-decoration: none;
}

.item .date {
    width: 90px;
    font-size: 16px;
    color: #999;
	margin-right: 20px;
}
.item .title { color: #000; }

@media screen and (max-width: 769px) {
	.news-items { padding: 0; }
	.item .date { margin-right: 300px; }
}

/************************************
** sec_08
************************************/

#sec_08 {
    padding: 30px 0;
    background: #d9f0f9;
}

#sec_02 .section-title-en {
    color: #fff;
}

.access-info-desc,
.access-info-map {
  width: 49%;
}
.access-info-desc {
  padding: 30px;
}
.access-info {
  background: #f5f5f5;
}
.access-info h3 {
  color: #29abe2;
}
.desc-inner {
  padding: 0 0 0 15px;
}
.desc-inner p {
  font-size: 14px;
}
.access-info-map {
  display: flex;
}
@media screen and (max-width: 769px) {
  .access-info-desc, .access-info-map {
    width: 100%;
  }
  .access-info-map iframe {
    height: 300px;
  }
}

/************************************
** content-bottom
************************************/
.content-bottom { margin: 0; }

/* 
.content-bottom .wrap { width: 1256px; }

@media screen and (max-width: 769px) {
  .content-bottom .wrap { width: auto; }
}
 */
/************************************
** footer
************************************/
.footer{ padding: 20px; }