@charset "UTF-8";
/*=====
定義
=======*/
/*==========
定義ここまで
===========*/
/*====================================
リセットと共通設定
=====================================*/
* {
  font-family: "patrick hand", cursive, "sawarabi gothic", sans-serif, sans-serif;
  color: hsl(210, 61.2903225806%, 15.5%);
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  cursor: grab;
}

html {
  /* ページ内リンクでアニメーションをかける */
  scroll-behavior: smooth;
  /* ベースのフォントサイズを定義（１rem=10px） 16px*62.5%=10px */
  font-size: 62.5%;
}

body {
  font-family: "patrick hand", cursive, "rounded mplus 1c", sans-serif, sans-serif;
  /* mixinの後の宣言は&でラップして将来のSass仕様に対応 */
  /* 標準のフォントウェイト */
  font-weight: 400;
  /* 英語フォントだと行間１、５、日本語は1．７くらいがおすすめとのこと */
  line-height: 1.7;
  background: linear-gradient(to right bottom, hsl(34, 100%, 97%), hsl(34, 37.2549019608%, 74.5%));
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 768px) {
  body {
    font-size: 1.2rem;
  }
}
@media (min-width: 769px) {
  body {
    font-size: 1.6rem;
  }
}

main {
  max-width: 1200px;
  margin: 0 auto;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

#root, #__next {
  isolation: isolate;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: hsl(210, 27.2727272727%, 27.5%);
  text-decoration: none;
}
a:hover {
  color: hsl(210, 26.3157894737%, 47.5%);
  -webkit-text-decoration: underline hsl(210, 79.5918367347%, 49%);
          text-decoration: underline hsl(210, 79.5918367347%, 49%);
}

h1 {
  font-size: clamp(1.8rem, 3vw + 0.5rem, 3.2rem);
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(1.6rem, 2.5vw + 0.4rem, 2.6rem);
  letter-spacing: 0.02em;
}

h3 {
  font-size: clamp(1.4rem, 1.8vw + 0.3rem, 2rem);
  letter-spacing: 0.01em;
}

h4 {
  font-size: clamp(1.4em, 0.4vw + 1rem, 1.8rem);
  font-weight: bold;
}

p,
li {
  font-size: clamp(1.4rem, 0.4vw + 1rem, 1.8rem);
  line-height: 1.9;
}

small {
  font-size: clamp(0.8rem, 0.3vw + 0.8rem, 0.9rem);
  color: hsl(210, 61.2903225806%, 15.5%);
}

nav a {
  font-size: clamp(0.9rem, 0.3vw + 0.9rem, 1rem);
  letter-spacing: 0.05em;
  font-weight: 500;
  color: hsl(210, 27.2727272727%, 27.5%);
  transition: color 0.2s ease;
}
nav a:hover {
  color: hsl(210, 26.3157894737%, 47.5%);
}

button {
  font-size: clamp(0.95rem, 0.3vw + 0.9rem, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: hsl(34, 100%, 97.5%);
  background: hsl(210, 73.9130434783%, 54%);
  border-radius: 4px;
  padding: 0.8rem;
  transition: background 0.3s ease, color 0.3s ease;
}
button:hover {
  background: hsl(210, 42.8571428571%, 82.5%);
  color: hsl(210, 33.3333333333%, 15%);
}

strong {
  font-weight: 700;
  color: hsl(210, 61.2903225806%, 15.5%);
}

sapn {
  display: block;
}

/*===================
リセットと共通設定ここまで
======================*/
/*==================================
/*コンポーネント
====================================*/
---コンテナクラス--- .pf-l-container {
  margin: 0 auto;
  padding-bottom: 2rem;
}

.pf-c-btn {
  display: inline-block;
  width: 16rem;
  height: auto;
  border: 1px solid hsl(210, 11.1111111111%, 91%);
  background-color: hsl(210, 73.9130434783%, 54%);
  line-height: 60px;
  text-align: center;
  vertical-align: center;
  color: hsl(34, 100%, 97.5%);
  font-family: "sawarabi gothic", sans-serif;
  font-size: clamp(1.4rem, 0.3vw + 0.8rem, 3.6rem);
  position: relative;
  border-radius: 9999px;
  /* 後述の要素が上書きされる（スタックオーダー（重ね順））をコントロールするのがpositionプロパティ */
  /* isolationはスタックオーダーから抜けるプロパティisolateは分離する属性　テキストは抜けてないので上にいるが擬似要素beforeはZ-index-1で後ろに回る */
  isolation: isolate;
}

.pf-c-btn:hover {
  color: hsl(210, 33.3333333333%, 15%);
  border-color: hsl(210, 42.8571428571%, 82.5%);
}

.pf-c-btn:hover::after {
  transform: scaleY(1);
  opacity: 1;
}

div.pf-c-pageTitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: clamp(24rem, 50vw, 48rem);
  min-height: clamp(12rem, 20vw, 24rem);
  height: auto;
  background-image: url("../img/titlebackcat.webp");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto;
}
div.pf-c-pageTitle .pf-c-pageTitlejp {
  color: rgb(18, 41, 64);
  text-shadow: 0.1rem 0.1rem 0 rgb(18, 41, 64), -0.1rem 0.1rem 0 rgb(18, 41, 64), 0.1rem -0.1rem 0 rgb(18, 41, 64), -0.1rem -0.1rem 0 rgb(18, 41, 64), 0.1rem 0 0 rgb(18, 41, 64), -0.1rem 0 0 rgb(18, 41, 64), 0 0.1rem 0 rgb(18, 41, 64), 0 -0.1rem 0 rgb(18, 41, 64);
  font-family: "sawarabi gothic", sans-serif;
  font-size: 3.6rem;
  font-weight: 400;
  color: white;
  letter-spacing: 0.1em;
  padding-top: 0.8rem;
  text-align: center;
  vertical-align: baseline;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
div.pf-c-pageTitle span.pf-c-pageTitleen {
  color: rgb(18, 41, 64);
  text-shadow: 0.1rem 0.1rem 0 rgb(18, 41, 64), -0.1rem 0.1rem 0 rgb(18, 41, 64), 0.1rem -0.1rem 0 rgb(18, 41, 64), -0.1rem -0.1rem 0 rgb(18, 41, 64), 0.1rem 0 0 rgb(18, 41, 64), -0.1rem 0 0 rgb(18, 41, 64), 0 0.1rem 0 rgb(18, 41, 64), 0 -0.1rem 0 rgb(18, 41, 64);
  font-family: "patrick hand", cursive;
  font-size: 4.8rem;
  letter-spacing: 0.1em;
  align-items: center;
  line-height: 1.5rem;
  color: white;
  margin-bottom: 0;
  text-shadow: hsla(0, 0%, 0%, 0.18);
}

/* セクションタイトル 見出し */
.pf-c-sectTitle, main#about section.pf-p-about__skill div.pf-c-sectTitle, main#about section.pf-p-about__career div.pf-c-sectTitle, main#page-works section.pf-p-works div.pf-c-sectTitle, main#home section.pf-p-topContact div.pf-l-container h2.pf-p-topContact__title {
  min-width: 16rem;
  min-height: 10rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
  margin-left: auto;
  margin-right: auto;
  background-image: url("../img/sectitlebackcat.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .pf-c-sectTitle .pf-c-sectTitle__jp, main#about section.pf-p-about__skill div.pf-c-sectTitle .pf-c-sectTitle__jp, main#about section.pf-p-about__career div.pf-c-sectTitle .pf-c-sectTitle__jp, main#page-works section.pf-p-works div.pf-c-sectTitle .pf-c-sectTitle__jp, main#home section.pf-p-topContact div.pf-l-container h2.pf-p-topContact__title .pf-c-sectTitle__jp, main#about section.pf-p-about__career div.pf-c-sectTitle h4.pf-c-sectTitle__jp {
    font-size: 2.4rem;
  }
}
@media (min-width: 769px) {
  .pf-c-sectTitle .pf-c-sectTitle__jp, main#about section.pf-p-about__skill div.pf-c-sectTitle .pf-c-sectTitle__jp, main#about section.pf-p-about__career div.pf-c-sectTitle .pf-c-sectTitle__jp, main#page-works section.pf-p-works div.pf-c-sectTitle .pf-c-sectTitle__jp, main#home section.pf-p-topContact div.pf-l-container h2.pf-p-topContact__title .pf-c-sectTitle__jp, main#about section.pf-p-about__career div.pf-c-sectTitle h4.pf-c-sectTitle__jp {
    font-size: 3.6rem;
  }
}
.pf-c-sectTitle .pf-c-sectTitle__jp, main#about section.pf-p-about__skill div.pf-c-sectTitle .pf-c-sectTitle__jp, main#about section.pf-p-about__career div.pf-c-sectTitle .pf-c-sectTitle__jp, main#page-works section.pf-p-works div.pf-c-sectTitle .pf-c-sectTitle__jp, main#home section.pf-p-topContact div.pf-l-container h2.pf-p-topContact__title .pf-c-sectTitle__jp, main#about section.pf-p-about__career div.pf-c-sectTitle h4.pf-c-sectTitle__jp {
  font-family: "sawarabi gothic", sans-serif;
  font-weight: 400;
  color: hsl(210, 61.2903225806%, 15.5%);
  letter-spacing: 0.1em;
  text-align: center;
  vertical-align: baseline;
}
.pf-c-sectTitle .pf-c-sectTitle__en, main#about section.pf-p-about__skill div.pf-c-sectTitle .pf-c-sectTitle__en, main#about section.pf-p-about__career div.pf-c-sectTitle .pf-c-sectTitle__en, main#page-works section.pf-p-works div.pf-c-sectTitle .pf-c-sectTitle__en, main#home section.pf-p-topContact div.pf-l-container h2.pf-p-topContact__title .pf-c-sectTitle__en, main#about section.pf-p-about__career div.pf-c-sectTitle span.pf-c-sectTitle__en {
  font-family: "patrick hand", cursive;
}
@media (max-width: 768px) {
  .pf-c-sectTitle .pf-c-sectTitle__en, main#about section.pf-p-about__skill div.pf-c-sectTitle .pf-c-sectTitle__en, main#about section.pf-p-about__career div.pf-c-sectTitle .pf-c-sectTitle__en, main#page-works section.pf-p-works div.pf-c-sectTitle .pf-c-sectTitle__en, main#home section.pf-p-topContact div.pf-l-container h2.pf-p-topContact__title .pf-c-sectTitle__en, main#about section.pf-p-about__career div.pf-c-sectTitle span.pf-c-sectTitle__en {
    font-size: 2.4rem;
  }
}
@media (min-width: 769px) {
  .pf-c-sectTitle .pf-c-sectTitle__en, main#about section.pf-p-about__skill div.pf-c-sectTitle .pf-c-sectTitle__en, main#about section.pf-p-about__career div.pf-c-sectTitle .pf-c-sectTitle__en, main#page-works section.pf-p-works div.pf-c-sectTitle .pf-c-sectTitle__en, main#home section.pf-p-topContact div.pf-l-container h2.pf-p-topContact__title .pf-c-sectTitle__en, main#about section.pf-p-about__career div.pf-c-sectTitle span.pf-c-sectTitle__en {
    font-size: 3.6rem;
  }
}
.pf-c-sectTitle .pf-c-sectTitle__en, main#about section.pf-p-about__skill div.pf-c-sectTitle .pf-c-sectTitle__en, main#about section.pf-p-about__career div.pf-c-sectTitle .pf-c-sectTitle__en, main#page-works section.pf-p-works div.pf-c-sectTitle .pf-c-sectTitle__en, main#home section.pf-p-topContact div.pf-l-container h2.pf-p-topContact__title .pf-c-sectTitle__en, main#about section.pf-p-about__career div.pf-c-sectTitle span.pf-c-sectTitle__en {
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.5rem;
  color: hsl(210, 61.2903225806%, 15.5%);
}

/* TOPに戻るボタン */
.pf-c-scrollToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 5rem;
  height: 5rem;
  background-color: hsl(210, 79.5918367347%, 49%);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px hsla(210, 80%, 20%, 0.3);
}
.pf-c-scrollToTop:hover {
  background-color: hsl(210, 79.5918367347%, 39%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px hsla(210, 91.3978494624%, 53.5%, 0.4);
}
.pf-c-scrollToTop:active {
  transform: translateY(0);
}
.pf-c-scrollToTop.show {
  opacity: 1;
  visibility: visible;
}
.pf-c-scrollToTop .pf-c-scrollToTop__arrow {
  color: hsl(210, 100%, 98%);
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  display: block;
}

/* TOPに戻るボタンレスポンシブ */
@media screen and (max-width: 767px) {
  .pf-c-scrollToTop {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 4rem;
    height: 4rem;
  }
  .pf-c-scrollToTop .pf-c-scrollToTop__arrow {
    font-size: 1.6rem;
  }
}
/* スクロールインジケーター（キャットタワー） */
.pf-c-scrollProgress {
  position: fixed;
  /* ヘッダー（8rem）の左下に固定 */
  top: 12rem;
  left: 0.5rem;
  transform: none;
  z-index: 1100;
  display: block;
  width: 160px;
  height: 160px;
  cursor: pointer;
}
.pf-c-scrollProgress .pf-c-scrollProgress__indicator {
  width: 160px;
  height: 160px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  cursor: default;
}
.pf-c-scrollProgress .pf-c-scrollProgress__indicator.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1.1);
}
.pf-c-scrollProgress .pf-c-scrollProgress__indicator .pf-c-scrollProgress__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.pf-c-scrollProgress .pf-c-scrollProgress__indicator:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

