@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  font-family: "Helvetica", "Arial", "Hiragino Kaku Gothic ProN", "Yu Gothic、游ゴシック", "Meiryo、メイリオ";
  color: #1C1C1C;
  overflow-x: hidden;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.wrapper {
  width: 84%;
  max-width: 1208px;
  min-width: 960px;
  margin: 0 auto;
}

.link-btn {
  width: 180px;
  display: block;
  position: relative;
  padding: 1.5em;
  border: none;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  font-size: 18px;
  margin: 300px auto;
}

.link-btn::after, .link-btn::before {
  content: '';
  display: block;
  position: absolute;
  width: 20%;
  height: 20%;
  border: 2px solid;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 1px;
}

.link-btn::before {
  top: 0;
  left: 0;
  border-bottom-color: transparent;
  border-right-color: transparent;
  border-top-color: #E73F63;
  border-left-color: #E73F63;
}

.link-btn::after {
  bottom: 0;
  right: 0;
  border-top-color: transparent;
  border-left-color: transparent;
  border-bottom-color: #E73F63;
  border-right-color: #E73F63;
}

.link-btn:hover:after, .link-btn:hover:before {
  border-bottom-color: #E73F63;
  border-right-color: #E73F63;
  border-top-color: #E73F63;
  border-left-color: #E73F63;
  width: 100%;
  height: 100%;
}

.link-btn a {
  color: #1C1C1C;
}

.top-page header {
  width: 100%;
  height: 100vh;
  background-image: url(../img/sharon-pittaway-iMdsjoiftZo-unsplash.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.top-page header .header-mask {
  background-color: rgba(255, 255, 255, 0.2);
  width: 100%;
  height: 100%;
}

.top-page header .hamburger-btn {
  display: none;
}

.top-page header h1 {
  font-size: calc(3rem + (7.6vw - 1.48rem));
  letter-spacing: 13px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.top-page header h1::after {
  content: 'PORTFOLIO';
  font-size: 0.5em;
  display: block;
  margin-top: 3%;
}

.top-page .header-nav {
  padding: 20px 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 58px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  z-index: 10;
}

.top-page .header-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.top-page .header-nav ul li {
  padding: 0 20px;
}

.top-page .header-nav ul li a {
  color: #1C1C1C;
  font-size: 1.8rem;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
  position: relative;
}

.top-page .header-nav ul li a::after {
  content: "";
  width: 0;
  height: 2px;
  background-color: #E73F63;
  position: absolute;
  bottom: -10px;
  left: 0;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.top-page .header-nav ul li a:hover::after {
  width: 100%;
}

.top-page .nav-fixed {
  position: fixed;
  top: 0;
  background-color: #ffffff;
  width: 100%;
}

.top-page .parallaxーfixed {
  background-attachment: fixed;
}

.top-page .responsive-nav {
  display: none;
}

#about {
  margin-top: 300px;
}

#about h2 {
  font-size: 6.5rem;
  text-align: center;
}

.about-eyecatch {
  margin: 300px 0 300px;
  height: auto;
  overflow: hidden;
}

.about-eyecatch .about-catch__copy {
  font-size: 3.6rem;
  text-align: center;
  text-shadow: 0px 3px 6px #00000029;
  position: relative;
  -webkit-transform: translateY(140px);
          transform: translateY(140px);
  -webkit-transition: all ease .8s;
  transition: all ease .8s;
  opacity: 0;
}

.about-eyecatch .about-catch__copy .about-catch__copy-sub {
  font-size: 2.4rem;
  font-weight: normal;
  display: inline-block;
  margin-top: 50px;
  padding-bottom: 30px;
  position: relative;
}

.about-eyecatch .about-catch__copy .about-catch__copy-sub::after {
  content: "";
  display: block;
  width: 0;
  /* 初期状態で非表示 */
  height: 2px;
  background-color: #E73F63;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: width 0.8s ease-out 0.5s;
  transition: width 0.8s ease-out 0.5s;
  /* 遅延をつけて開始 */
}

.about-eyecatch .fade-up {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  /* ボーダーラインのアニメーション */
}

.about-eyecatch .fade-up .about-catch__copy-sub::after {
  width: 100%;
  /* 左から右へ広がる */
}

#profile h2 {
  font-size: 3.6rem;
  text-align: center;
  font-weight: 700;
}

.profile-contents {
  margin: 100px 0 200px;
  position: relative;
}

.profile-img {
  width: 42%;
  height: 450px;
  margin-left: 100px;
  background-color: azure;
}

.profile-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile-text {
  width: 61%;
  background-color: #ffffff;
  position: absolute;
  top: 200px;
  left: 40%;
}

.line-decoration {
  position: relative;
  display: block;
  padding: 40px 65px;
  width: 100%;
  height: 100%;
  opacity: 0;
  /* 最初は非表示 */
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  /* 上ボーダー */
  /* 右ボーダー */
}

.line-decoration::before, .line-decoration::after {
  content: "";
  position: absolute;
  background-color: #E73F63;
  /* ボーダーの色 */
}

.line-decoration::before {
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  -webkit-transition: width 1.2s ease;
  transition: width 1.2s ease;
}

.line-decoration::after {
  top: 0;
  right: 0;
  width: 1px;
  height: 0;
  -webkit-transition: height 1.5s ease;
  transition: height 1.5s ease;
}

/* 下・左のボーダー */
.border-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #E73F63;
  -webkit-transition: width 0.9s ease;
  transition: width 0.9s ease;
}

