@charset "UTF-8";
/* ==============================
  共通
============================== */
* {
  box-sizing: border-box;
}
html {
  font-size: 100%;
  background: #fff;
  font-family: "Klee One", serif;
  color: #2f2f33;
}
body {
  cursor: default;
}
a {
  color: #2f2f33;
  text-decoration: none;
}
li {
  list-style: none;
}
img {
  width: 100%;
  height: auto;
}
.wrapper {
  display: block;
}
/* フェードアップアニメーション */
.fadeUp {
  animation: fadeUp 1s .5s forwards;
  opacity: 0;
}
.fadeUpTrigger {
  opacity: 0;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* PCとSPの切り替え */
.pc {
  display: block;
}
.sp {
  display: none;
}
/* コンテンツ */
.content {
  margin: 150px auto 0 auto;
  width: 65%;
}
/* タイトル */
.title {
  display: flex;
  align-items: baseline;
  border-bottom: 4px double #2f2f33;
}
.title h2 {
  font-family: "Big Shoulders Inline Text", serif;
  font-size: 4rem;
  margin: 0 10px -5px 0;
}
.title h2 span {
  font-size: 2.5rem;
  vertical-align: middle;
  margin-bottom: 30px;
}
.title p {
  font-size: 1rem;
}

/* ==============================
  トップ
============================== */
#top {
  background-image: url(../img/top-bg.jpg);
  background-size: cover;
  width: 100%;
  height: 100vh;
}
/* ロゴ */
.logo {
  height: 50vh;
  animation: logofadeUp 1.5s forwards 1s;
  opacity: 0;
}
@keyframes logofadeUp {
  from {
    opacity: 0;
    transform: translateY(70%);
  }
  to {
    opacity: 1;
    transform: translateY(50%);
  }
}
h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9998;
  font-family: "Big Shoulders Inline Text", serif;
  font-size: 6rem;
  text-align: center;
  width: 100%;
}
/* スクロールダウン */
.arrow {
  animation: fadeIn 1s forwards 2.5s;
  opacity: 0;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 9998;
  animation: UpDown 1s ease-in-out infinite;
  margin-bottom: 120px;
  transform: translate3d(0, 0, 0);
}
.scroll-down p {
  position: absolute;
  right: 2px;
  top: 0;
  font-size: 14px;
  writing-mode: vertical-rl;
  text-transform: uppercase;
}
.scroll-down:before {
  content: "";
  position: absolute;
  top: 45px;
  right: -6px;
  width: 1px;
  height: 20px;
  background: #2f2f33;
  transform: skewX(-31deg);
}
.scroll-down:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 65px;
  background: #2f2f33;
}
@keyframes UpDown {
  0% {
    bottom: 15px;
  }
  50% {
    bottom: 25px;
  }
  100% {
    bottom: 15px;
  }
}

/* ==============================
  ABOUT
============================== */
.about {
  margin-top: 50px;
}
.profile,
.career {
  line-height: 1.8;
}
.profile {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
.photo {
  margin-right: 2rem;
}
.photo img {
  width: 12em;
  border-radius: 50%;
}
.profile dl,
.career dl {
  display: flex;
}
.profile dt,
.career dt {
  margin-right: 1.2rem;
}
.profile dt {
  color: #fe7f9c;
}
.career {
  margin-bottom: 2.2rem;
}
/* スキル */
.skill-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.skill-box p {
  font-size: 1rem;
  margin-top: 0.6rem;
}
.skill {
  color: #fff;
  font-size: 1rem;
  margin: 0.6rem 0.6rem 0 0;
  padding: 0.2rem 0.6rem;
}
.skill-1 {
  background: #fe7f9c;
}
.skill-2 {
  background: #be7ffe;
}
.skill-text-1 {
  color: #fe7f9c;
}
.skill-text-2 {
  color: #be7ffe;
}

/* ==============================
  WORKS
============================== */
/* 並び替えのボタン */
.sort-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
}
.sort-btn li {
	cursor: pointer;
	margin: 0 20px;
}
.sort-btn li:hover {
	color: #fe7f9c;
}
.sort-btn li.active {
	color: #fe7f9c;
  border-bottom: 4px double #fe7f9c;
}
/* ギャラリー */
.gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 50px -40px 0 0;
}
.gallery li {
  width: calc(100% / 3);
  padding: 0 40px 50px 0;
}
.gallery li:nth-child(3n) {
  margin-right: 0;
}
.btn-img {
  overflow: hidden;
}
.btn-img img {
  display: block;
  transition-duration: 0.3s;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
}
.btn-img img:hover {
  transform: scale(1.1);
  transition-duration: 0.3s;
}
.btn h3 {
  color: #fe7f9c;
  font-size: 0.9rem;
  font-weight: normal;
  margin-top: 3px;
}
.btn p {
  font-size: 0.85rem;
}

