@charset "UTF-8";
/*!
global > color
------------------------------
*/
:root {
  --bg-hover: #464646;
  --bd-gray: #666666;
  --bd-l-gray: #e5e5e5;
  --font-gray: #808080;
}

/*!
foundation > reset
------------------------------
*/
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;
  -webkit-appearance: none;
  background-color: inherit;
}

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

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
  height: 100%;
}

tbody {
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

svg {
  display: block;
}

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

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

/*!
foundation > base
------------------------------
*/
html {
  font-size: 93.75%;
  height: auto;
}

body {
  font-family: Arial, "Noto sans JP", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  line-height: 2;
  color: #000;
  line-break: strict;
  /* フッター固定用 */
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}

main {
  /* フッター固定用 */
  /* 伸ばす:1, 縮ませない:0, 基本サイズ:自動 */
  flex: 1 0 auto;
}

a {
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.6;
}

button {
  transition: opacity 0.3s ease;
}

button:hover {
  opacity: 0.6;
}

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

figure {
  margin: 0;
}

input, textarea, select {
  font-size: 93.75%;
}

dt, dd {
  display: inline-block;
}

/*!
utility > utilities
------------------------------
*/
.u-br {
  display: block;
}

.u-br-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-br-sp {
    display: none;
  }
}

/*!
layout > header
------------------------------
*/
.l-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: #fff;
  display: flex;
  align-items: center;
  z-index: 100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 90px;
  }
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.l-header__logo-link {
  display: flex;
  align-items: baseline;
}
.l-header__logo-link img {
  width: 185px;
}
@media screen and (min-width: 768px) {
  .l-header__logo-link img {
    width: 230px;
  }
}
.l-header__logo-sub {
  font-size: 0.8rem;
  margin-left: 10px;
  line-height: 1;
}
.l-header__menu {
  display: flex;
  align-items: center;
  gap: 40px;
}
.l-header__nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.l-header__nav.is-open {
  visibility: visible;
  opacity: 1;
}

.single-post .l-header {
  display: none;
}

/*!
layout > nav
------------------------------
*/
.l-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  color: #fff;
  margin-left: auto;
  overflow: auto; /* スクロール可能にする */
  scrollbar-width: none; /* Firefox用：スクロールバー非表示 */
  -ms-overflow-style: none; /* IE/Edge用：スクロールバー非表示 */
  transition: transform 0.5s ease;
  transform: translateX(100%);
  z-index: 1000;
}
.l-nav::-webkit-scrollbar {
  display: none; /* Chrome, Safari用：スクロールバー非表示 */
}
.l-nav.is-open {
  transform: translateX(0);
  transition: transform 0.5s ease;
}
@media screen and (min-width: 768px) {
  .l-nav {
    width: 360px;
  }
}
.l-nav::-webkit-scrollbar {
  width: 6px;
}
.l-nav::-webkit-scrollbar-track {
  background: #000;
}
.l-nav::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 3px;
}
.l-nav__top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  height: 60px;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .l-nav__top {
    height: 80px;
    padding: 40px;
  }
}
.l-nav__sub-item:not(:last-child) {
  border-bottom: 1px solid #444;
}
.l-nav__link, .l-nav__sub-link {
  display: block;
  padding: 20px 30px;
}
.l-nav__link:hover, .l-nav__sub-link:hover {
  background-color: #464646;
  opacity: 1;
}
.l-nav__link {
  font-size: 1.067rem;
  font-weight: bold;
}
.l-nav__sub-link {
  font-size: 0.933rem;
  background-color: #262626;
  padding-left: 44px;
}

/*!
layout > footer
------------------------------
*/
.l-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 90px;
}
@media screen and (min-width: 768px) {
  .l-footer {
    height: 120px;
  }
}
.l-footer__copyright {
  font-size: 0.933rem;
}

/*!
layout > container
------------------------------
*/
.l-container,
.l-container-s {
  width: 100%;
  padding-inline: 20px;
  margin-inline: auto;
}

