body {
  font-family: 'Josefin Sans', sans-serif, "Montserrat", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", 'Cormorant Garamond', Meiryo, sans-serif;
  font-size: 15px;
  letter-spacing: .05em;
  color: #3d2a14;
  background-color: #faf4eb;
  width: 100%;
}

.overlay {
  background-color: #faf4eb;
}


/*デフォルトのマウスカーソルを非表示にする*/
html,
body,
a {
  cursor: none;
  margin: 0;
  /* マージンをリセット */
  padding: 0;
  /* パディングもリセット */
  overflow-x: hidden;
  /* 横スクロールバーを防止 */
}

/*独自のマウスカーソルを作成*/
.cursor {
  position: fixed;
  top: -5px;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3d2a14;
  z-index: 1000;
  transition: width 0.5s, height 0.5s, top 0.5s, left 0.5s;
  transform: translate(0, 0);
  pointer-events: none;
  z-index: 100000;
}

/*aタグにホバーした時に見た目変化*/
.cursor.cursor--hover {
  top: -20px;
  left: -20px;
  width: 40px;
  height: 40px;
  background: rgba(221, 178, 129, 0.8);
}



a {
  transition: opacity .3s;
  text-decoration: none;
  color: #3d2a14;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border-style: none;
}



.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

/*--------------------------------
 レイアウト
---------------------------------*/
.wrapper {
  padding-top: 73px;
}

.section {
  padding: 90px 0;
}

.section:nth-of-type(odd) {
  background-color: #faf4eb;
}

.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
}

.content {
  position: relative;
  transition: transform 0.1s ease-out;
}

/*--------------------------------
 見出し
---------------------------------*/
.title {
  font-size: 54px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 40px;
  letter-spacing: .05em;
  color: #3d2a14;
  margin-left: 30px;
}

.lead {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

/*--------------------------------
ヘッダー
---------------------------------*/
.header {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  background-color: #faf4eb;
  opacity: 0.8;
  transition: margin 0.3s;
  padding: 0px;
}

.header.shrink {
  margin-top: -13px;
  margin-bottom: -40px;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
}

.container .header-logo {
  opacity: 1;
}

.header-logo {
  width: 7vw;
  max-width: 300px;
}

.gnav-list {
  display: flex;
  justify-content: space-between;
  list-style: none;
}

.gnav-item:not(:last-child) {
  margin-right: 20px;
}

.gnav-item a {
  position: relative;
  font-size: 13px;
  font-weight: bold;
  display: inline-block;
  padding: 5px 0;
  transition: .3s;
  letter-spacing: .05em;
  color: #3d2a14;
}

.gnav-item a:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  content: "";
  transition: .3s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #3d2a14;
}

.gnav-item a:hover:after {
  width: 100%;
}

.header-txt {
  width: 180px;
  font-size: 9px;
  margin: auto 20px;
  line-height: 1.5;
}

.header>.container>a {
  display: flex;
}

/*--------------------------------
 メインビジュアル
---------------------------------*/
.mv {
  align-items: center;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;

}


.mv-container {
  padding: 0 20px;
}

.mv-container img {
  width: 100%;
  height: auto;
}



.deco {
  position: fixed;
  z-index: 0;
  opacity: 0.1;
  width: 50%;
  top: -320px;
  left: -160px;
  animation: 30s linear infinite rotation1;
  max-width: 100%;
}

@keyframes rotation1 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------
 About
---------------------------------*/
.about {
  margin-top: -20px;
  position: relative;
  background: #fff;
  margin-top: 650px;
  margin-left: auto;
  margin-right: auto;
  width: 100vw;
  border-top: 40px solid #88776e;
  padding-bottom: 170px
}

.deco-4 {
  display: none;
}

.about>.container {
  margin-top: 50px;
}

.name {
  position: absolute;
  top: 20px;
}

.name-en {
  position: relative;

}

.name-en>p {
  margin-top: 50px;
}

.profile {
  display: flex;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 30px;
}

