@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
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 {
  background: transparent;
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  letter-spacing: 0.03em;
  line-height: 1.3rem;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  background: #fff;
  -webkit-overflow-scrolling: touch;
  margin: 0px;
  padding: 0px;
  font-feature-settings: "palt";
}

section, aside, article, figcaption, figure, header, footer, main, menu, nav, summary, div, p, a, h1, h2, h3, h4, h5, h6, ul, li, dl, dt, dd {
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: inherit;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: black;
  text-decoration: none;
}

a:focus {
  outline: none;
}

a:hover {
  text-decoration: none;
}

img {
  border: none;
  vertical-align: top;
  height: auto;
  max-width: 100%;
}

input, select {
  vertical-align: middle;
}

input, button {
  margin: 0;
  border: 0;
}

button {
  padding: 0;
  background-color: transparent;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

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

caption,
th {
  text-align: left;
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

br {
  letter-spacing: normal;
}

hr {
  display: none;
}

button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

input, button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media print {
  html, body {
    _zoom: 70% !important;
  }
}
@media (max-width: 768px) {
  .disp-pc {
    display: none;
  }
}
@media (min-width: 769px) {
  .disp-sp {
    display: none;
  }
}
@keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    display: block;
    opacity: 1;
  }
  99% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.fadeInUp {
  opacity: 0;
  animation-name: fadeInUp;
  animation-fill-mode: forwards;
}

.fadeIn {
  opacity: 0;
  animation-name: fadeIn;
  animation-fill-mode: forwards;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes headerDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes headerUp {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes widthFull {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.widthFull {
  animation-name: widthFull;
  animation-fill-mode: forwards;
  transition-timing-function: cubic-bezier(0.26, 0, 0.07, 1);
}
@keyframes heightFull {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
.heightFull {
  animation-name: heightFull;
  animation-fill-mode: forwards;
  transition-timing-function: cubic-bezier(0.26, 0, 0.07, 1);
}
@keyframes widthZero {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@keyframes boxFadeIn {
  0% {
    position: relative;
    opacity: 0;
    z-index: 5;
  }
  100% {
    opacity: 1;
    position: relative;
    z-index: 10;
  }
}
@keyframes boxFadeOut {
  0% {
    position: absolute;
    opacity: 1;
    z-index: 10;
  }
  100% {
    opacity: 0;
    position: absolute;
    z-index: 5;
  }
}
@keyframes sliderDown {
  to {
    top: 0;
  }
}
@keyframes arrow {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  49.9% {
    transform: translateX(50%);
    opacity: 0;
  }
  50% {
    transform: translateX(-50%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes arrow_down {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  49.9% {
    transform: translateY(50%);
    opacity: 0;
  }
  50% {
    transform: translateY(-50%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes arrow_up {
  0% {
    transform: translateY(0) rotate(180deg);
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  49.9% {
    transform: translateY(-50%) rotate(180deg);
    opacity: 0;
  }
  50% {
    transform: translateY(50%) rotate(180deg);
    opacity: 0;
  }
  100% {
    transform: translateY(0) rotate(180deg);
    opacity: 1;
  }
}
@keyframes textPCloop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -2000px 0; /* 画像のマイナス幅 */
  }
}
@keyframes textPCloop1 {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 -1610px; /* 画像のマイナス幅 */
  }
}
@keyframes textPCloop2 {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 1610px; /* 画像のマイナス幅 */
  }
}
@keyframes textPCloop3 {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1048px 0; /* 画像のマイナス幅 */
  }
}
@keyframes textPCloop4 {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 1048px 0; /* 画像のマイナス幅 */
  }
}
@keyframes bggrdAnime1 {
  0% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 50% -50%;
  }
}
@keyframes bggrdAnime2 {
  0% {
    background-position: 50% -50%;
  }
  100% {
    background-position: 50% 100%;
  }
}
@keyframes bggrdAnime3 {
  0% {
    background-position: -100% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes logoMove {
  0% {
    left: 100%;
  }
  100% {
    left: 0;
  }
}
@keyframes stop1 {
  0% {
    stop-color: #0080ca;
  }
  100% {
    stop-color: #033793;
  }
}
@keyframes stop2 {
  0% {
    stop-color: #033793;
  }
  100% {
    stop-color: #0080ca;
  }
}
@keyframes ttl1 {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes bgMoveUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-110%);
  }
}
@keyframes bgMoveLeft {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(-65%);
  }
}
@keyframes bgWidth {
  0% {
    width: 370px;
  }
  100% {
    width: 190px;
  }
}
@keyframes mvImgFadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes skewanime {
  100% {
    left: -15%;
  }
}
@keyframes bounceFade {
  0% {
    opacity: 0;
  }
  0%, 100%, 20%, 53%, 80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    opacity: 1;
    transform: translate3d(0, -4px, 0);
  }
  100% {
    opacity: 1;
  }
}
.bounceFade {
  animation-name: bounceFade;
  animation-fill-mode: forwards;
}
@keyframes bounce {
  0%, 100%, 20%, 53%, 80% {
    opacity: 1;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
#g-nav {
  position: fixed;
  z-index: 9991;
  top: -120%;
  width: 100%;
  background-color: #fff;
  height: 100vh;
  /*ナビの高さ*/
  transition: all 0.3s;
}
#g-nav.panelactive {
  top: 0;
}
#g-nav #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  max-width: 825px;
  height: 100%;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  align-items: center;
}
#g-nav .site-logo {
  position: absolute;
  width: 118px;
  top: 23px;
  left: 15px;
}
#g-nav .nav-box {
  width: calc(100% - 50px);
  margin: 20px auto 0 auto;
}
#g-nav .nav-box .nav-link {
  margin-bottom: 25px;
  position: relative;
}
#g-nav .nav-box .nav-link a {
  display: block;
}
#g-nav .nav-box .nav-link:last-child {
  margin-bottom: 0;
}
#g-nav .nav-box .nav-link .services-menu-list, #g-nav .nav-box .nav-link .about-menu-list {
  display: none;
  padding-left: 20px;
  border-left: 1px solid #005bac;
  margin-top: 15px;
}
#g-nav .nav-box .nav-link .services-menu-list li a, #g-nav .nav-box .nav-link .about-menu-list li a {
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 32px;
  text-align: left;
  color: #2c2c2c;
}
#g-nav .menu-bottom {
  position: absolute;
  left: 25px;
  bottom: 20px;
}
#g-nav .menu-bottom a {
  font-size: 13px;
  line-height: 1;
  color: #2c2c2c;
  font-weight: 500;
}
#g-nav .menu-bottom a:last-child {
  margin-left: 30px;
}
#g-nav .menu-lang-nav {
  position: absolute;
  top: 75px;
  right: 20px;
  z-index: 9999;
}
#g-nav .menu-lang-nav .menu-lang-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #000;
  font-size: 13px;
  font-weight: 500;
  padding-bottom: 20px;
  transition: 0.85s;
}
#g-nav .menu-lang-nav .dli-chevron-down {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0 0 2px 8px;
  display: inline-block;
  vertical-align: middle;
  color: #000;
  line-height: 1;
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transition: 0.85s;
  transform: translateY(-25%) rotate(135deg);
}
#g-nav .menu-lang-nav .dli-chevron-down.is-active {
  transform: translateY(25%) rotate(-45deg);
}
#g-nav .menu-lang-nav .gnav-lang {
  display: none;
  position: absolute;
  width: 50px;
  top: 35px;
  left: -10px;
  background: #fff;
  padding: 10px 10px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(66, 70, 74, 0.1);
}
#g-nav .menu-lang-nav .gnav-lang .gnav-lang-list .gnav-lang-list-text {
  margin-bottom: 2px;
}
#g-nav .menu-lang-nav .gnav-lang .gnav-lang-list .gnav-lang-list-text:last-child {
  margin-bottom: 0;
}
#g-nav .menu-lang-nav .gnav-lang .gnav-lang-list .gnav-lang-list-text a {
  font-size: 13px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