.l-container {
  max-width: 1280px;
}

.l-container-s {
  max-width: 600px;
}

/*!
layout > inner
------------------------------
*/
.l-inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .l-inner {
    padding-inline: 40px;
  }
}

/*!
component > hamburger
------------------------------
*/
.c-hamburger {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 5px;
  cursor: pointer;
}
.c-hamburger__line {
  width: 100%;
  height: 2px;
  background-color: #000;
  display: block;
  position: relative;
  transition: transform 0.4s ease;
}
.c-hamburger__line::before, .c-hamburger__line::after {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  transition: inherit;
}
.c-hamburger__line::before {
  top: -7px;
}
.c-hamburger__line::after {
  top: 7px;
}
.c-hamburger.is-active .c-hamburger__line {
  background-color: transparent;
}
.c-hamburger.is-active .c-hamburger__line::before, .c-hamburger.is-active .c-hamburger__line::after {
  top: 0;
  background-color: #fff;
}
.c-hamburger.is-active .c-hamburger__line::before {
  transform: rotate(45deg);
}
.c-hamburger.is-active .c-hamburger__line::after {
  transform: rotate(-45deg);
}

/*!
component > button
------------------------------
*/
.c-button {
  width: 180px;
  height: 44px;
  background-color: #000;
  border-radius: 50vw;
  color: #fff;
  text-align: center;
  font-size: 0.933rem;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

/*!
component > title
------------------------------
*/
.c-title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .c-title {
    margin-bottom: 30px;
    height: 100px;
  }
}
@media screen and (min-width: 768px) {
  .c-title--left {
    justify-content: flex-start;
  }
}
.c-title__heading {
  font-size: 2.267rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-title__heading {
    font-size: 2.933rem;
  }
  .c-title__heading--tag {
    font-size: 2.4rem;
  }
}

/*!
component > breadcrumb
------------------------------
*/
.c-breadcrumb {
  display: flex;
  align-items: center;
  font-size: 0.933rem;
  color: var(--font-gray);
  line-height: 1;
  height: 30px;
}
.c-breadcrumb__list {
  display: flex;
  gap: 12px;
  align-items: center;
}
.c-breadcrumb__item {
  display: flex;
  align-items: center;
}
.c-breadcrumb__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 12px;
  height: 9px;
  background: url(../img/icon-arrow__right-gray.svg) no-repeat center/cover;
  margin-left: 10px;
}
.c-breadcrumb__item:last-child {
  color: #000;
}
.c-breadcrumb__icon {
  width: 17px;
}

/*!
component > mail
------------------------------
*/
.c-mail {
  display: none;
}
@media screen and (min-width: 600px) {
  .c-mail {
    display: block;
  }
}
.c-mail.is-active {
  display: block;
}
.c-mail__icon {
  width: 27px;
}

/*!
component > portfolio
------------------------------
*/
.c-portfolio a:hover {
  opacity: 1;
}
.c-portfolio__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2px;
}
@media screen and (min-width: 600px) {
  .c-portfolio__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .c-portfolio__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1080px) {
  .c-portfolio__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.c-portfolio__item {
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  position: relative;
}
.c-portfolio__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.c-portfolio__link {
  position: relative;
  aspect-ratio: 1;
  display: block;
}
.c-portfolio__link img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  height: 100%;
  transition: opacity 0.6s ease;
}
.c-portfolio__img--before {
  opacity: 0;
}
.c-portfolio__img--after {
  opacity: 1;
}
.c-portfolio__link:hover .c-portfolio__img--before {
  opacity: 1;
}
@media (hover: none) {
  .c-portfolio__img--after {
    opacity: 1;
  }
  .c-portfolio__img--before {
    opacity: 0;
  }
  .c-portfolio__link:hover .c-portfolio__img--after {
    opacity: 1;
  }
}
.c-portfolio__tag {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  transition: opacity 0.3s ease;
}

