@charset "UTF-8";
.c-section-title {
  font-family: var(--font-family-english);
  color: var(--color-white);
  font-size: 30px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .c-section-title {
    font-size: 36px;
  }
}

.c-section-title.-reverse {
  color: var(--color-black);
}

.c-page-title {
  font-family: var(--font-family-english);
  font-size: 30px;
  color: var(--color-white);
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  white-space: nowrap;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .c-page-title {
    font-size: 36px;
  }
}

.c-work-hero-title {
  font-family: var(--font-family-english);
  color: var(--color-gold);
  text-shadow: 5px 0 10px var(--color-white);
  font-size: 30px;
  white-space: nowrap;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .c-work-hero-title {
    font-size: 40px;
  }
}
@media screen and (min-width: 1080px) {
  .c-work-hero-title {
    font-size: 50px;
  }
}

.c-work-detail-title {
  font-size: 20px;
  font-weight: bold;
  border-bottom: 2px solid var(--color-gold);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .c-work-detail-title {
    font-size: 24px;
    width: 200px;
    border-bottom: transparent;
  }
}

.c-work-point-title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-work-point-title {
    font-size: 18px;
  }
}

.c-section-button {
  color: var(--color-white);
  position: relative;
  text-align: right;
}
.c-section-button::before {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -14px;
  width: 100px;
  height: 1px;
  background: var(--color-white);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.c-section-button::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: -15px;
  width: 15px;
  height: 1px;
  background: var(--color-white);
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.c-section-button:hover::before {
  right: -24px;
}
.c-section-button:hover::after {
  right: -25px;
}

.c-section-button.-reverse {
  color: var(--color-black);
}
.c-section-button.-reverse::before {
  background: var(--color-black);
}
.c-section-button.-reverse::after {
  background: var(--color-black);
}

.c-form-button {
  text-align: center;
  color: var(--color-black);
  background: var(--color-white);
  width: 120px;
  height: 50px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 auto;
}
.c-form-button:not(:first-child) {
  margin-left: 10px;
}

.c-submit-button {
  font-size: 16px;
  line-height: 50px;
}

.c-home-button {
  color: var(--color-white);
  margin-top: 10px;
  text-align: center;
}

.c-home-button a:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.c-works-item-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin: 0 auto;
  border: 1px solid var(--color-border);
}

.c-works-item-image img:hover {
  -webkit-transform: scale(1.05, 1.05);
          transform: scale(1.05, 1.05);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.c-works-item-title {
  font-size: 20px;
  font-weight: bold;
  font-family: var(font-family-english);
}
@media screen and (min-width: 500px) {
  .c-works-item-title {
    font-size: 24px;
  }
}

.c-works-item-text {
  margin-top: 5px;
  color: var(--color-font-works);
  font-size: 10px;
}
@media screen and (min-width: 500px) {
  .c-works-item-text {
    font-size: 12px;
  }
}

.c-work-outline-item {
  color: var(--color-white);
  font-family: var(--font-family-english);
  margin-top: 10px;
}

.c-work-outline-item a:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.c-contact-text {
  color: var(--color-white);
  text-align: center;
}

.c-about-job {
  text-align: center;
  color: var(--color-white);
  display: block;
  font-size: 12px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .c-about-job {
    font-size: 14px;
  }
}

.c-about-job.-reverse {
  color: var(--color-black);
  text-align: left;
}

/*!
foundation > base
------------------------------
*/
body {
  font-size: 14px;
  color: var(--color-font-base);
  font-family: var(--font-family-base);
  font-weight: normal;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.5;
  }
}

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

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

/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/*!
global > font
------------------------------
*/
:root {
  --font-family-base: "Zen Old Mincho", sans-serif;
  --font-family-english: "Libre Baskerville", sans-serif;
}

/*!
global > color
------------------------------
*/
:root {
  --color-white: #fff;
  --color-black: #333;
  --color-gold: #C4AD6F;
  --color-red: #a83B3A;
  --color-title-black: #58574C;
  --color-font-works: #767676;
  --color-border: #F7F7F7;
}

/*!
global > content-width
------------------------------
*/
:root {
  --width-content-s: 960px;
  --width-content-m: 1080px;
  --width-content-l: 1200px;
}

/*!
layout > container
------------------------------
*/
.l-container-l, .l-container-m, .l-container-s {
  width: 90%;
  margin: 0 auto;
}

.l-container-s {
  max-width: var(--width-content-s);
}

.l-container-m {
  max-width: var(--width-content-m);
}

.l-container-l {
  max-width: var(--width-content-l);
}

