@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900");
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kurenaido&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DotGothic16&display=swap");
/*============================================================
/ Layout
=========================================================== */
/*--------------------------------------------
▼ base
--------------------------------------------*/
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  display: none;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}
@media screen and (max-width: 1366px) {
  html {
    font-size: 0.73vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 1.8vw;
  }
}

body {
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  overflow-wrap: break-word;
  word-break: break-all;
  color: #1A1A1A;
  background: #ffffff;
  font-feature-settings: "palt";
}

a {
  color: #1A1A1A;
  transition: opacity 0.4s;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

.container {
  width: 100%;
  max-width: calc(1280px + 6rem);
  margin: 0 auto;
  padding: 0 3rem;
}

.none {
  display: none;
}

@media screen and (max-width: 768px) {
  .disp-pc {
    display: none;
  }
}
.disp-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .disp-sp {
    display: block;
  }
}

/*--------------------------------------------
▼ header
--------------------------------------------*/
.header {
  position: fixed;
  top: 45%;
  right: -2rem;
  opacity: 0;
  transform: translateY(-45%);
  transition: right 0.5s, opacity 0.5s;
  pointer-events: none;
  z-index: 1;
  font-family: "Jost", sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: #1A1A1A;
}
@media screen and (max-width: 768px) {
  .header {
    display: none;
  }
}
.header.--active {
  right: 2rem;
  opacity: 1;
  pointer-events: all;
}
.header.--white a {
  color: #fff;
}
.header__nav {
  text-align: right;
  letter-spacing: 0.1rem;
}
.header__nav__item a {
  display: inline-block;
  line-height: 1.2;
  padding: 1rem 0;
  transition: all 0.5s;
}
.header__nav__item a.--current {
  font-size: 4rem;
  padding: 0;
  cursor: default;
  pointer-events: none;
}

/*--------------------------------------------
▼ footer
--------------------------------------------*/
footer {
  position: fixed;
  right: 2rem;
  bottom: 0;
  transition: color 0.5s;
  font-family: "Jost", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #1A1A1A;
}
footer.--white {
  color: #fff;
}

/*============================================================
/ Object
=========================================================== */
/* Component ------------------------------- */
/*--------------------------------------------
▼ bento
--------------------------------------------*/
.bento {
  display: grid;
  grid-template-columns: 60% 20% 20%;
  grid-template-rows: 50% 25% 25%;
  justify-content: center;
  align-content: center;
  gap: 1.5rem;
  width: 100%;
  height: 100%;
  padding: 3rem;
  background-color: #e5dacb;
  font-size: 2rem;
  font-weight: 700;
  color: transparent;
}
@media screen and (max-width: 768px) {
  .bento {
    grid-template-columns: 50% 25% 25%;
    grid-template-rows: 50% 25% 25%;
  }
}
.bento a {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 1rem 1.5rem;
  border-radius: 3rem;
  overflow: hidden;
}
.bento a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.35s ease;
  z-index: 1;
}
.bento a p {
  position: relative;
  z-index: 2;
}
.bento a:nth-child(1) {
  grid-column: 1/2;
  grid-row: 1/4;
  font-size: 2.5rem;
  padding: 1rem 2rem;
}
@media screen and (max-width: 768px) {
  .bento a:nth-child(1) {
    grid-column: 1/4;
    grid-row: 1/2;
  }
}
.bento a:nth-child(1)::after {
  background-image: url("../images/fv-1.png");
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  animation: 15s infinite 3s eyes;
}
.bento a:nth-child(2) {
  grid-column: 2/4;
  grid-row: 1/2;
  font-size: 2.5rem;
  padding: 1rem 2rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .bento a:nth-child(2) {
    grid-column: 1/2;
    grid-row: 2/4;
  }
}
.bento a:nth-child(2)::after {
  background-image: url("../images/fv-2.png");
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
}
.bento a:nth-child(3) {
  grid-column: 2/3;
  grid-row: 2/4;
  font-size: 2.5rem;
  padding: 1rem 2rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .bento a:nth-child(3) {
    grid-column: 2/4;
    grid-row: 2/3;
  }
}
.bento a:nth-child(3)::after {
  background-image: url("../images/fv-3.png");
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
}
.bento a:nth-child(4) {
  grid-column: 3/4;
  grid-row: 2/3;
  color: #fff;
  background-color: #000;
  background-image: url("../images/GitHub_Invertocat_Black.png");
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .bento a:nth-child(4) {
    grid-column: 2/3;
    grid-row: 3/4;
  }
}
.bento a:nth-child(5) {
  grid-column: 3/4;
  grid-row: 3/4;
  background-color: #fff;
  background-image: url("../images/fv-5.png");
  background-size: contain;
  background-position: right -1rem bottom -2rem;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .bento a:nth-child(5) {
    grid-column: 3/4;
    grid-row: 3/4;
    font-size: 1.5rem;
  }
}
.bento a:nth-child(1):hover::after, .bento a:nth-child(2):hover::after, .bento a:nth-child(3):hover::after {
  scale: 1.1;
}
.bento a:nth-child(4), .bento a:nth-child(5) {
  opacity: 1;
}
.bento a:nth-child(4)::before, .bento a:nth-child(5)::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  transition: cubic-bezier(0.32, 0, 0.67, 0);
}
.bento a:nth-child(4):hover::before, .bento a:nth-child(5):hover::before {
  animation: kiran 0.6s linear;
}

/* ボタンがキランッ */
@keyframes kiran {
  0% {
    transform: scale(2) rotate(45deg);
    opacity: 0;
  }
  20% {
    transform: scale(20) rotate(45deg);
    opacity: 0.6;
  }
  40% {
    transform: scale(30) rotate(45deg);
    opacity: 0.4;
  }
  80% {
    transform: scale(45) rotate(45deg);
    opacity: 0.2;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
/* 視線移動 */
@keyframes eyes {
  0% {
    background-position: left center;
  }
  25% {
    background-position: left -2rem center;
  }
  50% {
    background-position: left -3rem center;
  }
  100% {
    background-position: left center;
  }
}
/*--------------------------------------------
▼ button
--------------------------------------------*/
.button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 8rem;
  font-size: 1.4rem;
  text-align: center;
  padding: 0.7rem 1.5rem;
  transition: scale 0.1s;
}
.button:active {
  transform: scale(0.96);
}
.button.--basic {
  color: #fff;
  background-color: #fff;
  border: 1px solid #fff;
  clip-path: polygon(0% 5px, 5px 0%, calc(100% - 5px) 0%, 100% 5px, 100% calc(100% - 5px), calc(100% - 5px) 100%, 5px 100%, 0% calc(100% - 5px));
}
.button.--solid {
  position: relative;
  color: #eadbbb;
  background-color: #202020;
}
.button.--solid::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #eadbbb;
  clip-path: polygon(0 5px, 5px 0, calc(100% - 5px) 0, 100% 5px, 100% calc(100% - 5px), calc(100% - 5px) 100%, 5px 100%, 0 calc(100% - 5px), 0 5px, 1px 5px, 1px calc(100% - 5px), 5px calc(100% - 1px), calc(100% - 5px) calc(100% - 1px), calc(100% - 1px) calc(100% - 5px), calc(100% - 1px) 5px, calc(100% - 5px) 1px, 5px 1px, 1px 5px);
}
.button.--solid:hover {
  background-color: #414343;
  clip-path: polygon(0% 5px, 5px 0%, calc(100% - 5px) 0%, 100% 5px, 100% calc(100% - 5px), calc(100% - 5px) 100%, 5px 100%, 0% calc(100% - 5px));
}
.button.--solid.--active {
  color: #4b3d2f;
  background-color: #eadbbb;
  clip-path: polygon(0% 5px, 5px 0%, calc(100% - 5px) 0%, 100% 5px, 100% calc(100% - 5px), calc(100% - 5px) 100%, 5px 100%, 0% calc(100% - 5px));
  cursor: default;
}
.button.--solid.--active::after {
  content: none;
}

