@charset "UTF-8";
@keyframes fadeLeftIn {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeRightIn {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fade-in {
  opacity: 1;
  animation: fadeIn 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.fade-out {
  opacity: 0;
  animation: fadeOut 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.fade-left-in {
  opacity: 1;
  animation: fadeLeftIn 1s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.fade-right-in {
  opacity: 1;
  animation: fadeRightIn 1s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.fade-slow {
  opacity: 1;
  animation: fadeIn 1s ease 0.5s 1 normal;
  animation-fill-mode: forwards;
}

.fade-init {
  opacity: 0;
}

@keyframes slideLeft {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(5px);
  }
}
@keyframes slideLeftReturn {
  0% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0px);
  }
}
.slide-left {
  animation: slideLeft 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.slide-left-return {
  animation: slideLeftReturn 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes fadeInDropDown {
  0% {
    opacity: 0.8;
    height: 0;
  }
  100% {
    opacity: 1;
    height: 100vh;
  }
}
@keyframes fadeOutDropDown {
  0% {
    opacity: 1;
    height: 100vh;
  }
  100% {
    opacity: 0;
    height: 0;
    display: none;
  }
}
.fade-in-drop-down {
  display: inherit !important;
  animation: fadeInDropDown 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.fade-out-drop-down {
  display: inherit !important;
  animation: fadeOutDropDown 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.fade-in-drop-down-init {
  opacity: 0;
  display: none;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
@keyframes Bounce {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  60% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.bounce-init {
  opacity: 0;
}

.bounce {
  display: inline-block !important;
  animation: Bounce 0.6s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes BounceRightIn {
  0% {
    opacity: 0;
    transform: scale(1) translateX(50px);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1) translateX(0px);
  }
}
.bounce-right-in {
  display: inline-block !important;
  animation: BounceRightIn 0.6s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes BounceLeftIn {
  0% {
    opacity: 0;
    transform: scale(1) translateX(-50px);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1) translateX(0px);
  }
}
.bounce-left-in {
  display: inline-block !important;
  animation: BounceLeftIn 0.6s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes DropDownAnim {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  20% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.drop-down-anim {
  display: inline-block !important;
  animation: DropDownAnim 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes DropUpAnim {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  20% {
    opacity: 0.2;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}
.drop-up-anim {
  display: inline-block !important;
  animation: DropUpAnim 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes RightToLeftWidth {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.right-to-left-width {
  display: inline-block !important;
  animation: RightToLeftWidth 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes LeftToRightWidth {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}
.left-to-right-width {
  display: inline-block !important;
  animation: LeftToRightWidth 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes MoveUp {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}
.anim-move-up {
  animation: MoveUp 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes MoveDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.anim-move-down {
  animation: MoveDown 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

body, *, span, div {
  font-family: "游ゴシック体", YuGothic, sans-serif;
}

body {
  color: #454545;
  background-color: #FAFAFA;
}

#page {
  margin-top: 6rem;
}
@media screen and (max-width: 600px) {
  #page {
    margin-top: 0;
  }
}
@media screen and (min-width: 601px) and (max-width: 1023px) {
  #page {
    margin-top: 0;
  }
}

#bg-video {
  max-width: 1200px;
}

#animate-canvas {
  transform-origin: center;
}

.site-content.header-margin {
  margin-top: 10rem;
}
@media screen and (max-width: 600px) {
  .site-content.header-margin {
    margin-top: 0;
  }
}
@media screen and (min-width: 601px) and (max-width: 1023px) {
  .site-content.header-margin {
    margin-top: 0;
  }
}

.main-top.is-smoothscroll {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .main-top.is-smoothscroll {
    height: 100vh;
    overflow: hidden;
  }
}
@media screen and (min-width: 601px) and (max-width: 1023px) {
  .main-top.is-smoothscroll {
    height: 100vh;
    overflow: hidden;
  }
}

.anim-top {
  overflow: hidden;
  text-align: center;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
}

.anim-top-sp {
  overflow: hidden;
  text-align: center;
  margin: auto;
  position: absolute;
  inset: 0px;
  overflow: hidden;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.content {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  text-align: center;
  background: #FAFAFA 0% 0% no-repeat padding-box;
  max-width: 100%;
  padding: 0 10%;
  margin: auto;
}
@media screen and (min-width: 601px) and (max-width: 1023px) {
  .content {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 600px) {
  .content {
    max-width: 100%;
    padding: 0 5%;
  }
}
.content .topic {
  margin-top: 2rem;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}
@media screen and (max-width: 600px) {
  .content .topic {
    margin-top: 0;
  }
}
@media screen and (max-width: 600px) {
  .content .topic > * {
    padding: 0;
  }
}
@media screen and (max-width: 600px) {
  .content .topic.revert-sp {
    display: flex;
    flex-direction: column-reverse;
  }
}
.content .topic .image {
  margin-top: 5rem;
  width: 34rem;
}
@media screen and (max-width: 600px) {
  .content .topic .image {
    width: 100%;
    margin-top: 3rem;
  }
}
.content .topic .comment-area {
  text-align: left;
  background-color: #ffffffcc;
  padding: 2rem;
  font-size: 12px;
  width: 560px;
  height: 100%;
}
@media screen and (min-width: 601px) and (max-width: 1023px) {
  .content .topic .comment-area {
    width: 50vw;
  }
}
@media screen and (max-width: 600px) {
  .content .topic .comment-area {
    padding: 1rem;
    width: 100%;
  }
}
.content .topic .comment-area .sub-title {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .content .topic .comment-area .sub-title {
    font-size: 16px;
  }
}
.content .topic .comment-area .description {
  font-size: 14px;
  line-height: 2rem;
}
@media screen and (max-width: 600px) {
  .content .topic .comment-area .description {
    font-size: 12px;
    line-height: 1.5rem;
  }
}
.content .topic1 {
  position: absolute;
  top: 2em;
  bottom: 2rem;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .content .topic1 {
    position: inherit;
  }
}
.content .topic2 {
  position: absolute;
  top: 2rem;
  right: 0;
}
@media screen and (max-width: 600px) {
  .content .topic2 {
    position: inherit;
  }
}
.content .brand-area {
  font-size: 15px;
  line-height: 1.5rem;
  max-width: 1000px;
}
@media screen and (min-width: 601px) and (max-width: 1023px) {
  .content .brand-area {
    text-align: left;
    font-size: 12px;
    width: 80%;
  }
}
@media screen and (max-width: 600px) {
  .content .brand-area {
    width: 90%;
  }
}
.content .brand-area .message {
  display: flex;
  flex-direction: column;
  line-height: 2rem;
  text-align: center;
}
@media screen and (min-width: 601px) and (max-width: 1023px) {
  .content .brand-area .message {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .content .brand-area .message {
    display: block;
    font-size: 0.8rem;
    line-height: 1.5rem;
    text-align: left;
    width: 90%;
    margin: auto;
  }
}
.content .border-area {
  display: flex;
  max-width: 1000px;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
.content .border-area hr.border {
  width: 100%;
}
.content .border-area span.border-label {
  position: relative;
  padding: 0 1rem;
  margin: auto;
  text-align: center;
  font-size: 25px;
  font-weight: 300;
  z-index: 99;
}
.content .border-area-1 {
  margin: 1rem 0;
}
.content .links-area {
  margin-top: 3rem;
  margin-bottom: 8rem;
  max-width: 1000px;
}
@media screen and (max-width: 600px) {
  .content .links-area {
    margin-bottom: 0;
  }
}
.content .links-area .links {
  position: relative;
  margin-bottom: 1rem;
  cursor: pointer;
}
.content .links-area .links:hover {
  opacity: 0.7;
}
@media screen and (max-width: 600px) {
  .content .links-area .links {
    padding: 0;
  }
}
.content .links-area .links .logo-image--hover {
  -ms-filter: blur(2px);
  filter: blur(2px);
}
.content .links-area .links .description {
  width: 100%;
  padding: 1rem 3rem 1rem 1rem;
  background-color: #ffffffc2;
  text-align: left;
  min-height: 8rem;
  backdrop-filter: blur(3px);
  position: relative;
}
@media screen and (min-width: 601px) and (max-width: 1023px) {
  .content .links-area .links .description {
    bottom: 0;
    top: auto;
    min-height: 9rem;
  }
}
@media screen and (max-width: 600px) {
  .content .links-area .links .description {
    top: auto;
  }
}
.content .links-area .links .description .arrow {
  position: absolute;
  right: 1rem;
  top: 2.5rem;
  font-weight: 300;
  font-size: 22px;
}
.content .links-area .links .description .sub-title {
  font-weight: bold;
  display: flex;
  align-items: center;
}
.content .links-area .links .description .sub-title .explanation {
  margin-left: 0.5rem;
}
@media screen and (max-width: 600px) {
  .content .links-area .links .description .sub-title .explanation {
    font-size: 0.5rem;
    white-space: nowrap;
  }
}
.content .links-area .links .description .sub-title > img {
  height: 1rem;
}
.content .links-area .links .description .comment {
  font-size: 12px;
}
.content .links-area .links .columns {
  padding: 0;
}

.bg {
  position: fixed;
  opacity: 0;
  transform: translate3d(0px, 0px, 0px);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.footer {
  font-size: 12px;
  margin-bottom: 2rem;
}
.footer .copyright {
  margin: 0.5rem 0;
}
.footer .footer-links:not(:first-child)::before {
  content: "|";
  margin: 0.5rem;
}

.is-none {
  display: none !important;
}

@media screen and (max-width: 600px) {
  .is-sm {
    display: inherit !important;
  }
}

@media screen and (min-width: 601px) and (max-width: 1023px) {
  .is-md {
    display: inherit !important;
  }
}

@media screen and (min-width: 1024px) {
  .is-lg {
    display: inherit !important;
  }
}

@keyframes fadeLeftIn {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeRightIn {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fade-in {
  opacity: 1;
  animation: fadeIn 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.fade-out {
  opacity: 0;
  animation: fadeOut 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.fade-left-in {
  opacity: 1;
  animation: fadeLeftIn 1s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.fade-right-in {
  opacity: 1;
  animation: fadeRightIn 1s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.fade-slow {
  opacity: 1;
  animation: fadeIn 1s ease 0.5s 1 normal;
  animation-fill-mode: forwards;
}

.fade-init {
  opacity: 0;
}

@keyframes slideLeft {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(5px);
  }
}
@keyframes slideLeftReturn {
  0% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0px);
  }
}
.slide-left {
  animation: slideLeft 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.slide-left-return {
  animation: slideLeftReturn 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes fadeInDropDown {
  0% {
    opacity: 0.8;
    height: 0;
  }
  100% {
    opacity: 1;
    height: 100vh;
  }
}
@keyframes fadeOutDropDown {
  0% {
    opacity: 1;
    height: 100vh;
  }
  100% {
    opacity: 0;
    height: 0;
    display: none;
  }
}
.fade-in-drop-down {
  display: inherit !important;
  animation: fadeInDropDown 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.fade-out-drop-down {
  display: inherit !important;
  animation: fadeOutDropDown 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.fade-in-drop-down-init {
  opacity: 0;
  display: none;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
@keyframes Bounce {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  60% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.bounce-init {
  opacity: 0;
}

.bounce {
  display: inline-block !important;
  animation: Bounce 0.6s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes BounceRightIn {
  0% {
    opacity: 0;
    transform: scale(1) translateX(50px);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1) translateX(0px);
  }
}
.bounce-right-in {
  display: inline-block !important;
  animation: BounceRightIn 0.6s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes BounceLeftIn {
  0% {
    opacity: 0;
    transform: scale(1) translateX(-50px);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1) translateX(0px);
  }
}
.bounce-left-in {
  display: inline-block !important;
  animation: BounceLeftIn 0.6s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes DropDownAnim {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  20% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.drop-down-anim {
  display: inline-block !important;
  animation: DropDownAnim 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes DropUpAnim {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  20% {
    opacity: 0.2;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}
.drop-up-anim {
  display: inline-block !important;
  animation: DropUpAnim 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes RightToLeftWidth {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.right-to-left-width {
  display: inline-block !important;
  animation: RightToLeftWidth 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes LeftToRightWidth {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}
.left-to-right-width {
  display: inline-block !important;
  animation: LeftToRightWidth 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes MoveUp {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}
.anim-move-up {
  animation: MoveUp 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes MoveDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.anim-move-down {
  animation: MoveDown 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.anim-top .message-area {
  display: none;
}

.anim-top .anim-black-filter, .anim-top-sp .anim-black-filter {
  background-color: black;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  z-index: 10;
}
.anim-top .message-area, .anim-top-sp .message-area {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  z-index: 20;
}
.anim-top .message-area .message1, .anim-top-sp .message-area .message1 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  text-shadow: #000 1px 0 10px;
}
@media screen and (min-width: 601px) and (max-width: 1023px) {
  .anim-top .message-area .message1, .anim-top-sp .message-area .message1 {
    font-size: 1rem;
  }
}
.anim-top .message-area .message2, .anim-top-sp .message-area .message2 {
  font-size: 1rem;
  text-align: center;
  line-height: 4rem;
  text-shadow: #000 1px 0 10px;
}
@media screen and (min-width: 601px) and (max-width: 1023px) {
  .anim-top .message-area .message2, .anim-top-sp .message-area .message2 {
    font-size: 0.8rem;
    line-height: 2rem;
  }
}

.anim-top {
  top: 0;
  bottom: 0;
}
.anim-top .scroll-down {
  position: fixed;
  left: 50%;
  bottom: 10px;
  height: 50px;
  z-index: 999;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
}
.anim-top .scroll-down > span {
  position: absolute;
  left: -15px;
  top: -15px;
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}
.anim-top .scroll-down::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 30px;
  background: #eee;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}
.anim-top .scroll-down .scroll-down-text {
  font-size: 10px;
}
.anim-top .scroll-down .space {
  margin-top: 0.4rem;
  margin-bottom: 0.5rem;
}

#anim-video {
  transform-origin: center;
}
@media screen and (min-width: 601px) and (max-width: 1023px) {
  #anim-video {
    height: 1080px;
  }
}
@media screen and (max-width: 600px) {
  #anim-video {
    height: 1080px;
  }
}
@media screen and (max-height: 840px) {
  #anim-video {
    margin: auto;
  }
}
@media screen and (min-width: 1600px) {
  #anim-video {
    margin: auto;
  }
}

.anim-top-sp #anim-video-md {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
}
.anim-top-sp .message-area {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  padding: 2rem;
}
.anim-top-sp .message-area .message1 {
  font-size: 2rem;
}
@media screen and (max-width: 600px) {
  .anim-top-sp .message-area .message1 {
    font-size: 1rem;
  }
}
.anim-top-sp .message-area .message2 {
  font-size: 1.5rem;
  line-height: 4rem;
}
@media screen and (max-width: 600px) {
  .anim-top-sp .message-area .message2 {
    font-size: 0.8rem;
    line-height: 2rem;
  }
}
.anim-top-sp .scroll-down {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  cursor: pointer;
}
@media screen and (min-width: 601px) and (max-width: 1023px) {
  .anim-top-sp .scroll-down {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .anim-top-sp .scroll-down {
    display: none;
  }
}

@keyframes fadeLeftIn {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeRightIn {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fade-in {
  opacity: 1;
  animation: fadeIn 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.fade-out {
  opacity: 0;
  animation: fadeOut 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.fade-left-in {
  opacity: 1;
  animation: fadeLeftIn 1s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.fade-right-in {
  opacity: 1;
  animation: fadeRightIn 1s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.fade-slow {
  opacity: 1;
  animation: fadeIn 1s ease 0.5s 1 normal;
  animation-fill-mode: forwards;
}

.fade-init {
  opacity: 0;
}

@keyframes slideLeft {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(5px);
  }
}
@keyframes slideLeftReturn {
  0% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0px);
  }
}
.slide-left {
  animation: slideLeft 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.slide-left-return {
  animation: slideLeftReturn 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes fadeInDropDown {
  0% {
    opacity: 0.8;
    height: 0;
  }
  100% {
    opacity: 1;
    height: 100vh;
  }
}
@keyframes fadeOutDropDown {
  0% {
    opacity: 1;
    height: 100vh;
  }
  100% {
    opacity: 0;
    height: 0;
    display: none;
  }
}
.fade-in-drop-down {
  display: inherit !important;
  animation: fadeInDropDown 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.fade-out-drop-down {
  display: inherit !important;
  animation: fadeOutDropDown 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.fade-in-drop-down-init {
  opacity: 0;
  display: none;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
@keyframes Bounce {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  60% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.bounce-init {
  opacity: 0;
}

.bounce {
  display: inline-block !important;
  animation: Bounce 0.6s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes BounceRightIn {
  0% {
    opacity: 0;
    transform: scale(1) translateX(50px);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1) translateX(0px);
  }
}
.bounce-right-in {
  display: inline-block !important;
  animation: BounceRightIn 0.6s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes BounceLeftIn {
  0% {
    opacity: 0;
    transform: scale(1) translateX(-50px);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1) translateX(0px);
  }
}
.bounce-left-in {
  display: inline-block !important;
  animation: BounceLeftIn 0.6s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes DropDownAnim {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  20% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.drop-down-anim {
  display: inline-block !important;
  animation: DropDownAnim 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes DropUpAnim {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  20% {
    opacity: 0.2;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}
.drop-up-anim {
  display: inline-block !important;
  animation: DropUpAnim 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes RightToLeftWidth {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.right-to-left-width {
  display: inline-block !important;
  animation: RightToLeftWidth 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes LeftToRightWidth {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}
.left-to-right-width {
  display: inline-block !important;
  animation: LeftToRightWidth 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes MoveUp {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}
.anim-move-up {
  animation: MoveUp 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes MoveDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.anim-move-down {
  animation: MoveDown 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

#page-index2 .swiper {
  padding-bottom: 100px;
}
#page-index2 .swiper-sp {
  position: relative;
  padding-bottom: 4rem;
  overflow: hidden;
}
#page-index2 .swiper-horizontal > .swiper-pagination-bullets, #page-index2 .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 70px;
}
@media screen and (max-width: 600px) {
  #page-index2 .swiper-horizontal > .swiper-pagination-bullets, #page-index2 .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 30px;
  }
}
#page-index2 .swiper-pagination-bullet {
  border: 1px solid black;
  background-color: white;
}
#page-index2 .swiper-pagination-bullet-active {
  background-color: black;
}
#page-index2 .news {
  max-width: 600px;
  margin: 0.5rem auto;
}
@media screen and (max-width: 600px) {
  #page-index2 .news {
    padding: 0 2rem;
  }
}
#page-index2 .news .news-area {
  margin-bottom: 1rem;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  #page-index2 .news .news-area {
    font-size: 0.8rem;
  }
}
#page-index2 .news .news-area .post-tag {
  color: white;
  background-color: #A9C8CE;
  border-radius: 1rem;
  padding: 0 0.4rem;
  font-size: 0.7rem;
  margin-right: 1rem;
  display: inline-flex;
  align-items: center;
  height: 1.2rem;
  margin-top: 1px;
  transform: translateY(-2px);
}
@media screen and (max-width: 600px) {
  #page-index2 .news .news-area .news-title {
    margin-top: 0.5rem;
  }
}
#page-index2 .news .more-news-area {
  text-align: right;
  margin-top: 1rem;
}
#page-index2 .news .more-news-area a {
  color: #454545;
  font-size: 0.8rem;
  text-decoration: none;
}
#page-index2 .news .more-news-area a:after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url("/wp-content/themes/harukado-1/assets/images/left_02.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  color: #454545;
  vertical-align: text-bottom;
}
#page-index2 .brand-area {
  font-size: 15px;
  line-height: 1.5rem;
  max-width: 1000px;
}
@media screen and (min-width: 601px) and (max-width: 1023px) {
  #page-index2 .brand-area {
    text-align: left;
    font-size: 12px;
    width: 80%;
  }
}
@media screen and (max-width: 600px) {
  #page-index2 .brand-area {
    width: 90%;
  }
}
#page-index2 .brand-area .message {
  display: flex;
  flex-direction: column;
  line-height: 2rem;
  text-align: center;
}
@media screen and (min-width: 601px) and (max-width: 1023px) {
  #page-index2 .brand-area .message {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  #page-index2 .brand-area .message {
    display: block;
    font-size: 0.8rem;
    line-height: 1.5rem;
    text-align: left;
    width: 90%;
    margin: auto;
  }
}
#page-index2 .border-area {
  display: flex;
  max-width: 1000px;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 600px) {
  #page-index2 .border-area {
    padding: 0 2rem;
  }
}
#page-index2 .border-area hr.border {
  width: 100%;
}
#page-index2 .border-area span.border-label {
  position: relative;
  padding: 0 1rem;
  margin: auto;
  text-align: center;
  font-size: 25px;
  font-weight: 300;
  z-index: 99;
}
#page-index2 .links-area {
  margin-top: 3rem;
  margin-bottom: 8rem;
  max-width: 1000px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 600px) {
  #page-index2 .links-area {
    padding: 0 2rem;
  }
}
#page-index2 .links-area .logo-area {
  text-align: center;
  padding: 1.5rem;
}
#page-index2 .links-area .logo-area .logo {
  height: 1.5rem;
}
#page-index2 .links-area .logo-area .logo.logo-jupia {
  height: 1.8rem;
}
@media screen and (max-width: 600px) {
  #page-index2 .links-area {
    margin-bottom: 0;
  }
}
#page-index2 .links-area .links {
  position: relative;
  margin-bottom: 1rem;
  cursor: pointer;
}
#page-index2 .links-area .links > img {
  width: 100%;
}
#page-index2 .links-area .links:hover {
  opacity: 0.7;
}
@media screen and (max-width: 600px) {
  #page-index2 .links-area .links {
    padding: 0;
  }
}
#page-index2 .links-area .links .logo-image--hover {
  -ms-filter: blur(2px);
  filter: blur(2px);
}
#page-index2 .links-area .links .description {
  width: 100%;
  padding: 1rem 3rem 1rem 1rem;
  background-color: #ffffffc2;
  text-align: left;
  min-height: 5rem;
  backdrop-filter: blur(3px);
  position: relative;
}
@media screen and (min-width: 601px) and (max-width: 1023px) {
  #page-index2 .links-area .links .description {
    bottom: 0;
    top: auto;
    min-height: 9rem;
  }
}
@media screen and (max-width: 600px) {
  #page-index2 .links-area .links .description {
    top: auto;
  }
}
#page-index2 .links-area .links .description .arrow {
  position: absolute;
  right: 1rem;
  top: 0.5rem;
  font-weight: 300;
  font-size: 22px;
}
@media screen and (max-width: 600px) {
  #page-index2 .links-area .links .description .arrow {
    top: 2.5rem;
  }
}
#page-index2 .links-area .links .description .arrow > img {
  height: 15px;
  width: 15px;
}
#page-index2 .links-area .links .description .sub-title {
  font-weight: bold;
  display: flex;
  align-items: center;
}
#page-index2 .links-area .links .description .sub-title .explanation {
  margin-left: 0.5rem;
}
@media screen and (max-width: 600px) {
  #page-index2 .links-area .links .description .sub-title .explanation {
    font-size: 0.5rem;
    white-space: nowrap;
  }
}
#page-index2 .links-area .links .description .sub-title > img {
  height: 1rem;
}
#page-index2 .links-area .links .description .comment {
  font-size: 12px;
}
#page-index2 .links-area .links .columns {
  padding: 0;
}
#page-index2 .about-wrapper .title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
#page-index2 .about-wrapper .message {
  line-height: 3rem;
  text-align: center;
}
@media screen and (max-width: 600px) {
  #page-index2 .about-wrapper .message {
    line-height: 2rem;
  }
}
@media screen and (max-width: 600px) {
  #page-index2 .about-wrapper .message .line {
    font-size: 12px;
  }
}
#page-index2 .about-wrapper .about-image {
  margin-top: 5rem;
}
#page-index2 .about-wrapper .about-image > img {
  width: 100%;
}
#page-index2 .about-wrapper .about-more {
  margin: 5rem 0;
}
#page-index2 .about-wrapper .about-more-area {
  text-align: center;
  margin-top: 4rem;
}
#page-index2 .about-wrapper .about-more-area .about-more-button {
  border: 1px solid black;
  color: black;
  padding: 0.5rem 5rem;
  font-size: 0.8rem;
  cursor: pointer;
}

