@charset "utf-8";

/*
 * main.css
 */
body {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Josefin Sans",
    "source-han-sans-japanese", "ヒラギノ角ゴ ProN W3",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo;
}

.gr_nav>ul {
  display: flex;
  justify-content: center;
  margin-right: 180px;
}

.gr_nav>ul>li {
  margin: 0 20px;
}

.gr_nav>ul>li>a {
  display: block;
  height: 67px;
  line-height: 67px;
  color: #fff;
  transition: none;
}

.gr_nav>ul>li>a:hover {
  color: #ff325f;
  opacity: 1;
}

@media (max-width: 991px) {
  .gr_nav {
    display: none;
    position: fixed;
    top: 67px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
  }

  .gr_nav>ul {
    display: block;
    justify-content: center;
    margin-right: 0;
  }

  .gr_nav>ul>li {
    margin: 0 20px;
  }

  .gr_nav>ul>li>a {
    display: block;
    height: 50px;
    line-height: 50px;
    color: #fff;
  }

  .gr_nav>ul>li>a:hover {
    color: #ff325f;
    opacity: 1;
    font-weight: bold;
  }

  .header__nav--open {
    display: block;
    background: #0c0c31;
  }

  .submenu {
    background: #fff;
    display: none;
  }
}

footer {
  background: #fff;
  z-index: 100;
  position: relative;
}

.footer {
  padding: 60px 0;
  background: #fff;
}

@media (max-width: 991px) {
  .footer {
    display: none;
  }
}

.footer__wrap {
  display: flex;
}

@media (max-width: 991px) {
  .footer__wrap {
    display: block;
    margin-bottom: 30px;
  }
}

.footer__logo {
  margin-bottom: 120px;
  margin-top: 15px;
}

@media (max-width: 991px) {
  .footer__logo {
    margin-bottom: 20px;
    margin-top: 0;
  }
}

.footer__nav {
  margin-left: auto;
  display: flex;
}

@media (max-width: 991px) {
  .footer__nav {
    display: block;
  }
}

@media (max-width: 640px) {
  .footer__nav {
    text-align: center;
  }

  .footer__left {
    text-align: center;
  }
}

.footer__text {
  line-height: 1.625;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .footer__left {
    margin-bottom: 30px;
  }
}

.footer-nav {
  list-style: none;
  width: 240px;
  border-left: 1px solid #e9e9e9;
  padding: 10px 36px;
}

@media (max-width: 991px) {
  .footer-nav {
    width: auto;
    border-left: none;
    padding: 0;
    margin-bottom: 8px;
  }
}

.footer-nav__item {
  font-size: 14px;
  color: #333;
  letter-spacing: 0.025em;
}

.footer-nav__item:not(:last-child) {
  margin-bottom: 16px;
}

@media (max-width: 991px) {
  .footer-nav__item:not(:last-child) {
    margin-bottom: 8px;
  }
}

.footer-nav__link {
  color: inherit;
}

.copyright {
  text-align: center;
  color: #fff;
  margin-top: 30px;
}

.footer-map-link {
  color: #333;
  font-size: 14px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAMCAYAAAC5tzfZAAAAu0lEQVQokX2SMQoCMRAAJ3JPEASfYGmuFit/4QfUH2hrYa34GRHB+hrL66xsrcTOyMomdwk5p8pudtjsEuOcw1OWJR0MgAkwBXbGWttYDQYYAmstHOnNE+gXGpiM+ABeLUG4Ap9e13uUexKLRJCqqkqFBXAA5PknzV0iKWGpgrACZsAGuEmiyAhzYN8Sjnre+oJcpzNQJ0JAxsh1kq2NgXeSl9l+W+6aKRUiok6ZDQbkt/h7L7k/XygG+AIz/CksMaJC8gAAAABJRU5ErkJggg==");
  background-position: 100%;
  padding-right: 18px;
}