/*--------------------------------------------
▼ Chart
--------------------------------------------*/
.chart.--bar {
  width: 50rem;
  padding: 2rem 0 5rem;
}
@media screen and (max-width: 768px) {
  .chart.--bar {
    width: 100%;
  }
}
.chart.--bar .chart__title {
  font-family: "Jost", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #1A1A1A;
  margin-bottom: 2.5rem;
}
.chart.--bar .chart__table {
  position: relative;
  width: 100%;
}
.chart.--bar .chart__label {
  width: 13rem;
  font-size: 1.2rem;
  text-align: right;
  line-height: 1.2;
  letter-spacing: 0.02rem;
  word-break: auto-phrase;
  color: #1A1A1A;
  padding-right: 2rem;
  vertical-align: middle;
}
.chart.--bar .chart__body {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.chart.--bar .chart__body::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% + 0.8rem);
  height: 1px;
  background-color: #999;
}
.chart.--bar .chart__body.--last::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(100% + 0.8rem);
  height: 1px;
  background-color: #999;
}
.chart.--bar .chart__body__bar {
  width: 0%;
  height: 2.5rem;
  margin: 0.8rem 0;
  border: 1px solid;
  transition: width 1s ease-in-out;
  z-index: 2;
}
.chart.--bar .chart__line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 13rem;
  pointer-events: none;
}
.chart.--bar .chart__line__vertical {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #999;
  z-index: 1;
}
.chart.--bar .chart__line__label {
  position: absolute;
  top: -2.3rem;
  font-size: 1.1rem;
  text-align: center;
  color: #1A1A1A;
  transform: translateX(-50%);
}
.chart.--bar .is-commentable {
  cursor: pointer;
  transition: opacity 0.2s;
}
.chart.--bar .is-commentable:hover .chart__label {
  opacity: 0.7;
}
.chart.--bar .is-commentable:hover .chart__body__bar {
  opacity: 0.5;
}
.chart.--bar .is-commentable:hover:is(.is-active) .chart__label {
  opacity: 1;
}
.chart.--bar .is-commentable:hover:is(.is-active) .chart__body__bar {
  opacity: 1;
}
.chart.--bar .is-commentable.is-active {
  position: relative;
  background-color: rgba(255, 255, 255, 0.4);
}
.chart.--bar .is-commentable.is-active::after {
  content: url("/assets/images/thumbtack-solid.svg");
  position: absolute;
  top: -0.2rem;
  left: -0.3rem;
  display: block;
  width: 1.5rem;
  rotate: 343deg;
}

/*--------------------------------------------
▼ filter
--------------------------------------------*/
.record-filter {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  transition: transform 0.3s ease;
  transform: translateX(-35rem);
}
.record-filter__header {
  position: absolute;
  top: 3vh;
  left: 35rem;
  transform: translateX(0);
}
.record-filter__header button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6rem;
  height: 6rem;
}
.record-filter__header svg {
  height: 3.3rem;
}
.record-filter__toggle {
  margin-bottom: 1rem;
  background-color: #ffd400;
}
.record-filter__reset {
  background-color: #6ec3ff;
}
.record-filter__panel {
  width: 35rem;
  height: 100vh;
  padding: 2rem;
  color: #1A1A1A;
  background-color: #fff;
  overflow-y: auto;
}
.record-filter__group-title {
  font-weight: 500;
  margin-top: 3rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .record-filter__group-title {
    font-size: 2rem;
  }
}
.record-filter__options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-weight: 300;
}
.record-filter__option {
  cursor: pointer;
}
.record-filter__option input {
  display: none;
}
.record-filter__option span {
  display: inline-block;
  font-size: 1.4rem;
  padding: 0.3rem 0.7rem;
  color: #fff;
  background-color: #1A1A1A;
  border-radius: 1rem;
  transition: background-color ease 0.1s;
}
@media screen and (max-width: 768px) {
  .record-filter__option span {
    font-size: 1.5rem;
  }
}
.record-filter__option span:hover {
  background: rgba(26, 26, 26, 0.5);
}
.record-filter__option input:checked + span {
  background: #3a8f5c;
}
.record-filter.is-open {
  transform: translateX(0);
}

/*--------------------------------------------
▼ Heading
--------------------------------------------*/
.h__index {
  display: none;
}
.h__midashi.--section {
  display: none;
}