#page-terms {
  max-width: 860px;
  margin: auto;
  font-size: 14px;
}
@media screen and (min-width: 601px) and (max-width: 1023px) {
  #page-terms {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 600px) {
  #page-terms {
    max-width: 100%;
    padding: 0 1rem;
    margin-top: 4rem;
  }
}
#page-terms .title {
  font-size: 20px;
  text-align: center;
  margin-bottom: 2rem;
}
#page-terms p {
  line-height: 1.5rem;
}

#page-privacy-policy {
  max-width: 60%;
  margin: auto;
  font-size: 14px;
}
@media screen and (min-width: 601px) and (max-width: 1023px) {
  #page-privacy-policy {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 600px) {
  #page-privacy-policy {
    margin-top: 4rem;
  }
}
#page-privacy-policy > p {
  line-height: 28px;
}
@media screen and (max-width: 600px) {
  #page-privacy-policy {
    max-width: 100%;
    padding: 0 1rem;
  }
}
#page-privacy-policy .title {
  font-size: 20px;
  text-align: center;
  margin-bottom: 2rem;
}
#page-privacy-policy .content {
  text-align: left;
  letter-spacing: 0px;
}

.is-none {
  display: none !important;
}

@media screen and (max-width: 600px) {
  .is-sm {
    display: inherit !important;
  }
}