.footer-map-link--colored {
  background-color: #a41d3b;
  background-color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  color: #fff;
  padding-left: 14px;
  padding-right: 28px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAMCAYAAAC5tzfZAAAAoklEQVQokY2SwQnCQBREX4IXKxAswZsNiI3YgNqBFViAzXhMD+LZi0dv4i0jf/mGdflLMjALGWb4m/nbSGICFsAG2AJnFMP0paSLpFvmeElqZz6kCYY9gTewyrQO6NuRmz2K7y6dPpaAB0m98+q+deqgEjpmgb1rJ/ufWmgXBP4Yhay1ey1gtD3Zosr25sCn0AZfLRRh8I1VHuK33ElvKQH4Atlc8PGRxIhMAAAAAElFTkSuQmCC");
  background-position: right 10px center;
}

.header__toggle {
  display: none;
}

@media (max-width: 991px) {
  .header__toggle {
    display: block;
  }

  .toggle {
    width: 42px;
    height: 42px;
    z-index: 10000;
    position: relative;
    outline: none;
  }

  .toggle--open .toggle__bar--1 {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 20px;
  }

  .toggle--open .toggle__bar--2 {
    opacity: 0;
  }

  .toggle--open .toggle__bar--3 {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 20px;
  }

  .toggle__text {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: auto;
    left: -54px;
  }

  .toggle__bar {
    width: 25px;
    height: 2px;
    display: block;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 1px;
    position: absolute;
    transition: all 0.2s ease-out;
  }

  .toggle__bar--1 {
    top: 13px;
    background-color: #fff;
  }

  .toggle__bar--2 {
    top: 21px;
    background-color: #fff;
  }

  .toggle__bar--3 {
    top: 29px;
    background-color: #fff;
  }
}

.section-heading {
  text-align: center;
}

.section-heading__title {
  font-size: 50px;
  line-height: 1;
  color: #2b2b2b;
  position: relative;
  padding-top: 30px;
  font-style: italic;
  margin-bottom: 30px;
}

.section-heading__title span {
  font-size: 24px;
  font-style: normal;
}

.join-area {
  position: relative;
}

.join-area .section-heading__title {
  color: #fff;
}

@media (max-width: 991px) {
  .section-heading__title {
    font-size: 28px;
    padding-top: 15px;
  }

  .section-heading__title span {
    font-size: 16px;
    font-style: normal;
  }
}

.section-heading__title:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  width: 148px;
  height: 1px;
  background-color: #d9d9d9;
}

@media (max-width: 991px) {
  .section-heading__title:before {
    width: 80px;
  }
}

.section-heading__subhead {
  font-size: 18px;
  margin-top: 10px;
}

@media (max-width: 991px) {
  .section-heading__subhead {
    font-size: 14px;
  }
}

.section-heading--left {
  text-align: left;
}

.section-heading--left .section-heading__title:before {
  right: auto;
}

.section-heading--small .section-heading__title {
  font-size: 48px;
}

@media (max-width: 991px) {
  .section-heading--small .section-heading__title {
    font-size: 24px;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
}

.about .l-header {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  z-index: 0;
  width: 100%;
}

.l-wrap {
  padding: 0 25px;
}

.u-pc,
.u-pc--i,
.u-pc--ib,
.u-pc--f,
.u-pc--if {
  display: none;
}

.u-gradient {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  overflow: hidden;
  width: 0;
  height: 0;
}

.u-gradient__stop01 {
  stop-color: #fd1f64;
}

.u-gradient__stop02 {
  stop-color: #fd1f64;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1020;
  width: 100%;
  background: #0c0c31;
}

.l-header__head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  height: 67px;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  padding: 0 20px;
  width: 100%;
}

.l-header__head .logo__sub {
  display: block;
  margin: 9px 0 0;
}

.l-header__head .logo__sub img {
  width: 70px;
  height: auto;
}

.l-header__body {
  position: absolute;
  top: 55px;
  left: 0;
  z-index: 1;
  width: 100%;
  background: #e6e6ea;
}

.l-header__body02 {
  position: relative;
  width: 100%;
  background: #e6e6ea;
}

.l-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100vh;
}

.l-header .g-nav {
  margin: 0 0 0 50px;
}

