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

html {
  scroll-behavior: smooth;
}

h1 {
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  color: #111;
}

h2,
.button {
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  color: #111;
}

h3 {
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  color: #111;
}

p,
li,
a,
span {
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  color: #111;
  list-style: none;
  text-decoration: none;
  letter-spacing: 0.05em;
}

img {
  max-width: 100%;
}

section {
  scroll-margin-top: clamp(64px, 7vw, 92px);
}

.section_title {
  padding: 0;
  margin-bottom: clamp(32px, 5vw, 64px);
}

.inner {
  max-width: 1100px;
  width: 90%;
  margin: clamp(48px, 8vw, 80px) auto;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.header_inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: clamp(64px, 7vw, 92px);
  padding: 0 clamp(20px, 5vw, 120px);
  backdrop-filter: blur(5px);
  position: static;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  transition: left 0.3s;
}
@media (width <= 375px) {
  .header_inner {
    padding: 0 40px;
    height: 64px;
  }
}
.header_logo h1 {
  display: flex;
  flex-direction: column;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1;
}
.header_logo h1 span {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
}
@media (width <= 375px) {
  .header_logo h1 {
    font-size: clamp(14px, 1.6vw, 16px);
  }
  .header_logo h1 span {
    font-size: 12px;
  }
}
.header_nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(16px, 3vw, 48px);
}
@media (width <= 768px) {
  .header_nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #FAF9F9;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.4s;
  }
}
.header.open .header_nav {
  right: 0;
}
.header_list {
  display: flex;
  flex-direction: row;
  gap: clamp(16px, 2vw, 32px);
  align-items: center;
  list-style: none;
}
@media (width <= 768px) {
  .header_list {
    flex-direction: column;
  }
}
.header_link {
  transition: 0.5s;
}
.header_link:hover {
  border-bottom: 1px solid #E9E9E9;
}

.is-resize .header .header_inner {
  transition: none !important;
}

.hamburger_btn {
  display: none;
}
@media (width <= 768px) {
  .hamburger_btn {
    display: flex;
    width: 36px;
    height: 40px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
  }
}

.hamburger_btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #495F71;
  transition: 0.3s;
}

.hamburger_btn span:nth-child(1) {
  top: 8px;
}

.hamburger_btn span:nth-child(2) {
  top: 20px;
}

.hamburger_btn span:nth-child(3) {
  top: 32px;
}

.header.open .hamburger_btn span:nth-child(1) {
  transform: rotate(45deg);
  top: 19px;
}

.header.open .hamburger_btn span:nth-child(2) {
  opacity: 0;
}

.header.open .hamburger_btn span:nth-child(3) {
  transform: rotate(-45deg);
  top: 19px;
}

.mv {
  width: 100%;
  height: 100dvh;
  position: relative;
  overflow: hidden;
  background-color: #FAF9F9;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mv::before, .mv::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #E9E9E9;
}
.mv::before {
  width: 800px;
  height: 800px;
  top: -220px;
  left: -220px;
}
@media (width <= 768px) {
  .mv::before {
    width: 600px;
    height: 600px;
  }
}
@media (width <= 375px) {
  .mv::before {
    width: 500px;
    height: 500px;
  }
}
.mv::after {
  width: 500px;
  height: 500px;
  bottom: -220px;
  right: -220px;
}
@media (width <= 768px) {
  .mv::after {
    width: 400px;
    height: 400px;
  }
}
@media (width <= 375px) {
  .mv::after {
    width: 300px;
    height: 300px;
  }
}
.mv_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: clamp(40px, 8vh, 120px);
}
.mv_title {
  z-index: 10;
}
.mv_title h2 {
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-bottom: clamp(40px, 8vh, 120px);
}
.mv_title h2 span:first-of-type {
  display: block;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1;
}
@media (width <= 768px) {
  .mv_title h2 span:first-of-type {
    font-size: clamp(28px, 5vw, 48px);
  }
}
@media (width <= 375px) {
  .mv_title h2 span:first-of-type {
    font-size: clamp(22px, 4vw, 32px);
  }
}
.mv_title h2 span:last-of-type {
  display: block;
  font-size: clamp(22px, 4vw, 32px);
}
@media (width <= 375px) {
  .mv_title h2 span:last-of-type {
    font-size: clamp(18px, 3vw, 24px);
  }
}
.mv_button {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 9;
}
.mv_link {
  color: #ffffff;
  width: 280px;
  height: 80px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #495F71;
  transition: 0.3s ease-in;
  position: relative;
}
.mv_link::after {
  content: "";
  width: 24px;
  height: 24px;
  border-left: 6px solid #495F71;
  border-bottom: 6px solid #495F71;
  transform: rotate(-45deg);
  position: absolute;
  bottom: -48px;
  left: 50%;
  transition: 0.3s ease-in;
  transform: translateX(-50%) rotate(-45deg);
}
@media (width <= 768px) {
  .mv_link {
    width: 200px;
    height: 60px;
    font-size: clamp(18px, 3vw, 24px);
  }
  .mv_link::after {
    content: "";
    width: 18px;
    height: 18px;
  }
}
@media (width <= 375px) {
  .mv_link {
    width: 140px;
    height: 40px;
    font-size: clamp(14px, 1.6vw, 16px);
  }
  .mv_link::after {
    content: "";
    width: 12px;
    height: 12px;
  }
}
.mv_link:hover::after {
  transform: translateX(-50%) translateY(8px) rotate(-45deg);
  filter: brightness(0.8);
}
.mv_link:hover {
  filter: brightness(0.8);
}