.border-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 0;
  background-color: #E73F63;
  -webkit-transition: height 1.1s ease;
  transition: height 1.1s ease;
}

/* ボーダーアニメーションの適用 */
.fade-in-border {
  opacity: 1;
}

.fade-in-border::before {
  width: 100%;
}

.fade-in-border::after {
  height: 100%;
}

.fade-in-border .border-bottom {
  width: 100%;
}

.fade-in-border .border-left {
  height: 100%;
}

.my-name {
  font-size: 2.4rem;
  font-weight: 300;
}

.my-name::after {
  content: "KOHSAKA MASAHIRO";
  font-size: 1.8rem;
  display: block;
  margin-top: 15px;
}

.self-introduction {
  font-size: 1.5rem;
  margin-top: 20px;
  line-height: 1.8;
}

#concept {
  margin-top: 300px;
}

#concept h2 {
  font-size: 3.6rem;
  text-align: center;
  font-weight: 700;
}

#concept .concept-img {
  width: 100%;
  height: 30vw;
  max-height: 360px;
  margin-top: 105px;
  position: relative;
}

#concept .concept-eyecatch {
  width: 25vw;
  height: 25vw;
  max-width: 35%;
  max-height: 100%;
  min-width: 330px;
  min-height: 330px;
  border-radius: 50%;
  border: 1px solid #E73F63;
  border: none;
  overflow: visible;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

#concept .concept-eyecatch:first-child {
  left: calc(50% - 30%);
}

#concept .concept-eyecatch:last-child {
  left: calc(50% + 30%);
}

#concept .concept-eyecatch svg.circle-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

#concept .concept-eyecatch.animate .progress-ring {
  stroke-dashoffset: 0;
}

#concept .concept-eyecatch h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  /* 文字サイズに対して適切な高さ */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#concept .progress-ring {
  fill: none;
  stroke: #E73F63;
  stroke-width: 0.7;
  stroke-dasharray: 301.59;
  stroke-dashoffset: 301.59;
  -webkit-transition: stroke-dashoffset 2s ease;
  transition: stroke-dashoffset 2s ease;
}

#concept .concept-list {
  list-style: none;
  /* デフォルトの番号を消す */
  counter-reset: list-counter;
  /* カウンターリセット */
  margin-top: 150px;
}

#concept .concept-list__item {
  counter-increment: list-counter;
  /* カウンターを増やす */
  position: relative;
  padding-left: 50px;
  /* 番号のスペースを確保 */
  margin-bottom: 100px;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#concept .concept-list__item::before {
  content: counter(list-counter, decimal-leading-zero) ".";
  /* "01." のように表示 */
  position: absolute;
  left: 0;
  font-size: 2rem;
  /* フォントサイズを h4 と統一 */
  font-weight: normal;
}

#concept .concept-list__item h4 {
  font-size: 2rem;
  /* h4 のフォントサイズ */
  font-weight: normal;
  margin-bottom: 10px;
}

#concept .concept-list__item p {
  font-size: 1.6rem;
  line-height: 1.8;
}

#concept .fade-up {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

