/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  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 {
  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] {
  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 */
  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 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * 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;
}

/**
 * 1. 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 */
}

/**
 * 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;
}

:root {
  --vw: 1vw;
  scroll-behavior: smooth;
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 1440px) and (min-width: 767.1px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga" 1, "kern" 1;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0;
  color: #000;
  line-break: strict;
  min-width: 130rem;
}
@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
    font-size: 1.4rem;
  }
}

.js-preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

img {
  image-rendering: -webkit-optimize-contrast;
  image-orientation: none;
  width: 100%;
  height: auto;
}
.safari img {
  image-rendering: inherit;
}

/* mouseover
--------------------------------------------------*/
@media screen and (min-width: 1440.1px) {
  .over:hover {
    opacity: 0.6;
    transition: opacity 0.3s;
  }
}
label {
  cursor: pointer;
}

/* main
--------------------------------------------------*/
.f-wrap {
  max-width: 112.8rem;
  margin: 0 auto;
  /*
  @include deviceTABmin{
  	padding: 0 2rem;
  }
  */
}
@media screen and (max-width: 767px) {
  .f-wrap {
    width: auto;
  }
}

.simplebar-content-wrapper::-webkit-scrollbar {
  display: none;
}

.js-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.is-inview {
  opacity: 1;
  transform: none;
}

/* link
--------------------------------------------------*/
a {
  color: #000;
  transition: 0.3s;
  will-change: transform, opacity;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    text-decoration: none;
    opacity: 0.8;
  }
}

a[href*="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: all;
  }
}

/* input
--------------------------------------------------*/
button {
  color: #000;
  transition: 0.3s;
  will-change: transform;
}
button:focus {
  text-decoration: none;
}