@media screen and (min-width: 601px) and (max-width: 1023px) {
  .is-md {
    display: inherit !important;
  }
}

@media screen and (min-width: 1024px) {
  .is-lg {
    display: inherit !important;
  }
}

#page-contact {
  max-width: 860px;
  margin: auto;
  font-size: 14px;
}
@media screen and (min-width: 601px) and (max-width: 1023px) {
  #page-contact {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 600px) {
  #page-contact {
    max-width: 100%;
    padding: 0 1rem;
    margin-top: 4rem;
  }
}
#page-contact .title {
  font-size: 20px;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 600;
}
#page-contact .message-area {
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.5rem;
}
#page-contact .message-required {
  text-align: left;
  letter-spacing: 0px;
  margin-bottom: 1rem;
}
#page-contact .message-return {
  font-size: 14px;
  line-height: 28px;
}
#page-contact .message-tel {
  font-weight: bold;
}
#page-contact .required {
  color: red;
}
#page-contact .privacy-policy-area {
  display: flex;
  align-items: center;
}
#page-contact .privacy-policy-area .privacy-policy {
  text-align: left;
  text-decoration: underline;
  margin-left: 0.2rem;
}
#page-contact .privacy-policy-area > input[type=checkbox] {
  margin: 0;
}
#page-contact input[type=text], #page-contact textarea, #page-contact select, #page-contact input[type=email], #page-contact input[type=tel] {
  border-color: #d3d3d3;
  border-radius: 5px;
  margin: 0;
}
#page-contact input[type=submit]:hover {
  color: white;
  background-color: #3c3c3c !important;
}
#page-contact input.wpcf7-back {
  margin-top: 1rem;
}
#page-contact input.wpcf7-back:hover {
  color: white;
  background-color: gray !important;
}
#page-contact .input-area {
  margin-bottom: 1rem;
}
#page-contact .send-area {
  text-align: center;
  margin: 2rem 0;
}
@media screen and (max-width: 600px) {
  #page-contact .send-area {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
#page-contact .send-area .wpcf7-spinner {
  display: none !important;
}
#page-contact .send-area .ajax-loader {
  display: none !important;
}
#page-contact .send-area input[type=submit], #page-contact .send-area input.wpcf7-back, #page-contact .send-area .wpcf7-form-control {
  cursor: pointer;
  border: 1px solid black;
  border-radius: 5rem;
  background-color: white;
  padding: 1rem 30%;
  font-size: 1rem;
  font-weight: bold;
}
#page-contact .send-area input[type=submit]:disabled, #page-contact .send-area input.wpcf7-back:disabled, #page-contact .send-area .wpcf7-form-control:disabled {
  border: 1px solid lightgray;
}