#works {
  margin-top: 300px;
  /* カスタム矢印 */
  /* 矢印の線 */
  /* 矢印の先端（三角部分） */
  /* 左矢印の先端 */
  /* 右矢印の先端 */
  /* スライド内の画像のデザイン */
  /* 矢印の配置 */
  /* ドットインジケーターのデザイン */
}

#works h2 {
  font-size: 6.5rem;
  text-align: center;
}

#works .slider {
  width: 70%;
  /* スライダーの幅 */
  height: auto;
  margin: 185px auto 210px;
  /* 中央配置 */
}

#works .slick-prev, #works .slick-next {
  background: none;
  border: none;
  font-size: 0;
  width: 100px;
  height: 20px;
  position: absolute;
  bottom: -80px;
  cursor: pointer;
  z-index: 10;
}

#works .slick-prev::before,
#works .slick-next::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #E73F63;
  /* 矢印の色 */
  position: relative;
}

#works .slick-prev::after,
#works .slick-next::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #E73F63;
  position: absolute;
}

#works .slick-prev::after {
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
  left: 2px;
  top: 0px;
}

#works .slick-next::after {
  -webkit-transform: rotate(-315deg);
          transform: rotate(-315deg);
  right: 0px;
  top: 0px;
}

#works .slick-slide {
  padding: 0 10px;
  /* 画像の左右に余白を追加 */
  min-width: 216px;
  height: 100%;
  aspect-ratio: 3/ 3;
  overflow: hidden;
}

#works .slick-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 8px;
  /* 角を少し丸める（任意） */
}

#works .slick-prev {
  left: -50px;
}

#works .slick-next {
  right: -50px;
}

#works .slick-dots {
  position: absolute;
  bottom: -80px;
  /* スライド画像との間隔を縮める */
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  /* ドット間の余白 */
  list-style: none;
  padding: 0;
}

#works .slick-dots li {
  display: inline-block;
}

#works .slick-dots li button {
  font-size: 0;
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

#works .slick-dots li.slick-active button {
  background: #333;
}

#contact {
  width: 605px;
  margin: 350px auto 0;
}

#contact h2 {
  font-size: 6.5rem;
  text-align: center;
  margin-bottom: 104px;
}

#contact label {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 15px;
}

#contact input {
  display: block;
  width: 605px;
  border: 1px solid #070707;
  border-radius: 14px;
  margin: 0 auto 50px;
  padding: 20px;
}

#contact textarea {
  display: block;
  width: 605px;
  height: 300px;
  border: 1px solid #070707;
  border-radius: 14px;
  margin: 0 auto;
  padding: 20px;
}

#contact button {
  margin: 150px auto 250px;
}

footer {
  margin-top: 250px;
}

footer div {
  border-top: 1px solid #E73F63;
  padding: 30px 0;
}

footer div small {
  display: block;
  font-size: 1.3rem;
  text-align: center;
}

.sub-page header .header-nav {
  padding: 20px 0;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  width: 100%;
  z-index: 100;
}

.sub-page header .header-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-right: 5%;
}

.sub-page header .header-nav ul li {
  margin-left: 50px;
}

.sub-page header .header-nav ul li a {
  color: #1C1C1C;
  font-size: 1.8rem;
  position: relative;
}

.sub-page header .header-nav ul li a::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: #E73F63;
  display: block;
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
  position: absolute;
  left: 0;
  bottom: -5px;
}

.sub-page header .header-nav ul li a:hover::after {
  width: 100%;
}

.sub-page header .responsive-nav {
  display: none;
}

.sub-page header .header-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 100px;
}

.sub-page header .header-left {
  width: 42%;
}

.sub-page header .header-left h1 {
  font-size: clamp(6rem, 9.2vw, 10rem);
  line-height: 1.3;
  margin-bottom: 142px;
}

.sub-page header .header-left h2 {
  font-size: 2.4rem;
}

.sub-page header .header-left h2::after {
  content: "KOHSAKA MASAHIRO";
  font-size: 1.8rem;
  display: block;
  margin-top: 10px;
}

.sub-page header .header-left p {
  font-size: 1.6rem;
  line-height: 1.8;
  width: 100%;
  margin-top: 30px;
}

.sub-page header .header-img {
  width: 46.8%;
  height: 620px;
}

.sub-page header .header-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sub-page header .tab-header-contents {
  display: none;
}

