@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* ======================================================================
 common
====================================================================== */
html {
  font-size: 16px;
}
body {
  font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", serif;
  color: #2A2A2A;
  font-weight: 400;
  letter-spacing: 0.1em;
}

input,
button,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  border-radius: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.8rem;
  color: inherit;
}

select::-ms-expand {
  display: none;
}

label {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: #2A2A2A;
}

img {
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  img {
    width: 100%;
  }
}

.inner {
  width: 1000px;
  margin: 0 auto;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .inner {
    width: 92%;
  }
}

.sp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}
.trans {
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 768px) {
  .trans {
    -webkit-transition: none;
    transition: none;
  }
}

.trans:hover,
.trans:hover img {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .trans:hover,
  .trans:hover img {
    opacity: 1;
  }
}

.anchor {
  display: block;
  position: relative;
  top: -89px;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .anchor {
    top: -46px;
  }
}

/* ======================================================================
 header
====================================================================== */
/*=============================
.btn-trigger
=============================*/
.btn-trigger {
  position: relative;
  width: 32px;
  height: 22px;
  cursor: pointer;
}

.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #004097;
}

.btn-trigger, .btn-trigger span {
  display: inline-block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.btn-trigger span:nth-of-type(1) {
  top: 0;
}

.btn-trigger span:nth-of-type(2) {
  top: 10px;
}

.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}

.btn-trigger.active {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.btn-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}

.btn-trigger.active span:nth-of-type(2) {
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}

.btn-trigger.active span:nth-of-type(3) {
  opacity: 0;
}