.works_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.works_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
@media (width <= 768px) {
  .works_list {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.works_item {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: none;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  background: #ffffff;
  box-shadow: 2px 2px 4px;
}
.works_item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.works_item:hover {
  transform: scale(1.05);
}
.works_item .works_img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  transition: transform 0.25s;
}
.works_item .works_item .works_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.works_text {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  text-align: start;
}
@media (width <= 375px) {
  .works_item {
    gap: 8px;
  }
  .works_text h3 {
    font-size: 14px;
  }
  .works_text p {
    font-size: 12px;
  }
}

.works_modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 999;
}
.works_modal.active {
  display: flex;
}
.works_modal_inner {
  max-height: 88vh;
  width: min(1100px, 92vw);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  background: #ffffff;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  align-items: start;
  overflow: auto;
}
@media (width <= 768px) {
  .works_modal_inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
}
.works_modal_back_btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f3f4f6;
  border: 1px solid #E9E9E9;
  cursor: pointer;
  transition: 0.2s ease;
}
.works_modal_back_btn:hover {
  background: #eaeef2;
}
.works_modal_back_btn span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: #495F71;
  transform-origin: center;
}
.works_modal_back_btn span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.works_modal_back_btn span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.works_modal_title {
  grid-column: 1/-1;
  margin: 0 0 18px;
}
@media (width <= 375px) {
  .works_modal_title {
    font-size: 16px;
  }
}
.works_modal_img {
  width: 100%;
  height: min(70vh, 520px);
  border-radius: 16px;
  background: #FAF9F9;
  border: 1px solid #E9E9E9;
  overflow: auto;
}
.works_modal_img img {
  width: 100%;
  height: auto;
  display: block;
}
.works_modal_body, .works_modal_img {
  min-width: 0;
}
.works_modal_body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  grid-column: 1/2;
  grid-row: 2/3;
}
@media (width <= 768px) {
  .works_modal_body {
    grid-column: 1/-1;
    grid-row: auto;
  }
}
.works_modal_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}
.works_modal_item {
  padding: 6px 12px;
  border-radius: 999px;
  background: #FAF9F9;
  border: 1px solid #E9E9E9;
  white-space: normal;
  overflow-wrap: anywhere;
}
.works_modal_text h3 {
  margin: 0 0 8px;
  border-bottom: 1px solid #E9E9E9;
  padding-bottom: 8px;
  font-size: clamp(14px, 1.6vw, 16px);
}
.works_modal_text p {
  margin-bottom: 24px;
  line-height: 1.8;
  font-size: 14px;
  color: #334155;
}
.works_modal_btn_list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (width <= 768px) {
  .works_modal_btn_list {
    grid-template-columns: 1fr;
  }
}
.works_modal_btn {
  width: 200px;
  height: clamp(48px, 1.6vw, 56px);
  margin-top: 8px;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #495F71;
  color: #ffffff;
  text-decoration: none;
  transition: 0.25s ease;
}
.works_modal_btn:hover {
  filter: brightness(0.8);
}
@media (width <= 768px) {
  .works_modal_btn {
    width: 100%;
  }
}

body.is-modal-open {
  overflow: hidden;
}

.skill {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: #FAF9F9;
}
.skill::before, .skill::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #E9E9E9;
}
.skill::before {
  width: 800px;
  height: 800px;
  top: -150px;
  left: -150px;
}
@media (width <= 768px) {
  .skill::before {
    width: 600px;
    height: 600px;
  }
}
@media (width <= 375px) {
  .skill::before {
    width: 500px;
    height: 500px;
  }
}
.skill::after {
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -150px;
}
@media (width <= 768px) {
  .skill::after {
    width: 400px;
    height: 400px;
  }
}
@media (width <= 375px) {
  .skill::after {
    width: 300px;
    height: 300px;
  }
}
.skill_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 8;
}
.skill_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (width <= 768px) {
  .skill_list {
    grid-template-columns: 1fr;
  }
}
.skill_item {
  display: flex;
  flex-direction: column;
  padding: 32px 40px;
  border-radius: 16px;
  width: 100%;
  min-height: 240px;
  box-shadow: 8px 8px #000000;
  background-color: #ffffff;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.skill_item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (width <= 375px) {
  .skill_item {
    width: 280px;
    height: auto;
  }
  .skill_item .about_text p {
    max-width: 100%;
  }
}
.skill_item_title {
  display: flex;
  margin-bottom: 16px;
  gap: 16px;
}

.about {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.about_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 8;
}
@media (width <= 768px) {
  .about_inner {
    margin: 80px 48px;
  }
}
.about_list {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.about_list.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (width <= 768px) {
  .about_list {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .about_list img {
    justify-self: center;
  }
}
.about_list img {
  width: 100%;
  max-width: 400px;
  height: auto;
}
.about_list .about_item {
  width: 100%;
  max-width: 520px;
}
.about_list .about_item .about_text h3 {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  font-size: clamp(22px, 4vw, 32px);
  line-height: 1.8;
}
.about_list .about_item .about_text p {
  line-height: 1.9;
}

.footer {
  padding: clamp(24px, 5vw, 64px) 0;
}
.footer_inner {
  width: min(1100px, 90%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer_img {
  width: clamp(36px, 6vw, 48px);
  height: auto;
  transition: 0.3s;
}
.footer_img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}
.footer_text {
  font-size: clamp(12px, 1.2vw, 14px);
  color: #666;
}/*# sourceMappingURL=style.css.map */