@charset "utf-8";

body {
  margin: 0;
  padding: 0;
  background: #001472;
  letter-spacing: 0.5px;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 95%;
}
a {
  color: #fff;
}
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: hsl(218deg 100% 11% / 85%);
}
header .header_inner {
  max-width: 960px;
  width: 100%;
  height: 57px;
  padding: 0 20px;
  margin: 0 auto;
  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;
  -webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
header .header_inner .icon_rnbiz {
  width: 5%;
  min-width: 40px;
}
header .header_inner .icon_rnbiz img {
  width: 100%;
}
header .header_inner .nav {
  width: 90%;
}

header .header_inner .nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
  font-weight: 600;
  font-size: 0.9rem;
  /*flex-wrap: wrap;*/
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header .header_inner .nav ul li {
  list-style: none;
  margin-right: 4%;
  text-align: center;
  line-height: 1.2;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
header .header_inner .nav ul li a {
  text-decoration: none;
  position: relative;
}
header .header_inner .nav ul li a:hover {
  color: #00ffff;
}
header .header_inner .nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 2%;
  width: 96%;
  height: 2px;
  background: rgba(255, 255, 255, 0);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0.1);
  -ms-transform: scale(0.1);
  transform: scale(0.1);
  -webkit-transform-origin: center top;
  -ms-transform-origin: center top;
  transform-origin: center top;
}
header .header_inner .nav ul li a:hover::after {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  background: #fffc;
}
@media only screen and (max-width: 850px) {
  header .header_inner .icon_rnbiz {
    min-width: 40px;
  }
  header .header_inner .nav {
    width: 86%;
  }
  header .header_inner .nav ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 0.8rem;
  }
  header .header_inner .nav ul li {
    margin-right: 3%;
  }
}

/*--------NAV SP
----------------------------*/

header .header_inner #nav_sp {
  position: absolute;
  top: 0;
  right: -50%;
  width: 50%;
  height: 100vh;
  background: #001028db;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

header .header_inner #nav_sp ul {
  padding-top: 80px;
}

header .header_inner #nav_sp ul li {
  list-style-type: none;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1.2px;
}

header .header_inner #nav_sp a {
  display: block;
  text-decoration: none;
  color: #fff;
  margin: 0 15px;
  padding: 10px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

header .header_inner #nav_sp li a:hover {
  color: #000;
  background: #00ffff;
  border-bottom: none;
}

header .header_inner #hamburger {
  display: block;
  position: absolute;
  top: 15px;
  right: 24px;
  width: 42px;
  height: 26px;
  cursor: pointer;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

header .header_inner .inner_line {
  display: block;
  position: absolute;
  left: 0;
  width: 42px;
  height: 4px;
  background-color: #ffffff;
  transition: 0.4s;
  border-radius: 4px;
}

header .header_inner #line1 {
  top: 0;
}

header .header_inner #line2 {
  top: 11px;
}

header .header_inner #line3 {
  bottom: 0px;
}

.in {
  transform: translate(-99%, 0%);
}

header .header_inner .line_1,
header .header_inner .line_2,
header .header_inner .line_3 {
  background: rgb(0, 191, 216);
}

header .header_inner .line_1 {
  /*-45度回転させる*/
  transform: rotate(-45deg);
  top: 11px !important;
}

header .header_inner .line_2 {
  opacity: 0;
}

header .header_inner .line_3 {
  /*45度回転させる*/
  transform: rotate(45deg);
  bottom: 11px !important;
}

@media only screen and (max-width: 785px) {
  header .header_inner .nav {
    display: none;
  }
  header .header_inner .icon_rnbiz img {
    padding-top: 5px;
  }
}

@media only screen and (min-width: 784px) {
  header .header_inner #nav_sp,
  header .header_inner #hamburger {
    display: none;
  }
  header .header_inner {
    height: 70px;
  }
}

/*--------FIRST
----------------------------*/