@media screen and (max-width: 767px) {
  .pf-c-scrollProgress {
    display: none;
  }
}
.pf-c-detailItem__title {
  min-height: 16rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
  margin-left: auto;
  margin-right: auto;
  background-image: url("../img/sectitlebackcat.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .pf-c-detailItem__title .pf-c-detailItem__titleJp {
    font-size: 2.4rem;
  }
}
@media (min-width: 769px) {
  .pf-c-detailItem__title .pf-c-detailItem__titleJp {
    font-size: 3.6rem;
  }
}
.pf-c-detailItem__title .pf-c-detailItem__titleJp {
  font-family: "sawarabi gothic", sans-serif;
  font-weight: 400;
  color: hsl(210, 61.2903225806%, 15.5%);
  letter-spacing: 0.1em;
  text-align: center;
  vertical-align: baseline;
}
.pf-c-detailItem__title .pf-c-detailItem__titleEn {
  font-family: "patrick hand", cursive;
}
@media (max-width: 768px) {
  .pf-c-detailItem__title .pf-c-detailItem__titleEn {
    font-size: 2.4rem;
  }
}
@media (min-width: 769px) {
  .pf-c-detailItem__title .pf-c-detailItem__titleEn {
    font-size: 3.6rem;
  }
}
.pf-c-detailItem__title .pf-c-detailItem__titleEn {
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.5rem;
  color: hsl(210, 61.2903225806%, 15.5%);
}

/* ============================
  レイアウト
============================ */
body {
  margin-top: 10rem;
}

section {
  padding-bottom: 4rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
  display: flow-root;
}

/* ============================
プロジェクトごとのスタイル
============================ */
/* ---TOPページ--- */
/* kvセクションの箱 */
.pf-p-topkv {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .pf-p-topKv {
    height: calc(100vh - 7rem);
  }
}
div.pf-c-subsectionTitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto;
  margin-top: 4rem;
  min-width: 16rem;
  min-height: 10rem;
  background-image: url("../img/secttitleback.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  line-height: 2.4rem;
}
@media (max-width: 768px) {
  div.pf-c-subsectionTitle .pf-c-subsection_titleJp {
    font-size: 2rem;
  }
}
@media (min-width: 769px) {
  div.pf-c-subsectionTitle .pf-c-subsection_titleJp {
    font-size: 2.4rem;
  }
}
div.pf-c-subsectionTitle .pf-c-subsection_titleJp {
  font-weight: 400;
  font-family: "sawarabi gothic", sans-serif;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  div.pf-c-subsectionTitle span.pf-c-subsection_titleEn {
    font-size: 2rem;
  }
}
@media (min-width: 769px) {
  div.pf-c-subsectionTitle span.pf-c-subsection_titleEn {
    font-size: 2.4rem;
  }
}
div.pf-c-subsectionTitle span.pf-c-subsection_titleEn {
  font-weight: 400;
  font-family: "patrick hand", cursive;
  letter-spacing: 0.2rem;
}