.l-header {
  width: 100vw;
  height: 40px;
  line-height: 40px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--color-white);
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 80px;
    line-height: 80px;
  }
}

.header-inner {
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .header-inner {
    padding: 0 40px;
  }
}

.header-title {
  font-family: var(--font-family-english);
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .header-title {
    font-size: 20px;
  }
}

.header-title a:hover {
  color: var(--color-gold);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.gnav-item {
  font-family: var(--font-family-english);
  font-size: 16px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .gnav-item {
    font-size: 20px;
  }
}

.gnav-item a:hover {
  color: var(--color-gold);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger-btn {
  font-family: var(--font-family-english);
  font-size: 20px;
  text-transform: uppercase;
}

/*================================
MENU CLOSE時
================================*/
.gnav {
  display: none;
}
@media screen and (min-width: 768px) {
  .gnav {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .gnav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 20px;
  }
}

.hamburger-btn {
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .hamburger-btn {
    display: none;
  }
}

.gnav-close {
  display: none;
}

/*================================
MENU OPEN時
================================*/
.open .gnav {
  width: 100vw;
  height: 100vh;
  display: block;
  position: fixed;
  padding-top: 25px;
  color: var(--color-white);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 100;
}

.open .gnav-list {
  padding-top: 100px;
  width: 100px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px 0;
  z-index: 1000;
}

.open .gnav-open {
  display: none;
}

.open .gnav-close {
  display: block;
  color: var(--color-white);
}

.open #js-mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-black);
  cursor: pointer;
  z-index: 100;
}

/*================================
ドロップダウンメニュー
================================*/
.gnav-dropdown {
  position: relative;
  display: inline-block;
}
.gnav-dropdown::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-bottom: solid 2px var(--color-white);
  border-right: solid 2px var(--color-white);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 13px;
  right: 20px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .gnav-dropdown::before {
    border-bottom: solid 2px var(--color-black);
    border-right: solid 2px var(--color-black);
    top: 32px;
    right: 10px;
  }
}

.lang-list {
  visibility: hidden;
  opacity: 0;
  line-height: 2;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .lang-list {
    font-size: 16px;
  }
}

.gnav-dropdown:hover .lang-list {
  visibility: visible;
  opacity: 1;
}

.l-footer {
  width: 100vw;
  height: 40px;
  line-height: 40px;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
@media screen and (min-width: 768px) {
  .l-footer {
    height: 80px;
    line-height: 80px;
  }
}

.footer-inner {
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .footer-inner {
    padding: 0 40px;
  }
}

.footer-copyright {
  color: var(--color-black);
  font-size: 12px;
}

.footer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0 10px;
}
@media screen and (min-width: 768px) {
  .footer-list {
    gap: 0 20px;
  }
}

