html {
  background-color: #007aff;
  color: #303030;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: 'palt';
  font-size: 10px;
  line-height: 1;
  overflow-x: auto;
  overflow-y: scroll;
}

@media screen and (min-width: 1600px) {
  html {
    font-size: 0.625vw;
  }
}

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;
  }
}

/*** #loader ***/
#loader {
  background-color: #007aff;
  height: 100vh;
  left: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: opacity 0.35s;
  visibility: hidden;
  width: 100%;
  z-index: 10000;
}

#loader.active {
  opacity: 1;
  pointer-events: visible;
  visibility: visible;
}

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

#loader > .inner > .box1 {
  display: flex;
  height: 4rem;
  justify-content: space-between;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 5rem;
}

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

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

#loader > .inner > .box1 > [class^=box] {
  -webkit-animation: anildr 1.2s infinite ease-in-out;
  animation: anildr 1.2s infinite ease-in-out;
  background-color: #ffffff;
  height: 100%;
  width: .6rem;
}

@media screen and (min-width: 768px) {
  #loader > .inner > .box1 > [class^=box] {
    width: .65rem;
  }
}

@media screen and (min-width: 1200px) {
  #loader > .inner > .box1 > [class^=box] {
    width: .7rem;
  }
}

#loader > .inner > .box1 > [class^=box].box2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

#loader > .inner > .box1 > [class^=box].box3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

#loader > .inner > .box1 > [class^=box].box4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

#loader > .inner > .box1 > [class^=box].box5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes anildr {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}

@keyframes anildr {
  0%, 40%, 100% {
    transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
  }
}

/*** #contents ***/
#contents {
  height: auto;
  width: 100%;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}

#contents.type1 {
  padding-top: 5.5rem;
}

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

#contents::after {
  bottom: 0;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  background-color: #007aff;
  content: '';
  display: block;
  opacity: 1;
  pointer-events: visible;
  position: absolute;
  transition: opacity 0.35s;
  z-index: 9999;
}

#contents.active::after {
  opacity: 0;
  pointer-events: none;
}

/*** #header ***/
#header {
  background-color: #007aff;
  left: 0;
  height: 5.5rem;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1000;
}

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

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

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

#header > .inner > .box1 {
  left: 1.5rem;
  height: auto;
  position: absolute;
  top: .85rem;
  width: 15rem;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box1 {
    left: 1.75rem;
    top: 1.0625rem;
    width: 17.5rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box1 {
    left: 2rem;
    top: 1.25rem;
    width: 20rem;
  }
}

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

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

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

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

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

#header > .inner > .box2 {
  background-color: #007aff;
  height: 100vh;
  min-height: 56.8rem;
  min-width: 32rem;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: opacity 0.35s;
  visibility: hidden;
  width: 100%;
  z-index: 1100;
}

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

#header > .inner > .box2 > .inner {
  height: 100%;
  width: 100%;
  min-height: 56.8rem;
}

#header > .inner > .box2 > .inner > .box1 {
  height: 5.5rem;
  position: relative;
  width: 100%;
}

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

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

@media screen and (min-width: 1200px) and (min-height: 768px) {
  #header > .inner > .box2 > .inner > .box1 {
    left: 0;
    position: absolute;
    top: 0;
    z-index: 1;
  }
}

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

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

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

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

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

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

#header > .inner > .box2 > .inner > .box2 {
  height: calc(100% - 5.5rem);
  width: 100%;
}

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

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

@media screen and (min-width: 1200px) and (min-height: 768px) {
  #header > .inner > .box2 > .inner > .box2 {
    height: 100%;
  }
}

#header > .inner > .box2 > .inner > .box2 > .lst {
  height: 100%;
  width: 100%;
  counter-reset: number 0;
  display: flex;
  flex-direction: column;
  padding-bottom: 5.5rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box2 > .inner > .box2 > .lst {
    padding-bottom: 6.5rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box2 > .inner > .box2 > .lst {
    flex-direction: row;
    padding-bottom: 7.5rem;
  }
}

@media screen and (min-width: 1200px) and (min-height: 768px) {
  #header > .inner > .box2 > .inner > .box2 > .lst {
    padding-bottom: 0;
  }
}