/*==========
そのほか設定
===========*/
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
  /*================
  アニメーション記述欄
  =================*/
  /* ============================
  背景アニメ（ネズミ）
  ========================== */
  .pf-c-mouse {
    position: fixed;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    z-index: -1;
    opacity: 0.7;
    pointer-events: none;
    will-change: transform;
    transform: translate3d(-100px, -100px, 0);
    transition: opacity 0.2s ease;
    background-image: url("../img/backgroundmouse.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
  }
  /* ============================
   背景アニメ（ネズミ）ここまで
   ========================== */
  /* ============================
  カーソル追従（トレースキャット）
  ========================== */
  /* ============================
  カーソル追従（トレースキャット）ここまで
  ========================== */
  /*===============================
  フェードインアニメーション用キーフレーム
  =================================*/
}
@media (prefers-reduced-motion: no-preference) and (max-width: 767px) {
  .pf-c-mouse {
    display: none;
  }
}
@media (prefers-reduced-motion: no-preference) and (prefers-reduced-motion: reduce) {
  .pf-c-mouse {
    transition: none;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .pf-c-cursorFollower {
    position: fixed;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-image: url("../img/tracecat.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    pointer-events: none;
    z-index: 2000;
    transform: translate3d(-100px, -100px, 0);
    opacity: 0;
    transition: opacity 0.2s ease;
    will-change: transform, opacity;
  }
}
@media screen and (prefers-reduced-motion: no-preference) and (max-width: 767px) {
  .pf-c-cursorFollower {
    display: none;
  }
}
@media (prefers-reduced-motion: no-preference) and (prefers-reduced-motion: reduce) {
  .pf-c-cursorFollower {
    transition: none;
  }
}
@media (prefers-reduced-motion: no-preference) {
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(1.5rem);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
/* ヘッダー SP状態*/
header.pf-l-header {
  background-color: none;
  height: 8rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}
header.pf-l-header h1.pf-l-header__logo {
  width: 20rem;
  height: auto;
  flex-shrink: 0;
}
@media (min-width: 769px) {
  header.pf-l-header h1.pf-l-header__logo {
    margin-right: 2rem;
  }
}
header.pf-l-header h1.pf-l-header__logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  vertical-align: center;
  gap: 2rem;
}
header.pf-l-header h1.pf-l-header__logo a img {
  width: 7rem;
}
header.pf-l-header h1.pf-l-header__logo a span {
  display: block;
  width: auto;
  color: hsl(210, 61.2903225806%, 15.5%);
}
header.pf-l-header button.pf-l-header__navBtn {
  width: 44px;
  height: 44px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
  /* 全てのプロパティの値を破棄する */
  /* all: unset; */
  position: relative;
  color: hsl(210, 79.5918367347%, 49%);
}
header.pf-l-header button.pf-l-header__navBtn span, header.pf-l-header button.pf-l-header__navBtn::before, header.pf-l-header button.pf-l-header__navBtn::after {
  content: "";
  background-color: hsl(210, 79.5918367347%, 49%);
  width: 24px;
  height: 2px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header.pf-l-header button.pf-l-header__navBtn::before {
  top: calc(50% - 9px);
}
header.pf-l-header button.pf-l-header__navBtn::after {
  top: calc(50% + 9px);
}
header.pf-l-header nav.pf-l-header__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right bottom, hsl(34, 100%, 97%), hsl(34, 37.2549019608%, 74.5%));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* モバイル表示時の初期状態 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  /* 閉じるボタンSP用 のbutton */
}
body.is-nav-open header.pf-l-header nav.pf-l-header__nav {
  /* bodyにis-nav-openというクラスが追加されたときに表示する */
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
header.pf-l-header nav.pf-l-header__nav button.pf-l-header__navClose {
  /* 右上での位置調整 */
  position: absolute;
  right: 0.4rem;
  top: 1.6rem;
  width: 44px;
  height: 44px;
  /* スタイルリセット */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
  /* 片割れ２ */
  /* ×の線を反対の斜めに回転 */
}
header.pf-l-header nav.pf-l-header__nav button.pf-l-header__navClose::before, header.pf-l-header nav.pf-l-header__nav button.pf-l-header__navClose::after {
  content: "";
  width: 20px;
  height: 2px;
  background-color: hsl(210, 79.5918367347%, 49%);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
header.pf-l-header nav.pf-l-header__nav button.pf-l-header__navClose::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
header.pf-l-header nav.pf-l-header__nav button.pf-l-header__navClose::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
header.pf-l-header nav.pf-l-header__nav p.pf-l-header__navLogo {
  width: 11rem;
  margin-bottom: 1.6rem;
}
header.pf-l-header nav.pf-l-header__nav p.pf-l-header__navLogo img {
  width: 100%;
}
header.pf-l-header nav.pf-l-header__nav ul.pf-l-header__navList {
  list-style: none;
  margin-top: 4rem;
  margin-bottom: 4rem;
  padding: 0;
  display: flex;
  /* spではカラム、PCでrow */
  flex-direction: column;
}
header.pf-l-header nav.pf-l-header__nav ul.pf-l-header__navList li.pf-l-header__navLItem {
  margin-bottom: 4rem;
}
header.pf-l-header nav.pf-l-header__nav ul.pf-l-header__navList li.pf-l-header__navLItem:nth-child(odd) {
  background-image: url("../img/subtitleback.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
header.pf-l-header nav.pf-l-header__nav ul.pf-l-header__navList li.pf-l-header__navLItem:nth-child(even) {
  background-image: url("../img/ハンバーガー偶数.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
header.pf-l-header nav.pf-l-header__nav ul.pf-l-header__navList li.pf-l-header__navLItem a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: center;
  text-decoration: none;
  color: hsl(210, 79.5918367347%, 49%);
  line-height: 2.4rem;
  position: relative;
}
header.pf-l-header nav.pf-l-header__nav ul.pf-l-header__navList li.pf-l-header__navLItem a::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/ホバー背景.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  opacity: 0;
  transition: opacity 0.3s;
}
header.pf-l-header nav.pf-l-header__nav ul.pf-l-header__navList li.pf-l-header__navLItem a:hover::before {
  opacity: 0.5;
}
header.pf-l-header nav.pf-l-header__nav ul.pf-l-header__navList li.pf-l-header__navLItem a span.pf-l-header__navItemJp {
  display: block;
  font-family: "sawarabi gothic", sans-serif;
  font-size: 2.4rem;
}
header.pf-l-header nav.pf-l-header__nav ul.pf-l-header__navList li.pf-l-header__navLItem a span.pf-l-header__navItemEn {
  display: block;
  font-family: "patrick hand", cursive;
  font-size: 2.4rem;
}

/* PC状態 ===================================================*/
@media screen and (min-width: 768px) {
  header.pf-l-header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    width: 100%;
    height: 8rem;
    top: 2rem;
    background: none;
  }
  header.pf-l-header button.pf-l-header__navBtn {
    display: none;
  }
  header.pf-l-header nav.pf-l-header__nav {
    position: static;
    width: auto;
    height: 8rem;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-right: 2rem;
    opacity: 1;
    visibility: visible;
    transition: none;
    background: none;
  }
  header.pf-l-header nav.pf-l-header__nav button.pf-l-header__navClose {
    display: none;
  }
  header.pf-l-header nav.pf-l-header__nav p.pf-l-header__navLogo {
    display: none;
  }
  /* ナブリストを横並び */
  header.pf-l-header nav.pf-l-header__nav ul.pf-l-header__navList {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: flex-end;
    height: 100%;
  }
  header.pf-l-header nav.pf-l-header__nav ul.pf-l-header__navList li.pf-l-header__navLItem {
    margin: 0;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
  }
  header.pf-l-header nav.pf-l-header__nav ul.pf-l-header__navList li.pf-l-header__navLItem:nth-child(odd),
  header.pf-l-header nav.pf-l-header__nav ul.pf-l-header__navList li.pf-l-header__navLItem:nth-child(even) {
    background-image: none;
    height: auto;
  }
  /* ナブリストリンクの文字色変更および行間 */
  header.pf-l-header nav.pf-l-header__nav ul.pf-l-header__navList li.pf-l-header__navLItem a {
    color: hsl(210, 27.2727272727%, 27.5%);
    padding: 0 0.8rem;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    white-space: nowrap;
  }
  header.pf-l-header nav.pf-l-header__nav ul.pf-l-header__navList li.pf-l-header__navLItem a::before,
  header.pf-l-header nav.pf-l-header__nav ul.pf-l-header__navList li.pf-l-header__navLItem a::after {
    height: 100%;
  }
  header.pf-l-header nav.pf-l-header__nav ul.pf-l-header__navList li.pf-l-header__navLItem a span.pf-l-header__navItemJp {
    color: hsl(210, 61.2903225806%, 15.5%);
    line-height: 100%;
    white-space: nowrap;
  }
}
@media screen and (min-width: 768px) and (max-width: 768px) {
  header.pf-l-header nav.pf-l-header__nav ul.pf-l-header__navList li.pf-l-header__navLItem a span.pf-l-header__navItemJp {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 769px) {
  header.pf-l-header nav.pf-l-header__nav ul.pf-l-header__navList li.pf-l-header__navLItem a span.pf-l-header__navItemJp {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  header.pf-l-header nav.pf-l-header__nav ul.pf-l-header__navList li.pf-l-header__navLItem a span.pf-l-header__navItemEn {
    padding-top: 0.8rem;
    line-height: 1.3;
    white-space: nowrap;
  }
}
@media screen and (min-width: 768px) and (max-width: 768px) {
  header.pf-l-header nav.pf-l-header__nav ul.pf-l-header__navList li.pf-l-header__navLItem a span.pf-l-header__navItemEn {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 769px) {
  header.pf-l-header nav.pf-l-header__nav ul.pf-l-header__navList li.pf-l-header__navLItem a span.pf-l-header__navItemEn {
    font-size: 1.6rem;
  }
}
/* ====フッター＝＝＝＝ */
@media (max-width: 768px) {
  footer.pf-l-footer {
    margin-top: 6rem;
  }
}
@media (min-width: 769px) {
  footer.pf-l-footer {
    margin-top: 6rem;
  }
}
footer.pf-l-footer nav.pf-l-footer__nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
}
footer.pf-l-footer nav.pf-l-footer__nav ul.pf-l-footer__navList {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0;
  text-align: center;
  background-color: hsl(210, 79.5918367347%, 49%);
  /* ナブリスト行間とフォント */
}
footer.pf-l-footer nav.pf-l-footer__nav ul.pf-l-footer__navList li.pf-l-footer__navLItem {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  font-size: 2rem;
  font-family: "patrick hand", cursive;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid;
  border-color: white;
  /* 最後の段からは枠線除外 */
}
footer.pf-l-footer nav.pf-l-footer__nav ul.pf-l-footer__navList li.pf-l-footer__navLItem:last-child {
  border-bottom: none;
}
footer.pf-l-footer nav.pf-l-footer__nav ul.pf-l-footer__navList li.pf-l-footer__navLItem a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  /* ヘッダーと同様、ホバーで足跡背景を表示 */
}
footer.pf-l-footer nav.pf-l-footer__nav ul.pf-l-footer__navList li.pf-l-footer__navLItem a::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/ホバー背景.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
footer.pf-l-footer nav.pf-l-footer__nav ul.pf-l-footer__navList li.pf-l-footer__navLItem a:hover::before {
  opacity: 0.5;
}
footer.pf-l-footer nav.pf-l-footer__nav ul.pf-l-footer__navList li.pf-l-footer__navLItem a span.pf-l-footer__navItemJp {
  font-family: "sawarabi gothic", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: white;
}
footer.pf-l-footer nav.pf-l-footer__nav ul.pf-l-footer__navList li.pf-l-footer__navLItem a span.pf-l-footer__navItemEn {
  font-family: "patrick hand", cursive;
  font-size: 1.2rem;
  color: white;
}
footer.pf-l-footer div.pf-l-footer__brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: center;
  background: linear-gradient(to right bottom, hsl(34, 100%, 97%), hsl(34, 37.2549019608%, 74.5%));
  padding-top: 4rem;
  padding-bottom: 2rem;
}
footer.pf-l-footer div.pf-l-footer__brand div.pf-l-footer__brandLogo {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  margin: 0 auto 2rem;
}
footer.pf-l-footer div.pf-l-footer__brand div.pf-l-footer__brandLogo img {
  width: 30%;
  height: auto;
}
footer.pf-l-footer div.pf-l-footer__brand div.pf-l-footer__brandLogo span {
  width: 50%;
  height: auto;
  font-family: "patrick hand", cursive;
  font-size: 2.4rem;
  text-align: center;
}
footer.pf-l-footer div.pf-l-footer__brand small.pf-l-footer__copyright {
  display: block;
  text-align: center;
  color: hsl(210, 61.2903225806%, 15.5%);
  font-family: "patrick hand", cursive;
  font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
  .pf-l-footer__nav {
    background: linear-gradient(to right bottom, hsl(34, 100%, 97%), hsl(34, 37.2549019608%, 74.5%));
    padding-top: 16px;
  }
  .pf-l-footer__navList {
    flex-direction: row;
    justify-content: center;
  }
  .pf-l-footer__navItem {
    border-bottom: none;
  }
  .pf-l-footer__navItem:not(:first-child) {
    margin-left: 24px;
  }
  .pf-l-footer__navItem a {
    color: linear-gradient(to right bottom, hsl(34, 100%, 97%), hsl(34, 37.2549019608%, 74.5%));
    font-size: 1.6rem;
  }
  .pf-l-footer__navLink--outer::after {
    width: 14px;
    height: 14px;
    margin-left: 8px;
    background-color: none;
  }
}
/* ====フッターここまで＝＝＝＝ */
@media screen and (min-width: 768px) {
  footer.pf-l-footer {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    margin-top: 4rem;
    border-radius: 8px;
  }
  footer.pf-l-footer nav.pf-l-footer__nav {
    width: 100%;
    padding: 0;
    max-height: 16rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
  }
  footer.pf-l-footer nav.pf-l-footer__nav ul.pf-l-footer__navList {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    background: linear-gradient(to right bottom, hsl(34, 100%, 97%), hsl(34, 37.2549019608%, 74.5%));
    height: 70%;
    padding: 0;
    border-radius: 8px;
  }
  footer.pf-l-footer nav.pf-l-footer__nav ul.pf-l-footer__navList li.pf-l-footer__navLItem {
    height: 70%;
  }
  footer.pf-l-footer nav.pf-l-footer__nav ul.pf-l-footer__navList li.pf-l-footer__navLItem:not(:last-child) {
    border-right: 0.1rem solid white;
    border-bottom: none;
  }
  footer.pf-l-footer nav.pf-l-footer__nav ul.pf-l-footer__navList li.pf-l-footer__navLItem a span.pf-l-footer__navItemJp {
    font-family: "sawarabi gothic", sans-serif;
    font-size: 2.4rem;
    color: hsl(210, 27.2727272727%, 27.5%);
  }
  footer.pf-l-footer nav.pf-l-footer__nav ul.pf-l-footer__navList li.pf-l-footer__navLItem a span.pf-l-footer__navItemEn {
    font-family: "patrick hand", cursive;
    font-size: 2.4rem;
    color: hsl(210, 27.2727272727%, 27.5%);
  }
  footer.pf-l-footer div.pf-l-footer__brand {
    padding: 0;
    background: none;
  }
  footer.pf-l-footer div.pf-l-footer__brand div.pf-l-footer__brandLogo {
    display: none;
  }
  footer.pf-l-footer div.pf-l-footer__brand small {
    font-size: 1.6rem;
  }
}
.handwriting-animation {
  position: relative;
  display: inline-block;
}
.handwriting-animation .handwriting-text {
  position: relative;
  display: inline-block;
  opacity: 0;
  color: hsl(210, 79.5918367347%, 49%);
  font-family: "patrick hand", cursive;
  animation: titleFadeIn 1s ease-in-out 0.3s forwards;
}
@media (max-width: 768px) {
  .handwriting-animation .handwriting-text {
    font-size: 4.8rem;
  }
}
@media (min-width: 769px) {
  .handwriting-animation .handwriting-text {
    font-size: 8rem;
  }
}

@keyframes titleFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
main#home section.pf-p-topKV {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  @import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap");
}
main#home section.pf-p-topKV div.pf-p-topKV__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main#home section.pf-p-topKV div.pf-p-topKV__inner h2.pf-p-topKV__title {
  font-family: "patrick hand", cursive;
  color: hsl(210, 79.5918367347%, 49%);
  text-align: center;
}
@media (max-width: 768px) {
  main#home section.pf-p-topKV div.pf-p-topKV__inner h2.pf-p-topKV__title {
    font-size: 4.8rem;
  }
}
@media (min-width: 769px) {
  main#home section.pf-p-topKV div.pf-p-topKV__inner h2.pf-p-topKV__title {
    font-size: 8rem;
  }
}
@media (max-width: 768px) {
  main#home section.pf-p-topKV div.pf-p-topKV__inner h2.pf-p-topKV__title {
    margin: 4rem auto 0;
  }
}
@media (min-width: 769px) {
  main#home section.pf-p-topKV div.pf-p-topKV__inner h2.pf-p-topKV__title {
    margin: 4rem auto 0;
  }
}
main#home section.pf-p-topKV div.pf-p-topKV__inner p.pf-p-topKV__copy {
  font-family: "patrick hand", cursive;
}
@media (max-width: 768px) {
  main#home section.pf-p-topKV div.pf-p-topKV__inner p.pf-p-topKV__copy {
    font-size: 1.8rem;
  }
}
@media (min-width: 769px) {
  main#home section.pf-p-topKV div.pf-p-topKV__inner p.pf-p-topKV__copy {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  main#home section.pf-p-topKV div.pf-p-topKV__inner p.pf-p-topKV__copy {
    margin: 4rem auto 0 auto;
  }
}
@media (min-width: 769px) {
  main#home section.pf-p-topKV div.pf-p-topKV__inner p.pf-p-topKV__copy {
    margin: 4rem auto 0 auto;
  }
}
main#home section.pf-p-topKV div.pf-p-topKV__inner p.pf-p-topKV__desc {
  font-family: "sawarabi gothic", sans-serif;
  text-align: center;
  text-wrap: balance;
}
@media (max-width: 768px) {
  main#home section.pf-p-topKV div.pf-p-topKV__inner p.pf-p-topKV__desc {
    font-size: 1.2rem;
  }
}
@media (min-width: 769px) {
  main#home section.pf-p-topKV div.pf-p-topKV__inner p.pf-p-topKV__desc {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  main#home section.pf-p-topKV div.pf-p-topKV__inner p.pf-p-topKV__desc {
    margin: 4rem auto 0;
  }
}
@media (min-width: 769px) {
  main#home section.pf-p-topKV div.pf-p-topKV__inner p.pf-p-topKV__desc {
    margin: 4rem auto 0;
  }
}
main#home section.pf-p-topKV div.pf-p-topKV__inner p.pf-p-topKV__desc span {
  display: block;
  margin-top: 0.8rem;
  text-wrap: balance;
}
main#home section.pf-p-topKV div.scroll_down {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-bottom: 8rem;
}
@media (max-width: 768px) {
  main#home section.pf-p-topKV div.scroll_down {
    margin-top: 4rem;
  }
}
@media (min-width: 769px) {
  main#home section.pf-p-topKV div.scroll_down {
    margin-top: 4rem;
  }
}
main#home section.pf-p-topKV div.scroll_down a.pf-scrollannounce {
  font-family: "patrick hand", cursive;
  font-size: 1.6rem;
  border-radius: 9999px;
  color: hsl(210, 61.2903225806%, 15.5%);
  letter-spacing: 0.2em;
  writing-mode: row;
  text-decoration: none;
  padding-bottom: 0.8rem;
}
main#home section.pf-p-topKV div.scroll_down::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: hsl(210, 61.2903225806%, 15.5%);
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
  bottom: 16rem;
}
@keyframes circlemove {
  0% {
    bottom: 8rem;
  }
  100% {
    bottom: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
main#home section.pf-p-topKV div.scroll_down::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 0.1rem;
  height: 8rem;
  background: hsl(210, 61.2903225806%, 15.5%);
}
main#home section.pf-p-topWorks div.pf-p-works__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 90%;
  margin: 0 auto;
  margin-top: 2rem;
}
main#home section.pf-p-topWorks div.pf-p-works__container article.pf-p-works__item {
  width: 100%;
  border: 0.1rem solid hsl(210, 11.1111111111%, 91%);
  border-radius: 0.8rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: hsl(34, 25%, 96%);
  aspect-ratio: 16/18;
}
main#home section.pf-p-topWorks div.pf-p-works__container article.pf-p-works__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2rem hsla(0, 0%, 0%, 0.18);
}
main#home section.pf-p-topWorks div.pf-p-works__container article.pf-p-works__item a {
  display: grid;
  grid-template-rows: 1fr 1fr;
  text-decoration: none;
  color: inherit;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
}
main#home section.pf-p-topWorks div.pf-p-works__container article.pf-p-works__item a div.pf-p-works__thmbnail {
  width: 100%;
  overflow: hidden;
  min-height: 0;
  background-color: hsl(34, 25%, 96%);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(210, 60%, 37.5%);
}
main#home section.pf-p-topWorks div.pf-p-works__container article.pf-p-works__item a div.pf-p-works__thmbnail img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  background-color: white;
}
main#home section.pf-p-topWorks div.pf-p-works__container article.pf-p-works__item a div.pf-p-works__textbox {
  padding: 2rem;
  display: grid;
  grid-template-rows: auto auto;
  min-height: 0;
  aspect-ratio: 16/9;
}
main#home section.pf-p-topWorks div.pf-p-works__container article.pf-p-works__item a div.pf-p-works__textbox h3.pf-p-works__itemJunle {
  font-family: "sawarabi gothic", sans-serif;
  color: hsl(210, 62.1621621622%, 18.5%);
  text-align: start;
}
@media (max-width: 768px) {
  main#home section.pf-p-topWorks div.pf-p-works__container article.pf-p-works__item a div.pf-p-works__textbox h3.pf-p-works__itemJunle {
    font-size: 1.4rem;
  }
}
@media (min-width: 769px) {
  main#home section.pf-p-topWorks div.pf-p-works__container article.pf-p-works__item a div.pf-p-works__textbox h3.pf-p-works__itemJunle {
    font-size: 1.6rem;
  }
}
main#home section.pf-p-topWorks div.pf-p-works__container article.pf-p-works__item a div.pf-p-works__textbox h3.pf-p-works__itemTitle {
  font-family: "sawarabi gothic", sans-serif;
  color: hsl(210, 62.1621621622%, 18.5%);
  text-align: start;
}
@media (max-width: 768px) {
  main#home section.pf-p-topWorks div.pf-p-works__container article.pf-p-works__item a div.pf-p-works__textbox h3.pf-p-works__itemTitle {
    font-size: 1.4rem;
  }
}
@media (min-width: 769px) {
  main#home section.pf-p-topWorks div.pf-p-works__container article.pf-p-works__item a div.pf-p-works__textbox h3.pf-p-works__itemTitle {
    font-size: 1.6rem;
  }
}
main#home section.pf-p-topWorks div.pf-p-works__container article.pf-p-works__item a div.pf-p-works__textbox p.pf-p-works__itemText {
  font-family: "rounded mplus 1c", sans-serif;
  margin: 0;
  color: hsl(210, 62.1621621622%, 18.5%);
  line-height: 1.6;
  text-align: start;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  main#home section.pf-p-topWorks div.pf-p-works__container article.pf-p-works__item a div.pf-p-works__textbox p.pf-p-works__itemText {
    font-size: 1.4rem;
  }
}
@media (min-width: 769px) {
  main#home section.pf-p-topWorks div.pf-p-works__container article.pf-p-works__item a div.pf-p-works__textbox p.pf-p-works__itemText {
    font-size: 1.6rem;
  }
}
main#home section.pf-p-topWorks div.pf-p-works__container article.pf-p-works__item a div.pf-p-works__textbox p.pf-p-works__itemcategory {
  font-family: "patrick hand", cursive;
  font-style: italic;
  margin: 0;
  color: hsl(210, 62.1621621622%, 18.5%);
  line-height: 1.6;
  text-align: end;
}
@media (max-width: 768px) {
  main#home section.pf-p-topWorks div.pf-p-works__container article.pf-p-works__item a div.pf-p-works__textbox p.pf-p-works__itemcategory {
    font-size: 1.4rem;
  }
}
@media (min-width: 769px) {
  main#home section.pf-p-topWorks div.pf-p-works__container article.pf-p-works__item a div.pf-p-works__textbox p.pf-p-works__itemcategory {
    font-size: 1.6rem;
  }
}
main#home section.pf-p-topWorks div.pf-c-ctaContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
@media (max-width: 768px) {
  main#home section.pf-p-topWorks div.pf-c-ctaContainer {
    margin-top: 4rem;
  }
}
@media (min-width: 769px) {
  main#home section.pf-p-topWorks div.pf-c-ctaContainer {
    margin-top: 4rem;
  }
}
main#home section.pf-p-topWorks div.pf-c-ctaContainer a.pf-c-btn {
  font-family: "patrick hand", cursive;
  font-size: clamp(1.4rem, 1.2vw, 2rem);
}
main#home section.pf-p-topWorks div.pf-c-ctaContainer a.pf-c-btn:hover {
  background-color: hsl(210, 42.8571428571%, 82.5%);
  color: hsl(210, 33.3333333333%, 15%);
}
main#home section.pf-p-topAbout div.pf-l-container div.pf-p-about__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}
main#home section.pf-p-topAbout div.pf-l-container div.pf-p-about__container img.pf-p-about__img {
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
  border-radius: 8px;
}
main#home section.pf-p-topAbout div.pf-l-container div.pf-p-about__container div.pf-p-about__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media (max-width: 768px) {
  main#home section.pf-p-topAbout div.pf-l-container div.pf-p-about__container div.pf-p-about__text {
    margin-top: 4rem;
  }
}
@media (min-width: 769px) {
  main#home section.pf-p-topAbout div.pf-l-container div.pf-p-about__container div.pf-p-about__text {
    margin-top: 4rem;
  }
}
main#home section.pf-p-topAbout div.pf-l-container div.pf-p-about__container div.pf-p-about__text h3.pf-p-about__textName {
  font-family: "sawarabi gothic", sans-serif;
  text-align: center;
  margin: 0;
}
@media (max-width: 768px) {
  main#home section.pf-p-topAbout div.pf-l-container div.pf-p-about__container div.pf-p-about__text h3.pf-p-about__textName {
    font-size: 1.4rem;
  }
}
@media (min-width: 769px) {
  main#home section.pf-p-topAbout div.pf-l-container div.pf-p-about__container div.pf-p-about__text h3.pf-p-about__textName {
    font-size: 1.6rem;
  }
}
main#home section.pf-p-topAbout div.pf-l-container div.pf-p-about__container div.pf-p-about__text p.pf-p-about__textDesc {
  font-family: "rounded mplus 1c", sans-serif;
  line-height: 1.7rem;
  text-align: center;
}
@media (max-width: 768px) {
  main#home section.pf-p-topAbout div.pf-l-container div.pf-p-about__container div.pf-p-about__text p.pf-p-about__textDesc {
    font-size: 1.4rem;
  }
}
@media (min-width: 769px) {
  main#home section.pf-p-topAbout div.pf-l-container div.pf-p-about__container div.pf-p-about__text p.pf-p-about__textDesc {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  main#home section.pf-p-topAbout div.pf-l-container div.pf-p-about__container div.pf-p-about__text p.pf-p-about__textDesc {
    margin-top: 4rem;
  }
}
@media (min-width: 769px) {
  main#home section.pf-p-topAbout div.pf-l-container div.pf-p-about__container div.pf-p-about__text p.pf-p-about__textDesc {
    margin-top: 4rem;
  }
}
main#home section.pf-p-topAbout div.pf-l-container div.pf-c-ctaContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
@media (max-width: 768px) {
  main#home section.pf-p-topAbout div.pf-l-container div.pf-c-ctaContainer {
    margin-top: 4rem;
  }
}
@media (min-width: 769px) {
  main#home section.pf-p-topAbout div.pf-l-container div.pf-c-ctaContainer {
    margin-top: 4rem;
  }
}
main#home section.pf-p-topAbout div.pf-l-container div.pf-c-ctaContainer a.pf-c-btn {
  font-family: "patrick hand", cursive;
  font-size: clamp(1.4rem, 1.2vw, 2rem);
}
main#home section.pf-p-topAbout div.pf-l-container div.pf-c-ctaContainer a.pf-c-btn:hover {
  background-color: hsl(210, 42.8571428571%, 82.5%);
  color: hsl(210, 33.3333333333%, 15%);
}
main#home section.pf-p-topContact div.pf-l-container {
  margin-top: 0;
}
main#home section.pf-p-topContact div.pf-l-container h2.pf-p-topContact__title {
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.5rem 2rem;
}
main#home section.pf-p-topContact div.pf-l-container h2.pf-p-topContact__title .pf-c-sectTitle__jp {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}
main#home section.pf-p-topContact div.pf-l-container h2.pf-p-topContact__title .pf-c-sectTitle__en {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}
@media (max-width: 768px) {
  main#home section.pf-p-topContact div.pf-l-container {
    margin-top: 4rem;
  }
}
@media (min-width: 769px) {
  main#home section.pf-p-topContact div.pf-l-container {
    margin-top: 4rem;
  }
}
main#home section.pf-p-topContact div.pf-l-container div.pf-p-contactContainer {
  width: 100%;
  max-width: 60rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