.footer-list-item img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.footer-chars {
  color: var(--color-black);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 12px;
  text-transform: uppercase;
}
.footer-chars:hover {
  color: var(--color-gold);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/*!
utility > utility
------------------------------
*/
.u-mt {
  margin-top: 30px !important;
}
@media screen and (min-width: 768px) {
  .u-mt {
    margin-top: 48px !important;
  }
}

.u-ptb {
  padding: 40px 0 !important;
}
@media screen and (min-width: 768px) {
  .u-ptb {
    padding: 64px 0 !important;
  }
}

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

.u-tb {
  display: none;
}
@media screen and (min-width: 500px) {
  .u-tb {
    display: block;
  }
}

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

.hero {
  font-size: 50px;
  width: 100vw;
  height: 100vh;
  text-align: center;
  position: relative;
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .hero {
    padding-top: 80px;
  }
}

.hero-text-container {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  white-space: wrap;
}

.hero-text {
  font-family: var(--font-family-english);
  color: var(--color-title-black);
  font-size: 48px;
}
.hero-text:not(:first-child) {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .hero-text {
    font-size: 72px;
  }
  .hero-text:not(:first-child) {
    margin-top: 25px;
  }
}

.char {
  display: inline-block;
  letter-spacing: -0.25em;
}

.luna {
  color: var(--color-gold);
  text-shadow: 10px 0px 10px var(--color-title-black);
}

/*========================================
テキストアニメーション
========================================*/
.hero-text .char {
  -webkit-animation-name: kf-animate-chars;
          animation-name: kf-animate-chars;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: cubic-bezier(0.39, 1.57, 0.58, 1);
          animation-timing-function: cubic-bezier(0.39, 1.57, 0.58, 1);
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.hero-text .char:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.hero-text .char:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.hero-text .char:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.hero-text .char:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.hero-text .char:nth-child(5) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.hero-text .char:nth-child(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.hero-text .char:nth-child(7) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.hero-text .char:nth-child(8) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.hero-text .char:nth-child(9) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

@-webkit-keyframes kf-animate-chars {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes kf-animate-chars {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.hero-text .luna {
  -webkit-animation: 1s fadeup ease-in-out forwards;
          animation: 1s fadeup ease-in-out forwards;
  opacity: 0;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

@-webkit-keyframes fadeup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*========================================
PC テキスト表示位置
========================================*/
@media screen and (min-width: 768px) {
  .hero-text {
    padding-left: 5%;
    padding-right: 5%;
  }
  .hero-text.-first {
    text-align: left;
  }
  .hero-text.-second {
    text-align: center;
  }
  .hero-text.-third {
    text-align: right;
  }
}
/*========================================
下矢印アニメーション
========================================*/
.hero__footer {
  position: relative;
  height: 70px;
  width: 20px;
  overflow: hidden;
}

.hero-downarrow {
  position: absolute;
  left: 50%;
  bottom: 20px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 7px;
  -webkit-animation-name: kf-arrow-anime;
          animation-name: kf-arrow-anime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes kf-arrow-anime {
  0%, 50%, 100% {
    -webkit-transform: translateY(-15%);
            transform: translateY(-15%);
  }
  30% {
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes kf-arrow-anime {
  0%, 50%, 100% {
    -webkit-transform: translateY(-15%);
            transform: translateY(-15%);
  }
  30% {
    -webkit-transform: none;
            transform: none;
  }
}
.hero-scrolltext {
  position: absolute;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  color: var(--color-black);
  left: 50%;
  bottom: 50px;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .hero-scrolltext {
    font-size: 20px;
  }
}

.about {
  background: var(--color-black);
}

.about-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px 0;
}
@media screen and (min-width: 768px) {
  .about-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 48px;
  }
}

.about-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 1080px) {
  .about-image {
    max-width: 500px;
  }
}

.about-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px 0;
}
@media screen and (min-width: 768px) {
  .about-body {
    gap: 30px 0;
    width: 90%;
  }
}

.about-name {
  color: var(--color-gold);
  font-weight: bold;
  font-size: 28px;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .about-name {
    font-size: 32px;
  }
}

.about-text {
  color: var(--color-white);
}

.works {
  background: var(--color-white);
}

.contact {
  background: var(--color-black);
}

.top-contact-form {
  text-align: center;
}

.contact-form {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact-form {
    text-align: left;
  }
}

.form-item:not(:first-child) {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .form-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 15px;
  }
}

.form-input {
  margin-top: 5px;
}

.form-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .form-title {
    width: 200px;
  }
}

.form-require {
  font-size: 10px;
  color: var(--color-red);
  margin-left: 5px;
}

/*==============================
コンタクトフォーム 体裁
==============================*/
.form-input.-name,
.form-input.-email,
.form-input.-title {
  background-color: var(--color-white);
  width: 90%;
  max-width: 285px;
  height: 43px;
  border-radius: 6px;
  padding: 8px;
}
@media screen and (min-width: 768px) {
  .form-input.-name,
  .form-input.-email,
  .form-input.-title {
    width: 300px;
  }
}

.form-input.-question {
  background-color: var(--color-white);
  width: 90%;
  width: 300px;
  height: 200px;
  border-radius: 6px;
  color: var(--color-contact-inner-font);
  padding: 8px;
}
@media screen and (min-width: 768px) {
  .form-input.-question {
    width: 400px;
  }
}
@media screen and (min-width: 1080px) {
  .form-input.-question {
    width: 600px;
  }
}

.works-footer a:hover {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0.7;
}

@media screen and (min-width: 500px) {
  .career-body {
    display: grid;
    grid-template-columns: 2fr 1fr 8fr;
    gap: 16px 24px;
  }
}
@media screen and (min-width: 768px) {
  .career-body {
    grid-template-columns: 1fr 1fr 8fr;
  }
}

.career-date {
  font-weight: bold;
  font-size: 18px;
  margin-top: 10px;
  border-bottom: 2px solid var(--color-gold);
  line-height: 1.8;
}
.career-date:nth-child(1) {
  margin-top: 0;
}
@media screen and (min-width: 500px) {
  .career-date {
    margin-top: 0;
    border-bottom: transparent;
  }
}
@media screen and (min-width: 768px) {
  .career-date {
    font-size: 16px;
  }
}

.career-circle {
  text-align: center;
}

.career-text {
  margin-top: 5px;
  padding-left: 5%;
  padding-right: 5%;
}
@media screen and (min-width: 500px) {
  .career-text {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.about-skill {
  background: var(--color-black);
}

.skill-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.skill-item {
  width: 10%;
  height: auto;
}

.skill-item img {
  -webkit-filter: invert(88%) sepia(61%) saturate(0%) hue-rotate(229deg) brightness(107%) contrast(101%);
          filter: invert(88%) sepia(61%) saturate(0%) hue-rotate(229deg) brightness(107%) contrast(101%);
}

.skill-text {
  color: var(--color-white);
  text-align: center;
}

.strength-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px 0;
}
@media screen and (min-width: 500px) {
  .strength-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 30px;
  }
}

.strength-item {
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}
@media screen and (min-width: 500px) {
  .strength-item {
    width: 33.3333333333%;
  }
}

.strength-item.fadein {
  opacity: 1;
  -webkit-transition: all 2s ease-in-out;
  transition: all 2s ease-in-out;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.strength-title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.8;
  border-bottom: 2px solid var(--color-gold);
}
@media screen and (min-width: 768px) {
  .strength-title {
    font-size: 24px;
  }
}

.strength-text {
  margin-top: 5px;
  padding-left: 5%;
  padding-right: 5%;
}

.error {
  margin-top: 40px;
  background: var(--color-black);
  color: var(--color-white);
  height: calc(100vh - 40px - 40px);
}
@media screen and (min-width: 768px) {
  .error {
    margin-top: 80px;
    height: calc(100vh - 80px - 80px);
  }
}

.error-text {
  text-align: center;
}

.p-works-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px 0;
}
@media screen and (min-width: 500px) {
  .p-works-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 32px;
  }
}
@media screen and (min-width: 1080px) {
  .p-works-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.p-works-item-body {
  margin-top: 20px;
  text-align: center;
}
@media screen and (min-width: 500px) {
  .p-works-item-body {
    text-align: left;
  }
}

.p-page-hero {
  margin-top: 40px;
  background: url(../images/page-hero-bg.png);
  background-size: 100px;
  background-repeat: repeat;
  height: 180px;
  position: relative;
  border-bottom: 1px solid var(--color-border);
}
@media screen and (min-width: 768px) {
  .p-page-hero {
    margin-top: 80px;
    height: 240px;
  }
}

.p-work-hero {
  margin-top: 40px;
  background: url(../images/page-hero-bg.png);
  background-size: 100px;
  background-repeat: repeat;
}
@media screen and (min-width: 768px) {
  .p-work-hero {
    margin-top: 80px;
  }
}

@media screen and (min-width: 768px) {
  .p-work-hero-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 20px;
  }
}

.p-work-mockup {
  margin-top: 16px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-work-mockup {
    margin-top: 24px;
  }
}

.p-work-detail-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px 0;
}

