/* ***********************************
 *
 *    Ire's CSS Reset & Base
 *
 * *********************************** */
/* Reset margin, padding, border
 * *********************************** */
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
}

/* Typography
 * *********************************** */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.4;
}

* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a,
a:visited {
  color: inherit;
}

/* Layout
 * *********************************** */
article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: inherit;
}

/* Elements
 * *********************************** */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

ol,
ul {
  list-style: none;
}

img,
video {
  max-width: 100%;
}

img {
  border-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

/* Attributes & states
 * *********************************** */
[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Utility classes
 * *********************************** */
.sr-only {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  left: -9999px;
  top: -9999px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #222;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.15rem;
}

main {
  margin: 0 10%;
}
@media (max-width: 768px) {
  main {
    margin: 0 5%;
  }
}

a {
  text-decoration: none;
}

p, a {
  font-weight: 500;
  line-height: 1.8;
}
@media (max-width: 768px) {
  p, a {
    font-size: 0.9em;
  }
}

header {
  margin: 1.5rem 0;
  padding: 0 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 50px;
  z-index: 10;
}
@media (max-width: 768px) {
  header {
    padding: 0 5%;
    margin: 1rem 0;
  }
}
@media (max-width: 768px) {
  header .logo {
    z-index: 100;
  }
}
header .logo h1 {
  font-size: 1.2em;
  line-height: 1.2;
}
header .logo h2 {
  font-size: 0.8em;
}
header nav ul {
  display: flex;
  gap: 3rem;
}
@media (max-width: 768px) {
  header nav ul {
    flex-direction: column;
    gap: 0rem;
    padding-top: 9rem !important;
  }
}
header nav ul li {
  overflow: hidden;
}
header nav ul li a {
  --ease-out-cubic: cubic-bezier(0.33, 1, 0.68, 1);
  overflow: hidden;
  line-height: 1;
  font-size: 1em;
  font-weight: 700;
  font-family: "Fira Sans", sans-serif;
}
@media (any-hover: hover) {
  header nav ul li a:hover .nav__text {
    translate: 0 -1.2em;
  }
}

@media (max-width: 768px) {
  .drawer-hamburger {
    position: static !important;
    padding: 18px 0 30px !important;
  }
  .drawer--right .drawer-nav {
    right: -100% !important;
  }
  .drawer--right.drawer-open .drawer-nav, .drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
    right: 0 !important;
  }
  .drawer-nav {
    width: 100% !important;
  }
  .drawer-menu-item {
    padding: 1.3em 0 !important;
    margin: 0 1.3em;
    font-size: 1em !important;
    border-bottom: 1px solid #f0f0f0;
  }
}
.nav__text {
  display: inline-block;
  translate: 0 0;
  text-shadow: 0 1em 0 currentColor;
  transition: translate 0.6s var(--ease-out-cubic) calc(0.1s * var(--nav));
}
@media (max-width: 768px) {
  .nav__text {
    text-shadow: none;
  }
}

.index__billboard {
  height: 55vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  padding-top: 80px;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .index__billboard {
    display: block;
    padding-top: 120px;
    margin-bottom: 80px;
    height: 100%;
  }
}
.index__billboard .inde__billboard--text {
  flex: 1;
}
.index__billboard .inde__billboard--text h2 {
  margin-bottom: 1.5rem;
  font-size: 1.4em;
}
@media (max-width: 768px) {
  .index__billboard .inde__billboard--text h2 {
    font-size: 1.3em;
  }
}
.index__billboard .inde__billboard--text p {
  font-size: 1em;
}
@media (max-width: 768px) {
  .index__billboard .inde__billboard--text p {
    font-size: 0.95em;
    margin-bottom: 2rem;
  }
}
.index__billboard figure {
  aspect-ratio: 16/9;
  width: 500px;
  height: auto;
}
@media (max-width: 768px) {
  .index__billboard figure {
    width: 100%;
  }
}

main section {
  margin-bottom: 160px;
  scroll-margin-top: 70px;
}
@media (max-width: 768px) {
  main section {
    margin-bottom: 100px;
  }
}
main section .title__sub {
  color: #666;
  text-align: center;
  font-size: 0.8em;
  line-height: 0.8;
  letter-spacing: 0.15rem;
  font-weight: 700;
}
main section h2 {
  font-size: 4rem;
  font-family: "Fira Sans", sans-serif;
  margin-bottom: 1.5rem;
  letter-spacing: 0.15rem;
  text-align: center;
}
@media (max-width: 768px) {
  main section h2 {
    font-size: 3.5rem;
  }
}

.about__item {
  text-align: center;
}
.about__item h3 {
  margin-bottom: 1rem;
  font-size: 1.1em;
}
.about__item p {
  margin-bottom: 1rem;
  line-height: 1.6;
}
.about__item figure {
  aspect-ratio: 1/1;
  width: 15vw;
  min-width: 220px;
  max-width: 320px;
  height: auto;
  overflow: hidden;
  margin: 0 auto 2rem;
}
.about__item figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about__item--text {
  text-align: center;
}
.about__item--text ul li {
  margin-bottom: 1.5rem;
}
.about__item--text h3 {
  font-size: 1.8rem;
  text-align: left;
  margin: 4.5rem 0 1.5rem;
  padding: 0.5rem 0 0.5rem 2rem;
  border-bottom: 1px solid #ccc;
  position: relative;
}
.about__item--text h3::before {
  content: "\f3e3";
  font-family: "Material Symbols Outlined";
  font-size: 1.8rem;
  color: #fbcf00;
  position: absolute;
  left: 0;
  top: 54%;
  transform: translateY(-50%);
}
.about__item--strength {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 768px) {
  .about__item--strength {
    display: block;
  }
}
.about__item--strength p {
  margin-bottom: 1rem;
  text-align: left;
}
@media (max-width: 768px) {
  .about__item--strength p {
    margin-bottom: 2.5rem;
  }
}
.about__item--strength p .num {
  font-family: "Fira Sans", sans-serif;
  font-weight: 700;
  color: #999;
  line-height: 1;
}
.about__item--strength p strong {
  display: block;
  line-height: 1.6;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .about__item--strength p strong {
    margin-bottom: 0.5rem;
  }
}
.about__item--strength p .wave {
  text-decoration: 1px underline wavy #EB7A77;
  text-underline-offset: 2px;
}

.skill__item--wrapper h3 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  padding: 0.5rem 0 0.5rem 2rem;
  border-bottom: 1px solid #ccc;
  position: relative;
}
.skill__item--wrapper h3::before {
  content: "\f362";
  font-family: "Bootstrap-icons";
  font-size: 1.6rem;
  color: #1e50a2;
  position: absolute;
  left: 0;
  top: 54%;
  transform: translateY(-50%);
}
.skill__item--wrapper h3:nth-of-type(2):before {
  content: "\e40a";
  font-family: "Material Symbols Outlined";
  color: #fbcf00;
  font-size: 1.8rem;
}
.skill__item--wrapper h3:nth-of-type(3):before {
  content: "\f28c";
  color: #e2421f;
}
.skill__item--block {
  margin-bottom: 1rem;
}
.skill__item--block p {
  display: grid;
  grid-template-columns: 30px auto;
}
.skill__item--block h4 {
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .skill__item--block h4 {
    margin-top: 1.5rem;
  }
}
.skill__item--block .disc-list li {
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
  position: relative;
}
@media (max-width: 768px) {
  .skill__item--block .disc-list li {
    font-size: 0.9em;
    margin-bottom: 1rem;
  }
}
.skill__item--block .disc-list li::before {
  content: "\e5df";
  font-family: "Material Symbols Outlined";
  font-size: 2rem;
  line-height: 1;
  color: #999;
  position: absolute;
  left: -5px;
  top: 55%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .skill__item--block .disc-list li::before {
    top: 1px;
    transform: translateY(0);
  }
}