@media (max-width: 768px) {
  main#home section.pf-p-topContact div.pf-l-container div.pf-p-contactContainer {
    margin-bottom: 4rem;
  }
}
@media (min-width: 769px) {
  main#home section.pf-p-topContact div.pf-l-container div.pf-p-contactContainer {
    margin-bottom: 4rem;
  }
}
main#home section.pf-p-topContact div.pf-l-container div.pf-p-contactContainer a.pf-p-contactLink {
  display: inline-block;
  font-family: "patrick hand", cursive;
  line-height: 1.7rem;
  color: hsl(210, 61.2903225806%, 15.5%);
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 768px) {
  main#home section.pf-p-topContact div.pf-l-container div.pf-p-contactContainer a.pf-p-contactLink {
    font-size: 1.8rem;
  }
}
@media (min-width: 769px) {
  main#home section.pf-p-topContact div.pf-l-container div.pf-p-contactContainer a.pf-p-contactLink {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  main#home section.pf-p-topContact div.pf-l-container div.pf-p-contactContainer a.pf-p-contactLink {
    margin-bottom: 4rem;
  }
}
@media (min-width: 769px) {
  main#home section.pf-p-topContact div.pf-l-container div.pf-p-contactContainer a.pf-p-contactLink {
    margin-bottom: 4rem;
  }
}
main#home section.pf-p-topContact div.pf-l-container div.pf-p-contactContainer a.pf-p-contactLink:hover {
  color: hsl(210, 79.5918367347%, 49%);
  transform: translateY(-2px);
  text-decoration: underline;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
main#home section.pf-p-topContact div.pf-l-container div.pf-p-contactContainer a.pf-p-contactLink:hover strong {
  color: hsl(210, 79.5918367347%, 49%);
}
main#home section.pf-p-topContact div.pf-l-container div.pf-p-contactContainer p.pf-p-contact {
  font-family: "sawarabi gothic", sans-serif;
  line-height: 1.7rem;
  text-align: center;
}
@media (max-width: 768px) {
  main#home section.pf-p-topContact div.pf-l-container div.pf-p-contactContainer p.pf-p-contact {
    font-size: 1.4rem;
  }
}
@media (min-width: 769px) {
  main#home section.pf-p-topContact div.pf-l-container div.pf-p-contactContainer p.pf-p-contact {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  main#home section.pf-p-topContact div.pf-l-container div.pf-p-contactContainer p.pf-p-contact {
    margin-bottom: 4rem;
  }
}
@media (min-width: 769px) {
  main#home section.pf-p-topContact div.pf-l-container div.pf-p-contactContainer p.pf-p-contact {
    margin-bottom: 4rem;
  }
}