.l-header {
  position: fixed;
  top: 1.5rem;
  left: 2rem;
  width: calc(100% - 4rem);
  z-index: 100;
  background: #fff;
  padding: 1.5rem 2.2rem 1.5rem 3.2rem;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .l-header {
    padding: 1rem 1rem 1rem 1.5rem;
  }
}
.l-header-head {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 10;
}
.l-header-head__logo {
  width: 12.8rem;
}
@media screen and (max-width: 767px) {
  .l-header-head__logo {
    width: 9.7rem;
  }
}
.l-header-menu {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 16rem;
}
@media screen and (max-width: 767px) {
  .l-header-menu {
    width: 15rem;
    gap: 0;
  }
}
.l-header-menu-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 3.6rem;
}
@media screen and (max-width: 767px) {
  .l-header-menu-list {
    display: none;
  }
}
.l-header-menu-list__item {
  font-family: termina, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 1.4rem;
}
.l-header-menu-list__item:first-child {
  width: 18rem;
}
.l-header-menu-list__item:nth-child(2) {
  width: 14rem;
}
.l-header-menu-list__item:nth-child(3) {
  width: 16rem;
}
.l-header-menu-list__item:last-child {
  width: 10rem;
}
.l-header-menu-list__item a {
  position: relative;
  display: block;
  color: #000;
  text-align: center;
  height: 2rem;
}
@media (hover: hover) and (pointer: fine) {
  .l-header-menu-list__item a:hover .en {
    opacity: 0;
  }
  .l-header-menu-list__item a:hover .ja {
    opacity: 1;
  }
}
.l-header-menu-list__item .en {
  display: block;
  opacity: 1;
  line-height: 1;
  letter-spacing: 0.1em;
  padding: 0.2rem 0 0 0;
}
.l-header-menu-list__item .ja {
  position: absolute;
  top: 50%;
  left: 50%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: translate(-50%, -50%);
}
.l-header-menu-list__item .ja .wave-line-icon {
  line-height: 1;
  margin-right: 0.8rem;
}
.l-header-menu-list__item .ja .wave-line-icon svg {
  width: 2rem;
  height: 2rem;
}
.l-header-menu-list__item .ja .wave-line-icon svg rect {
  fill: #000;
}
.l-header-menu-list__item .ja .txt {
  display: block;
  font-family: termina, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
}
.l-header-menu__btn {
  font-family: termina, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  width: 18rem;
  height: 4.4rem;
  letter-spacing: 0.28em;
  border-radius: 3rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-header-menu__btn {
    width: 10.7rem;
    height: 3rem;
    letter-spacing: 0.15em;
  }
}
.l-header-menu__btn.recruiting_private {
  opacity: 0.3;
  pointer-events: none;
}
.l-header-menu__btn a {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #000;
  color: #fff;
  padding: 0 0 0 6rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-header-menu__btn a {
    padding: 0 0 0 3.2rem;
  }
}
.l-header-menu__btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.3rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #fff;
  transform: translateY(-50%);
  border-radius: 100%;
  opacity: 0.4;
}
@media screen and (max-width: 767px) {
  .l-header-menu__btn a::before {
    left: 0.9rem;
    width: 1.6rem;
    height: 1.6rem;
    opacity: 1;
  }
}
.l-header-menu__btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 2.2rem;
  width: 1rem;
  height: 1.1rem;
  background: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  transform: translateY(-50%);
  transition: 0.3s;
  opacity: 0.4;
}
@media screen and (max-width: 767px) {
  .l-header-menu__btn a::after {
    left: 1.5rem;
    width: 0.6rem;
    height: 0.7rem;
    opacity: 1;
  }
}
.l-header-menu__btn a .circle {
  position: absolute;
  top: 50%;
  left: 1.3rem;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 1;
  transform: translateY(-50%);
}
.l-header-menu__btn a .circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.l-header-menu__btn a .circle circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 2;
  stroke-dasharray: 301.59;
  stroke-dashoffset: 301.59;
  transition: stroke 0.3s ease, stroke-dashoffset 0.6s ease;
}
.l-header-menu__btn a .text {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-header-menu__btn a .text {
    font-size: 1.2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-header-menu__btn a:hover {
    opacity: 1;
  }
  .l-header-menu__btn a:hover::after {
    opacity: 1;
  }
  .l-header-menu__btn a:hover .circle circle {
    stroke: #fff;
    stroke-dashoffset: 0;
  }
}
.l-header-menu-toggle {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header-menu-toggle {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
  }
}
.l-header-menu-toggle__inner {
  position: relative;
  width: 2rem;
  height: 0.7rem;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .l-header-menu-toggle__inner:hover {
    opacity: 0.8;
  }
}
.l-header-menu-toggle__inner span {
  position: absolute;
  width: 100%;
  height: 0.2rem;
  background: #fff;
  transition: 0.3s;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .l-header-menu-toggle__inner span {
    width: 2.5rem;
    height: 1px;
    background: #000;
  }
}
.l-header-menu-toggle__inner span:first-child {
  top: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .l-header-menu-toggle__inner span:first-child {
    top: 0;
  }
}
.is-fixed .l-header-menu-toggle__inner span:first-child {
  top: 50%;
  transform: translate(-50%, -50%) rotate(25deg);
}
.l-header-menu-toggle__inner span:last-child {
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .l-header-menu-toggle__inner span:last-child {
    bottom: 0;
  }
}
.is-fixed .l-header-menu-toggle__inner span:last-child {
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%) rotate(-25deg);
}
.l-header-menu-toggle__inner span:nth-child(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.is-fixed .l-header-menu-toggle__inner span:nth-child(2) {
  opacity: 0;
}
.l-header-nav {
  pointer-events: none;
  opacity: 0;
  position: fixed;
  background: #fff;
  transition: opacity 0.3s;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .l-header-nav {
    top: 5.5rem;
    left: 2rem;
    width: calc(100% - 4rem);
    height: calc(100% - 6.5rem);
    padding: 2.5rem 3rem;
    overflow-y: scroll;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    opacity: 0;
  }
}
.is-fixed .l-header-nav {
  pointer-events: all;
  opacity: 1;
}
.l-header-nav-list__item {
  border-bottom: 1px solid #000;
}
.l-header-nav-list__item .en {
  display: block;
  text-align: right;
  line-height: 1;
  font-family: termina, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: 2.4rem;
}
.l-header-nav-list__item .ja {
  display: block;
  text-align: right;
  line-height: 1;
  font-size: 1rem;
  font-weight: 600;
  margin: 1rem 0 0;
}
.l-header-nav-list__item a {
  display: block;
  padding: 1.5rem 0;
}
.l-header-nav-list__parent {
  position: relative;
  display: block;
  padding: 1.5rem 0;
}
.l-header-nav-list__parent.is-open::before {
  transform: translateY(-50%) rotate(180deg);
}
.l-header-nav-list__parent::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2rem;
  width: 0.8rem;
  height: 0.7rem;
  background: #000;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transform: translateY(-50%);
}
.l-header-nav-child {
  display: none;
  padding: 0 0 1rem;
}
.l-header-nav-child__item .en {
  font-size: 1.4rem;
}
.l-header-nav-child__item a {
  padding: 1rem 0;
}
.l-header-nav__copy {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1;
  margin: 2.5rem 0 0;
}
.l-header-nav__design {
  text-align: center;
  font-size: 1rem;
  line-height: 1;
  color: rgba(0, 0, 0, 0.5);
  margin: 1rem 0 0;
}
.l-header-nav__close {
  width: 4.5rem;
  height: auto;
  cursor: pointer;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .l-header-nav__close:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .l-header-nav__close {
    width: 5.5rem;
  }
}
.-member .l-header-nav__close img {
  filter: brightness(0) invert(1);
}
.l-header-nav__main {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 3rem 0;
}
.l-header-nav__sub {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .l-header-nav__sub {
    flex-wrap: wrap;
    gap: 3rem 0;
  }
}
.l-header-nav__link {
  font-family: termina, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-header-nav__link {
    font-size: 1.9rem;
  }
}
.l-header-nav__link a {
  color: #DB2509;
}
.-member .l-header-nav__link a {
  color: #fff;
}
.l-header-nav__link a span {
  display: block;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: 1.2rem;
  color: #000;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
.-member .l-header-nav__link a span {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-header-nav__link a span {
    font-size: 1.2rem;
  }
}
.l-header-nav__main .l-header-nav__link {
  width: 18rem;
}
@media screen and (max-width: 767px) {
  .l-header-nav__main .l-header-nav__link {
    width: 50%;
  }
}
.l-header-nav__sub .l-header-nav__link {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .l-header-nav__sub .l-header-nav__link {
    width: 50%;
    font-size: 1.9rem;
  }
}
.l-header-nav__sub .l-header-nav__link a span {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .l-header-nav__sub .l-header-nav__link a span {
    font-size: 1.2rem;
  }
}
.l-header-bnr {
  width: 45.1rem;
  height: 11.2rem;
  margin: 3.6rem auto 6rem;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-header-bnr {
    width: 100%;
    height: 8.2rem;
    margin: 4rem 0;
  }
}
.l-header-bnr a {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-flow: column;
  width: 100%;
  height: 100%;
  background: url(../img/common/bnr_nav.jpg) center center/cover no-repeat;
}
.l-header-bnr a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background: #DB2509;
  border-radius: 100%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .l-header-bnr a::before {
    right: 1rem;
    width: 2.3rem;
    height: 2.3rem;
  }
}
.l-header-bnr a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3.2rem;
  width: 0.6rem;
  height: 0.6rem;
  background: #fff;
  border-radius: 100%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .l-header-bnr a::after {
    right: 1.55rem;
    width: 1.2rem;
    height: 1.2rem;
    background: url(../img/common/icn_arrow_r.svg) 0 0/100% auto no-repeat;
  }
}
.l-header-bnr__ttl {
  text-align: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}