@media screen and (max-width: 768px) {
  #g-nav {
    max-width: 100%;
  }
  #g-nav #g-nav-list {
    width: 100%;
    max-width: 100%;
    height: 100%;
    /*表示する高さ*/
    padding-bottom: 50px;
  }
  #g-nav .btn-close-menu {
    display: none;
  }
}
.cmn-header {
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 999;
  transition: 0.15s;
}
.cmn-header .site-logo {
  position: relative;
  margin: 0 0 0 50px;
  width: 128px;
}
.cmn-header .site-logo .logo-text {
  text-indent: -9999px;
  position: absolute;
}
.cmn-header .site-logo .c-blockimage {
  width: 128px;
  height: 26px;
  transition: 0.85s;
}
.cmn-header .header-row-r {
  margin: 0 40px 0 auto;
  font-weight: 500;
}
.cmn-header .header-row-r .nav-list {
  display: flex;
  align-items: center;
}
.cmn-header .header-row-r .nav-list li {
  margin-left: 35px;
  position: relative;
}
.cmn-header .header-row-r .nav-list li:first-child {
  margin-left: 0;
}
.cmn-header .header-row-r .nav-list li .nav-text {
  color: #000;
  font-size: 13px;
  padding-bottom: 20px;
  transition: 0.85s;
}
.cmn-header .header-row-r .nav-list li .nav-text.lang {
  font-family: "Plus Jakarta Sans", sans-serif;
}
.cmn-header .header-row-r .nav-list li .nav-text .dli-chevron-down {
  margin: 0 0 2px 8px;
  display: inline-block;
  vertical-align: middle;
  color: #000;
  line-height: 1;
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transition: 0.85s;
  transform: translateY(-25%) rotate(135deg);
}
.cmn-header .header-row-r .nav-list li .nav-text .dli-chevron-down.is-active {
  transform: translateY(25%) rotate(-45deg);
}
.cmn-header .header-row-r .gnav-service {
  display: none;
  opacity: 0;
  position: absolute;
  width: 290px;
  top: 35px;
  left: -10px;
  background: #fff;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 16px 16px 26px rgba(66, 70, 74, 0.25);
}
.cmn-header .header-row-r .gnav-service .gnav-service-list .gnav-service-list-text {
  margin-bottom: 10px;
}
.cmn-header .header-row-r .gnav-service .gnav-service-list .gnav-service-list-text:last-child {
  margin-bottom: 0;
}
.cmn-header .header-row-r .gnav-service .gnav-service-list .gnav-service-list-text a {
  font-size: 13px;
}
.cmn-header .header-row-r .gnav-service.is-active {
  display: block;
  opacity: 1;
  animation: fadeIn 0.2s linear forwards;
}
.cmn-header .header-row-r .gnav-service.is-inactive {
  display: none;
  opacity: 0;
  animation: fadeOut 0.2s linear forwards;
}
.cmn-header .header-row-r .gnav-about {
  display: none;
  opacity: 0;
  position: absolute;
  width: 100px;
  top: 35px;
  left: -10px;
  background: #fff;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 16px 16px 26px rgba(66, 70, 74, 0.25);
}
.cmn-header .header-row-r .gnav-about .gnav-service-list .gnav-service-list-text {
  margin-bottom: 10px;
}
.cmn-header .header-row-r .gnav-about .gnav-service-list .gnav-service-list-text:last-child {
  margin-bottom: 0;
}
.cmn-header .header-row-r .gnav-about .gnav-service-list .gnav-service-list-text a {
  font-size: 13px;
}
.cmn-header .header-row-r .gnav-about.is-active {
  display: block;
  opacity: 1;
  animation: fadeIn 0.2s linear forwards;
}
.cmn-header .header-row-r .gnav-about.is-inactive {
  display: none;
  opacity: 0;
  animation: fadeOut 0.2s linear forwards;
}
.cmn-header .header-row-r .gnav-lang {
  display: none;
  opacity: 0;
  position: absolute;
  width: 50px;
  top: 35px;
  left: -10px;
  background: #fff;
  padding: 10px 10px;
  border-radius: 5px;
  box-shadow: 16px 16px 26px rgba(66, 70, 74, 0.25);
}
.cmn-header .header-row-r .gnav-lang .gnav-lang-list .gnav-lang-list-text {
  margin-bottom: 10px;
}
.cmn-header .header-row-r .gnav-lang .gnav-lang-list .gnav-lang-list-text:last-child {
  margin-bottom: 0;
}
.cmn-header .header-row-r .gnav-lang .gnav-lang-list .gnav-lang-list-text a {
  font-size: 13px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.cmn-header .header-row-r .gnav-lang.is-active {
  display: block;
  opacity: 1;
  animation: fadeIn 0.2s linear forwards;
}
.cmn-header .header-row-r .gnav-lang.is-inactive {
  display: none;
  opacity: 0;
  animation: fadeOut 0.2s linear forwards;
}
.cmn-header.is-hover {
  background-color: #fff;
}
.cmn-header.is-hover .site-logo .c-blockimage:before {
  opacity: 0;
}
.cmn-header.is-hover .site-logo .c-blockimage img {
  opacity: 1;
}
.cmn-header.is-hover .header-row-r .nav-list li .nav-text {
  color: #000;
}
.cmn-header.is-hover .header-row-r .nav-list li .nav-text .dli-chevron-down {
  color: #000;
}
.cmn-header.is-active {
  transition: 0.3s;
  background-color: #fff;
  height: 80px;
}
.cmn-header.is-active .site-logo .c-blockimage:before {
  opacity: 0;
}
.cmn-header.is-active .site-logo .c-blockimage img {
  opacity: 1;
}
.cmn-header.is-active .header-row-r .nav-list li .nav-text {
  color: #000;
}
.cmn-header.is-active .header-row-r .nav-list li .nav-text .dli-chevron-down {
  color: #000;
}
.cmn-header .menu-btn {
  display: none;
}

@media screen and (max-width: 900px) {
  .cmn-header .header-row-r {
    margin: 0 20px 0 auto;
  }
  .cmn-header .header-row-r .nav-list li {
    margin-left: 20px;
  }
}
@media screen and (max-width: 800px) {
  .cmn-header .header-row-r {
    margin: 0 15px 0 auto;
  }
  .cmn-header .header-row-r .nav-list li {
    margin-left: 15px;
  }
}
@media screen and (max-width: 768px) {
  .cmn-header {
    height: 70px;
  }
  .cmn-header .site-logo {
    position: relative;
    margin: 0 0 0 15px;
    width: 118px;
  }
  .cmn-header .site-logo .c-blockimage {
    width: 118px;
    height: 24px;
  }
  .cmn-header .header-row-r {
    display: none;
  }
  .cmn-header.is-hover {
    background-color: #fff;
  }
  .cmn-header .menu-btn {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    height: 70px;
    width: 56px;
    justify-content: center;
    align-items: center;
    z-index: 90;
  }
  .cmn-header .menu-btn span {
    content: "";
    display: block;
    height: 2px;
    width: 26px;
    border-radius: 3px;
    background-color: #000;
    position: absolute;
  }
  .cmn-header .menu-btn span:before {
    content: "";
    display: block;
    height: 2px;
    width: 26px;
    border-radius: 3px;
    background-color: #000;
    position: absolute;
    bottom: 6px;
  }
  .cmn-header .menu-btn span:after {
    content: "";
    display: block;
    height: 2px;
    width: 26px;
    border-radius: 3px;
    background-color: #000;
    position: absolute;
    top: 6px;
  }
  .cmn-header .menu-btn.close {
    display: none;
  }
  .cmn-header .menu-btn.close span {
    background-color: rgba(255, 255, 255, 0) !important;
    top: 50%;
    transform: translateY(-50%);
  }
  .cmn-header .menu-btn.close span:before {
    width: 23.5px;
    background-color: #000 !important;
    left: 15px;
    bottom: 0;
    transform: rotate(45deg);
  }
  .cmn-header .menu-btn.close span:after {
    width: 23.5px;
    background-color: #000 !important;
    left: 15px;
    top: 0;
    transform: rotate(-45deg);
  }
  .cmn-header.is-active {
    height: 70px;
  }
  .cmn-header.is-active .menu-btn span {
    background-color: #000;
  }
  .cmn-header.is-active .menu-btn span:before, .cmn-header.is-active .menu-btn span:after {
    background-color: #000;
  }
}
.page-home .cmn-header .site-logo .c-blockimage:before {
  background-image: url(../images/common/main-logo_wht.svg);
  background-repeat: no-repeat;
  background-size: 128px 26px;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: 0.85s;
  width: 100%;
  opacity: 1;
}
.page-home .cmn-header .site-logo .c-blockimage img {
  opacity: 0;
}
.page-home .cmn-header .header-row-r .nav-list li .nav-text {
  color: #fff;
}
.page-home .cmn-header .header-row-r .nav-list li .nav-text .dli-chevron-down {
  color: #fff;
}
.page-home .cmn-header .header-row-r .gnav-service {
  display: none;
  opacity: 0;
  position: absolute;
  width: 290px;
  top: 35px;
  left: -10px;
  background: #fff;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 16px 16px 26px rgba(66, 70, 74, 0.25);
}
.page-home .cmn-header .header-row-r .gnav-service .gnav-service-list .gnav-service-list-text {
  margin-bottom: 10px;
}
.page-home .cmn-header .header-row-r .gnav-service .gnav-service-list .gnav-service-list-text:last-child {
  margin-bottom: 0;
}
.page-home .cmn-header .header-row-r .gnav-service .gnav-service-list .gnav-service-list-text a {
  font-size: 13px;
}
.page-home .cmn-header .header-row-r .gnav-service.is-active {
  display: block;
  opacity: 1;
  animation: fadeIn 0.2s linear forwards;
}
.page-home .cmn-header .header-row-r .gnav-service.is-inactive {
  display: none;
  opacity: 0;
  animation: fadeOut 0.2s linear forwards;
}
.page-home .cmn-header .header-row-r .gnav-lang {
  display: none;
  opacity: 0;
  position: absolute;
  width: 50px;
  top: 35px;
  left: -10px;
  background: #fff;
  padding: 10px 10px;
  border-radius: 5px;
  box-shadow: 16px 16px 26px rgba(66, 70, 74, 0.25);
}
.page-home .cmn-header .header-row-r .gnav-lang .gnav-lang-list .gnav-lang-list-text {
  margin-bottom: 10px;
}
.page-home .cmn-header .header-row-r .gnav-lang .gnav-lang-list .gnav-lang-list-text:last-child {
  margin-bottom: 0;
}
.page-home .cmn-header .header-row-r .gnav-lang .gnav-lang-list .gnav-lang-list-text a {
  font-size: 13px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.page-home .cmn-header .header-row-r .gnav-lang.is-active {
  display: block;
  opacity: 1;
  animation: fadeIn 0.2s linear forwards;
}
.page-home .cmn-header .header-row-r .gnav-lang.is-inactive {
  display: none;
  opacity: 0;
  animation: fadeOut 0.2s linear forwards;
}
.page-home .cmn-header.is-middle .site-logo .c-blockimage:before {
  opacity: 0;
}
.page-home .cmn-header.is-middle .site-logo .c-blockimage img {
  opacity: 1;
}
.page-home .cmn-header.is-middle .header-row-r .nav-list li .nav-text {
  color: #000;
}
.page-home .cmn-header.is-middle .header-row-r .nav-list li .nav-text .dli-chevron-down {
  color: #000;
}
.page-home .cmn-header.is-active {
  transition: 0.3s;
  background-color: #fff;
  height: 80px;
}
.page-home .cmn-header.is-active .site-logo .c-blockimage:before {
  opacity: 0;
}
.page-home .cmn-header.is-active .site-logo .c-blockimage img {
  opacity: 1;
}
.page-home .cmn-header.is-active .header-row-r .nav-list li .nav-text {
  color: #000;
}
.page-home .cmn-header.is-active .header-row-r .nav-list li .nav-text .dli-chevron-down {
  color: #000;
}
.page-home .cmn-header.is-hover {
  background-color: #fff;
}
.page-home .cmn-header.is-hover .site-logo .c-blockimage:before {
  opacity: 0;
}
.page-home .cmn-header.is-hover .site-logo .c-blockimage img {
  opacity: 1;
}
.page-home .cmn-header.is-hover .header-row-r .nav-list li .nav-text {
  color: #000;
}
.page-home .cmn-header.is-hover .header-row-r .nav-list li .nav-text .dli-chevron-down {
  color: #000;
}

@media screen and (max-width: 768px) {
  .page-home .cmn-header .site-logo {
    position: relative;
    margin: 0 0 0 15px;
    width: 118px;
  }
  .page-home .cmn-header .site-logo .c-blockimage:before {
    background-image: url(../images/common/main-logo_wht.svg);
    background-repeat: no-repeat;
    background-size: 118px 24px;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: 0.85s;
    width: 100%;
    opacity: 1;
  }
  .page-home .cmn-header .menu-btn span {
    background-color: #fff;
  }
  .page-home .cmn-header .menu-btn span:before, .page-home .cmn-header .menu-btn span:after {
    background-color: #fff;
  }
  .page-home .cmn-header.is-active span {
    background-color: #000;
  }
  .page-home .cmn-header.is-active span:before, .page-home .cmn-header.is-active span:after {
    background-color: #000;
  }
}
.contact-contents {
  background-color: #edf1f4;
  padding-top: 120px;
}
.contact-contents .box-in {
  background-color: #fff;
  width: calc(100% - 20px);
  max-width: 1266px;
  margin: 0 auto -100px auto;
  border-radius: 20px;
  position: relative;
  z-index: 10;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-contents .box-in .ttl .en-ttl-text {
  font-size: 64px;
}
.contact-contents .box-in .ttl .ttl-text {
  margin-top: 10px;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #2c2c2c;
}
.contact-contents .box-in .contact-btn-list {
  width: 400px;
}
.contact-contents .box-in .contact-btn-list .contact-btn {
  margin-bottom: 12px;
}
.contact-contents .box-in .contact-btn-list .contact-btn:last-child {
  margin-bottom: 0;
}
.contact-contents .box-in .contact-btn-list .contact-btn a {
  display: flex;
  align-items: center;
  height: 80px;
  border-radius: 40px;
  padding: 0 40px;
  background-image: linear-gradient(to right, #033793 0%, #033793 35%, #0080ca 50%, #0080ca 60%, #033793 80%, #033793 100%);
  background-size: 200% 100%;
  background-position: 100% 0%;
  transition: all 0.3s ease-out;
  font-weight: 500;
}
.contact-contents .box-in .contact-btn-list .contact-btn a .btn-ico {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
}
.contact-contents .box-in .contact-btn-list .contact-btn a .btn-text {
  margin-left: 12px;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  font-weight: 500;
}
.contact-contents .box-in .contact-btn-list .contact-btn a .btn-arrow {
  margin: 8px 0 0 auto;
  position: relative;
  overflow: hidden;
}
.contact-contents .box-in .contact-btn-list .contact-btn a:hover {
  background-position: 30% 110%;
}
.contact-contents .box-in .contact-btn-list .contact-btn a:hover .btn-arrow {
  animation: arrow 0.5s;
}
@media (max-width: 768px) {
  .contact-contents {
    padding-top: 60px;
  }
  .contact-contents .box-in {
    width: calc(100% - 30px);
    margin: 0 auto -55px auto;
    border-radius: 10px;
    padding: 50px 30px;
    display: block;
  }
  .contact-contents .box-in .ttl {
    text-align: center;
  }
  .contact-contents .box-in .ttl svg {
    width: 238px;
    height: 35.5px;
  }
  .contact-contents .box-in .ttl .en-ttl-text {
    font-size: 46px;
  }
  .contact-contents .box-in .ttl .ttl-text {
    margin-top: 5px;
    font-size: 13px;
  }
  .contact-contents .box-in .contact-btn-list {
    width: 100%;
    max-width: 300px;
    margin: 25px auto 0 auto;
  }
  .contact-contents .box-in .contact-btn-list .contact-btn {
    margin-bottom: 12px;
  }
  .contact-contents .box-in .contact-btn-list .contact-btn:last-child {
    margin-bottom: 0;
  }
  .contact-contents .box-in .contact-btn-list .contact-btn a {
    display: flex;
    align-items: center;
    height: 70px;
    border-radius: 35px;
    padding: 0 20px;
    background-size: 200% 100%;
    background-position: 100% 0%;
    transition: all 0.3s ease-out;
  }
  .contact-contents .box-in .contact-btn-list .contact-btn a .btn-ico {
    width: 42px;
    height: 42px;
  }
  .contact-contents .box-in .contact-btn-list .contact-btn a .btn-text {
    margin-left: 8px;
    font-size: 14px;
    line-height: 1;
    color: #fff;
    position: relative;
    display: inline-flex;
    overflow: hidden;
  }
  .contact-contents .box-in .contact-btn-list .contact-btn a .btn-arrow {
    width: 10.35px;
    padding-top: 3px;
    margin: 8px 0 0 auto;
    position: relative;
    overflow: hidden;
  }
  .contact-contents .box-in .contact-btn-list .contact-btn a:hover {
    background-position: 30% 110%;
  }
  .contact-contents .box-in .contact-btn-list .contact-btn a:hover .btn-text span {
    transform: translateY(-120%);
  }
  .contact-contents .box-in .contact-btn-list .contact-btn a:hover .btn-text:before {
    transform: translateY(0);
  }
  .contact-contents .box-in .contact-btn-list .contact-btn a:hover .btn-arrow {
    animation: arrow 0.5s;
  }
}

.cmn-footer {
  background: #232729;
  border-radius: 20px 20px 0px 0px;
}
.cmn-footer .footer-container-top {
  padding: 180px 0 80px 0;
  width: calc(100% - 10px);
  max-width: 1280px;
  margin: 0 auto;
}
.cmn-footer .footer-container-top .box-in {
  display: flex;
  justify-content: space-between;
}
.cmn-footer .footer-container-top .box-in .box-l {
  width: 280px;
}
.cmn-footer .footer-container-top .box-in .box-l .addr-text {
  margin-top: 20px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 26px;
  color: #fff;
}
.cmn-footer .footer-container-top .box-in .box-l .iso_bnr {
  margin: 15px 0 0;
}
.cmn-footer .footer-container-top .box-in .box-l .iso_bnr img {
  max-width: 256px;
}
.cmn-footer .footer-container-top .box-in .box-l .iso-text {
  margin-top: 10px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #fff;
}
.cmn-footer .footer-container-top .box-in .box-l .iso-text02 {
  margin-top: 15px;
  font-weight: 400;
  font-size: 10px;
  line-height: 1;
  color: #fff;
}
.cmn-footer .footer-container-top .box-in .box-l ul {
  display: flex;
  justify-content: flex-start;
  margin: 10px 0 0;
}
.cmn-footer .footer-container-top .box-in .box-l li {
  font-weight: 500;
  font-size: 11px;
  line-height: 1;
  color: #fff;
}
.cmn-footer .footer-container-top .box-in .box-l li a {
  text-decoration: underline;
  color: #fff;
}
.cmn-footer .footer-container-top .box-in .box-l li img {
  width: 8px;
  margin: 2px 15px 0 6px;
}
.cmn-footer .footer-container-top .box-in .box-r {
  max-width: 620px;
  margin-left: 20px;
}
.cmn-footer .footer-container-top .box-in .box-r .footer-nav1 {
  display: flex;
  letter-spacing: 0.02em;
}
.cmn-footer .footer-container-top .box-in .box-r .footer-nav1 .nav-list {
  margin-left: 40px;
}
.cmn-footer .footer-container-top .box-in .box-r .footer-nav1 .nav-list:first-child {
  margin-left: 0;
}
.cmn-footer .footer-container-top .box-in .box-r .footer-nav1 .nav-list .nav-text a {
  font-size: 14px;
  line-height: 28px;
  color: #fff;
  font-weight: 500;
}
.cmn-footer .footer-container-bottom {
  width: calc(100% - 10px);
  max-width: 1280px;
  margin: 0 auto;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
}
.cmn-footer .footer-container-bottom .box-in {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cmn-footer .footer-container-bottom .box-in .footer-nav2 {
  display: flex;
}
.cmn-footer .footer-container-bottom .box-in .footer-nav2 .nav-text {
  font-size: 12px;
  line-height: 1;
  color: #fff;
  margin-left: 40px;
  font-weight: 500;
}
.cmn-footer .footer-container-bottom .box-in .footer-nav2 .nav-text:first-child {
  margin-left: 0;
}
.cmn-footer .footer-container-bottom .box-in .copyright {
  padding-top: 5px;
  margin-right: 15px;
}
@media (max-width: 768px) {
  .cmn-footer {
    border-radius: 14px 14px 0px 0px;
  }
  .cmn-footer .footer-container-top {
    padding: 110px 0 25px 0;
    width: calc(100% - 60px);
  }
  .cmn-footer .footer-container-top .box-in {
    display: block;
  }
  .cmn-footer .footer-container-top .box-in .box-l {
    width: 100%;
  }
  .cmn-footer .footer-container-top .box-in .box-l .addr-text {
    margin-top: 20px;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.02em;
    line-height: 26px;
    color: #fff;
  }
  .cmn-footer .footer-container-top .box-in .box-r {
    width: 100%;
    margin-left: 0;
  }
  .cmn-footer .footer-container-top .box-in .box-r .footer-nav1 {
    display: block;
  }
  .cmn-footer .footer-container-top .box-in .box-r .footer-nav1 .nav-list {
    margin: 30px 0 0 0;
  }
  .cmn-footer .footer-container-top .box-in .box-r .footer-nav1 .nav-list .nav-text a {
    font-size: 15px;
    line-height: 32px;
  }
  .cmn-footer .footer-container-bottom {
    width: calc(100% - 60px);
    padding: 25px 0 20px 0;
    display: flex;
  }
  .cmn-footer .footer-container-bottom .box-in {
    width: 100%;
    display: block;
  }
  .cmn-footer .footer-container-bottom .box-in .addr-box {
    margin-top: 55px;
  }
  .cmn-footer .footer-container-bottom .box-in .addr-box .footer-logo {
    width: 225px;
  }
  .cmn-footer .footer-container-bottom .box-in .addr-box .addr-text {
    margin-top: 15px;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.02em;
    line-height: 24px;
    color: #fff;
  }
  .cmn-footer .footer-container-bottom .box-in .addr-box .iso_bnr {
    margin: 15px 0 0;
  }
  .cmn-footer .footer-container-bottom .box-in .addr-box .iso_bnr img {
    max-width: 65.6vw;
  }
  .cmn-footer .footer-container-bottom .box-in .addr-box .iso-text {
    margin-top: 10px;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.02em;
    line-height: 1;
    color: #fff;
  }
  .cmn-footer .footer-container-bottom .box-in .addr-box .iso-text02 {
    margin-top: 15px;
    font-weight: 400;
    font-size: 10px;
    line-height: 1;
    color: #fff;
  }
  .cmn-footer .footer-container-bottom .box-in .addr-box ul {
    display: flex;
    justify-content: flex-start;
    margin: 10px 0 0;
  }
  .cmn-footer .footer-container-bottom .box-in .addr-box li {
    font-weight: 500;
    font-size: 11px;
    line-height: 1;
    color: #fff;
  }
  .cmn-footer .footer-container-bottom .box-in .addr-box li a {
    text-decoration: underline;
    color: #fff;
  }
  .cmn-footer .footer-container-bottom .box-in .addr-box li img {
    width: 8px;
    margin: 2px 15px 0 6px;
  }
  .cmn-footer .footer-container-bottom .box-in .footer-nav2 {
    display: block;
  }
  .cmn-footer .footer-container-bottom .box-in .footer-nav2 .nav-text {
    font-size: 12px;
    line-height: 1;
    color: #fff;
    margin-left: 40px;
  }
  .cmn-footer .footer-container-bottom .box-in .footer-nav2 .nav-text:first-child {
    margin-left: 0;
  }
  .cmn-footer .footer-container-bottom .box-in .copyright {
    text-align: center;
    margin: 45px 0 0 0;
  }
}

#page-top {
  position: fixed;
  bottom: 95px;
  right: 43px;
  z-index: 99;
  display: none;
}
#page-top a {
  display: block;
  text-align: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(#0080ca 0%, #033793 100%);
}
#page-top a .btn-text {
  margin-top: 24px;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.06em;
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  padding-left: 2px;
}
#page-top a .btn-text:before {
  left: 2px;
}
#page-top a .btn-arrow {
  position: absolute;
  overflow: hidden;
  top: 10.6px;
  left: 21px;
  width: 7.68px;
  height: 8px;
  transform: rotate(-90deg);
}
@media screen and (max-width: 768px) {
  #page-top {
    bottom: 20px;
    right: 14px;
  }
  #page-top a {
    width: 48px;
    height: 48px;
  }
  #page-top a .btn-text {
    margin-top: 23px;
    font-size: 12px;
    line-height: 1;
    color: #fff;
  }
  #page-top a .btn-arrow {
    position: absolute;
    overflow: hidden;
    top: 9.6px;
    left: 20.4px;
    width: 7.5px;
    height: 8px;
    transform: rotate(-90deg);
  }
}