section.first {
  position: relative;
  padding: 0;
  height: 100vh;
  background-image: url(./files/img/bg_top.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

section.first .icon_rnbiz img {
  width: 100%;
}
section.first h1 {
  max-width: 650px;
  padding: 0 50px;
  width: 100%;
  position: absolute;
  top: 48vh;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
section.first h1 img {
  width: 100%;
}
section.first .cate_btn {
  position: absolute;
  top: 63vh;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
section.first .cate_btn > div a {
  text-align: center;
  text-decoration: none;
  border: 2px solid #fff;
  border-radius: 30px;
  padding: 7px 25px;
  transition: 0.3s;
}
section.first .cate_btn > div a:hover {
  background: #00ffffb0;
}
section.first .scrolldown {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 70px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

section.first .scrolldown span {
  /*描画位置*/
  position: absolute;
  left: 10px;
  bottom: 10px;
  color: #fff;
  font-size: 0.7rem;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

section.first .scrolldown:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -6px;
  /*丸の形状*/
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  -webkit-animation: circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
  animation: circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: 55px;
  }
  100% {
    bottom: -5px;
  }
}

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

/* 線の描写 */
section.first .scrolldown:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 2px;
  height: 60px;
  background: #fff;
}

/*--------NEWS
----------------------------*/
section#news {
  padding: 8rem 60px;
  background: -o-linear-gradient(
    30deg,
    rgb(0 10 84) 22.322877407872696%,
    rgb(0 33 153) 61.664551053880515%
  );
  background: linear-gradient(
    60deg,
    rgb(0 10 84) 22.322877407872696%,
    rgb(0 33 153) 61.664551053880515%
  );
}

section#news .news_inner {
  margin: 0 auto;
  max-width: 960px;
}
section#news .news_inner .news_area {
  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;
}
section#news .news_inner .news_area .news_list {
  width: 57%;
}
section#news .news_inner .news_area .news_list h2 {
  text-align: center;
}
section#news .news_inner .news_area .news_list h2 img {
  height: 50px;
  width: 26%;
  padding-top: 6px;
}
section#news .news_inner .news_area .news_list h2 p::before {
  content: "";
  display: inline-block;
  width: 10%;
  height: 60px;
  background: url(./files/img/num1.svg) no-repeat;
  background-size: contain;
  vertical-align: sub;
}
section#news .news_inner .news_area .news_list .sub {
  margin-bottom: 40px;
  padding-left: 50px;
  font-weight: bold;
  text-align: center;
}
section#news .news_inner .news_area .news_list ul {
  list-style: none;
}
section#news .news_inner .news_area .news_list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  font-size: 95%;
  line-height: 1.4;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 2px #ffffff2e solid;
}
section#news .news_inner .news_area .news_list ul li a {
  text-decoration: none;
}
section#news .news_inner .news_area .news_list ul li a:hover {
  color: cyan;
}
section#news .news_inner .news_area .news_list ul li span {
  font-size: 90%;
  display: inline-block;
  margin-right: 15px;
  background: cyan;
  color: #000a54;
  padding: 2px 5px;
  line-height: 1;
  border-radius: 3px;
  min-width: 70px;
  text-align: center;
}
section#news .news_inner .news_area .illust {
  width: 33%;
}
section#news .news_inner .news_area .illust img {
  max-width: 320px;
}
.modaal-wrapper .modaal-outer-wrapper .modaal-container {
  border-radius: 5px !important;
}
.modaal-wrapper
  .modaal-outer-wrapper
  .modaal-container
  .modaal-content-container {
  color: #002b88 !important;
}
.modaal-wrapper .modaal-outer-wrapper .modaal-container .modaal-close {
  top: 80px !important;
}

.modaal-close:after,
.modaal-close:before {
  background: cyan !important;
}
.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #001e72 !important;
}
@media only screen and (max-width: 785px) {
  .modaal-inner-wrapper {
    padding-top: 120px !important;
  }
  section#news {
    padding: 6rem 25px;
  }
  section#news .news_inner .news_area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  section#news .news_inner .news_area .illust {
    margin-bottom: 40px;
    width: 100%;
    max-width: 210px;
  }
  section#news .news_inner .news_area .news_list {
    max-width: 550px;
    width: 100%;
  }
  section#news .news_inner .news_area .news_list ul li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 20px;
  }
  section#news .news_inner .news_area .news_list ul li:last-child {
    margin-bottom: 0;
  }
  section#news .news_inner .news_area .news_list ul li span {
    margin-bottom: 6px;
  }
  section#news .news_inner .news_area .news_list h2 {
    padding-right: 25px;
  }
  section#news .news_inner .news_area .news_list h2 img {
    width: 100%;
    max-width: 150px;
  }
}

/*--------EHIME
----------------------------*/

section#ehime {
  padding: 8rem 60px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(49.9%, rgb(0 31 126)),
    color-stop(50.1%, rgb(0 57 161))
  );
  background: -o-linear-gradient(
    left,
    rgb(0 31 126) 49.9%,
    rgb(0 57 161) 50.1%
  );
  background: linear-gradient(90deg, rgb(0 31 126) 49.9%, rgb(0 57 161) 50.1%);
  background-image: url(./files/img/ehime_bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: #002e9d;
}
section#ehime .ehime_inner {
  margin: 0 auto;
  max-width: 960px;
}

section#ehime .ehime_inner .ehime_tit_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}
section#ehime .ehime_inner .ehime_tit_area .illust {
  width: 33%;
}
section#ehime .ehime_inner .ehime_tit_area .ehime_tit {
  width: 50%;
}
section#ehime .ehime_inner .ehime_tit_area .ehime_tit h2 {
  text-align: center;
  padding-right: 20px;
}
section#ehime .ehime_inner .ehime_tit_area .ehime_tit h2 img {
  height: 50px;
  width: 68%;
}
section#ehime .ehime_inner .ehime_tit_area .ehime_tit h2 p::before {
  content: "";
  display: inline-block;
  width: 12%;
  height: 60px;
  background: url(./files/img/num2.svg) no-repeat;
  background-size: contain;
  vertical-align: sub;
}