.sub-page header .sp-header-contents {
  display: none;
}

.sub-page #skill {
  margin-top: 200px;
}

.sub-page #skill .section-title {
  font-size: 3.6rem;
  text-align: center;
  font-weight: 700;
}

.sub-page .skill-set {
  width: 56%;
  margin: 80px auto 0;
}

.sub-page .skill-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 30px 50px;
}

.sub-page .skill-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sub-page .skill-name {
  font-size: 1rem;
  margin-bottom: 5px;
}

.sub-page .bar-container {
  width: 100%;
  height: 37px;
  background-color: #EEE;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.sub-page .bar-fill {
  height: 100%;
  width: 0%;
  /* 初期状態 */
  background-color: #E73F63;
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
  border-radius: 5px;
}

.sub-page .bar-tick {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #999;
}

.sub-page .bar-tick:nth-of-type(2) {
  left: 33.33%;
}

.sub-page .bar-tick:nth-of-type(3) {
  left: 66.66%;
}

.sub-page .other-skill {
  margin-top: 50px;
  text-align: left;
}

.sub-page .other-skill .skill-name-other {
  display: block;
}

.sub-page .other-skill p {
  margin-top: 20px;
  display: inline-block;
  font-size: 1.3rem;
  position: relative;
  -webkit-transform: translateX(70px);
          transform: translateX(70px);
}

.sub-page .other-skill p::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 20px;
  background-color: #E73F63;
  position: absolute;
  left: -70px;
  top: -10px;
}

.sub-page .other-skill p::after {
  content: "";
  display: inline-block;
  width: 55px;
  height: 1px;
  background-color: #E73F63;
  position: absolute;
  left: -70px;
  top: 10px;
}

.sub-page .other-skill .bar-container.small {
  width: 100px;
  margin: 0.5rem 0;
}

.sub-page .skill-text {
  width: 56%;
  margin: 50px auto 0;
  padding: 50px;
  font-size: 1.6rem;
  line-height: 1.7;
}

.sub-page #strength {
  margin-top: 15vw;
}

.sub-page #strength .section-title {
  font-size: 3.6rem;
  text-align: center;
  font-weight: 700;
}

.sub-page #strength .section-title::after {
  content: "私の強み";
  font-size: clamp(1.2rem, 2vw, 2.1rem);
  font-weight: 300;
  text-align: center;
  margin-top: 1em;
  display: block;
}

.sub-page #strength .strength-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 10vw;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.sub-page #strength .strength-contents {
  width: 32%;
  padding: 2vw 1.5vw;
  border: 1px solid #E73F63;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.sub-page #strength .strength-contents.inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.sub-page #strength .strength-contents span {
  display: block;
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  text-align: center;
}

.sub-page #strength .strength-contents .strength-img {
  width: 40%;
  height: 94px;
  margin: 3vw auto 0;
}

.sub-page #strength .strength-contents .strength-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.sub-page #strength .strength-contents p {
  font-size: clamp(1.2rem, 1.5vw, 1.6rem);
  line-height: 1.7;
  margin-top: 3vw;
}

.sub-page #pros-and-cons {
  margin-top: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /* .be-not-at の方向を逆に */
}

.sub-page #pros-and-cons .good-at, .sub-page #pros-and-cons .be-not-at {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1;
  overflow: hidden;
}

.sub-page #pros-and-cons .good-at.animate::before, .sub-page #pros-and-cons .be-not-at.animate::before {
  height: 100%;
}

.sub-page #pros-and-cons .be-not-at::before {
  top: auto;
  bottom: 0;
}

.sub-page #pros-and-cons .be-not-at.animate::before {
  top: auto;
  bottom: 0;
  height: 100%;
}

.sub-page #pros-and-cons .good-at {
  width: 81%;
  padding: 70px 100px 70px 30px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.sub-page #pros-and-cons .good-at::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background-color: #E73F63;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: height 1s ease;
  transition: height 1s ease;
  z-index: -1;
}

.sub-page #pros-and-cons .good-at h2 {
  font-size: 3.6rem;
  text-align: center;
  font-weight: 700;
  text-align: left;
  position: relative;
  display: inline-block;
}

.sub-page #pros-and-cons .good-at h2::after {
  content: "私の強み";
  font-size: clamp(1.8rem, 2vw, 2.1rem);
  font-weight: 300;
  display: block;
  position: absolute;
  top: 50%;
  right: -150px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.sub-page #pros-and-cons .good-at ul {
  margin-top: 100px;
}

