html {
  background-color: #ffffff;
  color: #303030;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 10px;
  line-height: 1;
  overflow-x: auto;
  overflow-y: scroll;
}

body {
  -webkit-text-size-adjust: 100%;
}

*, *::before, *::after {
  box-sizing: border-box;
}

.bxs, .bsm, .bmd, .blg, .bxl {
  display: none;
}

.ixs, .ism, .imd, .ilg, .ixl {
  display: none;
}

@media screen and (max-width: 575px) {
  .bxs {
    display: block;
  }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
  .bsm {
    display: block;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .bmd {
    display: block;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .blg {
    display: block;
  }
}

@media screen and (min-width: 1200px) {
  .bxl {
    display: block;
  }
}

@media screen and (max-width: 575px) {
  .ixs {
    display: inline;
  }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
  .ism {
    display: inline;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .imd {
    display: inline;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .ilg {
    display: inline;
  }
}

@media screen and (min-width: 1200px) {
  .ixl {
    display: inline;
  }
}

.wbr {
  display: inline-block;
}

/*** #loader ***/
#loader {
  display: none;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}

#loader > .inner {
  height: 100%;
  width: 100%;
  position: relative;
}

#loader > .inner > .box1 {
  display: none;
  height: auto;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 15rem;
}

@media screen and (min-width: 768px) {
  #loader > .inner > .box1 {
    width: 17.5rem;
  }
}

@media screen and (min-width: 1200px) {
  #loader > .inner > .box1 {
    width: 20rem;
  }
}

#loader > .inner > .box1 > .img {
  height: auto;
  width: 100%;
  display: block;
}

#loader > .inner > .box2 {
  display: none;
  background-color: #f0f0f0;
  height: .2rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20rem;
}

@media screen and (min-width: 768px) {
  #loader > .inner > .box2 {
    width: 30rem;
  }
}

@media screen and (min-width: 1200px) {
  #loader > .inner > .box2 {
    width: 40rem;
  }
}

#loader > .inner > .box2 > .bar {
  background-color: #17184b;
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 0;
}

/*** #contents ***/
#contents {
  height: auto;
  width: 100%;
  background: url("../images/bg_content.jpg");
  min-height: 100vh;
  min-width: 32rem;
  margin: 0 auto;
  overflow: hidden;
  padding-top: 5rem;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  #contents {
    padding-top: 6rem;
  }
}

@media screen and (min-width: 1200px) {
  #contents {
    padding-top: 16rem;
  }
}

@media screen and (min-width: 1200px) {
  #contents.type2 {
    padding-top: 0;
  }
}

#contents::before {
  bottom: 0;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  content: '';
  display: block;
  opacity: 1;
  position: absolute;
  transition: opacity 0.7s;
  z-index: 9999;
  padding-top: 5rem;
}

#contents.active::before {
  bottom: 0;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
}

/*** #header ***/
#header {
  background-color: #ffffff;
  height: 5rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1101;
}

@media screen and (min-width: 768px) {
  #header {
    height: 6rem;
  }
}

@media screen and (min-width: 1200px) {
  #header {
    height: 16rem;
  }
}

#header > .inner {
  height: 100%;
  width: 100%;
  position: relative;
}

#header > .inner > .box1 {
  height: auto;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
}

#header > .inner > .box1 > .lnk {
  height: auto;
  width: auto;
  display: block;
}

#header > .inner > .box1 > .lnk.hov {
  transition: opacity 0.35s;
}

#header > .inner > .box1 > .lnk.hov:hover {
  opacity: 0.5;
}

#header > .inner > .box1 > .lnk > .phd {
  height: auto;
  width: auto;
  color: #17184b;
  font-size: .8rem;
  letter-spacing: 0.05em;
  margin: 0 auto .5rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box1 > .lnk > .phd {
    font-size: .9rem;
    margin: 0 auto .7rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box1 > .lnk > .phd {
    font-size: 1.12rem;
    margin-bottom: 1.25rem;
  }
}

#header > .inner > .box1 > .lnk > .img1 {
  display: none;
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box1 > .lnk > .img1 {
    display: block;
    height: 10rem;
    margin: 0 auto;
    width: auto;
  }
}

#header > .inner > .box1 > .lnk > .img2 {
  display: block;
  height: 2.8rem;
  margin: 0 auto;
  width: auto;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box1 > .lnk > .img2 {
    height: 3.3rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box1 > .lnk > .img2 {
    display: none;
  }
}

#header > .inner > .box2 {
  height: auto;
  left: auto;
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  width: 5rem;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box2 {
    right: 2rem;
    top: 1.9rem;
    width: 6.4rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box2 {
    right: 2.5rem;
    top: 2.5rem;
    width: 35rem;
  }
}

#header > .inner > .box2 > .inner > .box1 {
  height: auto;
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: space-between;
}

#header > .inner > .box2 > .inner > .box1 > .lnk1 {
  height: auto;
  width: auto;
  align-items: center;
  display: flex;
}

#header > .inner > .box2 > .inner > .box1 > .lnk1.hov {
  transition: opacity 0.35s;
}

#header > .inner > .box2 > .inner > .box1 > .lnk1.hov:hover {
  opacity: 0.5;
}

#header > .inner > .box2 > .inner > .box1 > .lnk1 > .ico {
  height: auto;
  width: auto;
  color: #17184b;
  font-size: 2rem;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box2 > .inner > .box1 > .lnk1 > .ico {
    font-size: 2.2rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box2 > .inner > .box1 > .lnk1 > .ico {
    font-size: 2.4rem;
  }
}

#header > .inner > .box2 > .inner > .box1 > .lnk1 > .txt {
  height: auto;
  width: auto;
  color: #17184b;
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin-left: .5rem;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box2 > .inner > .box1 > .lnk1 > .txt {
    font-size: 1.6rem;
    margin-left: .6rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box2 > .inner > .box1 > .lnk1 > .txt {
    font-size: 2rem;
    margin-left: .7rem;
  }
}

