@charset "UTF-8";
/* CSS Document */
/* 基本設定 */
/* 初期設定 */
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  font-size: 62.5%;
}

body {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  color: #333;
  position: relative;
  overflow-x: clip;
}

.en {
  font-family: "Google Sans Flex", serif;
}

.ja {
  font-family: "Zen Kaku Gothic New", serif;
}

a {
  text-decoration: none;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
a:hover {
  opacity: 0.5;
}

img {
  max-width: 100%;
  height: auto;
}

/* ----rem設定---- */
:root {
  --liquid-lgDesignRatio: calc(1600 / 10);
  --liquid-smDesignRatio: calc(390 / 10);
}

@media screen and (max-width: 1600px) {
  :root {
    --liquid-htmlroot: calc(100vw / var(--liquid-lgDesignRatio));
  }
  html {
    font-size: var(--liquid-htmlroot);
  }
}
@media screen and (max-width: 520px) {
  :root {
    --liquid-htmlroot: calc(100vw / var(--liquid-smDesignRatio));
  }
}
/* --------- */
/* ----レスポンシブの表示非表示---- */
.sp {
  display: none;
}

@media (max-width: 520px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block;
  }
}
/* --------- */
/* ----------------------------------------------------------------------
クラス名設定
---------------------------------------------------------------------- */
.inner {
  max-width: 100rem;
  width: 86%;
  margin: 0 auto;
}

.commonBtn {
  display: block;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 500;
  width: 19.3em;
  padding: 1.58em 1em;
  text-align: center;
  border: 1px solid #333;
  position: relative;
  background-color: #fff;
  z-index: 1;
}
@media screen and (max-width: 520px) {
  .commonBtn {
    font-size: 1.2rem;
  }
}
.commonBtn span {
  padding-right: 1.3em;
  position: relative;
}
.commonBtn span:after {
  content: "";
  display: block;
  position: absolute;
  inset: 50% 0 auto auto;
  width: 0.3em;
  aspect-ratio: 1;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: translateY(-50%) rotate(-45deg);
}
.commonBtn:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #333;
  position: absolute;
  inset: 0 auto auto 0;
  z-index: -1;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
.commonBtn:hover {
  opacity: 1;
  color: #fff;
  background-color: transparent;
}
.commonBtn:hover span:after {
  border-color: #fff;
}
.commonBtn:hover:before {
  transform: scale(1, 1);
}

.sTtlBox {
  font-size: 1.4rem;
  line-height: 1.2857142857;
  letter-spacing: 0.05em;
  font-weight: 600;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  align-content: stretch;
  margin-bottom: 3em;
}
@media screen and (max-width: 520px) {
  .sTtlBox {
    font-size: 1.2rem;
    margin-bottom: 4em;
  }
}
.sTtlBox > h1 {
  font-size: 285.71%;
  font-family: "Google Sans Flex", serif;
}
.sTtlBox > h1 > span {
  font-size: 35%;
  display: block;
  font-family: "Zen Kaku Gothic New", serif;
}
.sTtlBox .designer {
  padding-left: 2em;
  border-left: 1px solid #a2a8b0;
  display: flex;
  align-items: center;
  color: #a2a8b0;
}

/* ----------------------------------------------------------------------
プロフィール
---------------------------------------------------------------------- */
#profile {
  padding-top: 17.4rem;
  background-color: #fff;
}
@media screen and (max-width: 520px) {
  #profile {
    padding-top: 12rem;
  }
}
#profile .inner {
  background-color: #e8ebef;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 400;
  padding: 3.5em 5.9em;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  align-content: stretch;
  row-gap: 3em;
}
@media screen and (max-width: 520px) {
  #profile .inner {
    font-size: 1.3rem;
    width: 100%;
    padding: 6.5em 2.6em;
  }
}
#profile .inner .imgBox {
  width: 30.5%;
}
@media screen and (max-width: 520px) {
  #profile .inner .imgBox {
    width: 100%;
  }
}
#profile .inner .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#profile .inner .txtBox {
  width: 60.1%;
}
@media screen and (max-width: 520px) {
  #profile .inner .txtBox {
    width: 100%;
  }
}
@media screen and (max-width: 520px) {
  #profile .inner .txtBox .name {
    text-align: center;
  }
}
#profile .inner .txtBox .name .katagaki {
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 1em;
  display: block;
  font-weight: 300;
  font-family: "Google Sans Flex", serif;
}
#profile .inner .txtBox .name .kishi {
  font-size: 128.5%;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 520px) {
  #profile .inner .txtBox .name .kishi {
    font-size: 160%;
  }
}
#profile .inner .txtBox .about {
  margin: 1.5em 0;
}
#profile .inner .txtBox .commonBtn {
  border: none;
}
@media screen and (max-width: 520px) {
  #profile .inner .txtBox .commonBtn {
    margin: 0 auto;
  }
}

