@charset "UTF-8";
/* CSS INFORMATION -====================================================
File name : base.css
Description : 共通
===================================================================== */
/* =====================================================================
    共通（大枠）
======================================================================*/
html {
  min-height: 100vh;
  overflow-x: hidden;
  font-size: calc(10 / 750 * 100vw);
}

.gDef-top-banner {
  background-color: #f5f1ea;
}

.wrapper {
  position: relative;
  font-family: YakuHanJP, "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #000;
  background-color: #fff;
  overflow-x: hidden;
}
.wrapper img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}
.wrapper a {
  color: #000;
  display: block;
}

section,
main,
header,
footer {
  position: relative;
}

.inner {
  position: relative;
  width: calc(680 / 750 * 100%);
  margin: 0 auto;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: calc(10 / 1920 * 100vw);
  }
  .wrapper {
    font-size: max(1.6rem, 14px);
  }
  .wrapper a {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .inner {
    width: calc(1024 / 1920 * 100%);
    max-width: 1024px !important;
  }
  .sp {
    display: none !important;
  }
}
@media screen and (min-width: 1920px) {
  html {
    font-size: 10px;
  }
}
/* =====================================================================
*    共通
* =================================================================== */
#subpage .main {
  padding-bottom: 20rem;
  background: #f5f1ea;
}

.sec_ttl {
  text-align: center;
  margin-bottom: 6rem;
  font-size: 6rem;
  font-weight: 900;
  line-height: 1.333;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  #subpage .main {
    padding-bottom: 8rem;
  }
  .sec_ttl {
    font-size: max(4.5rem, 33px);
  }
}
/* =====================================================================
    mv
======================================================================*/
.mv {
  overflow: hidden;
}

.mv_logo {
  position: absolute;
  top: 2.4rem;
  left: 2.5rem;
  width: 16rem;
  z-index: 2;
}

.mv_ttl {
  position: relative;
}
.mv_ttl::before {
  content: "";
  position: absolute;
  display: block;
  top: 4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 70rem;
  height: 70rem;
  border-radius: 50%;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  background-color: #13ac43;
}
.mv_ttl h1 {
  position: relative;
  margin: 0 auto;
  padding: 23rem 0 26.8rem;
  width: 56.8rem;
}

.mv_deco1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 25rem;
}
.mv_deco1::after {
  bottom: 6rem;
  left: 6rem;
}

.mv_deco2 {
  position: absolute;
  top: 27rem;
  left: 0;
  width: 8.1rem;
}
.mv_deco2::after {
  bottom: 18rem;
  right: 6rem;
}

@media screen and (min-width: 768px) {
  .mv_logo {
    top: 2rem;
    left: 2rem;
    width: 12rem;
  }
  .mv_ttl::before {
    top: -4.6rem;
  }
  .mv_ttl h1 {
    padding: 8.2rem 0 14rem;
  }
  .mv_deco1 {
    width: 44rem;
  }
  .mv_deco1::after {
    bottom: 18rem;
    left: 30.6rem;
  }
  .mv_deco2 {
    top: 12rem;
    width: 32rem;
  }
  .mv_deco2::after {
    top: 6rem;
    bottom: auto;
  }
  .mv_deco3 {
    top: 44rem;
    right: 0;
    width: 32rem;
  }
  .mv_deco3::after {
    top: 6rem;
    left: 6rem;
  }
}
/* =====================================================================
    animation
======================================================================*/
.rotation {
  position: absolute;
}
.rotation::after {
  content: "";
  position: absolute;
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  background: url(../images/common/img_deco_circle.png) no-repeat center/contain;
}
.rotation.is-active::after {
  -webkit-animation: rotation 3s ease-in-out;
          animation: rotation 3s ease-in-out;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(3turn);
            transform: rotate(3turn);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(3turn);
            transform: rotate(3turn);
  }
}
/* =====================================================================
    articles_list 
======================================================================*/
.articles_list {
  position: relative;
}
.articles_list .articles_month {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Concert One", cursive;
}
.articles_list .articles_month::after {
  content: "";
  display: inline-block;
  margin-top: 0.8em;
  width: 2px;
  height: 3em;
}
.articles_list .articles_month span {
  font-size: 5rem;
  margin-bottom: 0.2em;
}
.articles_list .articles_month small {
  font-size: 2rem;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  white-space: nowrap;
}
.articles_list figure {
  margin: 0 auto 1em;
  margin-bottom: 1em;
  border-radius: 2.4rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0.6em 0.6em rgba(0, 0, 0, 0.05);
          box-shadow: 0 0.6em 0.6em rgba(0, 0, 0, 0.05);
}
.articles_list h3 {
  display: inline;
  padding: 0.1em;
  font-weight: 700;
  line-height: 1.833;
  letter-spacing: 0.2em;
  background-color: #fff;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.articles_list time {
  display: block;
  margin: 0.6em 0 0 0.1em;
  font-family: "Concert One", cursive;
}