.disp-sp {
  display: none;
}

body.is-scroll-fixed {
  position: fixed;
  width: 100%;
}

.opacity-link {
  transition: opacity 0.3s ease;
}
.opacity-link:hover {
  opacity: 0.7;
}

.link-disabled {
  pointer-events: none;
  cursor: default;
  text-decoration: none !important;
}

@media screen and (max-width: 768px) {
  .disp-pc {
    display: none;
  }
  .disp-sp {
    display: block;
  }
  .opacity-link:hover {
    opacity: 1;
  }
}
[data-animate=fadeInUp], [data-animate=fadeIn], [data-animate=bounceFade] {
  opacity: 0;
}

.container-in {
  width: calc(100% - 20px);
  max-width: 1026px;
  margin-left: auto;
  margin-right: auto;
}

a .btn-text {
  position: relative;
  display: inline-flex;
  overflow: hidden;
}
a .btn-text:before {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(120%);
  transition: transform 0.6s cubic-bezier(0.25, 0.26, 0.17, 1);
  content: attr(data-text);
}
a .btn-text span {
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.25, 0.26, 0.17, 1);
}
a:hover {
  background-position: 30% 110%;
}
a:hover .btn-text span {
  transform: translateY(-120%);
}
a:hover .btn-text:before {
  transform: translateY(0);
}

