body {
  font-family: 'Righteous', Meiryo, sans-serif;
  font-size: 15px;
  letter-spacing: .05em;
  color: #333;
  background-color: #ededed;
}

a {
  transition: opacity .3s;
  text-decoration: none;
  color: #1ca9e3;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border-style: none;
}



.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

/*--------------------------------
 レイアウト
---------------------------------*/
.wrapper {
  padding-top: 50px;
}

.section {
  padding: 60px 0;
}

.section:nth-of-type(odd) {
  background-color: #f7f7f7;
}

.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
}

/*--------------------------------
 メインビジュアル
---------------------------------*/
.mv {
  display: flex;
  gap: 10%;
  align-items: center;
  justify-content: center;
}

.profile-img {
  width: 25%;
}

.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.mv-content {
  position: relative;
  z-index: 1;
}

.mv-container {
  padding: 0 20px 0 0;
}

.mv-title {
  font-size: 60px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: .1em;
  display: flex;
  justify-content: center;
}

.mv-subtitle {
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: .08em;
}

.mv-text {
  font-size: 16px;
  line-height: 1.8;
}

.scroll-down {
  width: 24px;
  height: 24px;
  margin: 0 auto;
  position: relative;
  pointer-events: none;
}

.scroll-down::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 30px;
  height: 30px;
  border-bottom: 10px solid #aaa;
  border-right: 10px solid #aaa;
  transform: translateX(-50%) rotate(45deg);
  animation: scrollDown 1.4s infinite;
}

@keyframes scrollDown {
  0% {
    transform: translate(-50%, 0) rotate(45deg);
    opacity: 1;
  }

  50% {
    transform: translate(-50%, 8px) rotate(45deg);
    opacity: 0.3;
  }

  100% {
    transform: translate(-50%, 0) rotate(45deg);
    opacity: 1;
  }
}



/*--------------------------------
 ページトップ
---------------------------------*/
.page-top {
  font-weight: bold;
  padding: 10px;
  cursor: pointer;
  text-align: center;
  background-color: #4c4c4c;
}

.page-top .material-icons-outlined {
  font-family: 'Material Icons Outlined';
  vertical-align: bottom;
  color: #fff;
}

/*--------------------------------
 フッター
---------------------------------*/
.footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 5px 0;
  background-color: #333;
  z-index: 999;
}

.copyright {
  font-size: 15px;
  text-align: center;
  color: #797979;
}

/*media Queries 767
----------------------------------------------------*/
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .arrow {
    display: none;
  }

  /* 見出し */
  .title {
    font-size: 50px;
    margin-bottom: 20px;
  }

  .lead {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  /* レイアウト */
  .wrapper {
    padding-top: 10%;
    /* padding-bottom: 70px; */
  }

  .section {
    padding: 40px 0;
  }

  .container {
    padding: 0 20px;
  }

  .mv {
    flex-direction: column;
    height: auto;
    gap: 0;
  }

  /*  メインビジュアル */
  .mv {
    /* height: 30vh; */
  }

  .mv-container {
    padding: 0 20px 0 0;
  }

  .mv-title {
    font-size: 50px;
    text-align: center;
  }

  .mv-subtitle {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .mv-text {
    font-size: 14px;
    line-height: 1.7;
  }

  .scroll-down {
    display: none;
  }

  /* Works */
  .works-name {
    font-size: 12px;
  }

  .works-info {
    margin-top: 3px;
  }

  .works-list {
    justify-content: space-between;
  }

  .works-item {
    flex: 0 0 48%;
    margin-right: 0;
    margin-bottom: 30px;
  }



  /* About */
  .profile {
    display: block;
  }

  .profile-img {
    width: 300px;
    margin-bottom: 25px;
    margin-right: 15px;
  }

  .profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
  }

  .profile-body p {
    font-size: 14px;
    line-height: 1.7;
  }

  .profile-body p:not(:last-child) {
    margin-bottom: 20px;
  }

  /* Contact */
  .contact-item {
    border: 1px solid #ccc;
    padding: 4px 15px 6px 15px;
    border-radius: 20px;
    display: inline-block;
    color: #333;
    font-size: 15px;
    margin: 5px;
  }

  .sns-icon {
    width: 12px;
    height: 12px;
    margin-bottom: 3px;

  }

  /* フッター */
  .footer {
    padding: 5px 0px;
  }

  /* 下層ページ */
  .article {
    padding: 50px 0;
  }

  .article-body h3 {
    font-size: 16px;
    padding-left: .8em;
  }

  .article-body h3:not(:first-child) {
    margin-top: 30px;
  }

  .article-body p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
}