@media (min-width: 769px) {
  main#home section.pf-p-topKV {
    width: 100%;
    height: 100%;
  }
  main#home section.pf-p-topKV div.pf-p-topKV__inner {
    margin-top: 0;
  }
  main#home section.pf-p-topKV div.pf-p-topKV__inner p.pf-p-topKV__copy {
    text-align: center;
  }
  main#home section.pf-p-topKV div.pf-p-topKV__inner p.pf-p-topKV__desc {
    width: 100%;
  }
  main#home section.pf-p-topKV div.pf-p-topKV__inner p.pf-p-topKV__desc span {
    display: block;
    padding-top: 0.8rem;
    text-align: center;
  }
  main#home section.pf-p-topKV div.pf-p-topKV__inner div.scroll-down {
    width: auto;
  }
  main#home section.pf-p-topKV div.pf-p-topKV__inner div.scroll-down a.pf-scrollannounce {
    display: block;
  }
}
@media (min-width: 769px) and (max-width: 768px) {
  main#home section.pf-p-topKV div.pf-p-topKV__inner div.scroll-down a.pf-scrollannounce {
    padding: 0.4rem 4rem;
  }
}
@media (min-width: 769px) and (min-width: 769px) {
  main#home section.pf-p-topKV div.pf-p-topKV__inner div.scroll-down a.pf-scrollannounce {
    padding: 0.4rem 4rem;
  }
}
@media (min-width: 769px) {
  main#home section.pf-p-topWorks {
    border-radius: 4rem;
    background-color: hsl(34, 23.0769230769%, 93.5%);
    max-width: 120rem;
    margin: 0 auto;
  }
  main#home section.pf-p-topWorks div.pf-l-container div.pf-p-works__container {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 90%;
  }
}
@media screen and (min-width: 769px) and (min-width: 769px) and (max-width: 900px) {
  main#home section.pf-p-topWorks div.pf-l-container div.pf-p-works__container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
@media (min-width: 769px) {
  main#home section.pf-p-topAbout div.pf-l-container div.pf-p-about__container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    justify-content: space-around;
    gap: 2rem;
  }
  main#home section.pf-p-topAbout div.pf-l-container div.pf-p-about__container img.pf-p-about__img {
    width: -moz-fit-content;
    width: fit-content;
  }
  main#home section.pf-p-topAbout div.pf-l-container div.pf-p-about__container div.pf-p-about__text {
    width: 80%;
    text-align: center;
  }
  main#home section.pf-p-topAbout div.pf-l-container div.pf-p-about__container div.pf-p-about__text p.pf-p-about__textDesc {
    text-align: start;
    text-wrap: wrap;
  }
  main#home section.pf-p-topContact {
    border-radius: 4rem;
    background-color: hsl(34, 23.0769230769%, 93.5%);
    max-width: 1200px;
    margin: 0 auto;
  }
  main#home section.pf-p-topContact div.pf-l-container {
    margin-top: 0;
  }
  main#home section.pf-p-topContact div.pf-l-container div.pf-p-contactContainer {
    width: 80%;
    margin: 0 auto;
  }
}
@media (min-width: 769px) and (max-width: 768px) {
  main#home section.pf-p-topContact div.pf-l-container div.pf-p-contactContainer {
    margin-bottom: 4rem;
  }
}
@media (min-width: 769px) and (min-width: 769px) {
  main#home section.pf-p-topContact div.pf-l-container div.pf-p-contactContainer {
    margin-bottom: 4rem;
  }
}
@media (min-width: 769px) {
  main#home section.pf-p-topContact div.pf-l-container div.pf-p-contactContainer p.pf-p-contact {
    font-weight: bold;
    text-align: center;
  }
}
@media (min-width: 769px) and (max-width: 768px) {
  main#home section.pf-p-topContact div.pf-l-container div.pf-p-contactContainer p.pf-p-contact {
    margin-top: 4rem;
  }
}
@media (min-width: 769px) and (min-width: 769px) {
  main#home section.pf-p-topContact div.pf-l-container div.pf-p-contactContainer p.pf-p-contact {
    margin-top: 4rem;
  }
}
@media (min-width: 769px) and (max-width: 768px) {
  main#home section.pf-p-topContact div.pf-l-container div.pf-p-contactContainer p.pf-p-contact {
    font-size: 1.8rem;
  }
}
@media (min-width: 769px) and (min-width: 769px) {
  main#home section.pf-p-topContact div.pf-l-container div.pf-p-contactContainer p.pf-p-contact {
    font-size: 1.8rem;
  }
}
@media (min-width: 769px) and (max-width: 768px) {
  main#home section.pf-p-topContact div.pf-l-container div.pf-p-contactContainer p.pf-p-contact {
    line-height: 3rem;
  }
}
@media (min-width: 769px) and (min-width: 769px) {
  main#home section.pf-p-topContact div.pf-l-container div.pf-p-contactContainer p.pf-p-contact {
    line-height: 3rem;
  }
}
@media (min-width: 769px) {
  main#home section.pf-p-topContact div.pf-l-container div.pf-p-contactContainer a.pf-p-contactLink {
    font-family: "patrick hand", cursive;
    padding: 0;
  }
}
@media (min-width: 769px) and (max-width: 768px) {
  main#home section.pf-p-topContact div.pf-l-container div.pf-p-contactContainer a.pf-p-contactLink {
    margin-top: 4rem;
  }
}
@media (min-width: 769px) and (min-width: 769px) {
  main#home section.pf-p-topContact div.pf-l-container div.pf-p-contactContainer a.pf-p-contactLink {
    margin-top: 4rem;
  }
}
@media (min-width: 769px) and (max-width: 768px) {
  main#home section.pf-p-topContact div.pf-l-container div.pf-p-contactContainer a.pf-p-contactLink {
    font-size: 3.6rem;
  }
}
@media (min-width: 769px) and (min-width: 769px) {
  main#home section.pf-p-topContact div.pf-l-container div.pf-p-contactContainer a.pf-p-contactLink {
    font-size: 4.8rem;
  }
}
main#page-works {
  margin-top: 8rem;
}
main#page-works section.pf-l-works__KV {
  margin-top: 4rem;
}
main#page-works section.pf-p-worksFilter {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0;
  border-radius: 2.5rem;
}
main#page-works section.pf-p-worksFilter .pf-p-worksFilter__title {
  font-family: "sawarabi gothic", sans-serif;
  text-align: center;
}
main#page-works section.pf-p-worksFilter div.pf-p-worksFilter__categories ul.pf-p-worksFilter_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
main#page-works section.pf-p-worksFilter div.pf-p-worksFilter__categories ul.pf-p-worksFilter_list li a.filter-btn {
  display: inline-block;
  background-color: hsl(210, 73.9130434783%, 54%);
  color: hsl(34, 100%, 97.5%);
  border-radius: 8px;
  text-decoration: none;
  font-family: "sawarabi gothic", sans-serif;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  main#page-works section.pf-p-worksFilter div.pf-p-worksFilter__categories ul.pf-p-worksFilter_list li a.filter-btn {
    font-size: 1.4rem;
  }
}
@media (min-width: 769px) {
  main#page-works section.pf-p-worksFilter div.pf-p-worksFilter__categories ul.pf-p-worksFilter_list li a.filter-btn {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  main#page-works section.pf-p-worksFilter div.pf-p-worksFilter__categories ul.pf-p-worksFilter_list li a.filter-btn {
    padding: 0.4rem 0.8rem;
  }
}
@media (min-width: 769px) {
  main#page-works section.pf-p-worksFilter div.pf-p-worksFilter__categories ul.pf-p-worksFilter_list li a.filter-btn {
    padding: 0.4rem 0.8rem;
  }
}
main#page-works section.pf-p-worksFilter div.pf-p-worksFilter__categories ul.pf-p-worksFilter_list li a.filter-btn:hover {
  background-color: hsl(210, 42.8571428571%, 82.5%);
  color: hsl(210, 33.3333333333%, 15%);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
main#page-works section.pf-p-worksFilter div.pf-p-worksFilter__categories ul.pf-p-worksFilter_list li a.filter-btn.active {
  background-color: hsl(210, 42.8571428571%, 82.5%);
  color: hsl(210, 33.3333333333%, 15%);
  border-color: hsl(210, 79.5918367347%, 49%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
main#page-works section.pf-p-worksFilter div.pf-p-worksFilter__categories ul.pf-p-worksFilter_list li span {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: #f5f5f5;
  border: 2px solid hsl(210, 11.1111111111%, 91%);
  border-radius: 25px;
  font-family: "sawarabi gothic", sans-serif;
  font-size: 1.4rem;
  color: hsl(34, 100%, 97.5%);
}
main#page-works section.pf-p-works div.pf-c-sectTitle {
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.5rem 2rem;
  margin: 0 auto;
}
main#page-works section.pf-p-works div.pf-c-sectTitle .pf-c-sectTitle__jp {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}
main#page-works section.pf-p-works div.pf-c-sectTitle .pf-c-sectTitle__en {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}
main#page-works section.pf-p-works div.pf-p-works__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding: 0 2rem;
  margin-top: 0;
}
@media (max-width: 768px) {
  main#page-works section.pf-p-works div.pf-p-works__container {
    margin: 2rem auto;
  }
}
@media (min-width: 769px) {
  main#page-works section.pf-p-works div.pf-p-works__container {
    margin: 2rem auto;
  }
}
main#page-works section.pf-p-works div.pf-p-works__container article.pf-p-works__item {
  width: 100%;
  border: 0.2rem solid hsl(210, 11.1111111111%, 91%);
  border-radius: 0.8rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: hsl(34, 25%, 96%);
  aspect-ratio: 16/18;
}
main#page-works section.pf-p-works div.pf-p-works__container article.pf-p-works__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2rem hsla(0, 0%, 0%, 0.18);
}
main#page-works section.pf-p-works div.pf-p-works__container article.pf-p-works__item a {
  display: grid;
  grid-template-rows: 1fr 1fr;
  text-decoration: none;
  color: inherit;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
}
main#page-works section.pf-p-works div.pf-p-works__container article.pf-p-works__item a div.pf-p-works__thmbnail {
  width: 100%;
  overflow: hidden;
  min-height: 0;
  background-color: hsl(34, 25%, 96%);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(210, 60%, 37.5%);
}
main#page-works section.pf-p-works div.pf-p-works__container article.pf-p-works__item a div.pf-p-works__thmbnail img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  background-color: white;
}
main#page-works section.pf-p-works div.pf-p-works__container article.pf-p-works__item a div.pf-p-works__textbox {
  padding: 1.5rem;
  display: grid;
  grid-template-rows: auto auto;
  min-height: 0;
  aspect-ratio: 16/9;
}
main#page-works section.pf-p-works div.pf-p-works__container article.pf-p-works__item a div.pf-p-works__textbox h3.pf-p-works__itemJunle {
  font-family: "sawarabi gothic", sans-serif;
  color: hsl(210, 62.1621621622%, 18.5%);
  text-align: start;
}
@media (max-width: 768px) {
  main#page-works section.pf-p-works div.pf-p-works__container article.pf-p-works__item a div.pf-p-works__textbox h3.pf-p-works__itemJunle {
    font-size: 1.4rem;
  }
}
@media (min-width: 769px) {
  main#page-works section.pf-p-works div.pf-p-works__container article.pf-p-works__item a div.pf-p-works__textbox h3.pf-p-works__itemJunle {
    font-size: 1.6rem;
  }
}
main#page-works section.pf-p-works div.pf-p-works__container article.pf-p-works__item a div.pf-p-works__textbox h3.pf-p-works__itemTitle {
  font-family: "sawarabi gothic", sans-serif;
  color: hsl(210, 62.1621621622%, 18.5%);
  text-align: start;
}
@media (max-width: 768px) {
  main#page-works section.pf-p-works div.pf-p-works__container article.pf-p-works__item a div.pf-p-works__textbox h3.pf-p-works__itemTitle {
    font-size: 1.4rem;
  }
}
@media (min-width: 769px) {
  main#page-works section.pf-p-works div.pf-p-works__container article.pf-p-works__item a div.pf-p-works__textbox h3.pf-p-works__itemTitle {
    font-size: 1.6rem;
  }
}
main#page-works section.pf-p-works div.pf-p-works__container article.pf-p-works__item a div.pf-p-works__textbox p.pf-p-works__itemText {
  font-family: "rounded mplus 1c", sans-serif;
  margin: 0;
  color: hsl(210, 62.1621621622%, 18.5%);
  line-height: 1.6;
  text-align: start;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  main#page-works section.pf-p-works div.pf-p-works__container article.pf-p-works__item a div.pf-p-works__textbox p.pf-p-works__itemText {
    font-size: 1.4rem;
  }
}
@media (min-width: 769px) {
  main#page-works section.pf-p-works div.pf-p-works__container article.pf-p-works__item a div.pf-p-works__textbox p.pf-p-works__itemText {
    font-size: 1.6rem;
  }
}
main#page-works section.pf-p-works div.pf-p-works__container article.pf-p-works__item a div.pf-p-works__textbox p.pf-p-works__itemcategory {
  font-family: "patrick hand", cursive;
  font-style: italic;
  margin: 0;
  color: hsl(210, 62.1621621622%, 18.5%);
  line-height: 1.6;
  text-align: end;
}
@media (max-width: 768px) {
  main#page-works section.pf-p-works div.pf-p-works__container article.pf-p-works__item a div.pf-p-works__textbox p.pf-p-works__itemcategory {
    font-size: 1.4rem;
  }
}
@media (min-width: 769px) {
  main#page-works section.pf-p-works div.pf-p-works__container article.pf-p-works__item a div.pf-p-works__textbox p.pf-p-works__itemcategory {
    font-size: 1.6rem;
  }
}
main#page-works section.pf-p-works div.pf-p-pagination {
  text-align: center;
}
@media (max-width: 768px) {
  main#page-works section.pf-p-works div.pf-p-pagination {
    margin: 2rem auto;
  }
}
@media (min-width: 769px) {
  main#page-works section.pf-p-works div.pf-p-pagination {
    margin: 2rem auto;
  }
}
main#page-works section.pf-p-works div.pf-p-pagination ul.page-numbers {
  display: inline-flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