.l-header-bnr__en {
  font-family: termina, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 2.2rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-header-bnr__en {
    letter-spacing: -0.03em;
    font-size: 1.6rem;
  }
}
.l-header-line {
  position: relative;
  background: #70C50A;
  margin: 4rem 0 0;
  padding: 3rem 0;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .l-header-line {
    padding: 2.5rem;
  }
}
.l-header-line::before {
  content: "";
  position: absolute;
  bottom: 3.2rem;
  left: 6rem;
  width: 5.3rem;
  height: 5.3rem;
  background: url(../img/common/img_nav_qr.png) 0 0/100% auto no-repeat;
}
@media screen and (max-width: 767px) {
  .l-header-line::before {
    content: none;
  }
}
.l-header-line::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 1.7rem;
  width: 9.6rem;
  height: 10rem;
  background: url(../img/common/img_nav_line.png) 0 0/100% auto no-repeat;
}
@media screen and (max-width: 767px) {
  .l-header-line::after {
    width: 6.8rem;
    height: 8.05rem;
    background: url(../img/common/img_nav_line_sp.png) 0 0/100% auto no-repeat;
  }
}
.l-header-line__ttl {
  text-align: center;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.2;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-header-line__ttl {
    font-size: 1.4rem;
  }
}
.l-header-line__ttl span {
  font-family: termina, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: 1.7rem;
}
@media screen and (max-width: 767px) {
  .l-header-line__ttl span {
    font-size: 1.5rem;
  }
}
.l-header-line__txt {
  text-align: center;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
  margin: 1.5rem 0 0;
}
@media screen and (max-width: 767px) {
  .l-header-line__txt {
    width: 15.2rem;
    font-size: 1.2rem;
    text-align: center;
    margin: 3rem 0 1.5rem;
    text-align: left;
  }
}
.l-header-line__account {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 18.5rem;
  height: 3.2rem;
  font-size: 1.2rem;
  font-family: termina, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  background: #fff;
  border-radius: 0.5rem;
  margin: 1rem auto 0;
  padding: 0 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-header-line__account {
    width: 15.2rem;
    height: 2.6rem;
    font-size: 1rem;
    padding: 0 0.7rem;
    margin: 0 auto 0 0;
  }
}
.l-header-line__account::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background: url(../img/common/icn_nav_search.svg) 0 0/100% auto no-repeat;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .l-header-line__account::after {
    right: 0.75rem;
    width: 1.8rem;
    height: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .is-fixed {
    overflow: hidden;
  }
}