#header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  height: 20%;
  width: 100%;
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) {
    height: 100%;
  }
}

#header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5).itm0 {
  background-color: #FCBB2A;
}

#header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5).itm1 {
  background-color: #e671c2;
}

#header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5).itm2 {
  background-color: #007aff;
}

#header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5).itm3 {
  background-color: #3cb371;
}

#header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5).itm4 {
  background-color: #9470e6;
}

#header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lnk {
  height: 100%;
  width: 100%;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media screen and (min-width: 768px) and (max-width: 1199px) and (min-height: 1024px) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lnk {
    width: calc(60% - 1.75rem);
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lnk {
    flex-direction: column;
    height: 50%;
    width: 100%;
  }
}

#header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lnk.hov {
  transition: opacity 0.35s;
}

#header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lnk.hov:hover {
  opacity: 0.5;
}

#header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lnk::before {
  color: #ffffff;
  content: "0" counter(number);
  counter-increment: number 1;
  font-family: "Open Sans", sans-serif;
  font-size: 4.2rem;
  font-weight: 600;
  height: auto;
  letter-spacing: 0.05em;
  margin-right: 1.5rem;
  width: auto;
}

@media screen and (max-width: 767px) and (min-aspect-ratio: 1 / 1) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lnk::before {
    font-size: 3.5rem;
  }
}

@media screen and (min-width: 768px) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lnk::before {
    font-size: 5.25rem;
    margin-right: 1.75rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lnk::before {
    display: block;
    font-size: 6.4rem;
    margin: 0 auto 2rem;
  }
}

#header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lnk > .txt1 {
  height: auto;
  width: 18rem;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lnk > .txt1 {
    width: 25rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lnk > .txt1 {
    width: 100%;
  }
}

#header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lnk > .txt1 > .txt1 {
  height: auto;
  width: 100%;
  margin-bottom: 1.125rem;
  color: #ffffff;
  display: block;
  font-size: 1.68rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lnk > .txt1 > .txt1 {
    margin-bottom: 1.3125rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lnk > .txt1 > .txt1 {
    margin-bottom: 1.5rem;
  }
}

@media screen and (max-width: 767px) and (min-aspect-ratio: 1 / 1) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lnk > .txt1 > .txt1 {
    font-size: 1.4rem;
    margin-bottom: 0.375rem;
  }
}

@media screen and (min-width: 768px) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lnk > .txt1 > .txt1 {
    font-size: 2.1rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lnk > .txt1 > .txt1 {
    font-size: 2.56rem;
  }
}

#header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lnk > .txt1 > .txt2 {
  height: auto;
  width: 100%;
  color: #ffffff;
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 1.26rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) and (min-aspect-ratio: 1 / 1) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lnk > .txt1 > .txt2 {
    font-size: 1.12rem;
  }
}

@media screen and (min-width: 768px) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lnk > .txt1 > .txt2 {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lnk > .txt1 > .txt2 {
    font-size: 1.76rem;
  }
}

#header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lst {
  display: none;
}

@media screen and (min-width: 768px) and (max-width: 1199px) and (min-height: 1024px) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lst {
    display: block;
    height: auto;
    width: calc(40% - 1.75rem);
  }
}

@media screen and (min-width: 1200px) and (min-height: 768px) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lst {
    display: block;
    height: 50%;
    width: 100%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) and (min-height: 1024px) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lst > .itm {
    height: auto;
    width: 100%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) and (min-height: 1024px) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lst > .itm:not(:last-of-type) {
    margin-bottom: 0.875rem;
  }
}

@media screen and (min-width: 1200px) and (min-height: 768px) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lst > .itm:not(:last-of-type) {
    margin-bottom: 2rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) and (min-height: 1024px) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lst > .itm > .lnk {
    height: auto;
    width: 100%;
    display: block;
  }
}

@media screen and (min-width: 1200px) and (min-height: 768px) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lst > .itm > .lnk {
    height: auto;
    width: 100%;
    display: block;
  }
}

#header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lst > .itm > .lnk.hov {
  transition: opacity 0.35s;
}

#header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lst > .itm > .lnk.hov:hover {
  opacity: 0.5;
}