main#page-works section.pf-p-works div.pf-p-pagination ul.page-numbers li a, main#page-works section.pf-p-works div.pf-p-pagination ul.page-numbers li span {
  display: inline-block;
  background-color: none;
  border: none;
  border-radius: 50%;
  text-decoration: none;
  font-family: "sawarabi gothic", sans-serif;
  color: hsl(210, 27.2727272727%, 27.5%);
  transition: all 0.3s ease;
  font-weight: 500;
  min-width: 44px;
  text-align: center;
}
@media (max-width: 768px) {
  main#page-works section.pf-p-works div.pf-p-pagination ul.page-numbers li a, main#page-works section.pf-p-works div.pf-p-pagination ul.page-numbers li span {
    padding: 0.4rem 0.8rem;
  }
}
@media (min-width: 769px) {
  main#page-works section.pf-p-works div.pf-p-pagination ul.page-numbers li a, main#page-works section.pf-p-works div.pf-p-pagination ul.page-numbers li span {
    padding: 0.4rem 0.8rem;
  }
}
@media (max-width: 768px) {
  main#page-works section.pf-p-works div.pf-p-pagination ul.page-numbers li a, main#page-works section.pf-p-works div.pf-p-pagination ul.page-numbers li span {
    font-size: 1.4rem;
  }
}
@media (min-width: 769px) {
  main#page-works section.pf-p-works div.pf-p-pagination ul.page-numbers li a, main#page-works section.pf-p-works div.pf-p-pagination ul.page-numbers li span {
    font-size: 1.6rem;
  }
}
main#page-works section.pf-p-works div.pf-p-pagination ul.page-numbers li a:hover, main#page-works section.pf-p-works div.pf-p-pagination ul.page-numbers li span:hover {
  color: hsl(210, 79.5918367347%, 49%);
  transform: translateY(-2px);
  text-decoration: underline;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
main#page-works section.pf-p-works div.pf-p-pagination ul.page-numbers li span.current {
  color: hsl(210, 79.5918367347%, 49%);
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
main#page-works section.pf-p-works .pf-p-works__empty {
  text-align: center;
  padding: 4rem 2rem;
}
main#page-works section.pf-p-works .pf-p-works__empty p {
  font-family: "sawarabi gothic", sans-serif;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: #666;
}
main#page-works section.pf-p-works .pf-p-works__empty .pf-c-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: hsl(210, 79.5918367347%, 49%);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-family: "sawarabi gothic", sans-serif;
  font-size: 1.4rem;
  transition: background-color 0.3s ease;
}
main#page-works section.pf-p-works .pf-p-works__empty .pf-c-btn:hover {
  background-color: hsl(210, 79.5918367347%, 39%);
}

@media screen and (min-width: 768px) {
  main#page-works section.pf-p-worksFilter .pf-p-worksFilter__title {
    text-align: start;
  }
  main#page-works section.pf-p-works div.pf-p-works__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 90%;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 769px) and (max-width: 900px) {
  main#page-works section.pf-p-works div.pf-p-works__container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
main#detail section.pf-l-detail__KV {
  width: 100%;
  height: auto;
}
main#detail section.pf-p-detailContainer {
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  main#detail section.pf-p-detailContainer {
    margin-top: 2rem;
  }
}
@media (min-width: 769px) {
  main#detail section.pf-p-detailContainer {
    margin-top: 2rem;
  }
}
main#detail section.pf-p-detailContainer div.detail-itembox {
  padding-bottom: 4rem;
  margin: 1rem auto;
}
main#detail section.pf-p-detailContainer div.detail-itembox div.pf-c-detailItem__title {
  /* 白の半透明レイヤーを重ねて足跡を薄く見せる */
  background-image: linear-gradient(linear-gradient(to right bottom, hsl(34, 100%, 97%), hsl(34, 37.2549019608%, 74.5%)), 0.6), url("../img/ホバー背景.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
main#detail section.pf-p-detailContainer div.detail-itembox strong {
  display: block;
  font-weight: bold;
  font-family: "sawarabi gothic", sans-serif;
  font-weight: 500;
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 768px) {
  main#detail section.pf-p-detailContainer div.detail-itembox strong {
    font-size: 2.4rem;
  }
}
@media (min-width: 769px) {
  main#detail section.pf-p-detailContainer div.detail-itembox strong {
    font-size: 3.6rem;
  }
}
main#detail section.pf-p-detailContainer div.pf-p-detailImg {
  width: 90%;
}
main#detail section.pf-p-detailContainer div.pf-p-detailImg div.pf-p-detail__imgSlider {
  margin: 0 auto;
}
main#detail section.pf-p-detailContainer div.pf-p-detailImg div.pf-p-detail__imgSlider .slick-list {
  width: 100%;
  margin: 0 auto;
}
main#detail section.pf-p-detailContainer div.pf-p-detailImg div.pf-p-detail__imgSlider .slick-list .slick-track {
  width: inherit;
  margin: 0 auto;
}
main#detail section.pf-p-detailContainer div.pf-p-detailImg div.pf-p-detail__imgSlider .slick-list .slick-track .slick-slide {
  width: 100%;
  margin: 0 auto;
}
main#detail section.pf-p-detailContainer div.pf-p-detailImg div.pf-p-detail__imgSlider .slick-list .slick-track .slick-slide img {
  width: 100%;
  margin: 0 auto;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
main#detail section.pf-p-detailContainer div.pf-p-detailImg div.pf-p-detail__imgSlider .slick-list .slick-track .slick-slide img:hover {
  transform: scale(1.02);
}
main#detail section.pf-p-detailContainer div.pf-p-detailImg div.pf-p-detail__imgSlider button.slick-prev:before,
main#detail section.pf-p-detailContainer div.pf-p-detailImg div.pf-p-detail__imgSlider button.slick-next:before {
  color: hsl(210, 73.9130434783%, 54%);
}
main#detail section.pf-p-detailContainer div.pf-p-detailImg div.pf-p-detail__imgSlider .slick-dots {
  bottom: -4rem;
}
main#detail section.pf-p-detailContainer div.pf-p-detailImg div.pf-p-detail__imgSlider .slick-dots li button::before {
  font-size: 12px;
  color: hsl(210, 79.5918367347%, 49%);
}
main#detail section.pf-p-detailContainer div.pf-p-detailImg div.pf-p-detail__imgSlider .slick-dots li.slick-active button::before {
  color: hsl(210, 79.5918367347%, 49%);
}
main#detail section.pf-p-detailContainer div.pc-gridbox div.pf-p-detailTerm {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main#detail section.pf-p-detailContainer div.pc-gridbox div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main#detail section.pf-p-detailContainer div.pc-gridbox div p {
  font-family: "sawarabi gothic", sans-serif;
  font-weight: 500;
}
main#detail section.pf-p-detailContainer div.pc-gridbox div.pf-p-detailTool {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main#detail section.pf-p-detailContainer div.pc-gridbox div.pf-p-detailTool div.pf-p-detail__iconBox {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 10px;
}
main#detail section.pf-p-detailContainer div.pc-gridbox div.pf-p-detailTool div.pf-p-detail__iconBox img {
  width: 3.6rem;
  height: auto;
  margin: 0 0.4rem;
}
main#detail section.pf-p-detailContainer div.pc-gridbox div.pf-p-detailPurpose {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main#detail section.pf-p-detailContainer div.pc-gridbox div.pf-p-detailPurpose div.pf-p-detail__purposeBox p {
  font-family: "rounded mplus 1c", sans-serif;
  text-align: center;
  text-wrap: balance;
}
@media (max-width: 768px) {
  main#detail section.pf-p-detailContainer div.pc-gridbox div.pf-p-detailPurpose div.pf-p-detail__purposeBox p {
    font-size: 1.4rem;
  }
}
@media (min-width: 769px) {
  main#detail section.pf-p-detailContainer div.pc-gridbox div.pf-p-detailPurpose div.pf-p-detail__purposeBox p {
    font-size: 1.6rem;
  }
}
main#detail section.pf-p-detailContainer div.pc-gridbox div.pf-p-detailTarget {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main#detail section.pf-p-detailContainer div.pc-gridbox div.pf-p-detailTarget div.pf-p-detail__targetBox p {
  font-family: "rounded mplus 1c", sans-serif;
  text-align: center;
  text-wrap: balance;
}
@media (max-width: 768px) {
  main#detail section.pf-p-detailContainer div.pc-gridbox div.pf-p-detailTarget div.pf-p-detail__targetBox p {
    font-size: 1.4rem;
  }
}
@media (min-width: 769px) {
  main#detail section.pf-p-detailContainer div.pc-gridbox div.pf-p-detailTarget div.pf-p-detail__targetBox p {
    font-size: 1.6rem;
  }
}
main#detail section.pf-p-detailContainer div.pc-gridbox div.pf-p-detailDesignIntent {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main#detail section.pf-p-detailContainer div.pc-gridbox div.pf-p-detailDesignIntent div.pf-p-detail_intentBox p {
  font-family: "rounded mplus 1c", sans-serif;
  text-align: start;
  text-wrap: wrap;
}
@media (max-width: 768px) {
  main#detail section.pf-p-detailContainer div.pc-gridbox div.pf-p-detailDesignIntent div.pf-p-detail_intentBox p {
    font-size: 1.4rem;
  }
}
@media (min-width: 769px) {
  main#detail section.pf-p-detailContainer div.pc-gridbox div.pf-p-detailDesignIntent div.pf-p-detail_intentBox p {
    font-size: 1.6rem;
  }
}
main#detail section.pf-p-detailContainer div.pc-gridbox div.pf-p-detailUrl {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main#detail section.pf-p-detailContainer div.pc-gridbox div.pf-p-detailUrl div.pf-p-detailUrl a p {
  font-family: "rounded mplus 1c", sans-serif;
  text-align: center;
}
@media (max-width: 768px) {
  main#detail section.pf-p-detailContainer div.pc-gridbox div.pf-p-detailUrl div.pf-p-detailUrl a p {
    font-size: 1.4rem;
  }
}
@media (min-width: 769px) {
  main#detail section.pf-p-detailContainer div.pc-gridbox div.pf-p-detailUrl div.pf-p-detailUrl a p {
    font-size: 1.6rem;
  }
}
main#detail section.pf-p-detailContainer div.pc-gridbox div.pf-p-detailUrl div.pf-p-detailUrl a:hover {
  text-decoration: underline;
  color: hsl(210, 79.5918367347%, 49%);
}
main#detail section.pf-p-detailContainer div.pc-gridbox div.pf-p-detailUrl div.pf-p-detailUrl a:hover p {
  color: hsl(210, 79.5918367347%, 49%);
}
main#detail section.pf-p-detailContainer div.pf-p-detailPagination {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
  padding: 2rem 0;
}
main#detail section.pf-p-detailContainer div.pf-p-detailPagination div.pf-p-detailPagination__prev a, main#detail section.pf-p-detailContainer div.pf-p-detailPagination div.pf-p-detailPagination__next a {
  display: block;
  padding: 1rem 2rem;
  background-color: white;
  color: hsl(210, 79.5918367347%, 49%);
  text-decoration: none;
  border: 1px solid hsl(210, 11.1111111111%, 91%);
  border-radius: 8px;
  transition: all 0.3s ease;
}
main#detail section.pf-p-detailContainer div.pf-p-detailPagination div.pf-p-detailPagination__prev a:hover, main#detail section.pf-p-detailContainer div.pf-p-detailPagination div.pf-p-detailPagination__next a:hover {
  background-color: hsl(210, 79.5918367347%, 49%);
  color: white;
}
main#detail section.pf-p-detailContainer div.pf-p-detailPagination div.pf-p-detailPagination__prev a p, main#detail section.pf-p-detailContainer div.pf-p-detailPagination div.pf-p-detailPagination__next a p {
  margin: 0;
  font-family: "sawarabi gothic", sans-serif;
  font-size: 1.4rem;
  text-align: center;
}

.pf-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
}
.pf-modal-overlay .pf-modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  height: 90%;
  margin: 5% auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pf-modal-overlay .pf-modal-content .pf-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  z-index: 10000;
}
.pf-modal-overlay .pf-modal-content .pf-modal-close:hover {
  opacity: 0.7;
}
.pf-modal-overlay .pf-modal-content .pf-modal-image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}

main#about section.pf-l-about__KV {
  width: 80%;
  margin: 0 auto;
}
main#about section.pf-l-about__KV div.pf-p-about__imgContainer {
  width: 90%;
  margin: 0 auto;
  margin-top: 4rem;
}
main#about section.pf-l-about__KV div.pf-p-about__imgContainer div.KV_slick-slider {
  width: 100%;
  margin: 0 auto;
}
main#about section.pf-l-about__KV div.pf-p-about__imgContainer div.KV_slick-slider img {
  width: 100;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