section#ehime .ehime_inner .ehime_tit_area .ehime_tit .sub {
  margin-bottom: 40px;
  font-weight: bold;
  text-align: center;
}
section#ehime .ehime_inner .ehime_tit_area .ehime_tit .desc {
  max-width: 340px;
  margin: 0 auto 50px;
  text-align: center;
  border-top: 1px solid #ffffff8f;
  border-bottom: 1px solid #ffffff8f;
  padding: 10px 0;
}
section#ehime .ehime_inner .ehime_files .file_box_area {
  max-width: 440px;
  margin: 0 auto;
}

section#ehime .ehime_inner .ehime_files .file_box_area a {
  display: block;
  width: 100%;
  padding: 10px 0px;
  outline: 3px solid #fff;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background: #002e9d;
}
section#ehime .ehime_inner .ehime_files .file_box_area a:hover {
  -webkit-box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 0%);
  box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 0%);
  background: #00ffffb0;
}
section#ehime .ehime_inner .ehime_files .file_box_area a img {
  max-width: 70px;
}
section#ehime .ehime_inner .ehime_files .file_box_area a p {
  display: inline-block;
}
section#ehime .ehime_inner .ehime_files .file_box_area a p i {
  color: #00ffff;
}
section#ehime .ehime_inner .ehime_files .file_box_area a p::before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 60px;
  background: url(./files/img/ehime.svg) no-repeat;
  background-size: contain;
  margin-right: 20px;
  margin-left: -20px;
  vertical-align: middle;
}

@media only screen and (max-width: 785px) {
  section#ehime {
    padding: 6rem 25px;
  }
  section#ehime .ehime_inner .ehime_tit_area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  section#ehime .ehime_inner .ehime_tit_area .illust {
    margin-bottom: 40px;
    width: 100%;
    max-width: 210px;
  }
  section#ehime .ehime_inner .ehime_tit_area .ehime_tit {
    max-width: 550px;
    width: 100%;
  }
  section#ehime .ehime_inner .ehime_tit_area .ehime_tit .desc {
    max-width: 550px;
    margin: 0 auto 50px;
    text-align: left;
  }

  section#ehime .ehime_inner .ehime_files .file_box_area {
    max-width: 550px;
    margin: 0 auto;
  }
}

/*--------RNB
----------------------------*/
section#rnb {
  background: -o-linear-gradient(
    30deg,
    rgb(0 10 84) 22.322877407872696%,
    rgb(0 33 153) 61.664551053880515%
  );
  background: linear-gradient(
    60deg,
    rgb(0 10 84) 22.322877407872696%,
    rgb(0 33 153) 61.664551053880515%
  );
}
section#rnb .rnb_bg {
  padding: 8rem 60px;
  background-image: url(./files/img/bg_wit.svg), url(./files/img/bg_wit.svg);
  background-size: 52%, 52%;
  background-repeat: no-repeat;
  background-position: -10% 10%, 110% 110%;
}
section#rnb .rnb_inner {
  margin: 0 auto 100px;
  max-width: 960px;
}
section#rnb .rnb_inner .rnb_tit_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 80px;
}
section#rnb .rnb_inner .rnb_tit_area .illust {
  width: 33%;
}
section#rnb .rnb_inner .rnb_tit_area .rnb_tit {
  width: 50%;
}
section#rnb .rnb_inner .rnb_tit_area .rnb_tit h2 {
  /*background-image: url(./files/img/num2.svg);
  background-repeat: no-repeat;
  background-size: 50px;
  background-position: 22px 0;*/
  text-align: center;
  padding-right: 20px;
}
section#rnb .rnb_inner .rnb_tit_area .rnb_tit h2 img {
  height: 50px;
  width: 54%;
}
section#rnb .rnb_inner .rnb_tit_area .rnb_tit h2 p::before {
  content: "";
  display: inline-block;
  width: 12%;
  height: 60px;
  background: url(./files/img/num3.svg) no-repeat;
  background-size: contain;
  vertical-align: sub;
}

section#rnb .rnb_inner .rnb_tit_area .rnb_tit .sub {
  margin-bottom: 40px;
  font-weight: bold;
  text-align: center;
}
section#rnb .rnb_inner .rnb_tit_area .rnb_tit .desc {
  max-width: 366px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid #ffffff8f;
  border-bottom: 1px solid #ffffff8f;
  padding: 10px 0;
}
section#rnb .rnb_inner .rnb_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
section#rnb .rnb_inner .rnb_area .rnb_files {
  width: 30%;
}