/* ----------------------------------------------------------------------
サブビジュアル
---------------------------------------------------------------------- */
article {
  position: relative;
}

#sv {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: -1;
  top: 0;
}
#sv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ----------------------------------------------------------------------
ヘッダー
---------------------------------------------------------------------- */
#header {
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 500;
  width: 100%;
  padding: 2.6em 3.2em;
  position: fixed;
  inset: 0 auto auto 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  transition: 0.3s;
  z-index: 999;
  pointer-events: none;
}
@media screen and (max-width: 520px) {
  #header {
    font-size: 1.2rem;
    padding: 2.6em 1.4em;
  }
}
#header .logo {
  width: 10.6em;
  pointer-events: visible;
}
@media screen and (max-width: 520px) {
  #header .logo {
    width: 10em;
  }
}
#header .logo img {
  filter: brightness(0) saturate(100%) invert(70%) sepia(10%) saturate(216%) hue-rotate(175deg) brightness(95%) contrast(87%);
}
@media screen and (max-width: 520px) {
  #header .logo img {
    filter: none;
  }
}
#header .logo:hover {
  opacity: 1;
}
#header .logo:hover img {
  filter: brightness(0) saturate(100%) invert(18%) sepia(0%) saturate(2146%) hue-rotate(157deg) brightness(95%) contrast(91%);
}
#header .navList {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  gap: 2.3em;
  color: #a2a8b0;
  pointer-events: visible;
}
@media screen and (max-width: 520px) {
  #header .navList {
    gap: 1.5em;
    color: #333;
  }
}
#header .navList li a:hover {
  opacity: 1;
  color: #333;
}
#header.is-visible {
  font-size: 2rem;
  padding: 1.4em 3.2em;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 520px) {
  #header.is-visible {
    font-size: 1.2rem;
    padding: 2.6em 1.4em;
  }
}

/* ----------------------------------------------------------------------
フッター
---------------------------------------------------------------------- */
#footer {
  padding: 17.4rem 0 1rem;
  background-color: #fff;
}
@media screen and (max-width: 520px) {
  #footer {
    padding: 12rem 0 1rem;
  }
}
#footer .inner {
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 500;
}
#footer .inner .fNav {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap-reverse;
  align-content: stretch;
  row-gap: 3em;
  margin-bottom: 9.4em;
}
@media screen and (max-width: 520px) {
  #footer .inner .fNav {
    row-gap: 6em;
    margin-bottom: 4em;
  }
}
#footer .inner .fNav .logoBox {
  width: 26%;
}
@media screen and (max-width: 520px) {
  #footer .inner .fNav .logoBox {
    width: 100%;
  }
}
#footer .inner .fNav .btnArea {
  width: 51.3%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  align-content: stretch;
}
@media screen and (max-width: 520px) {
  #footer .inner .fNav .btnArea {
    width: 100%;
  }
}
#footer .inner .fNav .btnArea .fNavList {
  width: 45%;
}
#footer .inner .fNav .btnArea .fNavList > p {
  font-weight: 300;
  color: #a2a8b0;
  margin-bottom: 2em;
}
#footer .inner .fNav .btnArea .fNavList > li {
  margin-bottom: 1.2em;
}
#footer .inner .fNav .btnArea .fNavList > li:last-of-type {
  margin-bottom: 0;
}
#footer .inner .fNav .btnArea .fNavList > li a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  gap: 0.4em;
}
#footer .inner .fNav .btnArea .fNavList > li a .icon {
  display: block;
  width: 0.8em;
  aspect-ratio: 1;
  position: relative;
  top: 50%;
  transform: translateY(-16%);
}
#footer .inner .copyRight {
  font-size: 75%;
  font-weight: bold;
}