@media screen and (min-width: 768px) and (max-width: 1199px) and (min-height: 1024px) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lst > .itm > .lnk > .txt1 {
    height: auto;
    width: 100%;
    display: block;
  }
}

@media screen and (min-width: 1200px) and (min-height: 768px) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lst > .itm > .lnk > .txt1 {
    height: auto;
    width: 100%;
    display: block;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) and (min-height: 1024px) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lst > .itm > .lnk > .txt1 > .txt1 {
    height: auto;
    width: 100%;
    color: #ffffff;
    display: block;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    font-weight: 500;
  }
}

@media screen and (min-width: 1200px) and (min-height: 768px) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm:not(.itm5) > .lst > .itm > .lnk > .txt1 > .txt1 {
    height: auto;
    width: 100%;
    color: #ffffff;
    display: block;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    font-weight: 500;
    text-align: center;
  }
}

#header > .inner > .box2 > .inner > .box2 > .lst > .itm5 {
  bottom: 0;
  height: 5.5rem;
  left: 0;
  position: absolute;
  width: 100%;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm5 {
    height: 6.5rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm5 {
    height: 7.5rem;
  }
}

@media screen and (min-width: 1200px) and (min-height: 768px) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm5 {
    bottom: 0;
    left: 40%;
    width: 20%;
  }
}

#header > .inner > .box2 > .inner > .box2 > .lst > .itm5 > .lnk {
  height: 100%;
  width: 100%;
  display: block;
  position: relative;
}

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

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

#header > .inner > .box2 > .inner > .box2 > .lst > .itm5 > .lnk > .txt1 {
  height: auto;
  width: 100%;
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

#header > .inner > .box2 > .inner > .box2 > .lst > .itm5 > .lnk > .txt1 > .txt1 {
  height: auto;
  width: 100%;
  margin-bottom: 0.75rem;
  font-size: 1.68rem;
  letter-spacing: 0.05em;
  color: #ffffff;
  font-weight: 700;
  display: block;
  text-align: center;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm5 > .lnk > .txt1 > .txt1 {
    margin-bottom: 0.875rem;
  }
}

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

@media screen and (min-width: 768px) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm5 > .lnk > .txt1 > .txt1 {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm5 > .lnk > .txt1 > .txt1 {
    font-size: 1.92rem;
  }
}

#header > .inner > .box2 > .inner > .box2 > .lst > .itm5 > .lnk > .txt1 > .txt2 {
  height: auto;
  width: 100%;
  font-size: 1.12rem;
  letter-spacing: 0.05em;
  color: #ffffff;
  display: block;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm5 > .lnk > .txt1 > .txt2 {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box2 > .inner > .box2 > .lst > .itm5 > .lnk > .txt1 > .txt2 {
    font-size: 1.28rem;
  }
}

#header > .inner > .box3 {
  height: 4.5rem;
  position: absolute;
  right: .5rem;
  top: .5rem;
  width: 4.5rem;
  z-index: 1105;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box3 {
    height: 5.25rem;
    right: .675rem;
    top: .675rem;
    width: 5.25rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box3 {
    height: 6rem;
    right: .75rem;
    top: .75rem;
    width: 6rem;
  }
}

#header > .inner > .box3 > .lnk {
  display: block;
  height: 3rem;
  left: .75rem;
  position: absolute;
  top: .75rem;
  width: 3rem;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box3 > .lnk {
    height: 3.5rem;
    left: .875rem;
    top: .875rem;
    width: 3.5rem;
  }
}

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

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

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

#header > .inner > .box3 > .lnk > [class^=box] {
  background-color: #ffffff;
  height: .6rem;
  left: calc(50% - .3rem);
  position: absolute;
  transition: background-color 0.35s;
  width: .6rem;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box3 > .lnk > [class^=box] {
    height: .7rem;
    left: calc(50% - .35rem);
    width: .7rem;
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box3 > .lnk > [class^=box] {
    height: .8rem;
    left: calc(50% - .4rem);
    width: .8rem;
  }
}

#header > .inner > .box3 > .lnk > [class^=box]::before, #header > .inner > .box3 > .lnk > [class^=box]::after {
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  content: '';
  display: block;
  position: absolute;
  transition: background-color 0.35s;
}