section#rnb .rnb_inner .rnb_area .rnb_files a {
  display: block;
  width: 100%;
  padding: 20px 0px;
  outline: 3px solid #fff;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
section#rnb .rnb_inner .rnb_area .rnb_files a:hover {
  -webkit-box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 0%);
  box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 0%);
  background: #00ffffb0;
}
section#rnb .rnb_inner .rnb_area .rnb_files p {
  text-align: center;
  display: inline-block;
}
section#rnb .rnb_inner .rnb_area .rnb_files a p::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(./files/img/wit.svg) no-repeat;
  background-size: contain;
  margin-right: 8px;
  margin-left: 0;
  vertical-align: middle;
}
section#rnb .rnb_inner .rnb_area .rnb_files p i {
  color: #00ffff;
}
section#rnb .rnb_inner .rnb_area p.timetable_bn {
  text-align: center;
  width: 100%;
}
section#rnb .rnb_inner .rnb_area p.timetable_bn a {
  transition: 0.3s;
}
section#rnb .rnb_inner .rnb_area p.timetable_bn a:hover {
  color: #00ffff;
}
.slick-track {
  margin-bottom: 20px;
}

@media only screen and (max-width: 785px) {
  section#rnb .rnb_bg {
    padding: 6rem 25px;
    background-size: 80%, 80%;
    background-position: -10% 10%, 110% 94%;
  }
  section#rnb .rnb_inner {
    margin: 0 auto 70px;
  }
  section#rnb .rnb_inner .rnb_tit_area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin-bottom: 0;
  }
  section#rnb .rnb_inner .rnb_tit_area .illust {
    margin-bottom: 40px;
    width: 100%;
    max-width: 210px;
  }
  section#rnb .rnb_inner .rnb_tit_area .rnb_tit {
    max-width: 550px;
    width: 100%;
  }
  section#rnb .rnb_inner .rnb_tit_area .rnb_tit .desc {
    max-width: 550px;
    margin: 0 auto 50px;
    text-align: left;
  }
  section#rnb .rnb_inner .rnb_area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 550px;
    margin: 0 auto;
  }
  section#rnb .rnb_inner .rnb_area .rnb_files {
    width: 100%;
    margin-bottom: 25px;
  }
}

/*--------sales_slider
----------------------------*/

.sales_slider {
  max-width: 960px;
  margin: 0 auto;
}
.sales_slider_inner .image {
  margin: 0 10px;
}
.sales_slider_inner .image p {
  font-size: 110%;
  font-weight: 600;
}
.sales_slider_inner .image a {
  display: block;
  background-color: #0067f5;
}
.sales_slider_inner .image a img {
  width: 100%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border-radius: 5px;
}
.sales_slider_inner .image .slick-dots {
  bottom: -35px;
}

.slick-dots li button:before {
  opacity: 1 !important;
  color: #ffffff61 !important;
  font-size: 18px !important;
}
.slick-dots li.slick-active button:before {
  opacity: 1 !important;
  color: #0cffff !important;
}

/*--------MEDIA
----------------------------*/
section#media {
  background: -o-linear-gradient(
    30deg,
    rgb(0 30 139) 22.322877407872696%,
    rgb(0 63 177) 61.664551053880515%
  );
  background: linear-gradient(
    60deg,
    rgb(0 30 139) 22.322877407872696%,
    rgb(0 63 177) 61.664551053880515%
  );
}
section#media .media_bg {
  padding: 8rem 60px;
  background-image: url(./files/img/bg_a.png);
  background-size: contain;
  background-repeat: repeat;
}
section#media .media_inner {
  margin: 0 auto;
  max-width: 960px;
}
section#media .media_inner .media_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 60px;
}
section#media .media_inner .media_area .illust {
  width: 32%;
}
section#media .media_inner .media_area .media_files {
  width: 53%;
}
section#media .media_inner .media_area .media_files h2 {
  text-align: center;
  padding-right: 20px;
}
section#media .media_inner .media_area .media_files h2 img {
  height: 50px;
  width: 68%;
}
section#media .media_inner .media_area .media_files h2 p::before {
  content: "";
  display: inline-block;
  width: 12%;
  height: 60px;
  background: url(./files/img/num4.svg) no-repeat;
  background-size: contain;
  vertical-align: sub;
}

section#media .media_inner .media_area .media_files .sub {
  margin-bottom: 40px;
  font-weight: bold;
  text-align: center;
}
section#media .media_inner .media_area .media_files .desc {
  max-width: 385px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid #ffffff8f;
  border-bottom: 1px solid #ffffff8f;
  padding: 10px 0;
}

section#media .media_inner .media_tab_area .media_tab {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 18px;
}