.l-header .g-nav .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l-header .g-nav .list__item .item,
.l-header .g-nav .list__item .item--trigger {
  color: #fff;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-size: 12px;
  font-family: "Poppins", sans-serif;
}

.l-header .g-nav .list__item .item .ja,
.l-header .g-nav .list__item .item--trigger .ja {
  font-family: "Noto Sans Japanese", sans-serif;
}

.l-header .g-nav .list__item .item--trigger {
  position: relative;
}

.l-header .g-nav .list__item .item--trigger:before {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  content: "";
}

.l-header .g-nav .list__item+.list__item {
  margin: 0 0 0 25px;
}

.l-header .chapter-nav {
  padding: 3vw 30px 50px;
}

.l-header .chapter-nav .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -10px -15px 0;
}

.l-header .chapter-nav .list__item {
  margin: 10px 0 0;
  padding: 0 10px;
  width: 50%;
}

.l-header__body {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1),
    visibility 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1),
    visibility 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.l-header__body02 {
  -webkit-transition: opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1),
    visibility 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1),
    visibility 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.l-header .g-nav .list__item .item--trigger:before {
  opacity: 0;
  -webkit-transition: opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.l-header__bg {
  visibility: hidden;
}

.l-header.is-active .l-header__body {
  visibility: visible;
  opacity: 1;
}

.l-header.is-active .g-nav .list__item .item--trigger:before {
  opacity: 1;
}

.l-header.is-active .l-header__bg {
  visibility: visible;
}

.global-footer {
  padding: 30px 0 40px;
  background-color: #0c0931;
  color: #fff;
}

.global-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.global-footer .copy-wrap {
  margin-top: 30px;
  text-align: center;
}

.global-footer .logo {
  margin-bottom: 17px;
}

.global-footer .copy {
  color: #fefcfc;
  font-size: 9px;
}

.global-footer .copy small {
  font-size: 100%;
}

.global-footer .btn a {
  display: block;
  padding: 17px;
  border: solid 1px #4d4d4d;
  text-align: center;
}

.global-footer .btn .txt {
  display: block;
  margin-top: 15px;
  font-size: 14px;
}

@media screen {
  [hidden~="screen"] {
    display: inherit;
  }

  [hidden~="screen"]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}

@media (min-width: 768px) {
  .l-wrap {
    margin: 0 auto;
    padding: 0 100px;
    max-width: 1480px;
  }

  .u-sp {
    display: none;
  }

  .u-pc,
  .u-pc--i,
  .u-pc--ib,
  .u-pc--f,
  .u-pc--if {
    display: block !important;
  }

  .u-pc--i {
    display: inline !important;
  }

  .u-pc--ib {
    display: inline-block !important;
  }

  .u-pc--f {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .u-pc--if {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .l-header__head {
    margin: 0 auto;
    max-width: 1920px;
  }

  .l-header__head .logo img {
    width: auto;
    height: auto;
  }

  .l-header__head .logo__sub {
    margin: 10px 0 0;
  }

  .l-header__head .logo__sub img {
    width: 105px;
  }

  .l-header__body {
    top: 90px;
    padding: 57px 20px 72px;
  }

  .l-header__body02 {
    padding: 57px 20px 72px;
  }

  .l-header .g-nav {
    margin: 0 0 0 70px;
  }

  .l-header .g-nav .list__item .item,
  .l-header .g-nav .list__item .item--trigger {
    font-size: 16px;
  }

  .l-header .g-nav .list__item .item .ja,
  .l-header .g-nav .list__item .item--trigger .ja {
    font-size: 14px;
  }

  .l-header .g-nav .list__item+.list__item {
    margin: 0 0 0 48px;
  }

  .l-header .chapter-nav {
    position: relative;
    margin: 0 auto;
    padding: 0;
    max-width: 1013px;
  }

  .l-header .chapter-nav .list {
    margin: 0;
  }

  .l-header .chapter-nav .list__item {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    width: 160px;
  }

  .l-header .chapter-map {
    max-width: 1013px;
  }

  .l-header .chapter-map__img {
    max-width: 1013px;
    width: 100%;
  }

  .global-footer .logo img {
    width: auto;
    height: auto;
  }

  .global-footer {
    padding: 45px 0;
  }

  .global-footer__inner {
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .global-footer .copy-wrap {
    margin-top: 0;
    text-align: left;
  }

  .global-footer .logo {
    margin-bottom: 27px;
  }

  .global-footer .logo img {
    width: auto;
    height: 35px;
  }

  .global-footer .copy {
    font-size: 12px;
  }

  .global-footer .btn {
    width: 270px;
  }

  .global-footer .btn a {
    padding: 15px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }

  .global-footer .btn a:hover {
    background: #4d4d4d;
  }

  .global-footer .btn .txt {
    margin-top: 10px;
    font-size: 12px;
  }
}

@media (min-width: 769px) and (max-width: 1031px) {
  .l-header .chapter-nav .list__item {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    width: 15%;
  }
}

.mylogo {
  margin: 15px 0;
}

.alllogo {
  margin: 0;
  cursor: pointer;
  position: absolute;
  right: 10px;
}

body {
  min-width: 100%;
}

.alllogo {
  padding: 3px 21px 2px 15px;
  background: #ff325f;
  border-radius: 30px;
  margin: 10px 50px 7px 0;
  color: #fff;
  font-weight: 700;
  line-height: 0 !important;
}

@media screen and (max-width: 991px) {
  .alllogo {
    margin: 0 70px 0 0;
    color: #fff;
    font-weight: 700;
    line-height: 0 !important;
  }
}

.alllogo img {
  width: 105px;
}

.alllogo svg {
  width: 14px;
  margin: 5px 0 10px 8px;
}

.l-header__body {
  padding: 15px 20px 30px;
  background: #f1f1f1;
  top: 67px;
}

.l-header__body02 {
  padding: 15px 20px 30px;
  background: #f1f1f1;
}

.l-header .chapter-nav_ex {
  position: relative;
  margin: 0 auto;
  padding: 0;
  max-width: 1013px;
}

.l-header02 .chapter-nav_ex {
  position: relative;
  margin: 0 auto;
  padding: 0;
  max-width: 1013px;
}

.chapter-map__img_ex {
  text-align: center;
}

.chapter-map__img_ex img {
  width: 100%;
  max-width: 838px;
  height: auto;
}

.list_ex {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 14px;
}

.list__item_ex {
  position: absolute;
  z-index: 1;
  width: 150px;
  min-height: 75px;
}

.list_01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.list_01 div {
  transition: all 0.5s ease;
}

.list_01 a {
  width: 100%;
  margin: 0 0 5px;
  padding: 2px 0;
  display: inline-block;
}

.chapter-nav {
  text-align: center;
}

.cap_head {
  padding: 2px 15px;
  min-width: 150px;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 10px;
}

.ch_000 {
  background: #222;
}

.ch_007 {
  background: #00a3e5;
}

.ch_001 {
  background: #eecb48;
}

.ch_002 {
  background: #ff346e;
}

.ch_003 {
  background: #31ab8e;
}

.ch_004 {
  background: #f7931e;
}

.ch_005 {
  background: #0071bc;
}

.ch_006 {
  background: #8cc63f;
}

.ch_008 {
  background: #3981ff;
}

.ch_009 {
  background: #155f82;
}

@media screen and (max-width: 768px) {
  .l-header__body {
    top: 56px;
    padding: 0px;
    height: 70vh;
    max-height: 740px;
    overflow: auto;
  }

  .l-header .chapter-nav_ex {
    height: 840px;
  }

  .mylogo img {}

  .alllogo {
    padding: 8px 15px 8px 19px;
  }

  .alllogo img {
    width: 95px;
  }

  .alllogo svg {
    width: 11px;
    margin: 0px 0 -3px 8px;
  }

  .list__item_ex {
    position: relative;
    z-index: 10;
    width: 46%;
    margin: 0 2% 5px 2%;
    min-height: 75px;
  }

  .chapter-map__img_ex img {
    width: 100%;
    max-width: 350px;
    height: auto;
  }

  .list_01 {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 90%;
  }

  .list_01 a {
    margin: 0 0 3px 0;
  }

  .list_ex {
    height: auto;
    position: relative;
  }

  .chapter-map_on_logo {
    top: 10px;
    left: 10px;
    max-width: 300px;
  }

  #ch_box_000 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    top: 0;
    left: 0;
  }

  #ch_box_007 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    top: 0;
    left: 0;
  }

  #ch_box_001 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    top: 0;
    left: 0;
  }

  #ch_box_002 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    top: 0;
    left: 0;
  }

  #ch_box_003 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
    top: 0;
    left: 0;
  }

  #ch_box_004 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
    top: 0;
    left: 0;
  }

  #ch_box_005 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
    top: 0;
    left: 0;
  }

  #ch_box_006 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
    top: 0;
    left: 0;
  }

  #ch_box_008 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
    top: 0;
    left: 0;
  }

  #ch_box_009 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 2;
    order: 2;
    top: 0;
    left: 0;
  }
}