/*!
component > pagination
------------------------------
*/
.c-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 80px;
  text-align: center;
}
.c-pagination__link, .c-pagination__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  line-height: 1;
}
.c-pagination__link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--bd-l-gray);
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-pagination__link {
    width: 50px;
    height: 50px;
  }
}
.c-pagination__link:hover {
  background-color: #000;
  color: #fff;
}
.c-pagination__link.is-current {
  background-color: #000;
  color: #fff;
  border: none;
  pointer-events: none;
}
.c-pagination__link--prev, .c-pagination__link--next {
  border: none;
  position: relative;
  transition: transform 0.3s ease;
}
.c-pagination__link--prev:hover, .c-pagination__link--next:hover {
  background: none;
  color: #333;
}
.c-pagination__link--prev::before, .c-pagination__link--next::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.9em;
  height: 0.9em;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .c-pagination__link--prev::before, .c-pagination__link--next::before {
    width: 1em;
    height: 1em;
  }
}
.c-pagination__link--prev:hover {
  transform: translateX(-5px);
}
.c-pagination__link--next::before {
  transform: translate(-50%, -50%) rotate(135deg);
}
.c-pagination__link--next:hover {
  transform: translateX(5px);
}

/*!
component > pagetop
------------------------------
*/
.c-pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background-color: #fff;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-pagetop {
    width: 64px;
    height: 64px;
  }
}
.c-pagetop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.c-pagetop:hover {
  opacity: 0.6;
}
.c-pagetop__icon {
  width: 20px;
  transition: opacity 0.3s ease;
}

/*!
component > form
------------------------------
*/
.c-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.c-form__label {
  display: block;
  font-weight: 500;
}
.c-form__field {
  width: 100%;
  border: 1px solid var(--bd-l-gray);
  border-radius: 4px;
  padding: 0.5em 1em;
  margin-top: 7px;
}
.c-form__field:focus {
  outline: none;
  border-color: var(--font-gray);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}
.c-form__field::placeholder {
  color: #aaa;
}
.c-form__required {
  color: #b51521;
  margin-left: 0.25em;
}
.c-form__btn {
  margin-top: 26px;
}

/*!
component > tag
------------------------------
*/
.c-tag {
  font-size: 0.933rem;
  line-height: 1;
  padding: 10px;
  border: 1px solid #c4c4c4;
  border-radius: 4px;
  background-color: #fff;
}
.c-tag:hover {
  background-color: #e5e5e5;
}

/*!
component > glightbox-custom
------------------------------
*/
.goverlay,
.glightbox-mobile .goverlay {
  background: #fff;
}

.ginner-container {
  height: 100dvh !important;
  max-width: 100% !important;
}
@media screen and (min-width: 768px) {
  .ginner-container {
    max-width: 95% !important;
  }
}

.gslide-external {
  max-height: 100dvh !important;
}