.sub-page #pros-and-cons .good-at ul li {
  list-style: none;
  margin: 0 0 50px 30px;
}

.sub-page #pros-and-cons .good-at ul li p {
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
  position: relative;
  line-height: 1.7;
}

.sub-page #pros-and-cons .good-at ul li p::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border: 1px solid #E73F63;
  border-radius: 50%;
  position: absolute;
  left: -30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.sub-page #pros-and-cons .be-not-at {
  margin-top: 150px;
  width: 81%;
  padding: 70px 100px 70px 30px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.sub-page #pros-and-cons .be-not-at::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 4px;
  height: 0;
  background-color: #E73F63;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: height 1s ease;
  transition: height 1s ease;
  z-index: -1;
}

.sub-page #pros-and-cons .be-not-at h2 {
  font-size: 3.6rem;
  text-align: center;
  font-weight: 700;
  text-align: left;
  position: relative;
  display: inline-block;
}

.sub-page #pros-and-cons .be-not-at h2::after {
  content: "苦手なこと";
  font-size: clamp(1.8rem, 2vw, 2.1rem);
  font-weight: 300;
  display: block;
  position: absolute;
  top: 50%;
  right: -150px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.sub-page #pros-and-cons .be-not-at ul {
  margin-top: 100px;
}

.sub-page #pros-and-cons .be-not-at ul li {
  list-style: none;
  margin: 0 0 50px 30px;
}

.sub-page #pros-and-cons .be-not-at ul li p {
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
  position: relative;
  line-height: 1.7;
}

.sub-page #pros-and-cons .be-not-at ul li p::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border: 1px solid #E73F63;
  border-radius: 50%;
  position: absolute;
  left: -30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.sub-page #pros-and-cons .be-not-at ul li span {
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
  display: block;
  margin-top: 35px;
  line-height: 1.7;
  margin-left: 20px;
  position: relative;
}

.sub-page #pros-and-cons .be-not-at ul li span::before {
  content: "";
  display: block;
  width: 26px;
  height: 28px;
  border-left: 1px solid #E73F63;
  border-bottom: 1px solid #E73F63;
  position: absolute;
  left: -42px;
}

.sub-page #works {
  margin-top: 150px;
}

.sub-page #works .works-title {
  display: inline-block;
}

.sub-page #works .works-title .section-title {
  font-size: 3.6rem;
  text-align: center;
  font-weight: 700;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding-bottom: 0.3em;
  position: relative;
}

.sub-page #works .works-title .section-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: #E73F63;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  /* 最初は非表示 */
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-animation: borderExpand 1s ease-out 0.3s forwards;
          animation: borderExpand 1s ease-out 0.3s forwards;
}

@-webkit-keyframes borderExpand {
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    /* 最終的に全表示 */
  }
}

@keyframes borderExpand {
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    /* 最終的に全表示 */
  }
}

.sub-page #works .works-title .section-title::after {
  content: "制作物";
  font-size: 2rem;
  display: inline-block;
  line-height: 1;
}

.sub-page #works .works-contents {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sub-page #works .works-item {
  width: clamp(316px, 35vw, 486px);
  height: 338px;
  aspect-ratio: 543 / 338;
  margin-bottom: 170px;
  display: block;
  color: #1C1C1C;
}

.sub-page #works .works-item .works-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.sub-page #works .works-item .works-img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.sub-page #works .works-item .works-img .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.sub-page #works .works-item .works-img .overlay-text {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.sub-page #works .works-item .works-img:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.sub-page #works .works-item .works-img:hover .overlay {
  opacity: 1;
}

.sub-page #works .works-item .works-img:hover .overlay-text {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.sub-page #works .category {
  font-size: clamp(1.2rem, 0.39vw, 1.6rem);
  margin-bottom: 30px;
  margin-top: 20px;
}

.sub-page #works .works-item-title {
  font-size: clamp(1.8rem, 0.39vw, 2rem);
  text-align: left;
}

.sub-page .single-wrapper {
  width: 64.6%;
  max-width: 930px;
  margin: 0 auto;
}

.sub-page .single-kv {
  margin-top: 200px;
}