/* ==============================
  モーダルウィンドウ
============================== */
/* ウィンドウの背景の暗い部分 */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 100%;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
  display: none;
  cursor: pointer;
}
/* ウィンドウ本体 */
.modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: auto;
  max-height: 90%;
  background-color: #fff;
  overflow-y: scroll;
  padding: 2rem calc(4rem - 22px) 2.5rem 4rem;
  cursor: default;
}
/* スクロールバー */
.modal-container::-webkit-scrollbar {
  width: 22px;
}
.modal-container::-webkit-scrollbar-thumb {
  background-color: #fe7f9c;
  border-right: 12px solid transparent;
  background-clip: padding-box;
}
.modal-container::-webkit-scrollbar-track {
  margin: 15px;
}
/* テキスト */
.modal-text {
  margin-bottom: 2rem;
  text-align: center;
}
.modal-text h3 {
  color: #fe7f9c;
  font-size: 1.1rem;
  font-weight: normal;
  margin-bottom: 3px;
}
.modal-text p {
  font-size: 0.9rem;
}
.modal-text span {
  display: block;
  color: #ff0000;
  margin-top: 10px;
}
.modal-img {
  width: 100%;
}
.modal-img img {
  width: 100%;
}
.note {
  text-align: center;
  margin-bottom: 10px;
}
.link {
  text-align: center;
  margin-bottom: 20px;
}
.link a {
  border-bottom: 3px double #2f2f33;
}
.link a:hover {
  color: #fe7f9c;
  border-bottom: 3px double #fe7f9c;
}
/* 画像 */
.modal-container img {
  display: block;
  margin: 0 auto;
}
/* 特集ページ */
.category-wrapper {
  max-width: 600px;
  margin: 0 auto;
}
.category_container {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 30px;
}
.category-01 {
  background: #2295d9;
}
.category-02 {
  background: #c9312a;
}
.category-03 {
  background: #9d1f18;
}
.category_title {
  padding: 8% 0;
}
.category {
  display: flex;
  flex-wrap: wrap;
  width: 85%;
  margin: 0 auto;
}
.category img {
  width: calc(90% / 3);
  padding-bottom: 5%;
}
.space {
  display: block;
  width: calc(100% / 3);
}
/* サムネイル */
.tmb-flex_01,
.tmb-flex_02 {
  display: flex;
  width: 100%;
  margin: 0 auto;
}
.tmb-flex_01 img {
  width: calc(95% / 2);
}
.tmb-flex_02 img {
  width: calc(95% / 3);
}

/* ==============================
  ページトップへ戻るボタン
============================== */
#page-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 9999;
  opacity: 0;
  transform: translateX(200px);
}
#page-top a {
  display: flex;
  justify-content: center;
  background-color: #fff;
  border: 2px solid #fe7f9c;
  border-radius: 50%;
  width: 4em;
  height: 4em;
  align-items: center;
}
#page-top a:hover {
  background-color: #eaddf7;
}
/* 矢印 */
.page-top-arrow {
  display: block;
  height: 1em;
  width: 1em;
  border-top: 2px solid #fe7f9c;
  border-right: 2px solid #fe7f9c;
  transform: translateY(20%) rotate(-45deg);
}
/* 左の動き */
#page-top.LeftMove {
  animation: LeftAnime 0.5s forwards;
}
@keyframes LeftAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右の動き */
#page-top.RightMove {
  animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100px);
  }
}

/* ==============================
  レスポンシブデザイン
============================== */
@media screen and (max-width: 1510px) {
  /* ==============================
    共通
  ============================== */
  /* コンテンツ */
  .content {
    width: 70%;
  }
}

@media screen and (max-width: 1410px) {
  /* ==============================
    共通
  ============================== */
  /* コンテンツ */
  .content {
    width: 75%;
  }
}

@media screen and (max-width: 1310px) {
  /* ==============================
    共通
  ============================== */
  /* コンテンツ */
  .content {
    width: 80%;
  }

  /* ==============================
    ABOUT
  ============================== */
  .career dl {
    display: block;
  }
}

@media screen and (max-width: 1000px) {
  /* ==============================
    WORKS
  ============================== */
  /* ギャラリー */
  .gallery li {
    width: calc(100% / 2);
  }
}

@media screen and (max-width: 920px) {
  /* ==============================
    ABOUT
  ============================== */
  .career {
    line-height: 1.6;
  }
  .profile dl {
    display: block;
  }
  .career dt {
    margin-right: 0;
  }

  /* ==============================
    WORKS
  ============================== */
  /* 並び替えのボタン */
  .sort-btn li {
    line-height: 2;
  }

  /* ==============================
    モーダルウィンドウ
  ============================== */
  /* ウィンドウ本体 */
  .modal-container {
    width: 90%;
    max-height: 80%;
    padding: 1.5rem calc(2rem - 22px) 2.5rem 2rem;
    cursor: default;
  }
  /* サムネイル */
  .tmb-flex_01,
  .tmb-flex_02 {
    display: block;
  }
  .tmb-flex_01 img {
    width: 100%;
  }
  .tmb-flex_02 img {
    width: 100%;
  }
}

@media screen and (max-width: 750px) {
  /* ==============================
    共通
  ============================== */
  /* コンテンツ */
  .content {
    width: 85%;
  }

  /* ==============================
    ABOUT
  ============================== */
  .profile {
    justify-content: center;
  }
  .profile dl {
    display: block;
  }
}

@media screen and (max-width: 700px) {
  /* ==============================
    共通
  ============================== */
  /* PCとSPの切り替え */
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }

  /* ==============================
    ABOUT
  ============================== */
  .profile {
    display: block;
  }
  .photo {
    margin-right: 0;
    text-align: center;
  }
  .profile dl {
    display: block;
  }

  /* ==============================
    WORKS
  ============================== */
  /* ギャラリー */
  .gallery li {
    width: 100%;
  }
  .btn-img img {
    aspect-ratio: 1.5 / 1;
  }
  .btn-img img:hover {
    transform: scale(1.1);
    transition-duration: 0.3s;
  }
  .btn h3 {
    font-size: 1rem;
  }
  .btn p {
    font-size: 1rem;
  }
}