.glightbox-clean .gslide-media {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.glightbox-clean .gclose path, .glightbox-clean .gnext path, .glightbox-clean .gprev path {
  fill: #000;
}

.glightbox-clean .gclose svg {
  width: 22px;
}
.glightbox-clean .gclose svg:hover {
  opacity: 0.6;
}

.gclose svg, .gnext svg, .gprev svg {
  width: 30px;
}
.gclose svg:hover, .gnext svg:hover, .gprev svg:hover {
  opacity: 0.6;
}

.glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev {
  background-color: rgba(255, 255, 255, 0.32);
}
.glightbox-clean .gclose:hover, .glightbox-clean .gnext:hover, .glightbox-clean .gprev:hover {
  background-color: rgba(255, 255, 255, 0.32);
}

.glightbox-clean .gprev {
  left: 10px !important;
}

.glightbox-clean .gnext {
  right: 10px !important;
}

/*!
page > top
------------------------------
*/
/*!
page > work
------------------------------
*/
.p-work__heading {
  height: 94px;
  display: flex;
  justify-content: center;
  padding-top: 24px;
}
@media screen and (min-width: 768px) {
  .p-work__heading {
    height: 140px;
    align-items: center;
    padding-top: 0;
  }
}
.p-work__category {
  font-size: 1.067rem;
  line-height: 1;
  border-top: 1px solid var(--bd-l-gray);
  color: var(--font-gray);
}
@media screen and (min-width: 768px) {
  .p-work__category {
    font-size: 1.2rem;
  }
}
.p-work__list {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .p-work__list {
    height: 70px;
    gap: 4rem;
  }
}
.p-work__link:hover {
  color: #000;
}
.p-work__link.is-active {
  color: #000;
  font-weight: bold;
  pointer-events: none;
}

/*!
page > details
------------------------------
*/
.is-modal-open {
  scrollbar-width: none; /* Firefox用：スクロールバー非表示 */
  -ms-overflow-style: none; /* IE/Edge用：スクロールバー非表示 */
}
.is-modal-open::-webkit-scrollbar {
  display: none; /* Chrome, Safari用：スクロールバー非表示 */
}

.p-details {
  max-width: 600px;
  margin: 60px auto 20px;
}
@media screen and (min-width: 768px) {
  .p-details {
    max-width: 1280px;
  }
}
.p-details__img {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .p-details__img {
    gap: 50px;
    margin-bottom: 70px;
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .p-details__img-figures {
    flex-basis: 50%;
  }
}
.p-details__img-text {
  font-size: 1.467rem;
  font-weight: bold;
  margin: 0 auto 15px;
  line-height: 1;
  max-width: 94%;
}
@media screen and (min-width: 768px) {
  .p-details__img-text {
    margin-bottom: 20px;
    max-width: 100%;
  }
}
.p-details__title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.p-details__desc {
  max-width: 610px;
  font-size: 0.933rem;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 92%;
}
@media screen and (min-width: 768px) {
  .p-details__desc {
    max-width: 100%;
  }
}
.p-details__text {
  margin-bottom: 40px;
}
.p-details__tag {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .p-details__tag {
    margin-bottom: 70px;
  }
}
.p-details__time {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.933rem;
  color: var(--font-gray);
}
.p-details__time::before {
  content: "";
  background: url(../img/icon-clock.svg) no-repeat center/cover;
  display: inline-block;
  width: 14px;
  height: 14px;
}

/*!
page > about
------------------------------
*/
.p-about {
  display: flex;
  flex-direction: column-reverse;
  gap: 70px;
}
@media screen and (min-width: 768px) {
  .p-about {
    flex-direction: row;
    gap: 90px;
    align-items: center;
    padding-top: 22px;
  }
}
.p-about__body {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}
.p-about__mv {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 500px;
}
@media screen and (min-width: 768px) {
  .p-about__mv {
    width: 50%;
    height: 760px;
  }
}
.p-about__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .p-about__heading {
    flex-direction: row;
    justify-content: flex-start;
    height: auto;
    margin-bottom: 70px;
  }
}
.p-about__job {
  font-size: 0.933rem;
}
.p-about__name {
  font-size: 1.333rem;
  margin-bottom: 50px;
}
.p-about__career p {
  margin-bottom: 30px;
}
.p-about__contact {
  display: flex;
  align-items: center;
  gap: 5px;
}
.p-about__contact::before {
  content: "";
  background: url(../img/icon-mail-b.svg) no-repeat center/cover;
  display: inline-block;
  width: 20px;
  height: 15px;
}

/*!
page > contact
------------------------------
*/
.p-contact__note {
  font-size: 0.933rem;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact__note {
    margin-bottom: 50px;
  }
}

/*!
page > error
------------------------------
*/
.p-error__text {
  font-size: 0.933rem;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-error__text {
    margin-bottom: 50px;
  }
}
.p-error__text:last-child {
  margin-bottom: 65px;
}

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