section#media .media_inner .media_tab_area .media_tab_li {
  position: relative;
  width: 33.33%;
  border-bottom: #ffffff42 5px solid;
  padding: 15px 0;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: 0.4s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
}
section#media .media_inner .media_tab_area .media_tab_li:hover {
  background: #0cffff40;
}
section#media .media_inner .media_tab_area .media_tab .media_tab_li span {
  font-size: 18px;
  font-weight: normal;
}

section#media .media_inner .media_tab_area .media_tab_list_li {
  padding: 30px 0 0;
  font-size: 17px;
  list-style: none;
}
section#media .media_inner .media_tab_area .media_tab_list_li .year_sub {
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.6;
}
section#media .media_inner .media_tab_area .hide {
  display: none;
}
section#media .media_inner .media_tab_area .media_tab_list_li h3 {
  position: relative;
  max-width: 268px;
  margin: 0 auto 40px;
  text-align: center;
  border-bottom: #0cffff 5px solid;
  padding: 15px 0;
  font-size: 22px;
  font-weight: bold;
}
section#media .media_inner .media_tab_area .media_tab_list_li h3:before {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #00ffff;
}
section#media .media_inner .media_tab_area .select {
  border-bottom: #0cffff 5px solid;
  color: #fff;
}

section#media .media_inner .media_tab_area .select::before {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #00ffff;
  transition: 0.3s;
}

section#media .media_inner .media_tab_area .media_box_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 90px;
}
section#media .media_inner .media_tab_area .media_box_area .media_box {
  display: block;
  border-bottom: 2px solid #ffffff;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc((100% - 150px) / 3);
  flex: 0 1 calc((100% - 150px) / 3);
  position: relative;
  transition: 0.3s;
}
section#media .media_inner .media_tab_area .media_box_area .media_box::before {
  content: url(./files/img/icon_right.svg);
  width: 30px;
  position: absolute;
  bottom: 10px;
  right: 7px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
section#media
  .media_inner
  .media_tab_area
  .media_box_area
  .media_box:hover::before {
  bottom: 10px;
  right: 0;
}
section#media
  .media_inner
  .media_tab_area
  .media_box_area
  .media_box:hover
  img {
  opacity: 0.8;
}
section#media .media_inner .media_tab_area .media_box_area .media_box:hover p {
  color: #00ffff;
}
section#media .media_inner .media_tab_area .media_box_area .media_box img {
  width: 100%;
  display: block;
  margin-bottom: 15px;
  border-radius: 4px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

section#media .media_inner .media_tab_area .media_box_area .media_box p {
  text-align: center;
  padding-bottom: 25px;
  font-size: 16px;
}

section#media .media_inner .media_tab_area .media_box_area .media_box p i {
  color: #00ffff;
  margin-right: 5px;
}