.is-none {
  display: none !important;
}

@media screen and (max-width: 600px) {
  .is-sm {
    display: inherit !important;
  }
}

@media screen and (min-width: 601px) and (max-width: 1023px) {
  .is-md {
    display: inherit !important;
  }
}

@media screen and (min-width: 1024px) {
  .is-lg {
    display: inherit !important;
  }
}

#page-recruit {
  text-align: center;
  position: relative;
  z-index: 1;
}
#page-recruit .bg-image {
  position: absolute;
  top: -52px;
  left: 0;
  right: 0;
  height: 28rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
}
@media screen and (max-width: 600px) {
  #page-recruit .bg-image {
    position: inherit;
    height: 10rem;
    background-repeat: no-repeat;
    background-position: bottom;
    margin-bottom: -3rem;
  }
}
@media screen and (min-width: 601px) and (max-width: 1023px) {
  #page-recruit {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 600px) {
  #page-recruit {
    padding-top: 6rem;
  }
}
#page-recruit .box {
  max-width: 860px;
  padding: 1rem;
  background-color: white;
  display: inline-block;
  margin: 18rem auto 0;
  position: relative;
  z-index: 9;
  border-radius: 5px;
}
@media screen and (min-width: 1024px) {
  #page-recruit .box {
    min-width: 860px;
  }
}
@media screen and (min-width: 601px) and (max-width: 1023px) {
  #page-recruit .box {
    width: 80%;
  }
}
@media screen and (max-width: 600px) {
  #page-recruit .box {
    margin: 0;
  }
}
#page-recruit .box .main-title {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  padding: 1rem;
}
#page-recruit .box .table {
  width: 98%;
  text-align: center;
  margin: auto;
  font-size: 0.8rem;
}
#page-recruit .box .table tbody, #page-recruit .box .table tfoot, #page-recruit .box .table thead {
  border: none;
}
#page-recruit .box .table tbody tr:nth-child(even) {
  background: #FAFAFA 0% 0% no-repeat padding-box;
}
#page-recruit .box .table tr {
  height: 6rem;
}
#page-recruit .box .table .title {
  text-align: left;
  vertical-align: top;
  padding: 0.5rem 1rem;
  width: 130px;
}
#page-recruit .box .table .desc {
  text-align: left;
  vertical-align: top;
  padding: 0.5rem 1rem;
}
#page-recruit .box .send-area {
  text-align: center;
  margin-bottom: 1rem;
}
#page-recruit .box .send-area .button {
  border: 1px solid black;
  border-radius: 5rem;
  background-color: white;
  padding: 1rem 30%;
  font-size: 1rem;
  font-weight: bold;
  color: #454545;
}
@media screen and (max-width: 600px) {
  #page-recruit .box .send-area .button {
    width: 80%;
    padding: 1rem;
  }
}
@media screen and (max-width: 600px) {
  #page-recruit .box .banners > img {
    margin-bottom: 1rem;
  }
}