#header > .inner > .box2 > .inner > .box1 > .lnk2 {
  height: auto;
  width: auto;
  align-items: center;
  background-color: #17184b;
  display: flex;
  padding: .5rem;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box2 > .inner > .box1 > .lnk2 {
    padding: .675rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box2 > .inner > .box1 > .lnk2 {
    padding: .75rem;
  }
}

#header > .inner > .box2 > .inner > .box1 > .lnk2.hov {
  transition: opacity 0.35s;
}

#header > .inner > .box2 > .inner > .box1 > .lnk2.hov:hover {
  opacity: 0.5;
}

#header > .inner > .box2 > .inner > .box1 > .lnk2 > .ico {
  height: auto;
  width: auto;
  color: #ffffff;
  font-size: 2rem;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box2 > .inner > .box1 > .lnk2 > .ico {
    font-size: 2.2rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box2 > .inner > .box1 > .lnk2 > .ico {
    font-size: 2.4rem;
  }
}

#header > .inner > .box2 > .inner > .box1 > .lnk2 > .txt {
  height: auto;
  width: auto;
  color: #ffffff;
  display: block;
  font-size: 1.2rem;
  margin-left: .5rem;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box2 > .inner > .box1 > .lnk2 > .txt {
    font-size: 1.3rem;
    margin-left: .6rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box2 > .inner > .box1 > .lnk2 > .txt {
    font-size: 1.4rem;
    margin-left: .7rem;
  }
}

#header > .inner > .box2 > .inner > .box2 {
  height: auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: .5rem;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box2 > .inner > .box2 {
    margin-top: .75rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box2 > .inner > .box2 {
    margin-top: 1rem;
  }
}

#header > .inner > .box2 > .inner > .box2 > .phd {
  height: auto;
  width: 100%;
  color: #17184b;
  font-size: 1.26rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box2 > .inner > .box2 > .phd {
    font-size: 1.35rem;
    line-height: 1.71;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box2 > .inner > .box2 > .phd {
    font-size: 1.44rem;
    line-height: 1.6;
  }
}

#header > .inner > .box2 > .inner > .box2 > [class^=par] {
  height: auto;
  width: auto;
  color: #17184b;
  font-size: 1.12rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box2 > .inner > .box2 > [class^=par] {
    font-size: 1.275rem;
    line-height: 1.71;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box2 > .inner > .box2 > [class^=par] {
    font-size: 1.44rem;
    line-height: 1.6;
  }
}

#header > .inner > .box2 > .inner > .box1 > .lnk1 > .txt {
  display: none;
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box2 > .inner > .box1 > .lnk1 > .txt {
    display: block;
  }
}

#header > .inner > .box2 > .inner > .box1 > .lnk2 {
  background-color: transparent;
  padding: 0;
  margin-left: 1.5rem;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box2 > .inner > .box1 > .lnk2 {
    margin-left: 2rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box2 > .inner > .box1 > .lnk2 {
    margin-left: 0;
    background-color: #17184b;
    padding: .75rem;
  }
}

#header > .inner > .box2 > .inner > .box1 > .lnk2 > .ico {
  color: #17184b;
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box2 > .inner > .box1 > .lnk2 > .ico {
    color: #ffffff;
  }
}

#header > .inner > .box2 > .inner > .box1 > .lnk2 > .txt {
  display: none;
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box2 > .inner > .box1 > .lnk2 > .txt {
    display: block;
  }
}

#header > .inner > .box2 > .inner > .box2 {
  display: none;
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box2 > .inner > .box2 {
    display: flex;
  }
}

#header > .inner > .box3 {
  background: url("../images/bg_blk_3.png") #223a70;
  height: 100vh;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: opacity 0.35s;
  visibility: hidden;
  width: 100%;
  z-index: 1300;
}

#header > .inner > .box3.active {
  opacity: 1;
  pointer-events: visible;
  visibility: visible;
}

#header > .inner > .box3 > .inner {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box3 > .inner {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}

#header > .inner > .box3 > .inner > .box1 {
  height: auto;
  width: 100%;
  margin-bottom: 3rem;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box3 > .inner > .box1 {
    margin-bottom: 4rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box3 > .inner > .box1 {
    margin-bottom: 5rem;
  }
}

@media screen and (min-width: 768px) {
  #header > .inner > .box3 > .inner > .box1 {
    width: calc(33.333% - 2rem);
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box3 > .inner > .box1 {
    width: calc(33.333% - 2.5rem);
  }
}

#header > .inner > .box3 > .inner > .box1 > .lnk {
  display: block;
  height: auto;
  margin: 0 auto;
  width: 10rem;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box3 > .inner > .box1 > .lnk {
    width: 15rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box3 > .inner > .box1 > .lnk {
    width: 20rem;
  }
}

#header > .inner > .box3 > .inner > .box1 > .lnk.hov {
  transition: opacity 0.35s;
}

#header > .inner > .box3 > .inner > .box1 > .lnk.hov:hover {
  opacity: 0.5;
}

#header > .inner > .box3 > .inner > .box1 > .lnk > .img {
  height: auto;
  width: 100%;
  display: block;
}

#header > .inner > .box3 > .inner > .box2 {
  height: auto;
  width: 100%;
  margin-bottom: 3rem;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box3 > .inner > .box2 {
    margin-bottom: 4rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box3 > .inner > .box2 {
    margin-bottom: 5rem;
  }
}

@media screen and (min-width: 768px) {
  #header > .inner > .box3 > .inner > .box2 {
    width: calc(66.666% - 2rem);
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box3 > .inner > .box2 {
    width: calc(66.666% - 2.5rem);
  }
}

#header > .inner > .box3 > .inner > .box2 > .lst {
  height: auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

#header > .inner > .box3 > .inner > .box2 > .lst > .itm {
  height: auto;
  width: 3.5rem;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box3 > .inner > .box2 > .lst > .itm {
    width: 4.5rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box3 > .inner > .box2 > .lst > .itm {
    width: 5.6rem;
  }
}