.pager {
  position: relative;
  margin-top: 8rem;
  padding-top: 4rem;
}
.pager::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.8rem;
  background: url(../images/common/img_dots_sdgs_h.png) round center left 0.1em/auto 100%;
}
.pager_year {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  gap: 2em;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
}
.pager_year::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.8rem;
  background: url(../images/common/img_dots_sdgs_h.png) round center left 0.1em/auto 100%;
}
.pager_year li a {
  font-weight: 700;
}
.pager_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pager_btn li a {
  position: relative;
  font-weight: 700;
}
.pager_btn li a.btn_top {
  padding-left: 1.2em;
}
.pager_btn li a.btn_top::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) scale(-1, 1);
          transform: translateY(-50%) scale(-1, 1);
  width: 1em;
  height: 0.8em;
  background: url(../images/common/icon_arrow.png) no-repeat center/contain;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.pager_btn li a.btn_wrapper {
  padding-right: 1.2em;
}
.pager_btn li a.btn_wrapper::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(-90deg) scale(1, -1);
          transform: translateY(-50%) rotate(-90deg) scale(1, -1);
  width: 1em;
  height: 0.8em;
  background: url(../images/common/icon_arrow.png) no-repeat center/contain;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media screen and (min-width: 768px) {
  .articles_list .articles_month span {
    font-size: 4rem;
  }
  .articles_list .articles_month small {
    font-size: 1.6rem;
  }
  .articles_list a:hover h3 {
    color: #fff;
  }
  .pager {
    width: 100%;
  }
  .pager_year li a:hover {
    color: #13ac43;
  }
  .pager_btn li a.btn_top:hover::after {
    left: -0.5em;
  }
  .pager_btn li a.btn_wrapper:hover::after {
    top: 20%;
  }
}
/* =====================================================================
*    header
* =================================================================== */
/* =====================================================================
*    footer
* =================================================================== */
.footer {
  padding: 11rem 0 3rem;
}

.footer_deco {
  top: -20rem;
  left: 0;
}
.footer_deco::after {
  top: 18rem;
  left: 6rem;
}

.pagetop {
  position: absolute;
  bottom: 10rem;
  right: 8rem;
  width: 8rem;
  z-index: 100;
}
.pagetop.fixed {
  position: fixed;
  bottom: 5rem;
}

.copyright {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  color: #1c3e76;
}

@media screen and (min-width: 768px) {
  .footer {
    padding: 5rem 0;
  }
  .footer_deco {
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
    width: 44rem;
  }
  .footer_deco::after {
    top: 6rem;
    left: 30rem;
  }
  .pagetop {
    right: 20rem;
  }
  .pagetop a {
    position: relative;
    top: 0;
  }
  .pagetop a:hover {
    top: -1rem;
  }
  .copyright {
    font-size: 1.4rem;
  }
}
/* =====================================================================
*    popup
* =================================================================== */
.popup {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999;
}

.popup_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.popup_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
}

.popup_inner {
  position: relative;
  margin: auto;
  -ms-flex-item-align: start;
  align-self: flex-start;
  padding: 5.5em 0;
  width: 100%;
}

.popup_close {
  position: absolute;
  top: 16rem;
  right: 2rem;
  width: 3em;
  height: 3em;
  z-index: 3;
}
.popup_close::before {
  content: "";
  display: block;
  width: 1px;
  padding-top: 100%;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0 auto;
}
.popup_close::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  width: 1px;
  margin: 0 auto;
  padding-top: 100%;
  background-color: #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.popup_list {
  position: relative;
  width: 100%;
  height: 100%;
  background: #ff6d2d;
}
.popup_list > li {
  position: relative;
  display: none;
  margin: 0 auto;
  padding: 12rem 0;
  width: calc(680 / 750 * 100%);
  z-index: 2;
}

.popup_movie_embed {
  position: relative;
  aspect-ratio: 16/9;
}
.popup_movie_embed iframe,
.popup_movie_embed video {
  width: 100%;
  height: 100%;
}

.popup_close2 {
  margin: 1em auto 0;
  padding: 0.5em;
  width: 30rem;
  font-size: 2.8rem;
  text-align: center;
  background: #1c3e76;
  color: #fff;
  border: 1px solid #fff;
}

@media screen and (min-width: 768px) {
  .popup_bg {
    cursor: pointer;
  }
  .popup_inner {
    width: 90%;
    max-width: 1024px;
  }
  .popup_close {
    right: 12rem;
    cursor: pointer;
  }
  .popup_list > li {
    width: calc(1024 / 1920 * 100%);
  }
  .popup_close2 {
    width: 50rem;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    cursor: pointer;
  }
  .popup_close2:hover {
    background-color: #13ac43;
  }
}/*# sourceMappingURL=base.css.map */