.l-footer {
  position: relative;
  background: #000;
  padding: 10rem 0 6rem;
  border-top-left-radius: 4rem;
  border-top-right-radius: 4rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-footer {
    border-top-left-radius: 2.5rem;
    border-top-right-radius: 2.5rem;
    padding: 6rem 2rem;
  }
}
.l-footer__logo {
  width: 51rem;
  margin: 0 0 9rem;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 26rem;
    margin: 0 0 4rem;
  }
}
.l-footer__block {
  position: relative;
  width: 120rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-footer__block {
    width: auto;
  }
}
.l-footer-menu {
  width: 68rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0 9rem;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 767px) {
  .l-footer-menu {
    display: block;
    width: auto;
    padding: 0 2rem;
  }
}
.l-footer-menu-list {
  gap: 0 4.5rem;
}
.l-footer-menu-list__item {
  font-size: 1.6rem;
  line-height: 2.25;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-footer-menu-list__item {
    font-size: 1.4rem;
  }
}
.l-footer-menu-list__item a {
  color: #fff;
}
.l-footer-menu-list__item a.blank {
  position: relative;
  display: inline-block;
  padding-right: 1em;
}
.l-footer-menu-list__item a.blank::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.2rem;
  height: 1.2rem;
  background: url(../img/common/icn_blank.svg) 0 0/100% auto no-repeat;
  transform: translateY(-50%);
}
.l-footer-menu-child__item {
  position: relative;
  font-size: 1.6rem;
  line-height: 2.25;
  padding: 0 0 0 1.2rem;
}
@media screen and (max-width: 767px) {
  .l-footer-menu-child__item {
    font-size: 1.4rem;
  }
}
.l-footer-menu-child__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.5rem;
  height: 1px;
  background: #fff;
}
.l-footer-menu-child__item a {
  color: #fff;
}
.l-footer-other {
  border-top: 1px solid #fff;
  margin-top: 7rem;
  padding: 2rem 0 0;
}
@media screen and (max-width: 767px) {
  .l-footer-other {
    border-bottom: 1px solid #fff;
    margin: 5rem 0 3.5rem;
    padding: 2rem 2rem;
  }
}
.l-footer-other-list {
  width: 68rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0 5.5rem;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 767px) {
  .l-footer-other-list {
    display: block;
    width: auto;
  }
}
.l-footer-other-list__item {
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-footer-other-list__item {
    line-height: 2.25;
  }
}
.l-footer-other-list__item a {
  color: #fff;
}
.l-footer-other-list__item a.blank {
  position: relative;
  display: inline-block;
  padding-right: 1.6rem;
}
.l-footer-other-list__item a.blank::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.2rem;
  height: 1.2rem;
  background: url(../img/common/icn_blank.svg) 0 0/100% auto no-repeat;
  transform: translateY(-50%);
}
.l-footer-address {
  position: absolute;
  bottom: 15.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer-address {
    position: relative;
    bottom: auto;
    padding: 0 2rem;
  }
}
.l-footer-address__ttl {
  font-weight: 600;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.7;
}
.l-footer-address__txt {
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.7;
  margin: 1.4rem 0 0;
}
.l-footer__copy {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  line-height: 1;
  font-size: 1.4rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    position: relative;
    left: auto;
    bottom: auto;
    font-size: 1.2rem;
    margin: 3rem 0 0;
    padding: 0 2rem;
  }
}
.l-footer__design {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #fff;
  line-height: 1;
  font-size: 1.2rem;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .l-footer__design {
    position: relative;
    left: auto;
    bottom: auto;
    font-size: 1rem;
    margin: 1rem 0 0;
    padding: 0 2rem;
  }
}
.l-footer__pagetop {
  position: absolute;
  right: 0;
  bottom: 10rem;
  width: 6rem;
  height: 6rem;
}
@media screen and (max-width: 767px) {
  .l-footer__pagetop {
    width: 4rem;
    height: 4rem;
    bottom: 0;
  }
}