.profile-img {
  width: 20%;
  margin-right: 30px;
  border-radius: 50%;
}

.profile-img img {
  border-radius: 50%;
}

.profile-body {
  flex: 1;
  position: relative;
}

.profile-body p {
  font-size: 15px;
  line-height: 1.8;
}

.profile-body p:not(:last-child) {
  margin-bottom: 30px;
}

.about_lead {
  font-size: 80px;
  position: absolute;
  top: 20px;
  right: 60px;
  z-index: 0;
  font-weight: 600;
}


.deco-2 {
  position: absolute;
  z-index: 0;
  opacity: 0.16;
  width: 50%;
  top: 70px;
  right: -190px;
  animation: 30s linear infinite rotation1;
  max-width: 100%;
}

@keyframes rotation1 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}


/* 経歴ボタン */

.click>p {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-style: italic;
  font-size: 24px;
  position: relative;
  float: right;
  right: 140px;
  bottom: 50px;
  color: #9b6c40;
}


.button {
  position: absolute;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #766a63;
  font-weight: 500;
  width: fit-content;
  gap: 1em;
  height: 80px;
  padding: 20px 30px;
  border-radius: 10px;
  background: #faf9f8;
  box-shadow: 4px 4px 2px #9a9288,
    -4px -4px 2px #ffffff;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  /* トランジションを追加 */
  right: 20px;
  top: 600px;
  transform: scale(.7);
}

.button:hover {
  box-shadow: inset 4px 4px 2px #9a9288,
    inset -4px -4px 2px #ffffff;
  /* 内側に影を追加 */
  transform: translateY(4px) scale(.7);
  /* 少し下に移動 */
}

.circle_btn {
  position: relative;
  background: #ede6df;
  color: #fff;
  padding: 0.7rem;
  border-radius: 100vh;
  width: 2.5rem;
  height: 2.5rem;
  text-align: center;
  transition: 0.3s;
}

.circle_btn:after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #5d412d;
  border-right: 3px solid #5d412d;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: calc(50% - 2px);
  right: calc(50% - 2px);
  transition: 0.3s ease-in-out;
}

.button:hover .circle_btn {
  transform: scale(1.15);
  background: #5d412d;
}

.button:hover .circle_btn:after {
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

.btn_txt {
  font-size: 20px;
  font-weight: 600;
}


.modal {
  display: none;
  /* 初期状態は非表示 */
  position: fixed;
  /* スクロールしても画面に固定 */
  top: 4.6%;
  left: 30%;
  width: 40%;
  height: 89%;
  border: 4px solid #5d412d;
  background: rgba(255, 255, 255, 0.621);
  box-shadow: 20px 20px 0 #52483b69;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(1px);
  border-radius: 30px;
  z-index: 1100;
  /* 他の要素の上に表示 */
  opacity: 0;
  /* 初期不透明度 */
  transition: opacity 0.5s ease;
  /* フェードインのトランジション */
  overflow-y: auto;
  max-height: 100vh;
  /* 画面の高さを超えないように */
  margin: 0 auto;
}

.modal-content div {
  width: 100%;

}

.modal-content {
  margin-right: 30px;
  transform: scale(0.8);
}

.modal.show {
  display: block;
  /* 表示時にブロック要素に変更 */
  opacity: 1;
  /* 不透明度を1に */
}

.close-button {
  font-size: 70px;
  float: right;
  position: absolute;
  right: -70px;
  top: 0;
  color: #3d2a14;
}

.modal-content h2 {
  position: absolute;
  right: -30px;
  top: 35px;
  font-size: 12px;
  color: #766a63;
}

body.modal-open {
  overflow: hidden;
}

/***ステップバーデザイン１***/
.step-wrap1 {
  counter-reset: count;
  float: right;
  margin: 60px auto 30px auto;
  height: 89%;
}

.step-content1 {
  margin: 0;
  position: relative;
}

.step-content1::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background: #bda393;
  border: solid 3px #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 10px;
  box-shadow: 0 0 0 2px #bda393;
}