.media_past_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
.media_past_area .h3_tit {
  width: 100%;
}
.media_past_area .h3_tit h3 {
  position: relative;
  max-width: 340px;
  margin: 0 auto 40px;
  text-align: center;
  border-bottom: #0cffff 5px solid;
  padding: 15px 0;
  font-size: 22px;
  font-weight: bold;
}
.media_past_area a {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  /* border-bottom: 1px solid #ffffff; */
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc((100% - 50px) / 3);
  flex: 0 1 calc((100% - 50px) / 3);
  position: relative;
  transition: 0.3s;
  margin-bottom: 10px;
  opacity: 0.6;
}
.media_past_area a img {
  width: 40%;
  border-radius: 4px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.media_past_area p {
  text-align: left;
  padding-bottom: 25px;
  font-size: 14px;
  width: 55%;
  line-height: 1.2;
}

@media only screen and (max-width: 785px) {
  section#media .media_bg {
    padding: 6rem 25px 3rem;
  }
  section#media .media_inner .media_area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  section#media .media_inner .media_area .illust {
    margin-bottom: 40px;
    width: 100%;
    max-width: 210px;
  }
  section#media .media_inner .media_area .media_files {
    max-width: 550px;
    width: 100%;
  }
  section#media .media_inner .media_tab_area .media_box_area {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  section#media .media_inner .media_tab_area .media_box_area .media_box {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc((100% - 80px) / 3);
    flex: 0 1 calc((100% - 80px) / 3);
  }
  .media_past_area {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-around;
  }
}
@media only screen and (max-width: 640px) {
  section#media .media_inner .media_tab_area .media_tab_li {
    font-size: 21px;
  }
  section#media .media_inner .media_tab_area .media_tab .media_tab_li span {
    font-size: 13px;
  }
}
@media only screen and (max-width: 599px) {
  .media_past_area a {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc((100% - 0px) / 1);
    flex: 0 1 calc((100% - 0px) / 1);
  }
  .media_past_area img {
    width: 30%;
  }
  .media_past_area p.tit {
    width: 66%;
  }
}
/*--------SALES
----------------------------*/
section#sales {
  background: -o-linear-gradient(
    100deg,
    rgb(0 10 84) 22.322877407872696%,
    rgb(0 33 153) 61.664551053880515%
  );
  background: -o-linear-gradient(
    350deg,
    rgb(0 10 84) 22.322877407872696%,
    rgb(0 33 153) 61.664551053880515%
  );
  background: linear-gradient(
    100deg,
    rgb(0 10 84) 22.322877407872696%,
    rgb(0 33 153) 61.664551053880515%
  );
}
section#sales .sales_bg {
  padding: 8rem 60px;
  background-image: url(./files/img/bg_b.png), url(./files/img/bg_c.png);
  background-size: contain, contain;
  background-repeat: no-repeat;
  background-position: 100% 0px, 100% 100%;
}
section#sales .sales_inner {
  margin: 0 auto;
  max-width: 960px;
}
section#sales .sales_inner .sales_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 65px;
}
section#sales .sales_inner .sales_area .sales_tit {
  width: 61%;
}
section#sales .sales_inner .sales_area .sales_tit h2 {
  text-align: center;
  padding-right: 20px;
}
section#sales .sales_inner .sales_area .sales_tit h2 p::before {
  content: "";
  display: inline-block;
  width: 12%;
  height: 60px;
  background: url(./files/img/num5.svg) no-repeat;
  background-size: contain;
  vertical-align: sub;
}
section#sales .sales_inner .sales_area .sales_tit h2 img {
  height: 50px;
  width: 80%;
}
section#sales .sales_inner .sales_area .sales_tit .sub {
  margin-bottom: 40px;
  font-weight: bold;
  text-align: center;
}
section#sales .sales_inner .sales_area .sales_tit .desc {
  max-width: 385px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid #ffffff8f;
  border-bottom: 1px solid #ffffff8f;
  padding: 10px 0;
}
section#sales .sales_inner .sales_area .illust {
  width: 28%;
}
section#sales .sales_inner .sales_box_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
section#sales .sales_inner .sales_box_area .h3_tit {
  width: 100%;
}
section#sales .sales_inner .sales_box_area .h3_tit h3 {
  position: relative;
  max-width: 340px;
  margin: 0 auto 40px;
  text-align: center;
  border-bottom: #0cffff 5px solid;
  padding: 15px 0;
  font-size: 22px;
  font-weight: bold;
}
section#sales .sales_inner .sales_box_area .h3_tit h3:before {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #00ffff;
}
section#sales .sales_inner .sales_box_area .sales_box {
  display: block;
  border-bottom: 2px solid #ffffff;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc((100% - 150px) / 3);
  flex: 0 1 calc((100% - 150px) / 3);
  position: relative;
  transition: 0.3s;
  margin-bottom: 50px;
  padding-bottom: 20px;
}
section#sales .sales_inner .sales_box_area .sales_box a {
  text-decoration: none;
}
section#sales .sales_inner .sales_box_area .sales_box::before {
  content: url(./files/img/icon_right.svg);
  width: 30px;
  position: absolute;
  bottom: 10px;
  right: 7px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
section#sales .sales_inner .sales_box_area .sales_box .sales_box_other {
  text-decoration: none;
}
section#sales .sales_inner .sales_box_area .sales_box img {
  width: 100%;
  display: block;
  margin-bottom: 15px;
  border-radius: 4px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
section#sales .sales_inner .sales_box_area .sales_box:hover::before {
  bottom: 10px;
  right: 0;
}
section#sales .sales_inner .sales_box_area .sales_box:hover img {
  opacity: 0.8;
}
section#sales .sales_inner .sales_box_area .sales_box:hover .tit {
  color: #00ffff;
}
section#sales .sales_inner .sales_box_area .sales_box p.tit {
  text-align: center;
  padding-bottom: 25px;
  font-size: 16px;
}

section#sales .sales_inner .sales_box_area .sales_box p.tit i {
  color: #00ffff;
  font-size: 110%;
  margin-right: 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