/*--------------------------------------------
▼ prfbook
--------------------------------------------*/
.prfbook {
  width: 50rem;
  height: 70rem;
}
.prfbook:hover .prfbook__card {
  transform: scale(1.1);
}
.prfbook__front, .prfbook__back {
  display: block;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.prfbook__front {
  position: relative;
}
.prfbook__back {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  transform: rotateY(180deg);
}
.prfbook__piece {
  position: relative;
}
.prfbook__card {
  font-family: "Noto Sans JP", serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #1A1A1A;
  width: 100%;
  height: 100%;
  letter-spacing: 0.01rem;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.prfbook__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -4rem;
  display: block;
  width: 4rem;
  height: 42rem;
  background-color: yellow;
}
.prfbook__card::after {
  font-size: 2rem;
  font-weight: 300;
  color: transparent;
  content: "●　●　●　●　●　●";
  position: absolute;
  top: 0;
  left: -3.5rem;
  display: block;
  width: 3.5rem;
  height: 42rem;
  line-height: 2.8;
  padding: 3.5rem 0.6rem;
  -webkit-background-clip: text;
  background-image: url("../images/wood.jpg");
}
.prfbook__card.--basic {
  background-image: url("../images/2199019.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0 2rem 2rem 2rem;
  padding: 2rem 2rem 2rem 1.8rem;
  color: #22b19e;
}
.prfbook__card.--basic::before {
  left: -4rem;
  background-color: #76c1a2;
  border-radius: 2rem 0 0 2rem;
}
.prfbook__card.--basic::after {
  left: -3.5rem;
}
.prfbook__card.--basic .--input {
  font-family: "Zen Kurenaido", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #6b6b6b;
  position: relative;
  display: inline-block;
  margin: 0 0.3rem;
  padding: 0 0.5rem;
}
.prfbook__card.--basic .--input::after {
  content: "";
  position: absolute;
  top: 0.3rem;
  left: 0;
  display: block;
  width: 100%;
  height: 2.3rem;
  background-color: #fff;
  border-radius: 0.5rem;
  z-index: -1;
}
.prfbook__card.--basic .--check {
  position: relative;
}
.prfbook__card.--basic .--check::after {
  content: "";
  position: absolute;
  top: -0.1rem;
  left: -0.5rem;
  display: block;
  width: 120%;
  height: 120%;
  border: solid 2px #999;
  border-radius: 1rem 3rem/2rem 1rem;
}
.prfbook__card.--basic .prfbook__piece__title {
  font-size: 2.3rem;
  font-weight: 900;
  color: #0f9b8f;
}
.prfbook__card.--basic .prfbook__piece__title.--normal {
  font-size: 2.1rem;
}
.prfbook__card.--basic .prfbook__piece__title.--huti {
  position: relative;
  text-shadow: 3px 3px 0px #fff, -3px -3px 0px #fff, -3px 3px 0px #fff, 3px -3px 0px #fff, 3px 0px 0px #fff, -3px 0px 0px #fff, 0px 3px 0px #fff, 0px -3px 0px #fff;
}
.prfbook__card.--basic .prfbook__piece__title.--huti.--shadow::after {
  content: "MY PROFILE";
  position: absolute;
  top: 0;
  left: 0;
  text-shadow: 0 0 12px #007d49;
  z-index: -1;
}
.prfbook__card.--basic .prfbook__piece__title.--nuki {
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 5px #1b959b;
}
.prfbook__card.--basic .prfbook__piece__title.--small {
  font-size: 1.6rem;
  letter-spacing: -0.05rem;
  margin: -1rem 0 0.8rem -1rem;
  text-shadow: 0 0 4px #018187;
  transform: rotate(-3deg);
}
.prfbook__card.--basic .prfbook__piece__date {
  position: absolute;
  top: 1.2rem;
  right: 2rem;
}
.prfbook__card.--basic .prfbook__piece__date .--input::after {
  top: -0.1rem;
}
.prfbook__card.--basic .prfbook__piece__desc {
  position: relative;
  display: flex;
  margin: 0.45rem 0 1rem;
  padding: 0.7rem 1.2rem;
  color: #097e74;
  background-color: rgba(255, 255, 255, 0.5);
}
.prfbook__card.--basic .prfbook__piece__desc__left {
  height: 15.3rem;
  line-height: 2.3;
  letter-spacing: 0.02rem;
  word-break: auto-phrase;
  padding-right: 11rem;
}
.prfbook__card.--basic .prfbook__piece__desc__left .--input::after {
  box-shadow: 2px 2px 0 #8abdb4;
}
.prfbook__card.--basic .prfbook__piece__desc__right {
  position: absolute;
  top: 0.2rem;
  right: -0.8rem;
  width: 13rem;
  height: 17rem;
  font-size: 1rem;
  text-align: center;
  background-color: #fff;
  border: 2px solid #ccc;
  transform: rotate(6deg);
}
.prfbook__card.--basic .prfbook__piece__desc__right .--input {
  font-size: 1.1rem;
}
.prfbook__card.--basic .prfbook__piece__desc__right .--input::after {
  left: -0.3rem;
  width: 10.5rem;
  height: 1.5rem;
  background-color: #b1f7d7;
  opacity: 0.5;
}
.prfbook__card.--basic .prfbook__piece__desc__right__image {
  margin: 1rem 0.5rem 0;
  height: 10.5rem;
  background-color: #dddad7;
}
.prfbook__card.--basic .prfbook__piece__desc__right__image img {
  height: 100%;
  margin-top: -2rem;
  rotate: -5deg;
}
.prfbook__card.--basic .prfbook__piece__question__list {
  display: flex;
  flex-wrap: wrap;
  margin-left: 1rem;
}
.prfbook__card.--basic .prfbook__piece__question__list dt {
  width: 17rem;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05rem;
}
.prfbook__card.--basic .prfbook__piece__question__list dt:nth-of-type(1) {
  color: #6ea96b;
}
.prfbook__card.--basic .prfbook__piece__question__list dt:nth-of-type(2) {
  color: #26735b;
}
.prfbook__card.--basic .prfbook__piece__question__list dt:nth-of-type(3) {
  color: #6b98b9;
}
.prfbook__card.--basic .prfbook__piece__question__list dd {
  font-family: "Zen Kurenaido", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #6b6b6b;
  width: calc(100% - 17rem);
  line-height: 1.25;
  margin-bottom: 0.4rem;
  padding: 0 1.2rem;
  border: 2px solid #fff;
  border-radius: 0.8rem;
}
.prfbook__card.--basic .prfbook__piece__question__list dd:nth-of-type(1) {
  background-color: #edf9ea;
}
.prfbook__card.--basic .prfbook__piece__question__list dd:nth-of-type(2) {
  background-color: #c5ebe0;
}
.prfbook__card.--basic .prfbook__piece__question__list dd:nth-of-type(3) {
  background-color: #cbeff9;
}
.prfbook__card.--basic .prfbook__piece__favorite__list {
  display: flex;
  flex-wrap: wrap;
}
.prfbook__card.--basic .prfbook__piece__favorite__list__cell {
  width: 25%;
  margin-top: -0.8rem;
  padding: 0 0.3rem;
}
.prfbook__card.--basic .prfbook__piece__favorite__list__cell dt {
  position: relative;
  top: 0.8rem;
  left: 0.5rem;
  font-weight: 500;
  color: #179495;
  text-shadow: 2px 2px 0px #fff, -2px -2px 0px #fff, -2px 2px 0px #fff, 2px -2px 0px #fff, 2px 0px 0px #fff, -2px 0px 0px #fff, 0px 2px 0px #fff, 0px -2px 0px #fff;
}
.prfbook__card.--basic .prfbook__piece__favorite__list__cell dd {
  font-family: "Zen Kurenaido", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #6b6b6b;
  height: 2.98rem;
  text-align: center;
  padding: 0.7rem 0.7rem 0.2rem;
  background-color: #fff;
  border-radius: 0 1.5rem 0 0;
}
.prfbook__card.--basic .prfbook__piece__which {
  position: relative;
  margin-top: 2rem;
  padding: 0.7rem 0 1.2rem;
  color: #186a6b;
}
.prfbook__card.--basic .prfbook__piece__which::after {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #feffeb;
  border: 3px double #0fc7a5;
  z-index: -1;
}
.prfbook__card.--basic .prfbook__piece__which .prfbook__piece__title {
  line-height: 1.4;
  text-align: center;
  margin: -2rem 0 0.2rem;
  color: #7acdbf;
}
.prfbook__card.--basic .prfbook__piece__which__row {
  line-height: 1.9;
  margin: 0 1.5rem;
}
.prfbook__card.--basic .prfbook__piece__which__row .--input {
  left: -0.8rem;
}
.prfbook__card.--basic .prfbook__piece__which__row .--input::after {
  background-color: initial;
  z-index: 0;
}
.prfbook__card.--basic .prfbook__piece__which__row .--input .--check {
  margin-left: 0.3rem;
  padding: 0.1rem;
}
.prfbook__card.--basic .prfbook__piece__which__row .--input .--check::after {
  border-radius: 3rem 2rem 4rem/2.5rem;
}
.prfbook__card.--basic .prfbook__piece__marumaru {
  flex: 1;
  margin: 1rem 0 0 0.3rem;
}
.prfbook__card.--basic .prfbook__piece__marumaru .prfbook__piece__title {
  position: relative;
  font-size: 1.6rem;
  text-align: center;
  color: #47ada9;
}
.prfbook__card.--basic .prfbook__piece__marumaru .prfbook__piece__title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 50%;
  height: 4rem;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  transform: translateX(-50%);
  filter: blur(5px);
  z-index: -1;
}
.prfbook__card.--basic .prfbook__piece__marumaru .prfbook__piece__title span {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
}
.prfbook__card.--basic .prfbook__piece__marumaru__list {
  display: flex;
  width: 100%;
  height: 15rem;
}
.prfbook__card.--basic .prfbook__piece__marumaru__content {
  font-family: "Zen Kurenaido", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #6b6b6b;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8rem;
  height: 8rem;
  text-align: center;
  padding-left: 1rem;
}
.prfbook__card.--basic .prfbook__piece__marumaru__content::before {
  content: "";
  position: absolute;
  display: block;
  width: 9rem;
  height: 9rem;
  background-color: #fff;
  clip-path: polygon(50% 0%, 66% 29%, 98% 35%, 79% 60%, 79% 91%, 50% 80%, 21% 91%, 21% 60%, 2% 35%, 31% 29%);
  z-index: -1;
}
.prfbook__card.--basic .prfbook__piece__marumaru__content::after {
  content: "";
  position: absolute;
  display: block;
  width: 7.5rem;
  height: 7.5rem;
  background-color: #fff6c5;
  clip-path: polygon(50% 0%, 66% 29%, 98% 35%, 79% 60%, 79% 91%, 50% 80%, 21% 91%, 21% 60%, 2% 35%, 31% 29%);
  z-index: -1;
}
.prfbook__card.--basic .prfbook__piece__marumaru__content:nth-of-type(1)::before, .prfbook__card.--basic .prfbook__piece__marumaru__content:nth-of-type(1)::after {
  transform: rotate(-5deg);
}
.prfbook__card.--basic .prfbook__piece__marumaru__content:nth-of-type(1) .prfbook__piece__marumaru__content__title {
  top: 1.5rem;
  right: -7rem;
}
.prfbook__card.--basic .prfbook__piece__marumaru__content:nth-of-type(1) .prfbook__piece__marumaru__content__title::before {
  border-width: 2.5rem 0 0 0;
  border-radius: 100% 0 0 0;
  transform: rotate(30deg);
}
.prfbook__card.--basic .prfbook__piece__marumaru__content:nth-of-type(1) .prfbook__piece__marumaru__content__title::after {
  left: 0.8rem;
  border-width: 2.5rem 0 0 0;
  border-radius: 100% 0 0 0;
  transform: rotate(23deg);
}
.prfbook__card.--basic .prfbook__piece__marumaru__content:nth-of-type(2) {
  align-self: flex-end;
  right: -0.3rem;
}
.prfbook__card.--basic .prfbook__piece__marumaru__content:nth-of-type(2)::before, .prfbook__card.--basic .prfbook__piece__marumaru__content:nth-of-type(2)::after {
  transform: rotate(10deg);
}
.prfbook__card.--basic .prfbook__piece__marumaru__content:nth-of-type(2) .prfbook__piece__marumaru__content__title {
  top: 2.5rem;
  left: -7rem;
}
.prfbook__card.--basic .prfbook__piece__marumaru__content:nth-of-type(2) .prfbook__piece__marumaru__content__title::before {
  border-width: 2.5rem 0 0 0;
  border-radius: 0 100% 0 0;
  transform: rotate(-35deg);
}
.prfbook__card.--basic .prfbook__piece__marumaru__content:nth-of-type(2) .prfbook__piece__marumaru__content__title::after {
  border-width: 2.5rem 0 0 0;
  border-radius: 0 100% 0 0;
  transform: rotate(332deg);
}
.prfbook__card.--basic .prfbook__piece__marumaru__content__title {
  position: absolute;
  display: block;
  width: 8rem;
  height: 5rem;
  padding-top: 0.8rem;
}
.prfbook__card.--basic .prfbook__piece__marumaru__content__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 9rem;
  height: 7rem;
  border-color: #fff;
  border-style: solid;
  z-index: -1;
}
.prfbook__card.--basic .prfbook__piece__marumaru__content__title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 8rem;
  height: 5rem;
  border-color: rgba(255, 211, 227, 0.6);
  border-style: solid;
  z-index: -1;
}
.prfbook__card.--food {
  background-color: #eae9e5;
  border-radius: 0 3rem 3rem 3rem;
  padding: 0;
}
.prfbook__card.--food::before {
  left: -4.5rem;
  width: 4.7rem;
  height: 35rem;
  background: linear-gradient(180deg, #2d2932 0%, #2d2932 16.3%, #eae9e5 16.3%, #eae9e5 77.5%, transparent 77.5%, transparent 100%), url("../images/Solid256dot8_12.png"), #d3cebf;
  border-radius: 3rem 0 0 3rem;
  background-position: right bottom;
  background-size: 8rem;
}
.prfbook__card.--food::after {
  content: "●　●　●　●　●";
  top: 1rem;
  left: -4.2rem;
  width: 4rem;
  height: 35rem;
  font-size: 2.5rem;
  line-height: 2.3;
  padding: 2rem 0.7rem;
}
.prfbook__card.--food .--check {
  position: relative;
}
.prfbook__card.--food .--check::after {
  content: "";
  position: absolute;
  top: -0.1rem;
  left: -0.4rem;
  display: block;
  width: calc(100% + 0.8rem);
  height: 120%;
  border: solid 2px #999;
  border-radius: 1rem 2rem/2rem 1.5rem;
}
.prfbook__card.--food .prfbook__seal img {
  position: absolute;
  z-index: 9999;
}
.prfbook__card.--food .prfbook__seal img:nth-child(1) {
  top: 19rem;
  right: 0rem;
  width: 6rem;
}
.prfbook__card.--food .prfbook__seal img:nth-child(2) {
  top: 2.5rem;
  right: 15rem;
  width: 5.5rem;
}
.prfbook__card.--food .prfbook__seal img:nth-child(3) {
  top: 48rem;
  right: 0rem;
  width: 10rem;
}
.prfbook__card.--food .prfbook__seal img:nth-child(4) {
  top: 46rem;
  left: 18rem;
  width: 8rem;
}
.prfbook__card.--food .prfbook__seal img:nth-child(5) {
  top: 12rem;
  left: -1.8rem;
  width: 9rem;
  rotate: -20deg;
}
.prfbook__card.--food .prfbook__piece__title.--huti {
  font-size: 2.3rem;
  font-weight: 900;
  color: #eae9e5;
  padding: 1.5rem 2rem 0.5rem 1.8rem;
  background-color: #2d2932;
  border-radius: 0 3rem 0 0;
}
.prfbook__card.--food .prfbook__piece__title.--normal {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0.3rem 0 0.2rem 1.8rem;
}
.prfbook__card.--food .prfbook__piece__title.--ribbon {
  position: absolute;
  top: 0.3rem;
  left: -1.8rem;
  height: 2.5rem;
  text-align: center;
  box-sizing: border-box;
  z-index: 9999;
}
.prfbook__card.--food .prfbook__piece__title.--ribbon::before {
  content: "";
  position: absolute;
  width: 2rem;
  bottom: -0.6rem;
  left: -2.5rem;
  border: 1.2rem solid #795c4d;
  border-left-color: transparent;
  z-index: 9997;
}
.prfbook__card.--food .prfbook__piece__title.--ribbon::after {
  content: "";
  position: absolute;
  width: 2rem;
  bottom: -0.6rem;
  right: -0.5rem;
  border: 1.2rem solid #795c4d;
  border-right-color: transparent;
  z-index: 9997;
}
.prfbook__card.--food .prfbook__piece__title.--ribbon h4 {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0 1rem;
  line-height: 2.5rem;
  color: #FFF;
  background-color: #795c4d;
  border-radius: 0.3rem 0.3rem 0 0;
  z-index: 9998;
}
.prfbook__card.--food .prfbook__piece__title.--ribbon h4::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 0.6rem transparent;
  border-right: solid 1rem #614f3c;
}
.prfbook__card.--food .prfbook__piece__title.--ribbon h4::after {
  position: absolute;
  content: "";
  top: 100%;
  right: 0;
  border: none;
  border-bottom: solid 0.6rem transparent;
  border-left: solid 1rem #614f3c;
}
.prfbook__card.--food .prfbook__piece__name {
  position: absolute;
  top: 0.5rem;
  right: 2rem;
  width: 15rem;
  color: #eae9e5;
}
.prfbook__card.--food .prfbook__piece__name span {
  font-size: 0.9rem;
  font-weight: 400;
}
.prfbook__card.--food .prfbook__piece__name p {
  font-family: "Zen Kurenaido", serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #6b6b6b;
  line-height: 1.5;
  text-align: center;
  background-color: #eae9e5;
  border: 2px dotted #999;
}
.prfbook__card.--food .prfbook__piece__top3 {
  position: relative;
  margin: 0 2rem 0.3rem 3.3rem;
  padding: 1rem 1.5rem 0.5rem 1.5rem;
  background-color: #eae9e5;
  border: 4px double;
  border-radius: 0.7rem;
}
.prfbook__card.--food .prfbook__piece__top3 h4 {
  position: absolute;
  top: 0;
  left: -1rem;
}
.prfbook__card.--food .prfbook__piece__top3__row {
  display: flex;
  line-height: 2.7;
  border-bottom: 2px dotted #999;
}
.prfbook__card.--food .prfbook__piece__top3__row dt {
  width: 10rem;
  font-size: 1.4rem;
  text-align: center;
}
.prfbook__card.--food .prfbook__piece__top3__row dd {
  font-family: "Zen Kurenaido", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #6b6b6b;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: calc((100% - 10rem) / 3);
}
.prfbook__card.--food .prfbook__piece__top3__row dd:first-of-type {
  position: relative;
}
.prfbook__card.--food .prfbook__piece__top3__row dd:first-of-type::before {
  content: "1位";
  position: absolute;
  top: -0.8rem;
  left: 0;
  font-family: none;
  font-size: 1.1rem;
  font-weight: 400;
  color: #333;
}
.prfbook__card.--food .prfbook__piece__top3__row dd:nth-of-type(2) {
  position: relative;
}
.prfbook__card.--food .prfbook__piece__top3__row dd:nth-of-type(2)::before {
  content: "2位";
  position: absolute;
  top: -0.8rem;
  left: 0;
  font-family: none;
  font-size: 1.1rem;
  font-weight: 400;
  color: #333;
}
.prfbook__card.--food .prfbook__piece__top3__row dd:nth-of-type(3) {
  position: relative;
}
.prfbook__card.--food .prfbook__piece__top3__row dd:nth-of-type(3)::before {
  content: "3位";
  position: absolute;
  top: -0.8rem;
  left: 0;
  font-family: none;
  font-size: 1.1rem;
  font-weight: 400;
  color: #333;
}
.prfbook__card.--food .prfbook__piece__best {
  padding: 0 2rem 0.5rem 1.8rem;
  background-image: url("../images/Solid256dot8_12.png");
  background-size: 8rem;
  background-color: #d3cebf;
}
.prfbook__card.--food .prfbook__piece__best .--normal {
  padding: 0.5rem 0 0 0;
}
.prfbook__card.--food .prfbook__piece__best__list {
  display: flex;
  flex-wrap: wrap;
}
.prfbook__card.--food .prfbook__piece__best__list__cell {
  width: calc(25% - 0.75rem);
  margin: 0.5rem 0;
  padding: 0 0 0.3rem 0;
  background-color: #eae9e5;
  border-radius: 0.7rem;
}
.prfbook__card.--food .prfbook__piece__best__list__cell:not(:nth-child(4n+1)) {
  margin-left: 1rem;
}
.prfbook__card.--food .prfbook__piece__best__list__cell dt {
  font-size: 1rem;
  font-weight: 500;
  margin-left: 0.5rem;
}
.prfbook__card.--food .prfbook__piece__best__list__cell dd {
  font-family: "Zen Kurenaido", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #6b6b6b;
  margin-top: -0.3rem;
  text-align: center;
}
.prfbook__card.--food .prfbook__piece__bottom {
  display: flex;
  justify-content: space-between;
}
.prfbook__card.--food .prfbook__piece__bottom__left {
  width: 47%;
  background-color: #9f584b;
  border-radius: 0 0 0 3rem;
}
.prfbook__card.--food .prfbook__piece__bottom__right {
  width: 53%;
  padding-left: 1.5rem;
  background-color: #57443a;
  border-radius: 0 0 3rem 0;
}
.prfbook__card.--food .prfbook__piece__bottom .--normal {
  margin: 0;
  padding: 0.5rem 0 0.4rem 0;
  color: #eae9e5;
}
.prfbook__card.--food .prfbook__piece__weak {
  padding: 0 1rem 0.8rem 1.8rem;
}
.prfbook__card.--food .prfbook__piece__weak__row {
  font-family: "Zen Kurenaido", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #6b6b6b;
  display: flex;
  justify-content: space-between;
  height: 3.2rem;
  margin-bottom: 1rem;
}
.prfbook__card.--food .prfbook__piece__weak__row dt {
  width: 8.5rem;
  text-align: center;
  line-height: 2.2;
  background-color: #eae9e5;
  padding: 0.2rem 0;
  border-radius: 0.7rem;
}
.prfbook__card.--food .prfbook__piece__weak__row dd {
  position: relative;
  width: calc(100% - 10rem);
  font-size: 1.2rem;
  padding: 1.1rem 0 0 0.5rem;
  background-color: #eae9e5;
  border: 2px dotted #999;
}
.prfbook__card.--food .prfbook__piece__weak__row dd::before {
  content: "理由";
  position: absolute;
  top: -0.2rem;
  left: 0;
  font-family: initial;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
}
.prfbook__card.--food .prfbook__piece__which {
  background-color: #eae9e5;
  margin: 0.3rem 2rem 0 0;
  padding: 0.5rem 0.7rem;
  border-radius: 0.7rem;
}
.prfbook__card.--food .prfbook__piece__which__row {
  line-height: 1.8;
}