img {
  image-rendering: -webkit-optimize-contrast;
}

.breadcrumb {
  width: 43%;
}
.breadcrumb ul {
  display: flex;
}
.breadcrumb ul li {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: #005bac;
  margin-left: 20px;
  position: relative;
  word-wrap: break-word;
}
.breadcrumb ul li:before {
  position: absolute;
  content: "";
  width: 4px;
  height: 1px;
  background-color: #8b9298;
  top: 7px;
  left: -12px;
}
.breadcrumb ul li:first-child {
  margin-left: 0;
}
.breadcrumb ul li:first-child:before {
  display: none;
}
.breadcrumb ul li a {
  text-decoration: underline;
  color: #8b9298;
}

svg .stop1 {
  animation: stop1 1.5s ease-in-out infinite alternate;
}
svg .stop2 {
  animation: stop2 1.5s ease-in-out infinite alternate;
}
svg #sttl-services {
  fill: url(#linear-gradient-services);
}
svg #sttl-about {
  fill: url(#linear-gradient-about);
}
svg .sttl-about-sp {
  fill: url(#linear-gradient-about-sp);
}
svg #sttl-contact {
  fill: url(#linear-gradient-contact);
}
svg #sttl-contents {
  fill: url(#linear-gradient-contents);
}
svg #sttl-solution {
  fill: url(#linear-gradient-solution);
}
svg #sttl-vision {
  fill: url(#linear-gradient-vision);
}
svg #sttl-about-dmk {
  fill: url(#linear-gradient-about-dmk);
}
svg #sttl-news {
  fill: url(#linear-gradient-news);
}

.btn-more {
  width: 150px;
  height: 40px;
}
.btn-more a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-radius: 20px;
  position: relative;
  background-image: linear-gradient(to right, #033793 0%, #033793 35%, #0080ca 50%, #0080ca 60%, #033793 80%, #033793 100%);
  background-size: 200% 100%;
  background-position: 100% 0%;
  transition: all 0.3s ease-out;
}
.btn-more a .btn-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: bold;
  font-size: 12px;
  line-height: 1;
  color: #fff;
}
.btn-more a .btn-arrow {
  position: absolute;
  overflow: hidden;
  top: 16.3px;
  right: 12.5px;
  width: 6.9px;
}
.btn-more a:hover {
  background-position: 30% 110%;
}
.btn-more a:hover .btn-arrow {
  animation: arrow 0.5s;
}
.btn-more.jp-text a .btn-text {
  font-weight: 500;
  font-size: 16px;
}
.btn-more.blank .btn-text {
  padding-bottom: 1px;
}
.btn-more.blank .btn-arrow {
  position: absolute;
  overflow: hidden;
  top: 16.3px;
  right: 12.5px;
  width: 9.5px;
}
.btn-more.down a .btn-arrow {
  position: absolute;
  overflow: hidden;
  top: 16.9px;
  right: 15.2px;
  width: 6.88px;
  height: 7.5px;
}
.btn-more.down a:hover .btn-arrow {
  animation: arrow_down 0.5s;
}
.btn-more.up a .btn-arrow {
  transform: rotate(180deg);
  position: absolute;
  overflow: hidden;
  top: 15.3px;
  right: 15.2px;
  width: 6.88px;
  height: 7.5px;
}
.btn-more.up a:hover .btn-arrow {
  animation: arrow_up 0.5s;
}
.btn-more.size-l {
  width: 320px;
  height: 80px;
}
.btn-more.size-l a {
  border-radius: 40px;
  transition: all 0.3s ease-out;
}
.btn-more.size-l a .btn-text {
  font-size: 14px;
  letter-spacing: 0.08em;
}
.btn-more.size-l a .btn-arrow {
  width: 12.11px;
  top: 33px;
  right: 30px;
}