#header > .inner > .box3 > .lnk > [class^=box]::before {
  right: calc(100% + .6rem);
  top: 0;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box3 > .lnk > [class^=box]::before {
    right: calc(100% + .7rem);
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box3 > .lnk > [class^=box]::before {
    right: calc(100% + .8rem);
  }
}

#header > .inner > .box3 > .lnk > [class^=box]::after {
  left: calc(100% + .6rem);
  top: 0;
}

@media screen and (min-width: 768px) {
  #header > .inner > .box3 > .lnk > [class^=box]::after {
    left: calc(100% + .7rem);
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box3 > .lnk > [class^=box]::after {
    left: calc(100% + .8rem);
  }
}

#header > .inner > .box3 > .lnk > [class^=box].box1 {
  top: 0;
}

#header > .inner > .box3 > .lnk > [class^=box].box2 {
  top: calc(50% - .3rem);
}

@media screen and (min-width: 768px) {
  #header > .inner > .box3 > .lnk > [class^=box].box2 {
    top: calc(50% - .35rem);
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box3 > .lnk > [class^=box].box2 {
    top: calc(50% - .4rem);
  }
}

#header > .inner > .box3 > .lnk > [class^=box].box3 {
  top: calc(100% - .6rem);
}

@media screen and (min-width: 768px) {
  #header > .inner > .box3 > .lnk > [class^=box].box3 {
    top: calc(100% - .7rem);
  }
}

@media screen and (min-width: 1200px) {
  #header > .inner > .box3 > .lnk > [class^=box].box3 {
    top: calc(100% - .8rem);
  }
}

#header > .inner > .box3 > .lnk.active > .box1, #header > .inner > .box3 > .lnk.active > .box3 {
  background-color: transparent;
}

#header > .inner > .box3 > .lnk.active > .box2::before, #header > .inner > .box3 > .lnk.active > .box2::after {
  background-color: transparent;
}

@media screen and (min-width: 768px) {
  #header.type1 {
    background-color: transparent;
  }
}

@media screen and (min-width: 768px) {
  #header.type1 > .inner > .box1 {
    visibility: hidden;
  }
}

#header.scroll {
  position: fixed;
}

#header.scroll.type1 {
  background-color: #007aff;
}

@media screen and (min-width: 768px) {
  #header.scroll.type1 > .inner > .box1 {
    visibility: visible;
  }
}

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

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

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

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

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

#banner.type1 > .inner > .box1 > .box1.type1 > .box1 > [class^=box] {
  height: auto;
  width: 100%;
  position: relative;
}

#banner.type1 > .inner > .box1 > .box1.type1 > .box1 > [class^=box] > .lnk {
  height: auto;
  width: 100%;
  display: block;
}

#banner.type1 > .inner > .box1 > .box1.type1 > .box1 > [class^=box].hov {
  transition: opacity 0.35s;
}

#banner.type1 > .inner > .box1 > .box1.type1 > .box1 > [class^=box].hov:hover {
  opacity: 0.5;
}

#banner.type1 > .inner > .box1 > .box1.type1 > .box1 > [class^=box] > .box1, #banner.type1 > .inner > .box1 > .box1.type1 > .box1 > [class^=box] > .lnk > .box1 {
  height: auto;
  width: 100%;
  padding-top: 75%;
  position: relative;
}

@media screen and (min-width: 768px) {
  #banner.type1 > .inner > .box1 > .box1.type1 > .box1 > [class^=box] > .box1, #banner.type1 > .inner > .box1 > .box1.type1 > .box1 > [class^=box] > .lnk > .box1 {
    padding-top: 66.666%;
  }
}

@media screen and (min-width: 1200px) {
  #banner.type1 > .inner > .box1 > .box1.type1 > .box1 > [class^=box] > .box1, #banner.type1 > .inner > .box1 > .box1.type1 > .box1 > [class^=box] > .lnk > .box1 {
    padding-top: 56.25%;
  }
}

#banner.type1 > .inner > .box1 > .box1.type1 > .box1 > [class^=box] > .box1 > .box1, #banner.type1 > .inner > .box1 > .box1.type1 > .box1 > [class^=box] > .lnk > .box1 > .box1 {
  bottom: 0;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  position: absolute;
}