.umodal.umodal_modal-factory-access {
  background: #f2f2f2aa;
}
.umodal.umodal_modal-factory-access .umodal__content {
  border: none;
}
.umodal.umodal_modal-factory-access div[umodal-id=modal-factory-access] > img {
  height: 50vh;
  width: auto;
}

#page-company {
  position: relative;
  margin: auto;
  font-size: 0.8rem;
  text-align: center;
}
@media screen and (max-width: 600px) {
  #page-company {
    max-width: 100%;
    padding-top: 6rem;
  }
}
#page-company .bg-image {
  position: absolute;
  top: -52px;
  left: 0;
  right: 0;
  height: 28rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}
@media screen and (max-width: 600px) {
  #page-company .bg-image {
    position: inherit;
    height: 10rem;
    margin-bottom: -3rem;
  }
}
#page-company .box.top {
  margin-top: 18rem;
}
@media screen and (max-width: 600px) {
  #page-company .box.top {
    margin-top: 0rem;
  }
}
#page-company .box {
  max-width: 860px;
  position: relative;
  z-index: 9;
  padding: 2rem 3rem;
  background-color: white;
  display: inline-block;
  margin: auto;
  width: 100%;
  border-radius: 5px;
}
@media screen and (max-width: 600px) {
  #page-company .box {
    padding: 2rem 1rem;
  }
}
#page-company .title {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
}
#page-company .info-list .info {
  margin-bottom: 0.5rem;
}
#page-company .info-list .info > div {
  padding: 0;
}
#page-company .info-list .info .info-label {
  text-align: left;
}
#page-company .info-list .info .info-value {
  text-align: left;
}
#page-company .access-factory {
  margin: 4rem 0;
  text-align: left;
}
#page-company .address-list {
  padding: 1rem 0;
}
#page-company .address-list .google-map-area {
  text-align: left;
}
@media screen and (min-width: 601px) and (max-width: 1023px) {
  #page-company .address-list .google-map-area .google-map {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  #page-company .address-list .google-map-area .google-map {
    width: 100%;
  }
}
#page-company .address-list .address {
  margin-bottom: 0.5rem;
}
#page-company .address-list .address > div {
  padding: 0;
}
#page-company .address-list .address .address-label {
  text-align: left;
}
#page-company .address-list .address .address-value {
  text-align: left;
}
#page-company .history-area {
  margin-bottom: 4rem;
}
#page-company .history-area > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
#page-company .history-area > ul::before {
  content: "";
  border-left: #8FA7C1 3px solid;
  position: absolute;
  left: 173.5px;
  height: calc(100% - 80px);
  z-index: 1;
  top: 35px;
  bottom: 0;
}
@media screen and (max-width: 600px) {
  #page-company .history-area > ul::before {
    top: 30px;
    bottom: 40px;
    left: 23px;
    height: calc(100% - 130px);
  }
}
#page-company .history-area > ul > li {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  #page-company .history-area > ul > li.top {
    align-items: flex-start;
  }
  #page-company .history-area > ul > li.top .timeline {
    margin-top: 1.5rem;
  }
  #page-company .history-area > ul > li.top .desc {
    margin-top: 1.4rem;
  }
}
@media screen and (max-width: 600px) {
  #page-company .history-area > ul > li {
    flex-wrap: wrap;
    padding-bottom: 2rem;
  }
}
#page-company .history-area > ul > li .year {
  color: #E2EAEF;
  font-size: 3rem;
  width: 150px;
  flex-basis: 150px;
  text-align: center;
  font-weight: 600;
  transform: translateY(20px);
}
@media screen and (max-width: 600px) {
  #page-company .history-area > ul > li .year {
    order: 2;
    text-align: left;
    font-size: 2rem;
    transform: translateY(12px);
  }
}
#page-company .history-area > ul > li .timeline {
  width: 50px;
  flex-basis: 50px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 600px) {
  #page-company .history-area > ul > li .timeline {
    order: 1;
  }
}
#page-company .history-area > ul > li .timeline.none::before {
  right: 1px;
}
#page-company .history-area > ul > li .timeline .circle {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #8FA7C1;
  position: relative;
  z-index: 1;
  margin-top: 8px;
  transform: translateY(8px);
}
#page-company .history-area > ul > li .timeline .circle::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ffffff;
  position: absolute;
  z-index: 9;
  top: 4px;
  bottom: 0;
  left: 4px;
}
#page-company .history-area > ul > li .desc {
  flex-shrink: 1000;
  width: 100%;
  position: relative;
  text-align: left;
}
@media screen and (max-width: 600px) {
  #page-company .history-area > ul > li .desc {
    order: 3;
    margin-left: 3.5rem;
    margin-top: 0.5rem;
  }
}
#page-company .history-area > ul > li .desc .row {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 600px) {
  #page-company .history-area > ul > li .desc .row {
    display: block;
  }
}
#page-company .history-area > ul > li .desc .row .columns {
  padding: 0;
}
@media screen and (max-width: 600px) {
  #page-company .history-area > ul > li .desc .row .columns {
    padding: 0;
  }
}
@media screen and (max-width: 600px) {
  #page-company .history-area > ul > li .desc .row .columns.right-image {
    text-align: right;
  }
}
#page-company .history-area > ul > li .desc .row .columns.images {
  text-align: right;
  height: 6rem;
  margin: 1rem 0;
}
@media screen and (max-width: 600px) {
  #page-company .history-area > ul > li .desc .row .columns.images {
    height: 6rem;
  }
}
#page-company .history-area > ul > li .desc .row .columns.images > img {
  height: 100%;
}
@media screen and (min-width: 601px) and (max-width: 1023px) {
  #page-company .history-area > ul > li .desc .row .columns.images-md-4 {
    height: 4rem;
  }
}
@media screen and (max-width: 600px) {
  #page-company .history-area > ul > li .desc .row .columns.images-sp-3 {
    height: 3rem;
  }
}
@media screen and (max-width: 600px) {
  #page-company .history-area > ul > li .desc .row .columns.images-sp-4 {
    height: 4rem;
  }
}
@media screen and (max-width: 600px) {
  #page-company .history-area > ul > li .desc .row .columns.images-sp-5 {
    height: 5rem;
  }
}