main#about section.pf-l-about__KV div.pf-p-about__imgContainer button.slick-prev:before,
main#about section.pf-l-about__KV div.pf-p-about__imgContainer button.slick-next:before {
  color: hsl(210, 73.9130434783%, 54%);
}
main#about section.pf-l-about__KV div.pf-p-about__imgContainer ul.slick-dots {
  bottom: -40px;
}
main#about section.pf-l-about__KV div.pf-p-about__imgContainer ul.slick-dots li button:before {
  color: hsl(210, 79.5918367347%, 49%);
  font-size: 8px;
}
main#about section.pf-l-about__KV div.pf-p-about__imgContainer ul.slick-dots li.slick-active button:before {
  color: hsl(210, 79.5918367347%, 49%);
}
main#about section.pf-l-about__KV div.pf-p-introtext {
  margin: 4rem auto 0;
}
main#about section.pf-l-about__KV div.pf-p-introtext p {
  text-align: center;
  margin: 2rem auto;
  font-size: 1.2rem;
  line-height: 1.6rem;
}
main#about section.pf-l-about__KV div.pf-p-introtext strong {
  display: block;
  text-align: center;
  margin-top: 2rem;
  font-size: 1.2rem;
}
main#about nav.pf-p-about__navMenu {
  position: relative;
  top: 8rem;
  padding: 1rem 0;
  padding-bottom: 4rem;
  width: 90%;
  max-width: 90%;
  height: auto;
  cursor: pointer;
  margin: 0 auto;
  gap: 2rem;
}
main#about nav.pf-p-about__navMenu div.pf-clickcontainer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
}
main#about nav.pf-p-about__navMenu div.pf-clickcontainer strong.pf-clickanounce {
  font-family: "patrick hand", cursive;
  font-size: 1.4rem;
  background-color: hsl(210, 11.1111111111%, 91%);
  padding: 0.8rem 1.5rem;
  border-radius: 9999px;
  white-space: nowrap;
  text-align: center;
}
main#about nav.pf-p-about__navMenu ul.pf-p-about__navMenuList {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  grid-template-rows: 1fr 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 1rem;
  height: auto;
  width: auto;
  transition: all 0.6s ease;
  overflow: visible;
  vertical-align: center;
}
main#about nav.pf-p-about__navMenu ul.pf-p-about__navMenuList li.pf-p-about__navMenuListItem {
  width: auto;
  height: 16rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.6s ease;
  transform-origin: center center;
  flex: 1;
  min-width: 7rem;
}
main#about nav.pf-p-about__navMenu ul.pf-p-about__navMenuList li.pf-p-about__navMenuListItem.grid1 {
  grid-column: 1/-1;
  justify-self: center;
  align-self: center;
}
main#about nav.pf-p-about__navMenu ul.pf-p-about__navMenuList li.pf-p-about__navMenuListItem.grid2 {
  grid-column: 1;
  justify-self: center;
  align-self: center;
}
main#about nav.pf-p-about__navMenu ul.pf-p-about__navMenuList li.pf-p-about__navMenuListItem.grid3 {
  grid-column: 2;
  justify-self: center;
  align-self: center;
}
main#about nav.pf-p-about__navMenu ul.pf-p-about__navMenuList li.pf-p-about__navMenuListItem button {
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.6s ease;
  color: hsl(34, 100%, 97.5%);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 7rem;
  height: 7rem;
  font-size: 1rem;
  aspect-ratio: 1/1;
  text-align: center;
  box-shadow: hsla(0, 0%, 0%, 0.18);
  color: hsl(34, 100%, 97.5%);
}
main#about nav.pf-p-about__navMenu ul.pf-p-about__navMenuList li.pf-p-about__navMenuListItem button:hober {
  transform: translateX(-2px);
  background-color: hsl(210, 42.8571428571%, 82.5%);
  color: hsl(210, 33.3333333333%, 15%);
  box-shadow: 0 6px 16px hsla(210, 79.3103448276%, 14.5%, 0.4);
}
main#about nav.pf-p-about__navMenu ul.pf-p-about__navMenuList li.pf-p-about__navMenuListItem button p {
  font-family: "sawarabi gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  color: hsl(34, 100%, 97.5%);
  margin: 0;
  line-height: 1;
  text-align: center;
}
main#about nav.pf-p-about__navMenu ul.pf-p-about__navMenuList li.pf-p-about__navMenuListItem button span {
  font-family: "patrick hand", cursive;
  font-size: 1.4rem;
  color: hsl(34, 100%, 97.5%);
  line-height: 1;
  text-align: center;
  margin-top: 0.2rem;
}
main#about nav.pf-p-about__navMenu ul.pf-p-about__navMenuList li.pf-p-about__navMenuListItem button:hover {
  box-shadow: 0 4px 16px rgba(25, 118, 210, 0.3);
  transform: scale(1.1);
  color: hsl(210, 33.3333333333%, 15%);
}
main#about nav.pf-p-about__navMenu ul.pf-p-about__navMenuList li.pf-p-about__navMenuListItem button.active {
  background-color: hsl(210, 42.8571428571%, 72.5%);
  box-shadow: 0 6px 20px rgba(25, 118, 210, 0.4);
  transform: scale(1.05);
}
main#about nav.pf-p-about__navMenu ul.pf-p-about__navMenuList li.pf-p-about__navMenuListItem button.active p, main#about nav.pf-p-about__navMenu ul.pf-p-about__navMenuList li.pf-p-about__navMenuListItem button.active span {
  color: hsl(210, 33.3333333333%, 15%);
  font-weight: bold;
}
main#about nav.pf-p-about__navMenu ul.pf-p-about__navMenuList li.pf-p-about__navMenuListItem ul {
  list-style: none;
  padding: 0;
  width: auto;
}
main#about nav.pf-p-about__navMenu ul.pf-p-about__navMenuList li.pf-p-about__navMenuListItem ul li {
  margin: 0.4rem;
  text-align: start;
  line-height: 1.2;
  list-style: none;
}
main#about section[id] {
  display: none;
}
main#about section[id].is-active {
  display: flow-root;
}
main#about section.pf-p-about__profile {
  margin-top: 0;
}
main#about section.pf-p-about__profile article.pf-p-subsection-profileProfile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
main#about section.pf-p-about__profile article.pf-p-subsection-profileProfile div.pf-p-about__subsectionflex {
  width: 90%;
}
main#about section.pf-p-about__profile article.pf-p-subsection-profileProfile div.pf-p-about__subsectionflex img {
  width: 100%;
  margin: 0 auto;
  border-radius: 0.8rem;
}
main#about section.pf-p-about__profile article.pf-p-subsection-profileProfile div.pf-p-about__subsectionflex p {
  width: 100%;
  font-size: 1.2rem;
}
main#about section.pf-p-about__profile article.pf-p-subsection-profileLike {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
main#about section.pf-p-about__profile article.pf-p-subsection-profileLike div.pf-p-about__subsectionflex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  width: 100%;
}
main#about section.pf-p-about__profile article.pf-p-subsection-profileLike div.pf-p-about__subsectionflex div.slider-1col {
  width: 100%;
  margin: 0 auto;
}
main#about section.pf-p-about__profile article.pf-p-subsection-profileLike div.pf-p-about__subsectionflex div.slider-1col div {
  width: 90%;
  margin: 0 auto;
}
main#about section.pf-p-about__profile article.pf-p-subsection-profileLike div.pf-p-about__subsectionflex div.slider-1col div img {
  width: 80%;
  margin: 0 auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
main#about section.pf-p-about__profile article.pf-p-subsection-profileLike div.pf-p-about__subsectionflex div.slider-1col .slick-prev,
main#about section.pf-p-about__profile article.pf-p-subsection-profileLike div.pf-p-about__subsectionflex div.slider-1col .slick-next {
  z-index: 10;
  width: 40px;
  height: 40px;
}
main#about section.pf-p-about__profile article.pf-p-subsection-profileLike div.pf-p-about__subsectionflex div.slider-1col .slick-prev:before,
main#about section.pf-p-about__profile article.pf-p-subsection-profileLike div.pf-p-about__subsectionflex div.slider-1col .slick-next:before {
  font-size: 20px;
  color: hsl(210, 73.9130434783%, 54%);
}
main#about section.pf-p-about__profile article.pf-p-subsection-profileLike div.pf-p-about__subsectionflex div.slider-1col .slick-prev {
  left: 10px;
}
main#about section.pf-p-about__profile article.pf-p-subsection-profileLike div.pf-p-about__subsectionflex div.slider-1col .slick-next {
  right: 10px;
}
main#about section.pf-p-about__profile article.pf-p-subsection-profileLike div.pf-p-about__subsectionflex div.slider-1col .slick-dots {
  bottom: -40px;
}
main#about section.pf-p-about__profile article.pf-p-subsection-profileLike div.pf-p-about__subsectionflex div.slider-1col .slick-dots li button:before {
  color: hsl(210, 79.5918367347%, 49%);
  font-size: 8px;
}
main#about section.pf-p-about__profile article.pf-p-subsection-profileLike div.pf-p-about__subsectionflex div.slider-1col .slick-dots li.slick-active button:before {
  color: hsl(210, 79.5918367347%, 49%);
}
main#about section.pf-p-about__profile article.pf-p-subsection-profileLike div.pf-p-about__subsectionflex dl.like_textContent {
  width: 90%;
  margin: 0 auto;
}
main#about section.pf-p-about__profile article.pf-p-subsection-profileLike div.pf-p-about__subsectionflex dl.like_textContent dt {
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: hsl(210, 61.2903225806%, 15.5%);
}
main#about section.pf-p-about__profile article.pf-p-subsection-profileLike div.pf-p-about__subsectionflex dl.like_textContent dd {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
main#about section.pf-p-about__profile article.pf-p-subsection-profileHobby {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
main#about section.pf-p-about__profile article.pf-p-subsection-profileHobby dl {
  width: 90%;
  margin: 0 auto;
}
main#about section.pf-p-about__profile article.pf-p-subsection-profileHobby dl dt {
  font-weight: bold;
  margin-top: 0.4rem;
}
main#about section.pf-p-about__profile article.pf-p-subsection-profileHobby dl dd {
  margin-top: 0.2rem;
}
main#about section.pf-p-about__skill {
  margin-top: 4rem;
}
main#about section.pf-p-about__skill div.pf-c-sectTitle {
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.5rem 2rem;
  margin: 0 auto;
}
main#about section.pf-p-about__skill div.pf-c-sectTitle .pf-c-sectTitle__jp, main#about section.pf-p-about__skill section.pf-p-about__career div.pf-c-sectTitle h4.pf-c-sectTitle__jp, main#about section.pf-p-about__career section.pf-p-about__skill div.pf-c-sectTitle h4.pf-c-sectTitle__jp {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}
main#about section.pf-p-about__skill div.pf-c-sectTitle .pf-c-sectTitle__en, main#about section.pf-p-about__skill section.pf-p-about__career div.pf-c-sectTitle span.pf-c-sectTitle__en, main#about section.pf-p-about__career section.pf-p-about__skill div.pf-c-sectTitle span.pf-c-sectTitle__en {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}
main#about section.pf-p-about__skill article.pf-p-subsection-profileStrength {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
main#about section.pf-p-about__skill article.pf-p-subsection-profileStrength div.strength_3col {
  width: 80%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
main#about section.pf-p-about__skill article.pf-p-subsection-profileStrength div.strength_3col dl {
  margin-top: 2rem;
}
main#about section.pf-p-about__skill article.pf-p-subsection-profileStrength div.strength_3col dl dt {
  font-weight: bold;
  text-align: center;
}
main#about section.pf-p-about__skill article.pf-p-subsection-profileStrength div.strength_3col dl dd {
  width: 100%;
  margin-top: 2rem;
  line-height: 1.6;
}
main#about section.pf-p-about__skill article.pf-p-subsection-profileTools {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
main#about section.pf-p-about__skill article.pf-p-subsection-profileTools div.iconbox {
  width: 90%;
  margin: 0 auto;
}
main#about section.pf-p-about__skill article.pf-p-subsection-profileTools div.iconbox ul {
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0.8rem;
}
main#about section.pf-p-about__skill article.pf-p-subsection-profileOthers {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
main#about section.pf-p-about__skill article.pf-p-subsection-profileOthers div.iconbox {
  width: 90%;
  margin: 0 auto;
}
main#about section.pf-p-about__skill article.pf-p-subsection-profileOthers div.iconbox ul {
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}
main#about section.pf-p-about__career {
  margin-top: 4rem;
}
main#about section.pf-p-about__career div.pf-c-sectTitle {
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.5rem 2rem;
  margin: 0 auto;
}
main#about section.pf-p-about__career div.pf-c-sectTitle h4.pf-c-sectTitle__jp {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}
main#about section.pf-p-about__career div.pf-c-sectTitle span.pf-c-sectTitle__en {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}
main#about section.pf-p-about__career article.pf-p-subsection-profileHistory {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
main#about section.pf-p-about__career article.pf-p-subsection-profileHistory div.history_2col {
  width: 90%;
  margin: 0 auto;
}
main#about section.pf-p-about__career article.pf-p-subsection-profileHistory div.history_2col dl {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(8 1fr);
  gap: 0.8rem;
  font-family: "rounded mplus 1c", sans-serif;
}
main#about section.pf-p-about__career article.pf-p-subsection-profileHistory div.history_2col dl dt {
  font-weight: bold;
}
main#about section.pf-p-about__career article.pf-p-subsection-profileHistory div.history_2col dl dd {
  text-wrap: pretty;
}
main#about section.pf-p-about__career article.pf-p-subsection-profileHistory div.history_2col img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: none;
}
main#about section.pf-p-about__career article.pf-p-subsection-profileReason {
  margin-top: 2rem auto 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
