@charset "UTF-8";
/*
Theme Name: kengineer
Theme URI: https://kengineer.jp/
Author: kengineer
Author URI: https://kengineer.jp/
Description: kengineerの公式WordPressテーマ
Version: 1.0.0
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kengineer
*/

.mv-section {
  max-width: 1240px;
  padding-inline: 100px;
  margin: 100px auto;
}

.page-title {
  font-size: 3rem;
}

.mv-section__information {
  max-width: 618px;
  display: flex; 
  flex-direction: column;
  row-gap: 100px;
}

.mv-section__link {
  width: 100px;
  display: block;
  text-align: center;
  
  & p {
    position: relative;
    margin-top: 15px;
  }

  & p::before {
    position: absolute;
    content: "";
    top: 22px;
    left: 50%;
    width: 10px;
    height: 10px;
    border-left: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    transform: rotate(-45deg) translate(-50%);
    margin-right: 5px;
    animation: floating 2s ease-in-out infinite;
  }
}

@keyframes floating {
  0% {
    top: 22px;
  }
  50% {
    top: 31px;
  }
  100% {
    top: 22px;
  }
}


.p-section {
  max-width: 1240px;
  margin: 100px auto;
}