#page-news {
  max-width: 860px;
  margin: auto;
  font-size: 1rem;
}
@media screen and (min-width: 601px) and (max-width: 1023px) {
  #page-news {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 600px) {
  #page-news {
    max-width: 100%;
    padding: 0 1rem;
    margin-top: 4em;
  }
}
#page-news .title {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
}
#page-news .news-list .row {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media screen and (max-width: 600px) {
  #page-news .news-list .row {
    margin-bottom: 2rem;
  }
}
#page-news .news-list .row .post-thumb {
  border-radius: 0.5rem;
  border: 1px solid #D3D3D3;
  width: 100%;
}
@media screen and (max-width: 600px) {
  #page-news .news-list .row .post-thumb {
    margin-bottom: 1rem;
  }
}
#page-news .news-list .row .post-title {
  font-size: 1.2rem;
  font-weight: bold;
}
#page-news .news-list .row .post-time {
  color: #959595;
  font-size: 0.6rem;
  margin: 0.5rem 0;
}
#page-news .news-list .row .post-content {
  font-size: 0.8rem;
  text-align: left;
  line-height: 1.5rem;
}
#page-news .news-list .row .post-tag {
  background-color: #B7D2D8;
  color: white;
  font-weight: bold;
  border-radius: 10px;
  padding: 0.1rem 0.3rem;
}
#page-news .news-list .row .no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: #C3DCE1;
  color: #FFFFFF;
  border-radius: 5px;
  min-height: 150px;
}
@media screen and (max-width: 600px) {
  #page-news .news-list .row .no-image {
    margin-bottom: 1rem;
  }
}

.is-none {
  display: none !important;
}

@media screen and (max-width: 600px) {
  .is-sm {
    display: inherit !important;
  }
}

@media screen and (min-width: 601px) and (max-width: 1023px) {
  .is-md {
    display: inherit !important;
  }
}

@media screen and (min-width: 1024px) {
  .is-lg {
    display: inherit !important;
  }
}

#page-news_content {
  max-width: 640px;
  margin: auto;
  font-size: 1rem;
  margin-top: 10rem;
}
@media screen and (min-width: 601px) and (max-width: 1023px) {
  #page-news_content {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 600px) {
  #page-news_content {
    max-width: 100%;
    padding: 0 1rem;
    margin-top: 4em;
  }
}
#page-news_content .title {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 0.1rem;
  font-weight: 600;
}
#page-news_content .post-thumb {
  border-radius: 0.5rem;
  border: 1px solid #D3D3D3;
  width: 100%;
  margin: 1rem 0;
}
@media screen and (max-width: 600px) {
  #page-news_content .post-thumb {
    margin-bottom: 1rem;
  }
}
#page-news_content .post-time {
  font-size: 0.6rem;
  margin: 0.5rem 0;
  text-align: center;
}
#page-news_content .post-content {
  font-size: 0.8rem;
  text-align: left;
  line-height: 2rem;
  padding: 0 1rem;
}
#page-news_content .post-content > p {
  line-height: 1.5rem;
}
#page-news_content .post-tag {
  background-color: #B7D2D8;
  color: white;
  font-weight: bold;
  border-radius: 10px;
  padding: 0.1rem 0.3rem;
  font-size: 0.6rem;
}
#page-news_content .button-area {
  margin-top: 4rem;
  text-align: center;
}
#page-news_content .button-area .button-news {
  display: inline-block;
  padding: 0.5rem;
  border: 1px solid #707070;
  width: 252px;
  background: none;
  font-size: 0.8rem;
  color: #454545;
}
#page-news_content .button-area .button-news:hover {
  color: white;
  background-color: #3c3c3c !important;
}
#page-news_content pre {
  white-space: inherit;
}

#page-about .about-contents {
  opacity: 0;
}
#page-about .about-contents .border-area {
  max-width: 1200px;
  margin-bottom: 6rem;
}
#page-about .about-wrapper {
  margin-top: 5rem;
  max-width: 1500px;
  margin: auto;
}
#page-about .content {
  width: 100%;
  padding: 0;
}
#page-about .border-area {
  margin: auto;
}
@media screen and (max-width: 600px) {
  #page-about .border-area {
    margin: 0 1rem;
  }
}
#page-about .about-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8rem;
}
@media screen and (max-width: 600px) {
  #page-about .about-item {
    flex-direction: column;
    justify-content: inherit;
    align-items: start;
  }
}
@media screen and (max-width: 600px) {
  #page-about .about-item.column-reverse--sm {
    flex-direction: column-reverse;
  }
}
#page-about .about-item.end {
  justify-content: end;
}
#page-about .about-item.start {
  justify-content: start;
}
@media screen and (min-width: 1024px) {
  #page-about .about-item .concept-image {
    width: 50rem;
  }
}
@media screen and (min-width: 601px) and (max-width: 1023px) {
  #page-about .about-item .concept-image {
    width: 30rem;
  }
}
@media screen and (max-width: 600px) {
  #page-about .about-item .concept-image.start {
    margin-top: 2rem;
    padding-right: 3em;
  }
}
@media screen and (max-width: 600px) {
  #page-about .about-item .concept-image.end {
    margin-top: 2rem;
    padding-left: 3rem;
  }
}
@media screen and (max-width: 600px) {
  #page-about .about-item .comment-area {
    margin-left: 3rem !important;
  }
}
#page-about .about-item .comment-area .sub-title {
  text-align: left;
  margin-bottom: 1rem;
}
#page-about .about-item .comment-area.margin-right {
  margin-right: 6rem;
}
@media screen and (max-width: 600px) {
  #page-about .about-item .comment-area.margin-right {
    margin-right: inherit;
  }
}
#page-about .about-item .comment-area.margin-left {
  margin-left: 6rem;
}
@media screen and (max-width: 600px) {
  #page-about .about-item .comment-area.margin-left {
    margin-left: inherit;
  }
}
#page-about .about-item .comment-area .description {
  font-size: 0.8rem;
  line-height: 1.5rem;
  text-align: left;
}
#header {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
}
@media screen and (max-width: 600px) {
  #header {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
  }
}
@media screen and (min-width: 601px) and (max-width: 1023px) {
  #header {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
  }
}
#header .nav-pc-index, #header .nav-pc-index2 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
#header .nav-pc-index ul.menu-list .item, #header .nav-pc-index2 ul.menu-list .item {
  position: relative;
  overflow: hidden;
  width: 6rem;
  text-align: center;
}
#header .nav-pc-index ul.menu-list .item > a, #header .nav-pc-index2 ul.menu-list .item > a {
  height: 2rem;
  padding: 0;
  position: relative;
}
#header .nav-pc-index ul.menu-list .item > a .item1, #header .nav-pc-index2 ul.menu-list .item > a .item1 {
  display: block;
  text-align: center;
  line-height: 2.5rem;
  position: absolute;
  left: 0;
  right: 0;
}
#header .nav-pc-index ul.menu-list .item > a .item2, #header .nav-pc-index2 ul.menu-list .item > a .item2 {
  display: block;
  text-align: center;
  line-height: 2.5rem;
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
}
#header .nav-pc-other.menu {
  background-color: white;
}
#header .nav-pc-other.menu ul.menu-list > li {
  position: relative;
  overflow: hidden;
  width: 7rem;
  text-align: center;
}
#header .nav-pc-other.menu ul.menu-list > li > a {
  height: 2rem;
  padding: 0;
}
#header .nav-pc-other.menu ul.menu-list > li > a .item1 {
  display: block;
  text-align: center;
  line-height: 2.5rem;
  position: absolute;
  left: 0;
  right: 0;
}
#header .nav-pc-other.menu ul.menu-list > li > a .item2 {
  display: block;
  text-align: center;
  line-height: 2.5rem;
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
}
#header .nav-pc .logo {
  position: fixed;
  left: 0;
  height: 2rem;
  margin: 1rem;
  cursor: pointer;
  z-index: 9999;
}
#header .nav-pc .logo_b {
  opacity: 0;
}
#header .nav-pc .breadcrumbs {
  display: flex;
  justify-content: space-between;
  width: 100%;
  background: #F5F5F5 0% 0% no-repeat padding-box;
  padding: 0.1rem 0.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #1C4169;
  font-size: 10px;
  font-weight: 600;
  margin: 0;
}
#header .nav-pc .breadcrumbs > a {
  text-decoration: none;
  letter-spacing: 0px;
  color: #1C4169;
}
#header .nav-pc .breadcrumbs .arrow {
  margin: 0 0.5rem;
}
#header .nav-pc .breadcrumbs .top {
  text-decoration: underline;
}
#header .nav-pc .breadcrumbs.white {
  color: white;
  background: transparent;
}
#header .nav-pc .breadcrumbs.white .top {
  color: white;
}
#header .nav-pc .menu {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  justify-content: end;
  padding-right: 8rem;
}
#header .nav-pc .menu .menu-list {
  list-style: none;
  margin: 0 1rem;
  padding: 0;
}
#header .nav-pc .menu .menu-list .menu-label1 {
  font-size: 1rem;
  text-align: center;
}
#header .nav-pc .menu .menu-list .menu-border {
  margin: 0.3rem 0;
}
#header .nav-pc .menu .menu-list .menu-label2 {
  font-size: 0.5rem;
  text-align: center;
}
#header .nav-pc .menu .menu-list .active, #header .nav-pc .menu .menu-list .active-white {
  position: relative;
}
#header .nav-pc .menu .menu-list .active > a, #header .nav-pc .menu .menu-list .active-white > a {
  background: transparent;
}
#header .nav-pc .menu .menu-list .active::before, #header .nav-pc .menu .menu-list .active-white::before {
  content: "";
  height: 6px;
  width: 6px;
  background-color: black;
  border: 1px solid black;
  border-radius: 100px;
  position: absolute;
  font-size: 20px;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: scale(0.8);
}
#header .nav-pc .menu .menu-list .active-white::before {
  background-color: white;
  border: 1px solid white;
}
#header .nav-pc .menu .menu-list li > a {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0px;
  color: white;
  opacity: 1;
}
#header .nav-sp {
  background-color: white;
  text-align: center;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}
