@charset "UTF-8";
:root {
  --screen-height:100vh;
  --screen-width:0;
}

@counter-style middle-dot {
  system: cyclic;
  symbols: ・;
  suffix: " ";
  fallback: disc;
}
.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*********************************************************************
 * Hover Scale系.
 *********************************************************************/
@keyframes hover-scale {
  0%, 50%, 70% {
    transform: scale(1, 1) translate(0, 0);
  }
  10% {
    transform: scale(1.15, 1.15) translate(0, 0);
  }
  30% {
    transform: scale(0.95, 0.95) translate(0, 0);
  }
}
@keyframes hover-scale-small {
  0%, 50%, 70% {
    transform: scale(1, 1) translate(0, 0);
  }
  10% {
    transform: scale(1.01, 1.01) translate(0, 0);
  }
  30% {
    transform: scale(0.99, 0.99) translate(0, 0);
  }
}
@keyframes pin-fall {
  0% {
    opacity: 0;
    transform: translateY(-40%);
  }
  30% {
    opacity: 1;
    transform: translateY(0%);
  }
  50% {
    opacity: 1;
    transform: translateY(-15%);
  }
  60% {
    opacity: 1;
    transform: translateY(0%);
  }
  70% {
    opacity: 1;
    transform: translateY(-7%);
  }
  75% {
    opacity: 1;
    transform: translateY(0%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes shadow-fall {
  0% {
    opacity: 0;
    transform: translateY(-15%) translateX(40%);
  }
  30% {
    opacity: 1;
    transform: translateY(0) translateX(0%);
  }
  50% {
    opacity: 1;
    transform: translateY(-5%) translateX(15%);
  }
  60% {
    opacity: 1;
    transform: translateY(0) translateX(0%);
  }
  70% {
    opacity: 1;
    transform: translateY(-3%) translateX(7%);
  }
  75% {
    opacity: 1;
    transform: translateY(0) translateX(0%);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0%);
  }
}
/*********************************************************************
 * Bounce系.
 *********************************************************************/
@keyframes bounce {
  0% {
    opacity: 0;
    transform: translateY(30%) scale(1.1, 0.9);
  }
  45% {
    opacity: 1;
    transform: translateY(-5%);
  }
  70% {
    opacity: 1;
    transform: translateY(5%) scale(1.05, 0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1, 1);
  }
}
@keyframes bounce-shadow {
  0% {
    transform: translateX(0%) translateY(0%);
  }
  40% {
    transform: translateX(20%) translateY(-10%);
  }
  70% {
    transform: translateX(0%) translateY(0%);
  }
  80% {
    transform: translateX(0%) translateY(0%);
  }
  100% {
    transform: translateX(0%) translateY(0);
  }
}
@keyframes bounce-cloud {
  0% {
    transform: translateX(50%) scale(1.05);
  }
  50% {
    transform: translateX(50%) scale(1);
  }
  100% {
    transform: translateX(50%) scale(1.05);
  }
}
@keyframes bounce-char {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20%);
  }
  80% {
    transform: translateY(5%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bounce-scale {
  0% {
    transform: translateY(50%) scale(1, 1);
    opacity: 0;
  }
  20% {
    transform: translateY(-10%) scale(1, 1);
    opacity: 1;
  }
  35% {
    transform: translateY(5%) scale(1.1, 1);
    opacity: 1;
  }
  50% {
    transform: translateY(0) scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes op-button-scale {
  0% {
    transform: translateY(50%) scale(1, 1);
    opacity: 0;
  }
  20% {
    transform: translateY(-10%) scale(1.1, 1.1);
    opacity: 1;
  }
  35% {
    transform: translateY(0) scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes inview-scale {
  0% {
    transform: translateY(50px) scale(1, 1);
    opacity: 0;
  }
  20% {
    transform: translateY(-10px) scale(1, 1);
    opacity: 1;
  }
  35% {
    transform: translateY(0) scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes inview-scale-sp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes arrow-loop {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  45% {
    transform: translateX(16px);
    opacity: 0;
  }
  46% {
    transform: translateX(-16px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes arrow-loop-vertical {
  0% {
    transform: rotate(90deg) translateX(0);
    opacity: 1;
  }
  45% {
    transform: rotate(90deg) translateX(16px);
    opacity: 0;
  }
  46% {
    transform: rotate(90deg) translateX(-16px);
    opacity: 0;
  }
  100% {
    transform: rotate(90deg) translateX(0);
    opacity: 1;
  }
}
@keyframes raise-character {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes raise-character-svg {
  0% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(0);
  }
}
footer {
  background-color: #fff;
  width: 100%;
  min-width: 1280px;
}
@media screen and (max-width: 743px) {
  footer {
    min-width: 100%;
  }
}
footer a {
  text-decoration: none;
  color: #F6F8F9;
}
footer #footer-box.main-color {
  background-color: #009AB6;
}
footer #footer-box #footer-box-inner #footer-breadcrumb {
  margin-top: 80px;
}
@media screen and (max-width: 743px) {
  footer #footer-box #footer-box-inner #footer-breadcrumb {
    margin-top: 64px;
  }
}
footer #footer-box #footer-box-inner #footer-breadcrumb nav#breadcrumbs {
  padding: 32px 40px;
}
@media screen and (max-width: 743px) {
  footer #footer-box #footer-box-inner #footer-breadcrumb nav#breadcrumbs {
    padding: 0.7rem;
  }
}
footer #footer-box #footer-box-inner #footer-breadcrumb nav#breadcrumbs ul {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 743px) {
  footer #footer-box #footer-box-inner #footer-breadcrumb nav#breadcrumbs ul {
    width: 100%;
    overflow-x: auto;
  }
}
footer #footer-box #footer-box-inner #footer-breadcrumb nav#breadcrumbs ul li {
  position: relative;
}
@media screen and (max-width: 743px) {
  footer #footer-box #footer-box-inner #footer-breadcrumb nav#breadcrumbs ul li {
    white-space: nowrap;
  }
}
footer #footer-box #footer-box-inner #footer-breadcrumb nav#breadcrumbs ul li:nth-child(n+2) {
  margin-left: 0.5rem;
  padding-left: 1.7rem;
}
@media screen and (max-width: 743px) {
  footer #footer-box #footer-box-inner #footer-breadcrumb nav#breadcrumbs ul li:nth-child(n+2) {
    padding-left: 0.9rem;
  }
}
footer #footer-box #footer-box-inner #footer-breadcrumb nav#breadcrumbs ul li:nth-child(n+2)::before {
  content: "";
  background-image: url("../img/common/arrow.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center top;
  width: 20px;
  height: 20px;
  display: block;
  position: relative;
  position: absolute;
  left: 0;
  top: 2px;
}
@media screen and (max-width: 743px) {
  footer #footer-box #footer-box-inner #footer-breadcrumb nav#breadcrumbs ul li:nth-child(n+2)::before {
    background-image: url("../img/common/arrow.svg");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center top;
    width: 12px;
    height: 12px;
    display: block;
    position: relative;
    position: absolute;
    top: 10px;
    left: -2px;
  }
}
footer #footer-box #footer-box-inner #footer-breadcrumb nav#breadcrumbs ul li a {
  text-decoration: none;
  color: #2D3234;
  font-size: 1rem;
  font-weight: bold;
  transition: color 0.3s;
}
footer #footer-box #footer-box-inner #footer-breadcrumb nav#breadcrumbs ul li a:hover {
  color: #0AAFD4;
}
@media screen and (max-width: 743px) {
  footer #footer-box #footer-box-inner #footer-breadcrumb nav#breadcrumbs ul li a {
    font-size: 12px;
  }
}
footer #footer-box #footer-box-inner #footer-breadcrumb nav#breadcrumbs ul li.current::before {
  opacity: 0.3;
}
footer #footer-box #footer-box-inner #footer-breadcrumb nav#breadcrumbs ul li.current a {
  color: #A8B5B9;
}
footer #footer-box #footer-box-inner #footer-breadcrumb nav#breadcrumbs ul li.current {
  pointer-events: none;
}
footer #footer-box #footer-box-inner #footer-content-box {
  box-sizing: border-box;
  border-radius: 64px 64px 0 0;
  background-color: #2D3234;
  padding: 56px 40px;
}
@media screen and (max-width: 743px) {
  footer #footer-box #footer-box-inner #footer-content-box {
    border-radius: 40px 40px 0 0;
    padding: 2rem 1rem;
  }
}
footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #636B6E;
  padding-bottom: 3.5rem;
}
@media screen and (max-width: 743px) {
  footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box {
    display: block;
    padding-bottom: 26px;
  }
}
footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box #footer-content-left figure {
  position: relative;
}
@media screen and (min-width: 744px) {
  footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box #footer-content-left figure {
    max-width: 834px;
  }
  footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box #footer-content-left figure::before {
    content: "";
    background-image: url("../img/footer/footer-overlay.png");
    background-size: 757px 352px;
    background-repeat: no-repeat;
    background-position: center top;
    width: 100%;
    height: 352px;
    display: block;
    position: relative;
    position: absolute;
    background-size: 100%;
    left: -40px;
    top: 26px;
  }
}
@media screen and (max-width: 743px) {
  footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box #footer-content-left figure::before {
    content: "";
    background-image: url("../img/footer/footer-overlay.png");
    background-size: 757px 352px;
    background-repeat: no-repeat;
    background-position: center top;
    width: 100%;
    height: 352px;
    display: block;
    position: relative;
    position: absolute;
    background-size: 100%;
    left: -4vw;
    top: 3vw;
  }
}
footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box #footer-content-left figure img {
  width: 100%;
}
footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box #footer-content-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 2rem;
}
@media screen and (max-width: 743px) {
  footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box #footer-content-right {
    margin-left: 0;
    margin-top: 3.3rem;
  }
}
footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box #footer-content-right .row {
  text-align: right;
}
@media screen and (max-width: 743px) {
  footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box #footer-content-right .row:nth-child(n+2) {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 743px) {
  footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box #footer-content-right .row span.small {
    font-size: 0.75rem;
  }
}
footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box #footer-content-right .row nav#footer-l-buttons {
  margin-bottom: 1rem;
}
@media screen and (max-width: 743px) {
  footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box #footer-content-right .row nav#footer-l-buttons {
    margin-bottom: 0.75rem;
  }
}
footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box #footer-content-right .row nav#footer-l-buttons ul {
  display: flex;
}
@media screen and (max-width: 743px) {
  footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box #footer-content-right .row nav#footer-l-buttons ul {
    justify-content: space-between;
  }
}
@media screen and (min-width: 744px) {
  footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box #footer-content-right .row nav#footer-l-buttons ul li:nth-child(2) {
    margin-left: 1rem;
  }
}
footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box #footer-content-right .row nav#footer-l-buttons ul li:hover {
  background-color: #009AB6;
}
footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box #footer-content-right .row nav#footer-l-buttons ul li:hover a {
  color: #F6F8F9;
}
footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box #footer-content-right .row nav#footer-l-buttons ul li:hover a svg circle {
  fill: #F6F8F9;
}
footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box #footer-content-right .row nav#footer-l-buttons ul li:hover a svg path {
  fill: #009AB6;
}
footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box #footer-content-right .row nav#footer-l-buttons ul li a {
  width: 184px;
  height: 120px;
}
footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box #footer-content-right .row nav#footer-l-buttons ul li a svg {
  margin-left: 0.5rem;
  width: 40px;
  height: 40px;
}
footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box #footer-content-right .row nav#footer-l-buttons ul li a svg circle, footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box #footer-content-right .row nav#footer-l-buttons ul li a svg path {
  transition: fill 0.3s;
}
@media screen and (max-width: 743px) {
  footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box #footer-content-right .row nav#footer-l-buttons ul li a {
    width: 44.266vw;
    height: 96px;
    font-size: 0.89rem;
    justify-content: space-between;
  }
  footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box #footer-content-right .row nav#footer-l-buttons ul li a svg {
    width: 32px;
    height: 32px;
  }
}
footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box #footer-content-right .row .btn.transparent-white {
  transition: border-color 0.3s;
}
footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box #footer-content-right .row .btn.transparent-white:hover {
  border-color: #009AB6;
}
footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box #footer-content-right .row .btn.transparent-white:hover a {
  color: #009AB6;
}
footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box #footer-content-right .row .btn.transparent-white:hover a svg path {
  fill: #009AB6;
}
footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box #footer-content-right .row .btn.transparent-white a {
  width: 180px;
  height: 52px;
  box-sizing: border-box;
  justify-content: space-between;
}
footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box #footer-content-right .row .btn.transparent-white a svg path {
  transition: fill 0.3s;
}
@media screen and (max-width: 743px) {
  footer #footer-box #footer-box-inner #footer-content-box #footer-content-flex-box #footer-content-right .row .btn.transparent-white a {
    width: 43.466vw;
    height: 48px;
    font-size: 0.75rem;
    justify-content: space-between;
  }
}
footer #footer-box #footer-box-inner #footer-content-box #footer-links-box {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
footer #footer-box #footer-box-inner #footer-content-box #footer-links-box #footer-links-left nav#footer-links ul {
  display: flex;
}
@media screen and (max-width: 743px) {
  footer #footer-box #footer-box-inner #footer-content-box #footer-links-box #footer-links-left nav#footer-links ul {
    display: block;
  }
}
footer #footer-box #footer-box-inner #footer-content-box #footer-links-box #footer-links-left nav#footer-links ul li {
  line-height: 1;
}
footer #footer-box #footer-box-inner #footer-content-box #footer-links-box #footer-links-left nav#footer-links ul li:nth-child(n+2) {
  margin-left: 2rem;
}
@media screen and (max-width: 743px) {
  footer #footer-box #footer-box-inner #footer-content-box #footer-links-box #footer-links-left nav#footer-links ul li:nth-child(n+2) {
    margin-left: 0;
    margin-top: 0.75rem;
  }
}
@media screen and (max-width: 743px) {
  footer #footer-box #footer-box-inner #footer-content-box #footer-links-box #footer-links-left nav#footer-links ul li a {
    font-size: 0.625rem;
  }
}
footer #footer-box #footer-box-inner #footer-content-box #footer-links-box #footer-links-left nav#footer-links ul li a {
  transition: color 0.3s;
}
footer #footer-box #footer-box-inner #footer-content-box #footer-links-box #footer-links-left nav#footer-links ul li a:hover {
  color: #009AB6 !important;
}
footer #footer-box #footer-box-inner #footer-content-box #footer-links-box #footer-links-left nav#footer-links ul li a.ot-sdk-show-settings {
  text-decoration: none !important;
  padding: 0 !important;
  line-height: 1 !important;
  color: #F6F8F9;
  transition: color 0.3s !important;
}
footer #footer-box #footer-box-inner #footer-content-box #footer-links-box #footer-links-left nav#footer-links ul li a.ot-sdk-show-settings::before {
  display: none;
}
footer #footer-box #footer-box-inner #footer-content-box #footer-links-box #footer-links-right {
  text-align: right;
}
footer #footer-box #footer-box-inner #footer-content-box #footer-links-box #footer-links-right p.copyright {
  margin-top: 0.5rem;
  color: #F6F8F9;
  font-size: 0.625rem;
}
@media screen and (max-width: 743px) {
  footer #footer-box #footer-box-inner #footer-content-box #footer-links-box #footer-links-right p.copyright {
    font-size: 0.5rem;
  }
}

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