.c-coming {
  padding: 15rem 0 13rem;
}
@media screen and (max-width: 767px) {
  .c-coming {
    padding: 6rem 0;
  }
}
.c-coming__ttl {
  font-family: termina, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  font-size: 3.2rem;
  line-height: 1;
  margin: 0 0 4rem;
}
@media screen and (max-width: 767px) {
  .c-coming__ttl {
    font-size: 2.4rem;
    margin: 0 0 2rem;
  }
}
.c-coming__txt {
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-coming__txt {
    padding: 0 2rem;
  }
}
.c-coming__btn {
  margin: 5.4rem auto 0;
}

.c-breadcrumb {
  position: relative;
  width: 113rem;
  padding: 11.2rem 0 0;
  margin: 0 auto;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    width: auto;
    padding: 8rem 2rem 0;
  }
}
.c-breadcrumb ol {
  line-height: 1;
}
.c-breadcrumb ol li {
  display: inline-block;
  font-family: termina, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb ol li {
    font-size: 1rem;
  }
}
.c-breadcrumb ol li::before {
  content: ">";
}
.c-breadcrumb ol li:first-child::before {
  content: none;
}

.c-btn {
  width: 26rem;
  height: 5.6rem;
}
@media screen and (max-width: 767px) {
  .c-btn {
    width: 24.8rem;
    height: 5rem;
  }
}
.c-btn a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 1.2rem;
  background: #000;
  border-radius: 9999px;
  color: #fff;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .c-btn a:hover {
    opacity: 1;
  }
  .c-btn a:hover svg {
    opacity: 1;
  }
}
.c-btn__icon {
  display: flex;
  align-items: center;
}
.c-btn__icon svg {
  width: 2.1rem;
  height: 2.1rem;
  opacity: 0.4;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn__icon svg {
    opacity: 1;
  }
}
.c-btn__icon svg rect {
  fill: #fff;
}
.c-btn__txt {
  font-family: termina, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.28em;
}
.c-btn--submit {
  display: block;
  background: #000;
  color: #fff;
  border-radius: 5rem;
  margin: 0 auto;
}
.c-btn--submit .c-btn__txt {
  letter-spacing: 0.05em;
}
.c-btn--submit .c-btn__icon {
  justify-content: center;
  gap: 0 1rem;
}
@media (hover: hover) and (pointer: fine) {
  .c-btn--submit:hover svg {
    opacity: 1;
  }
}
.c-btn--back {
  display: block;
  background: #F4F4F4;
  color: #000;
  border-radius: 5rem;
  margin: 1.6rem auto 0;
}
.c-btn--back .c-btn__txt {
  letter-spacing: 0.05em;
}
.c-btn--back .c-btn__icon {
  justify-content: center;
  gap: 0 1rem;
}
.c-btn--back svg rect {
  fill: #000;
}
@media (hover: hover) and (pointer: fine) {
  .c-btn--back:hover svg {
    opacity: 1;
  }
}