@media screen and (min-width: 769px) {
  #ch_box_000 {
    top: 27%;
    left: 0%;
  }

  #ch_box_007 {
    top: 23%;
    right: 3%;
  }

  #ch_box_001 {
    top: 41%;
    right: 3%;
  }

  #ch_box_002 {
    top: 59%;
    right: 6%;
  }

  #ch_box_003 {
    top: 33%;
    left: 42%;
  }

  #ch_box_004 {
    bottom: 1%;
    right: 22%;
  }

  #ch_box_005 {
    top: 52%;
    left: 23%;
  }

  #ch_box_006 {
    bottom: 32%;
    left: 2%;
  }

  #ch_box_008 {
    bottom: 18%;
    left: 2%;
  }

  #ch_box_009 {
    top: 25%;
    left: 21%;
  }
}

@media screen and (min-width: 880px) {
  #ch_box_007 {
    top: 28%;
    right: 3%;
  }

  #ch_box_001 {
    top: 46%;
    right: 3%;
  }

  #ch_box_002 {
    top: 64%;
    right: 6%;
  }
}

@media screen and (min-width: 1020px) {
  #ch_box_000 {
    top: 27%;
    left: 0%;
  }

  #ch_box_007 {
    top: 6%;
    right: 6%;
  }

  #ch_box_001 {
    top: 32%;
    right: 10%;
  }

  #ch_box_002 {
    top: 52%;
    right: 15%;
  }

  #ch_box_003 {
    top: 33%;
    left: 39%;
  }

  #ch_box_004 {
    bottom: 3%;
    right: 29%;
  }

  #ch_box_005 {
    top: 52%;
    left: 28%;
  }

  #ch_box_006 {
    bottom: 33%;
    left: 9%;
  }

  #ch_box_008 {
    bottom: 20%;
    left: 7%;
  }

  #ch_box_009 {
    top: 25%;
    left: 19%;
  }
}