/*--------------------------------------------
▼ tab
--------------------------------------------*/
.tab__button button {
  display: block;
  cursor: pointer;
}
.tab__content__data {
  display: none;
}
.tab__content__data.--active {
  display: block;
}

/* Project --------------------------------- */
/*--------------------------------------------
▼ _top.scss
--------------------------------------------*/
#index main {
  height: 100vh;
  overflow: auto;
  scroll-snap-type: y mandatory;
}
#index section {
  position: relative;
  height: 100vh;
  scroll-snap-align: start;
}
@media screen and (max-width: 768px) {
  #index section {
    height: auto;
  }
}
#index section#fv {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #index section#fv {
    height: 100vh;
  }
}
#index section#fv .fv__content {
  width: 100%;
  height: 100%;
}
#index section#fv.--active .fv__content::before, #index section#fv.--active .fv__content::after {
  height: 7rem;
}
#index section#profile {
  display: flex;
  align-items: center;
  letter-spacing: 0.2rem;
  background-image: url("../images/bg-profile.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  font-family: "DotGothic16", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #index section#profile {
    display: block;
    padding: 3rem 0;
  }
}
#index section#profile .profile {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto 1fr;
  justify-content: space-between;
  align-content: space-between;
  gap: 1rem;
  height: 80vh;
}
@media screen and (max-width: 768px) {
  #index section#profile .profile {
    display: block;
    height: auto;
  }
}
#index section#profile .profile > div {
  position: relative;
  opacity: 0;
  background-color: #090f18;
}
@media screen and (max-width: 768px) {
  #index section#profile .profile > div {
    opacity: 1;
  }
}
#index section#profile .profile > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid #84654c;
  border-radius: 3rem;
}
#index section#profile .profile > div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid #84654c;
}
#index section#profile .profile h3 {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.5rem;
  z-index: 2;
  font-size: 1.7rem;
  color: #b58f35;
}
#index section#profile .profile h3::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: calc(100% - 11rem);
  height: 100%;
  background-image: linear-gradient(to right, #84654c, #84654c 6px, transparent 6px, transparent 10px);
  background-size: 10px 1px;
  background-position: left center;
  background-repeat: repeat-x;
  z-index: 0;
}
#index section#profile .profile__image {
  grid-column: 1/2;
  grid-row: 1/2;
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  background-color: transparent !important;
}
#index section#profile .profile__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid #84654c;
  border-radius: 3rem;
}
#index section#profile .profile__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid #84654c;
}
#index section#profile .profile__desc {
  grid-column: 1/2;
  grid-row: 2/3;
}
#index section#profile .profile__desc p {
  padding: 0 3rem;
}
#index section#profile .profile__desc p:first-child {
  padding-top: 1.5rem;
  padding-left: 1.5rem;
}
#index section#profile .profile__desc p:last-child {
  padding-bottom: 1.5rem;
}
#index section#profile .profile__param {
  grid-column: 2/3;
  grid-row: 1/3;
}
#index section#profile .profile__param > div {
  padding: 0 2rem;
}
#index section#profile .profile__param > div:first-child {
  padding-top: 1.5rem;
}
#index section#profile .profile__param > div:last-child {
  padding-bottom: 1rem;
}
#index section#profile .profile__param progress {
  width: 100%;
  height: 1.3rem;
  border: 2px solid #84654c;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
}
#index section#profile .profile__param progress:nth-of-type(1)::-webkit-progress-bar {
  background-color: transparent;
}
#index section#profile .profile__param progress:nth-of-type(1)::-webkit-progress-value {
  background-color: #235da6;
}
#index section#profile .profile__param progress:nth-of-type(1)::-moz-progress-bar {
  background-color: #235da6;
}
#index section#profile .profile__param progress:nth-of-type(2)::-webkit-progress-bar {
  background-color: transparent;
}
#index section#profile .profile__param progress:nth-of-type(2)::-webkit-progress-value {
  background-color: #5c2f8a;
}
#index section#profile .profile__param progress:nth-of-type(2)::-moz-progress-bar {
  background-color: #5c2f8a;
}
#index section#profile .profile__param progress:nth-of-type(3)::-webkit-progress-bar {
  background-color: transparent;
}
#index section#profile .profile__param progress:nth-of-type(3)::-webkit-progress-value {
  background-color: #574103;
}
#index section#profile .profile__param progress:nth-of-type(3)::-moz-progress-bar {
  background-color: #574103;
}
#index section#profile .profile__param__base > p {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
#index section#profile .profile__param__base dl {
  display: flex;
  justify-content: space-between;
}
#index section#profile .profile__param__base dt {
  font-weight: normal;
}
#index section#profile .profile__param__effect {
  display: flex;
}
#index section#profile .profile__param__effect img {
  width: 1.8rem;
  margin-right: 0.5rem;
}
#index section#profile .profile__param__effect dl {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  width: 33.3333333333%;
}
#index section#profile .profile__param__effect dt {
  display: flex;
  align-items: center;
  width: 6rem;
  font-weight: normal;
  margin: 0.2rem 0;
}
#index section#profile .profile__param__effect dd {
  width: calc(100% - 6rem);
  margin: 0.2rem 0;
}
#index section#profile .profile__param__effect dd.--flag_1 {
  padding-left: 0.3rem;
}
#index section#profile .profile__gear {
  grid-column: 3/4;
  grid-row: 1/2;
  padding: 1rem 0;
}
@media screen and (max-width: 768px) {
  #index section#profile .profile__gear {
    padding-bottom: 1.5rem;
  }
}
#index section#profile .profile__gear dl {
  padding: 0 1.5rem 0 2.5rem;
}
#index section#profile .profile__gear dt {
  font-weight: normal;
}
#index section#profile .profile__gear dt:first-of-type {
  margin-top: 0.2rem;
}
#index section#profile .profile__gear dt:not(:first-of-type) {
  margin-top: 1.7rem;
}
#index section#profile .profile__gear dt.--c_green {
  color: #3bbf3b;
}
#index section#profile .profile__gear dt.--c_blue {
  color: #56a0ff;
}
#index section#profile .profile__gear dt.--c_orange {
  color: #ffa500;
}
#index section#profile .profile__gear dd {
  font-size: 1.4rem;
  margin-left: 1.5rem;
}
#index section#profile .profile__condition {
  grid-column: 3/4;
  grid-row: 2/3;
  padding: 1.5rem 2rem 0;
}
@media screen and (max-width: 768px) {
  #index section#profile .profile__condition {
    padding-bottom: 1.5rem;
  }
}
#index section#profile .profile__condition img {
  width: 20px;
  height: 20px;
  margin-right: 0.8rem;
}
#index section#profile .profile__condition dt {
  display: flex;
  align-items: center;
  font-weight: normal;
  margin-bottom: 0.2rem;
  color: #b58f35;
}
#index section#profile .profile__condition dt:not(:first-of-type) {
  margin-top: 1.8rem;
}
#index section#profile .profile__condition dd {
  font-size: 1.4rem;
}
#index section.--active .profile > div:nth-child(1) {
  animation: 0.9s forwards 0.35s show-ui;
}
#index section.--active .profile > div:nth-child(1) * {
  opacity: 0;
  animation: 0.5s forwards 1.15s show-ui-content;
}
#index section.--active .profile > div:nth-child(2) {
  animation: 0.9s forwards 0.5s show-ui;
}
#index section.--active .profile > div:nth-child(2) * {
  opacity: 0;
  animation: 0.5s forwards 1.3s show-ui-content;
}
#index section.--active .profile > div:nth-child(3) {
  animation: 0.9s forwards 0.65s show-ui;
}
#index section.--active .profile > div:nth-child(3) * {
  opacity: 0;
  animation: 0.5s forwards 1.45s show-ui-content;
}
#index section.--active .profile > div:nth-child(4) {
  animation: 0.9s forwards 0.8s show-ui;
}
#index section.--active .profile > div:nth-child(4) * {
  opacity: 0;
  animation: 0.5s forwards 1.6s show-ui-content;
}
#index section.--active .profile > div:nth-child(5) {
  animation: 0.9s forwards 0.95s show-ui;
}
#index section.--active .profile > div:nth-child(5) * {
  opacity: 0;
  animation: 0.5s forwards 1.75s show-ui-content;
}
#index section#skill {
  display: flex;
  align-items: center;
  background-image: url("../images/bg-skill.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  #index section#skill {
    display: block;
    height: 100vh;
    padding: 3rem 0;
  }
}
#index section#skill .tab {
  margin-top: -1rem;
}
#index section#skill .tab__button {
  display: flex;
  margin-bottom: 1rem;
}
#index section#skill .tab__button button:nth-child(n+2) {
  margin-left: 0.5rem;
}
#index section#skill .tab__content {
  display: flex;
  height: 80vh;
  margin-right: 10rem;
}
@media screen and (max-width: 768px) {
  #index section#skill .tab__content {
    display: block;
    height: auto;
    margin-right: 0;
  }
}
#index section#skill .tab__content__data {
  width: 100%;
}
#index section#skill .skill__menu {
  display: flex;
  margin-bottom: 1rem;
}
#index section#skill .skill__menu button:nth-child(n+2) {
  margin-left: 1rem;
}
#index section#skill .skill__chart {
  display: grid;
  grid-template-columns: 60rem 1fr;
  grid-template-rows: auto 1fr;
  justify-content: space-between;
  align-content: space-between;
  gap: 0.5rem;
  height: calc(80vh - 8rem);
}
@media screen and (max-width: 768px) {
  #index section#skill .skill__chart {
    display: block;
    height: auto;
  }
}
#index section#skill .skill__chart__content {
  grid-column: 1/2;
  grid-row: 1/3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #index section#skill .skill__chart__content {
    height: 55vh;
    margin-bottom: 0.5rem;
  }
}
#index section#skill .skill__chart__content__inner {
  height: 100%;
  padding: 0 3rem;
  background-image: url("/assets/images/p0148_l.png");
  background-size: contain;
  overflow-y: auto;
}
#index section#skill .skill__chart__content__inner::-webkit-scrollbar {
  display: block;
  width: 5px;
}
#index section#skill .skill__chart__content__inner::-webkit-scrollbar-thumb {
  background-color: #756154;
}
#index section#skill .skill__chart__content__inner::-webkit-scrollbar-track {
  background-color: #eadbbb;
}
#index section#skill .skill__chart__desc {
  grid-column: 2/3;
  grid-row: 1/2;
}
@media screen and (max-width: 768px) {
  #index section#skill .skill__chart__desc {
    display: none;
  }
}
#index section#skill .skill__chart__desc__inner {
  display: block;
  line-height: 2;
  padding: 2.5rem 4rem;
  background-image: url("/assets/images/p0148_l.png");
  background-size: contain;
}
#index section#skill .skill__chart__related {
  grid-column: 2/3;
  grid-row: 2/3;
  padding: 1.5rem 2rem;
  background-image: url("/assets/images/p0148_l.png");
  background-size: contain;
}
@media screen and (max-width: 768px) {
  #index section#skill .skill__chart__related {
    height: 25vh;
  }
}
#index section#skill .skill__chart__related .skill-related__title {
  font-size: 1.7rem;
  padding-bottom: 1.3rem;
}
#index section#skill .skill__chart__related .skill-related__title svg {
  width: 1.8rem;
  margin-right: 0.3rem;
}
#index section#skill .skill__chart__related .skill-related__list {
  margin-left: 2rem;
}
#index section#skill .skill__chart__related .skill-related__item:not(:last-of-type) {
  margin-bottom: 1rem;
}
#index section#skill .skill__chart__related .skill-related__link {
  display: inline-block;
  transition: background-color ease 0.2s;
  cursor: url("/assets/images/sistrix-brands-solid.png"), auto;
}
#index section#skill .skill__chart__related .skill-related__meta {
  display: block;
  font-size: 1.3rem;
  opacity: 0.75;
}
#index section#skill .skill__chart__related .skill-related__empty {
  opacity: 0.75;
}
#index section#skill .skill__chart__description {
  display: flex;
  align-items: center;
  height: 7rem;
  font-size: 1.5rem;
  margin-top: 0.5rem;
  padding: 0 2rem;
  background-image: url("/assets/images/p0148_l.png");
  background-size: contain;
}
@media screen and (max-width: 768px) {
  #index section#skill .skill__chart__description {
    height: 7.5rem;
    font-size: 1.4rem;
  }
}
#index section#skill .intention {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #index section#skill .intention {
    display: block;
  }
}
#index section#skill .intention > div {
  width: 49.5%;
  padding: 3rem;
  background-image: url("/assets/images/p0148_l.png");
  background-size: contain;
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  #index section#skill .intention > div {
    width: 100%;
    height: 45vh;
    margin-bottom: 1rem;
  }
}
#index section#skill .intention > div::-webkit-scrollbar {
  display: block;
  width: 5px;
}
#index section#skill .intention > div::-webkit-scrollbar-thumb {
  background-color: #756154;
}
#index section#skill .intention > div::-webkit-scrollbar-track {
  background-color: #eadbbb;
}
#index section#skill .intention > div h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 600;
  margin: 2rem 0 1rem;
}
#index section#skill .intention > div h3::before, #index section#skill .intention > div h3::after {
  content: "";
  width: 8rem;
  height: 1px;
  background-color: #1A1A1A;
}
#index section#skill .intention > div h3::before {
  margin-right: 1rem;
}
#index section#skill .intention > div h3::after {
  margin-left: 1rem;
}
#index section#skill .intention .skill__process {
  max-width: 28rem;
  margin: 0 auto 2rem;
}
#index section#skill .intention .skill__process canvas {
  width: 100% !important;
  height: 100% !important;
}
#index section#record {
  display: flex;
  align-items: center;
  background-image: url("../images/bg-record.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  font-family: "Noto Sans JP", serif;
  font-weight: #fff;
  color: #1A1A1A;
}
@media screen and (max-width: 768px) {
  #index section#record {
    height: 100vh;
  }
}
#index section#record .tab {
  display: flex;
}
@media screen and (max-width: 768px) {
  #index section#record .tab {
    flex-direction: column;
  }
}
#index section#record .tab__button {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 15rem;
}
@media screen and (max-width: 768px) {
  #index section#record .tab__button {
    flex-direction: row;
    justify-content: flex-end;
    width: auto;
  }
}
#index section#record .tab__button button {
  width: 12rem;
  height: 5rem;
  text-align: right;
  padding: 1rem;
  border: 1px solid #fff;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  transition: width 0.3s, background-color 0.3s;
  backdrop-filter: blur(1px);
}
@media screen and (max-width: 768px) {
  #index section#record .tab__button button {
    width: auto;
  }
}
#index section#record .tab__button button:hover {
  width: 15rem;
  background-color: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  #index section#record .tab__button button:hover {
    width: auto;
  }
}
#index section#record .tab__button button:nth-child(n+2) {
  margin-top: -1px;
}
#index section#record .tab__button button.--active {
  width: 15rem;
  font-weight: 700;
  line-height: 0;
  color: #1A1A1A;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #index section#record .tab__button button.--active {
    width: auto;
  }
}
#index section#record .tab__content {
  position: relative;
  width: calc(100% - 14rem + 1px);
  height: 90vh;
  margin-left: -1px;
  background-color: rgba(0, 0, 0, 0.7);
  border: 1px solid #fff;
  overflow-y: auto;
  backdrop-filter: blur(1px);
}
@media screen and (max-width: 768px) {
  #index section#record .tab__content {
    width: 100%;
    margin-left: 0;
  }
}
#index section#record .tab__content::-webkit-scrollbar {
  display: block;
  width: 5px;
}
#index section#record .tab__content::-webkit-scrollbar-thumb {
  background-color: #1A1A1A;
}
#index section#record .tab__content::-webkit-scrollbar-track {
  background-color: #fff;
}
#index section#record .record__row:nth-child(n+2) {
  margin-top: -1px;
}
#index section#record .record__row__inner {
  display: flex;
  padding: 2.4rem 4rem 2.4rem 2.8rem;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  #index section#record .record__row__inner {
    flex-direction: column-reverse;
    padding: 1.5rem 2.8rem;
  }
}
#index section#record .record__row a {
  transition: background-color 0.2s;
}
#index section#record .record__row a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
#index section#record .record__row__attribute {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  width: 43%;
  padding-right: 4.8rem;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  #index section#record .record__row__attribute {
    width: 100%;
    padding-top: 1rem;
    padding-right: 0;
    border-top: 1px dashed #fff;
    border-right: none;
  }
}
#index section#record .record__row__attribute__image {
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #index section#record .record__row__attribute__image {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #index section#record .record__row__attribute__image img {
    width: 100%;
  }
}
#index section#record .record__row__attribute__data {
  margin-bottom: 0.8rem;
}
#index section#record .record__row__attribute__data.--left {
  width: 10rem;
  font-size: 1.2rem;
  font-weight: 300;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #index section#record .record__row__attribute__data.--left {
    font-size: 1.3rem;
  }
}
#index section#record .record__row__attribute__data.--left span {
  display: inline-block;
  padding: 0.3rem 0.5rem;
  border: 1px solid #fff;
}
#index section#record .record__row__attribute__data.--right {
  align-self: center;
  width: calc(100% - 10rem);
  font-size: 1.3rem;
  font-weight: 300;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #index section#record .record__row__attribute__data.--right {
    font-size: 1.4rem;
  }
}
#index section#record .record__row__attribute__data.--right span {
  display: inline-block;
}
#index section#record .record__row__attribute__data.--right span:not(:last-of-type) {
  padding-right: 1rem;
}
#index section#record .record__row__detail {
  padding-left: 2.4rem;
  flex: 1;
}
@media screen and (max-width: 768px) {
  #index section#record .record__row__detail {
    padding-bottom: 1.5rem;
    padding-left: 0;
  }
}
#index section#record .record__row__detail__title {
  letter-spacing: 0.2rem;
  padding-bottom: 3rem;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #index section#record .record__row__detail__title {
    font-size: 2rem;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }
}
#index section#record .record__row__detail__text {
  line-height: 2.2;
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
}

/* UI登場アニメーション */
@keyframes show-ui {
  0% {
    transform: scale(0, 0);
    opacity: 0;
  }
  50% {
    transform: scale(120%, 2%);
    opacity: 1;
  }
  70% {
    transform: scale(80%, 120%);
    opacity: 1;
  }
  100% {
    transform: scale(100%, 100%);
    opacity: 1;
  }
}
@keyframes show-ui-content {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 看板のバウンドアニメーション */
/* Utility --------------------------------- */
/*--------------------------------------------
▼ Utility
--------------------------------------------*/
.record__row.is-highlight {
  animation: recordHighlight 1.6s ease;
}

@keyframes recordHighlight {
  0% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
  35% {
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.9);
  }
  100% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
}/*# sourceMappingURL=styles.css.map */