@charset "UTF-8";
/* reset css　
---------------------------------------------------------------------------- */
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: bottom;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* common class
---------------------------------------------------------------------------- */
* {
  box-sizing: border-box;
}

/*
font-family: 'Roboto', sans-serif;
font-family: 'Noto Sans Myanmar', sans-serif;
*/
body {
  background: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  font-family: 'Noto Sans JP', sans-serif;
  min-height: 100vh;
  padding: 0;
  width: 100%;
}

@media screen and (max-width: 767px) {
  body {
    min-width: 0;
    width: 100vw;
  }
}
img {
  max-width: 100%;
}

ul li, ol li {
  list-style-type: none;
}

@media screen and (min-width: 768px) {
  .pc-none {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .sp-none {
    display: none !important;
  }
}
strong {
  font-weight: inherit;
}

.cont-inner-wrap {
  margin: 0 auto;
  width: 1000px;
}
@media screen and (max-width: 767px) {
  .cont-inner-wrap {
    margin: 0;
    padding: 0 calc(14 / 3.75 * 1vw);
    width: 100%;
  }
}

.anc-point {
  position: relative;
  top: -70px;
}
@media screen and (max-width: 767px) {
  .anc-point {
    top: calc(-60 / 3.75 * 1vw);
  }
}

/* common
-------------------------------------------------------------------------------------------------------------------------------------*/
main {
  padding-top: 70px;
}
@media screen and (max-width: 767px) {
  main {
    padding-top: calc(60 / 3.75 * 1vw);
  }
}

a {
  color: inherit;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .h-opa {
    transition: .2s ease-out;
  }

  .h-opa:hover {
    opacity: .7;
  }
}
/* display noneからのフェードイン 
animation: fadeIn 0.2s ease-in 0s forwards; */
@keyframes fadeInblock {
  0% {
    display: none;
  }
  1% {
    display: block;
  }
  100% {
    display: block;
  }
}
@keyframes fadeOutblock {
  0% {
    display: block;
  }
  99% {
    display: block;
  }
  100% {
    display: none;
  }
}
@keyframes fadeInflx {
  0% {
    display: none;
  }
  1% {
    display: flex;
  }
  100% {
    display: flex;
  }
}
@keyframes fadeOutflx {
  0% {
    display: flex;
  }
  99% {
    display: flex;
  }
  100% {
    display: none;
  }
}
.scroll-bar {
  background: url("../../common/img/scroll_bar.svg") left center/90px auto no-repeat;
  display: inline-block;
  padding: 0 0 0 100px;
  position: absolute;
}

.scroll-bar.top {
  filter: invert(100%);
  left: 40px;
  mix-blend-mode: exclusion;
  position: fixed;
  transition: opacity .4s ease-out;
  top: 870px;
  transform: rotate(-90deg);
  transform-origin: left top;
  z-index: 50;
}
.scroll-bar.top.hide {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .scroll-bar.top {
    display: none;
  }
}

.scroll-bar.bottom {
  filter: invert(100%);
  bottom: 40px;
  opacity: 0;
  mix-blend-mode: exclusion;
  position: fixed;
  pointer-events: none;
  right: 40px;
  transform: rotate(90deg);
  transform-origin: right bottom;
  transition: .4s ease;
  z-index: 9999;
}
.scroll-bar.bottom.show {
  opacity: 1;
  pointer-events: all;
}
.scroll-bar.bottom.show:hover {
  cursor: pointer;
  opacity: .7;
}
@media screen and (max-width: 767px) {
  .scroll-bar.bottom {
    display: none;
  }
}

/* header
-------------------------------------------------------------------------------------------------------------------------------------*/
header {
  background: rgba(255, 255, 255, 0.9);
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999000;
}
header .header-logo img.white {
  display: none;
}
@media screen and (max-width: 767px) {
  header {
    transition: background-color .2s ease-out;
  }
  header .header-logo img.white {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  header.h-open {
    background-color: #1085FF;
  }
  header.h-open .header-logo img.normal {
    display: none;
  }
  header.h-open .header-logo img.white {
    display: block;
  }
}
header .inner {
  align-items: center;
  display: flex;
  height: 70px;
  justify-content: space-between;
  padding: 0 0 0 70px;
  width: 100%;
}
@media screen and (max-width: 999px) {
  header .inner {
    padding: 0 0 0 10px;
  }
}
@media screen and (max-width: 767px) {
  header .inner {
    height: calc(60 / 3.75 * 1vw);
    padding: 0 calc(15 / 3.75 * 1vw);
  }
}
header .inner .header-logo img {
  width: 177px;
}
@media screen and (max-width: 999px) {
  header .inner .header-logo img {
    width: 157px;
  }
}
@media screen and (max-width: 767px) {
  header .inner .header-logo img {
    width: calc(90 / 3.75 * 1vw);
  }
}

@media screen and (min-width: 768px) {
  nav {
    align-items: center;
    column-gap: 30px;
    display: flex;
    height: 100%;
    font-size: 16px;
    position: relative;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  nav {
    column-gap: 15px;
  }
}
@media screen and (min-width: 768px) {
  nav .main-list {
    align-items: center;
    column-gap: 30px;
    display: flex;
    height: 100%;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  nav .main-list {
    column-gap: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  nav .main-list {
    column-gap: 5px;
  }
}
@media screen and (min-width: 768px) {
  nav .main-list > li {
    align-items: center;
    display: flex;
    justify-content: center;
    height: auto;
  }
  nav .main-list > li .sub-list-block {
    background: rgba(0, 102, 255, 0.9);
    border-bottom-left-radius: 50px;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-weight: 400;
    min-height: 340px;
    opacity: 0;
    padding: 0 0 80px 30px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 70px;
    transition: .3s ease-out;
    visibility: hidden;
    width: 1000px;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  nav .main-list > li .sub-list-block {
    width: calc(100vw - 26px);
  }
}
@media screen and (min-width: 768px) {
  nav .main-list > li .sub-list-block p {
    align-items: flex-end;
    display: flex;
    font-size: 36px;
    font-family: 'Roboto', sans-serif;
    height: 65px;
    margin-bottom: 35px;
    width: 100%;
  }
  nav .main-list > li .sub-list-block p.rec-mega-link {
    justify-content: space-between;
    width: 960px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 999px) {
  nav .main-list > li .sub-list-block p.rec-mega-link {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  nav .main-list > li .sub-list-block p.rec-mega-link .link-box {
    display: flex;
    width: 640px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 999px) {
  nav .main-list > li .sub-list-block p.rec-mega-link .link-box {
    justify-content: space-between;
    padding-right: 20px;
    width: 520px;
  }
}
@media screen and (min-width: 768px) {
  nav .main-list > li .sub-list-block p.rec-mega-link .link-box a {
    align-items: center;
    background: #fff url("../../common/img/header_megamenu_arr_on.svg") right 18px center/9px auto no-repeat;
    border: 1px solid #fff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 5px;
    color: #0066FF;
    font-size: 20px;
    display: flex;
    height: 40px;
    justify-content: center;
    margin-right: 80px;
    transition: .2s ease;
    width: 240px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 999px) {
  nav .main-list > li .sub-list-block p.rec-mega-link .link-box a {
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  nav .main-list > li .sub-list-block p.rec-mega-link .link-box a:hover {
    background: #1085FF url("../../common/img/header_megamenu_arr_off.svg") right 18px center/9px auto no-repeat;
    border: 1px solid #8DFF33;
    color: #8DFF33;
  }
  nav .main-list > li .sub-list-block .select-box {
    display: flex;
  }
  nav .main-list > li .sub-list-block .select-box ul {
    display: flex;
    font-family: 'Roboto', sans-serif;
    flex-direction: column;
    row-gap: 16px;
    margin: 0;
    width: 320px;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  nav .main-list > li .sub-list-block .select-box ul {
    margin-right: 30px;
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  nav .main-list > li .sub-list-block .select-box ul.wide {
    width: 640px;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  nav .main-list > li .sub-list-block .select-box ul.wide {
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  nav .main-list > li .sub-list-block .select-box ul li {
    line-height: 20px;
    text-indent: -.7em;
    padding-left: .7em;
  }
  nav .main-list > li .sub-list-block .select-box ul li::before {
    content: "> ";
  }
  nav .main-list > li .sub-list-block .select-box ul li.list-title {
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 2px;
  }
  nav .main-list > li .sub-list-block .select-box ul li.list-title::before {
    content: none;
  }
  nav .main-list > li .sub-list-block .select-box ul li a {
    transition: .2s ease-out;
  }
  nav .main-list > li .sub-list-block .select-box ul li a:hover {
    color: #8DFF33;
  }
  nav .main-list > li:hover {
    color: #1085FF;
    cursor: pointer;
    height: calc(100% + 1px);
  }
  nav .main-list > li:hover .sub-list-block {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
  }
  nav .main-list > li:hover .sub-list-block:hover {
    cursor: auto;
  }
  nav .flx-box {
    height: 100%;
  }
  nav .flx-box .header-btn-box {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
  }
  nav .flx-box .header-btn-box li a {
    align-items: center;
    color: #fff;
    display: flex;
    justify-content: center;
    height: 34px;
    width: 210px;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  nav .flx-box .header-btn-box li a {
    width: 150px;
  }
}
@media screen and (min-width: 768px) {
  nav .flx-box .header-btn-box li:first-child {
    background: #1085ff;
    transition: .2s ease-out;
  }
  nav .flx-box .header-btn-box li:hover:first-child {
    background: rgba(16, 133, 255, 0.7);
  }
  nav .flx-box .header-btn-box li:last-child {
    background: #949494;
    transition: .2s ease-out;
  }
  nav .flx-box .header-btn-box li:hover:last-child {
    background: rgba(148, 148, 148, 0.7);
  }
}
@media screen and (max-width: 767px) {
  nav {
    background: #1085FF;
    border-top: 1px solid #fff;
    color: #fff;
    display: flex;
    flex-direction: column;
    padding: calc(26 / 3.75 * 1vw) calc(48 / 3.75 * 1vw) 0;
    position: fixed;
    top: calc(60 / 3.75 * 1vw);
    right: -120%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    transition: all 0.6s ease-in-out;
    width: 100vw;
  }
  nav.h-open {
    right: 0;
  }
  nav .main-list > li {
    font-size: calc(16 / 3.75 * 1vw);
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    padding: calc(14 / 3.75 * 1vw) 0;
    position: relative;
  }
  nav .main-list > li::after {
    content: "+";
    position: absolute;
    font-size: calc(30 / 3.75 * 1vw);
    font-weight: 300;
    right: 0;
    top: calc(6 / 3.75 * 1vw);
  }
  nav .main-list > li.h-open::after {
    content: "−";
  }
  nav .main-list > li:last-child::after {
    content: ">";
  }
  nav .main-list > li span {
    display: inline-block;
    position: relative;
    width: 100%;
    z-index: 1;
  }
  nav .main-list > li span a {
    pointer-events: none;
  }
  nav .main-list > li .sub-list-block {
    display: none;
  }
  nav .main-list > li .sub-list-block p {
    display: none;
  }
  nav .main-list > li .sub-list-block .select-box li {
    border-bottom: 1px solid #FFFFFF;
    font-weight: 500;
    font-size: calc(14 / 3.75 * 1vw);
    padding: calc(16 / 3.75 * 1vw) 0 calc(14 / 3.75 * 1vw);
  }
  nav .flx-box {
    display: flex;
    flex-direction: column;
    row-gap: calc(42 / 3.75 * 1vw);
    padding: calc(51 / 3.75 * 1vw) 0 calc(60 / 3.75 * 1vw);
  }
  nav .flx-box .header-btn-box {
    display: flex;
    flex-direction: column;
    row-gap: calc(10 / 3.75 * 1vw);
  }
  nav .flx-box .header-btn-box li a {
    align-items: center;
    background: #0078F5;
    border: 1px solid #fff;
    border-radius: calc(23 / 3.75 * 1vw);
    display: flex;
    font-size: calc(16 / 3.75 * 1vw);
    font-weight: 500;
    height: calc(46 / 3.75 * 1vw);
    justify-content: center;
    width: 100%;
  }
}

/* hum setting over ride */
@media screen and (max-width: 767px) {
  .hamburger {
    padding: 0;
  }

  .hamburger-box {
    width: calc(30 / 3.75 * 1vw);
    height: calc(20 / 3.75 * 1vw);
  }

  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: calc(30 / 3.75 * 1vw);
    height: calc(2 / 3.75 * 1vw);
    background-color: #1085FF;
    border-radius: calc(2 / 3.75 * 1vw);
  }

  .hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::before, .hamburger.is-active .hamburger-inner::after {
    background-color: #fff;
  }

  .hamburger--squeeze.is-active .hamburger-inner {
    transform: rotate(30deg);
  }

  .hamburger--squeeze.is-active .hamburger-inner::after {
    transform: rotate(-60deg);
  }
}
/* footer
-------------------------------------------------------------------------------------------------------------------------------------*/
footer {
  background: #fff;
  border-top: 10px solid #1085FF;
  margin: auto 0 0;
  padding: 56px 0 77px;
  position: relative;
}
@media screen and (max-width: 999px) {
  footer {
    padding: 56px 10px 77px;
  }
  footer .cont-inner-wrap {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  footer {
    align-items: center;
    border-top: calc(6 / 3.75 * 1vw) solid #1085FF;
    display: flex;
    flex-direction: column;
    padding: calc(80 / 3.75 * 1vw) 0 calc(70 / 3.75 * 1vw);
  }
  footer .link-btn {
    text-align: center;
    margin-bottom: calc(55 / 3.75 * 1vw);
  }
}
footer .upper-wrap {
  align-items: center;
  border-bottom: 1px solid #666666;
  display: flex;
  padding-bottom: 3px;
}
@media screen and (max-width: 767px) {
  footer .upper-wrap {
    border-bottom: none;
    flex-direction: column-reverse;
  }
}
footer .upper-wrap .img-box img {
  width: 177px;
}
@media screen and (max-width: 767px) {
  footer .upper-wrap .img-box img {
    width: calc(153 / 3.75 * 1vw);
  }
}
footer .upper-wrap .sub-catch {
  color: #666666;
  font-size: 14px;
  margin-left: 18px;
}
@media screen and (max-width: 767px) {
  footer .upper-wrap .sub-catch {
    font-size: calc(14 / 3.75 * 1vw);
    line-height: calc(25 / 3.75 * 1vw);
    margin: 0 0 calc(15 / 3.75 * 1vw);
  }
}
footer .mid-wrap {
  display: flex;
  justify-content: space-between;
  padding: 63px 0 0;
}
footer .mid-wrap ul {
  display: flex;
  flex-direction: column;
  margin-left: -5px;
  row-gap: 18px;
}
footer .mid-wrap ul li {
  color: #666666;
  font-size: 16px;
  padding-left: 17px;
}
footer .mid-wrap ul li a {
  transition: .2s ease-out;
}
footer .mid-wrap ul li a:hover {
  color: #1085FF;
}
footer .mid-wrap ul li.head-line {
  font-weight: 700;
  padding: 0;
}
footer .mid-wrap ul li.head-line a::before {
  content: "┃";
}
footer .bottom-wrap {
  display: flex;
  justify-content: flex-end;
  padding-top: 57px;
}
@media screen and (max-width: 767px) {
  footer .bottom-wrap {
    align-items: center;
    row-gap: calc(20 / 3.75 * 1vw);
    flex-direction: column-reverse;
    justify-content: flex-start;
    padding-top: calc(40 / 3.75 * 1vw);
  }
}
footer .bottom-wrap small {
  color: #666666;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
}
@media screen and (max-width: 767px) {
  footer .bottom-wrap small {
    font-size: calc(12 / 3.75 * 1vw);
  }
}
footer .bottom-wrap ul {
  column-gap: 50px;
  color: #666666;
  display: flex;
  font-size: 14px;
  justify-content: space-between;
  margin-left: 50px;
  padding-right: 10px;
}
@media screen and (max-width: 767px) {
  footer .bottom-wrap ul {
    align-items: center;
    flex-direction: column;
    margin: 0;
    padding: 0;
    row-gap: calc(12 / 3.75 * 1vw);
  }
}
footer .bottom-wrap ul li a {
  transition: .2s ease-out;
}
@media screen and (max-width: 767px) {
  footer .bottom-wrap ul li a {
    background: url("../../common/img/link_arr01.png") right center/calc(11 / 3.75 * 1vw) auto no-repeat;
    padding-right: calc(15 / 3.75 * 1vw);
  }
}
footer .bottom-wrap ul li a:hover {
  color: #1085FF;
}

/* aside ------------------------------------------------------- */
aside {
  background: #1085FF;
  overflow: hidden;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  aside {
    border-top: calc(24 / 3.75 * 1vw) solid #1085FF;
    padding-bottom: calc(72 / 3.75 * 1vw);
  }
}
aside .aside-wrap {
  background: url("../../images/top/aside_img01.jpg") left top/auto 300px no-repeat, url("../../images/top/aside_img02.jpg") left bottom/auto 300px no-repeat;
  height: 600px;
  margin-left: calc(50% - 960px);
  width: 1920px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  aside .aside-wrap {
    margin-left: auto;
    margin-right: -460px;
  }
}
@media screen and (max-width: 767px) {
  aside .aside-wrap {
    background: url("../../images/top/aside_img01.jpg") center top/contain no-repeat, url("../../images/top/aside_img02.jpg") center top calc(128 / 3.75 * 1vw)/contain no-repeat;
    padding: calc(256 / 3.75 * 1vw) calc(14 / 3.75 * 1vw) 0;
    height: auto;
    margin: 0;
    width: auto;
  }
}
aside .aside-wrap .flx-box {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 600px;
  margin-left: 50%;
  padding: 52px 0 0;
  width: 500px;
}
@media screen and (max-width: 767px) {
  aside .aside-wrap .flx-box {
    height: auto;
    margin: 0;
    padding: calc(60 / 3.75 * 1vw) 0 0;
    width: auto;
  }
}
aside .aside-wrap .flx-box h2 {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 112px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  aside .aside-wrap .flx-box h2 {
    font-size: calc(79 / 3.75 * 1vw);
    margin-bottom: 0;
  }
}
aside .aside-wrap .flx-box p {
  color: #fff;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  aside .aside-wrap .flx-box p {
    font-size: calc(16 / 3.75 * 1vw);
    line-height: calc(32 / 3.75 * 1vw);
    letter-spacing: 0;
    margin-bottom: calc(24 / 3.75 * 1vw);
  }
}
aside .aside-wrap .flx-box p:nth-of-type(2) {
  margin: auto 0 24px;
}
@media screen and (max-width: 767px) {
  aside .aside-wrap .flx-box p:nth-of-type(2) {
    margin: calc(72 / 3.75 * 1vw) 0 calc(24 / 3.75 * 1vw);
  }
}
aside .aside-wrap .flx-box .link-btn {
  display: flex;
  column-gap: 20px;
}
@media screen and (max-width: 767px) {
  aside .aside-wrap .flx-box .link-btn {
    flex-direction: column;
    row-gap: calc(30 / 3.75 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  aside.sub {
    border: none;
    padding: 0;
  }
}
aside.sub .aside-wrap {
  background: none;
  height: auto;
  margin: 0 auto;
  width: 1000px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  aside.sub .aside-wrap {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  aside.sub .aside-wrap {
    padding: calc(30 / 3.75 * 1vw) calc(14 / 3.75 * 1vw) calc(51 / 3.75 * 1vw);
    width: auto;
  }
}
aside.sub .aside-wrap .flx-box {
  padding: 50px 0 0;
  height: auto;
  margin: 0;
  width: auto;
}
@media screen and (max-width: 767px) {
  aside.sub .aside-wrap .flx-box {
    padding: 0;
  }
}
aside.sub .aside-wrap .flx-box h2 {
  margin-bottom: 0;
}
aside.sub .aside-wrap .flx-box p {
  text-align: center;
}
@media screen and (max-width: 767px) {
  aside.sub .aside-wrap .flx-box p {
    text-align: left;
  }
}

/* contents common parts
-------------------------------------------------------------------------------------------------------------------------------------*/
.h2-title-wrap {
  background: #fff;
  padding: 80px 0 118px 110px;
}
@media screen and (max-width: 767px) {
  .h2-title-wrap {
    padding: 0 0 calc(100 / 3.75 * 1vw) calc(14 / 3.75 * 1vw);
  }
}

.h2-header {
  color: #1085FF;
  font-size: 32px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  padding-left: 60px;
}
@media screen and (max-width: 767px) {
  .h2-header {
    font-size: calc(16 / 3.75 * 1vw);
    padding-left: calc(16.71 / 3.75 * 1vw);
  }
}
.h2-header span {
  font-family: 'Roboto', sans-serif;
  font-size: 100px;
  margin: 10px 0 10px -5px;
}
@media screen and (max-width: 767px) {
  .h2-header span {
    font-size: calc(38 / 3.75 * 1vw);
    margin: calc(5 / 3.75 * 1vw) 0 calc(5 / 3.75 * 1vw) calc(-2.5 / 3.75 * 1vw);
  }
}
.h2-header::before {
  background: #1085FF;
  content: "";
  display: block;
  margin-left: -60px;
  height: 60px;
  width: 60px;
}
@media screen and (max-width: 767px) {
  .h2-header::before {
    margin-left: calc(-16.71 / 3.75 * 1vw);
    height: calc(16.71 / 3.75 * 1vw);
    width: calc(16.71 / 3.75 * 1vw);
  }
}

.h2-visu-title-wrap {
  align-items: center;
  display: flex;
  height: 600px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .h2-visu-title-wrap {
    height: calc(180 / 3.75 * 1vw);
  }
}
.h2-visu-title-wrap .h2-visu-header {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  font-size: 100px;
}
@media screen and (max-width: 767px) {
  .h2-visu-title-wrap .h2-visu-header {
    font-size: calc(38 / 3.75 * 1vw);
  }
}
.h2-visu-title-wrap .h2-visu-header span {
  font-size: 32px;
  font-family: 'Roboto', sans-serif;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .h2-visu-title-wrap .h2-visu-header span {
    font-size: calc(16 / 3.75 * 1vw);
    margin-top: calc(10 / 3.75 * 1vw);
  }
}
.h2-visu-title-wrap .h2-visu-header.bg-blk {
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, black 50%, rgba(84, 84, 84, 0) 100%);
  margin-top: 150px;
  padding: 10px 137px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .h2-visu-title-wrap .h2-visu-header.bg-blk {
    margin-top: calc(40 / 3.75 * 1vw);
    padding: calc(10 / 3.75 * 1vw) calc(60 / 3.75 * 1vw);
  }
}

.vert-line-box {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  height: 150px;
  width: 2px;
}
@media screen and (max-width: 767px) {
  .vert-line-box {
    height: calc(75 / 3.75 * 1vw);
    width: calc(2 / 3.75 * 1vw);
  }
}
.vert-line-box .vert-line {
  animation: moveline 3s ease-in-out infinite;
  display: block;
  background: linear-gradient(to top, #95FF47 0%, #288EFF 100%);
  height: 150px;
  position: absolute;
  margin: 0 auto;
  width: 2px;
}
@media screen and (max-width: 767px) {
  .vert-line-box .vert-line {
    animation: movelineSp 3s ease-in-out infinite;
    height: calc(75 / 3.75 * 1vw);
    width: calc(2 / 3.75 * 1vw);
  }
}
@keyframes moveline {
  0% {
    top: -160px;
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  80% {
    opacity: .2;
  }
  100% {
    top: 160px;
    opacity: 0;
  }
}
@keyframes movelineSp {
  0% {
    top: calc(-80 / 3.75 * 1vw);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  80% {
    opacity: .2;
  }
  100% {
    top: calc(80 / 3.75 * 1vw);
    opacity: 0;
  }
}
.link-btn a {
  align-items: center;
  border: 1px solid #fff;
  color: #fff;
  display: flex;
  font-size: 22px;
  font-weight: 500;
  height: 60px;
  justify-content: center;
  line-height: 1;
  transition: .2s ease-out;
  position: relative;
  width: 240px;
}
@media screen and (max-width: 767px) {
  .link-btn a {
    font-size: calc(22 / 3.75 * 1vw);
    height: calc(60 / 3.75 * 1vw);
    margin: 0 auto;
    width: calc(240 / 3.75 * 1vw);
  }
}
.link-btn a::after {
  content: ">";
  color: inherit;
  font-family: 'Noto Sans Myanmar', sans-serif;
  font-size: 20px;
  display: inline-block;
  position: absolute;
  right: 16px;
  top: calc(50% - 5px);
}
@media screen and (max-width: 767px) {
  .link-btn a::after {
    font-size: calc(20 / 3.75 * 1vw);
    right: calc(16 / 3.75 * 1vw);
    top: calc(50% - calc(5 / 3.75 * 1vw));
  }
}
.link-btn a:hover {
  border: 1px solid #8DFF33;
  color: #8DFF33;
}
.link-btn a.type01 {
  background: #1083FF;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
  height: 37px;
  margin: 0 auto;
  width: 182px;
}
@media screen and (max-width: 767px) {
  .link-btn a.type01 {
    box-shadow: 0px calc(10 / 3.75 * 1vw) calc(20 / 3.75 * 1vw) rgba(0, 0, 0, 0.25);
    font-size: calc(18 / 3.75 * 1vw);
    height: calc(37 / 3.75 * 1vw);
    width: calc(182 / 3.75 * 1vw);
  }
}
.link-btn a.type01:hover {
  color: #8DFF33;
}
.link-btn a.type01::after {
  top: calc(50% - 7px);
}
@media screen and (max-width: 767px) {
  .link-btn a.type01::after {
    top: calc(50% - calc(7 / 3.75 * 1vw));
    font-size: calc(14 / 3.75 * 1vw);
  }
}
.link-btn a.type03 {
  border: 1px solid #1085FF;
  color: #1085FF;
}
.link-btn a.type03:hover {
  background: #1085FF;
  color: #fff;
}

.c-split-bar {
  background: linear-gradient(to right, #95FF47 0%, #288EFF 100%);
  display: block;
  height: 20px;
  margin-bottom: 80px;
  position: relative;
  width: 69.1%;
}
@media screen and (max-width: 767px) {
  .c-split-bar {
    height: calc(24 / 3.75 * 1vw);
    margin-bottom: calc(35 / 3.75 * 1vw);
    width: calc(295 / 3.75 * 1vw);
  }
}
.c-split-bar::after {
  background: #fff;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}
.c-split-bar.show::after {
  transition: .5s ease;
  width: 0;
}

.c-split-bar-right {
  background: linear-gradient(to right, #95FF47 0%, #288EFF 100%);
  display: block;
  height: 20px;
  margin: 0 0 60px auto;
  position: relative;
  width: calc(50% + 500px);
}
@media screen and (max-width: 767px) {
  .c-split-bar-right {
    height: calc(24 / 3.75 * 1vw);
    margin-bottom: calc(35 / 3.75 * 1vw);
    width: calc(295 / 3.75 * 1vw);
  }
}
.c-split-bar-right::after {
  background: #fff;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.c-split-bar-right.show::after {
  transition: .5s ease;
  width: 0;
}

.c-split-bar-left {
  background: linear-gradient(to right, #95FF47 0%, #288EFF 100%);
  display: block;
  height: 20px;
  margin: 0 0 60px;
  position: relative;
  width: calc(50% + 500px);
}
@media screen and (max-width: 767px) {
  .c-split-bar-left {
    height: calc(24 / 3.75 * 1vw);
    margin-bottom: calc(35 / 3.75 * 1vw);
    width: calc(295 / 3.75 * 1vw);
  }
}
.c-split-bar-left::after {
  background: #fff;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}
.c-split-bar-left.show::after {
  transition: .5s ease;
  width: 0;
}

/* top
-------------------------------------------------------------------------------------------------------------------------------------*/
/* mv ------------------------------------------------------- */
.top .mv {
  background: url("../../images/top/top_mv_bg01.png") left bottom/26.92vw auto no-repeat, linear-gradient(to bottom, #CFD8E7 0%, rgba(206, 215, 230, 0.5) 50%, rgba(255, 255, 255, 0.02) 100%);
  position: relative;
  padding-bottom: 50px;
  /* slide setting */
}
@media screen and (max-width: 767px) {
  .top .mv {
    background: linear-gradient(to bottom, #CFD8E7 0%, #CFD8E7 65%, rgba(206, 215, 230, 0.5) 80%, rgba(255, 255, 255, 0.02) 100%);
    padding-bottom: calc(180 / 3.75 * 1vw);
  }
}
.top .mv #parti {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .top .mv #parti {
    display: none;
  }
}
.top .mv .deco-block .box-l {
  background: #1085FF;
  height: 6.77vw;
  position: absolute;
  mix-blend-mode: multiply;
  width: 6.77vw;
}
@media screen and (max-width: 767px) {
  .top .mv .deco-block .box-l {
    height: calc(41 / 3.75 * 1vw);
    width: calc(41 / 3.75 * 1vw);
  }
}
.top .mv .deco-block .box-l.box01 {
  left: calc(50% - 34.37vw);
  top: 10.67vw;
  animation: wobbling01 3s ease-in-out infinite alternate;
  transition: 1s ease-out .1s;
}
.top .mv .deco-block .box-l.box01:hover {
  margin-top: 5.2vw;
}
@media screen and (max-width: 767px) {
  .top .mv .deco-block .box-l.box01 {
    left: calc(28 / 3.75 * 1vw);
    top: calc(293 / 3.75 * 1vw);
  }
}
.top .mv .deco-block .box-l.box03 {
  animation: wobbling02 4s ease-in-out infinite alternate;
  right: calc(50% - 42.18vw);
  top: 38.28vw;
  transition: 1s ease-out  .1s;
}
.top .mv .deco-block .box-l.box03:hover {
  margin-top: 5.2vw;
}
@media screen and (max-width: 767px) {
  .top .mv .deco-block .box-l.box03 {
    right: calc(28 / 3.75 * 1vw);
    top: calc(335 / 3.75 * 1vw);
  }
}
.top .mv .deco-block .box-s {
  background: #1085FF;
  height: 2.08vw;
  position: absolute;
  mix-blend-mode: multiply;
  width: 2.08vw;
}
@media screen and (max-width: 767px) {
  .top .mv .deco-block .box-s {
    height: calc(13 / 3.75 * 1vw);
    width: calc(13 / 3.75 * 1vw);
  }
}
.top .mv .deco-block .box-s.box02 {
  animation: wobbling02 4s ease-in-out infinite alternate;
  left: calc(50% - 27.6vw);
  top: 17.96vw;
  transition: 1s ease-out .1s;
}
.top .mv .deco-block .box-s.box02:hover {
  margin-left: 2.6vw;
}
@media screen and (max-width: 767px) {
  .top .mv .deco-block .box-s.box02 {
    left: calc(70 / 3.75 * 1vw);
    top: calc(337 / 3.75 * 1vw);
  }
}
.top .mv .deco-block .box-s.box04 {
  animation: wobbling03 3s ease-in-out infinite alternate;
  right: calc(50% - 34.89vw);
  transform: rotate(45deg);
  transition: 1s ease-out .1s;
  top: 45.15vw;
}
.top .mv .deco-block .box-s.box04:hover {
  margin-right: 50px;
}
@media screen and (max-width: 767px) {
  .top .mv .deco-block .box-s.box04 {
    right: calc(72 / 3.75 * 1vw);
    top: calc(378 / 3.75 * 1vw);
    transform: rotate(45deg);
  }
}
@keyframes wobbling02 {
  0% {
    transform: translate(0, 0);
  }
  30% {
    transform: translate(-1px, 2px);
  }
  60% {
    transform: translate(-3px, 6px);
  }
  90% {
    transform: translate(1px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes wobbling01 {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-1px, 2px);
  }
  50% {
    transform: translate(2px, 4px);
  }
  75% {
    transform: translate(1px, 1px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes wobbling03 {
  0% {
    transform: translate(0, 0) rotate(45deg);
  }
  25% {
    transform: translate(-1px, 2px) rotate(45deg);
  }
  50% {
    transform: translate(2px, 4px) rotate(45deg);
  }
  75% {
    transform: translate(1px, 1px) rotate(45deg);
  }
  100% {
    transform: translate(0, 0) rotate(45deg);
  }
}
.top .mv .slide-wrap {
  height: 54.79%;
  margin: 0 0 auto auto;
  position: relative;
  width: 76.04%;
}
@media screen and (max-width: 767px) {
  .top .mv .slide-wrap {
    height: auto;
    width: 100%;
  }
}
.top .mv .slide-wrap::after {
  background: linear-gradient(to top, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  display: block;
  height: 14.24%;
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top .mv .slide-wrap::after {
    content: none;
  }
}
.top .mv .slide-wrap .slide {
  height: 54.79%;
  overflow: hidden;
  width: 76.04%;
}
@media screen and (max-width: 767px) {
  .top .mv .slide-wrap .slide {
    height: auto;
    width: 100%;
  }
}
.top .mv .slide-wrap .slide img {
  max-width: none;
  width: 100%;
}
.top .mv .slide-wrap .mv-title {
  display: flex;
  flex-direction: column;
  row-gap: 1.56vw;
  font-size: 3.125vw;
  font-weight: 900;
  position: absolute;
  left: -8.07vw;
  bottom: -3.64vw;
  opacity: 0;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .top .mv .slide-wrap .mv-title {
    font-size: calc(27 / 3.75 * 1vw);
    left: calc(14 / 3.75 * 1vw);
    bottom: calc(-114 / 3.75 * 1vw);
  }
}
.top .mv .vert-line-box {
  margin-top: 7.44vw;
}

/* block01 ------------------------------------------------------- */
.top .block01 {
  background: linear-gradient(to right, #95FF47 0%, #288EFF 100%);
  height: 1680px;
  margin-bottom: 30px;
  padding: 10px 0;
  position: relative;
  opacity: 0;
  overflow-y: hidden;
  transition: 1s ease-out;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .top .block01 {
    height: 168vw;
  }
}
@media screen and (max-width: 767px) {
  .top .block01 {
    height: auto;
    margin-bottom: calc(30 / 3.75 * 1vw);
    padding: calc(3.32 / 3.75 * 1vw) 0;
    opacity: 0;
  }
}
.top .block01.on {
  opacity: 1;
}
.top .block01 .cont-outer-cover {
  display: block;
  background: #1085FF;
  height: 100%;
  opacity: 0;
  transition: 1s ease-out;
}
@media screen and (max-width: 767px) {
  .top .block01 .cont-outer-cover {
    padding-bottom: calc(65 / 3.75 * 1vw);
  }
}
.top .block01 .cont-outer-cover.on {
  opacity: 1;
}
.top .block01 .cont-outer-wrap {
  display: block;
  background: url("../../images/top/block01_bg02.png") center center/cover no-repeat;
  height: 1680px;
  overflow: hidden;
  position: relative;
  padding-top: 110px;
  width: 100%;
  z-index: 1;
  opacity: 0;
  transition: 1s ease-out;
}
@media screen and (max-width: 767px) {
  .top .block01 .cont-outer-wrap {
    background: url("../../images/top/block01_bg02_sp.png") center top/contain repeat-y;
    height: 100%;
    padding-top: calc(70 / 3.75 * 1vw);
  }
}
.top .block01 .cont-outer-wrap.on {
  opacity: 1;
}
.top .block01 .cont-outer-wrap::after {
  background: url("../../images/top/block01_bg01.png") center center no-repeat;
  content: "";
  display: block;
  height: 1784px;
  position: absolute;
  top: 10px;
  left: calc(50% - 892px);
  animation: 360s linear infinite rotation;
  width: 1784px;
}
@media screen and (max-width: 767px) {
  .top .block01 .cont-outer-wrap::after {
    background: url("../../images/top/block01_bg01_sp.png") center top calc(230 / 3.75 * 1vw)/calc(300 / 3.75 * 1vw) auto no-repeat;
    height: 100%;
    animation: none;
    left: 0;
    width: 100%;
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .top .block01 .cont-inner-wrap {
    padding: 0 16px;
    width: 100%;
  }
}
.top .block01 .cont-inner-wrap .label-txt {
  color: #fff;
  font-size: 22px;
  text-align: center;
  opacity: 0;
  transition: 1s ease-out;
}
@media screen and (max-width: 767px) {
  .top .block01 .cont-inner-wrap .label-txt {
    font-size: calc(16 / 3.75 * 1vw);
  }
}
.top .block01 .cont-inner-wrap .label-txt.on {
  opacity: 1;
}
.top .block01 .cont-inner-wrap h2 {
  align-items: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  font-size: 100px;
  font-family: 'Roboto', sans-serif;
  margin-top: 20px;
  opacity: 0;
  transition: 1s ease-out .5s;
}
@media screen and (max-width: 767px) {
  .top .block01 .cont-inner-wrap h2 {
    font-size: calc(47 / 3.75 * 1vw);
    margin-bottom: calc(50 / 3.75 * 1vw);
  }
}
.top .block01 .cont-inner-wrap h2.on {
  opacity: 1;
}
.top .block01 .cont-inner-wrap .sub-lead {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: .018em;
  text-align: center;
  opacity: 0;
  transition: 1s ease-out;
}
@media screen and (max-width: 767px) {
  .top .block01 .cont-inner-wrap .sub-lead {
    font-size: calc(16 / 3.75 * 1vw);
    line-height: calc(32 / 3.75 * 1vw);
    margin-top: calc(50 / 3.75 * 1vw);
  }
}
.top .block01 .cont-inner-wrap .sub-lead.on {
  opacity: 1;
}
.top .block01 .cont-inner-wrap .flx-box {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  justify-content: space-between;
  margin-top: 70px;
  row-gap: 50px;
  z-index: 1;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .top .block01 .cont-inner-wrap .flx-box {
    margin-top: 7vw;
    row-gap: 5vw;
  }
}
@media screen and (max-width: 767px) {
  .top .block01 .cont-inner-wrap .flx-box {
    flex-direction: column;
    margin-top: calc(50 / 3.75 * 1vw);
    padding: 0 calc(25 / 3.75 * 1vw);
    row-gap: calc(30 / 3.75 * 1vw);
  }
}
.top .block01 .cont-inner-wrap .flx-box .cont-box {
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
  padding: 20px 20px 40px;
  width: 475px;
  opacity: 0;
  transition: .5s ease-out;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .top .block01 .cont-inner-wrap .flx-box .cont-box {
    border-radius: 1.6%;
    background: #fff;
    box-shadow: 0px 1vw 2vw rgba(0, 0, 0, 0.25);
    padding: 2vw 2vw 4vw;
    width: 46vw;
  }
}
@media screen and (max-width: 767px) {
  .top .block01 .cont-inner-wrap .flx-box .cont-box {
    box-shadow: 0px calc(10 / 3.75 * 1vw) calc(20 / 3.75 * 1vw) rgba(0, 0, 0, 0.25);
    padding: calc(14 / 3.75 * 1vw);
    border-radius: calc(16 / 3.75 * 1vw);
    width: 100%;
  }
  .top .block01 .cont-inner-wrap .flx-box .cont-box img {
    max-width: none;
    width: 100%;
  }
}
.top .block01 .cont-inner-wrap .flx-box .cont-box h3 {
  align-items: center;
  border-bottom: 1px solid #000;
  display: flex;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  font-family: 'Noto Sans Myanmar', sans-serif;
  line-height: 45px;
  height: 90px;
  letter-spacing: -.02em;
  margin: 30px 0 20px;
  padding-bottom: 10px;
  letter-spacing: -.02em;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .top .block01 .cont-inner-wrap .flx-box .cont-box h3 {
    font-size: 2.6vw;
    line-height: 4.5vw;
    height: 9vw;
    margin: 3vw 0 2vw;
    padding-bottom: 1vw;
  }
}
@media screen and (max-width: 767px) {
  .top .block01 .cont-inner-wrap .flx-box .cont-box h3 {
    font-size: calc(16 / 3.75 * 1vw);
    line-height: calc(28 / 3.75 * 1vw);
    height: calc(52 / 3.75 * 1vw);
    margin: calc(20 / 3.75 * 1vw) 0 calc(10 / 3.75 * 1vw);
    padding-bottom: calc(14 / 3.75 * 1vw);
  }
}
.top .block01 .cont-inner-wrap .flx-box .cont-box p {
  font-size: 20px;
  line-height: 35px;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top .block01 .cont-inner-wrap .flx-box .cont-box p {
    font-size: calc(16 / 3.75 * 1vw);
    line-height: calc(28 / 3.75 * 1vw);
    margin-bottom: calc(10 / 3.75 * 1vw);
  }
}
.top .block01 .cont-inner-wrap .flx-box .cont-box.box01 {
  transform: translate(-100px, 0);
}
@media screen and (max-width: 767px) {
  .top .block01 .cont-inner-wrap .flx-box .cont-box.box01 {
    transform: translate(calc(-100 / 3.75 * 1vw), 0);
  }
}
.top .block01 .cont-inner-wrap .flx-box .cont-box.box02 {
  transform: translate(0, -100px);
}
@media screen and (max-width: 767px) {
  .top .block01 .cont-inner-wrap .flx-box .cont-box.box02 {
    transform: translate(0, calc(-100 / 3.75 * 1vw));
  }
}
.top .block01 .cont-inner-wrap .flx-box .cont-box.box03 {
  transform: translate(100px, 0);
}
@media screen and (max-width: 767px) {
  .top .block01 .cont-inner-wrap .flx-box .cont-box.box03 {
    transform: translate(calc(100 / 3.75 * 1vw), 0);
  }
}
.top .block01 .cont-inner-wrap .flx-box .cont-box.box04 {
  transform: translate(0, 100px);
}
@media screen and (max-width: 767px) {
  .top .block01 .cont-inner-wrap .flx-box .cont-box.box04 {
    transform: translate(0, calc(100 / 3.75 * 1vw));
  }
}
.top .block01 .cont-inner-wrap .flx-box .cont-box.on {
  opacity: 1;
  transform: translate(0, 0);
}

.tracking-in-contract {
  -webkit-animation: tracking-in-contract 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) both;
  animation: tracking-in-contract 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) both;
  opacity: 0;
}

/* ----------------------------------------------
 * Generated by Animista on 2022-12-17 9:38:34
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation tracking-in-contract
 * ----------------------------------------
 */
@-webkit-keyframes tracking-in-contract {
  0% {
    letter-spacing: .1em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    letter-spacing: normal;
    opacity: 1;
  }
}
@keyframes tracking-in-contract {
  0% {
    letter-spacing: .1em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    letter-spacing: normal;
    opacity: 1;
  }
}
/* block02 ------------------------------------------------------- */
.top .block02 {
  padding-bottom: 190px;
  overflow: hidden;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .top .block02 .cont-inner-wrap {
    padding: 0 0 0 16px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top .block02 {
    display: flex;
    flex-direction: column;
    padding-bottom: calc(45 / 3.75 * 1vw);
    width: 100vw;
  }
}
.top .block02 .h2-header {
  margin-left: 110px;
  padding-left: 42px;
}
@media screen and (max-width: 767px) {
  .top .block02 .h2-header {
    margin-left: calc(14 / 3.75 * 1vw);
    padding-left: calc(16.71 / 3.75 * 1vw);
    z-index: 10;
  }
}
.top .block02 .h2-header span {
  margin: 6px 0 0 -5px;
}
@media screen and (max-width: 767px) {
  .top .block02 .h2-header span {
    margin: calc(-2 / 3.75 * 1vw) 0 calc(6 / 3.75 * 1vw) calc(-2 / 3.75 * 1vw);
  }
}
.top .block02 .h2-header::before {
  margin-left: -42px;
  height: 42px;
  width: 42px;
}
@media screen and (max-width: 767px) {
  .top .block02 .h2-header::before {
    margin-left: calc(-16.71 / 3.75 * 1vw);
    height: calc(16.71 / 3.75 * 1vw);
    width: calc(16.71 / 3.75 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .top .block02 .img-box-sp {
    display: flex;
    justify-content: flex-end;
    position: relative;
    margin: calc(-55 / 3.75 * 1vw) calc(14 / 3.75 * 1vw) 0 auto;
    padding-bottom: calc(40 / 3.75 * 1vw);
    opacity: 0;
    width: calc(246 / 3.75 * 1vw);
    transition: .6s ease-out;
    transform: translate(calc(100 / 3.75 * 1vw), 0);
  }
  .top .block02 .img-box-sp img {
    position: relative;
    width: calc(226 / 3.75 * 1vw);
    z-index: 1;
  }
  .top .block02 .img-box-sp.on {
    transform: translate(0, 0);
    opacity: 1;
  }
  .top .block02 .img-box-sp .glad-box-sp {
    background: linear-gradient(to right, #95FF47 0%, #288EFF 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    height: calc(167 / 3.75 * 1vw);
    width: calc(204 / 3.75 * 1vw);
    opacity: 1;
    transition: .6s ease-out;
    transform: translate(-50px, 0);
  }
}
.top .block02 .sub-lead {
  padding-top: 80px;
  font-size: 36px;
  font-weight: 500;
  line-height: 63px;
  margin-bottom: 85px;
  opacity: 0;
  transition: 1s ease-out;
  transform: translate(-50px, 0);
}
@media screen and (max-width: 767px) {
  .top .block02 .sub-lead {
    padding-top: calc(50 / 3.75 * 1vw);
    font-size: calc(22 / 3.75 * 1vw);
    line-height: calc(32 / 3.75 * 1vw);
    margin-bottom: calc(20 / 3.75 * 1vw);
    transform: translate(-50px, 0);
  }
}
.top .block02 .sub-lead.on {
  transform: translate(0, 0);
  opacity: 1;
}
.top .block02 .flx-box {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top .block02 .flx-box {
    flex-direction: column-reverse;
  }
}
.top .block02 .flx-box .txt-box {
  width: 500px;
  opacity: 0;
  transition: .6s ease-out;
  transform: translate(-100px, 0);
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .top .block02 .flx-box .txt-box {
    width: 50vw;
  }
}
@media screen and (max-width: 767px) {
  .top .block02 .flx-box .txt-box {
    transform: translate(0, calc(100 / 3.75 * 1vw));
    width: 100%;
  }
}
.top .block02 .flx-box .txt-box.on {
  transform: translate(0, 0);
  opacity: 1;
}
.top .block02 .flx-box .txt-box p {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .top .block02 .flx-box .txt-box p {
    font-size: calc(18 / 3.75 * 1vw);
    line-height: calc(32 / 3.75 * 1vw);
    margin-bottom: 1.5em;
  }
}
.top .block02 .flx-box .txt-box p.name-president {
  display: flex;
  flex-direction: column;
  margin-top: 98px;
}
@media screen and (max-width: 767px) {
  .top .block02 .flx-box .txt-box p.name-president {
    margin-top: calc(32 / 3.75 * 1vw);
  }
}
.top .block02 .flx-box .txt-box p.name-president span {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top .block02 .flx-box .txt-box p.name-president span {
    font-size: calc(16 / 3.75 * 1vw);
  }
}
.top .block02 .flx-box .txt-box p.name-president img {
  width: 199px;
}
@media screen and (max-width: 767px) {
  .top .block02 .flx-box .txt-box p.name-president img {
    width: calc(156 / 3.75 * 1vw);
  }
}
.top .block02 .flx-box .img-box {
  display: flex;
  justify-content: flex-end;
  position: relative;
  padding-bottom: 68px;
  width: 428px;
  opacity: 0;
  transition: .6s ease-out;
  transform: translate(100px, 0);
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .top .block02 .flx-box .img-box {
    width: 43vw;
  }
}
.top .block02 .flx-box .img-box.on {
  transform: translate(0, 0);
  opacity: 1;
}
.top .block02 .flx-box .img-box img {
  position: relative;
  width: 394px;
  z-index: 1;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .top .block02 .flx-box .img-box img {
    width: calc(43vw - 16px);
  }
}
.top .block02 .flx-box .img-box .glad-box {
  background: linear-gradient(to right, #95FF47 0%, #288EFF 100%);
  height: 292px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 355px;
  opacity: 0;
  transition: .6s ease-out;
  transform: translate(-50px, 0);
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .top .block02 .flx-box .img-box .glad-box {
    width: calc(43vw - 16px);
  }
}
.top .block02 .flx-box .img-box .glad-box.on {
  transform: translate(0, 0);
  opacity: 1;
}