#header > .inner > .box3 > .inner > .box2 > .lst > .itm.type1 {
  display: none;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box3 > .inner > .box2 > .lst > .itm.type1 {
    display: block;
  }
}

#header > .inner > .box3 > .inner > .box2 > .lst > .itm:not(:last-of-type) {
  margin-right: 0.75rem;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box3 > .inner > .box2 > .lst > .itm:not(:last-of-type) {
    margin-right: 1rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box3 > .inner > .box2 > .lst > .itm:not(:last-of-type) {
    margin-right: 1.25rem;
  }
}

#header > .inner > .box3 > .inner > .box2 > .lst > .itm > .lnk {
  height: auto;
  width: 100%;
  color: #ffffff;
  display: inline-block;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 2.5;
  position: relative;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box3 > .inner > .box2 > .lst > .itm > .lnk {
    font-size: 1.8rem;
    padding-top: 3rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box3 > .inner > .box2 > .lst > .itm > .lnk {
    font-size: 2.24rem;
    padding-top: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  #header > .inner > .box3 > .inner > .box2 > .lst > .itm > .lnk:before {
    background-color: #ffffff;
    content: '';
    display: block;
    height: 1.5rem;
    left: 50%;
    position: absolute;
    top: 0;
    width: .1rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box3 > .inner > .box2 > .lst > .itm > .lnk:before {
    height: 1.875rem;
  }
}

#header > .inner > .box3 > .inner > .box2 > .lst > .itm > .lnk.hov {
  transition: opacity 0.35s;
}

#header > .inner > .box3 > .inner > .box2 > .lst > .itm > .lnk.hov:hover {
  opacity: 0.5;
}

#header > .inner > .box3 > .inner > .box3 {
  height: auto;
  width: 100%;
}

@media (max-width: 767px) and (min-aspect-ratio: 1 / 1) {
  #header > .inner > .box3 > .inner > .box3 {
    display: none;
  }
}

#header > .inner > .box3 > .inner > .box3 > .inner {
  border: 0.1rem solid #ffffff;
  margin: 3rem auto 0;
  padding: 1rem;
  width: 30rem;
}

#header > .inner > .box3 > .inner > .box3 > .inner > .box1 {
  height: auto;
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: space-between;
}

#header > .inner > .box3 > .inner > .box3 > .inner > .box1 > .lnk1 {
  height: auto;
  width: auto;
  align-items: center;
  display: flex;
}

#header > .inner > .box3 > .inner > .box3 > .inner > .box1 > .lnk1.hov {
  transition: opacity 0.35s;
}

#header > .inner > .box3 > .inner > .box3 > .inner > .box1 > .lnk1.hov:hover {
  opacity: 0.5;
}

#header > .inner > .box3 > .inner > .box3 > .inner > .box1 > .lnk1 > .ico {
  height: auto;
  width: auto;
  color: #ffffff;
  font-size: 2rem;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box3 > .inner > .box3 > .inner > .box1 > .lnk1 > .ico {
    font-size: 2.2rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box3 > .inner > .box3 > .inner > .box1 > .lnk1 > .ico {
    font-size: 2.4rem;
  }
}

#header > .inner > .box3 > .inner > .box3 > .inner > .box1 > .lnk1 > .txt {
  height: auto;
  width: auto;
  color: #ffffff;
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin-left: .5rem;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box3 > .inner > .box3 > .inner > .box1 > .lnk1 > .txt {
    font-size: 1.6rem;
    margin-left: .6rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box3 > .inner > .box3 > .inner > .box1 > .lnk1 > .txt {
    font-size: 2rem;
    margin-left: .7rem;
  }
}

#header > .inner > .box3 > .inner > .box3 > .inner > .box1 > .lnk2 {
  height: auto;
  width: auto;
  align-items: center;
  background-color: #ffffff;
  display: flex;
  padding: .5rem;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box3 > .inner > .box3 > .inner > .box1 > .lnk2 {
    padding: .675rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box3 > .inner > .box3 > .inner > .box1 > .lnk2 {
    padding: .75rem;
  }
}

#header > .inner > .box3 > .inner > .box3 > .inner > .box1 > .lnk2.hov {
  transition: opacity 0.35s;
}

#header > .inner > .box3 > .inner > .box3 > .inner > .box1 > .lnk2.hov:hover {
  opacity: 0.5;
}

#header > .inner > .box3 > .inner > .box3 > .inner > .box1 > .lnk2 > .ico {
  height: auto;
  width: auto;
  color: #223a70;
  font-size: 2rem;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box3 > .inner > .box3 > .inner > .box1 > .lnk2 > .ico {
    font-size: 2.2rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box3 > .inner > .box3 > .inner > .box1 > .lnk2 > .ico {
    font-size: 2.4rem;
  }
}

#header > .inner > .box3 > .inner > .box3 > .inner > .box1 > .lnk2 > .txt {
  height: auto;
  width: auto;
  color: #223a70;
  display: block;
  font-size: 1.2rem;
  margin-left: .5rem;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box3 > .inner > .box3 > .inner > .box1 > .lnk2 > .txt {
    font-size: 1.3rem;
    margin-left: .6rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box3 > .inner > .box3 > .inner > .box1 > .lnk2 > .txt {
    font-size: 1.4rem;
    margin-left: .7rem;
  }
}

#header > .inner > .box3 > .inner > .box3 > .inner > .box2 {
  height: auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: .5rem;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box3 > .inner > .box3 > .inner > .box2 {
    margin-top: .75rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box3 > .inner > .box3 > .inner > .box2 {
    margin-top: 1rem;
  }
}

#header > .inner > .box3 > .inner > .box3 > .inner > .box2 > .phd {
  height: auto;
  width: 100%;
  color: #ffffff;
  font-size: 1.26rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box3 > .inner > .box3 > .inner > .box2 > .phd {
    font-size: 1.35rem;
    line-height: 1.71;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box3 > .inner > .box3 > .inner > .box2 > .phd {
    font-size: 1.44rem;
    line-height: 1.6;
  }
}