.step-content1::after {
  content: "";
  display: block;
  height: calc(100% - 35px);
  border-left: dotted 5px #9a9288;
  position: absolute;
  top: 30px;
  left: 14px;
}

.step-title1 {
  font-weight: bold;
  font-size: 120%;
  margin-left: 50px;
}

.step-label1 {
  color: #9a9288;
  font-weight: bold;
  margin-left: 50px;
}

.step-body1 {
  margin-top: .5em;
  padding: 0 0 1em;
  border-bottom: dotted 2px #ddd;
  margin-left: 50px;
}

.step-wrap1> :last-of-type::after {
  display: none;
}

/***ステップバーデザイン１***/

.no-scroll {
  overflow: hidden;
  /* スクロールを無効にする */
}

/*--------------------------------
 Works
---------------------------------*/

/* Animations */
.border-dotted {
  width: 100%;
  height: 40px;
  border-top: 5px dotted #766a63;
  position: absolute;
  top: 20px;
}

.border-dotted2 {
  width: 100%;
  height: 40px;
  border-bottom: 5px dotted #766a63;
  position: absolute;
  bottom: 20px;
}

#works {
  background-color: #efe8dd;
  margin-top: 0px;
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  width: 100vw;
}

.date{
  top: -130px;
  position: absolute;
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
}

.works .container .title {
  margin-top: 40px;
}