.work p {
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.08rem;
}
.work__item--wrapper {
  margin-top: 3rem;
  display: grid;
  flex-wrap: wrap;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6rem 5rem;
}
@media (max-width: 768px) {
  .work__item--wrapper {
    display: block;
  }
}
.work__item--wrapper .work__item--box {
  cursor: pointer;
}
@media (max-width: 768px) {
  .work__item--wrapper .work__item--box {
    margin-bottom: 3rem;
  }
}
.work__item--wrapper .work__item--box:hover figure::after {
  content: "\f140";
}
.work__item--wrapper .work__item--box figure {
  background-color: #f3f3f3;
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  position: relative;
}
.work__item--wrapper .work__item--box figure::after {
  content: "\f141";
  font-family: "Bootstrap-icons";
  font-size: 2vw;
  position: absolute;
  bottom: 5px;
  right: 5px;
}
@media (max-width: 768px) {
  .work__item--wrapper .work__item--box figure::after {
    font-size: 2rem;
  }
}
.work__item--wrapper .work__item--box figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5vw 1vw;
}
@media (max-width: 768px) {
  .work__item--wrapper .work__item--box figure img {
    padding: 1.5rem;
  }
}
.work__item--wrapper .work__item--box h2 {
  font-size: 2rem;
  margin: 1rem auto 0.2rem;
}
@media (max-width: 768px) {
  .work__item--wrapper .work__item--box h2 {
    font-size: 1.2em;
    margin: 1.5rem auto 0.5rem;
  }
}
.work__item--wrapper .work__item--box .work__tags {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .work__item--wrapper .work__item--box .work__tags {
    flex-wrap: wrap;
    gap: 0.2rem 1rem;
    margin-bottom: 1rem;
  }
}
.work__item--wrapper .work__item--box .work__tags li {
  font-size: 0.85em;
  color: #999;
}
@media (max-width: 768px) {
  .work__item--wrapper .work__item--box .work__tags li {
    font-size: 0.8em;
  }
}
.work__item--wrapper .work__item--box p {
  text-align: left;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.work__item--box:last-of-type figure::after {
  display: none;
}

footer {
  background-color: #f3f3f3;
  padding: 2rem 8%;
  margin-top: 180px;
}
@media (max-width: 768px) {
  footer {
    margin-top: 0;
    padding: 1.5rem 8%;
  }
}
footer nav ul {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 1.5rem;
}
footer nav ul li {
  font-weight: 700;
  font-size: 0.9em;
}
footer .copyright {
  font-size: 1rem;
  text-align: center;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}
.modal.is-open {
  display: block;
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
.modal__wrapper {
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
  padding: 1rem 5rem 1rem;
  z-index: 100;
}
@media (max-width: 768px) {
  .modal__wrapper {
    padding: 0.5rem 1.5rem 1.5rem;
  }
}
.modal__img {
  background-color: #f3f3f3;
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  position: relative;
}
.modal__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5vw 1vw;
}
@media (max-width: 768px) {
  .modal__img img {
    padding: 1.4rem 1rem;
  }
}
.modal__category {
  text-align: center;
  font-size: 2rem;
  margin: 1rem auto 0.5rem;
}
@media (max-width: 768px) {
  .modal__category {
    font-size: 1.7rem;
  }
}
.modal__tags {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 0.85em;
  color: #999;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .modal__tags {
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    font-size: 0.8em;
  }
}
.modal__detail dt {
  margin-bottom: 0.5rem;
  font-size: 0.9em;
}
@media (max-width: 768px) {
  .modal__detail dt {
    font-size: 0.8em;
    font-weight: 700;
  }
}
.modal__detail dd {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .modal__detail dd {
    font-size: 0.95em;
  }
}
.modal__close {
  position: fixed;
  top: 1rem;
  right: 2.5rem;
  background: none;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
}
@media (max-width: 768px) {
  .modal__close {
    top: 0.4rem;
    right: 1.5rem;
  }
}

@media (max-width: 768px) {
  .sp-none {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