#header > .inner > .box3 > .inner > .box3 > .inner > .box2 > [class^=par] {
  height: auto;
  width: auto;
  color: #ffffff;
  font-size: 1.12rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box3 > .inner > .box3 > .inner > .box2 > [class^=par] {
    font-size: 1.275rem;
    line-height: 1.71;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box3 > .inner > .box3 > .inner > .box2 > [class^=par] {
    font-size: 1.44rem;
    line-height: 1.6;
  }
}

@media screen and (min-width: 768px) {
  #header > .inner > .box3 > .inner > .box3 > .inner {
    margin: 4rem auto 0;
    padding: 1.5rem;
    width: 40rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box3 > .inner > .box3 > .inner {
    margin: 5rem auto 0;
    padding: 2rem;
    width: 45rem;
  }
}

#header > .inner > .box4 {
  height: auto;
  width: auto;
  left: 1.5rem;
  position: absolute;
  top: 1.9rem;
  z-index: 1301;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box4 {
    left: 2rem;
    top: 2.2rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box4 {
    left: 2.5rem;
    top: 7rem;
  }
}

#header > .inner > .box4 > .lnk {
  align-items: center;
  cursor: pointer;
  display: flex;
  position: relative;
  height: 1.2rem;
  width: 7.5rem;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box4 > .lnk {
    height: 1.6rem;
    width: 8.5rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box4 > .lnk {
    height: 2rem;
    width: 10rem;
  }
}

#header > .inner > .box4 > .lnk.hov {
  transition: opacity 0.35s;
}

#header > .inner > .box4 > .lnk.hov:hover {
  opacity: 0.5;
}

#header > .inner > .box4 > .lnk > .bar {
  background-color: #17184b;
  height: .2rem;
  display: block;
  left: 0;
  position: absolute;
  top: calc(50% - .1rem);
  transition: background-color 0.35s;
  width: 1.5rem;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box4 > .lnk > .bar {
    width: 2rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box4 > .lnk > .bar {
    width: 2.5rem;
  }
}

#header > .inner > .box4 > .lnk > .bar::before {
  background-color: #17184b;
  content: '';
  height: .2rem;
  display: block;
  left: 0;
  position: absolute;
  top: -.5rem;
  transition: 0.35s;
  width: 100%;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box4 > .lnk > .bar::before {
    top: -.7rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box4 > .lnk > .bar::before {
    top: -.9rem;
  }
}

#header > .inner > .box4 > .lnk > .bar::after {
  background-color: #17184b;
  content: '';
  height: .2rem;
  display: block;
  left: 0;
  position: absolute;
  top: .6rem;
  transition: 0.35s;
  width: 100%;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box4 > .lnk > .bar::after {
    top: .8rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box4 > .lnk > .bar::after {
    top: 1rem;
  }
}

#header > .inner > .box4 > .lnk > .txt {
  height: auto;
  width: auto;
  font-size: 1.12rem;
  letter-spacing: 0.05em;
  color: #17184b;
  display: block;
  left: 2.25rem;
  position: absolute;
  top: calc(50% - 0.56rem);
}

@media screen and (min-width: 768px) {
  #header > .inner > .box4 > .lnk > .txt {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box4 > .lnk > .txt {
    font-size: 1.28rem;
  }
}

@media screen and (min-width: 768px) {
  #header > .inner > .box4 > .lnk > .txt {
    left: 3rem;
    top: calc(50% - 0.6rem);
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box4 > .lnk > .txt {
    left: 3.75rem;
    top: calc(50% - 0.64rem);
  }
}

#header > .inner > .box4.active {
  position: fixed;
}

#header > .inner > .box4.active > .lnk > .bar {
  background-color: rgba(255, 255, 255, 0);
}

#header > .inner > .box4.active > .lnk > .bar::before {
  background-color: #ffffff;
  top: 0;
  transform: rotate(135deg);
}

#header > .inner > .box4.active > .lnk > .bar::after {
  background-color: #ffffff;
  top: 0;
  transform: rotate(225deg);
}

@media screen and (min-width: 1200px) {
  #header.type2 {
    background-color: transparent;
    padding-top: 56.25%;
  }
}

@media screen and (min-width: 1200px) {
  #header.type2 > .inner {
    bottom: 0;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    position: absolute;
  }
}

@media screen and (min-width: 1200px) {
  #header.type2 > .inner > .box1 {
    left: 15%;
  }
}

@media screen and (min-width: 1200px) {
  #header.type2 > .inner > .box1 > .lnk > .phd {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
  }
}

@media screen and (min-width: 1200px) {
  #header.type2 > .inner > .box1 > .lnk > .img1 {
    height: 15rem;
  }
}

#header.fixed {
  box-shadow: 0 0.2rem 0.2rem rgba(48, 48, 48, 0.1);
  position: fixed;
}

@media screen and (min-width: 1200px) {
  #header.fixed {
    background-color: #ffffff;
    height: 8rem;
    padding-top: 0;
  }
}

#header.fixed > .inner {
  bottom: auto;
  height: auto;
  left: auto;
  position: static;
  top: auto;
}

#header.fixed > .inner > .box1 > .lnk {
  height: auto;
  width: auto;
  display: block;
}

@media screen and (min-width: 1200px) {
  #header.fixed > .inner > .box1 > .lnk > .phd {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  #header.fixed > .inner > .box1 > .lnk > .img1 {
    width: 6rem;
  }
}

#header.fixed > .inner > .box1 > .lnk > .img2 {
  display: block;
}

@media screen and (min-width: 1200px) {
  #header.fixed > .inner > .box1 > .lnk > .img2 {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  #header.fixed > .inner > .box2 {
    display: block;
    top: 2.15rem;
  }
}

#header.fixed > .inner > .box2 > .inner > .box2 {
  display: none;
}

@media screen and (min-width: 1200px) {
  #header.fixed > .inner > .box4 {
    top: 3rem;
  }
}

@media screen and (min-width: 1200px) {
  #header.fixed.type2 {
    background-color: #ffffff;
  }
}