/* ======================================================================
 footer
====================================================================== */
/* ======================================================================
 main
====================================================================== */
.cg70_header {
  position: fixed;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 24px 80px;
}
@media screen and (max-width: 768px) {
  .cg70_header {
    display: block;
    padding: 10px 4%;
  }
}
.cg70_header_logo {
  width: 343px;
}
@media screen and (max-width: 768px) {
  .cg70_header_logo {
    display: block;
    margin: 0 auto;
    width: 220px;
  }
}
.cg70_header_menu_btn {
  position: absolute;
  right: 20px;
  top: 12px;
}
.cg70_header_menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .cg70_header_menu_list {
    position: absolute;
    left: 0;
    top: 46px;
    display: none;
    background-color: rgba(255, 255, 255, 0.9);
    width: 100%;
    padding: 20px 0;
  }
}
.cg70_header_menu_list_box {
  font-weight: 700;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  margin-left: 50px;
}
@media screen and (max-width: 768px) {
  .cg70_header_menu_list_box {
    display: block;
    margin-left: 0;
    text-align: center;
    padding: 15px 0;
  }
}
.cg70_header_menu_list_box:hover {
  color: #004097;
}
.cg70_header_menu_list_box:hover::after {
  opacity: 1;
  bottom: 0;
}
.cg70_header_menu_list_box::after {
  content: "";
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0;
  display: block;
  background: #E60000;
  width: 100%;
  height: 2px;
  margin-top: 5px;
  bottom: -5px;
}
@media screen and (max-width: 768px) {
  .cg70_header_menu_list_box::after {
    display: none;
  }
}
.cg70_kv {
  position: relative;
  margin-top: 89px;
}
@media screen and (max-width: 768px) {
  .cg70_kv {
    margin-top: 46px;
  }
}
.cg70_kv_ttl {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 175px;
}
@media screen and (max-width: 768px) {
  .cg70_kv_ttl {
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .cg70_kv_ttl img {
    margin: 0 auto;
    width: 250px;
  }
}
.cg70_kv_img img {
  width: 100%;
}
.cg70_history_txt {
  font-size: 18px;
  line-height: 38px;
  margin-bottom: 2em;
}
.cg70_history_box {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 1200px;
}
.cg70_history_box._wt .cg70_history_txt {
  color: #FFF;
}
.cg70_history_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.cg70_history_bg_img {
  background: no-repeat center center/cover;
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: -1;
}
.cg70_history_bg_img._bg01 {
  background-image: url(../img/para_bg01.png);
}
@media screen and (max-width: 768px) {
  .cg70_history_bg_img._bg01 {
    background-image: url(../img/para_bg01_sp.png);
  }
}
.cg70_history_bg_img._bg02 {
  background-image: url(../img/para_bg02.png);
}
@media screen and (max-width: 768px) {
  .cg70_history_bg_img._bg02 {
    background-image: url(../img/para_bg02_sp.png);
  }
}
.cg70_nextstage {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .cg70_nextstage {
    padding: 70px 0;
  }
}
.cg70_nextstage_ttl {
  font-weight: 700;
  text-align: center;
  color: #004097;
  font-size: 50px;
}
@media screen and (max-width: 768px) {
  .cg70_nextstage_ttl {
    font-size: 30px;
  }
}
.cg70_nextstage_copy {
  font-weight: 700;
  text-align: center;
  color: #004097;
  font-size: 30px;
  line-height: 50px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .cg70_nextstage_copy {
    font-size: 18px;
    line-height: 2;
    margin-top: 20px;
  }
}
.cg70_nextstage_img {
  display: block;
  text-align: center;
  margin: 50px auto 0;
}
@media screen and (max-width: 768px) {
  .cg70_nextstage_img {
    width: 80%;
  }
}
.cg70_nextstage_txt {
  text-align: center;
  margin-top: 60px;
  line-height: 38px;
}
@media screen and (max-width: 768px) {
  .cg70_nextstage_txt {
    margin-top: 50px;
  }
}
.cg70_nextstage_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 60px 150px 0;
}
@media screen and (max-width: 768px) {
  .cg70_nextstage_logo {
    margin: 20px 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .cg70_nextstage_logo_box {
    width: 48%;
    margin-top: 7%;
  }
}
.cg70_nextstage_logo_box img {
  width: auto;
  height: 52px;
}
@media screen and (max-width: 768px) {
  .cg70_nextstage_logo_box img {
    width: 100%;
    height: auto;
  }
}
.cg70_nextstage_logo_ttl {
  font-weight: 700;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #004097;
  margin-top: 50px;
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .cg70_nextstage_logo_ttl {
    font-size: 24px;
    line-height: 1.5;
  }
}
.cg70_nextstage_logo_ttl::before, .cg70_nextstage_logo_ttl::after {
  content: "";
  display: block;
  background: #004097;
  width: 100px;
  height: 1px;
  margin: 0 30px;
}
@media screen and (max-width: 768px) {
  .cg70_nextstage_logo_ttl::before, .cg70_nextstage_logo_ttl::after {
    width: 50px;
    margin: 0 10px;
  }
}
.cg70_tool {
  background: #00A7FF;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .cg70_tool {
    padding: 50px 0;
  }
}
.cg70_tool_ttl {
  font-weight: 700;
  text-align: center;
  color: #FFF;
  font-size: 50px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cg70_tool_ttl {
    font-size: 30px;
    line-height: 1.5;
  }
}
.cg70_tool_ttl2 {
  font-weight: 700;
  text-align: center;
  color: #FFF;
  font-size: 24px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cg70_tool_ttl2 {
    text-align: left;
    font-size: 16px;
    line-height: 1.5;
  }
}
.cg70_tool_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .cg70_tool_list {
    display: block;
  }
}
.cg70_tool_list_box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #FFF;
  width: 485px;
  margin-top: 30px;
  padding: 25px;
}
@media screen and (max-width: 768px) {
  .cg70_tool_list_box {
    width: 100%;
    padding: 4%;
  }
}
.cg70_tool_list_box:not(:nth-child(2n)) {
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .cg70_tool_list_box:not(:nth-child(2n)) {
    margin-right: 0;
  }
}
.cg70_tool_list_ttl {
  font-weight: 700;
  color: #004097;
  text-align: center;
  font-size: 18px;
  line-height: 36px;
}
@media screen and (max-width: 768px) {
  .cg70_tool_list_ttl {
    font-size: 16px;
    line-height: 32px;
    letter-spacing: normal;
  }
}
.cg70_tool_list_ttl span {
  font-size: 26px;
}
@media screen and (max-width: 768px) {
  .cg70_tool_list_ttl span {
    font-size: 24px;
  }
}
.cg70_tool_list_img {
  text-align: center;
  margin: 10px 0;
}
@media screen and (max-width: 768px) {
  .cg70_tool_list_img {
    width: 80%;
    margin: 15px auto;
  }
}
.cg70_tool_list_txt {
  line-height: 30px;
}
.cg70_tool_list_btn {
  position: relative;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #004097;
  color: #FFF;
  width: 100%;
  height: 60px;
  margin-top: 20px;
}
.cg70_tool_list_btn::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -4px;
}
.cg70_ranking {
  background: #004097;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 45px 135px;
}
@media screen and (max-width: 768px) {
  .cg70_ranking {
    display: block;
    padding: 10% 4%;
  }
}
.cg70_ranking_img {
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .cg70_ranking_img {
    margin-right: 0;
  }
}
.cg70_ranking_txt {
  color: #FFF;
  line-height: 38px;
}
@media screen and (max-width: 768px) {
  .cg70_ranking_txt {
    margin-top: 7%;
  }
}
.cg70_teacher {
  background: #FFFDF8;
  padding: 150px 0 100px;
}
@media screen and (max-width: 768px) {
  .cg70_teacher {
    padding: 20% 0 10%;
  }
}
.cg70_teacher_box {
  width: 1200px;
  border: 1px solid #004097;
  margin: 0 auto;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .cg70_teacher_box {
    width: 92%;
    padding-bottom: 10%;
  }
}
.cg70_teacher_ttl {
  font-weight: 700;
  color: #004097;
  background: #FFFDF8;
  text-align: center;
  display: table;
  font-size: 60px;
  margin: -60px auto 50px;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .cg70_teacher_ttl {
    font-size: 30px;
    margin: -10% auto 5%;
  }
}
.cg70_teacher_ttl img {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .cg70_teacher_ttl img {
    width: 50%;
  }
}
.cg70_teacher_list_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .cg70_teacher_list_box {
    display: block;
  }
}
.cg70_teacher_list_box:not(:nth-child(2n)) .cg70_teacher_list_img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.cg70_teacher_list_box:not(:last-child) {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .cg70_teacher_list_box:not(:last-child) {
    border-bottom: 1px solid #DBDBDB;
    margin-bottom: 10%;
    padding-bottom: 10%;
  }
}
.cg70_teacher_list_desc {
  width: 650px;
}
@media screen and (max-width: 768px) {
  .cg70_teacher_list_desc {
    width: 100%;
  }
}
.cg70_teacher_list_img {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .cg70_teacher_list_img {
    width: 100%;
  }
}
.cg70_teacher_list_img img {
  width: 100%;
}
.cg70_teacher_list_prof {
  border: 1px solid #DBDBDB;
  background: #FFF;
  padding: 20px 30px 10px;
}
@media screen and (max-width: 768px) {
  .cg70_teacher_list_prof {
    padding: 4% 4% 2%;
    margin-top: 4%;
    text-align: center;
  }
}
.cg70_teacher_list_school {
  font-weight: 700;
}
.cg70_teacher_list_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .cg70_teacher_list_name {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.cg70_teacher_list_name_ja {
  font-weight: 700;
  color: #E60000;
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .cg70_teacher_list_name_ja {
    font-size: 18px;
  }
}
.cg70_teacher_list_name_en {
  font-family: "Oooh Baby", cursive;
  letter-spacing: normal;
  font-size: 30px;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .cg70_teacher_list_name_en {
    font-size: 24px;
  }
}
.cg70_teacher_list_copy {
  font-weight: 700;
  background: #004097;
  color: #FFF;
  display: inline-block;
  padding: 5px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .cg70_teacher_list_copy {
    margin: 10% auto 0;
    display: table;
  }
}
.cg70_teacher_list_ttl {
  font-weight: 700;
  color: #004097;
  font-size: 22px;
  line-height: 34px;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .cg70_teacher_list_ttl {
    text-align: center;
  }
}
.cg70_teacher_list_txt {
  line-height: 32px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .cg70_teacher_list_img {
    width: 70%;
    margin: 0 auto;
  }
}
.cg70_message {
  background: #004097;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .cg70_message {
    padding: 10% 0;
  }
}
.cg70_message_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .cg70_message_head {
    display: block;
  }
}
.cg70_message_head_img {
  margin: -60px 0 0 -40px;
}
@media screen and (max-width: 768px) {
  .cg70_message_head_img {
    margin: 0;
  }
}
.cg70_message_head_ttl {
  font-weight: 700;
  color: #FFF;
  text-align: right;
  font-size: 50px;
  line-height: 60px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 768px) {
  .cg70_message_head_ttl {
    font-size: 30px;
    line-height: 1.7;
    text-align: center;
  }
}
.cg70_message_head_ttl img {
  position: relative;
  display: block;
  right: -50px;
}
@media screen and (max-width: 768px) {
  .cg70_message_head_ttl img {
    right: auto;
    width: 70%;
    margin: 0 auto;
  }
}
.cg70_message_slider {
  margin-bottom: 10px;
}
.cg70_message_slider_box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  background: #FFF;
  margin-right: 10px;
  padding: 10px;
  height: 250px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .cg70_message_slider_box {
    height: 150px;
  }
}
@media screen and (max-width: 430px) {
  .cg70_message_slider_box {
    height: auto;
  }
}
.cg70_message_slider_box img {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}
@media screen and (max-width: 430px) {
  .cg70_message_slider_box img {
    width: auto;
    height: 180px;
  }
}
.cg70_message_slider_box_name {
  font-weight: 700;
  color: #004097;
  margin-top: 10px;
}
.cg70_parent {
  position: relative;
}
@media screen and (max-width: 768px) {
  .cg70_parent {
    padding: 10% 0 0;
  }
}
.cg70_parent_ttl {
  font-weight: 700;
  color: #004097;
  position: absolute;
  top: 70px;
  left: -70px;
  font-size: 50px;
  line-height: 60px;
}
@media screen and (max-width: 768px) {
  .cg70_parent_ttl {
    position: static;
    font-size: 30px;
    line-height: 1.7;
    text-align: center;
  }
}
.cg70_parent_ttl img {
  position: absolute;
  right: 0;
  display: block;
}
@media screen and (max-width: 768px) {
  .cg70_parent_ttl img {
    position: static;
    width: 50%;
    margin: 0 auto;
  }
}
.cg70_parent_img {
  position: absolute;
  bottom: 0;
  left: -70px;
}
@media screen and (max-width: 768px) {
  .cg70_parent_img {
    position: static;
    width: 80%;
    margin: 5% auto 0;
  }
}
.cg70_parent_slider {
  margin-left: 410px;
}
@media screen and (max-width: 768px) {
  .cg70_parent_slider {
    margin: 0;
  }
}
.cg70_parent_slider_box {
  border: 1px solid #DBDBDB !important;
  padding: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .cg70_parent_slider_box {
    padding: 4%;
  }
}
.cg70_parent_slider_box img {
  width: 550px;
}
@media screen and (max-width: 768px) {
  .cg70_parent_slider_box img {
    width: 100%;
  }
}
.cg70_footer_top {
  background: no-repeat center center/cover;
  background-image: url(../img/footer_bg.png);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 100%;
  height: 780px;
}
@media screen and (max-width: 768px) {
  .cg70_footer_top {
    background: no-repeat center center/100% 100%;
    background-image: url(../img/footer_bg_sp.png);
    height: 600px;
  }
}
.cg70_footer_ttl {
  font-weight: 700;
  text-align: center;
  color: #FFF;
  font-size: 38px;
  line-height: 53px;
}
@media screen and (max-width: 768px) {
  .cg70_footer_ttl {
    font-size: 24px;
    line-height: 1.7;
  }
}
.cg70_footer_img {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .cg70_footer_img {
    width: 250px;
    margin: 7% auto 0;
  }
}
.cg70_footer_btm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 80px;
}
@media screen and (max-width: 768px) {
  .cg70_footer_btm {
    display: block;
    padding: 7% 0;
  }
}
@media screen and (max-width: 768px) {
  .cg70_footer_logo {
    display: block;
    width: 40%;
    margin: 0 auto 4%;
  }
}
.cg70_footer_copy {
  color: #004097;
  font-size: 14px;
  letter-spacing: normal;
}
@media screen and (max-width: 768px) {
  .cg70_footer_copy {
    text-align: center;
  }
}
.cg70_fixed {
  display: none;
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .cg70_fixed {
    right: 4%;
    bottom: 2%;
  }
}
.cg70_fixed img {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .cg70_fixed img {
    width: 150px;
  }
}

.cg70_kv_img iframe {
  width: 100%;
}

.cg70_kv.movie iframe {
  width: 100%;
  height: 60vw;
}

.cg70_kv.movie .cg70_kv_ttl {
  display: none;
}

@media screen and (max-width: 768px) {
  .cg70_kv.movie {
    margin-top: 16vw;
  }
  .cg70_kv.movie iframe {
    height: 75vw;
  }
}
.cg70_movie {
  padding: 30px 0;
  text-align: center;
}

.cg70_movie iframe {
  width: 100%;
  max-width: 1200px;
  height: 720px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .cg70_movie iframe {
    max-width: 90vw;
    height: 54vw;
  }
}