#header .nav-sp .logo {
  height: 1.5rem;
  margin-top: 0.5rem;
}
#header .nav-sp .menu-list {
  list-style: none;
  margin: 0 1rem;
  padding: 0;
}
#header .nav-sp .menu-list li > a {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0px;
  opacity: 1;
}
#header .nav-sp .floating-menu {
  position: absolute;
  top: 2.5rem;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #F6F4EF;
  margin: 0;
  padding-top: 1rem;
  height: 100vh;
  overflow: scroll;
}
#header .nav-sp .floating-menu > li {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 9vh;
}
#header .nav-sp .floating-menu > li.item.online-store-area {
  height: 30vh;
  margin-bottom: 5rem;
}
#header .nav-sp .floating-menu > li .online-store {
  background-color: #FFFFFF;
  width: 80%;
  padding: 1rem 0;
}
#header .nav-sp .floating-menu > li .online-store .online-store-title {
  font-weight: 300;
  color: #000000;
  font-size: 1.2rem;
}
#header .nav-sp .floating-menu > li .online-store .online-store-wrapper {
  padding: 1rem;
}
#header .nav-sp .floating-menu > li .online-store .subtitle {
  font-size: 0.5rem;
  display: block;
}
#header .nav-sp .floating-menu > li .online-store .store-menu-items {
  display: flex;
  justify-content: center;
  align-items: center;
}
#header .nav-sp .floating-menu > li .online-store .store-menu-items .item-first {
  width: 50%;
}
#header .nav-sp .floating-menu > li .online-store .store-menu-items .item-first > img {
  height: 2rem;
}
#header .nav-sp .floating-menu > li .online-store .store-menu-items .item-second {
  width: 50%;
  font-size: 0.5rem;
}
#header .nav-sp .floating-menu > li .online-store .store-menu-items .item-second .item-inner-logos {
  display: flex;
  justify-content: space-around;
  margin-top: 0.2rem;
}
#header .nav-sp .floating-menu > li .online-store .store-menu-items .item-second .item-inner-logos .item-inner-logo {
  width: 30%;
}
@media screen and (max-width: 600px) {
  #header .nav-sp .floating-menu > li .online-store .store-menu-items .item-second .item-inner-logos .item-inner-logo {
    height: 12px;
  }
}
@media screen and (max-width: 600px) {
  #header .nav-sp .floating-menu > li .online-store .store-menu-items .item-second .item-inner-logos .item-inner-logo.jupia {
    transform: scale(0.9);
  }
}
#header .nav-sp .floating-menu > li .online-store .store-menu-items .item-second .item-inner-logos .item-inner-logo.sonax {
  transform: scale(0.9);
}
#header .nav-sp .floating-menu > li > a {
  font-weight: 300;
  color: #000000;
  font-size: 1.2rem;
}
#header .nav-sp .floating-menu > li > a hr {
  margin: 0px;
  padding: 0px;
  margin-bottom: 0.3rem;
}
#header .nav-sp .floating-menu > li > a .subtitle {
  font-size: 0.5rem;
  display: block;
}
#header .nav-sp .menu-area {
  position: absolute;
  top: 5px;
  left: 10px;
  height: 30px;
  width: 30px;
}
#header .nav-sp .menu-area .menu-btn {
  cursor: pointer;
  position: relative;
  display: flex;
  height: 30px;
  width: 30px;
  justify-content: center;
  align-items: center;
  z-index: 90;
}
#header .nav-sp .menu-area .menu-btn > hr {
  display: block;
  margin: 0;
  border: none;
  width: 20px;
  height: 1px;
  transform-origin: 0% 50%;
  position: absolute;
  top: 6px;
  left: 0;
  transition: 0.3s;
  background-color: #707070;
}
#header .nav-sp .menu-area .menu-btn hr:nth-of-type(2) {
  top: 13px;
}
#header .nav-sp .menu-area .menu-btn hr:nth-of-type(3) {
  top: 21px;
}
#header .nav-sp .menu-area .close hr {
  left: 0;
}
#header .nav-sp .menu-area .close hr:nth-of-type(1) {
  transform: rotate(45deg);
  width: 21px;
}
#header .nav-sp .menu-area .close hr:nth-of-type(2) {
  opacity: 0;
}
#header .nav-sp .menu-area .close hr:nth-of-type(3) {
  top: 21px;
  transform: rotate(-45deg);
  width: 21px;
}

@keyframes moveUp {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(-100%);
  }
}
@keyframes moveDown {
  from {
    background-color: transparent;
    transform: translateY(-100%);
  }
  to {
    background-color: #F4F4F4;
    transform: translateY(0%);
  }
}
@keyframes moveInit {
  from {
    background-color: #F4F4F4;
  }
  to {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
  }
}
@keyframes changeTextColor {
  from {
    color: white;
  }
  to {
    color: black;
  }
}
@keyframes changeTextColorReverse {
  from {
    color: black;
  }
  to {
    color: white;
  }
}
@keyframes White2Black {
  from {
    filter: brightness(1) contrast(0%);
  }
  to {
    filter: brightness(0) contrast(100%);
  }
}
@keyframes Black2White {
  from {
    filter: brightness(0) contrast(100%);
  }
  to {
    filter: brightness(1) contrast(0%);
  }
}
@keyframes logoFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes logoFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.move-down {
  animation: moveDown 0.5s ease-in-out forwards;
}

.move-up {
  animation: moveUp 0.5s ease-in-out forwards;
}

.anim-change-text-color {
  animation: changeTextColor 0.5s ease-in-out forwards;
}

.anim-change-image-white2black {
  animation: White2Black 0.5s ease-in-out forwards;
}

.anim-change-image-black2white {
  animation: Black2White 0.5s ease-in-out forwards;
}