@media screen and (min-width: 1200px) {
  #header.fixed.type2 > .inner > .box1 {
    display: block;
    left: 50%;
  }
}

@media screen and (min-width: 1200px) {
  #header.fixed.type2 > .inner > .box1 > .lnk > .img1 {
    height: 8rem;
  }
}

@media screen and (min-width: 1200px) {
  #header.fixed.type2 > .inner > .box2 {
    display: block;
  }
}

/*** #banner ***/
#banner.type1 {
  height: auto;
  width: 100%;
}

#banner.type1 > .inner {
  height: auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

#banner.type1 > .inner > .box1 {
  height: auto;
  width: 100%;
  position: relative;
}

#banner.type1 > .inner > .box1 > .box1 {
  padding-top: 75%;
  position: relative;
}

@media screen and (min-width: 768px) {
  #banner.type1 > .inner > .box1 > .box1 {
    padding-top: 56.25%;
  }
}

#banner.type1 > .inner > .box1 > .box1 > .img {
  bottom: 0;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
}

#banner.type1 > .inner > .box1 > .box2 {
  height: auto;
  position: absolute;
  right: 15%;
  top: 50%;
  transform: translate(50%, -50%);
  width: 6.048rem;
}

@media screen and (min-width: 768px) {
  #banner.type1 > .inner > .box1 > .box2 {
    width: 7.98rem;
  }
}

@media screen and (min-width: 1200px) {
  #banner.type1 > .inner > .box1 > .box2 {
    width: 12.8rem;
  }
}

#banner.type1 > .inner > .box1 > .box2 > .par {
  color: #17184b;
  display: inline-block;
  font-size: 4vw;
  height: auto;
  letter-spacing: 0.05em;
  line-height: 1.8;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
}

@media screen and (min-width: 768px) {
  #banner.type1 > .inner > .box1 > .box2 > .par {
    font-size: 2.7rem;
  }
}

@media screen and (min-width: 1200px) {
  #banner.type1 > .inner > .box1 > .box2 > .par {
    font-size: 2.88rem;
  }
}

#banner.type1 > .inner > .box1 > .box3 {
  display: none;
}

@media screen and (min-width: 1200px) {
  #banner.type1 > .inner > .box1 > .box3 {
    height: auto;
    width: auto;
    bottom: 2.5rem;
    display: block;
    right: 2.5rem;
    position: absolute;
    z-index: 10;
  }
}

@media screen and (min-width: 1200px) {
  #banner.type1 > .inner > .box1 > .box3 > .lnk {
    height: auto;
    width: auto;
    color: #17184b;
    display: block;
    font-size: 1.12rem;
    letter-spacing: 0.05em;
    position: relative;
    text-transform: uppercase;
  }
}

#banner.type1 > .inner > .box1 > .box3 > .lnk.hov {
  transition: opacity 0.35s;
}

#banner.type1 > .inner > .box1 > .box3 > .lnk.hov:hover {
  opacity: 0.5;
}

#banner.type1 > .inner > .box1 > .box3 > .lnk > .bar {
  background-color: rgba(23, 24, 75, 0.2);
  display: block;
  bottom: calc(100% + 1.25rem);
  height: 7.5rem;
  position: absolute;
  left: 50%;
  overflow: hidden;
  width: .1rem;
}

#banner.type1 > .inner > .box1 > .box3 > .lnk > .bar::after {
  height: 100%;
  width: 100%;
  animation: ani1 3s infinite;
  background-color: #17184b;
  content: '';
  display: block;
  left: 0;
  position: absolute;
  top: 0;
}

@keyframes ani1 {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}

#banner.type1 > .inner > .box2 {
  height: auto;
  width: 100%;
  padding: 1.5rem 1.5rem;
  background-color: #17184b;
  position: relative;
}

@media screen and (min-width: 768px) {
  #banner.type1 > .inner > .box2 {
    padding: 2rem 2rem;
  }
}

@media screen and (min-width: 1200px) {
  #banner.type1 > .inner > .box2 {
    padding: 2.5rem 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  #banner.type1 > .inner > .box2 {
    align-items: center;
    bottom: 0;
    display: flex;
    left: 50%;
    max-width: 72.8rem;
    position: absolute;
    transform: translate(-50%, 50%);
    width: calc(100% - 4rem);
    z-index: 1200;
  }
}

@media screen and (min-width: 1200px) {
  #banner.type1 > .inner > .box2 {
    max-width: 95rem;
    width: calc(100% - 5rem);
  }
}

#banner.type1 > .inner > .box2 > .box1 {
  height: auto;
  width: 100%;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
  #banner.type1 > .inner > .box2 > .box1 {
    margin-bottom: 0;
    width: 12rem;
  }
}

#banner.type1 > .inner > .box2 > .box1 > .inner {
  height: auto;
  width: 100%;
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
}

#banner.type1 > .inner > .box2 > .box1 > .inner > .phd {
  height: auto;
  width: auto;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: #ffffff;
  font-weight: 2rem;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
  #banner.type1 > .inner > .box2 > .box1 > .inner > .phd {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 1200px) {
  #banner.type1 > .inner > .box2 > .box1 > .inner > .phd {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 768px) {
  #banner.type1 > .inner > .box2 > .box1 > .inner > .phd {
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  #banner.type1 > .inner > .box2 > .box1 > .inner > .phd {
    margin-bottom: 1.25rem;
    text-align: center;
    width: 100%;
  }
}

#banner.type1 > .inner > .box2 > .box1 > .inner > .shd {
  height: auto;
  width: auto;
  font-size: 1.12rem;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-left: 1.5rem;
}

@media screen and (min-width: 768px) {
  #banner.type1 > .inner > .box2 > .box1 > .inner > .shd {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 1200px) {
  #banner.type1 > .inner > .box2 > .box1 > .inner > .shd {
    font-size: 1.28rem;
  }
}

@media screen and (min-width: 768px) {
  #banner.type1 > .inner > .box2 > .box1 > .inner > .shd {
    margin-left: 0;
    text-align: center;
    width: 100%;
  }
}