.works-list {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.works-item {
  right: 0px;
  position: relative;
  color: #3d2a14;
  width: 85%;
  border-radius: 20px;
  margin:40px auto 0 auto;
}

.works-item:hover {
  opacity: 1;
  background-color: #5d472410;
  border: 4px solid #3d2a143e;
}

.works-img img{
  position: relative;
  margin-top: 60px;
  margin-bottom: 20px;
  margin-right: 50px;
  opacity: 1;
  transition: opacity .5s ease-in-out;
  overflow: hidden;
  z-index: 100;
  width: 40vw;
  float: right;
}


.works-name {
  position: absolute;
  text-align: left;
  font-size: 20px;
  margin-left: 50px;
  width: auto;
  max-width: 100%;
  top: 200px;
}

.genre {
  margin-left: 0px;
  text-align: left;
  font-size: 15px;
  position: absolute;
  left: 0;
}

.works-info {
  position: absolute;
  font-size: 14px;
  position: absolute;
  top: 70px;
  left: 0;
  width: 500px;
}

.works-item {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1.5s;

  &.scrollin {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

.text-animation {
  position: absolute;
  white-space: nowrap;
  /* テキストを横に流すため */
  top: 50%;
  /* 中央に配置 */
  left: 100%;
  /* 画面外からスタート */
  transform: translateY(-50%);
  /* 縦方向に中央揃え */
  opacity: 0;
  /* 初期状態は透明 */
  transition: opacity 0.5s ease-in-out;
  /* フェードイン用のトランジション */
  font-size: 130px;
  z-index: 0;
  color: #5d412d6f;
}

.works-item:hover .text-animation {
  animation: slide 50s linear infinite;
  /* アニメーションを追加 */
  opacity: .4;
  /* ホバー時に文字を表示 */
}

@keyframes slide {
  0% {
    transform: translateY(-50%) translateX(0);
    /* 開始位置 */
    opacity: .4;
  }

  80% {
    transform: translateY(-50%) translateX(-100%);
    /* 流れきった位置 */
    opacity: .4;
  }

  100% {
    transform: translateY(-50%) translateX(-100%);
    /* 終了位置 */
    opacity: 0;
  }
}


/*--------------------------------
 Skill
---------------------------------*/
.skill-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0px auto;
  padding: 60px 60px 40px 60px;
  background-color: #ffffff;
  float: right;
  border-radius: 50px;
  border: 4px solid #5d412d;
  box-shadow: 20px 20px 0 #52483b69;
  transform: scale(0.8);
}

.skill {
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  width: 100vw;
  background-color: #faf4eb;
  height: 800px;
}

.skill-item {
  width: 48%;
  margin-bottom: 50px;
}

.skill-body {
  flex: 1;
}

.skill-name {
  font-weight: 500;
}

.skill-text {
  font-size: 14px;
  line-height: 1.8;
}

.chart {
  margin: 0;
  width: 300px;
  margin: 0 auto;
}

/* スキルの情報 */
.skill-info {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* スキルの熟練度（パーセンテージ） */
.skill-percentage {
  opacity: 0;
  /* 初期状態では透明に */
  transition: opacity 0.6s;
}

/* スキルバーの親要素 */
.skill-bar-container {
  position: relative;
  width: 100%;
  height: 15px;
  /* スキルバーの高さ */
  background-color: #bbb6aeb6;
  /* スキルバーの背景色 */
  overflow: hidden;
}

/* スキルバー本体 */
.skill-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  /* 初期状態では0 */
  background-color: #5d412d;
  /* スキルバーの色 */
  transition: width 3s cubic-bezier(0.22, 1, 0.36, 1);
  /* スキルバーが伸びる速度を調整 */
}

/*--------------------------------
 Contact
---------------------------------*/
.contact {
  position: relative;
  z-index: 100;
  background-color: #faf4eb;
}

.conclusion {
  display: flex;
  /* flexboxを使う */
  justify-content: center;
  /* 中央揃え */
  overflow: hidden;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: .05em;
  color: #3d2a14;
  margin: 0;

}

.conclusion span {
  margin-top: 20px;
  display: inline-block;
  transform: translate(0, 105%);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}

.conclusion.-visible span {
  transform: translate(0, 0);
}

.conclusion span:nth-child(2) {
  transition-delay: 0.06s;
}

.conclusion span:nth-child(3) {
  transition-delay: 0.12s;
}

.conclusion span:nth-child(4) {
  transition-delay: 0.18s;
}

.conclusion span:nth-child(5) {
  transition-delay: 0.24s;
}

.conclusion span:nth-child(6) {
  transition-delay: 0.30s;
}

.conclusion span:nth-child(7) {
  transition-delay: 0.36s;
}

.conclusion span:nth-child(8) {
  transition-delay: 0.42s;
}

.conclusion span:nth-child(9) {
  transition-delay: 0.48s;
}

.conclusion span:nth-child(10) {
  transition-delay: 0.54s;
}

.conclusion span:nth-child(11) {
  transition-delay: 0.60s;
}

.conclusion span:nth-child(12) {
  transition-delay: 0.66s;
}

.conclusion span:nth-child(13) {
  transition-delay: 0.72s;
}

.conclusion span:nth-child(14) {
  transition-delay: 0.78s;
}

.conclusion span:nth-child(15) {
  transition-delay: 0.84s;
}

.conclusion span:nth-child(16) {
  transition-delay: 0.90s;
}

.conclusion span:nth-child(17) {
  transition-delay: 0.96s;
}

.conclusion span:nth-child(18) {
  transition-delay: 1.02s;
}

.conclusion span:nth-child(19) {
  transition-delay: 1.08s;
}

.conclusion span:nth-child(20) {
  transition-delay: 1.14s;
}

.conclusion span:nth-child(21) {
  transition-delay: 1.20s;
}

.conclusion span:nth-child(22) {
  transition-delay: 1.26s;
}

.conclusion span:nth-child(23) {
  transition-delay: 1.32s;
}

.conclusion span:nth-child(24) {
  transition-delay: 1.38s;
}

.conclusion span:nth-child(25) {
  transition-delay: 1.44s;
}

.conclusion span:nth-child(26) {
  transition-delay: 1.50s;
}

.conclusion span:nth-child(27) {
  transition-delay: 1.56s;
}

.conclusion span:nth-child(28) {
  transition-delay: 1.62s;
}

.conclusion span:nth-child(29) {
  transition-delay: 1.68s;
}

.conclusion span:nth-child(30) {
  transition-delay: 1.74s;
}

.conclusion span:nth-child(31) {
  transition-delay: 1.80s;
}

.conclusion span:nth-child(32) {
  transition-delay: 1.86s;
}

.conclusion span:nth-child(33) {
  transition-delay: 1.92s;
}

.conclusion span:nth-child(34) {
  transition-delay: 1.98s;
}

.contact-item {
  background-color: #3d2a14;
  color: white;
  height: 300px;
  text-align: center;
  font-size: 40px;
  position: relative;
  z-index: 100;

}

.contact section {
  margin-left: 40px;
  background-color: #faf4eb;
}

.contact-text {
  padding-top: 50px;
}

/*--------------------------------
 ページトップ
---------------------------------*/
.page-top {
  font-weight: bold;
  padding: 10px;
  cursor: pointer;
  text-align: center;
  background-color: #3d2a14;
  position: relative;
  z-index: 100;
}

.page-top .material-icons-outlined {
  vertical-align: bottom;
  color: #fff;
}

/*--------------------------------
 フッター
---------------------------------*/
.footer {
  padding: 30px;
  background-color: #bda393;
  position: relative;
  z-index: 1;
}

.copyright {
  font-size: 10px;
  text-align: center;
  color: #3d2a14;
}

/*--------------------------------
 下層：Worksページ
---------------------------------*/
.article {
  padding: 80px 0;
}

.article-container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.article-title {
  margin-bottom: 30px;
  text-align: center;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  margin-bottom: 80px;
}

.article-body h3 {
  position: relative;
  font-size: 18px;
  margin-bottom: 5px;
  padding-left: 1em;
}

.article-body img {
  width: 100%;
  height: auto;
  box-shadow: 20px 20px 0 #52483b69;
}

.article-body h3:not(:first-child) {
  margin-top: 50px;
}

.article-body h3::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  content: "";
  border-radius: 3px;
  background-color: #3d2a14;
}

.article-body p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.home-link {
  text-align: center;
}

.home-link>a {
  color: #c97e27;
}

.main-visual,
.after-scroll {
  background-color: #ffffff;
  width: 160px;
  text-align: center;
  padding: 10px 0;
  margin-bottom: 10px;
  border-radius: 99px;
  border: 1px solid #3d2a14
}

.after-scroll {
  margin-top: 60px;
}

.article-body>p {
  margin-top: 10px;
}


/*media Queries 767
----------------------------------------------------*/
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    margin-top: 50px;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .mv {
    align-items: center;
    justify-content: center;
    align-items: center;
    display: flex;
    position: fixed;
    top: 180px;
    left: -7px;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    aspect-ratio: 9 / 16;
    transform: scale(1.12);
  }

  .arrow {
    width: 40px;
    height: 40px;
    border: 3px solid #3d2a14;
    border-radius: 30%;
    position: relative;
    animation: down 1.5s infinite;
    -webkit-animation: down 1.5s infinite;
    position: absolute;
    bottom: -150px;
    right: 50px;
    background-color: #ffffff;

    &::before {
      content: '';
      position: absolute;
      top: 8px;
      left: 11px;
      width: 13px;
      height: 13px;
      border-left: 3px solid #3d2a14;
      border-bottom: 3px solid #3d2a14;
      transform: rotate(-45deg);
    }
  }

  @keyframes down {
    0% {
      transform: translate(0);
    }

    20% {
      transform: translateY(15px);
    }

    40% {
      transform: translate(0);
    }
  }

  @-webkit-keyframes down {
    0% {
      transform: translate(0);
    }

    20% {
      transform: translateY(15px);
    }

    40% {
      transform: translate(0);
    }
  }




  /* 装飾 */
  .deco {
    position: fixed;
    z-index: 0;
    opacity: 0.1;
    width: 70%;
    top: 0px;
    left: -70px;
    animation: 30s linear infinite rotation1;
  }

  @keyframes rotation1 {
    0% {
      transform: rotate(0);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  .deco1 {
    position: fixed;
    z-index: 0;
    opacity: 0.2;
    width: 100%;
    top: 500px;
    right: -190px;
    animation: 30s linear infinite rotation1;
  }

  @keyframes rotation1 {
    0% {
      transform: rotate(0);
    }

    100% {
      transform: rotate(360deg);
    }
  }



  .deco-3 {
    display: none;
  }

  .about {
    margin-top: 700px;
    margin-bottom: 0px;
    border-top: 15px solid #63483483;
  }

  .about>.container>.title {
    margin-top: -40px;
  }

  .name {
    font-size: 18px;
  }

  .deco-4 {
    display: block;
    position: absolute;
    z-index: 0;
    opacity: 0.12;
    width: 100%;
    top: 250px;
    left: -170px;
    animation: 30s linear infinite rotation1;
  }

  @keyframes rotation1 {
    0% {
      transform: rotate(0);
    }

    100% {
      transform: rotate(360deg);
    }
  }


  /* biographyボタン */
  .click {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .click>p {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-style: italic;
    font-size: 12px;
    text-align: center;
    color: #9b6c40;
    margin: 20px 0;
    /* 上下のマージンを設定 */
    position: inherit;
  }


  .button {
    transform: scale(0.5);
    width: 370px;
    top: -30px;
    right: 0;
    position: relative;
    transition: transform 0.2s ease;
    margin: 0 auto;
  }

  .button:hover {
    box-shadow: inset 4px 4px 2px #9a9288,
      inset -4px -4px 2px #ffffff;
    /* 内側に影を追加 */
    transform: translateY(4px) scale(0.5);
    /* 少し下に移動 */
  }

  .circle_btn {
    position: relative;
    background: #ede6df;
    color: #fff;
    padding: 0.7rem;
    border-radius: 100vh;
    width: 2.5rem;
    height: 2.5rem;
    text-align: center;
    transition: 0.3s;
  }

  .circle_btn:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #5d412d;
    border-right: 3px solid #5d412d;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: calc(50% - 2px);
    right: calc(50% - 2px);
    transition: 0.3s ease-in-out;
  }

  .button:hover .circle_btn {
    transform: scale(1.1);
    background: #5d412d;
  }

  .button:hover .circle_btn:after {
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  }

  .btn_txt {
    font-size: 20px;
    font-weight: 600;
  }

  .modal {
    display: none;
    /* 初期状態は非表示 */
    position: fixed;
    /* スクロールしても画面に固定 */
    top: 10%;
    left: 5%;
    width: 90%;
    height: 75%;
    border: 4px solid #5d412d;
    background: rgba(255, 255, 255, 0.939);
    box-shadow: 12px 12px 0 #52483b69;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(1px);
    border-radius: 30px;
    z-index: 1000;
    /* 他の要素の上に表示 */
    opacity: 0;
    /* 初期不透明度 */
    transition: opacity 0.5s ease;
    /* フェードインのトランジション */
    overflow-y: auto;
  }

  /*** ステップバーデザイン１ ***/
  .step-wrap1 {
    padding: .5em;
    margin-top: 55px;

  }

  .step-content1 {
    padding: 0;
    margin-left: 5px;
    position: relative;
  }

  .step-content1::before {
    content: "";
    display: block;
    width: 10px;
    /* サイズを調整 */
    height: 10px;
    /* サイズを調整 */
    background: #bda393;
    border: solid 3px #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 25px;
    left: -10px;
    /* 左寄せに変更 */
    box-shadow: 0 0 0 2px #bda393;
  }

  .step-content1::after {
    content: "";
    display: block;
    height: calc(100% - 5px);
    border-left: dotted 3px #9a9288;
    /* 幅を調整 */
    position: absolute;
    top: 35px;
    /* 上の位置を調整 */
    left: -6px;
    /* 左の位置を調整 */
  }

  .step-title1 {
    font-weight: bold;
    font-size: 110%;
    /* フォントサイズを調整 */
    margin-left: 20px;
    line-height: 1.25;
  }

  .step-label1 {
    color: #9a9288;
    font-weight: bold;
    margin-left: 20px;
    margin-bottom: 8px;
    padding-top: 20px;
  }

  .step-body1 {
    margin-top: .5em;
    padding: 0 0 1em;
    border-bottom: dotted 1px #ddd;
    /* 幅を調整 */
    margin-left: 20px;
    line-height: 1.25;
    font-size: 12px;
    height: 60px;
  }

  .step-wrap1> :last-of-type::after {
    display: none;
  }

  .close-button {
    margin-right: 12px;
    top: -10px;
  }

  .modal-content>h2 {
    margin-right: 12px;
    top: 28px;
  }

  /*** ステップバーデザイン１ ***/


  /* 見出し */
  .title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .lead {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  /* レイアウト */
  .wrapper {
    padding-top: 57px;
  }

  .section {
    padding: 60px 0;
  }

  .container {
    padding: 0 20px;
  }

  /* ヘッダー */
  .header .container {
    padding: 15px;
  }

  .header-logo {
    width: 12vw;
    margin-right: 15px;
  }

  .gnav-item:not(:last-child) {
    margin-right: 10px;
  }

  .gnav-item a {
    font-size: 10px;
  }

  .gnav-item a:after {
    display: none;
  }

  .header-txt {
    width: 80px;
    font-size: 5px;
    margin: auto 0px;
    line-height: 1.5;
  }

  /*  メインビジュアル */
  .mv {
    height: 40vh;
  }

  .mv-container {
    padding: 0 20px;
  }

  .mv-title {
    font-size: 30px;
  }

  .mv-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .mv-text {
    top: 75%;
    font-size: 14px;
    line-height: 1.7;
  }

  /* Works */
  .genre{
    font-size: 10px;
    width: 100px;
    margin-left: -40px;
    bottom: 40px;
  }

  .date{
    font-size: 12px;
    margin-left: -40px;
    margin-top: -50px;
    font-style: italic;
    font-family: "Cormorant Garamond", serif;
  }

  .works-border{
    width: 100%;
    margin: 20px auto;
    border:1px solid #9a928872
  }

  .works-item {
    margin:0 auto;
    overflow: hidden;
  }

  .works-name strong {
    font-size: 14px;
    margin-left: -40px;
    bottom: 50px;
    position: absolute;
    width: 210px;
  }

  .works-img img{
    margin-right: 10px;
    top: -35px;
  }

  .works-list {
    justify-content: space-between;

  }

  .text-animation{
    font-size: 50px;
  }


  /* Skill */
  .skill-list {
    box-shadow: 20px 20px #b4a78669;
    margin: 0 auto;
    transform: scale(.9);
  }

  .skill-item {
    width: 100%;
    margin-bottom: 35px;
  }

  .skill-item:last-child {
    margin-bottom: 10px;
  }

  .skill-name {
    margin-bottom: 0px;
  }

  .skill-text {
    font-size: 13px;
    line-height: 1.7;
  }

  /* About */
  .profile {
    display: block;
  }

  .profile-img {
    width: 150px;
    margin: 0 auto;
    margin-bottom: 25px;
  }

  .profile-body p {
    font-size: 14px;
    line-height: 1.7;
  }

  .profile-body p:not(:last-child) {
    margin-bottom: 20px;
  }

  /* フッター */
  .footer {
    padding: 20px;
  }

  /* 下層ページ */
  .article {
    padding: 50px 0;
  }

  .article-body img {
    width: 100%;
    height: auto;
    box-shadow: 10px 10px 0 #52483b69;
  }

  .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;
  }

  .conclusion {
    font-size: 18px;
    overflow: visible;
    width: 100%;
  }

  .chart {
    width: 70vw;
  }

  .skill-list {
    float: left;
    padding: 30px 10px 40px 10px;
    margin-bottom: 30px;
  }
}