@charset "UTF-8";
/*
    リセットCSS等の基本設定
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Inter", "Meiryo UI", "Meiryo", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Noto Sans Japanese", roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #363636;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  overflow-x: hidden;
  letter-spacing: 0.02em;
}

h1, h2, h3, h4, h5, h6,
a, p, span,
blockquote, code,
ol, ul, li, dl, dt, dd,
div, section, article, main, aside,
nav, header, footer,
img, figure, figcaption,
address, time, audio, video,
iframe, fieldset,
form, label, table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
}

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

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}

li {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
  border: 1px solid #363636;
}

th, td {
  padding: 4px 6px;
  text-align: left;
  vertical-align: top;
  border: 1px solid #363636;
}

input, textarea {
  padding: 8px;
  border: 1px solid #363636;
  border-radius: 0;
  background-image: none;
  font-family: inherit;
  font-size: inherit;
  -webkit-appearance: none;
}
input:focus, textarea:focus {
  outline: none;
  border: 1px solid #363636;
  box-shadow: none;
}

textarea {
  resize: none;
}

input[type=submit] {
  cursor: pointer;
  border: none;
}
input[type=submit]:hover, input[type=submit]:focus {
  outline: none;
  border: none;
}
input[type=submit] ::-moz-focus-inner {
  padding: 0;
  border: none;
}
input[type=radio] {
  display: none;
}
input[type=radio] + span {
  display: inline-block;
  position: relative;
  padding: 0 0 0 1.2em;
  margin: 0 0.2em 0;
  cursor: pointer;
}
input[type=radio] + span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #363636;
  border-radius: 50%;
  width: 1em;
  height: 1em;
  display: block;
}
input[type=radio] + span::after {
  opacity: 0;
  transition: opacity 0.3s ease 0s;
}
input[type=radio] + span:focus, input[type=radio] + span:checked {
  outline: none;
  border: 1px solid #fff;
  box-shadow: none;
  background: #363636;
}
input[type=radio]:checked + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0.2em;
  transform: translateY(-50%);
  background: #363636;
  border-radius: 50%;
  width: 0.6em;
  height: 0.6em;
  display: block;
  opacity: 1;
}
input[type=checkbox] {
  display: none;
}
input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  padding: 0 0 0 1.2em;
  margin: 0 0.2em 0;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
input[type=checkbox] + span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #363636;
  border-radius: 2px;
  width: 1em;
  height: 1em;
  display: block;
}
input[type=checkbox] + span::after {
  opacity: 0;
  transition: opacity 0.3s ease 0s;
}
input[type=checkbox]:checked + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
  width: 1em;
  height: 0.6em;
  margin-top: -0.2em;
  display: block;
  border-left: 3px solid #363636;
  border-bottom: 3px solid #363636;
  opacity: 1;
}

select {
  width: 100%;
  padding: 8px 24px 8px 8px;
  border-radius: 0;
  background-image: none;
  border: 1px solid #363636;
  font-family: inherit;
  font-size: 1em;
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
}
select::-ms-expand {
  display: none;
}
select:focus {
  outline: none;
  border: 1px solid #363636;
  box-shadow: none;
}

.hidden {
  display: none;
}

.wrapper {
  overflow: hidden;
}

.container {
  width: 100%;
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .container {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.icon--check {
  vertical-align: middle;
  margin-right: 8px;
}

.cate-item-01 {
  background-color: #eee;
  color: #505050;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 8px 12px;
  line-height: 1;
  margin-right: 8px;
  margin-bottom: 8px;
  display: inline-block;
  font-weight: 500;
}
@media (max-width: 768px) {
  .cate-item-01 {
    font-size: 12px;
    padding: 8px 12px;
    margin-right: 4px;
    margin-bottom: 4px;
  }
}

.cate-item-02 {
  background: #fff;
  border: 1px solid #707070;
  color: #363636;
  font-size: 14px;
  padding: 12px;
  line-height: 1;
  margin-right: 8px;
  margin-bottom: 8px;
  display: inline-block;
  font-weight: 500;
}
@media (max-width: 768px) {
  .cate-item-02 {
    font-size: 12px;
    padding: 8px 12px;
    margin-right: 4px;
    margin-bottom: 4px;
  }
}

.bold {
  font-weight: bold;
}

.marker {
  font-weight: bold;
  background: linear-gradient(transparent 60%, rgba(196, 166, 113, 0.4) 60%);
}

.layout {
  display: grid;
  grid-template-columns: 268px 1fr;
  height: 100vh;
}
@media (max-width: 992px) {
  .layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    height: auto;
  }
}

.maincontents {
  overflow-y: auto;
}

.header {
  position: sticky;
  height: 100vh;
  line-height: 1;
  top: 0;
  overflow-y: auto;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 32px 24px;
  z-index: 1000;
  box-shadow: 2px 0 4px 0 rgba(0, 0, 0, 0.08);
}
@media (max-width: 992px) {
  .header {
    position: fixed;
    padding: 20px 40px;
    height: auto;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 12px 20px;
  }
}

.header__logo {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .header__logo {
    margin-bottom: 0;
  }
}
.header__logo a {
  display: block;
  transition: all 0.3s ease;
}
.header__logo a:hover {
  opacity: 0.7;
}
.header__logo a img {
  display: block;
  width: 148px;
  height: auto;
}
@media (max-width: 768px) {
  .header__logo a img {
    width: 120px;
  }
}

.menu-toggle {
  display: none;
}
@media (max-width: 992px) {
  .menu-toggle {
    position: absolute;
    top: 20px;
    right: 40px;
    background: rgb(255, 255, 255);
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 40px;
    width: 40px;
    padding: 0;
    z-index: 100;
  }
}
@media (max-width: 768px) {
  .menu-toggle {
    right: 16px;
    top: 9px;
  }
}

.menu-icon {
  background-color: #363636;
  height: 3px;
  width: 28px;
  border-radius: 8px;
  transition: all 0.4s ease-in-out 0s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.menu-icon:nth-child(1) {
  top: 9px;
}
.menu-icon:nth-child(2) {
  top: 18px;
}
.menu-icon:nth-child(3) {
  top: 27px;
}

.header__group {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .header__group {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
}

.header__head3 {
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .header__list li {
    margin-bottom: 8px;
  }
}
.header__list li a {
  color: #363636;
  padding: 12px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  background: linear-gradient(to right, #eee 50%, #fff 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 0.3s ease-in-out;
}
.header__list li a:hover {
  background-position: left bottom;
}
.header__list li a img {
  width: 16px;
  height: 16px;
}

.header__back {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .header__back {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
}

.header__back a {
  display: inline-flex;
  width: 100%;
  align-items: center;
  text-decoration: none;
  color: #363636;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  position: relative;
  background: linear-gradient(to right, #eee 50%, #fff 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .header__back a {
    padding: 8px;
  }
}
.header__back a:hover {
  background-position: left bottom;
}
.header__back a .header__icon {
  width: 20px;
  height: auto;
  display: block;
  margin-right: 4px;
}

.header__nav.active {
  height: calc(100vh - 74px);
  overflow-y: auto;
  padding-top: 48px;
}
.header__nav.active .header__group {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.header__nav.active .header__back {
  display: inline-flex;
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 992px) {
  .header__nav.active .menu-toggle .menu-icon:nth-child(1) {
    transform: translateY(0) rotate(225deg);
    top: 19px;
    left: 6px;
  }
  .header__nav.active .menu-toggle .menu-icon:nth-child(2) {
    transform: translateY(0) rotate(-225deg);
    left: 6px;
    top: 19px;
  }
  .header__nav.active .menu-toggle .menu-icon:nth-child(3) {
    display: none;
  }
}

.mv {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
  .mv {
    padding: 0 20px 20px;
  }
}

.mv__container {
  display: flex;
}
@media (max-width: 992px) {
  .mv__container {
    padding-top: 81px;
  }
}
@media (max-width: 768px) {
  .mv__container {
    flex-direction: column;
    gap: 20px;
  }
}

.mv__body {
  width: 400px;
  padding-left: 80px;
  padding-right: 40px;
  margin: auto 0;
  box-sizing: border-box;
}
@media (max-width: 1200px) {
  .mv__body {
    width: 340px;
  }
}
@media (max-width: 992px) {
  .mv__body {
    padding-left: 40px;
    width: 290px;
  }
}
@media (max-width: 768px) {
  .mv__body {
    padding: 0;
    width: 100%;
    order: 2;
  }
}

.mv__ttl {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: #363636;
  margin-bottom: 12px;
  font-weight: normal;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .mv__ttl {
    font-size: 24px;
  }
}
.mv__caption {
  color: #707070;
  font-size: 16px;
}

.mv__img {
  width: calc(100% - 400px);
}
@media (max-width: 1200px) {
  .mv__img {
    width: calc(100% - 340px);
  }
}
@media (max-width: 992px) {
  .mv__img {
    width: calc(100% - 290px);
  }
}
@media (max-width: 768px) {
  .mv__img {
    width: 100%;
    order: 1;
  }
}
.mv__img img {
  width: 100%;
  height: auto;
  display: block;
}

.about {
  padding: 48px 0;
  background-color: #f7f7f7;
}
@media (max-width: 992px) {
  .about {
    padding: 24px 0;
  }
}
@media (max-width: 768px) {
  .about {
    padding: 24px 0 48px;
  }
}

.about__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .about__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.about__visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.about__header {
  margin-bottom: 28px;
}

.about__name {
  font-size: 24px;
}

.about__role {
  color: #707070;
}

.about__section {
  margin-bottom: 28px;
}

.about__section-ttl {
  margin-bottom: 4px;
  font-size: 16px;
  position: relative;
  padding-left: 2.5em;
}

.about__section-ttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: #363636;
  transform: translateY(-50%);
}

.about__section-body {
  color: #505050;
  font-size: 16px;
}
@media (max-width: 768px) {
  .about__section-body {
    font-size: 14px;
  }
}

.anno {
  color: #707070;
}

.bold {
  font-weight: bold;
}

.section__header {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .section__header {
    margin-bottom: 16px;
  }
}

.section__ttl {
  font-size: 32px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .section__ttl {
    font-size: 24px;
  }
}

.section__subttl {
  position: relative;
  padding-left: 2.6rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .section__subttl {
    font-size: 14px;
  }
}

.section__subttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2.1rem;
  height: 1px;
  background: #363636;
  transform: translateY(-50%);
}

.skills {
  padding: 40px 0 64px;
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
}
@media (max-width: 992px) {
  .skills {
    padding: 24px 0 48px;
  }
}

.skills__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .skills__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}

.skills__card {
  padding: 24px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16);
  border-radius: 4px;
  background-color: #fff;
}

.skill-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.skill-card__title {
  font-size: 20px;
}
@media (max-width: 768px) {
  .skill-card__title {
    font-size: 18px;
  }
}

.skill-card__icon {
  background-color: #eee;
  display: inline-block;
  padding: 8px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .skill-card__icon {
    padding: 8px;
  }
}
.skill-card__icon img {
  display: block;
}

.skill-card__item {
  margin-bottom: 16px;
}
.skill-card__item:last-child {
  margin-bottom: 0;
}

.skill-card__item-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.skill-card__item-icon img {
  display: block;
}

.skill-card__item-title {
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 768px) {
  .skill-card__item-title {
    font-size: 14px;
  }
}

.skill-card__item-text {
  color: #505050;
  font-size: 14px;
  font-weight: 400;
}

.works {
  padding: 40px 0 64px;
  background-color: #fff;
}
@media (max-width: 992px) {
  .works {
    padding: 24px 0 48px;
  }
}

.works__anno {
  color: #505050;
  font-size: 16px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .works__anno {
    font-size: 14px;
  }
}

.works__card-cont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 1200px) {
  .works__card-cont {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .works__card-cont {
    gap: 24px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.works__card {
  background-color: #fff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}
.works__card:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.4);
  border: 1px solid #707070;
}

.card__img-cont img {
  width: 100%;
  height: auto;
}

.card__text {
  padding: 8px 24px 12px;
}
@media (max-width: 768px) {
  .card__text {
    padding: 8px 16px 16px;
  }
}

.card__ttl {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  color: #363636;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.card__ttl img {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .card__ttl {
    font-size: 16px;
  }
}

.card__desc {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  color: #505050;
}
@media (max-width: 768px) {
  .card__desc {
    font-size: 14px;
  }
}

.footer {
  background-color: #1a1a1a;
  padding: 40px 0 20px;
}
@media (max-width: 768px) {
  .footer {
    padding: 24px 0;
  }
}

.footer__nav {
  display: grid;
  margin-bottom: 32px;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .footer__nav {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}

.footer__nav-ttl {
  color: #FFF;
  font-size: 16px;
}
@media (max-width: 768px) {
  .footer__nav-ttl {
    font-size: 16px;
  }
}

.footer__nav-list a {
  color: #FFF;
  padding: 8px 20px;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer__nav-list a:hover {
  opacity: 0.7;
}
.footer__nav-list a img {
  width: 20px;
  height: 20px;
}

.footer__copyright {
  text-align: center;
  color: #FFF;
}
@media (max-width: 768px) {
  .footer__copyright {
    font-size: 14px;
  }
}

.fadein {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-in-out;
}

.fadein.show {
  opacity: 1;
  transform: translateY(0);
}

.scroll-fadein {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s ease-in-out;
}

.scroll-fadein.show {
  opacity: 1;
  transform: translateY(0);
}

.char {
  opacity: 0;
  transform: translateY(10px);
  display: inline-block;
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.article__cont {
  max-width: 780px;
  width: 100%;
  padding: 32px 40px;
  margin: 0 auto;
  background-color: #fff;
}
@media (max-width: 992px) {
  .article__cont {
    padding-top: 120px;
  }
}
@media (max-width: 768px) {
  .article__cont {
    padding: 80px 20px 40px;
  }
}

.art__hed1 {
  font-size: 40px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 16px;
  color: #363636;
}
@media (max-width: 768px) {
  .art__hed1 {
    font-size: 24px;
    margin-bottom: 12px;
  }
}

.art__p {
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 2;
  margin-bottom: 16px;
  color: #363636;
}
@media (max-width: 768px) {
  .art__p {
    font-size: 14px;
  }
}

.art__cate {
  margin-bottom: 16px;
}

.art__eyecatch {
  margin-bottom: 24px;
  position: relative;
}
.art__eyecatch a {
  transition: all 0.3s ease-in-out;
}
.art__eyecatch a .art__eyecatch-label {
  opacity: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  left: 0;
  position: absolute;
  font-size: 24px;
  color: #FFF;
  width: 100%;
  height: 100%;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
}
.art__eyecatch a .art__eyecatch-label img {
  width: 28px;
  margin-right: 8px;
  vertical-align: bottom;
}
.art__eyecatch a:hover .art__eyecatch-label {
  opacity: 1;
}
.art__eyecatch a .art__eyecatch-img {
  width: 100%;
  height: auto;
  display: block;
}

.art__eyecatch-img--nolink {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #e0e0e0;
}

.art__hed2 {
  font-size: 24px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  padding-bottom: 8px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 16px;
  color: #363636;
}
@media (max-width: 768px) {
  .art__hed2 {
    font-size: 20px;
  }
}

.art__hed3 {
  font-size: 20px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-bottom: 16px;
  color: #363636;
}
@media (max-width: 768px) {
  .art__hed3 {
    font-size: 16px;
  }
}

.art__list {
  margin-bottom: 24px;
}
.art__list li {
  color: #363636;
  font-size: 16px;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .art__list li {
    font-size: 14px;
  }
}
.art__list li::before {
  content: "•";
  margin-right: 8px;
  color: #1a1a1a;
}

.art__orderlist {
  margin-bottom: 24px;
  margin-left: 28px;
}
.art__orderlist li {
  list-style: decimal;
  color: #363636;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .art__orderlist li {
    font-size: 14px;
  }
}

.art__link {
  color: #0C66E4;
  transition: all 0.3s;
  border-bottom: 1px solid #0C66E4;
}
@media (max-width: 768px) {
  .art__link {
    font-size: 14px;
  }
}
.art__link img {
  width: 20px;
  vertical-align: sub;
}
.art__link:hover {
  opacity: 0.7;
}

.art__img {
  margin-bottom: 16px;
}
.art__img img {
  width: 100%;
  height: auto;
}

.art__bnr-img {
  margin-bottom: 16px;
}
.art__bnr-img img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .art__bnr-img img {
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.art__cv {
  display: flex;
  border: 1px solid #ccc;
  transition: all 0.3s ease-in-out;
  margin-bottom: 32px;
}
.art__cv:hover {
  box-shadow: 0 8px 12px 2px rgba(0, 0, 0, 0.2);
  border: 1px solid #999;
}
@media (max-width: 768px) {
  .art__cv {
    flex-direction: column;
  }
}

.art__cv-img {
  width: 40%;
  height: 100%;
}
@media (max-width: 768px) {
  .art__cv-img {
    width: 100%;
  }
}
.art__cv-img img {
  width: 100%;
  height: 100%;
  display: block;
}

.art__cv-text {
  width: 60%;
  padding: 24px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .art__cv-text {
    padding: 16px;
    width: 100%;
  }
}

.art__cv-ttl {
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: #363636;
  font-weight: bold;
  margin-bottom: 16px;
}
.art__cv-ttl img {
  margin-left: 8px;
}
@media (max-width: 768px) {
  .art__cv-ttl {
    font-size: 16px;
    margin-bottom: 8px;
  }
}

.art__cv-desc {
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: #707070;
}

.open-icon {
  width: 24px;
  margin-right: 8px;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .open-icon {
    width: 20px;
  }
}

.column2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .column2 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.box {
  padding: 20px;
  background-color: #f0f0f0;
}

.box-hed {
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-bottom: 12px;
}

.box-list li {
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.box-list li::before {
  content: "•";
  margin-right: 8px;
  color: #1a1a1a;
}

.box-p {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.02em;
}

.figma-prototype {
  width: 100%;
  height: 600px;
  border: 1px solid #ccc;
  margin-bottom: 16px;
}

.anno {
  color: #707070;
}

.art__memo {
  padding: 20px 28px;
  border: 1px solid #e0e0e0;
  background-color: #f7f7f7;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .art__memo {
    padding: 16px;
  }
}

.art__memo-head2 {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.art__memo-head3 {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 8px;
}
.art__memo-head3 img {
  vertical-align: bottom;
  margin-right: 8px;
}

.art__memo-container {
  gap: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .art__memo-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.art__memo-p {
  font-size: 14px;
  line-height: 2;
}

.art__memo-list li {
  font-size: 14px;
  position: relative;
  padding-left: 14px;
  line-height: 2;
  margin-bottom: 8px;
}
.art__memo-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.mb32 {
  margin-bottom: 32px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb48 {
  margin-bottom: 48px;
}/*# sourceMappingURL=style.css.map */