@charset "UTF-8";
:root {
  --font-color: #333333;
  --white: #FFFFFF;
  --gray-bg: rgba(230, 229, 229, 0.8);
  --brown: #754C24;
}

:root {
  --contents-width: 1080px;
}

:root {
  --font-family-ja: "Noto Sans JP", sans-serif;
  --font-family-en: "Crafty Girls", cursive;
  --bold: 700;
  --medium: 500;
  --regular: 400;
}

.c-section-title {
  display: flex;
  align-items: center;
  flex-direction: column;
  row-gap: 0.3125rem;
}

.c-section-title-en {
  font-weight: var(--bold);
  font-size: 3.5rem;
}
@media screen and (max-width: 767px) {
  .c-section-title-en {
    font-size: 2rem;
  }
}

.c-section-title-ja {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-section-title-ja {
    font-size: 1rem;
  }
}

.c-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .c-items {
    grid-template-columns: repeat(1, 1fr);
  }
}

.c-item {
  background-color: var(--gray-bg);
  border-radius: 1rem;
}

.c-item a {
  display: block;
  padding: 6%;
  position: relative;
  z-index: 0;
}

.c-item a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(51, 51, 51, 0.2);
  border-radius: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  z-index: 10;
}

.c-item a::after {
  content: "";
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 3.125rem;
  height: 3.125rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  z-index: 20;
}

.c-item-img {
  margin-bottom: 1.5rem;
  display: block;
}

.c-item-title {
  font-size: 1.125rem;
  font-weight: var(--bold);
  text-align: center;
}

@media (any-hover: hover) {
  .c-item a:hover::before,
  .c-item a:hover::after {
    opacity: 1;
    visibility: visible;
  }
}
/* ----------------------------------------
  現在製作中
---------------------------------------*/
.c-item.is-coming a {
  opacity: 0.7;
  pointer-events: none;
}

.c-item-title span {
  font-size: 0.875rem;
}