#banner.type1 > .inner > .box2 > .box2 {
  height: auto;
  width: 100%;
}

@media screen and (min-width: 768px) {
  #banner.type1 > .inner > .box2 > .box2 {
    width: calc(100% - 12rem);
  }
}

#banner.type1 > .inner > .box2 > .box2 > .par {
  font-size: 1.26rem;
  letter-spacing: 0.05em;
  line-height: 1.44;
  color: #ffffff;
}

@media screen and (min-width: 768px) {
  #banner.type1 > .inner > .box2 > .box2 > .par {
    font-size: 1.35rem;
    line-height: 1.52;
  }
}

@media screen and (min-width: 1200px) {
  #banner.type1 > .inner > .box2 > .box2 > .par {
    font-size: 1.44rem;
    line-height: 1.6;
  }
}

#banner.type1 > .inner > .box2 > .box2 > .par > .lnk {
  display: block;
  padding-right: 1.5rem;
}

#banner.type1 > .inner > .box2 > .box2 > .par > .lnk > .txt2 {
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 3rem;
}

@media screen and (min-width: 768px) {
  #banner.type1 > .inner > .box2 > .box2 > .par > .lnk > .txt2 {
    width: 4rem;
  }
}

@media screen and (min-width: 1200px) {
  #banner.type1 > .inner > .box2 > .box2 > .par > .lnk > .txt2 {
    width: 5rem;
  }
}

#banner.type1 > .inner > .box2 > .box2 > .par > .lnk > .txt2 > .img {
  font-size: 1.4rem;
  letter-spacing: 0em;
  color: #17184b;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1rem;
}

@media screen and (min-width: 768px) {
  #banner.type1 > .inner > .box2 > .box2 > .par > .lnk > .txt2 > .img {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 1200px) {
  #banner.type1 > .inner > .box2 > .box2 > .par > .lnk > .txt2 > .img {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 768px) {
  #banner.type1 > .inner > .box2 > .box2 > .par > .lnk > .txt2 > .img {
    width: 1.5rem;
  }
}

@media screen and (min-width: 1200px) {
  #banner.type1 > .inner > .box2 > .box2 > .par > .lnk > .txt2 > .img {
    width: 2rem;
  }
}

#banner.type1 > .inner > .box2 > .box2 > .par > .lnk.hov {
  transition: opacity 0.35s;
}

#banner.type1 > .inner > .box2 > .box2 > .par > .lnk.hov:hover {
  opacity: 0.5;
}

#banner.type2 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 20rem;
  position: relative;
  width: 100%;
}

@media screen and (min-width: 768px) {
  #banner.type2 {
    height: 32.5rem;
  }
}

@media screen and (min-width: 1200px) {
  #banner.type2 {
    height: 40rem;
  }
}

#banner.type2::after {
  bottom: 0;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  content: '';
  display: block;
  position: absolute;
}

#banner.type2 > .inner {
  height: auto;
  width: auto;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

#banner.type2 > .inner > .phd {
  height: auto;
  width: auto;
  padding: 0.75rem 0.75rem;
  background-color: #ffffff;
  color: #17184b;
  display: inline-block;
  font-size: 1.68rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
}

@media screen and (min-width: 768px) {
  #banner.type2 > .inner > .phd {
    padding: 1rem 1rem;
  }
}

@media screen and (min-width: 1200px) {
  #banner.type2 > .inner > .phd {
    padding: 1.25rem 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  #banner.type2 > .inner > .phd {
    font-size: 2.1rem;
  }
}

@media screen and (min-width: 1200px) {
  #banner.type2 > .inner > .phd {
    font-size: 2.56rem;
  }
}

#banner.type2 > .inner > .phd > .txt {
  height: 100%;
  width: 100%;
  display: inline-block;
  position: relative;
}

#banner.type2 > .inner > .phd > .txt::before {
  border-bottom: 0.1rem solid #ffffff;
  border-top: 0.1rem solid #ffffff;
  content: '';
  display: block;
  height: calc(100% + 2.25rem);
  left: -1.5rem;
  position: absolute;
  top: -1.125rem;
  width: calc(100% + 3rem);
}

@media screen and (min-width: 768px) {
  #banner.type2 > .inner > .phd > .txt::before {
    height: calc(100% + 3rem);
    left: -2rem;
    top: -1.5rem;
    width: calc(100% + 4rem);
  }
}

@media screen and (min-width: 1200px) {
  #banner.type2 > .inner > .phd > .txt::before {
    height: calc(100% + 3.75rem);
    left: -2.5rem;
    top: -1.875rem;
    width: calc(100% + 5rem);
  }
}

#banner.type2 > .inner > .phd > .txt::after {
  border-left: 0.1rem solid #ffffff;
  border-right: 0.1rem solid #ffffff;
  content: '';
  display: block;
  height: calc(100% + 3rem);
  left: -1.125rem;
  position: absolute;
  top: -1.5rem;
  width: calc(100% + 2.25rem);
}

@media screen and (min-width: 768px) {
  #banner.type2 > .inner > .phd > .txt::after {
    height: calc(100% + 4rem);
    left: -1.5rem;
    top: -2rem;
    width: calc(100% + 3rem);
  }
}

@media screen and (min-width: 1200px) {
  #banner.type2 > .inner > .phd > .txt::after {
    height: calc(100% + 5rem);
    left: -1.875rem;
    top: -2.5rem;
    width: calc(100% + 3.75rem);
  }
}

#banner.type2 > .inner > .shd {
  height: auto;
  width: auto;
  font-size: 1.12rem;
  letter-spacing: 0.05em;
  color: #ffffff;
  height: auto;
  left: 50%;
  position: absolute;
  top: calc(100% + 2.25rem);
  transform: translateX(-50%);
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  #banner.type2 > .inner > .shd {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 1200px) {
  #banner.type2 > .inner > .shd {
    font-size: 1.28rem;
  }
}

@media screen and (min-width: 768px) {
  #banner.type2 > .inner > .shd {
    top: calc(100% + 3rem);
  }
}