small {
  font-size: 80%;
}

.global-footer .copy-wrap {
  margin-top: 30px;
  text-align: center;
}

.global-footer .logo {
  margin-bottom: 17px;
}

.global-footer .copy {
  color: #fefcfc;
  font-size: 9px;
}

.global-footer .copy small {
  font-size: 100%;
}

@media (min-width: 768px) {
  .u-sp {
    display: none;
  }

  .global-footer .logo img {
    width: auto;
    height: auto;
  }

  .global-footer .copy-wrap {
    margin-top: 0;
    text-align: left;
  }

  .global-footer .logo {
    margin-bottom: 27px;
  }

  .global-footer .logo img {
    width: auto;
    height: 35px;
  }

  .global-footer .copy {
    font-size: 12px;
  }
}

.foot_chapter {
  margin-bottom: 15px;
}

.foot_chapter_child {
  margin-left: 15px;
}

.foot_p {
  width: 140px;
  display: inline-flex;
  margin-bottom: 5px;
}

.fcwt_02 a,
.foot_p a,
.btn a {
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}

.fcwt_02 {
  color: #fff;
  cursor: pointer;
}

.f_j_link {
  margin: 0 3px 0 0;
  font-size: 50%;
  transform: rotate(-90deg);
  color: #666;
}

.foot_chapter_worldmap {
  width: 70%;
  margin: 30px 0 0;
}