main#about section.pf-p-about__career article.pf-p-subsection-profileReason div.reason_textcontent {
  width: 90%;
  margin: 0 auto;
  font-family: "rounded mplus 1c", sans-serif;
}
main#about section.pf-p-about__career article.pf-p-subsection-profileVision {
  margin-top: 2rem auto 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
main#about section.pf-p-about__career article.pf-p-subsection-profileVision div.vision_textcontent {
  width: 90%;
  margin: 0 auto;
}
main#about aside.lastword {
  width: 80%;
  margin: 4rem auto;
  font-weight: bold;
  text-align: start;
  text-wrap: pretty;
}

@media screen and (min-width: 768px) {
  main#about {
    max-width: 1200px;
  }
  main#about section.pf-l-about__KV div.pf-p-about__imgContainer {
    max-width: 96rem;
    max-height: auto;
  }
  main#about section.pf-l-about__KV div.pf-p-about__imgContainer div.KV_slick-slider {
    width: 80%;
  }
  main#about section.pf-l-about__KV div.pf-p-about__imgContainer div.KV_slick-slider div.pf-p-about_slide img {
    aspect-ratio: 2/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
  main#about section.pf-l-about__KV div.pf-p-introtext {
    margin-top: 8rem;
  }
  main#about section.pf-l-about__KV div.pf-p-introtext p {
    font-size: 1.8rem;
    line-height: 2rem;
    text-align: center;
  }
  main#about section.pf-l-about__KV div.pf-p-introtext strong {
    display: block;
    margin-top: 4rem;
    font-size: 1.8rem;
    line-height: 2rem;
    text-align: center;
  }
  main#about nav.pf-p-about__navMenu {
    top: 0;
  }
  main#about nav.pf-p-about__navMenu div.pf-clickcontainer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
  }
  main#about nav.pf-p-about__navMenu div.pf-clickcontainer strong.pf-clickanounce {
    font-family: "patrick hand", cursive;
    font-size: 1.6rem;
    background-color: hsl(210, 11.1111111111%, 91%);
    padding: 1rem 2rem;
    border-radius: 9999px;
    white-space: nowrap;
    text-align: center;
  }
  main#about nav.pf-p-about__navMenu ul.pf-p-about__navMenuList {
    display: flex;
    width: 40%;
    margin: 4rem auto 0 auto;
  }
  main#about div.pf-p-about__content section.pf-p-about__profile {
    border-radius: 8px;
    margin-top: 0;
    background-color: hsl(34, 23.0769230769%, 93.5%);
  }
  main#about div.pf-p-about__content section.pf-p-about__profile article.pf-p-subsection-profileProfile {
    margin-top: 4rem;
  }
  main#about div.pf-p-about__content section.pf-p-about__profile article.pf-p-subsection-profileProfile div.pf-p-about__subsectionflex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    gap: 2rem;
    width: 80%;
  }
  main#about div.pf-p-about__content section.pf-p-about__profile article.pf-p-subsection-profileProfile div.pf-p-about__subsectionflex p {
    font-size: 1.6rem;
  }
  main#about div.pf-p-about__content section.pf-p-about__profile article.pf-p-subsection-profileLike {
    margin-top: 4rem;
  }
  main#about div.pf-p-about__content section.pf-p-about__profile article.pf-p-subsection-profileLike div.pf-p-about__subsectionflex {
    display: flex;
    flex-direction: row-reverse;
    gap: 2rem;
    width: 80%;
  }
  main#about div.pf-p-about__content section.pf-p-about__profile article.pf-p-subsection-profileLike div.pf-p-about__subsectionflex div.slider-1col {
    width: 50%;
  }
  main#about div.pf-p-about__content section.pf-p-about__profile article.pf-p-subsection-profileLike div.pf-p-about__subsectionflex div.slider-1col div.like_slick-slider {
    width: 100%;
  }
  main#about div.pf-p-about__content section.pf-p-about__profile article.pf-p-subsection-profileLike div.pf-p-about__subsectionflex div.slider-1col div.like_slick-slider img {
    width: 100%;
    aspect-ratio: 4/3;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 8px;
  }
  main#about div.pf-p-about__content section.pf-p-about__profile article.pf-p-subsection-profileLike div.pf-p-about__subsectionflex div.slider-1col div.like_slick-slider .slick-prev,
  main#about div.pf-p-about__content section.pf-p-about__profile article.pf-p-subsection-profileLike div.pf-p-about__subsectionflex div.slider-1col div.like_slick-slider .slick-next {
    z-index: 10;
    width: 50px;
    height: 50px;
  }
  main#about div.pf-p-about__content section.pf-p-about__profile article.pf-p-subsection-profileLike div.pf-p-about__subsectionflex div.slider-1col div.like_slick-slider .slick-prev:before,
  main#about div.pf-p-about__content section.pf-p-about__profile article.pf-p-subsection-profileLike div.pf-p-about__subsectionflex div.slider-1col div.like_slick-slider .slick-next:before {
    font-size: 24px;
    color: hsl(210, 79.5918367347%, 49%);
  }
  main#about div.pf-p-about__content section.pf-p-about__profile article.pf-p-subsection-profileLike div.pf-p-about__subsectionflex div.slider-1col div.like_slick-slider .slick-prev {
    left: -30px;
  }
  main#about div.pf-p-about__content section.pf-p-about__profile article.pf-p-subsection-profileLike div.pf-p-about__subsectionflex div.slider-1col div.like_slick-slider .slick-next {
    right: -30px;
  }
  main#about div.pf-p-about__content section.pf-p-about__profile article.pf-p-subsection-profileLike div.pf-p-about__subsectionflex div.slider-1col div.like_slick-slider .slick-dots {
    bottom: -50px;
  }
  main#about div.pf-p-about__content section.pf-p-about__profile article.pf-p-subsection-profileLike div.pf-p-about__subsectionflex div.slider-1col div.like_slick-slider .slick-dots li button:before {
    color: hsl(210, 79.5918367347%, 49%);
    font-size: 14px;
  }
  main#about div.pf-p-about__content section.pf-p-about__profile article.pf-p-subsection-profileLike div.pf-p-about__subsectionflex div.slider-1col div.like_slick-slider .slick-dots li.slick-active button:before {
    color: hsl(210, 79.5918367347%, 49%);
  }
  main#about div.pf-p-about__content section.pf-p-about__profile article.pf-p-subsection-profileLike div.pf-p-about__subsectionflex dl.like_textContent {
    width: 50%;
  }
  main#about div.pf-p-about__content section.pf-p-about__profile article.pf-p-subsection-profileHobby {
    margin-top: 4rem;
    margin-bottom: 8rem;
  }
  main#about div.pf-p-about__content section.pf-p-about__profile article.pf-p-subsection-profileHobby dl.pf-p__about__hobbygrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 1fr);
    width: 80%;
    margin: 0 auto;
    gap: 2rem;
  }
  main#about div.pf-p-about__content section.pf-p-about__profile article.pf-p-subsection-profileHobby dl.pf-p__about__hobbygrid div {
    width: auto;
    place-items: center;
  }
  main#about div.pf-p-about__content section.pf-p-about__profile article.pf-p-subsection-profileHobby dl.pf-p__about__hobbygrid div dt {
    width: 100%;
  }
  main#about div.pf-p-about__content section.pf-p-about__profile article.pf-p-subsection-profileHobby dl.pf-p__about__hobbygrid div dd {
    width: 100%;
  }
  main#about div.pf-p-about__content section.pf-p-about__skill {
    border-radius: 8px;
    background-color: hsl(34, 23.0769230769%, 93.5%);
    padding-top: 4rem;
  }
  main#about div.pf-p-about__content section.pf-p-about__skill article.pf-p-subsection-profileStrength {
    margin-top: 4rem;
  }
  main#about div.pf-p-about__content section.pf-p-about__skill article.pf-p-subsection-profileStrength div.strength_3col {
    width: 70%;
    margin: 0 auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  main#about div.pf-p-about__content section.pf-p-about__skill article.pf-p-subsection-profileStrength div.strength_3col dl {
    background-color: hsl(210, 55.5555555556%, 77.5%);
    margin-top: 0;
    padding: 1.6rem;
    border-radius: 8px;
  }
  main#about div.pf-p-about__content section.pf-p-about__skill article.pf-p-subsection-profileStrength div.strength_3col dl dt {
    text-align: center;
    text-decoration: underline;
  }
  main#about div.pf-p-about__content section.pf-p-about__skill article.pf-p-subsection-profileStrength div.strength_3col dl dd {
    width: 100%;
    margin-top: 1rem;
  }
  main#about div.pf-p-about__content section.pf-p-about__skill article.pf-p-subsection-profileTools {
    margin-top: 4rem;
  }
  main#about div.pf-p-about__content section.pf-p-about__skill article.pf-p-subsection-profileTools div.iconbox {
    width: 50%;
    margin: 0 auto;
  }
  main#about div.pf-p-about__content section.pf-p-about__skill article.pf-p-subsection-profileTools div.iconbox ul {
    gap: 2rem;
  }
  main#about div.pf-p-about__content section.pf-p-about__skill article.pf-p-subsection-profileOthers {
    margin-top: 4rem;
    margin-bottom: 8rem;
  }
  main#about div.pf-p-about__content section.pf-p-about__skill article.pf-p-subsection-profileOthers div.iconbox {
    width: 50%;
    margin: 0 auto;
  }
  main#about div.pf-p-about__content section.pf-p-about__skill article.pf-p-subsection-profileOthers div.iconbox ul {
    gap: 2rem;
  }
  main#about div.pf-p-about__content section.pf-p-about__career {
    border-radius: 8px;
    background-color: hsl(34, 23.0769230769%, 93.5%);
    padding-top: 4rem;
  }
  main#about div.pf-p-about__content section.pf-p-about__career article.pf-p-subsection-profileHistory {
    margin-top: 4rem;
  }
  main#about div.pf-p-about__content section.pf-p-about__career article.pf-p-subsection-profileHistory div.history_2col {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 2rem;
    width: 70%;
    margin: 0 auto;
  }
  main#about div.pf-p-about__content section.pf-p-about__career article.pf-p-subsection-profileHistory div.history_2col dl {
    width: 50%;
  }
  main#about div.pf-p-about__content section.pf-p-about__career article.pf-p-subsection-profileHistory div.history_2col img {
    display: block;
    width: 50%;
  }
  main#about div.pf-p-about__content section.pf-p-about__career article.pf-p-subsection-profileReason {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 70%;
    margin: 4rem auto 0 auto;
  }
  main#about div.pf-p-about__content section.pf-p-about__career article.pf-p-subsection-profileReason div.reason_textcontent {
    width: 100%;
  }
  main#about div.pf-p-about__content section.pf-p-about__career article.pf-p-subsection-profileVision {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 70%;
    margin: 4rem auto 8rem auto;
  }
  main#about div.pf-p-about__content section.pf-p-about__career article.pf-p-subsection-profileVision div.vision_textcontent {
    margin-top: 0;
    width: 100%;
  }
  main#about aside.lastword {
    display: block;
    margin-top: 2rem;
    text-align: center;
  }
}
main#omake {
  max-width: 1200px;
  min-height: 100vh;
}
main#omake section.l-container {
  width: 90%;
  text-align: center;
  padding: 3rem 1rem;
  margin: 0 auto;
}
main#omake section.l-container h3 {
  font-weight: bolder;
  color: #333;
  text-align: center;
}
main#omake section.l-container p {
  text-align: center;
}
main#omake section.l-container div.bgimg {
  width: 100%;
  background-image: url(../img/whitepaper.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
main#omake section.l-container div.bgimg div.output {
  margin-top: 2rem;
  font-size: 1.4rem;
  line-height: 2rem;
  min-height: 5rem;
  white-space: pre-wrap;
  color: #333;
  text-align: center;
}
main#omake section.l-container div.bgimg div#message {
  font-family: "sawarabi gothic", sans-serif;
  margin-top: 2rem;
  font-size: 1.6rem;
  font-weight: bolder;
  color: hsl(210, 79.5918367347%, 49%);
  text-align: center;
}/*# sourceMappingURL=app.css.map */