@media (max-width: 768px) {
  .btn-more {
    width: 170px;
    height: 50px;
  }
  .btn-more a {
    border-radius: 25px;
  }
  .btn-more a .btn-arrow {
    top: 20.3px;
    right: 15.5px;
  }
  .btn-more.blank a .btn-arrow {
    top: 20px;
    right: 15.5px;
    width: 13.01px;
  }
  .btn-more.blank a .btn-arrow img {
    width: 100%;
  }
  .btn-more.size-l {
    width: 80vw;
    height: 16.5vw;
  }
  .btn-more.size-l a {
    border-radius: 60px;
  }
  .btn-more.size-l a .btn-arrow {
    width: 7.9px;
    top: 6.7vw;
    right: 30px;
  }
}
.contents-type1 {
  max-width: calc(100% - 100px);
  background-color: #fff;
  padding: 0 0 100px 0;
  border-radius: 20px 0px 0px 20px;
  overflow: hidden;
  margin: 0 0 0 auto;
}
.contents-type1 .box-in .title-contents {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
  width: calc(100% - 120px);
  margin: 0 0 0 auto;
  position: relative;
  transition: all 0.3s;
}
.contents-type1 .box-in .title-contents .box-l {
  width: 43%;
}
.contents-type1 .box-in .title-contents .box-l .breadcrumb {
  position: absolute;
  left: 0;
  bottom: 0;
}
.contents-type1 .box-in .title-contents .box-l .ttl .ttl-text {
  margin-top: 10px;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #2c2c2c;
}
.contents-type1 .box-in .title-contents .box-l .ttl .ttl-text.type1 {
  margin-top: 15px;
  font-size: 44px;
  letter-spacing: 0.06em;
  line-height: 50px;
  text-align: left;
  color: #005cac;
}
.contents-type1 .box-in .title-contents .box-l .ttl .ttl-text span {
  font-size: 15px;
  font-weight: 600;
  color: #005cac;
  display: block;
  margin: 10px 0 0;
  letter-spacing: 0.06em;
}
.contents-type1 .box-in .title-contents .box-r {
  width: 53.75%;
}
.contents-type1 .box-in .title-contents .box-r .ttl-img-bg {
  position: relative;
}
.contents-type1 .box-in .title-contents .box-r .ttl-img-bg .mv-parts1, .contents-type1 .box-in .title-contents .box-r .ttl-img-bg .mv-parts2, .contents-type1 .box-in .title-contents .box-r .ttl-img-bg .mv-parts3, .contents-type1 .box-in .title-contents .box-r .ttl-img-bg .mv-parts4, .contents-type1 .box-in .title-contents .box-r .ttl-img-bg .mv-parts5, .contents-type1 .box-in .title-contents .box-r .ttl-img-bg .mv-parts6, .contents-type1 .box-in .title-contents .box-r .ttl-img-bg .mv-parts7, .contents-type1 .box-in .title-contents .box-r .ttl-img-bg .mv-parts8, .contents-type1 .box-in .title-contents .box-r .ttl-img-bg .mv-parts9, .contents-type1 .box-in .title-contents .box-r .ttl-img-bg .mv-parts10 {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.contents-type1 .box-in .title-contents .box-r .ttl-img-bg .mv-parts1 {
  animation: mvImgFadeup 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0.5s forwards;
}
.contents-type1 .box-in .title-contents .box-r .ttl-img-bg .mv-parts2 {
  animation: mvImgFadeup 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0.7s forwards;
}
.contents-type1 .box-in .title-contents .box-r .ttl-img-bg .mv-parts3 {
  animation: mvImgFadeup 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0.9s forwards;
}
.contents-type1 .box-in .title-contents .box-r .ttl-img-bg .mv-parts4 {
  animation: mvImgFadeup 0.3s cubic-bezier(0.33, 1, 0.68, 1) 1.1s forwards;
}
.contents-type1 .box-in .title-contents .box-r .ttl-img-bg .mv-parts5 {
  animation: mvImgFadeup 0.3s cubic-bezier(0.33, 1, 0.68, 1) 1.3s forwards;
}
.contents-type1 .box-in .title-contents .box-r .ttl-img-bg .mv-parts6 {
  animation: mvImgFadeup 0.3s cubic-bezier(0.33, 1, 0.68, 1) 1.5s forwards;
}
.contents-type1 .box-in .title-contents .box-r .ttl-img-bg .mv-parts7 {
  animation: mvImgFadeup 0.3s cubic-bezier(0.33, 1, 0.68, 1) 1.7s forwards;
}
.contents-type1 .box-in .title-contents .box-r .ttl-img-bg .mv-parts8 {
  animation: mvImgFadeup 0.3s cubic-bezier(0.33, 1, 0.68, 1) 1.9s forwards;
}
.contents-type1 .box-in .title-contents .box-r .ttl-img-bg .mv-parts9 {
  animation: mvImgFadeup 0.3s cubic-bezier(0.33, 1, 0.68, 1) 2.1s forwards;
}
.contents-type1 .box-in .title-contents .box-r .ttl-img-bg .mv-parts10 {
  animation: mvImgFadeup 0.3s cubic-bezier(0.33, 1, 0.68, 1) 2.3s forwards;
}

@media screen and (max-width: 1290px) {
  .contents-type1 .box-in .title-contents {
    width: 92%;
  }
  .contents-type1 .box-in .title-contents .box-l {
    width: 43%;
  }
  .contents-type1 .box-in .title-contents .box-r {
    width: 53.75%;
  }
}
@media (max-width: 768px) {
  .contents-type1 {
    max-width: 100%;
    width: calc(100% - 15px);
    padding: 0 0 50px 0;
    border-radius: 50px 0px 0px 10px;
    overflow: visible;
  }
  .contents-type1 .box-in .title-contents {
    display: block;
    width: 100%;
    max-width: 100%;
  }
  .contents-type1 .box-in .title-contents .box-l {
    width: calc(100% - 50px);
    margin: 0 auto;
  }
  .contents-type1 .box-in .title-contents .box-l .breadcrumb {
    margin-top: 10px;
    width: 100%;
    position: relative;
  }
  .contents-type1 .box-in .title-contents .box-l .ttl {
    margin-top: 50px;
  }
  .contents-type1 .box-in .title-contents .box-l .ttl .ttl-text {
    margin-top: 5px;
    font-size: 13px;
  }
  .contents-type1 .box-in .title-contents .box-l .ttl .ttl-text.type1 {
    margin-top: 15px;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0.03em;
  }
  .contents-type1 .box-in .title-contents .box-r {
    width: 100%;
  }
}
.en-ttl-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 56px;
  letter-spacing: 0.06em;
  display: inline-block;
  line-height: 1;
  text-align: center;
  color: #033793;
  background: -webkit-linear-gradient(0deg, #0080ca, #033793), -webkit-linear-gradient(0deg, #033793, #0080ca);
  background-size: 300% 300%, 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ttl1 5s ease infinite;
}
.en-ttl-text.type1 {
  font-size: 13px;
}

@media (max-width: 768px) {
  .en-ttl-text {
    font-size: 38px;
  }
}
.area_50th {
  position: fixed;
  right: -55px;
  top: calc(50% - 242px);
  max-width: 243px;
  max-height: 363px;
  width: 243px;
  height: 363px;
  z-index: 99;
}
.area_50th .btn_50th {
  background-image: url(/assets/images/common/50th_btn.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 243px;
  height: 363px;
  animation: updown 10s infinite;
  animation-timing-function: linear;
}
@keyframes updown {
  0% {
    transform: translateY(-10%);
  }
  50% {
    transform: translateY(10%);
  }
  100% {
    transform: translateY(-10%);
  }
}

.event-contents {
  position: fixed;
  right: 0;
  bottom: 40px;
  max-width: 343px;
  max-height: 196px;
  width: 343px;
  height: 196px;
  z-index: 100;
}
.event-contents .event-box-close {
  position: absolute;
  top: -10px;
  left: -10px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .area_50th {
    display: none;
    position: fixed;
    right: -3vw;
    top: calc(50% - 33.3vw);
    max-width: 17.6vw;
    max-height: 51.7vw;
    width: 17.6vw;
    height: 51.7vw;
    z-index: 99;
  }
  .area_50th .btn_50th {
    background-image: url(/assets/images/common/50th_btn-s.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 17.6vw;
    height: 51.7vw;
    animation: updown 10s infinite;
    animation-timing-function: linear;
  }
  @keyframes updown {
    0% {
      transform: translateY(-10%);
    }
    50% {
      transform: translateY(10%);
    }
    100% {
      transform: translateY(-10%);
    }
  }
  .event-contents {
    position: fixed;
    right: 15vw;
    left: 15vw;
    bottom: 3vw;
    max-width: 70vw;
    max-height: 39.6vw;
    width: 70vw;
    height: 39.6vw;
    z-index: 100;
  }
  .event-contents .event-box-close {
    position: absolute;
    top: -1.5vw;
    left: -1.5vw;
    cursor: pointer;
  }
  .event-contents .event-box-close img {
    max-width: 6vw;
  }
}/*# sourceMappingURL=common.css.map */