@charset "utf-8";

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #333;
}

html {
  scroll-behavior: smooth;
}

.break-sp {
  display: none;
}

.break-pc {
  display: block;
}

/* ローディングアニメーション設定 */

.loader {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #b0c4de;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 0.5s linear;
  z-index: 99999;
}

.loader.loaded {
  opacity: 0;
  visibility: hidden;
}

@keyframes spinner-rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader-img {
  width: 200px;
  height: auto;
  border-radius: 50%;
  vertical-align: bottom;
}

/* マウスストーカーここから */

#stalker {
  pointer-events: none;
  position: fixed;
  width: 40px;
  height: 40px;
  background-color: #ffffcc;
  border-radius: 50%;
  transition: transform 0.2s;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

/* マウスストーカーここまで */

/* トップページここから */

/* ナビゲーション */

.nav-menu {
  position: fixed;
  width: 100%;
  background-color: #fff;
  z-index: 999;
}

.menu-list {
  display: flex;
  justify-content: center;
}

.menu-item {
  list-style-type: none;
  padding: 30px;
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  text-align: center;
  line-height: normal;
  transition: 0.3s;
}

.menu-item:hover .drop-menu-list {
  visibility: visible;
  opacity: 1;
}

li a {
  text-decoration: none;
  transition: 0.3s;
}

.menu-item a:hover {
  color: #b0c4de;
}

.drop-menu {
  position: relative;
}

.drop-menu-list {
  background-color: #fff;
  left: 750px;
  position: absolute;
  top: 100%;
  text-align: left;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  width: max-content;
  line-height: 2em;
  padding: 0 1rem 1rem;
  transition: 0.3s;
  z-index: 1;
}

/* トップ */

.top-wrapper {
  width: 100%;
  height: 800px;
}

.top-illust {
  position: absolute;
  width: 400px;
  height: 400px;
  top: 30vh;
  left: 110vh;
  border-radius: 50%;
  filter: drop-shadow(10px 10px 3px #aabbd2);
}

.title-text {
  position: relative;
  font-family: "Caveat", cursive;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 78px;
  padding-top: 50vh;
  padding-left: 50vh;
}

/* プロフィールについて */

.profile-wrapper {
  width: 100%;
  height: 800px;
}

.title {
  position: relative;
  font-family: "Caveat", cursive;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 56px;
  padding-left: 130px;
  letter-spacing: 0.5em;
}

.profile-box {
  display: flex;
  align-items: center;
  margin-left: 120px;
}

.profile-illust {
  width: 400px;
  height: 400px;
  margin: 16vh;
  border-radius: 50%;
  filter: drop-shadow(10px 10px 3px #aabbd2);
}

.profile-name {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 32px;
  text-align: left;
  line-height: 3em;
}

.profile-name ::first-letter {
  color: #b0c4de;
  font-size: 2em;
}

.profile-text {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  line-height: 2.5em;
  margin-bottom: 24px;
}

#profile-link a {
  font-family: "Kiwi Maru", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 30px;
  text-decoration: none;
}

#profile-link a:hover {
  color: #b0c4de;
}

/* 作品紹介 */

.works-wrapper {
  width: 100%;
  height: 800px;
}
.works-text {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  text-align: center;
  line-height: 2.5em;
  margin: 60px;
}

.works-box {
  display: flex;
  justify-content: space-around;
  padding: 40px 90px 0px 90px;
}