.c-meta {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

.c-meta-item {
  font-size: 0.875rem;
  display: flex;
  column-gap: 0.5rem;
}

.c-meta-label {
  font-weight: var(--medium);
  flex-shrink: 0;
  width: 7rem;
}

.c-content-title {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  row-gap: 0.3125rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-content-title {
    align-items: flex-start;
  }
}

.c-content-title-en {
  font-weight: var(--bold);
  font-size: 2rem;
}
@media screen and (max-width: 1100px) {
  .c-content-title-en {
    font-size: 1.5rem;
  }
}

.c-content-title-ja {
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-content-title-ja {
    font-size: 0.875rem;
  }
}

.c-mv-bg {
  background-color: var(--gray-bg);
  border-radius: 1rem;
  padding: 2rem;
  background-image: linear-gradient(90deg, rgba(120, 120, 120, 0.08) 1px, transparent 1px), linear-gradient(rgba(120, 120, 120, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  background-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  .c-mv-bg {
    padding: 1.25rem;
  }
}

.c-page-title-area {
  margin-bottom: 4rem;
}

.c-page-title {
  font-weight: var(--bold);
  font-size: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .c-page-title {
    font-size: 1.5rem;
  }
}

html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

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

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

main {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  vertical-align: bottom;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
  font-size: 1rem;
}
@media screen and (max-width: 1100px) {
  html {
    font-size: clamp(12px, 1.5vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 4.2666666667vw;
    scroll-padding-top: 5rem;
  }
}

body {
  font-family: var(--font-family-ja);
  color: var(--font-color);
  font-weight: var(--regular);
  letter-spacing: 0.1em;
  line-height: 1.5;
  background-image: url(../img/bg.jpg);
  background-repeat: repeat;
  min-height: 100vh;
  font-size: 1rem;
}

.main,
.footer {
  margin-left: 20rem;
}
@media screen and (max-width: 767px) {
  .main,
  .footer {
    margin-left: 0;
  }
}

.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

.l-inner {
  max-width: var(--contents-width);
  padding: 0 2.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 1.25rem;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 20rem;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .header {
    max-width: 100%;
    height: 5rem;
    box-shadow: 0 2px 8px rgba(51, 51, 51, 0.2);
    background-color: var(--white);
  }
}

.header-inner {
  padding: 5rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .header-inner {
    padding: 0 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: inherit;
  }
}

.header-logo {
  max-width: 9.625rem;
  margin: 0 auto 2.5rem;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .header-logo {
    max-width: 5rem;
    margin: 0;
  }
}

.header-logo a {
  display: block;
}

.header-sp-button {
  display: none;
}
@media screen and (max-width: 1100px) {
  .header-sp-button {
    display: block;
    position: relative;
    width: 2rem;
    height: 1.375rem;
  }
}

@media screen and (max-width: 767px) {
  .header-sp-button span {
    display: inline-block;
    width: 2rem;
    height: 2px;
    background-color: var(--font-color);
    position: absolute;
    left: 0;
    transition: opacity 0.3s;
  }
}

@media screen and (max-width: 767px) {
  .header-sp-button span:nth-child(1) {
    top: 0;
    transition: transform 0.3s;
  }
}

@media screen and (max-width: 767px) {
  .header-sp-button span:nth-child(2) {
    top: 0.5rem;
    transition: opacity 0.3s;
  }
}

@media screen and (max-width: 767px) {
  .header-sp-button span:nth-child(3) {
    top: 1rem;
    transition: transform 0.3s;
  }
}

@media screen and (max-width: 767px) {
  .header-sp-button.active span:nth-child(1) {
    top: 1rem;
    transform: rotate(-45deg);
  }
}

@media screen and (max-width: 767px) {
  .header-sp-button.active span:nth-child(2) {
    opacity: 0;
  }
}

@media screen and (max-width: 767px) {
  .header-sp-button.active span:nth-child(3) {
    top: 1rem;
    transform: rotate(45deg);
  }
}

@media screen and (max-width: 767px) {
  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background-color: var(--white);
    margin-top: 5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
  }
}

@media screen and (max-width: 767px) {
  .header-nav.active {
    opacity: 1;
    visibility: visible;
  }
}

.header-nav-menu {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .header-nav-menu {
    padding: 2rem 0;
    overflow-y: auto;
  }
}

.header-nav-menu-item a {
  display: flex;
  align-items: center;
  flex-direction: column;
  row-gap: 0.3125rem;
}

.header-nav-menu-item-en {
  font-size: 1.5rem;
  font-weight: var(--bold);
  transition: opacity 0.3s;
}

.header-nav-menu-item-ja {
  font-size: 0.875rem;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .header-logo:hover,
  .header-sp-button:hover span,
  .header-nav-menu-item a:hover .header-nav-menu-item-en,
  .header-nav-menu-item a:hover .header-nav-menu-item-ja {
    opacity: 0.8;
  }
}
.footer {
  text-align: center;
  height: 4.8125rem;
  padding-top: 0.6875rem;
}

.footer img {
  max-width: 26.75rem;
}

/* ----------------------------------------
  mainvisual
---------------------------------------*/
.mainvisual {
  padding: 2.5rem 2.5rem 2.5rem 0;
}
@media screen and (max-width: 767px) {
  .mainvisual {
    padding: 6.25rem 1.25rem 1.25rem;
  }
}

.mainvisual-inner {
  height: 100%;
  display: flex;
  align-items: center;
  column-gap: 10rem;
  justify-content: space-between;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 1400px) {
  .mainvisual-inner {
    flex-direction: column;
  }
}

.mainvisual-inner::before {
  content: "Portfolio";
  font-family: var(--font-family-en);
  text-shadow: 4px 4px 8px rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
}
@media screen and (max-width: 767px) {
  .mainvisual-inner::before {
    font-size: 2.5rem;
  }
}

.mainvisual-top-img-area,
.mainvisual-bottom-img-area {
  display: flex;
  align-items: center;
  column-gap: 2rem;
}
@media screen and (max-width: 1400px) {
  .mainvisual-top-img-area,
  .mainvisual-bottom-img-area {
    justify-content: space-between;
    width: 100%;
  }
}

.mainvisual-top-right-img {
  position: relative;
  z-index: -1;
}

.mainvisual-top-right-img::after {
  content: "";
  background-image: url(../img/stamp-mark.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 8rem;
  height: 8rem;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1400px) {
  .mainvisual-top-right-img::after {
    display: none;
  }
}

/* ----------------------------------------
  about
---------------------------------------*/
.about {
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .about {
    padding: 3.5rem 0;
  }
}

.about-title {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .about-title {
    margin-bottom: 2.5rem;
  }
}

.about-name {
  margin-bottom: 1.25rem;
}

.about-description {
  line-height: 2;
}

/* ----------------------------------------
  skills-service
---------------------------------------*/
.skills-services {
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .skills-services {
    padding: 3.5rem 0;
  }
}

.skills-services-title {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .skills-services-title {
    margin-bottom: 2.5rem;
  }
}

.skills-services-items {
  max-width: 50rem;
  margin: 0 auto;
}

.skills-services-item {
  display: flex;
  column-gap: 2rem;
}
@media screen and (max-width: 767px) {
  .skills-services-item {
    flex-direction: column;
  }
}

.skills-services-item:first-of-type {
  margin-bottom: 2.5rem;
}

.skills-service-item-title {
  width: 8.9375rem;
}
@media screen and (max-width: 767px) {
  .skills-service-item-title {
    width: 100%;
  }
}

.skills-subtitle {
  margin-bottom: 0.5rem;
}

.skills-services-list {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  margin-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .skills-services-list {
    margin-top: 0;
  }
}

.skills-services-item:first-of-type .skills-services-list {
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 1rem;
  margin-bottom: 1rem;
}

.skills-services-list li::before {
  content: "・";
}

/* ----------------------------------------
  works
---------------------------------------*/
.works {
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .works {
    padding: 3.5rem 0;
  }
}

.works-title {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .works-title {
    margin-bottom: 2.5rem;
  }
}

.works-category-area:first-of-type {
  margin-bottom: 2.5rem;
}

.works-post {
  padding: 2.5rem 2.5rem 2.5rem 0;
}
@media screen and (max-width: 767px) {
  .works-post {
    padding: 6.25rem 1.25rem 1.25rem;
  }
}

.works-thumbnail-inner {
  max-width: 50rem;
  margin: 0 auto;
}

.works-post-content {
  max-width: 40rem;
  margin: 0 auto;
}

.works-post-content {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.works-post-text h2 {
  font-weight: var(--bold);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .works-post-text h2 {
    font-size: 1.25rem;
  }
}

.works-post-text p {
  margin-bottom: 2rem;
  line-height: 2;
}

.works-post-text ul {
  margin-bottom: 4rem;
}

.works-post-text ul li {
  line-height: 2;
  margin-bottom: 0.5rem;
}

.works-post-link {
  display: flex;
  column-gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .works-post-link {
    flex-direction: column;
    row-gap: 0.5rem;
  }
}

.works-post-link span {
  font-weight: var(--medium);
}

.works-post-link a {
  text-decoration: underline;
  color: var(--brown);
}

.works-post-note {
  margin: 2rem 0 1rem;
}

.works-post-meta li {
  display: flex;
  column-gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.works-post-meta li span:first-of-type {
  font-weight: var(--medium);
  width: 7rem;
  flex-shrink: 0;
}/*# sourceMappingURL=style.css.map */