@charset "UTF-8";
@font-face {
  font-family: "mini";
  src: url("../fonts/mini-wakuwaku-maru.woff") format("woff"), url("../fonts/mini-wakuwaku-maru.otf") format("opentype");
}
/* 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: #2d3ee5;
}

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

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

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

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: calc(10 / 1200 * 100vw);
  }
  .wrapper {
    font-size: 1.6rem;
  }
  .wrapper a {
    transition: 0.3s ease;
  }
  .inner {
    padding: 0 calc(100 / 1200 * 100%);
  }
  .sp {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  html {
    font-size: calc(10 / 1600 * 100vw);
  }
  .inner {
    padding: 0 calc(300 / 1600 * 100%);
    max-width: 1600px !important;
  }
}
@media screen and (min-width: 1600px) {
  html {
    font-size: 10px;
  }
  .inner {
    padding: 0 300px;
  }
}
/* =====================================================================
*    共通
* =================================================================== */
.sec_ttl {
  margin-bottom: 7rem;
  padding-bottom: 3rem;
  border-bottom: 0.4rem solid;
}
.sec_ttl .en {
  display: block;
  margin: 0 0 0.05em -0.05em;
  font-family: "mini", serif;
  font-size: 8rem;
  letter-spacing: 0.1em;
}
.sec_ttl .ja {
  font-size: 3rem;
  font-weight: 300;
  color: #282c4d;
}

.btn1 {
  position: relative;
  padding: 1em 0;
  text-align: center;
  border: 0.2rem solid #282c4d;
}
.btn1 span {
  position: relative;
  display: inline-block;
  padding-left: 1.6em;
  padding-right: 1.4em;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 3.6rem;
  color: #2d3ee5;
  transform: rotate(0.03deg);
}
.btn1 span::before, .btn1 span::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0.68em;
  height: 0.68em;
  background: url(../images/common/img_deco1.png) no-repeat center/contain;
}
.btn1 span::after {
  left: auto;
  right: 0;
}

@media screen and (min-width: 768px) {
  .sec_ttl {
    margin-bottom: 4.4rem;
    padding-bottom: 4.3rem;
    border-width: 0.2rem;
  }
  .sec_ttl .en {
    font-size: 6rem;
  }
  .sec_ttl .ja {
    font-size: 2.8rem;
  }
  .btn1 {
    padding: 1.4em 0;
  }
  .btn1::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0 solid #282c4d;
    transition: 0.3s ease;
  }
  .btn1:hover::after {
    border-width: 0.6rem;
  }
  .btn1 span {
    font-size: 2rem;
  }
}
/* =====================================================================
*    header
* =================================================================== */
.main {
  padding-top: 20rem;
}

.header_nav {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(720 / 750 * 100%);
  z-index: 999;
}
.header_nav.fixed {
  position: fixed;
}
.header_nav h1 {
  position: relative;
  padding: 4rem 6.5rem;
  background: rgba(45, 62, 229, 0.9);
  border-bottom-left-radius: 5rem;
  z-index: 2;
}
.header_nav h1 a {
  width: 69.4444444444%;
}

.btn_menu {
  position: absolute;
  top: 50%;
  right: 9rem;
  transform: translateY(-50%);
  width: 4rem;
  padding-top: 2.5rem;
  z-index: 2;
}
.btn_menu span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.3rem;
  background-color: #fcdb43;
  transition: all 0.3s;
}
.btn_menu span:nth-of-type(1) {
  top: 0;
}
.btn_menu span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.btn_menu span:nth-of-type(3) {
  bottom: 0;
  width: 50%;
}
.btn_menu.active span:nth-of-type(1) {
  transform: translateY(340%) rotate(-35deg);
}
.btn_menu.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-menu-bar02 0.8s forwards;
          animation: active-menu-bar02 0.8s forwards;
}
.btn_menu.active span:nth-of-type(3) {
  width: 100%;
  transform: translateY(-340%) rotate(35deg);
}