#banner.type1 > .inner > .box1 > .box1.type1 > .box1 > [class^=box] > .box1 > .box1 > .img, #banner.type1 > .inner > .box1 > .box1.type1 > .box1 > [class^=box] > .lnk > .box1 > .box1 > .img {
  height: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

#banner.type1 > .inner > .box1 > .box1.type1 > .box2 {
  left: 1.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  z-index: 10;
}

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

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

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

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

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

#banner.type1 > .inner > .box1 > .box1.type1 > .box2 > .lnk > .img {
  height: auto;
  width: 100%;
  display: block;
}

#banner.type1 > .inner > .box1 > .box1.type1 > .box3 {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  #banner.type1 > .inner > .box1 > .box1.type1 > .box3 {
    right: 1.75rem;
    width: 2.25rem;
  }
}

@media screen and (min-width: 1200px) {
  #banner.type1 > .inner > .box1 > .box1.type1 > .box3 {
    right: 2rem;
    width: 2.5rem;
  }
}

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

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

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

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

#banner.type1 > .inner > .box1 > .box1.type2 {
  height: auto;
  width: 100%;
  padding-top: 75%;
  position: relative;
}

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

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

#banner.type1 > .inner > .box1 > .box1.type2 > .box1 {
  bottom: 0;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  position: absolute;
}

#banner.type1 > .inner > .box1 > .box1.type2 > .box1 > .img {
  height: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

#banner.type1 > .inner > .box1 > .box2 {
  height: auto;
  width: 100%;
  padding: 0rem 1.5rem;
  left: 50%;
  max-width: 120rem;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

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

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

@media screen and (min-width: 768px) {
  #banner.type1 > .inner > .box1 > .box2 {
    align-items: flex-end;
    bottom: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    top: auto;
    transform: translate(-50%, 0);
  }
}

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

#banner.type1 > .inner > .box1 > .box2 > .box1 {
  height: auto;
  margin: 0 auto 3rem;
  width: 60%;
}

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

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

#banner.type1 > .inner > .box1 > .box2 > .box2 {
  height: auto;
  margin: 0 auto;
  width: 50%;
}

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

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

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

@media screen and (min-width: 768px) {
  #banner.type1 > .inner > .box2 {
    align-items: center;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    padding: 1.75rem;
  }
}

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

@media screen and (min-width: 768px) {
  #banner.type1 > .inner > .box2 > .box1 {
    height: auto;
    margin-right: 1.75rem;
    width: 18rem;
  }
}

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

@media screen and (min-width: 768px) {
  #banner.type1 > .inner > .box2 > .box1 > .lnk {
    height: auto;
    width: 100%;
    display: block;
  }
}

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

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

@media screen and (min-width: 768px) {
  #banner.type1 > .inner > .box2 > .box1 > .lnk > .img {
    height: auto;
    width: 100%;
    display: block;
  }
}

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

@media screen and (min-width: 768px) {
  #banner.type1 > .inner > .box2 > .box2 > .lst {
    height: auto;
    width: auto;
    align-items: center;
    display: flex;
    justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  #banner.type1 > .inner > .box2 > .box2 > .lst > .itm {
    height: auto;
    width: auto;
  }
}

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

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

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

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

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

@media screen and (min-width: 768px) {
  #banner.type1 > .inner > .box2 > .box2 > .lst > .itm > .lnk > .txt1 {
    height: auto;
    width: auto;
    display: block;
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  #banner.type1 > .inner > .box2 > .box2 > .lst > .itm > .lnk > .txt1 > .txt1 {
    height: auto;
    width: auto;
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.875rem;
    text-align: center;
    white-space: nowrap;
  }
}

@media screen and (min-width: 768px) and (min-width: 1200px) {
  #banner.type1 > .inner > .box2 > .box2 > .lst > .itm > .lnk > .txt1 > .txt1 {
    height: auto;
    width: auto;
    font-size: 1.92rem;
    margin-bottom: 1rem;
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  #banner.type1 > .inner > .box2 > .box2 > .lst > .itm > .lnk > .txt1 > .txt2 {
    height: auto;
    width: auto;
    display: block;
    font-family: "Open Sans", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) and (min-width: 1200px) {
  #banner.type1 > .inner > .box2 > .box2 > .lst > .itm > .lnk > .txt1 > .txt2 {
    font-size: 1.28rem;
  }
}