.sub-page .single-kv-img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.sub-page .single-kv-img img {
  width: 100%;
  height: 100%;
}

.sub-page .single-main-title {
  font-size: 2.8rem;
  text-align: center;
}

.sub-page .single-category {
  text-align: center;
}

.sub-page .single-category p {
  font-size: 1.8rem;
  margin: 35px 0 0;
  text-align: center;
  display: inline-block;
  position: relative;
}

.sub-page .single-category p::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 1px;
  width: 100%;
  background-color: #E73F63;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  /* 最初は非表示 */
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-animation: borderExpand 1s ease-out 0.3s forwards;
          animation: borderExpand 1s ease-out 0.3s forwards;
}

@keyframes borderExpand {
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    /* 最終的に全表示 */
  }
}

.sub-page .link-btn {
  width: 180px;
  display: block;
  position: relative;
  padding: 1.5em;
  border: none;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  font-size: 18px;
  margin: 100px auto;
}

.sub-page .link-btn::after, .sub-page .link-btn::before {
  content: '';
  display: block;
  position: absolute;
  width: 20%;
  height: 20%;
  border: 2px solid;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 1px;
}

.sub-page .link-btn::before {
  top: 0;
  left: 0;
  border-bottom-color: transparent;
  border-right-color: transparent;
  border-top-color: #E73F63;
  border-left-color: #E73F63;
}

.sub-page .link-btn::after {
  bottom: 0;
  right: 0;
  border-top-color: transparent;
  border-left-color: transparent;
  border-bottom-color: #E73F63;
  border-right-color: #E73F63;
}

.sub-page .link-btn:hover:after, .sub-page .link-btn:hover:before {
  border-bottom-color: #E73F63;
  border-right-color: #E73F63;
  border-top-color: #E73F63;
  border-left-color: #E73F63;
  width: 100%;
  height: 100%;
}

.sub-page .link-btn a {
  color: #1C1C1C;
}

.sub-page .works-info .works-info-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 80px;
}

.sub-page .works-info dt, .sub-page .works-info dd {
  margin: 0;
  padding: 0;
}

.sub-page .works-info dt {
  font-size: 1.8rem;
  font-weight: bold;
  min-width: 120px;
  padding-top: 0.4em;
}

.sub-page .works-info dd {
  font-size: 1.8rem;
  line-height: 1.7;
}

.sub-page .single-title {
  font-size: 3.6rem;
  text-align: center;
  font-weight: 700;
  font-size: 2.8rem;
  text-align: left;
  position: relative;
  display: inline-block;
}

.sub-page .single-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 1px;
  width: 100%;
  background-color: #E73F63;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.8s ease-out;
  transition: -webkit-transform 0.8s ease-out;
  transition: transform 0.8s ease-out;
  transition: transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}

.sub-page .single-title.works-active::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.sub-page .single-about {
  margin-top: 150px;
}

.sub-page .single-about p {
  margin-top: 80px;
  font-size: 1.6rem;
  line-height: 1.7;
}

.sub-page .single-about .rental-link {
  margin-top: 50px;
}

.sub-page .single-about .rental-link a {
  color: #070707;
  border-bottom: 1px solid #070707;
}

.sub-page .single-design {
  margin-top: 150px;
}

.sub-page .design-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 80px;
}

.sub-page .design-img-pc, .sub-page .design-img-sp {
  border: 0.8px solid #070707;
}

.sub-page .design-img-pc {
  width: 58%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.sub-page .design-img-pc img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}

.sub-page .design-img-sp {
  width: 24%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.sub-page .design-img-sp img {
  width: 100%;
  height: 100%;
}

.sub-page .banner-info {
  margin-top: 150px;
}

.sub-page .design-banner {
  margin: 100px auto 0;
  width: 378px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.sub-page .design-banner img {
  width: 100%;
  height: 100%;
}

.sub-page .design-info {
  margin-top: 100px;
}

.sub-page .design-info .design-info-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 80px;
}

.sub-page .design-info dt, .sub-page .design-info dd {
  margin: 0;
  padding: 0;
}

.sub-page .design-info dt {
  font-size: 1.6rem;
  font-weight: bold;
  min-width: 120px;
  padding-top: 0.4em;
}

.sub-page .design-info dd {
  font-size: 1.6rem;
  line-height: 1.7;
}
/*# sourceMappingURL=style.css.map */