.foot_chapter_worldmap_tit {
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 15px;
}

.fcwt_01 {
  width: 0;
  height: 1px;
  border-bottom: dotted 1px #999;
}

.fcwt_02 {
  width: 110px;
}

.fcwt_03 {
  width: calc(100% - 110px);
  height: 1px;
  border-bottom: dotted 1px #999;
}

.foot_chapter_worldmap img {
  padding: 0 10px;
}

@media (max-width: 1000px) {
  .foot_chapter_worldmap {
    width: 95%;
  }
}

@media (max-width: 768px) {
  .foot_chapter_worldmap {
    text-align: center;
  }

  .foot_chapter_worldmap_tit {
    justify-content: space-between;
  }

  .fcwt_01 {
    width: 35%;
    height: 1px;
    border-bottom: dotted 1px #999;
  }

  .fcwt_02 {
    width: 30%;
  }

  .fcwt_03 {
    width: 35%;
    height: 1px;
    border-bottom: dotted 1px #999;
  }
}

#slider {
  width: 100%;
  height: 100vh;
}

/* vidualarea */
#vidual-area {
  position: relative;
  height: 100vh;
}

body.appear #vidual-area::after {
  content: "";
  background: #960021;
  width: 0;
  height: 12%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  animation-name: vidualbgRLextendAnime;
  animation-duration: 0.2s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-delay: 1s;
}

@keyframes vidualbgRLextendAnime {
  0% {
    width: 0;
  }

  100% {
    width: 40%;
  }
}

#vidual-area #slider-area {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  z-index: -1;
  /*最背面へ*/
}

#vidual-area h2 {
  line-height: 1.5;
  position: absolute;
  top: 36%;
}

.about {
  grid-template-areas:
    "areaA areaB areaB"
    "areaC areaB areaB";
}

.message {
  grid-template-areas: "areaB areaB areaA";
}

.vission {
  grid-template-areas: "areaA areaA areaB";
}

.activity {
  grid-template-areas:
    "areaB areaD areaA"
    "areaE areaF areaC";
}

.member {
  grid-template-areas:
    "areaA areaB areaB"
    "areaC areaB areaB";
}

.news {
  grid-template-areas:
    "areaB areaB areaA"
    "areaB areaB areaC";
}

.accelerator {
  grid-template-areas:
    "areaA areaA areaB"
    "areaC areaC areaB";
}

.accelerator-about {
  grid-template-areas:
    "areaA areaB areaB";
}

.accelerator-join {
  grid-template-areas:
    "areaB areaB areaA";
}

.itemA {
  grid-area: areaA;
}

.itemB {
  grid-area: areaB;
}

.itemC {
  grid-area: areaC;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.table_area table {
  border: 1px solid #ddd;
  table-layout: fixed;
  width: 100%;
}

.table_area table .th_head {
  font-weight: 700;
  text-align: center;
  width: 30%;
}

.table_area table .border_bold {
  border-bottom: 3px solid #ddd;
}

.table_area table td,
.table_area table th {
  border: 1px solid #ddd;
  padding: 10px 13px;
  vertical-align: middle;
  text-align: center;
}

.table_area table th {
  font-weight: 400;
  background-color: #0c0931;
  color: #fff;
}

.table_area table .th_head__fee {
  background-color: #0c0931;
  color: #fff;
  border-bottom: 3px solid #ddd;
}

/*========= モーダル表示のためのCSS ===============*/

/*infoエリアをはじめは非表示*/
#info {
  display: none;
}

/*モーダルの横幅を変更したい場合*/
.modaal-container {
  max-width: 680px;
}

.modaal-close {
  position: absolute;
}

/*モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

/* PagenationCSS */

.page-numbers {
  font-family: 'Josefin Sans';
  border: 2px solid #ff325f;
  padding: 8px;
  margin: 2px;
}