@media screen and (min-width: 768px) {
  .p-work-detail-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 32px;
  }
}

.p-work-detail-body {
  margin-top: 5px;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .p-work-detail-body {
    margin-top: 0;
    padding-left: 0;
    width: calc(100% - 200px - 32px);
  }
}

.p-work-point-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px 0;
}

.p-contact-confirm {
  width: 100vw;
  min-height: calc(100vh - 40px - 40px);
  margin-top: 40px;
  background: var(--color-black);
}
@media screen and (min-width: 768px) {
  .p-contact-confirm {
    margin-top: 80px;
    min-height: calc(100vh - 80px - 80px);
  }
}

.p-contact-confirm > .contact-form {
  color: var(--color-white);
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .p-contact-confirm > .contact-form {
    font-size: 16px;
  }
}

.p-contact-confirm > .form-title {
  width: 200px;
}

.p-contact-confirm .form-input {
  color: var(--color-white);
}

.contact-form-button {
  text-align: center;
}

input[type=submit] {
  color: var(--color-black);
  display: inline-block;
  background-color: var(--color-white);
  cursor: pointer;
  border: none;
  border-radius: 50%;
  padding-inline: 10px;
  margin-inline: 5px;
}
input[type=submit]:hover {
  opacity: 0.7;
  -webkit-transition: all;
  transition: all;
}

button[type=button] {
  color: var(--color-black);
  display: inline-block;
  background-color: var(--color-white);
  cursor: pointer;
  border: none;
  border-radius: 50%;
  padding-inline: 10px;
  margin-inline: 5px;
}/*# sourceMappingURL=style.css.map */