section#sales .sales_inner .sales_box_area .sales_box .tag {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  padding-bottom: 12px;
  margin-bottom: 30px;
  border-bottom: 5px solid #0ff;
}
section#sales .sales_inner .sales_box_area .sales_box .tag:before {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #00ffff;
}
section#sales .sales_inner .sales_box_area .sales_box a.video {
  display: block;
  font-size: 0.9rem;
  text-decoration: none;
  border: 2px solid #fff;
  border-radius: 30px;
  max-width: 250px;
  margin: 0 auto 10px;
  padding: 5px 0;
  background: #0083c9;
  transition: 0.3s;
}
section#sales .sales_inner .sales_box_area .sales_box a.video:hover {
  background: #31b7ff;
}
.sales_box_past {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  /*border-bottom: 1px solid #ffffff;*/
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc((100% - 50px) / 3);
  flex: 0 1 calc((100% - 50px) / 3);
  position: relative;
  transition: 0.3s;
  margin-bottom: 10px;
  opacity: 0.6;
}
.sales_box_past:hover {
  opacity: 1;
}
.sales_box_past::before {
  /*content: url(./files/img/icon_right.svg);
  width: 30px;
  position: absolute;
  bottom: 10px;
  right: 7px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;*/
}
.sales_box_past .sales_box_other {
  text-decoration: none;
}
.sales_box_past img {
  width: 40%;
  border-radius: 4px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.sales_box_past:hover::before {
  bottom: 10px;
  right: 0;
}
.sales_box_past:hover img {
  opacity: 1;
}
.sales_box_past:hover .tit {
  color: #00ffff;
}
.sales_box_past p.tit {
  text-align: left;
  padding-bottom: 25px;
  font-size: 14px;
  width: 55%;
  line-height: 1.2;
}

.sales_box_past p.tit i {
  color: #00ffff;
  font-size: 110%;
  margin-right: 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.sales_box_past .tag {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  padding-bottom: 12px;
  margin-bottom: 30px;
  border-bottom: 5px solid #0ff;
}
.sales_box_past .tag:before {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #00ffff;
}
@media only screen and (max-width: 785px) {
  section#sales .sales_bg {
    padding: 6rem 25px 3rem;
    background-size: 125%;
    background-position: 30% 0, 74% 100%;
  }
  section#sales .sales_inner .sales_area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  section#sales .sales_inner .sales_area .illust {
    margin-bottom: 40px;
    width: 100%;
    max-width: 210px;
  }
  section#sales .sales_inner .sales_area .sales_tit {
    max-width: 550px;
    width: 100%;
  }
  section#sales .sales_inner .sales_area .sales_tit .desc {
    max-width: 550px;
  }
  section#sales .sales_inner .sales_box_area {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-around;
  }
  section#sales .sales_inner .pub_tieup {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  section#sales .sales_inner .sales_box_area .sales_box {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc((100% - 80px) / 3);
    flex: 0 1 calc((100% - 80px) / 3);
  }
}
@media only screen and (max-width: 599px) {
  section#sales .sales_inner .sales_box_area .sales_box {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc((100% - 25px) / 2);
    flex: 0 1 calc((100% - 25px) / 2);
    margin-bottom: 50px;
  }
  section#sales .sales_inner .sales_box_area .sales_box .tag {
    height: 50px;
  }
  .sales_box_past {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc((100% - 0px) / 1);
    flex: 0 1 calc((100% - 0px) / 1);
  }
  .sales_box_past img {
    width: 30%;
  }
  .sales_box_past p.tit {
    width: 66%;
  }
  .sales_box_past .tag {
    height: 50px;
  }
  section#sales .sales_inner .pub_tieup {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
}
/*--------CONTACT
----------------------------*/
section#contact {
  padding: 6rem 25px;
  background-image: url(./files/img/bg_contact.jpg);
  background-repeat: no-repeat;
  background-size: 112%;
  background-position: center center;
  text-align: center;
}
section#contact a {
  text-decoration: none;
  padding: 27px 0 15px;
  max-width: 550px;
  margin: 0 auto;
  display: block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  line-height: 2;
  font-weight: bold;
  border: 3px solid #fff;
  border-radius: 100px;
}
section#contact a:hover {
  background: #00ffffb0;
}
section#contact a img {
  max-width: 200px;
  display: inline-block;
}
@media only screen and (max-width: 785px) {
  section#contact {
    background-size: cover;
  }
}
/*--------RADIO
----------------------------*/
section#radio_btn {
  padding: 4rem 25px;
  text-align: center;
}
section#radio_btn a {
  text-decoration: none;
  padding: 30px 0;
  max-width: 550px;
  margin: 0 auto;
  display: block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  /* line-height: 2; */
  font-weight: bold;
  font-size: 1.3rem;
  border: 3px solid #fff;
  border-radius: 100px;
}
section#radio_btn a:hover {
  background: #00ffffb0;
}

/*--------OFFICE
----------------------------*/
section#office {
  background: -o-linear-gradient(
    30deg,
    rgb(0 10 84) 22.322877407872696%,
    rgb(0 33 153) 61.664551053880515%
  );
  background: linear-gradient(
    60deg,
    rgb(0 10 84) 22.322877407872696%,
    rgb(0 33 153) 61.664551053880515%
  );
}
section#office .office_bg {
  padding: 8rem 60px;
  background-image: url(./files/img/japan.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
section#office .office_inner {
  margin: 0 auto;
  max-width: 960px;
}
section#office .office_inner .office_tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
}
section#office .office_inner .office_tit .illust {
  width: 33%;
}
section#office .office_inner .office_tit .office_desc {
  width: 53%;
}
section#office .office_inner .office_tit .office_desc h2 {
  text-align: center;
  padding-right: 20px;
}
section#office .office_inner .office_tit .office_desc h2 p::before {
  content: "";
  display: inline-block;
  width: 12%;
  height: 60px;
  background: url(./files/img/num6.svg) no-repeat;
  background-size: contain;
  vertical-align: sub;
}