.nav {
  position: absolute;
  top: 0;
  right: -100vw;
  width: 100%;
  height: 100vh;
  padding: 22rem 0;
  background: rgba(255, 255, 255, 0.9);
  transition: 0.5s ease-in-out;
}
.nav.active {
  right: 0;
}
.nav_menu {
  position: relative;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
.nav_menu li {
  margin-bottom: 10rem;
  text-align: center;
}
.nav_menu li a {
  display: inline-block;
}
.nav_menu li a .en {
  display: block;
  margin-bottom: 0.2em;
  font-family: "mini", serif;
  font-size: 3.6rem;
  color: #f7ba08;
}
.nav_menu li a .ja {
  letter-spacing: 0.2em;
}
.nav_menu li.nolink a {
  pointer-events: none;
  filter: grayscale(1);
  opacity: 0.6;
}

@media screen and (min-width: 768px) {
  .main {
    padding-top: 17rem;
  }
  .header_nav {
    display: flex;
    justify-content: flex-end;
    width: calc(1560 / 1600 * 100%);
  }
  .header_nav h1 {
    padding: 0;
  }
  .header_nav h1 a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 6rem;
    width: 100%;
    height: 14rem;
  }
  .header_nav h1 a img {
    max-width: 50rem;
  }
  .header_nav h1 a:hover {
    opacity: 0.7;
  }
  .btn_menu {
    display: none;
  }
  .nav {
    flex-shrink: 0;
    position: relative;
    right: auto;
    padding: 0;
    width: 47.4358974359%;
    min-width: 60%;
    height: auto;
    z-index: 1;
  }
  .nav_menu {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  .nav_menu li {
    flex-shrink: 0;
    margin: 0 3rem;
  }
  .nav_menu li a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 14rem;
  }
  .nav_menu li a .en {
    font-size: 1.6rem;
  }
  .nav_menu li a .ja {
    position: relative;
    font-size: 1.2rem;
  }
  .nav_menu li a .ja::after {
    content: "";
    position: absolute;
    display: block;
    bottom: -0.8em;
    left: 0;
    width: 0;
    border-bottom: 0.2rem solid #2d3ee5;
    transition: 0.3s ease-in-out;
  }
  .nav_menu li a:hover .ja::after {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .header_nav h1 {
    width: 52.5641025641%;
  }
  .nav_menu li a .en {
    font-size: 2.2rem;
  }
  .nav_menu li a .ja {
    font-size: 1.6rem;
  }
}
/* =====================================================================
    breadcrumb
======================================================================*/
.breadcrumb {
  padding: 2.2rem 0 1.8rem;
  padding-left: 3rem;
  background: #f9f9f9;
}

.breadcrumb_list {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  padding-left: 1.7em;
}
.breadcrumb_list::before {
  content: "";
  position: absolute;
  display: block;
  top: 40%;
  left: 0;
  transform: translateY(-50%);
  width: 0.8em;
  height: 0.8em;
  background: url(../images/common/img_deco2.png) no-repeat center/contain;
}
.breadcrumb_list li {
  position: relative;
  margin: 0 1.5em 0.5em 0;
  padding-right: 1.5em;
  font-size: 1.7rem;
  color: #a5a7ac;
}
.breadcrumb_list li::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 0;
  width: 0.7em;
  height: 0.7em;
  border-top: 0.3em solid #e6e7ec;
  border-right: 0.3em solid #e6e7ec;
  transform: rotate(45deg) translateY(-50%);
}
.breadcrumb_list li:last-child {
  padding-right: 0;
}
.breadcrumb_list li:last-child::before {
  display: none;
}
.breadcrumb_list a {
  display: inline;
  color: #a5a7ac;
}