@media screen and (min-width: 768px) {
  #banner.type1 > .inner > .box2 > .box2 > .lst > .itm.itm5 {
    background-color: #007aff;
    color: #ffffff;
    padding: 0.875rem;
  }
}

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

#banner.type2 {
  height: auto;
  width: 100%;
  background-color: #007aff;
  overflow: hidden;
}

#banner.type2 > .inner {
  height: auto;
  width: 100%;
  padding: 12rem 1.5rem;
  overflow: hidden;
  position: relative;
}

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

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

#banner.type2 > .inner > .box1 {
  height: auto;
  width: 100%;
  bottom: 3rem;
  left: 0;
  position: absolute;
}

@media screen and (min-width: 768px) {
  #banner.type2 > .inner > .box1 {
    bottom: 3.5rem;
  }
}

@media screen and (min-width: 1200px) {
  #banner.type2 > .inner > .box1 {
    bottom: 4rem;
  }
}

#banner.type2 > .inner > .box1 > .par {
  height: auto;
  width: 100%;
  color: rgba(255, 255, 255, 0.1);
  font-size: 10.5rem;
  font-family: "Open Sans", sans-serif;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

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

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

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

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

#banner.type2 > .inner > .box2 > .phd > .txt1 {
  height: auto;
  width: auto;
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
  letter-spacing: 0.05em;
  color: #ffffff;
  display: inline-block;
  font-weight: 700;
  position: relative;
}

@media screen and (min-width: 768px) {
  #banner.type2 > .inner > .box2 > .phd > .txt1 {
    margin-bottom: 1.75rem;
  }
}

@media screen and (min-width: 1200px) {
  #banner.type2 > .inner > .box2 > .phd > .txt1 {
    margin-bottom: 2rem;
  }
}

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

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

#banner.type2 > .inner > .box2 > .phd > .txt1::before {
  background-color: #FCBB2A;
  bottom: 0;
  height: .8rem;
  content: '';
  display: block;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  #banner.type2 > .inner > .box2 > .phd > .txt1::before {
    height: .9rem;
  }
}

@media screen and (min-width: 1200px) {
  #banner.type2 > .inner > .box2 > .phd > .txt1::before {
    height: 1rem;
  }
}

#banner.type2 > .inner > .box2 > .phd > .txt1 > .txt1 {
  position: relative;
  z-index: 2;
}

#banner.type2 > .inner > .box2 > .shd {
  height: auto;
  width: 100%;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

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

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

#banner.type2 > .inner > .box3 {
  height: auto;
  width: 100%;
  padding: 1.5rem 1.5rem;
  bottom: 0;
  left: 0;
  position: absolute;
}

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

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

#banner.type2 > .inner > .box3 > .lst {
  height: auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

#banner.type2 > .inner > .box3 > .lst > .itm {
  height: auto;
  width: auto;
  font-size: 1.26rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #ffffff;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  #banner.type2 > .inner > .box3 > .lst > .itm {
    font-size: 1.35rem;
    line-height: 1.7;
  }
}

@media screen and (min-width: 1200px) {
  #banner.type2 > .inner > .box3 > .lst > .itm {
    font-size: 1.44rem;
    line-height: 1.8;
  }
}

#banner.type2 > .inner > .box3 > .lst > .itm:not(:first-of-type) {
  margin-left: 1.5rem;
}

@media screen and (min-width: 768px) {
  #banner.type2 > .inner > .box3 > .lst > .itm:not(:first-of-type) {
    margin-left: 1.75rem;
  }
}

@media screen and (min-width: 1200px) {
  #banner.type2 > .inner > .box3 > .lst > .itm:not(:first-of-type) {
    margin-left: 2rem;
  }
}

#banner.type2 > .inner > .box3 > .lst > .itm > .ico {
  color: #ffffff;
  margin-right: .25em;
}

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

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

#banner.type2 > .inner > .box3 > .lst > .itm > .txt {
  color: rgba(255, 255, 255, 0.5);
}

/*** #footer ***/
#footer {
  height: auto;
  width: 100%;
  background-color: #007aff;
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#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 > .img {
  height: auto;
  width: 100%;
  display: block;
}

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