section#office .office_inner .office_tit .office_desc h2 img {
  height: 50px;
  width: 68%;
}
section#office .office_inner .office_tit .office_desc .sub {
  margin-bottom: 40px;
  font-weight: bold;
  text-align: center;
}

section#office .office_inner .office_box_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
section#office .office_inner .office_box_area .office_box {
  display: block;
  position: relative;
  width: 30%;
  margin: 1%;
  outline: 4px solid #fff;
  border-radius: 5px;
  padding: 20px 25px 57px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
section#office .office_inner .office_box_area .office_box img {
  width: 100%;
  display: block;
  margin-bottom: 15px;
}

section#office .office_inner .office_box_area .office_box p.place {
  background: #e70080;
  display: inline-block;
  color: #ffffff;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 10px;
  border-radius: 3px;
  line-height: 1;
  font-weight: bold;
}
section#office .office_inner .office_box_area .office_box p {
  margin-bottom: 3px;
  text-indent: -12px;
  padding-left: 22px;
}
section#office .office_inner .office_box_area .office_box p i {
  color: #00ffff;
  width: 12px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
}
section#office .office_inner .office_box_area .office_box a {
  display: block;
  position: absolute;
  bottom: 15px;
  right: 15px;
  color: #ffffff;
  text-decoration: none;
  padding: 3px 9px;
  border-radius: 20px;
  border: 2px solid #fff;
  font-size: 90%;
  letter-spacing: normal;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
section#office .office_inner .office_box_area .office_box a:hover {
  background-color: #fff;
  color: #001472;
}

@media only screen and (max-width: 785px) {
  section#office .office_bg {
    padding: 6rem 25px;
  }
  section#office .office_inner .office_tit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 20px;
  }
  section#office .office_inner .office_tit .illust {
    margin-bottom: 40px;
    width: 100%;
    max-width: 210px;
  }
  section#office .office_inner .office_box_area .office_box {
    width: 100%;
    max-width: 550px;
    margin: 0 0 30px;
  }
  section#office .office_inner .office_tit .office_desc {
    max-width: 550px;
    width: 100%;
  }
}

/*--------FOOTER
----------------------------*/
footer {
  padding: 4rem 30px;
  background: -o-linear-gradient(
    30deg,
    rgb(0 14 44) 22.322877407872696%,
    rgb(0 8 64) 61.664551053880515%
  );
  background: linear-gradient(
    60deg,
    rgb(0 14 44) 22.322877407872696%,
    rgb(0 8 64) 61.664551053880515%
  );
}
footer .footer_inner {
  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;
  margin: 0 auto;
  max-width: 960px;
}
footer .footer_inner .footer_left {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
footer .footer_inner .footer_right {
  width: 40%;
}
footer .footer_inner .footer_left .footer_menu_1 {
  width: 50%;
}
footer .footer_inner .footer_left .footer_menu_2 {
  width: 50%;
}
footer .footer_inner .footer_left ul {
  font-weight: bold;
}
footer .footer_inner .footer_left ul li {
  list-style: none;
  padding-top: 10px;
  line-height: 1;
  border-left: 1px solid #0ff;
  padding-left: 10px;
  letter-spacing: 1.2px;
}
footer .footer_inner .footer_left ul li:first-child {
  margin-bottom: 15px;
  color: cyan;
  border-left: none;
  padding-left: 0;
  font-size: 105%;
}
footer .footer_inner .footer_left ul li a {
  text-decoration: none;
  color: #74829d;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
footer .footer_inner .footer_left ul li a:hover {
  color: #fff;
}
footer .footer_inner .footer_right .footer_logo {
  text-align: center;
  max-width: 270px;
  margin: 0 auto;
}
footer .footer_inner .footer_right .footer_logo small {
  font-size: 73%;
  color: #74829d;
}
@media only screen and (max-width: 750px) {
  footer .footer_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  footer .footer_inner .footer_left {
    width: 100%;
    margin-bottom: 80px;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
  }
  footer .footer_inner .footer_right {
    width: 100%;
  }
  footer .footer_inner .footer_left .footer_menu_1 {
    width: auto;
  }
  footer .footer_inner .footer_left .footer_menu_2 {
    width: auto;
  }
}
@media only screen and (max-width: 570px) {
  footer .footer_inner .footer_left {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  footer .footer_inner .footer_left .footer_menu_1 {
    margin-right: 4%;
  }
  footer .footer_inner .footer_left .footer_menu_2 {
    margin-left: 4%;
  }
}