.web-img {
  width: 300px;
  height: 300px;
  border-radius: 30%;
  filter: drop-shadow(10px 10px 3px #aabbd2);
}

.graphic-img {
  width: 300px;
  height: 300px;
  border-radius: 30%;
  filter: drop-shadow(10px 10px 3px #aabbd2);
}

.illusut-img {
  width: 300px;
  height: 300px;
  border-radius: 30%;
  filter: drop-shadow(10px 10px 3px #aabbd2);
}

.web-link a {
  overflow: hidden;
}

.web-link a img:hover {
  transform: scale(1.3);
  transition: 0.3s;
}

.graphic-link a {
  overflow: hidden;
}

.graphic-link a img:hover {
  transform: scale(1.3);
  transition: 0.3s;
}

.illust-link a {
  overflow: hidden;
}

.illust-link a img:hover {
  transform: scale(1.3);
  transition: 0.3s;
}

/* フッター */

.footer-wrapper {
  width: 100%;
  height: 800px;
}

.footer-top {
  padding-top: 300px;
}

.footer-text {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  text-align: center;
  line-height: 2.5em;
  margin: 50px;
}

.mail-text {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
  color: #94b3dc;
  font-size: 24px;
  text-align: center;
  padding: 23px 95px 23px 80px;
  margin: 0px 400px;
  border: 1px solid #94b3dc;
  border-radius: 40px;
  background-color: #fff;
}

/* トップページここまで */

/* Milkについて */

.profile-top {
  width: 100%;
  height: 700px;
}

.profile-title {
  position: relative;
  font-family: "Caveat", cursive;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 78px;
  padding: 280px;
}

.profile-pg-box {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  height: 2000px;
}

.profile-title-mini1 {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 56px;
  padding-left: 130px;
  line-height: 3em;
}

.name-life {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 32px;
  text-align: left;
  padding-left: 130px;
  line-height: 2em;
}

.profile-pg-name {
  font-family: "Kiwi Maru", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 32px;
  color: #94b3dc;
  text-align: left;
  padding-left: 130px;
  line-height: 2em;
}

.profile-pg-text {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  text-align: left;
  padding-left: 130px;
  line-height: 2em;
}

.character-box {
  margin-left: auto;
  max-width: fit-content;
}
.character {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 32px;
  padding-top: 90px;
  line-height: 2em;
}

.character-text-top {
  font-family: "Kiwi Maru", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 42px;
  color: #94b3dc;
  line-height: 2em;
}

.character-text {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 2em;
}

.profile-title-mini2 {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 32px;
  text-align: left;
  padding-top: 90px;
  padding-left: 130px;
  line-height: 2em;
}

.sp-wrapper {
  width: 100%;
  height: 1000px;
}

.sp-bg {
  display: flex;
  justify-content: center;
}

.sp-bg img {
  width: 350px;
  height: auto;
  filter: drop-shadow(10px 10px 3px #aabbd2);
}

.can-text-top {
  font-family: "Kiwi Maru", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 42px;
  color: #94b3dc;
  text-align: left;
  padding-left: 130px;
  line-height: 2em;
}

.can-text {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  text-align: left;
  padding-left: 130px;
  line-height: 2em;
}

.profile-title-mini3 {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 56px;
  padding-top: 100px;
  padding-left: 130px;
  line-height: 3em;
}

.forte-text {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  padding-top: 80px;
  text-align: center;
  line-height: 2em;
}

.footer-wrapper-prf {
  width: 100%;
  height: 1000px;
}

.footer-prf {
  padding-top: 500px;
}

/* Milkについてここまで */

/* webデザイン作品ページここから */

.cafe-site-wrapper {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  height: 700px;
}

.cafe-box {
  display: flex;
  align-items: center;
  gap: 100px;
}

.cafe-image {
  width: 600px;
  height: auto;
  padding-left: 50px;
  padding-top: 50px;
  filter: drop-shadow(10px 10px 3px #aabbd2);
}

.cafe-title {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 56px;
  padding-left: 50px;
  line-height: 3em;
}

.ptf-site-wrapper {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  height: 700px;
}

.ptf-box {
  display: flex;
  align-items: center;
  gap: 100px;
}

.ptf-image {
  width: 600px;
  height: auto;
  padding-left: 50px;
  padding-top: 50px;
  filter: drop-shadow(10px 10px 3px #aabbd2);
}

.ptf-title {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 56px;
  padding-left: 50px;
  line-height: 3em;
}

.table-item {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #94b3dc;
  line-height: 3em;
  vertical-align: top;
  text-align: left;
}

.table-content {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  padding-left: 10px;
  line-height: 1.5em;
}

.table-box:nth-of-type(3) .table-item {
  line-height: 1.5;
}

.table-content a {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
  color: #94b3dc;
  font-size: 16px;
  text-align: center;
  padding: 5px 30px 5px 30px;
  margin: 50px 10px 50px 10px;
  border: 1px solid #94b3dc;
  border-radius: 40px;
  background-color: #fff;
  text-decoration: none;
  transition: 0.5s;
}

.table-content a:hover {
  color: #647fa4;
}

.footer-wrapper-web {
  width: 100%;
  height: 800px;
}

.footer-web {
  padding-top: 300px;
}

/* webデザイン作品ページここまで */

/* グラフィックデザインここから */

.phot-wrapper {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  height: 900px;
}

.phot-box {
  display: flex;
  align-items: center;
  gap: 100px;
}

.phot-image {
  width: 600px;
  height: auto;
  padding-left: 50px;
  padding-top: 50px;
  filter: drop-shadow(10px 10px 3px #aabbd2);
}

.phot-title {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 56px;
  padding-left: 50px;
  line-height: 3em;
}

.flyer-wrapper {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  height: 900px;
}

.flyer-box {
  display: flex;
  align-items: center;
  gap: 100px;
}

.flyer-image {
  width: 600px;
  height: auto;
  padding-left: 50px;
  padding-top: 50px;
  filter: drop-shadow(10px 10px 3px #aabbd2);
}

.flyer-title {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 56px;
  padding-left: 50px;
  line-height: 3em;
}

.sns-wrapper {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  height: 900px;
}

.sns-box {
  display: flex;
  align-items: center;
  gap: 100px;
}

.sns-image {
  width: 600px;
  height: auto;
  padding-left: 50px;
  padding-top: 50px;
  filter: drop-shadow(10px 10px 3px #aabbd2);
}

.sns-title {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 56px;
  padding-left: 50px;
  line-height: 3em;
}

.footer-wrapper-graph {
  width: 100%;
  height: 800px;
}

.footer-graph {
  padding-top: 300px;
}

/* グラフィックデザインここまで */

/* イラストデザインここから */

.class-illust-wrapper {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  height: 700px;
}

.class-illust-box {
  display: flex;
  align-items: center;
  gap: 150px;
}

.class-illust-image {
  width: 600px;
  height: auto;
  padding-left: 50px;
  padding-top: 50px;
  filter: drop-shadow(10px 10px 3px #aabbd2);
}

.class-illust-title {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 56px;
  padding-left: 50px;
  line-height: 3em;
}

.footer-wrapper-illut {
  width: 100%;
  height: 800px;
}

.footer-illust {
  padding-top: 300px;
}

/* イラストデザインここまで */

/* ページトップボタンここから */

#page-top {
  position: fixed;
  right: 20px;
  bottom: 10px;
  cursor: pointer;
  transition: 0.3s;
  z-index: 2;
}

#page-top a img {
  width: 200px;
  height: 200px;
  position: relative;
  filter: drop-shadow(10px 10px 3px #aabbd2);
}

#page-top a img:hover {
  opacity: 0.5;
}

/* ページトップボタンここまで */

/* コピーライトここから */

.copy {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  padding-left: 650px;
  padding-bottom: 20px;
}

/* コピーライトここまで */

/* レスポンシブここから */

@media screen and (max-width: 599px) {
  .break-sp {
    display: block;
  }

  .break-pc {
    display: none;
  }

  /* ローディングアニメーション設定 */

  .loader {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #b0c4de;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.5s linear;
    z-index: 99999;
  }

  .loader.loaded {
    opacity: 0;
    visibility: hidden;
  }

  @keyframes spinner-rotation {
    0% {
      transform: rotate(0);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  .loader-img {
    width: 200px;
    height: auto;
    border-radius: 50%;
    vertical-align: bottom;
  }

  /* ナビゲーション */

  .header-container {
    position: relative;
    margin: 0 !important;
    height: 300px;
    font-family: serif;
  }

  .nav-menu {
    position: fixed;
    max-width: 390px;
    z-index: 999;
    top: 0;
    left: 0;
    background: #94b3dc;
    width: 70%;
    height: 100vh;
    transform: translateX(-100%);
    transition: all 0.6s;
  }

  .nav-menu.active {
    transform: translateX(0%);
  }

  .drop-menu-list {
    position: static;
    text-align: left;
    list-style: none;
    opacity: 1;
    visibility: visible;
    background-color: transparent;
    width: auto;
    line-height: 2em;
    padding: 0 1rem 1rem;
    transition: 0.3s;
    z-index: 1;
  }

  .menu-list,
  .drop-menu-list {
    display: flex;
    flex-direction: column;
    padding-top: 24px;
    text-align: left;
    margin-bottom: -55px;
  }

  .menu-item,
  .drop-menu-item {
    padding: 20px;
    font-family: "Kiwi Maru", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    text-align: left;
    line-height: normal;
    margin-bottom: 24px;
  }

  .menu-item:nth-of-type(3) .menu-item-no {
    pointer-events: none;
    padding-right: 40px;
    padding-bottom: 10px;
    font-size: 16px;
  }

  /* メニューボタン */
  .sp-menu-btn {
    background: #94b3dc;
    border: none;
    position: fixed;
    right: 10px;
    top: 10px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 1000;
    border-radius: 50%;
  }

  .sp-menu-btn .line {
    display: block;
    position: absolute;
    width: 30px;
    height: 1px;
    right: 15px;
    background: #333;
    transition: 0.3s ease-in-out;
  }

  .sp-menu-btn span:nth-child(1) {
    top: 20px;
  }

  .sp-menu-btn span:nth-child(2) {
    top: 28px;
  }

  .sp-menu-btn span:nth-child(3) {
    top: 36px;
  }

  /* メニューが開いているときのボタン */
  .sp-menu-btn.active span:nth-child(1) {
    top: 28px;
    transform: rotate(-45deg);
  }

  .sp-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .sp-menu-btn.active span:nth-child(3) {
    top: 28px;
    transform: rotate(45deg);
  }

  /* トップ */

  .top-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 700px;
  }

  .top-illust {
    width: 200px;
    height: 200px;
    top: 25vh;
    left: 11vh;
    border-radius: 50%;
    filter: drop-shadow(10px 10px 3px #aabbd2);
  }

  .title-text {
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 55px;
    padding-left: 0;
    margin-top: -15vh;
    text-align: center;
  }

  /* プロフィールについて */

  .profile-wrapper {
    width: 100%;
    height: 800px;
  }

  .title {
    position: relative;
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    padding-left: 30px;
    padding-bottom: 20px;
    font-size: 35px;
    letter-spacing: 0.5em;
  }

  .profile-box {
    display: block;
    margin: 0;
  }

  .profile-illust {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 30px 20px 30px 90px;
    filter: drop-shadow(10px 10px 3px #aabbd2);
  }

  .profile-text-box {
    display: flex;
    flex-direction: column;
  }

  .profile-name {
    font-family: "Kiwi Maru", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 32px;
    padding: 10px 30px 10px 30px;
    text-align: left;
  }

  .profile-name ::first-letter {
    color: #b0c4de;
    font-size: 2em;
  }

  .profile-text {
    font-family: "Kiwi Maru", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 0.05em;
    padding: 10px 30px 10px 30px;
    line-height: 1.5em;
    text-align: left;
  }

  #profile-link a {
    font-family: "Kiwi Maru", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 30px;
    padding-left: 30px;
    text-decoration: none;
  }

  #profile-link a:hover {
    color: #b0c4de;
  }

  /* 作品紹介 */

  .works-wrapper {
    width: 100%;
    height: 800px;
  }
  .works-text {
    font-family: "Kiwi Maru", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    text-align: left;
    letter-spacing: 0.05em;
    padding-left: 30px;
    padding-right: 30px;
    line-height: 1.5em;
    margin: 0;
  }

  .works-box {
    display: flex;
    flex-direction: column;
    padding-left: 13vh;
    gap: 30px;
  }

  .web-img {
    width: 150px;
    height: 150px;
    border-radius: 30%;
    filter: drop-shadow(10px 10px 3px #aabbd2);
  }

  .graphic-img {
    width: 150px;
    height: 150px;
    border-radius: 30%;
    filter: drop-shadow(10px 10px 3px #aabbd2);
  }

  .illusut-img {
    width: 150px;
    height: 150px;
    border-radius: 30%;
    filter: drop-shadow(10px 10px 3px #aabbd2);
  }

  .web-link a {
    overflow: hidden;
  }

  .web-link a img:hover {
    transform: scale(1.3);
    transition: 0.3s;
  }

  .graphic-link a {
    overflow: hidden;
  }

  .graphic-link a img:hover {
    transform: scale(1.3);
    transition: 0.3s;
  }

  .illust-link a {
    overflow: hidden;
  }

  .illust-link a img:hover {
    transform: scale(1.3);
    transition: 0.3s;
  }

  /* フッター */

  .footer-wrapper {
    width: 100%;
    height: 590px;
  }

  .footer-top {
    padding-top: 23vh;
  }

  .footer-text {
    font-family: "Kiwi Maru", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    text-align: center;
    margin: 10px;
  }

  .mail-text {
    font-family: "Kiwi Maru", serif;
    font-weight: 400;
    font-style: normal;
    color: #94b3dc;
    font-size: 16px;
    text-align: center;
    padding: 16px 30px 16px 30px;
    margin: 50px 10px 50px 10px;
    border: 1px solid #94b3dc;
    border-radius: 40px;
    background-color: #fff;
  }

  /* トップページここまで */

  /* ページトップボタンここから */

  #page-top {
    position: fixed;
    cursor: pointer;
    transition: 0.3s;
    z-index: 2;
  }

  #page-top a img {
    width: 90px;
    height: 90px;
    position: relative;
    filter: drop-shadow(10px 10px 3px #aabbd2);
  }

  #page-top a img:hover {
    opacity: 0.5;
  }

  /* ページトップボタンここまで */

  /* コピーライトここから */

  .copy {
    font-family: "Kiwi Maru", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    padding: 10px 30px 10px 55px;
    margin-left: 50px;
  }

  /* コピーライトここまで */

  /* Milkについて */

  .profile-top {
    width: 100%;
    height: 700px;
  }

  .profile-title {
    position: relative;
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 78px;
    padding: 280px;
  }

  .profile-pg-box {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    height: 2000px;
  }

  .profile-title-mini1 {
    font-family: "Kiwi Maru", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 45px;
    padding-left: 30px;
    line-height: 3em;
  }

  .name-life {
    font-family: "Kiwi Maru", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 30px;
    text-align: left;
    padding-left: 30px;
    line-height: 2em;
  }

  .profile-pg-name {
    font-family: "Kiwi Maru", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 25px;
    color: #94b3dc;
    text-align: left;
    padding-left: 30px;
    line-height: 2em;
  }

  .profile-pg-text {
    font-family: "Kiwi Maru", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    text-align: left;
    padding: 10px 30px 10px 30px;
    line-height: 1.5em;
  }

  .character-box {
    margin-right: 0vh;
  }
  .character {
    font-family: "Kiwi Maru", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 30px;
    text-align: left;
    padding-left: 30px;
    line-height: 2em;
  }

  .character-text-top {
    font-family: "Kiwi Maru", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 25px;
    color: #94b3dc;
    text-align: left;
    padding-left: 30px;
    line-height: 2em;
  }

  .character-text {
    font-family: "Kiwi Maru", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    text-align: left;
    padding: 10px 30px 10px 30px;
    line-height: 1.5em;
  }

  .profile-title-mini2 {
    font-family: "Kiwi Maru", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 30px;
    text-align: left;
    padding-top: 90px;
    padding-left: 30px;
    line-height: 2em;
  }

  .sp-wrapper {
    width: 100%;
    height: 1000px;
  }

  .sp-bg {
    display: flex;
    justify-content: center;
  }

  .sp-bg img {
    width: 130px;
    height: auto;
    filter: drop-shadow(10px 10px 3px #aabbd2);
  }

  .can-text-top {
    font-family: "Kiwi Maru", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 25px;
    color: #94b3dc;
    text-align: left;
    padding-left: 30px;
    line-height: 2em;
  }

  .can-text {
    font-family: "Kiwi Maru", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    text-align: left;
    padding: 10px 30px 10px 30px;
    line-height: 1.5em;
  }

  .profile-title-mini3 {
    font-family: "Kiwi Maru", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 45px;
    padding-top: 100px;
    padding-left: 30px;
    line-height: 3em;
  }

  .forte-text {
    font-family: "Kiwi Maru", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    padding: 30px 30px 10px 30px;
    text-align: left;
    line-height: 1.5em;
  }

  .footer-wrapper-prf {
    width: 100%;
    height: 725px;
  }

  .footer-prf {
    padding-top: 39vh;
  }

  /* Milkについてここまで */

  /* webデザイン作品ページここから */

  .cafe-site-wrapper {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    height: 1400px;
  }

  .cafe-box {
    display: block;
  }

  .cafe-image {
    width: 350px;
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(10px 10px 3px #aabbd2);
  }

  .cafe-title {
    font-family: "Kiwi Maru", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 30px;
    padding-left: 30px;
    line-height: 3em;
  }

  .ptf-site-wrapper {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    height: 1460px;
  }

  .ptf-box {
    display: block;
  }

  .ptf-image {
    width: 350px;
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(10px 10px 3px #aabbd2);
  }

  .ptf-title {
    font-family: "Kiwi Maru", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 30px;
    padding-left: 30px;
    line-height: 3em;
  }

  .table-box {
    display: flex;
    flex-direction: column;
  }

  .table-item {
    font-family: "Kiwi Maru", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    color: #94b3dc;
    line-height: 3em;
    vertical-align: top;
    text-align: left;
    padding: 10px 30px 10px 30px;
  }

  .table-content {
    font-family: "Kiwi Maru", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    padding: 10px 30px 10px 30px;
    line-height: 1.5em;
  }

  .table-content a {
    font-family: "Kiwi Maru", serif;
    font-weight: 400;
    font-style: normal;
    color: #94b3dc;
    font-size: 16px;
    text-align: center;
    padding: 5px 30px 5px 30px;
    margin: 50px 10px 50px 10px;
    border: 1px solid #94b3dc;
    border-radius: 40px;
    background-color: #fff;
    text-decoration: none;
    transition: 0.5s;
  }

  .table-content a:hover {
    color: #647fa4;
  }
  .footer-wrapper-web {
    width: 100%;
    height: 480px;
  }

  .footer-web {
    padding-top: 10vh;
  }

  /* webデザイン作品ページここまで */

  /* グラフィックデザインここから */

  .phot-wrapper {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    height: 1300px;
  }

  .phot-box {
    display: block;
  }

  .phot-image {
    width: 350px;
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(10px 10px 3px #aabbd2);
  }

  .phot-title {
    font-family: "Kiwi Maru", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 30px;
    padding-left: 30px;
    line-height: 3em;
  }

  .flyer-wrapper {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    height: 1400px;
  }

  .flyer-box {
    display: block;
  }

  .flyer-image {
    width: 350px;
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(10px 10px 3px #aabbd2);
  }

  .flyer-title {
    font-family: "Kiwi Maru", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 30px;
    padding-left: 30px;
    line-height: 3em;
  }

  .sns-wrapper {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    height: 1300px;
  }

  .sns-box {
    display: block;
  }

  .sns-image {
    width: 350px;
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(10px 10px 3px #aabbd2);
  }

  .sns-title {
    font-family: "Kiwi Maru", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 30px;
    padding-left: 30px;
    line-height: 3em;
  }

  .footer-wrapper-graph {
    width: 100%;
    height: 480px;
  }

  .footer-graph {
    padding-top: 10vh;
  }

  /* グラフィックデザインここまで */

  /* イラストデザインここから */

  .class-illust-wrapper {
    max-width: 100%;
    width: 100%;
    height: 1400px;
  }

  .class-illust-box {
    display: block;
  }

  .class-illust-image {
    width: 350px;
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(10px 10px 3px #aabbd2);
  }

  .class-illust-title {
    font-family: "Kiwi Maru", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 30px;
    padding-left: 30px;
    line-height: 3em;
  }

  .footer-wrapper-illut {
    width: 100%;
    height: 480px;
  }

  .footer-illust {
    padding-top: 10vh;
  }

  /* イラストデザインここまで */
}

/* レスポンシブここまで */
