@charset "UTF-8";
/* ==========================================================
Name:
    module.css

Description:
    サイトで共通使用する汎用モジュールのスタイルを記述する
    アルファベット降順(A->Z)に記述する

Contents:
    layout
    component
    utility
========================================================== */
/* ==========================================================
*
*   layout
*
========================================================== */
/* ---------------------------------------------
*   announce
--------------------------------------------- */
.announce {
  margin-top: 4rem;
  margin-bottom: 4rem;
  width: 100%;
  padding: 0;
  border: 2px solid #fe4c00;
  border-radius: 4px;
  background-color: #fff3f6;
}
.announce_text {
  padding: 20px;
  background-color: #fff3f6;
}
.announce_text ul {
  width: fit-content;
  margin: 0 auto;
}
.announce_title{
    
}
.announce_title button {
  background-color: transparent;
  cursor: pointer;
}
.announce__more > p {
  position: relative;
}
.announce__more > p:after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #fe4c00;
  border-bottom: 2px solid #fe4c00;
  transform: rotate(45deg);
  display: block;
  right: 12px;
  top: calc(50% - 4px);
}
.announce__less > p {
  position: relative;
}
.announce__less > p:after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-left: 2px solid #fe4c00;
  border-top: 2px solid #fe4c00;
  transform: rotate(45deg);
  display: block;
  right: 12px;
  top: calc(50% - 4px);
}
.announce_text {
  display: none;
}
.announce__less {
  display: none;
}
.show-answer .announce_text {
  display: block;
}
.show-answer .announce__less {
  display: block;
}
.show-answer .announce__more {
  display: none;
}
.announce__question-button {
  color: #fe4c00;
  padding: 12px;
  display: block;
  text-align: center;
  width: 100%;
  border-radius: 4px;
  background-color: #ffefef;
  font-size: 16px;
  font-weight: bold;
}
/* ---------------------------------------------
*   breadcrumb
--------------------------------------------- */
.breadcrumb {
  margin-top: 24px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.breadcrumb::-webkit-scrollbar {
  display: none;
}
.txt-red {
  color: #e50012;
}
.w40 {
  width: 40%;
}
.orange span {
  color: #fe4c00 !important;
}
.supported {
  text-align: center;
  margin-bottom: 10px;
  padding: 10px;
  width: 100%;
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
  background-color: #294E9C;
  box-sizing: border-box;
  font-size: 0.9em;
  color: #fff;
}
div.attention {
  background-color: lavenderblush;
  padding: 16px;
  border: 2px solid #e50012;
  margin-bottom: 40px;
  border-radius: 15px;
}
div.attention p {
  color: #e50012;
  font-weight: bold;
  text-align: center;
  font-size: 1.2em;
}
div.attention ul {
  margin: 12px auto;
  padding-left: 32px;
  width: fit-content;
}
div.attention ul li {
  line-height: inherit;
}
.double-line {
  position: relative;
}
.double-line:after {
  left: 0px;
  width: 100%;
  content: "";
  border-top: 1px solid #fe4c00;
  border-bottom: 1px solid #fe4c00;
  height: 5px;
  position: absolute;
  top: 11px;
}
.keynote_img {
  width: 17%;
  margin-bottom: 5%;
  margin-left: auto;
  margin-right: auto;
}
.haru_program_flex {
  margin-top: 10px;
  border-radius: 10px;
  align-items: center;
  display: flex;
  border: 1px solid #efefef;
  margin-bottom: 10px;
  padding: 5px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .breadcrumb {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    overflow-x: auto;
    margin-top: 0;
    padding: 12px 40px;
    width: 100%;
    background-color: #294E9C;
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    overflow-x: auto;
    margin-top: 0;
    padding: 12px 16px;
    width: 100%;
    background-color: #294E9C;
    white-space: nowrap;
  }
  .keynote_img {
    width: 40%;
    margin-left: auto;
    margin-right: auto;
  }
}
.breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .breadcrumb__list {
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .breadcrumb__list::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb__list {
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .breadcrumb__list::-webkit-scrollbar {
    display: none;
  }
}
.breadcrumb__list-item {
  display: inline;
  font-size: 14px;
  line-height: 2;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .breadcrumb__list-item {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb__list-item {
    font-size: 12px;
  }
}
.breadcrumb__list-item + .breadcrumb__list-item {
  margin-left: 16px;
  padding-left: 24px;
  background-image: url(../img/common/icon_arrow_black.svg);
  background-position: left center;
  background-size: 8px 12px;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .breadcrumb__list-item + .breadcrumb__list-item {
    margin-left: 8px;
    padding-left: 13px;
    background-image: url(../img/common/icon_slash.svg);
    background-size: 5px 12px;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb__list-item + .breadcrumb__list-item {
    margin-left: 8px;
    padding-left: 13px;
    background-image: url(../img/common/icon_slash.svg);
    background-size: 5px 12px;
  }
}
.breadcrumb__txt {
  color: #151515;
  font-size: 12px;
  line-height: 1;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .breadcrumb__txt {
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb__txt {
    color: #fff;
  }
}
@media screen and (min-width: 768px) {
  .breadcrumb__txt--link {
    text-decoration: underline;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .breadcrumb__txt--link:hover {
    text-decoration: none;
  }
}
/* ---------------------------------------------
*   contents
--------------------------------------------- */
.contents {
  z-index: 0;
  padding-top: 40px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .contents {
    position: relative;
    padding-top: 3.33333vw;
  }
}
@media screen and (max-width: 767px) {
  .contents {
    position: relative;
    padding-top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .windows .contents {
    overflow: hidden;
  }
}
.contents--sub {
  padding-top: 0;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .contents--sub {
    padding-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .contents--sub {
    padding-top: 48px;
  }
}
.contents__inner {
  position: relative;
  margin: 0 auto;
  padding-bottom: 80px;
  width: 1080px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .contents__inner {
    position: static;
    padding-bottom: 6.66667vw;
    width: 90vw;
  }
}
@media screen and (max-width: 767px) {
  .contents__inner {
    position: static;
    padding-bottom: 56px;
    width: 91.46667vw;
  }
}
/* ---------------------------------------------
*   footer
--------------------------------------------- */
/*  footer-pagetop
--------------------------------------------- */
.footer-pagetop {
  position: fixed;
  right: 160px;
  bottom: 140px;
  width: 48px;
  height: 48px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .footer-pagetop {
    right: 13.33333vw;
    bottom: 11.66667vw;
    width: 4vw;
    height: 4vw;
  }
}
@media screen and (max-width: 767px) {
  .footer-pagetop {
    right: 7px;
    bottom: 140px;
  }
}
.footer-pagetop a {
  display: block;
}
.footer-pagetop img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer-pagetop__link {
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .footer-pagetop__link:hover {
    opacity: 0.8;
  }
}
/*  footer-container
--------------------------------------------- */
.footer-container {
  padding-top: 16px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .footer-container {
    padding-top: 1.33333vw;
  }
}
/*  footer-logo
--------------------------------------------- */
.footer-logo {
  margin: 0 auto;
  width: 276px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .footer-logo {
    width: 23vw;
  }
}
@media screen and (max-width: 767px) {
  .footer-logo {
    width: 251px;
  }
}
.footer-logo--en {
  width: 393px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .footer-logo--en {
    width: 32.75vw;
  }
}
@media screen and (max-width: 767px) {
  .footer-logo--en {
    width: 300px;
  }
}
@media screen and (min-width: 768px) {
  .footer-logo__link {
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .footer-logo__link:hover {
    opacity: 0.8;
  }
}
/*  footer-copyright
--------------------------------------------- */
.footer-copyright {
  margin-top: 16px;
  padding: 10px 0 14px;
  background-color: #294E9C;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .footer-copyright {
    margin-top: 1.33333vw;
    padding: 0.83333vw 0 1.16667vw;
  }
}
@media screen and (max-width: 767px) {
  .footer-copyright {
    padding: 32px 0;
  }
}
.footer-copyright__txt {
  display: block;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .footer-copyright__txt {
    font-size: 12px;
  }
}
/* ---------------------------------------------
*   footer-banner
--------------------------------------------- */
.footer-banner {
  padding: 20px;
  text-align: center;
  margin: 20px auto;
}
.footer-banner img {
  width: 100%;
  box-shadow: 2px 2px 8px 0 rgb(0 0 0 / 24%);
  margin: 0 auto;
  max-width: 500px;
}
.footer-banner span {
  display: block;
  text-align: center;
  margin: 20px auto;
}
.footer-banner span a {
  color: #294E9C;
  text-decoration: underline;
}
/* ---------------------------------------------
*   f-box
--------------------------------------------- */
.f-box{
            background-color: #f0f1f2;
    padding: 20px;
    border-radius: 8px;
            margin: 60px 0;
        }
        .f-box__center{
                        background-color: #E0E0E0;
    border-radius: 8px;
            margin: 28px 0 60px;
            text-align: center;
            padding: 32px;
        }
        .f-box__inner{
                gap: 28px;
    display: flex;
                align-items: center;
        }
        .f-box__inner__img{
            width: 125px;
        }
                .f-box__inner__img img{
                border-radius: 4px;
        }

/* ---------------------------------------------
*   global-nav
--------------------------------------------- */
/* ---------------------------------------------
*   header
--------------------------------------------- */
.header {
  position: relative;
  z-index: 1;
  width: 100%;
}
/*  header-container
--------------------------------------------- */
/*  header-top
--------------------------------------------- */
.header-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  -ms-flex-align: center;
  margin: 0 auto;
  width: 1080px;
  height: 105px;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .header-top {
    position: relative;
    z-index: 5;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -ms-flex-pack: distribute;
    -ms-flex-align: inherit;
    -ms-flex-align: initial;
    padding: 0 40px;
    width: 100%;
    height: 120px;
    background-color: #fff;
    background-color: #fff;
    -webkit-box-align: inherit;
    align-items: inherit;
    -webkit-box-align: initial;
    align-items: initial;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    justify-content: space-around;
  }
}
@media screen and (max-width: 767px) {
  .header-top {
    position: relative;
    z-index: 5;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -ms-flex-pack: distribute;
    -ms-flex-align: inherit;
    -ms-flex-align: initial;
    padding: 0 2.13333vw;
    width: 100%;
    height: 120px;
    background-color: #fff;
    background-color: #fff;
    -webkit-box-align: inherit;
    align-items: inherit;
    -webkit-box-align: initial;
    align-items: initial;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    justify-content: space-around;
  }
}
.header-top__right {
  width: 276px;
  text-align: right;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .header-top__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -ms-flex-align: center;
    width: 100%;
    height: 50px;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .header-top__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -ms-flex-align: center;
    width: 100%;
    height: 50px;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.header-top__right--en {
  width: 393px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .header-top__right--en {
    width: 100%;
    height: 50px;
  }
}
@media screen and (max-width: 767px) {
  .header-top__right--en {
    width: 100%;
    height: 50px;
  }
}
/*  header-ttl
--------------------------------------------- */
.header-ttl {
  color: #294E9C;
  font-weight: 700;
  font-size: 32px;
  line-height: 2;
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
}
@media screen and (min-width: 768px) {
  .header-ttl:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .header-ttl {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .header-ttl {
    margin-top: 0;
    font-size: 24px;
  }
}
.header-ttl--en {
  font-size: 24px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .header-ttl--en {
    font-size: 21px;
  }
}
@media screen and (max-width: 767px) {
  .header-ttl--en {
    margin-top: 0;
    letter-spacing: -.04em;
    font-size: 18px;
  }
}
/*  header-logo
--------------------------------------------- */
.header-logo {
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .header-logo {
    width: 275px;
  }
}
@media screen and (max-width: 767px) {
  .header-logo {
    width: 275px;
    height: 33px;
  }
  .header-logo img {
    display: block;
  }
}
.header-logo__link {
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
}
@media screen and (min-width: 768px) {
  .header-logo__link:hover {
    opacity: 0.8;
  }
}
/*  header-en
--------------------------------------------- */
.header-en {
  position: relative;
  display: inline-block;
  margin-top: 24px;
  padding-left: 20px;
  background-image: url(../img/common/icon_en.svg);
  background-position: left center;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  content: '';
  text-align: right;
  text-decoration: underline;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .header-en:hover {
    text-decoration: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .header-en {
    margin-top: 0;
    padding-left: 1.66667vw;
    background-size: 1.33333vw 1.33333vw;
  }
}
@media screen and (max-width: 767px) {
  .header-en {
    margin-top: 0;
    font-size: 12px;
  }
}
/*  header-nav
--------------------------------------------- */
.header-nav {
  height: 56px;
  background-color: #294E9C;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .header-nav {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: none;
    padding: 32px 16px;
    height: auto;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@media screen and (max-width: 767px) {
  .header-nav {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: none;
    padding: 32px 16px;
    height: auto;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
.header-nav__bg {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .header-nav__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 128px;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100vh;
    background-color: #294E9C;
  }
}
@media screen and (max-width: 767px) {
  .header-nav__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 128px;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100vh;
    background-color: #294E9C;
  }
}
.header-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  height: 100%;
  -webkit-box-pack: center;
  justify-content: center;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .header-nav__list {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: start;
    justify-content: start;
  }
}
@media screen and (max-width: 767px) {
  .header-nav__list {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: start;
    justify-content: start;
  }
}
.header-nav__list-item {
  width: 216px;
  background-color: #294E9C;
  text-align: center;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .header-nav__list-item {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .header-nav__list-item {
    width: 100%;
    text-align: left;
  }
}
@media screen and (min-width: 1200px) {
  .header-nav__list-item:first-of-type {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .header-nav__list-item:first-of-type {
    margin-bottom: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 8px;
    border-bottom: 1px solid #5b5b5b;
  }
}
@media screen and (max-width: 767px) {
  .header-nav__list-item:first-of-type {
    margin-bottom: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 8px;
    border-bottom: 1px solid #5b5b5b;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .header-nav__list-item + .header-nav__list-item {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
  }
}
@media screen and (max-width: 767px) {
  .header-nav__list-item + .header-nav__list-item {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
  }
}
@media screen and (min-width: 768px) {
  .header-nav__list-item:hover {
    background-color: #fff;
  }
  .header-nav__list-item:hover .header-nav__link {
    color: #294E9C;
  }
}
.header-nav__list-item--closed {
  background-color: darkgrey;
  pointer-events: none;
}
.header-nav__list-item.is-current {
  background-color: #fff;
}
.header-nav__list-item.is-current .header-nav__link {
  color: #294E9C;
}
.header-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  -webkit-transition: color .3s;
  transition: color .3s;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .header-nav__link {
    -ms-flex-pack: start;
    font-size: 18px;
    -webkit-box-pack: start;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .header-nav__link {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
  }
}
/*  header-menu-trigger
--------------------------------------------- */
.header-menu-button {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 9999;
  display: none;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  width: 40px;
  height: 40px;
  background-color: #294E9C;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .header-menu-button {
    right: 40px;
    bottom: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .header-menu-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header-menu-button__lines {
  position: relative;
  display: block;
  width: 18px;
  height: 12px;
}
.header-menu-button__line {
  position: absolute;
  right: 0;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  -webkit-transition: .5s;
  transition: .5s;
}
.header-menu-button__line--top {
  top: 0;
}
.js-menu-opened .header-menu-button__line--top {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.header-menu-button__line--center {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.js-menu-opened .header-menu-button__line--center {
  background-color: rgba(0, 0, 0, 0);
}
.header-menu-button__line--bottom {
  bottom: 0;
}
.js-menu-opened .header-menu-button__line--bottom {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
  transform: translateY(50%) rotate(-45deg);
}
/* ---------------------------------------------
*   wrapper
--------------------------------------------- */
/* ==========================================================
*
*   component
*
========================================================== */
/* ---------------------------------------------
*   c-txt-img-block
--------------------------------------------- */
.c-txt-img-block {
  position: relative;
  margin-top: 48px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-txt-img-block {
    margin-top: 4vw;
  }
}
@media screen and (max-width: 767px) {
  .c-txt-img-block {
    margin-top: 6.4vw;
  }
}
.c-txt-img-block:after {
  display: block;
  clear: both;
  content: "";
}
.c-txt-img-block__ttl {
  color: #151515;
  font-weight: 700;
  font-size: 24px;
}
.c-txt-img-block__txt {
  margin-top: 16px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-txt-img-block__txt {
    margin-top: 1.33333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-txt-img-block__txt {
    margin-top: 2.13333vw;
  }
}
.c-txt-img-block__img {
  float: right;
  margin-left: 40px;
  width: 387px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-txt-img-block__img {
    margin-left: 3.33333vw;
    width: 32.25vw;
  }
}
@media screen and (max-width: 767px) {
  .c-txt-img-block__img {
    margin-left: 4vw;
    width: 42.66667vw;
  }
}
.c-txt-img-block__img figcaption {
  font-size: 14px;
}
/* ---------------------------------------------
*   c-img-block
--------------------------------------------- */
.c-img-block {
  position: relative;
  margin-top: 48px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-img-block {
    margin-top: 3.33333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-img-block {
    margin-top: 6.4vw;
  }
}
.c-img-block__ttl {
  color: #151515;
  font-weight: 700;
  font-size: 24px;
}
.c-img-block__txt {
  margin-top: 16px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-img-block__txt {
    margin-top: 1.33333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-img-block__txt {
    margin-top: 2.13333vw;
  }
}
.c-img-block__img {
  display: block;
  margin-top: 32px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-img-block__img {
    margin-top: 2.66667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-img-block__img {
    margin-top: 4.26667vw;
  }
}
.c-img-block__img figcaption {
  font-size: 14px;
}
.c-block-map {
  position: relative;
  margin-top: 30px;
  padding-top: 300px;
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-block-map {
    margin-top: 2.5vw;
    padding-top: 25vw;
  }
}
@media screen and (max-width: 767px) {
  .c-block-map {
    margin-top: 4vw;
    padding-top: 40vw;
  }
}
.c-block-map iframe {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 300px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-block-map iframe {
    height: 25vw;
  }
}
@media screen and (max-width: 767px) {
  .c-block-map iframe {
    height: 40vw;
  }
}
/* ---------------------------------------------
*   c-block-1
--------------------------------------------- */
.c-block-1 {
  overflow: auto;
  width: 100%;
  border-radius: 4px;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}
@media screen and (max-width: 767px) {
  .c-block-1 {
    border-radius: 0;
  }
}
@media screen and (min-width: 768px) {
  .c-block-1:hover {
    opacity: .8;
  }
  .c-block-1:hover .c-block-1__head-bg {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
.c-block-1--radius0 {
  border-radius: 0 !important;
}
.c-block-1--top {
  pointer-events: none;
}
.c-block-1__head {
  position: relative;
  overflow: hidden;
  padding: 40px 100px;
  height: 300px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-block-1__head {
    padding: 3.33333vw 8.33333vw;
    height: 25vw;
  }
}
@media screen and (max-width: 767px) {
  .c-block-1__head {
    padding: 0;
    height: 106.66667vw;
  }
}
.c-block-1__head--en {
  height: 378px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-block-1__head--en {
    height: 31.5vw;
  }
}
@media screen and (max-width: 767px) {
  .c-block-1__head--en {
    height: 50vw;
  }
}
.c-block-1__head-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}
.c-block-1__head-bg img {
  display: block;
  width: 100%;
}
.c-block-1__body {
  position: relative;
  padding: 30px 27px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-block-1__body {
    padding: 2.5vw 2.25vw;
  }
}
@media screen and (max-width: 767px) {
  .c-block-1__body {
    padding: 8.53333vw 7.2vw 6.4vw;
  }
}
.c-block-1__body-date {
  display: block;
  color: #1f272f;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .c-block-1__body-date {
    font-size: 12px;
  }
}
.c-block-1__body-ttl {
  display: block;
  margin-top: 8px;
  color: #1f272f;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.8;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-block-1__body-ttl {
    margin-top: 0.66667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-block-1__body-ttl {
    font-size: 24px;
  }
}
.c-block-1__body-icon {
  position: absolute;
  right: 27px;
  bottom: 30px;
  width: 16px;
  height: 16px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-block-1__body-icon {
    right: 2.25vw;
    bottom: 2.5vw;
    width: 1.33333vw;
    height: 1.33333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-block-1__body-icon {
    right: 4.26667vw;
    bottom: 6.4vw;
    width: 4.26667vw;
    height: 4.26667vw;
  }
}
.c-block-1__body-icon img {
  display: block;
  width: 100%;
}
/* ---------------------------------------------
*   c-box
--------------------------------------------- */
.c-box {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .c-box {
    margin-bottom: 16vw;
  }
}
.c-box__head {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .c-box__head {
    margin-bottom: 8vw;
  }
}
.c-box__body {
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .c-box__body {
    padding: 0;
  }
}
/* ---------------------------------------------
*   c-btn-1
--------------------------------------------- */
.c-btn-1 {
  width: 524px;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-btn-1 {
    width: 43.66667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-btn-1 {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .c-btn-1:hover {
    opacity: .8;
  }
}
@media screen and (min-width: 1200px) {
  .c-btn-1:nth-of-type(n + 3) {
    margin-top: 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-btn-1:nth-of-type(n + 3) {
    margin-top: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .c-btn-1 + .c-btn-1 {
    margin-top: 4.26667vw;
  }
}
.c-btn-1__outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  margin-top: 50px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-btn-1__outer {
    margin-top: 4.16667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-btn-1__outer {
    margin-top: 12.8vw;
  }
}
.c-btn-1__link {
  display: block;
  padding: 20px 48px;
  padding-right: 18px;
  width: 100%;
  background-image: url(../img/common/icon_link-arrow.svg);
  background-position: 95% 50%;
  background-size: 18px 16px;
  background-repeat: no-repeat;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.24);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.24);
  color: #294E9C;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.2;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-btn-1__link {
    padding: 1.66667vw 4vw;
    padding-right: 3.5vw;
    background-size: 1.5vw 1.33333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-btn-1__link {
    padding: 3.46667vw 4.26667vw;
    padding-right: 9.5vw;
    font-size: 16px;
  }
}
.c-btn-1__link-small {
  font-size: .8em;
}
@media screen and (min-width: 768px) {
  .c-btn-1 {
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .c-btn-1:hover {
    opacity: 0.8;
  }
}
/* ---------------------------------------------
*   c-btn-2
--------------------------------------------- */
.c-btn-2 {
  margin-top: 24px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-btn-2 {
    margin-top: 2vw;
  }
}
.c-btn-2--center {
  text-align: center;
}
.c-btn-2--right {
  text-align: right;
}
.c-btn-2__link {
  display: inline-block;
  padding: 16px 40px;
  border: 2px solid #294E9C;
  border-radius: 4px;
  background-color: #294E9C;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  -webkit-transition: background-color .3s, color .3s;
  transition: background-color .3s, color .3s;
}
.btn-red {
  border: 2px solid #e50012;
  background-color: #e50012;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-btn-2__link {
    padding: 1.33333vw 3.33333vw;
  }
}
@media screen and (min-width: 768px) {
  .c-btn-2__link:hover {
    background-color: #fff;
    color: #294E9C;
  }
  .btn-red:hover {
    background-color: #fff;
    color: #e50012;
  }
}
.c-btn-2__link__nolink{
      display: inline-block;
  padding: 16px 40px;
  border-radius: 4px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  -webkit-transition: background-color .3s, color .3s;
  transition: background-color .3s, color .3s;
        background-color: darkgrey;
    pointer-events: none;
}
/* ---------------------------------------------
*   c-btn-3
--------------------------------------------- */
.c-btn-3 {
  margin-top: 24px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-btn-3 {
    margin-top: 2vw;
  }
}
.c-btn-3--center {
  text-align: center;
}
.c-btn-3__link {
  display: inline-block;
  padding: 16px 40px;
  border: 2px solid #294E9C;
  border-radius: 4px;
  background-color: #fff;
  color: #294E9C;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  -webkit-transition: background-color .3s, color .3s;
  transition: background-color .3s, color .3s;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-btn-3__link {
    padding: 1.33333vw 3.33333vw;
  }
}
@media screen and (min-width: 768px) {
  .c-btn-3__link:hover {
    background-color: #294E9C;
    color: #fff;
  }
}
/* ---------------------------------------------
*   c-btn-4
--------------------------------------------- */
.c-btn-4 {
  margin-top: 24px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-btn-4 {
    margin-top: 2vw;
  }
}
.c-btn-4--center {
  text-align: center;
}
.c-btn-4--right {
  text-align: right;
}
.c-btn-4__link {
  display: inline-block;
  padding: 8px 20px;
  border: 2px solid #294E9C;
  border-radius: 4px;
  background-color: #294E9C;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  -webkit-transition: background-color .3s, color .3s;
  transition: background-color .3s, color .3s;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-btn-4__link {
    padding: 1.33333vw 3.33333vw;
  }
}
@media screen and (min-width: 768px) {
  .c-btn-4__link:hover {
    background-color: #fff;
    color: #294E9C;
  }
}
/* ---------------------------------------------
*   c-acc-card
--------------------------------------------- */
.c-acc-card {
  position: relative;
  margin-top: 24px;
  border-bottom: 1px solid #c4c4c4;
  background-image: url(../img/common/icon_acc-closed.svg);
  background-position: right 6px;
  background-size: 26px 26px;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-acc-card {
    margin-top: 2vw;
    background-position: right 0.5vw;
    background-size: 2.16667vw 2.16667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-acc-card {
    margin-top: calc((24/767)*100vw);
    background-position: right calc((8/767)*100vw);
    background-size: calc((26/767)*100vw) calc((26/767)*100vw);
  }
}
.c-acc-card:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 27px;
  height: 40px;
  background-image: url(../img/common/txt_q.svg);
  background-size: 27px 40px;
  background-repeat: no-repeat;
  content: '';
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-acc-card:before {
    width: 2.25vw;
    height: 3.33333vw;
    background-size: 2.25vw 3.33333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-acc-card:before {
    top: calc((6/767)*100vw);
    width: calc((27/767)*100vw);
    height: calc((40/767)*100vw);
    background-size: calc((27/767)*100vw) calc((40/767)*100vw);
  }
}
.c-acc-card.is-acc-open {
  background-image: url(../img/common/icon_acc-opend.svg);
}
.c-acc-card + .c-acc-card {
  margin-top: 32px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-acc-card + .c-acc-card {
    margin-top: 2.66667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-acc-card + .c-acc-card {
    margin-top: 4.26667vw;
  }
}
.c-acc-card__head {
  padding: 6px 57px 37px 83px;
  color: #151515;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-acc-card__head {
    padding: 0.5vw 4.75vw 3.08333vw 6.91667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-acc-card__head {
    padding: 0.8vw 7.46667vw 4.8vw 11.2vw;
    font-size: 18px;
  }
}
.c-acc-card__body {
  display: none;
  margin-top: 32px;
  color: #151515;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-acc-card__body {
    margin-top: 2.66667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-acc-card__body {
    margin-top: 4.26667vw;
    line-height: 2;
  }
}
/* ---------------------------------------------
*   c-card-1
--------------------------------------------- */
.c-card-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 880px;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-card-1 {
    width: 73.33333vw !important;
  }
}
/* ---------------------------------------------
*   c-cassette
--------------------------------------------- */
.c-cassette {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .c-cassette {
    margin-bottom: 16vw;
  }
}
.c-cassette__head {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .c-cassette__head {
    margin-bottom: 8vw;
  }
}
.c-cassette__body {
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .c-cassette__body {
    padding: 0;
  }
}
/* ---------------------------------------------
*   c-chapter
--------------------------------------------- */
.c-chapter {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .c-chapter {
    margin-bottom: 16vw;
  }
}
.c-chapter__container {
  margin: 0 auto;
  width: 1200px;
}
@media screen and (max-width: 767px) {
  .c-chapter__container {
    width: 80%;
  }
}
.c-chapter__head {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .c-chapter__head {
    margin-bottom: 8vw;
  }
}
.c-chapter__body {
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .c-chapter__body {
    padding: 0;
  }
}
/* ---------------------------------------------
*   c-figure
--------------------------------------------- */
/* ---------------------------------------------
*   c-form
--------------------------------------------- */
/*  c-form-input-txt
--------------------------------------------- */
/*  c-form-input-pw
--------------------------------------------- */
/*  c-form-txtarea
--------------------------------------------- */
/*  c-form-select
--------------------------------------------- */
/*  c-form-chkbox
--------------------------------------------- */
/*  c-form-radio
--------------------------------------------- */
/* ---------------------------------------------
*   c-img-1
--------------------------------------------- */
.c-img-1 {
  display: block;
  margin: 16px auto 0;
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-img-1 {
    margin-top: 1.33333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-img-1 {
    margin-top: 4.26667vw;
  }
}
.c-img-1--center {
  text-align: center;
}
/* ---------------------------------------------
*   c-kv
--------------------------------------------- */
.c-kv {
  padding: 56px 0;
  background-color: #f0f1f2;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-kv {
    padding: 4.66667vw 0;
  }
}
@media screen and (max-width: 767px) {
  .c-kv {
    padding: 8.8vw 4.26667vw;
  }
}
.c-kv__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  height: 100%;
  text-align: center;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-kv__container {
    -ms-flex-pack: start;
    text-align: left;
    -webkit-box-pack: start;
    justify-content: flex-start;
  }
}
.c-kv__ttl {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .c-kv__ttl {
    font-size: 24px;
  }
}
.c-kv__ttl small {
  font-size: 36px;
}
@media screen and (max-width: 767px) {
  .c-kv__ttl small {
    font-size: 18px;
  }
}
/* ---------------------------------------------
*   c-link
--------------------------------------------- */
@media screen and (min-width: 768px) {
  .c-link {
    text-decoration: underline;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .c-link:hover {
    text-decoration: none;
  }
}
/* ---------------------------------------------
*   c-list-contact
--------------------------------------------- */
.c-list-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  margin-top: 48px;
  -webkit-box-pack: center;
  justify-content: center;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-list-contact {
    margin-top: 4vw;
  }
}
@media screen and (max-width: 767px) {
  .c-list-contact {
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 64px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}
.c-list-contact__item {
  position: relative;
  padding-top: 20px;
  width: 305px;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-list-contact__item {
    padding-top: 1.66667vw;
    width: 25.41667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-list-contact__item {
    padding-top: 0;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .c-list-contact__item + .c-list-contact__item {
    margin-top: 64px;
    margin-left: 0;
  }
}
.c-list-contact__item + .c-list-contact__item:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #c4c4c4;
  content: '';
}
@media screen and (max-width: 767px) {
  .c-list-contact__item + .c-list-contact__item:before {
    content: none;
  }
}
.c-list-contact__item--wide {
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-list-contact__item--wide {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .c-list-contact__item--wide + .c-list-contact__item--wide {
    margin-top: 0;
    margin-left: 0;
  }
}
.c-list-contact__item--wide + .c-list-contact__item--wide:before {
  content: 'none';
}
.c-list-contact__icon {
  display: block;
  margin: 0 auto;
  width: 64px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-list-contact__icon {
    width: 5.33333vw;
  }
}
.c-list-contact__name {
  display: block;
  margin-top: 8px;
  color: #353535;
  letter-spacing: .01em;
  font-weight: 700;
  font-size: 16px;
  line-height: 2;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-list-contact__name {
    margin-top: 0.66667vw;
    font-size: 1.33333vw;
  }
}
.c-list-contact__num {
  display: block;
  margin-top: 8px;
  color: #353535;
  letter-spacing: .04em;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.6;
  cursor: default;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-list-contact__num {
    margin-top: 0.66667vw;
    font-size: 2.33333vw;
  }
}
@media screen and (min-width: 768px) {
  .c-list-contact__num {
    pointer-events: none;
  }
}
.c-list-contact__mail {
  display: block;
  margin-top: 10px;
  color: #294E9C;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .c-list-contact__mail:hover {
    text-decoration: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-list-contact__mail {
    margin-top: 0.83333vw;
  }
}
.c-list-contact__desk {
  display: block;
  margin: 16px auto 0;
  width: 200px;
  color: #000;
  text-align: left;
  font-size: 14px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-list-contact__desk {
    margin-top: 1.33333vw;
    width: 16.66667vw;
    font-size: 1.16667vw;
  }
}
/* ---------------------------------------------
*   c-list-1
--------------------------------------------- */
.c-list-1 {
  margin-top: 32px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-list-1 {
    margin-top: 2.66667vw;
  }
}
.c-list-1 + .c-list-1 {
  margin-top: 24px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-list-1 + .c-list-1 {
    margin-top: 2vw;
  }
}
.c-list-1 + ol {
  margin-top: 24px !important;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-list-1 + ol {
    margin-top: 2vw !important;
  }
}
.c-list-1--mgt0 {
  margin-top: 0 !important;
}
.c-list-1__item {
  padding-left: 1em;
  background-image: url(../img/common/icon_list-item.svg);
  background-position: 2px 13px;
  background-size: 8px;
  background-repeat: no-repeat;
  line-height: 2;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-list-1__item {
    padding-left: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .c-list-1__item {
    background-position: 2px 13px;
  }
}
.c-list-1__item + .c-list-1__item {
  margin-top: 12px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-list-1__item + .c-list-1__item {
    margin-top: 1vw;
  }
}
.c-list-1__item--file {
  background-image: url(../img/common/icon_doc.svg);
  background-position: 0 10px;
  background-size: 12px 14px;
}
.c-list-1__item--link {
  background-image: url(../img/common/icon_blank-wide.svg);
  background-position: 0 12px;
  background-size: 12px 10px;
}
.c-list-1__item a {
  word-break: break-all;
  color: #294E9C;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .c-list-1__item a:hover {
    text-decoration: none;
  }
}
/* ---------------------------------------------
*   c-list-2
--------------------------------------------- */
.c-list-2 {
  margin-top: 24px;
  list-style: none;
  counter-reset: qumeru-counter;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) and (max-width: 1600px) {
  .c-list-2 {
    margin-top: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .c-list-2 {
    margin-top: 24px;
  }
}
.c-list-2--mgt0 {
  margin-top: 0 !important;
}
.c-list-2__item {
  position: relative;
  padding-left: 1em;
}
@media screen and (min-width: 768px) and (max-width: 1600px) {
  .c-list-2__item {
    padding-left: 2vw;
  }
}
.c-list-2__item:before {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  width: 10px;
  height: 24px;
  color: #294E9C;
  content: counter(qumeru-counter);
  counter-increment: qumeru-counter 1;
  font-weight: 900;
  font-size: 16px;
  line-height: 24px;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.c-list-2__item:marker {
  display: none;
}
.c-list-2__item + .c-list-2__item {
  margin-top: 16px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-list-2__item + .c-list-2__item {
    margin-top: calc((16/1600) * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-list-2__item + .c-list-2__item {
    margin-top: calc(14/375*100vw);
  }
}
.c-list-2__item--mgt0 {
  margin-top: 0 !important;
}
.c-list-2__item--orange {
  color: #fe4c00;
}
.c-list-2__item--orange:before {
  color: #fe4c00;
}
.c-list-2__item strong {
  color: #fe4c00;
  font-weight: bold;
}
.c-list-2 a {
  color: #294E9C;
  text-decoration: underline;
  word-wrap: break-word;
}
@media screen and (min-width: 768px) {
  .c-list-2 a:hover {
    text-decoration: none;
  }
}
.c-list-2__item-bold {
  font-weight: 700;
}
.c-list-2__item-ttl {
  color: #294E9C;
  font-weight: 700;
}
/* ---------------------------------------------
*   c-list-3
--------------------------------------------- */
.c-list-3 {
  margin-top: 40px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-list-3 {
    margin-top: 3.33333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-list-3 {
    margin-top: 24px;
  }
}
.c-list-3__item {
  border-bottom: 1px solid #969696;
}
.c-list-3__item + .c-list-3__item {
  margin-top: 24px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-list-3__item + .c-list-3__item {
    margin-top: 2vw;
  }
}
.c-list-3__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 16px;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}
.c-list-3__item-nolink{
    text-decoration: none;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-list-3__item-link {
    padding-bottom: 1.33333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-list-3__item-link {
    display: block;
    padding-bottom: 17px;
  }
}
@media screen and (min-width: 768px) {
  .c-list-3__item-link:hover {
    opacity: .8;
  }
   .c-list-3__item-nolink:hover {
    opacity: 1;
  }
  .c-list-3__item-link:hover .c-list-3__ttl {
    text-decoration: none;
  }
}
.c-list-3__date {
  display: block;
  margin-right: 24px;
  width: 96px;
  color: #1f272f;
  font-size: 12px;
  line-height: 1.8;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-list-3__date {
    margin-right: 2vw;
    width: 8vw;
  }
}
@media screen and (max-width: 767px) {
  .c-list-3__date {
    margin-right: 0;
    width: 100%;
  }
}
.c-list-3__ttl {
  display: block;
  width: 836px;
  color: #294E9C;
  text-decoration: underline;
  font-size: 16px;
  line-height: 1.8;
}
.c-list-3__item-nolink .c-list-3__ttl {
    text-decoration: none;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-list-3__ttl {
    width: 69.66667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-list-3__ttl {
    margin-top: 16px;
    width: 100%;
  }
}
/* ---------------------------------------------
*   c-list-4
--------------------------------------------- */
.c-list-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 24px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-list-4 {
    margin-top: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .c-list-4 {
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}
.c-list-4__item {
  width: 240px;
  border-radius: 4px;
  -webkit-box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.24);
  box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.24);
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-list-4__item {
    width: 20vw;
  }
}
@media screen and (max-width: 767px) {
  .c-list-4__item {
    width: 100%;
    height: 120px;
  }
}
.c-list-4__item + .c-list-4__item {
  margin-left: 40px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-list-4__item + .c-list-4__item {
    margin-left: 3.33333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-list-4__item + .c-list-4__item {
    margin-top: 8px;
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .c-list-4__item:nth-of-type(4n + 1) {
    margin-left: 0;
  }
}
.c-list-4__item--closed {
  background-color: darkgrey;
  pointer-events: none;
}
.c-list-4__item-link {
  display: block;
  padding: 4px 8px 24px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-list-4__item-link {
    padding: 0.33333vw 0.66667vw 2vw;
  }
}
@media screen and (max-width: 767px) {
  .c-list-4__item-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    -ms-flex-align: center;
    padding: 0 8px;
    width: 100%;
    height: 100%;
    -webkit-box-pack: start;
    justify-content: start;
    -webkit-box-align: center;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .c-list-4__item-link {
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .c-list-4__item-link:hover {
    opacity: 0.8;
  }
}
.c-list-4__head {
  margin: 0 auto;
  width: 136px;
  height: 136px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-list-4__head {
    width: 11.33333vw;
    height: 11.33333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-list-4__head {
    margin: 0;
    width: 64px;
    height: 64px;
  }
}
.c-list-4__body {
  margin-top: 4px;
  color: #294E9C;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-list-4__body {
    margin-top: 0.33333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-list-4__body {
    margin-top: 0;
    margin-left: 10px;
  }
}
/* ---------------------------------------------
*   c-list-5
--------------------------------------------- */
.c-list-5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 24px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-list-5 {
    margin-top: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .c-list-5 {
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}
.c-list-5__item {
  width: 330px;
  border-radius: 4px;
  -webkit-box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.24);
  box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.24);
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-list-5__item {
    width: 27.5vw;
  }
}
@media screen and (max-width: 767px) {
  .c-list-5__item {
    width: 100%;
  }
}
.c-list-5__item + .c-list-5__item {
  margin-left: 45px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-list-5__item + .c-list-5__item {
    margin-left: 3.75vw;
  }
}
@media screen and (max-width: 767px) {
  .c-list-5__item + .c-list-5__item {
    margin-top: 8px;
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .c-list-5__item:nth-of-type(4n + 1) {
    margin-left: 0;
  }
}
.c-list-5__item-link {
  display: block;
  padding: 24px 8px 24px;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-list-5__item-link {
    padding: 2vw 0.66667vw 2vw;
  }
}
@media screen and (max-width: 767px) {
  .c-list-5__item-link {
    padding: 5.33333vw;
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .c-list-5__item-link {
    opacity: .8;
  }
}
.c-list-5__item-link--nolink {
  pointer-events: none;
}
.c-list-5__head {
  margin: 0 auto;
  width: 160px;
  height: 160px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-list-5__head {
    width: 13.33333vw;
    height: 13.33333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-list-5__head {
    margin: auto;
    width: 53.33333vw;
    height: 53.33333vw;
  }
}
.c-list-5__head img {
  width: 100%;
}
.c-list-5__body {
  margin-top: 4px;
  color: #294E9C;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-list-5__body {
    margin-top: 0.33333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-list-5__body {
    margin-top: 0;
    margin-left: 10px;
  }
}
/* ---------------------------------------------
*   c-section-1
--------------------------------------------- */
.c-section-1 {
  margin-top: 48px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-section-1 {
    margin-top: 4vw;
  }
}
@media screen and (max-width: 767px) {
  .c-section-1 {
    margin-top: 6.4vw;
  }
}
.c-section-1 .c-table-1_th_wide th{
                width: 220px;
}
.c-section-1 .c-table-1_th_wide td{
                width: calc(100% - 260px);
}
@media screen and (max-width: 767px){
  .c-table-1 tr td {
    width: 100%;
    line-height: 2;
}
  .c-section-1 .c-table-1_th_wide td{
                width: 100%;
 }
}
/* ---------------------------------------------
*   c-section-2
--------------------------------------------- */
.c-section-2 {
  margin-top: 48px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-section-2 {
    margin-top: 4vw;
  }
}
@media screen and (max-width: 767px) {
  .c-section-2 {
    margin-top: 6.4vw;
  }
}
/* ---------------------------------------------
*   section-sponcer
--------------------------------------------- */
.sponsor {
  padding-top: 48px;
}
.top-sponsor {
  background-color: #294E9C;
}
.top-sponsor .sec-head {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}
.main-sponsor ul {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
}
.main-sponsor ul li a:hover {
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .main-sponsor ul li a:hover {
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
  }
}
/* ---------------------------------------------
*   c-section-contact
--------------------------------------------- */
.c-section-contact {
  padding: 40px 0 116px;
  background-color: #f0f1f2;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-section-contact {
    padding: 3.33333vw 0 9.66667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-section-contact {
    padding: 40px 0 96px;
  }
}
.c-section-contact__ttl {
  color: #151515;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.8;
}
.c-section-contact__inner {
  margin: 0 auto;
  width: 916px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-section-contact__inner {
    width: 76.33333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-section-contact__inner {
    width: 91.46667vw;
  }
}
/* ---------------------------------------------
*   c-slider
--------------------------------------------- */
/* ---------------------------------------------
*   c-table-1
--------------------------------------------- */
.c-table-1 {
  margin-top: 16px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-table-1__outer {
    overflow-x: scroll;
  }
}
.c-table-1 caption {
  margin-bottom: 16px;
  color: #151515;
  text-align: left;
  font-weight: 700;
  font-size: 18px;
}
.c-table-1 tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  padding-bottom: 15px;
  border-bottom: 1px solid #c4c4c4;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-table-1 tr {
    margin-top: 1.25vw;
  }
}
@media screen and (max-width: 767px) {
  .c-table-1 tr {
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 2.13333vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}
.c-table-1 tr:nth-of-type(n + 2) {
  margin-top: 16px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-table-1 tr:nth-of-type(n + 2) {
    margin-top: 1.33333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-table-1 tr:nth-of-type(n + 2) {
    margin-top: 2.66667vw;
  }
}
.c-table-1 tr th {
  width: 150px;
  color: #151515;
  line-height: 1.8;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-table-1 tr th {
    width: 7.66667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-table-1 tr th {
    width: 100%;
  }
}
.c-table-1 tr th strong {
  font-weight: 700;
}
.c-table-1 tr th a {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .c-table-1 tr th a:hover {
    text-decoration: none;
  }
}
.c-table-1 tr td {
  width: 972px;
  color: #151515;
  word-break: break-word;
  line-height: 1.8;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-table-1 tr td {
    width: 81vw;
  }
}
@media screen and (max-width: 767px) {
  .c-table-1 tr td {
    width: 100%;
    line-height: 2;
  }
}
.c-table-1 tr td .red {
  color: #fe4c00;
}
.c-table-1 tr td small {
  font-size: 0.8rem;
}
.c-table-1 tr td a {
  color: #294E9C;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .c-table-1 tr td a:hover {
    text-decoration: none;
  }
}
.c-table-1--en tr th {
  width: 162px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-table-1--en tr th {
    width: 13.5vw;
  }
}
@media screen and (max-width: 767px) {
  .c-table-1--en tr th {
    width: 100%;
  }
}
.c-table-1--en tr td {
  width: 864px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-table-1--en tr td {
    width: 72vw;
  }
}
@media screen and (max-width: 767px) {
  .c-table-1--en tr td {
    width: 100%;
  }
}
        .c-table-1 tr td .t-btn{
                background-color: orange;
            text-decoration: none;
    position: relative;
    padding: 16px 32px;
    border-radius: 47px;
    color: #fff;
    /* margin: 0px 0; */
    display: block;
    width: fit-content;
    padding-left: 60px;
            transition: all 0.2s;
            font-size: 1.2em;
        }
        .c-table-1 tr td .t-btn:hover{
            opacity: 0.5;
        }
        .t-btn img{
            left: 26px;
    margin-right: 20px;
    width: 24px;
    position: absolute;
    top: calc(50% - 12px);
        }
        .c-btn--participation .c-btn-2__link{
                border: 2px solid #fe4c00;
            background-color: #fe4c00;
        }
        .c-btn--participation .c-btn-2__link:hover{
                color: #fe4c00;
            background-color: #fff;
        }
        .f-box .c-btn-2{
            margin-top: 0;
        }
        .c-table-1 tr td {
    width: calc(100% - 120px);
        }
/* ---------------------------------------------
*   c-table-2
--------------------------------------------- */
.c-table-2 {
  margin-top: 16px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-table-2 {
    margin-top: 1.33333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-table-2 {
    margin-top: 2.13333vw;
    min-width: 767px;
  }
}
@media screen and (max-width: 767px) {
  .c-table-2__outer {
    overflow-x: scroll;
  }
}
.c-table-2 caption {
  margin-bottom: 16px;
  color: #151515;
  text-align: left;
  font-weight: 700;
  font-size: 18px;
}
.c-table-2 thead tr {
  border-bottom: 1px solid #c4c4c4;
}
.c-table-2 thead tr th {
  padding: 16px;
  width: 228px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
}
.pdf_img {
  width: 12%;
  margin-top: 4%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-table-2 thead tr th {
    padding: 1.33333vw;
    width: 19vw;
  }
}
@media screen and (max-width: 767px) {
  .c-table-2 thead tr th {
    padding: 8px 4px;
    width: 112px;
  }
}
.c-table-2 thead tr th:nth-of-type(2) {
  width: 426px;
  background-color: #294E9C;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-table-2 thead tr th:nth-of-type(2) {
    width: 35.5vw;
  }
}
@media screen and (max-width: 767px) {
  .c-table-2 thead tr th:nth-of-type(2) {
    width: 220px;
  }
}
.c-table-2 thead tr th:nth-of-type(3) {
  width: 426px;
  background-color: #436cc3;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-table-2 thead tr th:nth-of-type(3) {
    width: 35.5vw;
  }
}
@media screen and (max-width: 767px) {
  .c-table-2 thead tr th:nth-of-type(3) {
    width: 220px;
  }
}
.c-table-2 thead tr th small {
  font-size: 18px;
}
.c-table-2 tbody tr {
  border-bottom: 1px solid #c4c4c4;
}
.c-table-2 tbody tr th {
  padding: 16px 68px 16px 0;
  width: 228px;
  height: 100%;
  line-height: 2;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-table-2 tbody tr th {
    padding: 1.33333vw 5.66667vw 1.33333vw 0;
    width: 19vw;
  }
}
@media screen and (max-width: 767px) {
  .c-table-2 tbody tr th {
    padding: 19px 7px 19px 0;
    width: 112px;
  }
}
.c-table-2 tbody tr th span {
  display: inline-block;
  color: #151515;
  font-weight: 700;
}
.c-table-2 tbody tr th a {
  color: #294E9C;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .c-table-2 tbody tr th a:hover {
    text-decoration: none;
  }
}
.c-table-2 tbody tr th .orange {
  color: #fe4c00;
}
.c-table-2 tbody tr td {
  padding: 16px 38px;
  border-bottom: 1px solid #c4c4c4;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-table-2 tbody tr td {
    padding: 1.33333vw 3.16667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-table-2 tbody tr td {
    padding: 8px;
  }
}
.c-table-2 tbody tr td:nth-of-type(1) {
  width: 426px;
  background-color: #cfd5e0;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-table-2 tbody tr td:nth-of-type(1) {
    width: 35.5vw;
  }
}
@media screen and (max-width: 767px) {
  .c-table-2 tbody tr td:nth-of-type(1) {
    width: 220px;
  }
}
.c-table-2 tbody tr td:nth-of-type(2) {
  width: 426px;
  background-color: #f0f1f2;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-table-2 tbody tr td:nth-of-type(2) {
    width: 35.5vw;
  }
}
@media screen and (max-width: 767px) {
  .c-table-2 tbody tr td:nth-of-type(2) {
    width: 220px;
  }
}
.c-table-2 tbody tr td strong {
  font-weight: 700;
}
.c-table-2 tbody tr td .red {
  color: #fe4c00;
}
.c-table-2 tbody tr td small {
  font-size: 0.8rem;
}
.c-table-2 tbody tr td a {
  color: #294E9C;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .c-table-2 tbody tr td a:hover {
    text-decoration: none;
  }
}
/* ---------------------------------------------
*   c-table-3
--------------------------------------------- */
.c-table-3 {
  margin-top: 16px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-table-3 {
    margin-top: 1.33333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-table-3 {
    margin-top: 2.13333vw;
    min-width: 772px;
  }
}
@media screen and (max-width: 767px) {
  .c-table-3__outer {
    overflow-x: scroll;
  }
}
.c-table-3 caption {
  margin-bottom: 16px;
  color: #151515;
  text-align: left;
  font-weight: 700;
  font-size: 18px;
}
.c-table-3 thead tr {
  border-bottom: 1px solid #c4c4c4;
}
.c-table-3 thead tr th {
  padding: 16px;
  width: 228px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
}
.section_table thead tr th:nth-of-type(1n) {
  background-color: #436cc3;
  width: 10%;
}
.section_table tbody tr th:nth-of-type(1n) {
  background-color: #f0f1f2;
  width: 8%;
  padding-right: 0;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-table-3 thead tr th {
    padding: 1.33333vw;
    width: 19vw;
  }
}
@media screen and (max-width: 767px) {
  .c-table-3 thead tr th {
    padding: 8px 4px;
    width: 112px;
  }
}
.c-table-3 thead tr th:nth-of-type(2n) {
  width: 284px;
  background-color: #294E9C;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-table-3 thead tr th:nth-of-type(2n) {
    width: 23.66667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-table-3 thead tr th:nth-of-type(2n) {
    width: 220px;
  }
}
.c-table-3 thead tr th:nth-of-type(3n) {
  width: 284px;
  background-color: #436cc3;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-table-3 thead tr th:nth-of-type(3n) {
    width: 23.66667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-table-3 thead tr th:nth-of-type(3n) {
    width: 220px;
  }
}
.c-table-3 tbody tr {
  border-bottom: 1px solid #c4c4c4;
}
.c-table-3 tbody tr th {
  padding: 16px 68px 16px 0;
  width: 228px;
  line-height: 2;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-table-3 tbody tr th {
    padding: 1.33333vw 5.66667vw 1.33333vw 0;
    width: 19vw;
  }
}
@media screen and (max-width: 767px) {
  .c-table-3 tbody tr th {
    padding: 32px 12px 32px 0;
    width: 112px;
  }
}
.c-table-3 tbody tr th a {
  color: #294E9C;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .c-table-3 tbody tr th a:hover {
    text-decoration: none;
  }
}
.c-table-3 tbody tr th span {
  display: inline-block;
  color: #151515;
  font-weight: 700;
}
.c-table-3 tbody tr td {
  padding: 16px 38px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-table-3 tbody tr td {
    padding: 1.33333vw 3.16667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-table-3 tbody tr td {
    padding: 8px 6px;
  }
}
.c-table-3 tbody tr td:nth-of-type(2n - 1) {
  width: 426px;
  background-color: #cfd5e0;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-table-3 tbody tr td:nth-of-type(2n - 1) {
    width: 35.5vw;
  }
}
@media screen and (max-width: 767px) {
  .c-table-3 tbody tr td:nth-of-type(2n - 1) {
    width: 220px;
  }
}
.c-table-3 tbody tr td:nth-of-type(2n) {
  width: 426px;
  background-color: #f0f1f2;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-table-3 tbody tr td:nth-of-type(2n) {
    width: 35.5vw;
  }
}
@media screen and (max-width: 767px) {
  .c-table-3 tbody tr td:nth-of-type(2n) {
    width: 220px;
  }
}
.c-table-3 tbody tr td strong {
  font-weight: 700;
}
.c-table-3 tbody tr td small {
  font-size: 0.8rem;
}
.c-table-3 tbody tr td .red {
  color: #fe4c00;
}
.c-table-3 tbody tr td a {
  color: #294E9C;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .c-table-3 tbody tr td a:hover {
    text-decoration: none;
  }
}
/* ---------------------------------------------
*   c-table-4
--------------------------------------------- */
@media screen and (max-width: 767px) {
  .c-table-4 {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .c-table-4__outer {
    overflow-x: scroll;
  }
}
@media screen and (max-width: 767px) {
  .c-table-4 tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}
.c-table-4 tr th {
  padding: 10px;
  width: 10%;
  border-bottom: 1px solid #eee;
  color: #fff;
  text-align: center;
  font-weight: bold;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-table-4 tr th {
    padding: 0.83333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-table-4 tr th {
    width: 100%;
  }
}
.c-table-4 tr td {
  padding: 10px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-table-4 tr td {
    padding: 0.83333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-table-4 tr td {
    border-bottom: 0;
  }
}
.c-table-4 tr td:nth-of-type(1) {
  width: 58.5%;
}
@media screen and (max-width: 767px) {
  .c-table-4 tr td:nth-of-type(1) {
    width: 100%;
  }
}
.c-table-4 tr td:nth-of-type(2) {
  width: 31.5%;
}
@media screen and (max-width: 767px) {
  .c-table-4 tr td:nth-of-type(2) {
    width: 100%;
    border-bottom: 1px solid #eee;
  }
}
.c-table-4 tr td img {
  width: 100%;
}
.c-table-4__ttl {
  margin-bottom: 10px;
  border-bottom: 2px solid #ff1414;
  font-weight: bold;
  font-size: 16px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-table-4__ttl {
    margin-bottom: 0.83333vw;
  }
}
.c-table-4__txt {
  font-size: 14px;
}
/* ---------------------------------------------
*   c-table-5
--------------------------------------------- */
.c-table-5 {
  width: 100%;
  margin: 36px auto;
}
.c-table-5 th {
  font-weight: bold;
  background-color: #294E9C;
  text-align: center;
  color: #fff;
}
.c-table-5 th, .c-table-5 td {
  padding: 20px;
  border: 1px solid #ccc;
  text-align: center;
}
.c-table-5 td span {
  font-weight: bold;
  font-size: 1.2em;
}
.c-table-5 .c-table-5-sub {
  background-color: darkgray;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-table-5 {
    width: 700px;
  }
  .c-table-5__outer {
    overflow-x: scroll;
  }
}
/* ---------------------------------------------
*   c-tile
--------------------------------------------- */
/* ---------------------------------------------
*   c-ttl-1
--------------------------------------------- */
.c-ttl-1 {
  color: #151515;
  font-weight: bold;
  font-size: 32px;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .c-ttl-1 {
    font-size: 24px;
    line-height: 1.6;
  }
}
.c-ttl-1 small {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .c-ttl-1 small {
    font-size: 14px;
  }
}
/* ---------------------------------------------
*   c-ttl-2
--------------------------------------------- */
.c-ttl-2 {
  position: relative;
  color: #151515;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .c-ttl-2 {
    font-size: 20px;
  }
}
.c-ttl-2 small {
  font-size: 18px;
}
/* ---------------------------------------------
*   c-ttl-3
--------------------------------------------- */
.c-ttl-3 {
  margin-top: 10px;
  margin-bottom: 15px;
  padding: 10px 0;
  background: #33cccc;
  color: #fff;
  text-align: center;
  font-size: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-ttl-3 {
    margin-top: 1.66667vw;
    margin-bottom: 0.83333vw;
    padding: 0.83333vw 0;
  }
}
@media screen and (max-width: 767px) {
  .c-ttl-3 {
    margin-top: 5.33333vw;
    margin-bottom: 2.66667vw;
    padding: 2.66667vw 0;
  }
}
/* ---------------------------------------------
*   c-txt-lead
--------------------------------------------- */
.c-txt-lead {
  margin-top: 50px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-txt-lead {
    margin-top: 4.16667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-txt-lead {
    margin-top: 5.33333vw;
  }
}
/* ---------------------------------------------
*   c-txt-1
--------------------------------------------- */
.c-txt-1 {
  margin-top: 16px;
  font-weight: 400;
}
.c-txt-1 strong {
  color: #fe4c00;
  font-weight: bold;
}
.c-txt-1 a {
  color: #294E9C;
  text-decoration: underline;
  word-wrap: break-word;
}
@media screen and (min-width: 768px) {
  .c-txt-1 a:hover {
    text-decoration: none;
  }
}
.c-txt-1--indent {
  padding-left: 1em;
}
.c-txt-1--indent2 {
  padding-left: 6em;
}
.c-txt-1--right {
  text-align: right;
}
.c-txt-1--center {
  text-align: center;
}
.c-txt-1--top {
  font-size: .8em;
}
.c-txt-1__u-line {
  text-decoration: underline;
}
.c-txt-1__large {
  font-size: 1.2em;
}
.c-txt-1__bold {
  font-weight: 700;
}
.c-txt-1__orange {
  color: #fe4c00;
}
/* ---------------------------------------------
*   c-txt-2
--------------------------------------------- */
.c-txt-2 {
  font-weight: 400;
  font-size: .8em;
}
.c-txt-2 strong {
  color: #fe4c00;
  font-weight: bold;
}
.c-txt-2 a {
  color: #294E9C;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .c-txt-2 a:hover {
    text-decoration: none;
  }
}
.c-txt-2--indent {
  padding-left: 1em;
}
.c-txt-2--right {
  text-align: right;
}
/* ==========================================================
*
*   javascript style hooks
*
========================================================== */
@media screen and (min-width: 768px) {
  .js-tel-disabled {
    color: #151515 !important;
    text-decoration: none !important;
    cursor: initital;
    cursor: inherit;
    pointer-events: none;
  }
}
/* ==========================================================
*
*   utility
*
========================================================== */
.flex_box_sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex_sp_item {
  margin: 5px auto;
  padding: 5px 0px 5px 5px;
  width: 240px;
  text-align: center;
  font-size: 1rem;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .flex_sp_item {
    padding: 0.41667vw 0 0.41667vw 0.41667vw;
    width: 20vw;
  }
}
@media screen and (max-width: 767px) {
  .flex_sp_item {
    padding: 32px 12px 32px 0;
    width: 64vw;
  }
}
.flex_sp_item span {
  font-size: 0.8rem;
}
.flex_sp_item img {
  width: 130px;
  height: auto;
  border-radius: 50%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .flex_sp_item img {
    width: 10.83333vw;
  }
}
@media screen and (max-width: 767px) {
  .flex_sp_item img {
    width: 34.66667vw;
  }
}
.flex_sp_item:nth-child(1) {
  margin-left: 0;
}
/* ---------------------------------------------
*   background-color
--------------------------------------------- */
.bg-white {
  background-color: #fff !important;
}
/* ---------------------------------------------
*   font-wight
--------------------------------------------- */
.fw-normal {
  font-weight: 500 !important;
}
.fw-bold {
  font-weight: 700 !important;
}
/* ---------------------------------------------
*   text-align
--------------------------------------------- */
.txt-al-center {
  text-align: center !important;
}
.txt-al-right {
  text-align: right !important;
}
.txt-al-left {
  text-align: left !important;
}
@media print and (min-width: 1200px), screen and (min-width: 1200px) {
  .pc-hide {
    display: none !important;
  }
}
@media print and (min-width: 768px) and (max-width: 1199px), screen and (min-width: 768px) and (max-width: 1199px) {
  .tb-hide {
    display: none !important;
  }
}
@media print and (max-width: 767px), screen and (max-width: 767px) {
  .sp-hide {
    display: none !important;
  }
}
/* ---------------------------------------------
*   margin-top
--------------------------------------------- */
.mgt-pc--0 {
  margin-top: 0 !important;
}
.mgt-pc--5 {
  margin-top: 5px !important;
}
.mgt-pc--10 {
  margin-top: 10px !important;
}
.mgt-pc--15 {
  margin-top: 15px !important;
}
.mgt-pc--20 {
  margin-top: 20px !important;
}
.mgt-pc--25 {
  margin-top: 25px !important;
}
.mgt-pc--30 {
  margin-top: 30px !important;
}
.mgt-pc--35 {
  margin-top: 35px !important;
}
.mgt-pc--40 {
  margin-top: 40px !important;
}
.mgt-pc--45 {
  margin-top: 45px !important;
}
.mgt-pc--50 {
  margin-top: 50px !important;
}
.mgt-pc--55 {
  margin-top: 55px !important;
}
.mgt-pc--60 {
  margin-top: 60px !important;
}
.mgt-pc--65 {
  margin-top: 65px !important;
}
.mgt-pc--70 {
  margin-top: 70px !important;
}
.mgt-pc--75 {
  margin-top: 75px !important;
}
.mgt-pc--80 {
  margin-top: 80px !important;
}
.mgt-pc--85 {
  margin-top: 85px !important;
}
.mgt-pc--90 {
  margin-top: 90px !important;
}
.mgt-pc--95 {
  margin-top: 95px !important;
}
.mgt-pc--100 {
  margin-top: 100px !important;
}
.mgt-pc--105 {
  margin-top: 105px !important;
}
.mgt-pc--110 {
  margin-top: 110px !important;
}
.mgt-pc--115 {
  margin-top: 115px !important;
}
.mgt-pc--120 {
  margin-top: 120px !important;
}
.mgt-pc--125 {
  margin-top: 125px !important;
}
.mgt-pc--130 {
  margin-top: 130px !important;
}
.mgt-pc--135 {
  margin-top: 135px !important;
}
.mgt-pc--140 {
  margin-top: 140px !important;
}
.mgt-pc--145 {
  margin-top: 145px !important;
}
.mgt-pc--150 {
  margin-top: 150px !important;
}
.mgt-pc--155 {
  margin-top: 155px !important;
}
.mgt-pc--160 {
  margin-top: 160px !important;
}
.mgt-pc--165 {
  margin-top: 165px !important;
}
.mgt-pc--170 {
  margin-top: 170px !important;
}
.mgt-pc--175 {
  margin-top: 175px !important;
}
.mgt-pc--180 {
  margin-top: 180px !important;
}
.mgt-pc--185 {
  margin-top: 185px !important;
}
.mgt-pc--190 {
  margin-top: 190px !important;
}
.mgt-pc--195 {
  margin-top: 195px !important;
}
.mgt-pc--200 {
  margin-top: 200px !important;
}
.mgt-pc--205 {
  margin-top: 205px !important;
}
.mgt-pc--210 {
  margin-top: 210px !important;
}
.mgt-pc--215 {
  margin-top: 215px !important;
}
.mgt-pc--220 {
  margin-top: 220px !important;
}
.mgt-pc--225 {
  margin-top: 225px !important;
}
.mgt-pc--230 {
  margin-top: 230px !important;
}
.mgt-pc--235 {
  margin-top: 235px !important;
}
.mgt-pc--240 {
  margin-top: 240px !important;
}
.mgt-pc--245 {
  margin-top: 245px !important;
}
.mgt-pc--250 {
  margin-top: 250px !important;
}
@media screen and (max-width: 767px) {
  .mgt-sp--0 {
    margin-top: 0 !important;
  }
  .mgt-sp--5 {
    margin-top: 1.33333vw !important;
  }
  .mgt-sp--10 {
    margin-top: 2.66667vw !important;
  }
  .mgt-sp--15 {
    margin-top: 4vw !important;
  }
  .mgt-sp--20 {
    margin-top: 5.33333vw !important;
  }
  .mgt-sp--25 {
    margin-top: 6.66667vw !important;
  }
  .mgt-sp--30 {
    margin-top: 8vw !important;
  }
  .mgt-sp--35 {
    margin-top: 9.33333vw !important;
  }
  .mgt-sp--40 {
    margin-top: 10.66667vw !important;
  }
  .mgt-sp--45 {
    margin-top: 12vw !important;
  }
  .mgt-sp--50 {
    margin-top: 13.33333vw !important;
  }
  .mgt-sp--55 {
    margin-top: 14.66667vw !important;
  }
  .mgt-sp--60 {
    margin-top: 16vw !important;
  }
  .mgt-sp--65 {
    margin-top: 17.33333vw !important;
  }
  .mgt-sp--70 {
    margin-top: 18.66667vw !important;
  }
  .mgt-sp--75 {
    margin-top: 20vw !important;
  }
  .mgt-sp--80 {
    margin-top: 21.33333vw !important;
  }
  .mgt-sp--85 {
    margin-top: 22.66667vw !important;
  }
  .mgt-sp--90 {
    margin-top: 24vw !important;
  }
  .mgt-sp--95 {
    margin-top: 25.33333vw !important;
  }
  .mgt-sp--100 {
    margin-top: 26.66667vw !important;
  }
  .mgt-sp--105 {
    margin-top: 28vw !important;
  }
  .mgt-sp--110 {
    margin-top: 29.33333vw !important;
  }
  .mgt-sp--115 {
    margin-top: 30.66667vw !important;
  }
  .mgt-sp--120 {
    margin-top: 32vw !important;
  }
  .mgt-sp--125 {
    margin-top: 33.33333vw !important;
  }
  .mgt-sp--130 {
    margin-top: 34.66667vw !important;
  }
  .mgt-sp--135 {
    margin-top: 36vw !important;
  }
  .mgt-sp--140 {
    margin-top: 37.33333vw !important;
  }
  .mgt-sp--145 {
    margin-top: 38.66667vw !important;
  }
  .mgt-sp--150 {
    margin-top: 40vw !important;
  }
  .mgt-sp--155 {
    margin-top: 41.33333vw !important;
  }
  .mgt-sp--160 {
    margin-top: 42.66667vw !important;
  }
  .mgt-sp--165 {
    margin-top: 44vw !important;
  }
  .mgt-sp--170 {
    margin-top: 45.33333vw !important;
  }
  .mgt-sp--175 {
    margin-top: 46.66667vw !important;
  }
  .mgt-sp--180 {
    margin-top: 48vw !important;
  }
  .mgt-sp--185 {
    margin-top: 49.33333vw !important;
  }
  .mgt-sp--190 {
    margin-top: 50.66667vw !important;
  }
  .mgt-sp--195 {
    margin-top: 52vw !important;
  }
  .mgt-sp--200 {
    margin-top: 53.33333vw !important;
  }
  .mgt-sp--205 {
    margin-top: 54.66667vw !important;
  }
  .mgt-sp--210 {
    margin-top: 56vw !important;
  }
  .mgt-sp--215 {
    margin-top: 57.33333vw !important;
  }
  .mgt-sp--220 {
    margin-top: 58.66667vw !important;
  }
  .mgt-sp--225 {
    margin-top: 60vw !important;
  }
  .mgt-sp--230 {
    margin-top: 61.33333vw !important;
  }
  .mgt-sp--235 {
    margin-top: 62.66667vw !important;
  }
  .mgt-sp--240 {
    margin-top: 64vw !important;
  }
  .mgt-sp--245 {
    margin-top: 65.33333vw !important;
  }
  .mgt-sp--250 {
    margin-top: 66.66667vw !important;
  }
}
/* ---------------------------------------------
*   margin-bottom
--------------------------------------------- */
.mgb-pc--0 {
  margin-bottom: 0 !important;
}
.mgb-pc--5 {
  margin-bottom: 5px !important;
}
.mgb-pc--10 {
  margin-bottom: 10px !important;
}
.mgb-pc--15 {
  margin-bottom: 15px !important;
}
.mgb-pc--20 {
  margin-bottom: 20px !important;
}
.mgb-pc--25 {
  margin-bottom: 25px !important;
}
.mgb-pc--30 {
  margin-bottom: 30px !important;
}
.mgb-pc--35 {
  margin-bottom: 35px !important;
}
.mgb-pc--40 {
  margin-bottom: 40px !important;
}
.mgb-pc--45 {
  margin-bottom: 45px !important;
}
.mgb-pc--50 {
  margin-bottom: 50px !important;
}
.mgb-pc--55 {
  margin-bottom: 55px !important;
}
.mgb-pc--60 {
  margin-bottom: 60px !important;
}
.mgb-pc--65 {
  margin-bottom: 65px !important;
}
.mgb-pc--70 {
  margin-bottom: 70px !important;
}
.mgb-pc--75 {
  margin-bottom: 75px !important;
}
.mgb-pc--80 {
  margin-bottom: 80px !important;
}
.mgb-pc--85 {
  margin-bottom: 85px !important;
}
.mgb-pc--90 {
  margin-bottom: 90px !important;
}
.mgb-pc--95 {
  margin-bottom: 95px !important;
}
.mgb-pc--100 {
  margin-bottom: 100px !important;
}
.mgb-pc--105 {
  margin-bottom: 105px !important;
}
.mgb-pc--110 {
  margin-bottom: 110px !important;
}
.mgb-pc--115 {
  margin-bottom: 115px !important;
}
.mgb-pc--120 {
  margin-bottom: 120px !important;
}
.mgb-pc--125 {
  margin-bottom: 125px !important;
}
.mgb-pc--130 {
  margin-bottom: 130px !important;
}
.mgb-pc--135 {
  margin-bottom: 135px !important;
}
.mgb-pc--140 {
  margin-bottom: 140px !important;
}
.mgb-pc--145 {
  margin-bottom: 145px !important;
}
.mgb-pc--150 {
  margin-bottom: 150px !important;
}
.mgb-pc--155 {
  margin-bottom: 155px !important;
}
.mgb-pc--160 {
  margin-bottom: 160px !important;
}
.mgb-pc--165 {
  margin-bottom: 165px !important;
}
.mgb-pc--170 {
  margin-bottom: 170px !important;
}
.mgb-pc--175 {
  margin-bottom: 175px !important;
}
.mgb-pc--180 {
  margin-bottom: 180px !important;
}
.mgb-pc--185 {
  margin-bottom: 185px !important;
}
.mgb-pc--190 {
  margin-bottom: 190px !important;
}
.mgb-pc--195 {
  margin-bottom: 195px !important;
}
.mgb-pc--200 {
  margin-bottom: 200px !important;
}
.mgb-pc--205 {
  margin-bottom: 205px !important;
}
.mgb-pc--210 {
  margin-bottom: 210px !important;
}
.mgb-pc--215 {
  margin-bottom: 215px !important;
}
.mgb-pc--220 {
  margin-bottom: 220px !important;
}
.mgb-pc--225 {
  margin-bottom: 225px !important;
}
.mgb-pc--230 {
  margin-bottom: 230px !important;
}
.mgb-pc--235 {
  margin-bottom: 235px !important;
}
.mgb-pc--240 {
  margin-bottom: 240px !important;
}
.mgb-pc--245 {
  margin-bottom: 245px !important;
}
.mgb-pc--250 {
  margin-bottom: 250px !important;
}
@media screen and (max-width: 767px) {
  .mgb-sp--0 {
    margin-bottom: 0 !important;
  }
  .mgb-sp--5 {
    margin-bottom: 1.33333vw !important;
  }
  .mgb-sp--10 {
    margin-bottom: 2.66667vw !important;
  }
  .mgb-sp--15 {
    margin-bottom: 4vw !important;
  }
  .mgb-sp--20 {
    margin-bottom: 5.33333vw !important;
  }
  .mgb-sp--25 {
    margin-bottom: 6.66667vw !important;
  }
  .mgb-sp--30 {
    margin-bottom: 8vw !important;
  }
  .mgb-sp--35 {
    margin-bottom: 9.33333vw !important;
  }
  .mgb-sp--40 {
    margin-bottom: 10.66667vw !important;
  }
  .mgb-sp--45 {
    margin-bottom: 12vw !important;
  }
  .mgb-sp--50 {
    margin-bottom: 13.33333vw !important;
  }
  .mgb-sp--55 {
    margin-bottom: 14.66667vw !important;
  }
  .mgb-sp--60 {
    margin-bottom: 16vw !important;
  }
  .mgb-sp--65 {
    margin-bottom: 17.33333vw !important;
  }
  .mgb-sp--70 {
    margin-bottom: 18.66667vw !important;
  }
  .mgb-sp--75 {
    margin-bottom: 20vw !important;
  }
  .mgb-sp--80 {
    margin-bottom: 21.33333vw !important;
  }
  .mgb-sp--85 {
    margin-bottom: 22.66667vw !important;
  }
  .mgb-sp--90 {
    margin-bottom: 24vw !important;
  }
  .mgb-sp--95 {
    margin-bottom: 25.33333vw !important;
  }
  .mgb-sp--100 {
    margin-bottom: 26.66667vw !important;
  }
  .mgb-sp--105 {
    margin-bottom: 28vw !important;
  }
  .mgb-sp--110 {
    margin-bottom: 29.33333vw !important;
  }
  .mgb-sp--115 {
    margin-bottom: 30.66667vw !important;
  }
  .mgb-sp--120 {
    margin-bottom: 32vw !important;
  }
  .mgb-sp--125 {
    margin-bottom: 33.33333vw !important;
  }
  .mgb-sp--130 {
    margin-bottom: 34.66667vw !important;
  }
  .mgb-sp--135 {
    margin-bottom: 36vw !important;
  }
  .mgb-sp--140 {
    margin-bottom: 37.33333vw !important;
  }
  .mgb-sp--145 {
    margin-bottom: 38.66667vw !important;
  }
  .mgb-sp--150 {
    margin-bottom: 40vw !important;
  }
  .mgb-sp--155 {
    margin-bottom: 41.33333vw !important;
  }
  .mgb-sp--160 {
    margin-bottom: 42.66667vw !important;
  }
  .mgb-sp--165 {
    margin-bottom: 44vw !important;
  }
  .mgb-sp--170 {
    margin-bottom: 45.33333vw !important;
  }
  .mgb-sp--175 {
    margin-bottom: 46.66667vw !important;
  }
  .mgb-sp--180 {
    margin-bottom: 48vw !important;
  }
  .mgb-sp--185 {
    margin-bottom: 49.33333vw !important;
  }
  .mgb-sp--190 {
    margin-bottom: 50.66667vw !important;
  }
  .mgb-sp--195 {
    margin-bottom: 52vw !important;
  }
  .mgb-sp--200 {
    margin-bottom: 53.33333vw !important;
  }
  .mgb-sp--205 {
    margin-bottom: 54.66667vw !important;
  }
  .mgb-sp--210 {
    margin-bottom: 56vw !important;
  }
  .mgb-sp--215 {
    margin-bottom: 57.33333vw !important;
  }
  .mgb-sp--220 {
    margin-bottom: 58.66667vw !important;
  }
  .mgb-sp--225 {
    margin-bottom: 60vw !important;
  }
  .mgb-sp--230 {
    margin-bottom: 61.33333vw !important;
  }
  .mgb-sp--235 {
    margin-bottom: 62.66667vw !important;
  }
  .mgb-sp--240 {
    margin-bottom: 64vw !important;
  }
  .mgb-sp--245 {
    margin-bottom: 65.33333vw !important;
  }
  .mgb-sp--250 {
    margin-bottom: 66.66667vw !important;
  }
}
/* ---------------------------------------------
*   info
--------------------------------------------- */
.info_outer {
  justify-content: space-between;
  display: flex;
  margin: 32px auto;
}
.info_inner {
  box-shadow: 2px 2px 8px 0 rgb(0 0 0 / 24%);
  width: 32%;
  padding: 20px;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 8px;
}
.info_inner img {
  border-radius: 4px;
}
.info_inner_head {
  color: #294E9C;
  height: 72px;
  font-weight: bold;
  margin: 12px auto;
  font-size: 20px;
  display: flex;
  align-items: center;
}
.info_inner_head_sub {
  display: block;
  font-size: 13px;
  width: 100%;
}
.step2_img {
  width: 50% !important;
}
@media screen and (max-width:768px) {
  .info_outer {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .info_inner {
    width: 100%;
    margin-bottom: 20px;
  }
  .info_inner img {
    width: 100%;
  }
  .info_inner_head {
    height: auto;
  }
}
.past {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  margin: 16px auto;
}
.past_inner{
    width: 49%;
    margin-bottom: 2%;
}
.past_inner:nth-child(1){
    width: 100%;
    
}
.past_inner p {
  color: #294E9C;
  text-align: right;
  font-size: 0.9em;
}
@media screen and (max-width:564px) {
    .past_inner{
        width: 100%;
    }
}
.c-card-1__full {
  width: 100%;
}
.event_font {
  color: red;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 400;
}