.c-recruit {
  position: relative;
  background: #F4F4F4;
  overflow: hidden;
  padding: 26rem 0 0;
}
@media screen and (max-width: 767px) {
  .c-recruit {
    padding: 18.5rem 0 0;
  }
}
.c-recruit::before {
  content: "";
  position: absolute;
  top: 10rem;
  left: 50%;
  width: 118rem;
  height: 118rem;
  background: url(../img/home/img_recruit.png) 0 0/100% auto no-repeat;
  animation: rotate_anime 36s linear infinite;
  margin-left: -59rem;
}
@media screen and (max-width: 767px) {
  .c-recruit::before {
    width: 59rem;
    height: 59rem;
    margin-left: -29.5rem;
  }
}
@keyframes rotate_anime {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.c-recruit__ttl {
  line-height: 1;
  text-align: center;
}
.c-recruit__ttl .en {
  display: block;
  font-family: termina, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: 6rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-recruit__ttl .en {
    font-size: 4rem;
  }
}
.c-recruit__ttl .ja {
  display: block;
  font-weight: 600;
  font-size: 1.8rem;
  margin: 1rem 0 0;
}
@media screen and (max-width: 767px) {
  .c-recruit__ttl .ja {
    font-size: 1.4rem;
  }
}
.c-recruit-bnr {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 4.5rem 0 0;
}
@media screen and (max-width: 767px) {
  .c-recruit-bnr {
    display: block;
  }
}
.c-recruit-bnr__item {
  width: 50%;
  max-width: 72rem;
}
.c-recruit-bnr__item:last-child a {
  background: linear-gradient(90deg, rgb(202, 230, 254) 1%, rgb(116, 188, 232) 100%);
}
@media screen and (max-width: 767px) {
  .c-recruit-bnr__item {
    width: 100%;
    max-width: auto;
  }
}
.c-recruit-bnr__item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(245, 207, 207) 1%, rgb(236, 41, 41) 100%);
  padding: 2rem 3.4rem;
}
@media screen and (max-width: 767px) {
  .c-recruit-bnr__item a {
    padding: 1.5rem 1.8rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-recruit-bnr__item a:hover {
    opacity: 1;
  }
  .c-recruit-bnr__item a:hover svg {
    opacity: 1;
  }
  .c-recruit-bnr__item a:hover .c-recruit-bnr__img img {
    transform: scale(1.1);
  }
}
.c-recruit-bnr__inner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-recruit-bnr__inner {
    padding: 3rem 0 0;
  }
}
.c-recruit-bnr__en {
  display: block;
  font-family: termina, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
  text-align: center;
  color: #fff;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-recruit-bnr__en {
    font-size: 2.4rem;
  }
}
.c-recruit-bnr__ja {
  display: block;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1;
  text-align: center;
  color: #fff;
  margin: 1rem 0 0;
}
@media screen and (max-width: 767px) {
  .c-recruit-bnr__ja {
    font-size: 1.4rem;
  }
}
.c-recruit-bnr__btn {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 25.6rem;
  height: 5.6rem;
  gap: 0 1rem;
  background: #000;
  color: #fff;
  border-radius: 5rem;
  margin: 4rem auto 0;
}
@media screen and (max-width: 767px) {
  .c-recruit-bnr__btn {
    width: 24.8rem;
    height: 5rem;
    margin: 3.5rem auto 0;
  }
}
.c-recruit-bnr__img {
  display: block;
  border-top-right-radius: 13rem;
  border-bottom-right-radius: 13rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-recruit-bnr__img {
    border-top-right-radius: 6.5rem;
    border-bottom-right-radius: 6.5rem;
  }
}
.c-recruit-bnr__img img {
  transition: 0.3s;
}
.c-recruit-list {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  gap: 0 2rem;
  padding: 3.5rem 0 4rem;
}
@media screen and (max-width: 767px) {
  .c-recruit-list {
    flex-wrap: wrap;
    padding: 1.8rem 2rem;
    gap: 1.3rem;
  }
}
.c-recruit-list__item {
  width: 32.8rem;
}
@media screen and (max-width: 767px) {
  .c-recruit-list__item {
    width: calc(50% - 0.65rem);
  }
}
.c-recruit-list__item a {
  display: block;
  background: rgba(0, 0, 0, 0.32);
  padding: 4rem 0 3.5rem;
  border-top-right-radius: 3rem;
  border-bottom-right-radius: 3rem;
}
@media screen and (max-width: 767px) {
  .c-recruit-list__item a {
    border-top-right-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    background: #000;
    padding: 1.8rem 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-recruit-list__item a:hover {
    opacity: 1;
    background: #000;
  }
  .c-recruit-list__item a:hover svg {
    opacity: 1;
  }
}
.c-recruit-list__en {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
  gap: 0 1rem;
}
@media screen and (max-width: 767px) {
  .c-recruit-list__en {
    gap: 0 0.5rem;
  }
}
.c-recruit-list__txt {
  font-family: termina, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: 2.8rem;
  color: #fff;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-recruit-list__txt {
    font-size: 1.4rem;
  }
}
.c-recruit-list__icon svg {
  display: block;
  width: 2rem;
  height: 2rem;
  margin: 0 auto;
  opacity: 0.4;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-recruit-list__icon svg {
    width: 1.4rem;
    height: 1.4rem;
    opacity: 1;
  }
}
.c-recruit-list__icon svg rect {
  fill: #fff;
}
.c-recruit-list__ja {
  text-align: center;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin: 1.6rem 0 0;
}
@media screen and (max-width: 767px) {
  .c-recruit-list__ja {
    font-size: 1rem;
    margin: 1rem 0 0;
  }
}