.anim-change-text-color-reverse {
  animation: changeTextColorReverse 0.5s ease-in-out forwards;
}

.anim-move-init {
  animation: moveInit 0.5s ease-in-out forwards;
}

.anim-logo-fade-in {
  animation: logoFadeIn 0.5s ease-in-out forwards;
}

.anim-logo-fade-out {
  animation: logoFadeOut 0.5s ease-in-out forwards;
}

#header .nav-pc .store {
  width: 8rem;
  height: 2rem;
  position: fixed;
  right: 10px;
  top: 18px;
  border: 1px solid #BCBEC3;
  border-radius: 4rem;
  background-color: #F2F0F1;
  text-align: center;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}
#header .nav-pc .store .link-store {
  color: black;
  justify-content: center;
  align-items: center;
  transform: translateY(1px);
  font-size: 0.8rem;
  font-weight: bold;
}
#header .nav-pc .store .link-store .item2 {
  display: none;
}
#header .nav-pc .store .store-menu--hover {
  position: fixed;
  display: none;
  background-color: #F2F0F1;
  border: 1px solid #BCBEC3;
  right: 1rem;
  top: 5rem;
  padding: 2rem 2rem;
}
#header .nav-pc .store .store-menu--hover.hover-active {
  display: block;
}
#header .nav-pc .store .store-menu--hover .store-menu-items {
  display: flex;
  cursor: pointer;
}
#header .nav-pc .store .store-menu--hover .store-menu-items .item-first {
  width: 200px;
  height: 3rem;
  font-size: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
#header .nav-pc .store .store-menu--hover .store-menu-items .item-first .logo-brand {
  height: 2.5rem;
}
#header .nav-pc .store .store-menu--hover .store-menu-items .item-second {
  width: 200px;
  font-size: 0.8rem;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#header .nav-pc .store .store-menu--hover .store-menu-items .item-second .logo {
  height: 2rem;
}
#header .nav-pc .store .store-menu--hover .store-menu-items .item-second .item-inner-logos {
  display: flex;
  justify-content: center;
  margin-top: 0.2rem;
}
#header .nav-pc .store .store-menu--hover .store-menu-items .item-second .item-inner-logos .item-inner-logo {
  width: 30%;
}
@media screen and (max-width: 600px) {
  #header .nav-pc .store .store-menu--hover .store-menu-items .item-second .item-inner-logos .item-inner-logo {
    height: 12px;
  }
}
#header .nav-pc .nav-pc-index2 {
  position: relative;
  transform: translateY(0%);
}
#header .nav-pc .nav-pc-index2.bk-gradient {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
}
#header .nav-pc .nav-pc-index2 .bk-anim {
  background-color: red;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  transform: translateY(-100%);
}
#header .nav-pc .nav-pc-index2.header-mode-black {
  background: transparent !important;
}
#header .nav-pc .nav-pc-index2 ul.menu-list .item {
  width: 6rem;
  height: 2rem;
}
#header .nav-pc .nav-pc-index2 ul.menu-list .item.item-border-black::after {
  background-color: black;
}
#header .nav-pc .nav-pc-index2 ul.menu-list .item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: white;
  transition: width 0.3s ease-in-out;
}
#header .nav-pc .nav-pc-index2 ul.menu-list .item:hover::after {
  width: 100%;
}
#header .nav-pc .nav-pc-index2 ul.menu-list .item > a {
  font-size: 0.8rem;
}
#header .nav-pc .nav-pc-index2 .logo {
  height: 2rem;
}
#header .nav-pc .nav-pc-index2 .menu-list li > a {
  font-weight: bold;
  font-size: 0.8rem;
}
#header .nav-pc .nav-pc-index2 .menu-list li > a.header-mode-black {
  color: black;
}

#footer {
  font-size: 12px;
  max-width: 860px;
  margin-top: 5rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 600px) {
  #footer {
    max-width: 90%;
  }
}
#footer .link {
  letter-spacing: 0px;
  color: #454545;
  font-size: 12px;
}
@media screen and (max-width: 600px) {
  #footer .link {
    font-size: 0.5rem;
  }
}
#footer .link:not(:first-child)::before {
  content: "|";
  margin: 0.5rem;
}
@media screen and (max-width: 600px) {
  #footer .link:not(:first-child)::before {
    margin: 0.2rem;
  }
}
#footer .copyright {
  font-size: 12px;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 600px) {
  #footer .copyright {
    font-size: 0.5rem;
  }
}
#footer .sns {
  margin-bottom: 3rem;
}
#footer .sns > a {
  margin: 0.5rem;
}
#footer .sns > a .icon-x {
  width: 30px;
}

.pagination {
  margin-top: 2rem;
}
.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination .nav-links .page-numbers {
  color: #D3D3D3;
}
.pagination .nav-links .page-numbers.current {
  background: none;
  color: #4B4B4B;
}
.pagination .nav-links .page-numbers.next {
  color: #004EA2;
  font-weight: bold;
  font-size: 1.4rem;
  transform: translateY(-2px);
}

@keyframes fadeLeftIn {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeRightIn {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fade-in {
  opacity: 1;
  animation: fadeIn 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.fade-out {
  opacity: 0;
  animation: fadeOut 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.fade-left-in {
  opacity: 1;
  animation: fadeLeftIn 1s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.fade-right-in {
  opacity: 1;
  animation: fadeRightIn 1s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.fade-slow {
  opacity: 1;
  animation: fadeIn 1s ease 0.5s 1 normal;
  animation-fill-mode: forwards;
}

.fade-init {
  opacity: 0;
}

@keyframes slideLeft {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(5px);
  }
}
@keyframes slideLeftReturn {
  0% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0px);
  }
}
.slide-left {
  animation: slideLeft 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.slide-left-return {
  animation: slideLeftReturn 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes fadeInDropDown {
  0% {
    opacity: 0.8;
    height: 0;
  }
  100% {
    opacity: 1;
    height: 100vh;
  }
}
@keyframes fadeOutDropDown {
  0% {
    opacity: 1;
    height: 100vh;
  }
  100% {
    opacity: 0;
    height: 0;
    display: none;
  }
}
.fade-in-drop-down {
  display: inherit !important;
  animation: fadeInDropDown 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.fade-out-drop-down {
  display: inherit !important;
  animation: fadeOutDropDown 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.fade-in-drop-down-init {
  opacity: 0;
  display: none;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
@keyframes Bounce {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  60% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.bounce-init {
  opacity: 0;
}

.bounce {
  display: inline-block !important;
  animation: Bounce 0.6s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes BounceRightIn {
  0% {
    opacity: 0;
    transform: scale(1) translateX(50px);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1) translateX(0px);
  }
}
.bounce-right-in {
  display: inline-block !important;
  animation: BounceRightIn 0.6s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes BounceLeftIn {
  0% {
    opacity: 0;
    transform: scale(1) translateX(-50px);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1) translateX(0px);
  }
}
.bounce-left-in {
  display: inline-block !important;
  animation: BounceLeftIn 0.6s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes DropDownAnim {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  20% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.drop-down-anim {
  display: inline-block !important;
  animation: DropDownAnim 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes DropUpAnim {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  20% {
    opacity: 0.2;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}
.drop-up-anim {
  display: inline-block !important;
  animation: DropUpAnim 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes RightToLeftWidth {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.right-to-left-width {
  display: inline-block !important;
  animation: RightToLeftWidth 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes LeftToRightWidth {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}
.left-to-right-width {
  display: inline-block !important;
  animation: LeftToRightWidth 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes MoveUp {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}
.anim-move-up {
  animation: MoveUp 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes MoveDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.anim-move-down {
  animation: MoveDown 0.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

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