body {
  font-family: "ysabeau", "Kiwi Maru", "Noto Sans JP", "sans-serif";
  color: #4d4e49;
}
body.is-fixed {
  overflow: hidden;
}

.button {
  display: flex;
  align-items: center;
  padding: 6px 10px 6px 30px;
  width: 160px;
  margin: 0 auto;
}
.button--bg {
  background: #6e89a5;
}
.button--bg .button-text {
  color: #eadfc9;
}
.button--border {
  border: 1px solid #6e89a5;
}
.button--border .button-text {
  color: #6e89a5;
}
.button-icon {
  width: 24px;
  display: flex;
  align-items: center;
}
.button-icon svg {
  height: 24px;
}
.button-text {
  margin-left: 10px;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #6e89a5;
}
.button-icon-path {
  fill: #6e89a5;
}
.button-icon-path--contact {
  fill: #eadfc9;
}

.header {
  background-color: #eadfc9;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.header-container {
  width: 100%;
  position: relative;
}
.header-logo {
  display: inline-block;
  padding: 14px 24px;
  font-size: 20px;
  color: #6e89a5;
}
.header-logo:hover {
  opacity: 0.7;
}
.header-menu-button {
  border: none;
  position: absolute;
  top: 24px;
  right: 24px;
  width: 30px;
  height: 36px;
  overflow: hidden;
  color: transparent;
  background: url(../img/bg_menu.png) center center no-repeat;
  background-size: 100% auto;
}
.header-menu-button.is-checked {
  background: url(../img/bg_menu-close.png) center center no-repeat;
  background-size: 100% auto;
}
.header-contents {
  height: calc(100vh - 88px);
  border-top: 1px solid #fff;
  padding-top: 65px;
  display: none;
}
.header-nav-item + .header-nav-item {
  margin-top: 24px;
}

.fv {
  position: relative;
}
.fv-contents {
  position: absolute;
  bottom: 26px;
  left: 0;
  width: 100%;
  height: 209px;
  background: url(../img/sp/bg_fv.png) center center no-repeat;
  background-size: 100% auto;
  padding: 32px;
}
.fv-heading-main {
  display: block;
  font-size: 40px;
  letter-spacing: 0.1em;
}
.fv-heading-sub {
  margin-top: 12px;
  display: block;
  font-size: 14px;
}

.section {
  padding: 48px 0;
}
.section-inner {
  padding: 0 32px;
}
.section-head {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}
.section-head--center {
  text-align: center;
}
.section-head-main {
  font-size: 40px;
  letter-spacing: 0.1em;
}
.section-head-sub {
  font-size: 14px;
}
.section-lead-text {
  font-size: 16px;
  line-height: 1.6;
}
.section-contents {
  margin-top: 40px;
}

.about {
  background-color: #faf1e4;
}
.about-img {
  margin-bottom: 32px;
}
.about-img img {
  border-radius: 50%;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
.about-text {
  font-size: 16px;
  line-height: 1.6;
}
.about-text + .about-text {
  margin-top: 1em;
}

.works {
  background-color: #fffbf5;
}
.works-item + .works-item {
  margin-top: 40px;
}
.works-item-img {
  margin-bottom: 12px;
}
.works-item-img img {
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
.works-item-name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
}
.works-item-link {
  text-decoration: underline;
  font-size: 14px;
}

.skills {
  background-color: #faf1e4;
}
.skills-item + .skills-item {
  margin-top: 40px;
}
.skills-item-img {
  text-align: center;
  margin-bottom: 14px;
}
.skills-item-name {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 10px;
}
.skills-item-text {
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
}

.message {
  background-color: #fffbf5;
}
.message-img {
  margin-bottom: 32px;
}
.message-img img {
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
.message-text {
  font-size: 16px;
  line-height: 1.6;
}

.page-bottom {
  color: #6e89a5;
}
.page-bottom-item {
  padding: 40px;
}
.page-bottom-item--contact {
  background-color: #faf1e4;
}
.page-bottom-item--x {
  background-color: #eadfc9;
}

.footer {
  text-align: center;
  padding: 10px;
}
.footer-copy {
  font-size: 11px;
  font-family: "Noto Sans JP", "sans-serif";
  color: #333;
}

/*------------------------------------
// pc
-------------------------------------*/
@media screen and (min-width: 768px) {
  .wrapper {
    display: flex;
  }
  .main {
    flex-basis: 79.2%;
  }
  .header {
    position: relative;
    flex-basis: 20.8%;
    padding: 50px 20px;
  }
  .header-container {
    width: 160px;
    margin: 0 auto;
    position: -webkit-sticky;
    position: sticky;
    top: 50px;
  }
  .header-logo {
    font-size: 30px;
    letter-spacing: 0.12em;
    line-height: 1;
  }
  .header-menu-button {
    display: none;
  }
  .header-contents {
    border: none;
    display: block;
  }
  .button {
    transition: background 0.3s, color 0.3s, opacity 0.3s;
  }
  .button:hover {
    background-color: #6e89a5;
  }
  .button:hover .button-icon-path {
    fill: #eadfc9;
  }
  .button:hover .button-text {
    color: #eadfc9;
  }
  .button--bg {
    color: #eadfc9;
  }
  .button--bg:hover {
    opacity: 0.7;
  }
  .section-inner {
    max-width: 944px;
    margin: 0 auto;
  }
  .section-head {
    margin-bottom: 24px;
  }
  .section-head-main {
    font-size: 60px;
  }
  .fv-contents {
    background: url(../img/bg_fv.png) center center no-repeat;
    background-size: 100% auto;
    bottom: 100px;
    left: 0;
    max-width: 627px;
    height: 174px;
    padding-top: 24px;
    padding-left: 96px;
  }
  .skills-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3%;
  }
  .skills-item + .skills-item {
    margin-top: 0;
  }
  .works-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8%;
  }
  .works-item + .works-item {
    margin-top: 0;
  }
  .about-container {
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
  }
  .message-container {
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
  }
  .page-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .page-bottom-item {
    padding: 54px 10px;
  }
}
/*------------------------------------
// tb
-------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .section-head-main {
    font-size: 54px;
  }
  .fv-contents {
    bottom: 50%;
    transform: translateY(50%);
  }
}