.c-mv {
  position: relative;
  height: 50rem;
}
@media screen and (max-width: 767px) {
  .c-mv {
    height: 42rem;
  }
}
.c-mv__en {
  position: relative;
  display: block;
  font-family: termina, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: 6rem;
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 12rem 0 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-mv__en {
    font-size: 3.6rem;
    margin: 5rem 0 0;
    padding: 0 2rem;
  }
}
.c-mv__ttl {
  position: relative;
  display: block;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1;
  margin: 2rem 0 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-mv__ttl {
    font-size: 1.4rem;
    padding: 0 2rem;
    margin-top: 0.6rem;
  }
}
.c-mv__img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.c-mv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-works {
  overflow: hidden;
  background: #fff;
}
.c-works-word {
  display: flex;
  width: max-content;
  animation: scroll-left 20s linear infinite;
}
.c-works-word__txt {
  font-size: 4.8rem;
  font-family: termina, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #000;
  margin-right: 4rem;
}
@media screen and (max-width: 767px) {
  .c-works-word__txt {
    font-size: 2.8rem;
    margin-right: 2rem;
  }
}
.c-works-word__txt:nth-child(even) {
  -webkit-text-stroke: 1px #000;
  text-stroke: 1px #000;
  color: #fff;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.c-works-photo {
  margin: 6rem 0 0;
  /*
  @keyframes scrollWorks {
  	0% {
  		transform: translateX(-var(--oneSetWidth));
  	}
  	100% {
  		transform: translateX(0);
  	}
  }
  	*/
}
@media screen and (max-width: 767px) {
  .c-works-photo {
    margin: 4rem 0 0;
  }
}
.c-works-photo__link {
  position: relative;
  display: block;
  overflow: hidden;
}
@media (hover: hover) and (pointer: fine) {
  .c-works-photo__link:hover {
    opacity: 1;
  }
}
.c-works-photo__track {
  transition-timing-function: linear;
}
.c-works-photo__item {
  position: relative;
  width: 28rem;
  height: 47rem;
  flex: 0 0 auto;
  margin: 0 0.75rem;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .c-works-photo__item:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .c-works-photo__item {
    width: 21.9rem;
    height: 37.7rem;
  }
}
.c-works-photo__item.mt img {
  margin: 9rem 0 0;
}
@media screen and (max-width: 767px) {
  .c-works-photo__item.mt img {
    margin: 8rem 0 0;
  }
}
.c-works-photo__item a {
  display: block;
  height: 100%;
}
.c-works-photo__item img {
  width: 100%;
  height: calc(100% - 9rem);
  object-fit: cover;
  display: block;
  margin: 0 0 9rem;
}
@media screen and (max-width: 767px) {
  .c-works-photo__item img {
    height: calc(100% - 4rem);
    margin: 0 0 4rem;
  }
}
.c-works-photo__item .view-more-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.c-works-photo__item .view-more-btn .wave-line-icon {
  line-height: 1;
}
.c-works-photo__item .view-more-btn .wave-line-icon svg {
  width: 2rem;
  height: 2rem;
}
.c-works-photo__item .view-more-btn .wave-line-icon svg rect {
  fill: #fff;
}
.c-works-photo__item .view-more-btn .view-more-text {
  display: block;
  text-align: center;
  font-family: termina, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: 1.4rem;
  margin-top: 0.5rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.c-works-photo__item:hover .view-more-btn {
  opacity: 1;
  pointer-events: auto;
}
.c-works__btn {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-works__btn {
    display: block;
    margin: 4rem auto 0;
  }
}

.cursor-follow {
  position: fixed;
  top: 0;
  left: 0;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: #000;
  color: #fff;
  pointer-events: none;
  z-index: 9999;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  line-height: 1;
  padding: 1.5rem 0 0;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .cursor-follow {
    display: none !important;
  }
}
.cursor-follow.is-active {
  opacity: 1;
}
.cursor-follow svg {
  display: block;
  width: 2rem;
  height: 2rem;
  margin: 0 auto;
}
.cursor-follow svg rect {
  fill: #fff;
}
.cursor-follow .view-more-text {
  display: block;
  text-align: center;
  font-family: termina, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: 1.4rem;
  margin-top: 0.5rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

/* --------------------------------------------------
  display
-------------------------------------------------- */
.u-sp {
  display: none;
}

@media screen and (min-width: 1440.1px) {
  .u-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
  .u-pc {
    display: none;
  }
}
/* --------------------------------------------------
  cleafix
-------------------------------------------------- */
.u-clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/* --------------------------------------------------
  align
-------------------------------------------------- */
.u-alignL {
  text-align: left;
}

.u-alignC {
  text-align: center;
}

.u-alignR {
  text-align: right;
}

/* --------------------------------------------------
  margin
-------------------------------------------------- */
.u-mt10 {
  margin-top: 1rem;
}
.u-mt15 {
  margin-top: 1.5rem;
}
.u-mt20 {
  margin-top: 2rem;
}
.u-mt30 {
  margin-top: 3rem;
}
.u-mt40 {
  margin-top: 4rem;
}
.u-mt50 {
  margin-top: 5rem;
}

/* --------------------------------------------------
  padding
-------------------------------------------------- */
.-ratio16-9 {
  padding-top: 56.25%;
}

.-ratio4-3 {
  padding-top: 75%;
}

/* --------------------------------------------------
other
-------------------------------------------------- */
.u-bold { /*font-weight: 700;*/ }