@media screen and (min-width: 768px) {
  .breadcrumb {
    margin: 0 auto;
    padding: 2rem 3.5rem;
    width: calc(1500 / 1600 * 100%);
    border-radius: 3em;
  }
  .breadcrumb_list li {
    font-size: 1.2rem;
  }
  .breadcrumb_list a:hover {
    color: #2d3ee5;
  }
}
/* =====================================================================
*    article
* =================================================================== */
.article_list li {
  margin-bottom: 6rem;
}
.article_list li figure {
  position: relative;
  margin-bottom: 0.8em;
}
.article_list li figure figcaption {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: center;
  padding: 0.8em 0;
  width: 26rem;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: #ff0000;
  background-color: #fff;
}
.article_list li h3 {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 2.2rem;
  color: #7e808e;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

@media screen and (min-width: 768px) {
  .article_list {
    display: flex;
    flex-wrap: wrap;
  }
  .article_list li {
    width: calc(304 / 1000 * 100%);
    margin: 0 calc(43 / 1000 * 100%) 6rem 0;
  }
  .article_list li:nth-child(3n), .article_list li:last-child {
    margin-right: 0;
  }
  .article_list li a:hover figure img {
    transform: scale(1.2);
  }
  .article_list li figure {
    overflow: hidden;
  }
  .article_list li figure img {
    transition: 0.5s ease;
  }
  .article_list li figure figcaption {
    width: 13rem;
    font-size: 1.2rem;
  }
  .article_list li h3 {
    font-size: 1.6rem;
    line-height: 1.625;
  }
}
/* =====================================================================
*    banner
* =================================================================== */
.banner_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.banner_list li {
  margin-bottom: 4rem;
  width: 25rem;
}
@media screen and (max-width: 767px) {
  .banner_list li:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .banner_list {
    justify-content: center;
  }
  .banner_list li {
    margin: 0 2rem 2rem 0;
    width: 15rem;
  }
  .banner_list li a {
    position: relative;
  }
  .banner_list li a::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0.1rem solid #f9f9f9;
    transition: 0.3s ease;
  }
  .banner_list li a:hover::after {
    border-width: 0.6rem;
  }
}
/* =====================================================================
*    footer
* =================================================================== */
.footer {
  border-top: 0.2rem solid #efefef;
}

.pagetop {
  position: absolute;
  top: 0;
  right: 5rem;
  z-index: 100;
  position: fixed;
  top: auto;
  bottom: 0;
  margin: 0 0 5rem;
  mix-blend-mode: difference;
}
.pagetop a {
  position: relative;
  width: 5rem;
  height: 5rem;
  border-top: 0.3em solid #fff;
  border-right: 0.3em solid #fff;
  transform: rotate(315deg);
}

.footer_banner {
  padding: 17rem 0;
}
.footer_banner_list {
  margin: 0 auto;
  width: calc(540 / 750 * 100%);
}

.footer_link {
  padding: 12rem 0 2rem;
  background: #282c4d;
  border-bottom: 0.8rem solid #2d3ee5;
}
.footer_link_list {
  margin-bottom: 10rem;
}
.footer_link_list li {
  margin-bottom: 5rem;
  text-align: center;
}
.footer_link_list li a {
  position: relative;
  display: inline;
  padding-left: 1.5em;
  color: #fff;
}
.footer_link_list li a::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  width: 0.5em;
  height: 0.5em;
  border-top: 0.15em solid #fff;
  border-right: 0.15em solid #fff;
  transform: rotate(45deg) translateY(-50%);
  transition: 0.3s ease;
}

.copyright {
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  line-height: 1.625;
  color: #2d3ee5;
}

@media screen and (min-width: 768px) {
  .pagetop a {
    position: relative;
    top: 0;
    width: 3rem;
    height: 3rem;
  }
  .pagetop a:hover {
    top: -2rem;
  }
  .footer_banner {
    padding: 12rem 0 10rem;
  }
  .footer_banner_list {
    width: calc(1200 / 1600 * 100%);
  }
  .footer_link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
    border-width: 0.2rem;
  }
  .footer_link_list {
    margin-bottom: 0;
    display: flex;
  }
  .footer_link_list li {
    flex-shrink: 0;
    margin: 0 calc(80 / 1600 * 100%) 0 0;
  }
  .footer_link_list li a {
    font-size: 1.3rem;
  }
  .footer_link_list li a:hover::before {
    left: 0.3em;
  }
  .copyright {
    margin-left: calc(200 / 1600 * 100%);
    font-size: 1rem;
  }
}
/* =====================================================================
*    popup
* =================================================================== */
.popup {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999;
}

.popup_area {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  -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;
  align-self: flex-start;
  padding: 5.5em 0;
  width: 100%;
}

.popup_movie_embed {
  position: relative;
  padding-top: 56.25%;
}
.popup_movie_embed iframe,
.popup_movie_embed video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.movie_embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.movie_embed iframe,
.movie_embed video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .popup_bg {
    cursor: pointer;
  }
  .popup_inner {
    width: 90%;
    max-width: 1000px;
  }
  .popup_close2 {
    width: 50rem;
    transition: 0.3s ease;
    cursor: pointer;
  }
  .popup_close2:hover {
    background-color: #2d3ee5;
    color: #fff;
    border-color: #fff;
  }
}
/* =====================================================================
    print
======================================================================*//*# sourceMappingURL=base.css.map */