#footer > .inner > .box1 > .box2 > [class^=par] {
  height: auto;
  width: 100%;
  font-size: 1.26rem;
  letter-spacing: 0.05em;
  line-height: 2.24;
  color: #ffffff;
  text-align: center;
}

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

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

@media screen and (min-width: 768px) {
  #footer > .inner > .box1 > .box2 > [class^=par] {
    text-align: left;
  }
}

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

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

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

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

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

#footer > .inner > .box2 > .lst {
  height: auto;
  margin: 0 auto;
  width: 29rem;
}

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

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

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

#footer > .inner > .box2 > .lst > .itm:not(:last-of-type) {
  margin-bottom: 2.25rem;
}

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

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

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

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

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

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

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

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

#footer > .inner > .box2 > .lst > .itm > .lst > .itm > .lnk {
  height: auto;
  width: auto;
  display: block;
}

#footer > .inner > .box2 > .lst > .itm > .lst > .itm > .lnk > .txt1 {
  height: auto;
  width: auto;
  display: block;
}

#footer > .inner > .box2 > .lst > .itm > .lst > .itm > .lnk > .txt1 > .txt1 {
  height: auto;
  width: auto;
  font-size: 1.26rem;
  letter-spacing: 0.05em;
  color: #ffffff;
  display: block;
  font-weight: 500;
  text-align: center;
}

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

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

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

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

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

#footer > .inner > .box2 > .lst > .itm.col2 > .lst > .itm {
  width: calc(50% - 1.5rem);
}

@media screen and (min-width: 768px) {
  #footer > .inner > .box2 > .lst > .itm.col2 > .lst > .itm {
    width: calc(50% - 1.75rem);
  }
}

@media screen and (min-width: 1200px) {
  #footer > .inner > .box2 > .lst > .itm.col2 > .lst > .itm {
    width: calc(50% - 2rem);
  }
}

#footer > .inner > .box2 > .lst > .itm.col2 > .lst > .itm > .lnk > .txt1 > .txt1 {
  font-size: 1.26rem;
  letter-spacing: 0.05em;
  line-height: 3.2;
  background-color: #ffffff;
  border-radius: 2em;
  color: #007aff;
  font-weight: 500;
  padding: 0 1em;
}

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

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

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

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

#footer > .inner > .box3 {
  height: 4.5rem;
  position: absolute;
  right: .5rem;
  top: 4.125rem;
  width: 4.5rem;
  z-index: 999;
}

@media screen and (min-width: 768px) {
  #footer > .inner > .box3 {
    height: 5.25rem;
    right: .675rem;
    top: 4.8125rem;
    width: 5.25rem;
  }
}

@media screen and (min-width: 1200px) {
  #footer > .inner > .box3 {
    height: 6rem;
    right: 2rem;
    top: 5.5rem;
    width: 6rem;
  }
}

#footer > .inner > .box3 > .lnk {
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  border-radius: 50%;
  display: block;
}

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

#footer > .inner > .box3 > .lnk > .txt1 > .txt1 {
  height: auto;
  width: 100%;
  font-size: 1.68rem;
  letter-spacing: 0.05em;
  color: #007aff;
  display: block;
  margin-bottom: .25em;
  text-align: center;
}

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

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

#footer > .inner > .box3 > .lnk > .txt1 > .txt2 {
  height: auto;
  width: 100%;
  font-size: 1.4rem;
  letter-spacing: 0em;
  color: #007aff;
  display: block;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

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

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

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

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

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

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

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

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

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

/*リンク集見出し*/
.link_container{padding:40px 0;}
.link_container h2{font-size: 27px;font-weight: bold;}
.link_container .txt1{position:relative;}
.link_container .txt1:before{background-color: #FCBB2A; bottom: 0; content: ''; display: block; height: .6rem; left: 0; position:absolute; width: 100%; z-index: -1;}

.goto_links{padding:80px 0; text-align:center; width:100%;}
.goto_links a{background-color: #007aff;    border: 0.5rem solid #000000; border-radius: 2.804rem; width: 24rem; font-weight: 500; font-size: 1.6rem; line-height: 2.88;color:#fff;letter-spacing: 0.05em; margin:0 auto; font-size:20px; padding:15px 50px;}