@media screen and (min-width: 1200px) {
  #banner.type2 > .inner > .shd {
    top: calc(100% + 3.75rem);
  }
}

/*** #main ***/
#main {
  height: auto;
  width: 100%;
}

#main > .inner {
  height: auto;
  width: 100%;
}

#main > .inner > .sec0 {
  height: auto;
  width: 100%;
  padding: 4.5rem 0rem;
}

@media screen and (min-width: 768px) {
  #main > .inner > .sec0 {
    padding: 6rem 0rem;
  }
}

@media screen and (min-width: 1200px) {
  #main > .inner > .sec0 {
    padding: 7.5rem 0rem;
  }
}

#main > .inner > .sec0 > .inner {
  height: auto;
  width: 100%;
  margin: 0 auto;
  max-width: 42rem;
  padding: 0rem 1.5rem;
}

@media screen and (min-width: 768px) {
  #main > .inner > .sec0 > .inner {
    max-width: 76.8rem;
  }
}

@media screen and (min-width: 1200px) {
  #main > .inner > .sec0 > .inner {
    max-width: 120rem;
  }
}

@media screen and (min-width: 768px) {
  #main > .inner > .sec0 > .inner {
    padding: 0rem 2rem;
  }
}

@media screen and (min-width: 1200px) {
  #main > .inner > .sec0 > .inner {
    padding: 0rem 2.5rem;
  }
}

#main > .inner > .sec0 > .inner > .par {
  height: auto;
  width: 100%;
  font-size: 1.68rem;
  letter-spacing: 0.05em;
  text-align: center;
}

@media screen and (min-width: 768px) {
  #main > .inner > .sec0 > .inner > .par {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 1200px) {
  #main > .inner > .sec0 > .inner > .par {
    font-size: 1.92rem;
  }
}

/*** #footer ***/
#footer {
  height: auto;
  width: 100%;
  background: url("../images/bg_blk_3.png") #223a70;
  padding: 4.5rem 0 1.5rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  #footer {
    padding: 6rem 0 2rem;
  }
}

@media screen and (min-width: 1200px) {
  #footer {
    padding: 7.5rem 0 2.5rem;
  }
}

#footer > .inner {
  height: auto;
  width: 100%;
  margin: 0 auto;
  max-width: 42rem;
  padding: 0rem 1.5rem;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (min-width: 768px) {
  #footer > .inner {
    max-width: 76.8rem;
  }
}

@media screen and (min-width: 1200px) {
  #footer > .inner {
    max-width: 120rem;
  }
}

@media screen and (min-width: 768px) {
  #footer > .inner {
    padding: 0rem 2rem;
  }
}

@media screen and (min-width: 1200px) {
  #footer > .inner {
    padding: 0rem 2.5rem;
  }
}

#footer > .inner > .box1 {
  height: auto;
  width: 100%;
  margin-bottom: 3rem;
}

@media screen and (min-width: 768px) {
  #footer > .inner > .box1 {
    margin-bottom: 4rem;
  }
}

@media screen and (min-width: 1200px) {
  #footer > .inner > .box1 {
    margin-bottom: 5rem;
  }
}

@media screen and (min-width: 768px) {
  #footer > .inner > .box1 {
    width: 35rem;
  }
}

@media screen and (min-width: 1200px) {
  #footer > .inner > .box1 {
    width: 37.5rem;
  }
}

#footer > .inner > .box1 > .box1 {
  height: auto;
  width: 100%;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
  #footer > .inner > .box1 > .box1 {
    margin-bottom: 2rem;
  }
}

@media screen and (min-width: 1200px) {
  #footer > .inner > .box1 > .box1 {
    margin-bottom: 2.5rem;
  }
}

#footer > .inner > .box1 > .box1 > .lnk {
  height: auto;
  width: 100%;
  display: block;
}

#footer > .inner > .box1 > .box1 > .lnk.hov {
  transition: opacity 0.35s;
}

#footer > .inner > .box1 > .box1 > .lnk.hov:hover {
  opacity: 0.5;
}

#footer > .inner > .box1 > .box1 > .lnk > .par {
  height: auto;
  width: 100%;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #ffffff;
  text-align: center;
}

@media screen and (min-width: 768px) {
  #footer > .inner > .box1 > .box1 > .lnk > .par {
    margin-bottom: 2rem;
  }
}

@media screen and (min-width: 1200px) {
  #footer > .inner > .box1 > .box1 > .lnk > .par {
    margin-bottom: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  #footer > .inner > .box1 > .box1 > .lnk > .par {
    font-size: 1.5rem;
    line-height: 1.9;
  }
}

@media screen and (min-width: 1200px) {
  #footer > .inner > .box1 > .box1 > .lnk > .par {
    font-size: 1.6rem;
    line-height: 2;
  }
}

#footer > .inner > .box1 > .box1 > .lnk > .img {
  display: block;
  height: auto;
  margin: 0 auto;
  width: 10rem;
}

@media screen and (min-width: 768px) {
  #footer > .inner > .box1 > .box1 > .lnk > .img {
    width: 12.5rem;
  }
}

@media screen and (min-width: 1200px) {
  #footer > .inner > .box1 > .box1 > .lnk > .img {
    width: 15rem;
  }
}

#footer > .inner > .box1 > .box2 {
  height: auto;
  width: 100%;
}

#footer > .inner > .box1 > .box2 > .par {
  height: auto;
  width: 100%;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 2.16;
  color: #ffffff;
  vertical-align: center;
  text-align: center;
}

@media screen and (min-width: 768px) {
  #footer > .inner > .box1 > .box2 > .par {
    font-size: 1.5rem;
    line-height: 2.28;
  }
}

@media screen and (min-width: 1200px) {
  #footer > .inner > .box1 > .box2 > .par {
    font-size: 1.6rem;
    line-height: 2.4;
  }
}

#footer > .inner > .box1 > .box2 > .par > .lnk.hov {
  transition: opacity 0.35s;
}

#footer > .inner > .box1 > .box2 > .par > .lnk.hov:hover {
  opacity: 0.5;
}

#footer > .inner > .box1 > .box2 > .par > .lnk > .txt2 {
  background-color: #ffffff;
  color: #223a70;
  display: inline-block;
  font-size: .8em;
  padding: 0 .5em;
}

#footer > .inner > .box1 > .box2 > .par > .lnk > .txt2 > .ico {
  margin-right: .25em;
}

#footer > .inner > .box2 {
  height: auto;
  width: 100%;
  margin-bottom: 3rem;
}

@media screen and (min-width: 768px) {
  #footer > .inner > .box2 {
    margin-bottom: 4rem;
  }
}

@media screen and (min-width: 1200px) {
  #footer > .inner > .box2 {
    margin-bottom: 5rem;
  }
}

@media screen and (min-width: 768px) {
  #footer > .inner > .box2 {
    width: calc(100% - 37rem);
  }
}

@media screen and (min-width: 1200px) {
  #footer > .inner > .box2 {
    width: calc(100% - 40rem);
  }
}

#footer > .inner > .box2 > .lst {
  height: auto;
  width: 100%;
}

#footer > .inner > .box2 > .lst > .itm {
  height: auto;
  width: 100%;
}

#footer > .inner > .box2 > .lst > .itm > .lnk {
  display: none;
}

#footer > .inner > .box2 > .lst > .itm > .sub-menu {
  margin: 0rem -0.75rem;
  display: flex;
  flex-wrap: wrap;
  height: auto;
  justify-content: center;
  width: calc(100% + 1.5rem);
}

@media screen and (min-width: 768px) {
  #footer > .inner > .box2 > .lst > .itm > .sub-menu {
    margin: 0rem -1rem;
  }
}

@media screen and (min-width: 1200px) {
  #footer > .inner > .box2 > .lst > .itm > .sub-menu {
    margin: 0rem -1.25rem;
  }
}

@media screen and (min-width: 768px) {
  #footer > .inner > .box2 > .lst > .itm > .sub-menu {
    justify-content: flex-end;
    width: calc(100% + 2rem);
  }
}

@media screen and (min-width: 1200px) {
  #footer > .inner > .box2 > .lst > .itm > .sub-menu {
    justify-content: flex-end;
    width: calc(100% + 2.5rem);
  }
}

#footer > .inner > .box2 > .lst > .itm > .sub-menu > .itm {
  height: auto;
  width: auto;
  padding: 0.75rem 0.75rem;
}

@media screen and (min-width: 768px) {
  #footer > .inner > .box2 > .lst > .itm > .sub-menu > .itm {
    padding: 1rem 1rem;
  }
}

@media screen and (min-width: 1200px) {
  #footer > .inner > .box2 > .lst > .itm > .sub-menu > .itm {
    padding: 1.25rem 1.25rem;
  }
}

#footer > .inner > .box2 > .lst > .itm > .sub-menu > .itm > .lnk {
  height: auto;
  width: 100%;
  font-size: 1.26rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #ffffff;
}

@media screen and (min-width: 768px) {
  #footer > .inner > .box2 > .lst > .itm > .sub-menu > .itm > .lnk {
    font-size: 1.35rem;
    line-height: 1.9;
  }
}

@media screen and (min-width: 1200px) {
  #footer > .inner > .box2 > .lst > .itm > .sub-menu > .itm > .lnk {
    font-size: 1.44rem;
    line-height: 2;
  }
}

#footer > .inner > .box2 > .lst > .itm > .sub-menu > .itm > .lnk.hov {
  transition: opacity 0.35s;
}

#footer > .inner > .box2 > .lst > .itm > .sub-menu > .itm > .lnk.hov:hover {
  opacity: 0.5;
}

#footer > .inner > .box3 {
  height: auto;
  width: auto;
  bottom: 1.5rem;
  height: 5rem;
  position: fixed;
  right: 1.5rem;
  width: 5rem;
  z-index: 1000;
}

@media screen and (min-width: 768px) {
  #footer > .inner > .box3 {
    bottom: 2rem;
    height: 6.5rem;
    right: 2rem;
    width: 6.5rem;
  }
}

@media screen and (min-width: 1200px) {
  #footer > .inner > .box3 {
    bottom: 2.5rem;
    height: 8rem;
    right: 2.5rem;
    width: 8rem;
  }
}

#footer > .inner > .box3 > .lnk {
  height: 100%;
  width: 100%;
  background-color: rgba(23, 24, 75, 0.95);
  border-radius: 50%;
  display: block;
  position: relative;
}

#footer > .inner > .box3 > .lnk.hov {
  transition: opacity 0.35s;
}

#footer > .inner > .box3 > .lnk.hov:hover {
  opacity: 0.5;
}

#footer > .inner > .box3 > .lnk > .txt {
  height: auto;
  width: 100%;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#footer > .inner > .box3 > .lnk > .txt > .img {
  display: block;
  height: auto;
  margin: 0 auto .75rem;
  width: 33.333%;
}

@media screen and (min-width: 1200px) {
  #footer > .inner > .box3 > .lnk > .txt > .img {
    margin: 0 auto .875rem;
  }
}

@media screen and (min-width: 1200px) {
  #footer > .inner > .box3 > .lnk > .txt > .img {
    margin: 0 auto 1rem;
  }
}

#footer > .inner > .box3 > .lnk > .txt > .txt {
  height: auto;
  width: 100%;
  font-size: 1.12rem;
  letter-spacing: 0.05em;
  color: #ffffff;
  display: block;
  text-align: center;
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  #footer > .inner > .box3 > .lnk > .txt > .txt {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 1200px) {
  #footer > .inner > .box3 > .lnk > .txt > .txt {
    font-size: 1.28rem;
  }
}

#footer > .inner > .box4 {
  height: auto;
  width: 100%;
  font-size: 1.12rem;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-align: center;
}

@media screen and (min-width: 768px) {
  #footer > .inner > .box4 {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 1200px) {
  #footer > .inner > .box4 {
    font-size: 1.28rem;
  }
}

/*# sourceMappingURL=common.css.map */