@charset "UTF-8";
:root {
  --black: 27,44,67;
  --red: 255,0,0;
  --orange: 237,108,0;
  --bg: 245,245,245;
  --border: rgba(var(--black),.6);
  --contents_width: 1240px;
  --body_padding_side: 200px;
  --contents_width_with_padding: 1440px;
  --sidebar_width: 250px;
  --header_height_sp: 93px;
  --header_height_pc: 100px;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, a, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  word-break: break-all;
}

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

article, aside, details, figcaption, figure,
main, footer, header, menu, nav, section {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  word-break: break-word;
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

ul:not([class]),
ol:not([class]) {
  padding-left: 1.25em;
}

ul[class],
ol[class] {
  list-style: none;
}

span {
  font-weight: inherit;
}

blockquote, q {
  quotes: none;
}

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

a {
  color: inherit;
}
@media all and (min-width: 1000px) {
  a:hover {
    text-decoration: none;
  }
}

a[class] {
  text-decoration: none;
}

ins {
  background-color: #ff9;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

address {
  font-style: normal;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid rgb(var(--border));
  margin: 1em 0;
  padding: 0;
}

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

iframe {
  max-width: 100%;
}

/* form
================================================== */
input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
  display: block;
  width: 100%;
  max-width: 100%;
  font-family: inherit;
  outline: none;
  border: 1px solid;
  border-radius: 0;
  background: none;
}
@media all and (max-width: 999px) {
  input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
    font-size: 1.6rem;
  }
}

input[type=text], input[type=email], input[type=tel], textarea, button {
  appearance: none;
  outline: none;
}

input[type=radio], input[type=checkbox] {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

textarea {
  resize: vertical;
}

button {
  cursor: pointer;
}

/* 02_base
================================================ */
html {
  overflow: auto;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header_height_sp);
}
@media all and (min-width: 1000px) {
  html {
    scroll-padding-top: 92px;
  }
}

body {
  min-width: 375px;
  font-family: "Noto Sans JP", sans-serif;
  color: rgb(var(--black));
  background-color: #f7f7f7;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.7;
}
@media all and (max-width: 999px) {
  body {
    overflow-x: hidden;
  }
}
@media all and (min-width: 1000px) {
  body {
    width: 100%;
    font-size: 1.8rem;
  }
}

.l-wrapper {
  position: relative;
}

/* sp <--> tb ~ pc
-------------------------------------- */
.u-media-query {
  display: none;
  font-family: "sp";
}
@media all and (min-width: 1000px) {
  .u-media-query {
    font-family: "tb";
  }
}
@media all and (min-width: 1440px) {
  .u-media-query {
    font-family: "pc";
  }
}

@media all and (max-width: 999px) {
  .u-view-pc {
    display: none !important;
  }
}

@media all and (min-width: 1000px) {
  .u-view-sp {
    display: none !important;
  }
}

/* text
-------------------------------------- */
.u-uppercase {
  text-transform: uppercase;
}

.u-font-en {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
}

.u-font-roboto {
  font-family: "Roboto", sans-serif;
}

.u-mt-12-16 {
  margin-top: 12px;
}
@media all and (min-width: 1000px) {
  .u-mt-12-16 {
    margin-top: 16px;
  }
}

.u-mt-16-24 {
  margin-top: 16px;
}
@media all and (min-width: 1000px) {
  .u-mt-16-24 {
    margin-top: 24px;
  }
}

.u-bg-gray01 {
  background: #efefef;
  position: relative;
}
@media all and (min-width: 1000px) {
  .u-bg-gray01::before {
    content: "";
    position: absolute;
    top: 0;
    right: -35px;
    width: 100vw;
    height: 100%;
    background: #efefef;
    z-index: -1;
  }
}
@media (min-width: 1305px) {
  .u-bg-gray01::before {
    right: calc((100vw - 1260px) / 2 * -1);
  }
}

/* link
-------------------------------------- */
a.u-alpha {
  display: block;
  text-decoration: none;
}
@media all and (min-width: 1000px) {
  a.u-alpha {
    transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
  }
  a.u-alpha:hover {
    opacity: 0.7;
  }
}

a.u-zoom {
  display: block;
  text-decoration: none;
}
a.u-zoom .u-zoom__img {
  display: block;
}
a.u-zoom .u-zoom__img-wrap {
  display: block;
  overflow: hidden;
}
@media all and (min-width: 1000px) {
  a.u-zoom .u-zoom__img {
    transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
  }
  a.u-zoom:hover .u-zoom__img {
    transform: scale(1.1);
  }
}

/* layout
-------------------------------------- */
.u-inner {
  box-sizing: border-box;
  padding-left: 24px;
  padding-right: 24px;
}
@media all and (min-width: 1000px) {
  .u-inner {
    width: calc(100% - 70px);
    max-width: 1240px;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

.u-inner-sm {
  box-sizing: border-box;
  padding-left: 24px;
  padding-right: 24px;
}
@media all and (min-width: 1000px) {
  .u-inner-sm {
    width: calc(100% - 70px);
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
    max-width: 1040px;
  }
}

.u-scroll-img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 4000px;
  height: 100%;
  animation: c-text-scroll02 150s linear infinite !important;
}
@media all and (min-width: 1440px) {
  .u-scroll-img {
    animation: c-text-scroll02 100s linear infinite !important;
  }
}

/* c-archive01
======================================= */
.c-archive01 + .c-archive01 {
  margin-top: 50px;
}
.c-archive01__list {
  display: flex;
  flex-wrap: wrap;
  max-width: 810px;
}
.c-archive01__link {
  display: block;
  position: relative;
  padding-left: 22px;
}
.c-archive01__img {
  margin-bottom: 10px;
}
.c-archive01__img img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: cover;
}
.c-archive01__date {
  position: absolute;
  top: 4.5em;
  left: -3px;
  transform: rotate(-90deg);
  transform-origin: 0 0;
  font-size: 1.2rem;
}
.c-archive01__cat {
  font-size: 1.4rem;
}
@media all and (min-width: 1000px) {
  .c-archive01 {
    width: calc(50% - 12px);
  }
  .c-archive01:nth-child(2) {
    margin-top: 0;
  }
  .c-archive01__list {
    margin: 0;
    justify-content: space-between;
  }
  .c-archive01__link {
    transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
  }
  .c-archive01__link:hover {
    opacity: 0.7;
  }
}

/* c-archive02
======================================= */
.c-archive02 {
  display: grid;
  gap: 36px;
  justify-content: center;
}
.c-archive02__item {
  max-width: 360px;
}
.c-archive02__item + .c-archive02__item {
  border-top: 1px solid #D9D9D9;
}
.c-archive02__item-link {
  display: block;
}
.c-archive02__item-img {
  position: relative;
}
.c-archive02__item-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
}
.c-archive02__item-cat {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgb(var(--black));
  color: #fff;
  padding: 4px 16px;
  font-size: 1.4rem;
  font-weight: 600;
}
.c-archive02__item-txt {
  margin-top: 12px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
}
.c-archive02__item-info {
  margin-top: 20px;
  padding-left: 10px;
  letter-spacing: 0.06em;
  border-left: 7px solid #d9d9d9;
}
.c-archive02__item-info span {
  display: block;
}
.c-archive02__item-detail {
  text-align: right !important;
  display: block;
}
.c-archive02__item-detail.c-btn02 {
  margin: 0;
}
.c-archive02__item-detail .c-btn02__link {
  font-weight: 600;
}
@media all and (min-width: 1000px) {
  .c-archive02 {
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
  }
  .c-archive02__item + .c-archive02__item {
    border: none;
  }
  .c-archive02__item-link {
    padding-bottom: 16px;
  }
  .c-archive02__item-link:hover .c-archive02__item-img img {
    transform: scale(1.05);
    transform-origin: center center;
  }
  .c-archive02__item-link:hover .c-btn02__link::before {
    width: 0;
    left: auto;
    right: 0;
  }
  .c-archive02__item-txt {
    margin-top: 16px;
    font-size: 1.8rem;
    letter-spacing: 0.06em;
    line-height: 1.6;
    height: 3.2em;
  }
  .c-archive02__item-info {
    font-size: 1.4rem;
    letter-spacing: 0.06em;
  }
}
@media (min-width: 600px) and (max-width: 999px) {
  .c-archive02 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-archive02__item-txt {
    height: 3.2em;
  }
  .c-archive02__item + .c-archive02__item {
    border-top: none;
  }
}

/* .c-btn01
================================================== */
.c-btn01 {
  border: none;
  appearance: none;
  margin-top: 24px;
  z-index: 1;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}
.c-btn01__link {
  border: 1px solid rgb(var(--black));
  font-size: 1.6rem;
  display: block;
  position: relative;
  min-height: 64px;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: 5px 5px 5px 24px;
  letter-spacing: 0.07em;
  overflow: hidden;
}
.c-btn01__link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: rgb(var(--black));
  transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
}
.c-btn01__link::after {
  display: inline-block;
  width: 28px;
  height: 5px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2032%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M0%206.86914H28L17.4737%200.869141%22%20stroke%3D%22%231B2C43%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
}
.c-btn01__txt {
  position: relative;
  z-index: 1;
  display: block;
  transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
}
@media all and (min-width: 1000px) {
  .c-btn01 {
    width: 360px;
    margin: 48px auto 0;
  }
  .c-btn01__link {
    font-size: 1.8rem;
    min-height: 70px;
    padding: 5px 5px 5px 40px;
    transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
  }
  .c-btn01__link::after {
    width: 36px;
    height: 6px;
    right: 40px;
  }
  .c-btn01__link:hover {
    color: #fff;
  }
  .c-btn01__link:hover::before {
    width: 100%;
    left: 0;
  }
  .c-btn01__link:hover::after {
    display: inline-block;
    width: 28px;
    height: 5px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2032%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M0%206.86914H28L17.4737%200.869141%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
    width: 36px;
    height: 6px;
  }
}

.c-btn01.is-orange .c-btn01__link {
  border: 1px solid #fff;
  color: #fff;
}
.c-btn01.is-orange .c-btn01__link::before {
  background: #fff;
}
.c-btn01.is-orange .c-btn01__link::after {
  display: inline-block;
  width: 28px;
  height: 5px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2032%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M0%206.86914H28L17.4737%200.869141%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
}
@media all and (min-width: 1000px) {
  .c-btn01.is-orange .c-btn01__link::after {
    width: 36px;
    height: 6px;
  }
  .c-btn01.is-orange .c-btn01__link:hover {
    color: rgb(var(--orange));
    border-color: var(--orange);
  }
  .c-btn01.is-orange .c-btn01__link:hover::after {
    display: inline-block;
    width: 28px;
    height: 5px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2032%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M0%206.86914H28L17.4737%200.869141%22%20stroke%3D%22%23ED6C00%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
    width: 36px;
    height: 6px;
  }
}

/* .c-btn02
================================================== */
.c-btn02 {
  border: none;
  appearance: none;
  margin-top: 24px;
  text-align: center;
}
.c-btn02__link {
  font-size: 1.4rem;
  position: relative;
  font-weight: 500;
  width: fit-content;
  margin: auto;
  padding-bottom: 2px;
  letter-spacing: 0.06em;
}
.c-btn02__link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgb(var(--black));
  transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
}
@media all and (min-width: 1000px) {
  .c-btn02 {
    margin-top: 40px;
  }
  .c-btn02__link {
    transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
    font-size: 1.6rem;
    padding-bottom: 8px;
    font-weight: 600;
  }
  .c-btn02__link:hover::before {
    width: 0;
    left: auto;
    right: 0;
  }
}

@keyframes shine {
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.c-btn03__link {
  position: relative;
  overflow: hidden;
}
@media all and (min-width: 1000px) {
  .c-btn03__link::after {
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 75%);
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transform: skewX(-15deg);
    width: 100%;
  }
  .c-btn03__link:hover::after {
    animation: 2s 0s shine linear infinite;
  }
}

.c-hover-flip .hover-flip, .c-hover-flip.hover-flip {
  display: grid;
  position: relative;
  overflow: hidden;
}
.c-hover-flip .hover-flip .hover-flip-in, .c-hover-flip.hover-flip .hover-flip-in {
  transition-property: transform;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.75, 0, 0.35, 1);
  grid-area: 1/1;
}
.c-hover-flip .hover-flip::after, .c-hover-flip.hover-flip::after {
  content: attr(data-text);
  transition-property: transform;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.75, 0, 0.35, 1);
  grid-area: 1/1;
  transform: translateY(100%);
}

@media all and (min-width: 1000px) {
  .c-hover-flip:hover .hover-flip .hover-flip-in,
  .c-hover-flip:hover.hover-flip .hover-flip-in,
  .c-hover-flip.is-open .hover-flip .hover-flip-in,
  .c-hover-flip.is-open.hover-flip .hover-flip-in {
    transform: translateY(-100%);
  }
  .c-hover-flip:hover .hover-flip::after,
  .c-hover-flip:hover.hover-flip::after,
  .c-hover-flip.is-open .hover-flip::after,
  .c-hover-flip.is-open.hover-flip::after {
    transform: translate(0, 0);
  }
}
/*  .c-faq01
================================================== */
.c-faq01 + .c-faq01 {
  margin-top: 16px;
}
.c-faq01__ico {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 32px;
  height: 32px;
  text-align: center;
  background: #F7F7F7;
  font-weight: 600;
}
.c-faq01__q {
  position: relative;
  padding: 16px 64px 19px;
  background: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
}
.c-faq01__q[class*=toggle] {
  cursor: pointer;
}
.c-faq01__q[class*=toggle]::before, .c-faq01__q[class*=toggle]::after {
  position: absolute;
  top: 50%;
  right: 16px;
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  margin-top: -1px;
  background: #D9D9D9;
  transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
}
.c-faq01__q[class*=toggle]::before {
  transform: rotate(-90deg);
}
.c-faq01__q[class*=toggle].is-active::before {
  transform: rotate(0);
}
.c-faq01__a {
  position: relative;
  padding: 16px 16px 19px 64px;
  background: #fff;
  border-top: 1px solid #d9d9d9;
  letter-spacing: 0.06em;
}
.c-faq01__a .c-faq01__ico {
  background: linear-gradient(135deg, #F6AD3C 0%, #ED6C00 59%);
  color: #ffffff;
}
.c-faq01__text + .c-faq01__text {
  margin-top: 1em;
}
@media all and (min-width: 1000px) {
  .c-faq01 + .c-faq01 {
    margin-top: 16px;
  }
  .c-faq01__ico {
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
  }
  .c-faq01__q {
    padding: 25px 68px 27px 76px;
    font-size: 2rem;
  }
  .c-faq01__q[class*=toggle] {
    cursor: pointer;
  }
  .c-faq01__q[class*=toggle]::before, .c-faq01__q[class*=toggle]::after {
    right: 20px;
  }
  .c-faq01__q[class*=toggle]::before {
    transform: rotate(-90deg);
  }
  .c-faq01__q[class*=toggle].is-active::before {
    transform: rotate(0);
  }
  .c-faq01__a {
    padding: 25px 68px 27px 76px;
    border-top: none;
    position: relative;
    font-size: 1.6rem;
  }
  .c-faq01__a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10px;
    width: calc(100% - 20px);
    height: 1px;
    background: #d9d9d9;
  }
}

/* .c-form
================================================== */
input.c-form-parts, select.c-form-parts, textarea.c-form-parts, button.c-form-parts {
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 17px 24px;
  font-size: 1.6rem;
  appearance: none;
  font-family: inherit;
  background: #fff;
  border: 1px solid #d9d9d9;
  height: 56px;
}
input.c-form-parts::placeholder, select.c-form-parts::placeholder, textarea.c-form-parts::placeholder, button.c-form-parts::placeholder {
  color: #B4B4B4;
}
@media all and (min-width: 1000px) {
  input.c-form-parts, select.c-form-parts, textarea.c-form-parts, button.c-form-parts {
    height: 66px;
  }
}

textarea.c-form-parts {
  resize: both; /* 手動リサイズを許可 */
  min-height: 200px; /* 高さの最小値を指定（任意） */
  width: 100%;
}
@media all and (min-width: 1000px) {
  textarea.c-form-parts {
    min-height: 66px;
  }
}

select.c-form-parts {
  width: 300px;
  padding-right: 24px;
  background: no-repeat right 15px top 50%/8px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAOCAYAAAAmL5yKAAAAzUlEQVQokZ2RsQ3CMBBFfxxaS9RXMQIlJSV0pKTMCIyQDWACYAM2wBvACFRXW3IDHTrJRlZiRyZXnHLWfz+n+xURnQEsMK26GYArgPsE3DCzUdJkmGDQSVN+aP+EL/7HqKU556zWeg5gVQBbAHth4g3CSrbA4MTMrzDU4cM599ZafwBsRmABW9GGh6qvIKIHgGXGoGHmW/ygEqJDBjZ9OGngrzsQ5oxTG6TEEtszJfwdMS4fq9xn7ZPZxocr2UDq6GGJrSTeYRHRblQA4Av4tkvSJ5wq3wAAAABJRU5ErkJggg==");
}

.c-form-parts-list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
}
.c-form-parts-list .c-form-parts {
  margin-right: 20px;
}
.c-form-parts-list.is-flex-enb {
  justify-content: flex-end;
}

/* .c-form.is-default
================================================== */
.c-form.is-default table, .c-form.is-default thead, .c-form.is-default tbody, .c-form.is-default tr, .c-form.is-default th, .c-form.is-default td {
  display: block;
}
.c-form.is-default th {
  border-bottom: 0;
  text-align: left;
  font-size: 1.6rem;
  padding-bottom: 12px;
}
.c-form.is-default td {
  padding-bottom: 40px;
}
.c-form.is-default td.input-small input {
  max-width: 480px;
}
.c-form.is-default tr + tr th {
  border-top: 0;
}
@media all and (min-width: 1000px) {
  .c-form.is-default th {
    font-size: 1.8rem;
  }
}

/* .c-form-label
================================================== */
.c-form-label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  margin-left: 10px;
  text-align: center;
  background: rgb(var(--black));
  color: #fff;
  font-size: 1rem;
  margin-left: 10px;
  transform: translateY(-1px);
}
.c-form-label.is-required {
  background: rgb(var(--orange));
}
@media all and (min-width: 1000px) {
  .c-form-label {
    transform: translateY(-2px);
  }
}

/* .c-form-note
================================================== */
.c-form-note {
  display: block;
  font-weight: 400;
  font-size: 1.4rem;
  margin-top: 8px;
}
.c-form-note + .c-form-note {
  margin-top: 12px;
}
.c-form-note a {
  color: rgb(var(--orange));
  text-decoration: underline;
}
@media all and (min-width: 1000px) {
  .c-form-note {
    font-size: 1.6rem;
  }
  .c-form-note + .c-form-note {
    margin-top: 16px;
  }
}

td .c-form-note {
  margin-top: 10px;
}

/* .c-form-postcode
================================================== */
.c-form-postcode {
  display: flex;
  flex-wrap: wrap;
}
.c-form-postcode__prefix {
  max-width: 26px;
  flex-basis: 26px;
  padding-top: 5px;
}
.c-form-postcode__input {
  max-width: 100px;
  flex-basis: 100px;
}

/* 確認画面
================================================ */
.is-confirm .c-form-postcode .c-form-postcode__prefix {
  max-width: none;
  flex-basis: 0;
  padding-top: 0;
}
.is-confirm .c-form-postcode .c-form-postcode__input {
  max-width: none;
  flex-basis: 0;
}

/* .c-form-item
================================================== */
.c-form-item {
  display: flex;
}
.c-form-item + .c-form-item {
  margin-top: 10px;
}
.c-form-item-list {
  display: flex;
}
.c-form-item-list .c-form-item + .c-form-item {
  margin-top: 0;
  margin-left: 14px;
}
.c-form-item__prefix {
  min-width: 20px;
  margin-right: 10px;
  padding-top: 5px;
}
.c-form-item__suffix {
  min-width: 20px;
  margin-left: 10px;
  padding-top: 5px;
}
.c-form-item__input {
  flex: 1;
}
.c-form-item .c-form-item__input [name*=year] {
  width: 80px;
}
.c-form-item .c-form-item__input [name*=month] {
  width: 64px;
}
.c-form-item .c-form-item__input [name*=day] {
  width: 64px;
}
@media all and (max-width: 374px) {
  .c-form-item .c-form-item__input [name*=year] {
    width: 58px;
  }
  .c-form-item .c-form-item__input [name*=month] {
    width: 50px;
    padding: 5px;
    background-position: right 8px top 50%;
  }
  .c-form-item .c-form-item__input [name*=day] {
    width: 50px;
    padding: 5px;
    background-position: right 8px top 50%;
  }
}
@media all and (min-width: 1440px) {
  .c-form-item {
    display: inline-flex;
  }
  .c-form-item + .c-form-item {
    margin: 0 0 0 20px;
  }
  .c-form-item__input {
    width: 200px;
  }
  .c-form-item-list .c-form-item__input {
    width: auto;
  }
  .c-form-item .c-form-item__input [name*=year] {
    width: 82px;
  }
  .c-form-item .c-form-item__input [name*=month] {
    width: 62px;
  }
  .c-form-item .c-form-item__input [name*=day] {
    width: 62px;
  }
}

/* 確認画面
================================================ */
.mw_wp_form_confirm .c-form-item .c-form-item__prefix,
.mw_wp_form_confirm .c-form-item .c-form-item__suffix,
.is-confirm .c-form-item .c-form-item__prefix,
.is-confirm .c-form-item .c-form-item__suffix {
  min-width: 0;
  padding-top: 0;
}
.mw_wp_form_confirm .c-form-item .c-form-item__input,
.is-confirm .c-form-item .c-form-item__input {
  width: auto;
}

/* .c-form-address
================================================== */
.c-form-address {
  margin-top: 15px;
}

/* .c-form-agreement
================================================== */
.c-form-agreement {
  margin-top: 15px;
  text-align: center;
}

/* .c-form-btn
================================================== */
.c-form-area-btn {
  margin-top: 30px;
}
@media all and (min-width: 1000px) {
  .c-form-area-btn {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.c-form-area-btn p {
  position: relative;
  overflow: hidden;
  height: 80px;
  width: 100%;
}
.c-form-area-btn p::before {
  display: inline-block;
  width: 28px;
  height: 5px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2032%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M0%206.86914H28L17.4737%200.869141%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
  position: absolute;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
  width: 36px;
  height: 8px;
  z-index: 2;
}
@media all and (min-width: 1000px) {
  .c-form-area-btn p {
    height: 134px;
    width: 446px;
  }
}
.c-form-area-btn input {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  padding: 5px 40px;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: 0;
  appearance: none;
  font-family: inherit;
  cursor: pointer;
  color: #fff;
  text-align: left;
  background: linear-gradient(to right, #F7A25A 0%, #E87F32 100%);
  transition: opacity 0.3s;
}
@media all and (min-width: 1000px) {
  .c-form-area-btn input:hover {
    opacity: 0.7;
  }
}
.c-form-area-btn input:disabled {
  opacity: 0.5;
}

/* .wpcf7-radio
================================================ */
.c-form .wpcf7-radio .c-radio,
.c-form .wpcf7-radio .wpcf7-list-item {
  display: block;
  margin-left: 0;
  font-size: 1.4rem;
  margin-top: 8px;
}
.c-form .wpcf7-radio .c-radio + .c-radio,
.c-form .wpcf7-radio .c-radio + .wpcf7-list-item,
.c-form .wpcf7-radio .wpcf7-list-item + .c-radio,
.c-form .wpcf7-radio .wpcf7-list-item + .wpcf7-list-item {
  margin-top: 12px;
}
.c-form .wpcf7-radio .c-radio label,
.c-form .wpcf7-radio .wpcf7-list-item label {
  display: block;
  cursor: pointer;
}
.c-form .wpcf7-radio .c-radio input,
.c-form .wpcf7-radio .wpcf7-list-item input {
  display: none;
}
.c-form .wpcf7-radio .c-radio .c-radio__text,
.c-form .wpcf7-radio .c-radio .wpcf7-list-item-label,
.c-form .wpcf7-radio .wpcf7-list-item .c-radio__text,
.c-form .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  padding-left: 26px;
  vertical-align: top;
}
.c-form .wpcf7-radio .c-radio .c-radio__text::before,
.c-form .wpcf7-radio .c-radio .wpcf7-list-item-label::before,
.c-form .wpcf7-radio .wpcf7-list-item .c-radio__text::before,
.c-form .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::before {
  box-sizing: border-box;
  position: absolute;
  top: 3px;
  left: 0;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #D9D9D9;
  border-radius: 50%;
  background: #fff;
}
.c-form .wpcf7-radio .c-radio input:checked + .c-radio__text::after,
.c-form .wpcf7-radio .c-radio input:checked + .wpcf7-list-item-label::after,
.c-form .wpcf7-radio .wpcf7-list-item input:checked + .c-radio__text::after,
.c-form .wpcf7-radio .wpcf7-list-item input:checked + .wpcf7-list-item-label::after {
  box-sizing: border-box;
  position: absolute;
  top: 4px;
  left: 1px;
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #F7A25A;
}
@media all and (min-width: 1000px) {
  .c-form .wpcf7-radio .c-radio,
  .c-form .wpcf7-radio .wpcf7-list-item {
    font-size: 1.6rem;
  }
  .c-form .wpcf7-radio .c-radio .c-radio__text,
  .c-form .wpcf7-radio .c-radio .wpcf7-list-item-label,
  .c-form .wpcf7-radio .wpcf7-list-item .c-radio__text,
  .c-form .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
    padding-left: 28px;
  }
  .c-form .wpcf7-radio .c-radio .c-radio__text::before,
  .c-form .wpcf7-radio .c-radio .wpcf7-list-item-label::before,
  .c-form .wpcf7-radio .wpcf7-list-item .c-radio__text::before,
  .c-form .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::before {
    top: 5px;
    width: 18px;
    height: 18px;
  }
  .c-form .wpcf7-radio .c-radio input:checked + .c-radio__text::after,
  .c-form .wpcf7-radio .c-radio input:checked + .wpcf7-list-item-label::after,
  .c-form .wpcf7-radio .wpcf7-list-item input:checked + .c-radio__text::after,
  .c-form .wpcf7-radio .wpcf7-list-item input:checked + .wpcf7-list-item-label::after {
    top: 6px;
    width: 16px;
    height: 16px;
  }
}

/* .c-form
================================================ */
.c-form .wpcf7-acceptance .c-checkbox,
.c-form .wpcf7-acceptance .wpcf7-list-item {
  display: block;
  margin: 8px 0 0;
  font-size: 1.4rem;
}
.c-form .wpcf7-acceptance .c-checkbox + .c-checkbox,
.c-form .wpcf7-acceptance .c-checkbox + .wpcf7-list-item,
.c-form .wpcf7-acceptance .wpcf7-list-item + .c-checkbox,
.c-form .wpcf7-acceptance .wpcf7-list-item + .wpcf7-list-item {
  margin-top: 10px;
}
.c-form .wpcf7-acceptance .c-checkbox label,
.c-form .wpcf7-acceptance .wpcf7-list-item label {
  display: block;
  cursor: pointer;
}
.c-form .wpcf7-acceptance .c-checkbox input,
.c-form .wpcf7-acceptance .wpcf7-list-item input {
  display: none;
}
.c-form .wpcf7-acceptance .c-checkbox .c-checkbox__text,
.c-form .wpcf7-acceptance .c-checkbox .wpcf7-list-item-label,
.c-form .wpcf7-acceptance .wpcf7-list-item .c-checkbox__text,
.c-form .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  padding-left: 32px;
  vertical-align: top;
}
.c-form .wpcf7-acceptance .c-checkbox .c-checkbox__text::before,
.c-form .wpcf7-acceptance .c-checkbox .wpcf7-list-item-label::before,
.c-form .wpcf7-acceptance .wpcf7-list-item .c-checkbox__text::before,
.c-form .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label::before {
  box-sizing: border-box;
  position: absolute;
  top: 2px;
  left: 0;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #d9d9d9;
  background: #fff;
}
.c-form .wpcf7-acceptance .c-checkbox input:checked + .c-checkbox__text::after,
.c-form .wpcf7-acceptance .c-checkbox input:checked + .wpcf7-list-item-label::after,
.c-form .wpcf7-acceptance .wpcf7-list-item input:checked + .c-checkbox__text::after,
.c-form .wpcf7-acceptance .wpcf7-list-item input:checked + .wpcf7-list-item-label::after {
  position: absolute;
  top: 8px;
  left: 5px;
  content: "";
  display: block;
  width: 8px;
  height: 4px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  transform: rotate(135deg);
  border-color: rgb(var(--orange));
}
@media all and (min-width: 1000px) {
  .c-form .wpcf7-acceptance .c-checkbox,
  .c-form .wpcf7-acceptance .wpcf7-list-item {
    display: inline-block;
    margin-right: 20px;
    font-size: 1.6rem;
  }
  .c-form .wpcf7-acceptance .c-checkbox + .c-checkbox,
  .c-form .wpcf7-acceptance .c-checkbox + .wpcf7-list-item,
  .c-form .wpcf7-acceptance .wpcf7-list-item + .c-checkbox,
  .c-form .wpcf7-acceptance .wpcf7-list-item + .wpcf7-list-item {
    margin-top: 0;
  }
  .c-form .wpcf7-acceptance .c-checkbox .c-checkbox__text,
  .c-form .wpcf7-acceptance .c-checkbox .wpcf7-list-item-label,
  .c-form .wpcf7-acceptance .wpcf7-list-item .c-checkbox__text,
  .c-form .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label {
    padding-left: 36px;
  }
  .c-form .wpcf7-acceptance .c-checkbox .c-checkbox__text::before,
  .c-form .wpcf7-acceptance .c-checkbox .wpcf7-list-item-label::before,
  .c-form .wpcf7-acceptance .wpcf7-list-item .c-checkbox__text::before,
  .c-form .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label::before {
    top: 3px;
    width: 24px;
    height: 24px;
  }
  .c-form .wpcf7-acceptance .c-checkbox input:checked + .c-checkbox__text::after,
  .c-form .wpcf7-acceptance .c-checkbox input:checked + .wpcf7-list-item-label::after,
  .c-form .wpcf7-acceptance .wpcf7-list-item input:checked + .c-checkbox__text::after,
  .c-form .wpcf7-acceptance .wpcf7-list-item input:checked + .wpcf7-list-item-label::after {
    top: 10px;
    left: 6px;
    width: 10px;
    height: 5px;
  }
}

/* .c-head01
================================================== */
.c-head01 {
  position: relative;
  padding-bottom: 16px;
  overflow: hidden;
}
.c-head01::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100px;
  height: 1px;
  background: currentColor;
}
.c-head01__sub img {
  width: auto;
  height: 44px;
  display: block;
  margin: auto;
}
.c-head01__main {
  font-size: 2.4rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.1;
  margin-top: -20px;
  overflow: hidden;
}
.c-head01__main-in {
  min-height: 31px;
  display: block;
  z-index: 2;
  position: relative;
}
@media all and (min-width: 1000px) {
  .c-head01 {
    padding-bottom: 24px;
  }
  .c-head01::after {
    width: 300px;
  }
  .c-head01__sub {
    height: 105px;
    overflow: hidden;
  }
  .c-head01__sub img {
    height: 105px;
  }
  .c-head01__main {
    font-size: 4.4rem;
    margin-top: -35px;
  }
}

@media all and (min-width: 1000px) {
  .c-head01.is-tb-left::after {
    left: 0;
    transform: translateX(0);
  }
  .c-head01.is-tb-left .c-head01__sub img {
    margin: 0;
  }
  .c-head01.is-tb-left .c-head01__main {
    margin-top: -65px;
    text-align: left;
  }
}

/* .c-head02
================================================== */
.c-head02 {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 800;
  position: relative;
  padding-bottom: 16px;
  text-align: center;
}
.c-head02::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 1px;
  background-color: rgb(var(--orange));
}
@media all and (min-width: 1000px) {
  .c-head02 {
    font-size: 3.2rem;
    padding-bottom: 24px;
    line-height: 1.1;
  }
  .c-head02::before {
    width: 100px;
  }
}

/* .c-head03
================================================== */
.c-head03 {
  margin-bottom: 16px;
}
.c-head03__en {
  font-weight: 600;
  font-style: italic;
  line-height: 1.3;
  background: linear-gradient(60deg, #ED6C00 0%, #F7A25A 20%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 1.2rem;
}
.c-head03__ja {
  font-weight: 800;
  line-height: 1.3;
  font-size: 2.4rem;
}
@media all and (min-width: 1000px) {
  .c-head03 {
    margin-bottom: 24px;
  }
  .c-head03__en {
    font-size: 1.6rem;
  }
  .c-head03__ja {
    font-size: 4rem;
  }
}

/* .c-head04
================================================== */
.c-head04 {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 600;
  position: relative;
  padding-left: 5px;
  font-style: italic;
}
.c-head04::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 2px;
  height: 16px;
  transform: rotate(15deg);
  background-color: rgb(var(--orange));
}
@media all and (min-width: 1000px) {
  .c-head04 {
    font-size: 2rem;
    padding-left: 8px;
  }
  .c-head04::before {
    top: 8px;
    width: 3px;
    height: 22px;
  }
}

/* .c-links01
================================================ */
.c-menu01 {
  z-index: 100;
}
.c-menu01__link {
  display: block;
  font-weight: 600;
  line-height: 1;
  transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
}
.c-menu01__link:hover {
  color: rgb(var(--orange));
}
@media all and (max-width: 999px) {
  .c-menu01__content {
    padding-right: 24px;
    padding-left: 24px;
  }
  .c-menu01__list {
    display: flex;
    padding: 15px 0;
    white-space: nowrap;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    overflow-x: scroll;
  }
  .c-menu01__list.is-hidden {
    overflow: hidden;
  }
  @supports (scrollbar-color: auto) {
    .c-menu01__list {
      scrollbar-color: rgb(var(--orange)), #D9D9D9;
      scrollbar-width: 4px;
    }
  }
  @supports selector(::-webkit-scrollbar) {
    .c-menu01__list::-webkit-scrollbar {
      height: 4px;
      background: #D9D9D9;
    }
    .c-menu01__list::-webkit-scrollbar-thumb {
      background: rgb(var(--orange));
      border-radius: 2px;
    }
  }
  .c-menu01__item + .c-menu01__item {
    position: relative;
  }
  .c-menu01__item + .c-menu01__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 14px;
    background: #7D7D7D;
  }
  .c-menu01__link {
    padding: 1px 24px;
    font-size: 1.2rem;
  }
}
@media all and (min-width: 1000px) {
  .c-menu01 {
    position: sticky;
    left: 0;
    align-self: flex-start;
    top: 92px;
    margin: 0 0 0 -40px;
    padding-top: 60px;
    min-width: fit-content;
  }
  .c-menu01__container {
    width: calc(100% - 70px);
    max-width: 1240px;
    margin: auto;
    position: relative;
  }
  .c-menu01__set {
    display: flex;
    justify-content: space-between;
  }
  .c-menu01__content {
    width: 100%;
    max-width: 940px;
  }
  .c-menu01__list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 0 40px 40px;
  }
  .c-menu01__link {
    padding-left: 16px;
    position: relative;
  }
  .c-menu01__link.is-current {
    color: rgb(var(--orange));
  }
  .c-menu01__link::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 8px;
    height: 8px;
    background: currentColor;
  }
}

/*  .c-modal01
================================================== */
.c-modal01 {
  position: relative;
}
.c-modal01__container.modal__container {
  position: relative;
  background: unset;
  border-radius: unset;
  padding: 0;
  height: calc(100svh - 48px);
  width: calc(100% - 48px);
  max-width: 550px;
  z-index: 1000;
}
.c-modal01__overlay.modal__overlay {
  background: rgba(57, 57, 65, 0.9);
}
.c-modal01__close.modal__close {
  position: sticky !important;
  margin: 0 0 0 auto;
  top: 8px;
  right: 8px;
  left: auto;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  appearance: none;
  outline: 0;
  text-indent: -9999px;
  color: transparent;
  background: url(../img/common/ico_close01.png) no-repeat center/contain;
  z-index: 10;
  transition: opacity 0.3s ease;
}
@media all and (min-width: 1000px) {
  .c-modal01__container.modal__container {
    max-width: 1240px;
    height: calc(100svh - 100px);
  }
  .c-modal01__close.modal__close {
    width: 60px;
    height: 60px;
    top: 24px;
    right: 24px;
  }
  .c-modal01__close.modal__close:hover {
    opacity: 0.7;
  }
}

/*  c-modal01-content
================================================== */
.c-modal01-content {
  background: #fff;
}

.pc-close-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

/* movie list
================================================== */
.c-movie01 {
  padding-top: 32px;
  padding-bottom: 32px;
}
.c-movie01.splide {
  visibility: visible;
}
.c-movie01__thumbnail {
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 7px;
  position: relative;
}
.c-movie01__thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
}
.c-movie01__thumbnail::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: url(../img/common/ico_play01.png) no-repeat center/contain;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
  z-index: 2;
}
.c-movie01__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
}
.c-movie01__link {
  display: block;
}
.c-movie01 .splide__pagination {
  bottom: 0;
  display: flex;
  gap: 8px;
}
.c-movie01 .splide__pagination__page {
  width: 8px;
  height: 8px;
  margin: 0;
  opacity: 1;
  border-radius: 0;
  border: 1px solid rgb(var(--orange));
  background: transparent;
}
.c-movie01 .splide__pagination__page:hover {
  opacity: 1;
}
.c-movie01 .splide__pagination__page.is-active {
  background: rgb(var(--orange));
  transform: scale(1);
}
.c-movie01__txt {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.5;
}
.c-movie01__link:hover .c-movie01__thumbnail::before {
  opacity: 0.5;
}
.c-movie01__link:hover .c-movie01__thumbnail::after {
  opacity: 1;
}
.c-movie01__link:hover .c-movie01__thumbnail img {
  transform: scale(1.05);
}
@media all and (max-width: 999px) {
  .c-movie01 {
    margin-right: -24px;
    margin-left: -24px;
  }
  .c-movie01 .splide__slide {
    width: 280px !important;
    margin-right: 16px;
  }
}
@media all and (min-width: 1000px) {
  .c-movie01 {
    padding-top: 54px;
  }
  .c-movie01 .splide__list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 40px;
  }
  .c-movie01__thumbnail {
    border-radius: 10px;
  }
  .c-movie01__txt {
    font-size: 1.6rem;
  }
}

/* .c-pager01
=================================== */
.c-pager01 {
  margin: 32px 0 0;
  overflow: hidden;
  text-align: center;
}
.c-pager01 .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.c-pager01 .page-numbers {
  margin: 0 6px 10px;
  font-size: 1.6rem;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  line-height: 1;
  text-decoration: none;
  border: none;
}
.c-pager01 .page-numbers.current {
  border: 1px solid;
}
.c-pager01 .page-numbers.prev, .c-pager01 .page-numbers.next {
  margin-right: 29px;
  margin-left: 0;
  background: rgb(var(--black));
  text-indent: -99999px;
  width: 24px;
  height: 45px;
  display: inline-flex;
  position: relative;
}
.c-pager01 .page-numbers.prev::before, .c-pager01 .page-numbers.next::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  top: 50%;
  left: 50%;
  transform: rotate(-135deg);
  margin-top: -2px;
  margin-left: -1px;
}
.c-pager01 .page-numbers.next {
  margin-left: 29px;
  margin-right: 0;
}
.c-pager01 .page-numbers.next::before {
  transform: rotate(45deg);
  margin-left: -4px;
}
.c-pager01 .page-numbers .extend {
  width: auto;
  border: 0;
}
@media all and (min-width: 1000px) {
  .c-pager01 {
    margin-top: 48px;
  }
}

/* .c-pager02
================================================== */
.c-pager02 {
  margin-top: 48px;
  width: 100%;
  max-width: 810px;
}
.c-pager02__list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
  gap: 30px;
}
.c-pager02__item--all {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
}
.c-pager02__link {
  display: flex;
  gap: 20px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
}
.c-pager02__link:hover {
  opacity: 0.7;
}
.c-pager02__item--next .c-pager02__link {
  flex-direction: row-reverse;
  text-align: right;
}
.c-pager02__thumb {
  width: 149px;
  height: 94px;
  overflow: hidden;
}
.c-pager02__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.c-pager02__meta {
  display: flex;
  flex-direction: column;
}
.c-pager02__label {
  font-weight: 600;
}
.c-pager02__title {
  font-weight: 600;
}
.c-pager02__item--all .c-pager02__link {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.1em;
  height: 100%;
  width: 104px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgb(var(--black_light));
  color: rgb(var(--black_light));
  padding: 0;
  transition: none;
}
@media (max-width: 600px) {
  .c-pager02__list {
    position: relative;
    padding-bottom: 100px;
  }
  .c-pager02__thumb {
    width: 100px;
    height: 80px;
  }
  .c-pager02__link {
    gap: 10px;
  }
  .c-pager02__item--all {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
  .c-pager02__item--all .c-pager02__link {
    border-radius: 0;
    width: 100%;
    height: 50px;
  }
}

/* .c-recruit01
================================================ */
.c-recruit01 {
  background: rgb(var(--black));
  color: #fff;
  position: relative;
}
.c-recruit01__inner {
  padding-top: 32px;
  padding-bottom: 80px;
}
.c-recruit01__head-sub {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.c-recruit01__head-main {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.04em;
  font-style: italic;
}
.c-recruit01__head-lead {
  line-height: 1.2;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.c-recruit01__content {
  margin-top: 24px;
  z-index: 10;
  position: relative;
}
.c-recruit01__entry-link {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  gap: 10px;
  padding: 23px 16px;
  background: linear-gradient(to right, #EA8E1D 0%, #ED6C00 50%, #ED6C00 50%, #ED6C00 100%);
}
.c-recruit01__entry-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  width: 32px;
  height: 8px;
  overflow: hidden;
}
.c-recruit01__entry-arrow::before, .c-recruit01__entry-arrow::after {
  display: inline-block;
  width: 28px;
  height: 5px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2032%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M0%206.86914H28L17.4737%200.869141%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.c-recruit01__entry-arrow::before {
  transform: translateX(-100%);
  opacity: 0;
}
.c-recruit01__entry-en {
  font-size: 3.2rem;
  font-weight: 600;
  display: block;
  line-height: 1;
}
.c-recruit01__entry-txt {
  font-weight: 600;
  display: block;
  line-height: 1;
}
.c-recruit01__btn-link {
  position: relative;
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  color: rgb(var(--black));
  gap: 10px;
  height: 56px;
  padding: 8px 16px;
}
.c-recruit01__btn-txt {
  font-weight: 600;
  font-size: 1.6rem;
}
.c-recruit01__btn-arrow {
  position: absolute;
  bottom: 20px;
  right: 15px;
  width: 32px;
  height: 8px;
  overflow: hidden;
}
.c-recruit01__btn-arrow::before, .c-recruit01__btn-arrow::after {
  display: inline-block;
  width: 28px;
  height: 5px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2032%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M0%206.86914H28L17.4737%200.869141%22%20stroke%3D%22%231B2C43%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.c-recruit01__btn-arrow::before {
  transform: translateX(-100%);
  opacity: 0;
}
.c-recruit01__btn.mynavi .c-recruit01__btn-link {
  display: flex;
  align-items: center;
}
.c-recruit01__btn.mynavi img {
  width: 140px;
}
.c-recruit01__area-btn {
  margin-top: 8px;
  display: grid;
  gap: 8px;
}
.c-recruit01__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  overflow: hidden;
}
.c-recruit01__bg-img {
  background: url(../img/home/bg_recruit01.png) repeat-x center left/auto 100%;
}
@media all and (min-width: 1000px) {
  .c-recruit01 {
    overflow: hidden;
  }
  .c-recruit01__inner {
    display: flex;
    justify-content: space-between;
    padding-top: 54px;
    padding-bottom: 57px;
  }
  .c-recruit01__head-sub {
    font-size: 1.8rem;
  }
  .c-recruit01__head-main {
    font-size: 6.4rem;
    line-height: 1.2;
    margin-top: 4px;
    margin-bottom: 12px;
  }
  .c-recruit01__head-lead {
    font-size: 1.6rem;
  }
  .c-recruit01__content {
    width: 50%;
    max-width: 618px;
    margin: 0;
  }
  .c-recruit01__bg {
    height: 118px;
    animation: home-text-scroll 60s linear infinite;
    bottom: 0;
    width: 3023px;
  }
  .c-recruit01__entry-link {
    padding: 28px 20px 28px 56px;
    height: 150px;
  }
  .c-recruit01__entry-link:hover .c-recruit01__entry-arrow::before {
    transform: translateX(0);
    opacity: 1;
  }
  .c-recruit01__entry-link:hover .c-recruit01__entry-arrow::after {
    transform: translateX(100%);
    opacity: 0;
  }
  .c-recruit01__entry-en {
    font-size: 6.4rem;
    position: relative;
    z-index: 1;
  }
  .c-recruit01__entry-txt {
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
  }
  .c-recruit01__entry-arrow {
    right: 20px;
  }
  .c-recruit01__area-btn {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .c-recruit01__btn-link {
    height: 120px;
  }
  .c-recruit01__btn-link::after {
    bottom: 20px;
    top: auto;
    transform: translateY(0);
    right: 20px;
  }
  .c-recruit01__btn-link:hover .c-recruit01__btn-arrow::before {
    transform: translateX(0);
    opacity: 1;
  }
  .c-recruit01__btn-link:hover .c-recruit01__btn-arrow::after {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* c-single01
======================================= */
.c-single01 {
  position: relative;
  padding-bottom: 40px;
  padding-top: 32px;
}
.c-single01__title {
  font-size: 1.6rem;
  background: #EFEFEF;
  padding: 6px 24px 8px;
  font-weight: 800;
}
.c-single01__content {
  background: #fff;
  padding: 16px 16px 32px;
}
.c-single01__content hr {
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 0;
  border-top: 1px solid #B7B7B7;
}
.c-single01__content h3 {
  font-weight: 600;
  font-size: 1.6rem;
  padding-left: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
  position: relative;
}
.c-single01__content h3::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 6px;
  height: 14px;
  background: rgb(var(--orange));
}
.c-single01__content p {
  font-size: 1.4rem;
}
.c-single01__content p + p {
  margin-top: 12px;
}
.c-single01__content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-single01__content ul li {
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}
.c-single01__content ul li::before {
  content: "・";
  position: absolute;
  font-size: 1.6rem;
  width: 24px;
  text-align: center;
  left: 0;
  top: 0;
}
.c-single01__content blockquote {
  background: #F0F0F0;
  color: #585858;
  padding: 20px;
  margin: 0 0 1.5em 0;
}
.c-single01__content a {
  text-decoration: underline;
  position: relative;
  display: inline;
  font-weight: 600;
  color: #707070;
}
.c-single01__content a[target=_blank]::after {
  content: "";
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 13px;
  height: 13px;
  background: url(../img/common/ico_target01.png) no-repeat center right/contain;
  margin-left: 10px;
}
.c-single01__content a:hover {
  text-decoration: none;
}
.c-single01__message {
  font-weight: 600;
  background: #fff;
}

@media (min-width: 768px) {
  .c-single01 {
    padding-top: 48px;
    padding-bottom: 60px;
  }
  .c-single01__title {
    font-size: 2.2rem;
    padding: 9px 40px 11px;
  }
  .c-single01__content {
    padding: 40px 40px 60px;
    font-size: 1.6rem;
  }
  .c-single01__content hr {
    margin-top: 32px;
    margin-bottom: 32px;
    padding: 0;
  }
  .c-single01__content h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
  .c-single01__content h3::before {
    width: 6px;
    height: 18px;
  }
  .c-single01__content p {
    font-size: 1.6rem;
  }
}
/* .c-table01
================================================ */
.c-table01 + .c-table01 {
  margin-top: 16px;
}
.c-table01 th, .c-table01 td {
  text-align: left;
  line-height: 1.5;
}
.c-table01 tr {
  background: #fff;
  border-top: 1px solid #DFDFDF;
}
.c-table01 tr:first-child {
  border-top: none;
}
.c-table01 tr:first-child th::before {
  display: none;
}
.c-table01 th {
  position: relative;
  padding: 14px 16px 2px;
}
.c-table01 th::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 63px;
  height: 1px;
  background: rgb(var(--orange));
}
.c-table01 td {
  padding: 2px 16px 20px;
}
@media all and (max-width: 999px) {
  .c-table01 table, .c-table01 thead, .c-table01 tbody, .c-table01 tr, .c-table01 th, .c-table01 td {
    display: block;
  }
}
@media all and (min-width: 1000px) {
  .c-table01 + .c-table01 {
    margin-top: 32px;
  }
  .c-table01 th, .c-table01 td {
    font-size: 1.6rem;
  }
  .c-table01 th {
    width: 200px;
    padding: 24px 16px 24px 24px;
  }
  .c-table01 th::before {
    width: 90px;
  }
  .c-table01 td {
    padding: 24px 24px 24px 16px;
  }
  .c-table01 tr:last-child th, .c-table01 tr:last-child td {
    border-bottom: 1px solid #DFDFDF;
    position: relative;
  }
  .c-table01 tr:last-child th::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 90px;
    height: 1px;
    background: rgb(var(--orange));
  }
}

/* .l-breadcrumb
================================================ */
.l-breadcrumb {
  padding-top: 64px;
}
.l-breadcrumb__inner {
  padding-right: 24px;
  padding-left: 24px;
}
@media all and (min-width: 1000px) {
  .l-breadcrumb {
    padding-top: 92px;
  }
  .l-breadcrumb__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.l-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.2rem;
  padding: 4px 0 10px;
}
.l-breadcrumb-list__item {
  display: inline-block;
  vertical-align: top;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item {
  margin-left: 16px;
  padding-left: 24px;
  position: relative;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-top: 1px solid rgb(var(--black));
  border-right: 1px solid rgb(var(--black));
  transform: translateY(-50%) rotate(45deg);
}
.l-breadcrumb-list__item span {
  color: rgb(var(--orange));
}
@media all and (max-width: 999px) {
  .l-breadcrumb-list {
    white-space: nowrap;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
  }
  .l-breadcrumb-list::-webkit-scrollbar {
    display: none;
  }
}
@media all and (min-width: 1000px) {
  .l-breadcrumb-list {
    padding: 16px 0 16px;
  }
}

/* .l-fixed-cv
================================================ */
.l-fixed-cv {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 10;
}
.l-fixed-cv__btn01-link {
  background: rgb(var(--black));
  color: #fff;
  padding: 10px 20px;
  font-size: 1.6rem;
  font-weight: 600;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.06em;
}
.l-fixed-cv__btn02-link {
  background: linear-gradient(to right, #ED6C00, #F6AD3C);
  color: #fff;
  padding: 10px 20px;
  font-size: 1.6rem;
  font-weight: 600;
  height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.l-fixed-cv__btn02-text {
  display: block;
  line-height: 1;
}
.l-fixed-cv__btn02-text:nth-child(1) {
  font-size: 2rem;
  font-weight: 600;
}
.l-fixed-cv__btn02-text:nth-child(2) {
  margin-top: 4px;
  font-size: 1rem;
}
@media all and (min-width: 1000px) {
  .l-fixed-cv__btn01 {
    margin-top: 0;
    width: 140px;
    position: absolute;
    top: 50px;
    right: 140px;
  }
  .l-fixed-cv__btn02 {
    margin-top: 0;
    width: 140px;
    position: absolute;
    top: 50px;
    right: 0;
  }
}

/* .c-links01
================================================ */
.c-links01__inner {
  padding-top: 32px;
  padding-bottom: 32px;
}
.c-links01__list {
  display: grid;
  gap: 10px;
}
.c-links01__item-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 100px;
  padding: 16px;
  width: 100%;
  color: #fff;
  overflow: hidden;
}
.c-links01__item-link img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
}
.c-links01__item-txt {
  font-weight: 600;
  font-size: 1.6rem;
  position: relative;
  line-height: 1.2;
  z-index: 1;
}
.c-links01__item-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  width: 32px;
  height: 8px;
  overflow: hidden;
}
.c-links01__item-arrow::before, .c-links01__item-arrow::after {
  display: inline-block;
  width: 28px;
  height: 5px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2032%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M0%206.86914H28L17.4737%200.869141%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.c-links01__item-arrow::before {
  transform: translateX(-100%);
  opacity: 0;
}
@media all and (min-width: 1000px) {
  .c-links01__inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .c-links01__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }
  .c-links01__item-link {
    height: 200px;
    padding: 40px;
  }
  .c-links01__item-link:hover img {
    transform: scale(1.05);
  }
  .c-links01__item-link:hover .c-links01__item-arrow::before {
    transform: translateX(0);
    opacity: 1;
  }
  .c-links01__item-link:hover .c-links01__item-arrow::after {
    transform: translateX(100%);
    opacity: 0;
  }
  .c-links01__item-txt {
    font-size: 2.4rem;
    margin-left: -15px;
  }
  .c-links01__item-arrow {
    width: 41px;
    height: 28px;
    right: 40px;
  }
}

/* .l-footer
================================================ */
.l-footer {
  margin-bottom: 64px;
  background: #f7f7f7;
}
.l-footer__inner01 {
  padding: 24px;
}
.l-footer__inner02 {
  margin-top: 40px;
  padding: 0 24px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
.l-footer__logo {
  width: 160px;
}
@media all and (min-width: 1000px) {
  .l-footer {
    margin-bottom: 0;
  }
  .l-footer__inner01 {
    padding: 24px 40px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .l-footer__inner02 {
    margin-top: 80px;
    padding: 0 40px 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
  }
}

/* .l-footer-nav
================================================ */
.l-footer-nav {
  margin-top: 24px;
}
.l-footer-nav__item-link {
  position: relative;
  font-weight: 600;
  text-align: left;
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid #d9d9d9;
}
.l-footer-nav__item-link::after {
  display: inline-block;
  width: 28px;
  height: 5px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2032%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M0%206.86914H28L17.4737%200.869141%22%20stroke%3D%22%231B2C43%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
}
@media all and (min-width: 1000px) {
  .l-footer-nav {
    display: flex;
    gap: 24px;
    margin-top: 0;
  }
  .l-footer-nav__item {
    position: relative;
  }
  .l-footer-nav__item-link {
    display: block;
    border: 0;
    font-size: 1.5rem;
  }
  .l-footer-nav__item-link::after {
    display: none;
  }
}

/* .l-footer-subnav
================================================ */
.l-footer-subnav-item__link {
  position: relative;
  font-weight: 500;
  display: inline-block;
  font-size: 1rem;
  line-height: 3;
  padding-right: 21px;
}
.l-footer-subnav-item__link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: url(../img/common/ico_target01.svg) no-repeat center/contain;
}
@media all and (min-width: 1000px) {
  .l-footer-subnav {
    display: flex;
    gap: 32px;
  }
  .l-footer-subnav-item__link {
    font-size: 1.4rem;
  }
  .l-footer-subnav-item__link::after {
    opacity: 0.7;
  }
}

/* .l-footer-cr
================================================ */
.l-footer-cr__txt {
  font-size: 1rem;
  line-height: 1.5;
}
@media all and (min-width: 1000px) {
  .l-footer-cr__txt {
    font-size: 1.4rem;
  }
}

/* .l-header
================================================ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  min-width: 320px;
  background: rgba(247, 247, 247, 0.8);
}
.l-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 11px 24px;
  height: 64px;
}
.l-header__logo {
  width: 109px;
}
@media all and (min-width: 1000px) {
  .l-header__inner {
    height: 92px;
  }
  .l-header__logo {
    width: 160px;
  }
}

/* .l-nav-btn
================================================== */
.l-nav-btn {
  position: relative;
  width: 40px;
  height: 40px;
  color: rgb(var(--black));
  cursor: pointer;
  border: none;
}
.l-nav-btn__line {
  position: absolute;
  top: 6px;
  right: 4px;
  width: 32px;
  height: 1px;
  content: "";
  background: rgb(var(--black));
  transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
}
.l-nav-btn__line:nth-child(2) {
  top: 16px;
  width: 24px;
}
.l-nav-btn__text {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  position: absolute;
  right: 2px;
  bottom: 3px;
  transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(1) {
  top: 14px;
  transform: rotate(-17deg);
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(2) {
  top: 14px;
  transform: rotate(17deg);
  width: 32px;
}
@media all and (min-width: 1000px) {
  .l-nav-btn {
    display: none;
  }
}

/* .l-nav
================================================ */
.l-nav {
  position: fixed;
}
.l-nav__btn01 {
  max-width: 360px;
  margin: 24px auto 0;
}
.l-nav__btn01-link {
  background: rgb(var(--black));
  color: #fff;
  padding: 10px 20px;
  font-size: 1.6rem;
  font-weight: 600;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.06em;
}
.l-nav__btn02 {
  margin: 16px auto 0;
  max-width: 360px;
}
.l-nav__btn02-link {
  background: linear-gradient(to right, #ED6C00, #F6AD3C);
  color: #fff;
  padding: 10px 20px;
  font-size: 1.6rem;
  font-weight: 600;
  height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.l-nav__btn02-text {
  display: block;
  line-height: 1;
}
.l-nav__btn02-text:nth-child(1) {
  font-size: 2rem;
  font-weight: 600;
}
.l-nav__btn02-text:nth-child(2) {
  margin-top: 4px;
  font-size: 1rem;
}
.l-nav__sns {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.l-nav__sns-item {
  width: 18px;
  height: 27px;
}
.l-nav__sns-item.youtube {
  width: 32px;
}
.l-nav__sns-item.mynavi {
  width: 100px;
}
.l-nav__sns-link {
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
@media all and (max-width: 999px) {
  .l-nav {
    background: #EFEFEF;
    top: 64px;
    left: 0;
    width: 100%;
    min-width: 320px;
    max-height: 100vh;
    overscroll-behavior-y: none;
    -webkit-overflow-scrolling: touch;
    transform: translateX(120%);
    transition: transform var(--mh--duration) var(--mh--easing);
    padding-bottom: 23px;
  }
  .l-nav::-webkit-scrollbar {
    display: none;
  }
  .l-nav.is-open {
    transform: translateX(0);
  }
}
@media all and (min-width: 1000px) {
  .l-nav {
    position: static;
    display: flex;
    justify-content: flex-end;
    min-width: auto;
    width: calc(100% - 170px);
  }
  .l-nav__btn01 {
    margin-top: 0;
    width: 140px;
    position: absolute;
    top: 50px;
    right: 140px;
  }
  .l-nav__btn01-link {
    height: 80px;
  }
  .l-nav__btn02 {
    margin-top: 0;
    width: 140px;
    position: absolute;
    top: 50px;
    right: 0;
  }
  .l-nav__btn02-link {
    height: 80px;
  }
  .l-nav__sns {
    margin-top: 0;
    position: absolute;
    top: 12px;
    right: 40px;
  }
}

/* .l-nav-list
================================================== */
@media all and (max-width: 999px) {
  .l-nav-list {
    padding: 12px 24px;
  }
  .l-nav-list__item-link {
    position: relative;
    font-weight: 600;
    text-align: left;
    display: block;
    padding: 16px 0;
    line-height: 1;
    border-bottom: 1px solid #d9d9d9;
  }
  .l-nav-list__item-link::after {
    display: inline-block;
    width: 28px;
    height: 5px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2032%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M0%206.86914H28L17.4737%200.869141%22%20stroke%3D%22%231B2C43%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
  }
}
@media all and (min-width: 1000px) {
  .l-nav-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px 25px;
    padding-right: 300px;
  }
  .l-nav-list__item {
    position: relative;
  }
  .l-nav-list__item-link {
    display: block;
    border: 0;
    font-size: 1.5rem;
  }
  .l-nav-list__btn {
    margin: 0 0 0 30px;
  }
}

/* .l-nav-overlay
================================================ */
.l-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  background-color: rgba(57, 57, 65, 0.9);
}
.l-nav-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: #fff;
}

/* .l-main-img HOME
================================================ */
.l-main-img {
  position: relative;
  aspect-ratio: 4/5;
}
.l-main-img__inner {
  padding-bottom: 48px;
  background: url("../img/common/bg_orange.png") no-repeat center center/cover;
}
.l-main-img__bg {
  object-position: center;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.l-main-img__copy {
  position: absolute;
  bottom: 88px;
  left: 18px;
  font-size: 2.4rem;
  line-height: 1.1;
  font-weight: 800;
  font-style: italic;
  color: #fff;
  height: 53px;
  padding-left: 13px;
}
.l-main-img__copy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #ED6C00 40%, #F6AD3C 100%);
  transform: skewX(-10deg);
}
.l-main-img__btn {
  position: absolute;
  bottom: 24px;
  right: 0;
  z-index: 1;
  width: 160px;
  overflow: hidden;
  border-radius: 8px 0 0 8px;
}
.l-main-img__btn-link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #3A3A3A url("../img/common/img_mainimg_btn01_arrow.png") no-repeat right 3px bottom/30px;
}
.l-main-img__btn-text {
  display: block;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.2;
  font-weight: 600;
  width: 52px;
  margin: auto;
}
@media all and (min-width: 1000px) {
  .l-main-img {
    aspect-ratio: 16/9;
  }
  .l-main-img__inner {
    background: none;
    padding-bottom: 0;
  }
  .l-main-img__copy {
    font-size: 5.2rem;
    bottom: 40px;
    left: 40px;
    height: 133px;
    padding-left: 35px;
  }
  .l-main-img__copy::before {
    width: 8px;
  }
  .l-main-img__btn {
    width: 200px;
    bottom: 40px;
    right: 40px;
    border-radius: 10px;
  }
}

/* .l-sub-img
================================================ */
.l-sub-img {
  background: url("../img/common/bg_orange_header01_sp.png") no-repeat center center/cover;
  color: #fff;
}
.l-sub-img::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  height: calc(100% + 30px);
  background-repeat: no-repeat;
  background-position: top 10% center;
  background-size: cover;
  display: none;
}
.l-sub-img__inner {
  padding: 32px 24px 30px;
  position: relative;
}
.l-sub-img__en {
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.l-sub-img__head {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  font-size: 2.4rem;
}
@media (max-width: 999px) {
  .l-sub-img::before {
    max-width: 500px;
  }
}
@media all and (min-width: 1000px) {
  .l-sub-img {
    background: url("../img/common/bg_orange_header01_pc.png") no-repeat center center/cover;
  }
  .l-sub-img::before {
    height: calc(100% + 130px);
    max-width: 1040px;
  }
  .l-sub-img__inner {
    padding: 75px 40px;
  }
  .l-sub-img__en {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
  .l-sub-img__head {
    font-size: 5.8rem;
  }
}

/* .l-sidebar
================================================== */
.js-c-anime-elem[data-anime=fadein] {
  opacity: 0;
  transition: all 1s ease;
}
.js-c-anime-elem[data-anime=fadein].is-animated {
  opacity: 1;
}

.js-c-anime-elem[data-anime=fadein-up] {
  opacity: 0;
  transform: translateY(30px);
  display: block;
  transition: all 0.4s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.js-c-anime-elem[data-anime=fadein-up].is-animated {
  opacity: 1;
  transform: translateY(0);
}

.js-c-anime-elem[data-anime=fadein-left] {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.4s ease;
}
.js-c-anime-elem[data-anime=fadein-left].is-animated {
  opacity: 1;
  transform: translateX(0);
}

.js-c-anime-elem[data-anime=fadein-right] {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.4s ease;
}
.js-c-anime-elem[data-anime=fadein-right].is-animated {
  opacity: 1;
  transform: translateX(0);
}

.js-c-anime-elem[data-anime-delay="0.1"] {
  transition-delay: 0.1s;
}
.js-c-anime-elem[data-anime-delay="0.2"] {
  transition-delay: 0.2s;
}
.js-c-anime-elem[data-anime-delay="0.3"] {
  transition-delay: 0.3s;
}
.js-c-anime-elem[data-anime-delay="0.4"] {
  transition-delay: 0.4s;
}
.js-c-anime-elem[data-anime-delay="0.5"] {
  transition-delay: 0.5s;
}
.js-c-anime-elem[data-anime-delay="0.6"] {
  transition-delay: 0.6s;
}
.js-c-anime-elem[data-anime-delay="0.7"] {
  transition-delay: 0.7s;
}
.js-c-anime-elem[data-anime-delay="0.8"] {
  transition-delay: 0.8s;
}
.js-c-anime-elem[data-anime-delay="0.9"] {
  transition-delay: 0.9s;
}
.js-c-anime-elem[data-anime-delay="1"] {
  transition-delay: 1s;
}
.js-c-anime-elem[data-anime-delay="1.1"] {
  transition-delay: 1.1s;
}
.js-c-anime-elem[data-anime-delay="1.2"] {
  transition-delay: 1.2s;
}
.js-c-anime-elem[data-anime-delay="1.3"] {
  transition-delay: 1.3s;
}
.js-c-anime-elem[data-anime-delay="1.4"] {
  transition-delay: 1.4s;
}
.js-c-anime-elem[data-anime-delay="1.5"] {
  transition-delay: 1.5s;
}
.js-c-anime-elem[data-anime-delay="1.6"] {
  transition-delay: 1.6s;
}
.js-c-anime-elem[data-anime-delay="1.7"] {
  transition-delay: 1.7s;
}
.js-c-anime-elem[data-anime-delay="1.8"] {
  transition-delay: 1.8s;
}
.js-c-anime-elem[data-anime-delay="1.9"] {
  transition-delay: 1.9s;
}
.js-c-anime-elem[data-anime-delay="2"] {
  transition-delay: 2s;
}

@keyframes c-text-scroll01 {
  from {
    background-position: 0 center;
  }
  to {
    background-position: 100% center;
  }
}
@keyframes c-text-scroll02 {
  from {
    background-position: 100% center;
  }
  to {
    background-position: 0 center;
  }
}
/**************************\
  Basic Modal Styles
\**************************/
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.modal__container {
  background-color: #fff;
  padding: 30px;
  max-width: 500px;
  max-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal__btn {
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
  transform: scale(1.05);
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.modal {
  display: none;
}

.modal.is-open {
  display: block;
}

.modal[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.modal[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.modal[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.modal[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.modal .modal__container,
.modal .modal__overlay {
  will-change: transform;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 2em;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

.js-c-switch-tab {
  cursor: pointer;
}

.js-c-switch-content {
  display: none;
}
.js-c-switch-content.is-active {
  display: block;
}

img.feel01,
img.feel02,
img.feel03,
img.feel04,
img.feel05,
img.feel06 {
  display: none;
}

body:not(.feel01):not(.feel02):not(.feel03):not(.feel04):not(.feel05):not(.feel06) img.feel01 {
  display: block;
}

body.feel01 img.feel01 {
  display: block;
}

body.feel02 img.feel02 {
  display: block;
}

body.feel03 img.feel03 {
  display: block;
}

body.feel04 img.feel04 {
  display: block;
}

body.feel05 img.feel05 {
  display: block;
}

body.feel06 img.feel06 {
  display: block;
}

.js-c-toggle-trigger {
  cursor: pointer;
}

.js-c-toggle-content {
  display: none;
}

#about .l-sub-img {
  position: relative;
  margin-bottom: 30px;
}
#about .l-sub-img::before {
  display: block;
  background-image: url(../img/about/img_mainimg01.png);
}
@media all and (min-width: 1000px) {
  #about .l-sub-img {
    margin-bottom: 130px;
  }
}

/* .about-vision
================================================ */
.about-vision {
  background: url(../img/about/bg_vision01_sp.png) no-repeat left bottom/cover;
  color: #fff;
  margin-top: 60px;
}
.about-vision__link {
  display: block;
  padding: 22px;
}
.about-vision__head {
  font-weight: 800;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 15px;
}
.about-vision__head-sub {
  margin-bottom: 12px;
}
.about-vision__head-main {
  font-size: 2rem;
}
.about-vision__head-main-num {
  font-size: 2.4rem;
}
.about-vision__txt {
  letter-spacing: 0.06em;
  line-height: 1.5;
  font-size: 1.4rem;
  width: fit-content;
  margin: auto;
}
.about-vision__btn {
  margin-top: 24px;
  pointer-events: none;
}
@media all and (min-width: 1000px) {
  .about-vision {
    background: url(../img/about/bg_vision01_pc.png) no-repeat left bottom/cover;
  }
  .about-vision__link {
    padding: 71px 47px 47px;
  }
  .about-vision__link .c-btn01.is-orange .c-btn01__link::before {
    background: rgba(255, 255, 255, 0.7) !important;
  }
  .about-vision__link .c-btn01__link::after {
    display: inline-block;
    width: 28px;
    height: 5px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2032%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M0%206.86914H28L17.4737%200.869141%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
  }
  .about-vision__link:hover .c-btn01__link {
    color: #D46100;
    border-color: #D46100;
  }
  .about-vision__link:hover .c-btn01__link::before {
    width: 100%;
    left: 0;
  }
  .about-vision__link:hover .c-btn01__link::after {
    display: inline-block;
    width: 28px;
    height: 5px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2032%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M0%206.86914H28L17.4737%200.869141%22%20stroke%3D%22%23D46100%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
    width: 36px;
    height: 6px;
  }
  .about-vision__head-sub {
    font-size: 1.6rem;
  }
  .about-vision__head-main-num {
    font-size: 5.8rem;
  }
  .about-vision__head-main {
    font-size: 4.8rem;
  }
  .about-vision__btn {
    width: 240px;
  }
}

/* .about-message
================================================ */
.about-message {
  padding-top: 32px;
  padding-bottom: 60px;
  position: relative;
}
.about-message__content {
  display: grid;
  gap: 24px;
}
.about-message__image {
  margin: auto;
  display: block;
  width: fit-content;
  position: relative;
  width: 217px;
}
.about-message__image::before {
  content: "";
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 152px;
  height: 166px;
  background: url(../img/about/bg_message01.png) no-repeat center/cover;
  z-index: -1;
}
.about-message__title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 16px;
}
.about-message__txt + .about-message__txt {
  margin-top: 12px;
}
.about-message__name {
  margin-top: 16px;
  font-weight: 800;
  text-align: right;
}
.about-message__name-large {
  font-size: 1.8rem;
  margin-left: 12px;
}
@media all and (min-width: 1000px) {
  .about-message {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .about-message__content {
    grid-template-columns: 294px 1fr;
    gap: 48px;
  }
  .about-message__image {
    margin: 0;
    width: 294px;
    height: 325px;
  }
  .about-message__image::before {
    bottom: -32px;
    right: -11px;
    width: 224px;
    height: 244px;
  }
  .about-message__title {
    font-size: 3.6rem;
    text-align: left;
    margin-bottom: 32px;
  }
  .about-message__txt + .about-message__txt {
    margin-top: 16px;
  }
  .about-message__name {
    margin-top: 32px;
    font-size: 1.8rem;
  }
  .about-message__name-large {
    font-size: 2.4rem;
  }
}

/* .about-scroll01
================================================ */
.about-scroll01 {
  position: relative;
  margin: 0 -24px;
  height: 60px;
  pointer-events: none;
  overflow: hidden;
}
.about-scroll01__scroll {
  background: url(../img/about/bg_scroll01.png) repeat center center/auto 100%;
}
@media all and (min-width: 1000px) {
  .about-scroll01 {
    height: 112px;
    width: calc(100% + 35px);
    left: 0;
    z-index: 1;
    margin: 0;
  }
}
@media (min-width: 1305px) {
  .about-scroll01 {
    width: calc(50vw + 310px);
  }
}

/* .about-strengths
================================================ */
.about-strengths {
  padding-top: 80px;
  padding-bottom: 60px;
}
.about-strengths__btn01 {
  text-align: left;
}
.about-strengths__list {
  display: grid;
  gap: 24px;
  margin-top: 32px;
  position: relative;
}
.about-strengths__list::before {
  content: "";
  position: absolute;
  top: 34px;
  right: -24px;
  width: 100px;
  height: calc(100% - 325px);
  background: url(../img/about/bg_strenghts01_sp.png) no-repeat center/cover;
  z-index: -1;
}
.about-strengths__item {
  background: #fff;
  padding: 16px 12px;
  display: grid;
  gap: 12px;
}
.about-strengths__item-area-txt {
  padding-left: 16px;
}
.about-strengths__item-head {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
  margin-left: -16px;
}
.about-strengths__item-num {
  background: url("../img/requirements/bg_flow01.png") no-repeat center/contain;
  display: block;
  width: 28px;
  height: 28px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding-top: 2px;
  font-size: 1.4rem;
}
.about-strengths__item-img-pic, .about-strengths__item-img {
  margin-top: 16px;
}
.about-strengths__item-img-pic img, .about-strengths__item-img img {
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
}
@media (max-width: 472px) {
  .about-strengths__item-img.is-scroll {
    overflow-x: scroll;
  }
  @supports (scrollbar-color: auto) {
    .about-strengths__item-img.is-scroll {
      scrollbar-color: rgb(var(--orange)), #D9D9D9;
      scrollbar-width: 4px;
    }
  }
  @supports selector(::-webkit-scrollbar) {
    .about-strengths__item-img.is-scroll::-webkit-scrollbar {
      height: 4px;
      background: #D9D9D9;
    }
    .about-strengths__item-img.is-scroll::-webkit-scrollbar-thumb {
      background: rgb(var(--orange));
      border-radius: 2px;
    }
  }
  .about-strengths__item-img img {
    width: 100%;
    height: auto;
  }
  .about-strengths__item-img-pic {
    height: 285px;
    width: 400px;
    padding: 8px;
  }
}
@media all and (max-width: 999px) {
  .about-strengths__btn01 .c-btn02__link {
    display: inline;
    border-bottom: 1px solid;
    font-weight: 600;
  }
  .about-strengths__btn01 .c-btn02__link::before {
    display: none;
  }
}
@media all and (min-width: 1000px) {
  .about-strengths {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .about-strengths__btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .about-strengths__content {
    margin-top: 48px;
  }
  .about-strengths__list {
    gap: 32px;
  }
  .about-strengths__list::before {
    top: 63px;
    right: auto;
    left: calc(100% - 50px);
    height: calc(100% - 213px);
    width: 85px;
    background: url(../img/common/bg_orange_noise.png) repeat center/375px;
  }
  .about-strengths__list::after {
    content: "";
    position: absolute;
    top: 63px;
    right: auto;
    left: calc(100% - 50px);
    height: calc(100% - 213px);
    width: 85px;
    background: linear-gradient(to left, rgb(212, 97, 1) 0%, rgba(237, 108, 0, 0) 100%);
  }
  .about-strengths__item {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 16px;
    position: relative;
    z-index: 1;
    align-items: center;
  }
  .about-strengths__item-area-txt {
    letter-spacing: 0;
  }
  .about-strengths__item-head {
    font-size: 2.4rem;
  }
  .about-strengths__item-num {
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
    padding-top: 4px;
  }
  .about-strengths__item-txt {
    font-size: 1.6rem;
  }
  .about-strengths__item-img {
    margin: 0;
  }
  .about-strengths__item-img-pic {
    margin: 0;
  }
}
@media (min-width: 1280px) {
  .about-strengths__item {
    grid-template-columns: 1fr 400px;
    gap: 40px;
  }
}
@media (min-width: 1305px) {
  .about-strengths__list::before, .about-strengths__list::after {
    width: calc(50vw - 578px);
  }
}

/* .about-number
================================================ */
.about-number {
  background: #efefef;
  padding: 32px 24px 60px;
  margin: 0 -24px;
}
.about-number__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 24px auto 0;
  max-width: 700px;
}
.about-number__card {
  background: #fff;
  padding: 8px 0px 8px 8px;
  position: relative;
}
.about-number__card-title {
  font-size: 1.2rem;
  font-style: italic;
  padding-left: 12px;
  margin-bottom: 7px;
  position: relative;
}
.about-number__card-title::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 2px;
  height: 12px;
  background: #F7A25A;
  transform: rotate(20deg);
}
.about-number__card-ico {
  width: 38px;
  position: absolute;
  bottom: 8px;
  left: 8px;
}
.about-number__card-num {
  font-size: 2.4rem;
  line-height: 1.1;
  font-weight: 600;
  color: rgb(var(--orange));
  text-align: right;
  padding-right: 8px;
}
.about-number__unit {
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  margin-left: 4px;
  width: 26px;
  text-align: center;
  display: inline-block;
}
.about-number__card-note {
  font-size: 1rem;
  color: #989898;
  text-align: right;
  font-weight: 500;
}
.about-number__card-in {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding-right: 8px;
}
.about-number__card-in .about-number__card-num {
  padding: 0;
}
.about-number__card-in .about-number__unit {
  display: block;
  text-align: center;
}
.about-number__card-in .about-number__card-ico {
  position: static;
  width: 42px;
}
.about-number__card-in .about-number__per {
  font-size: 1.2rem;
}
@media all and (min-width: 1000px) {
  .about-number {
    padding-top: 60px;
    padding-bottom: 80px;
    margin: 0;
    position: relative;
  }
  .about-number::before {
    content: "";
    position: absolute;
    top: 0;
    right: -35px;
    width: 100vw;
    height: 100%;
    background: #efefef;
    z-index: -1;
  }
  .about-number__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1240px;
    margin: 48px auto 0;
  }
  .about-number__card {
    padding: 12px 16px 24px;
  }
  .about-number__card-title {
    font-size: 2rem;
    padding-left: 10px;
    z-index: 1;
  }
  .about-number__card-title::before {
    top: 8px;
    left: 0px;
    height: 22px;
  }
  .about-number__card-ico {
    width: 88px;
    bottom: 8px;
    left: 8px;
  }
  .about-number__card-in {
    line-height: 1;
    gap: 20px;
    text-align: right;
    padding-right: 0;
  }
  .about-number__card-in .about-number__card-num {
    white-space: nowrap;
  }
  .about-number__card-in .about-number__unit {
    margin: 0;
  }
  .about-number__card-in .about-number__per {
    font-size: 1.8rem;
  }
  .about-number__card-in .about-number__card-ico {
    width: 79px;
    bottom: 79px;
  }
  .about-number__card-num {
    font-size: 4.8rem;
    position: relative;
    line-height: 1;
    padding: 0;
  }
  .about-number__card-num .about-number__card-num-small {
    font-size: 3.8rem;
  }
  .about-number__unit {
    white-space: nowrap;
    width: auto;
    font-size: 1.8rem;
    margin: 0 0 0 10px;
  }
  .about-number__card-note {
    font-size: 1.2rem;
    position: absolute;
    bottom: 8px;
    right: 12px;
  }
}
@media (max-width: 1265px) {
  .about-number__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 540px) and (max-width: 999px) {
  .about-number__list {
    grid-template-columns: repeat(3, 1fr);
    max-width: 500px;
  }
}
@media (min-width: 1305px) {
  .about-number::before {
    right: calc((100vw - 1260px) / 2 * -1);
  }
}

/* .about-overview
================================================ */
.about-overview {
  padding-top: 32px;
  padding-bottom: 60px;
}
.about-overview__table a {
  color: rgb(var(--orange));
}
@media all and (min-width: 1000px) {
  .about-overview {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}

/* .entry-form
================================================ */
.entry-form__inner {
  padding-top: 40px;
  padding-bottom: 60px;
}
.entry-form__form {
  padding-top: 40px;
}
@media all and (min-width: 1000px) {
  .entry-form__inner {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .entry-form__form {
    padding-top: 100px;
  }
}

/* #complete
================================================ */
#complete .l-sub-img {
  background: none;
  color: rgb(var(--black));
}
#complete .l-sub-img__inner {
  padding-top: 60px;
  padding-bottom: 48px;
}
@media all and (min-width: 1000px) {
  #complete .l-sub-img__inner {
    max-width: 1040px !important;
    margin: auto;
    padding: 100px 0 60px;
    width: calc(100% - 70px);
  }
  #complete .l-sub-img__head {
    font-size: 4rem;
  }
}

/* .entry-complete
================================================ */
.entry-complete__message-inner {
  padding-bottom: 100px;
}
.entry-complete__message-txt + .entry-complete__message-txt {
  margin-top: 20px;
}
.entry-complete__movie {
  background: #efefef;
}
.entry-complete__movie-inner {
  padding-top: 32px;
  padding-bottom: 60px;
}
.entry-complete__btn {
  margin-top: 32px;
}
.entry-complete__btn + .entry-complete__btn {
  margin-top: 16px;
}
@media all and (min-width: 1000px) {
  .entry-complete__message-txt + .entry-complete__message-txt {
    margin-top: 24px;
  }
  .entry-complete__movie-inner {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .entry-complete__btn {
    margin-top: 48px;
  }
  .entry-complete__btn + .entry-complete__btn {
    margin-top: 32px;
  }
}

/* .error-page404
================================================ */
.error-page404__inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media all and (min-width: 1000px) {
  .error-page404__inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

/* .home-message
================================================ */
.home-message {
  position: relative;
}
.home-message::before {
  content: "";
  position: absolute;
  bottom: 11%;
  left: 0;
  width: 100%;
  height: 74vw;
  max-height: 416px;
  background: url(../img/common/bg_orange02.png) no-repeat center bottom/cover;
}
.home-message__inner {
  padding-top: 32px;
  padding-bottom: 32px;
}
.home-message__head {
  padding-bottom: 0;
}
.home-message__head::after {
  display: none;
}
.home-message__copy {
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  font-style: italic;
  text-align: center;
  margin-top: 4px;
  font-weight: 600;
}
.home-message__text {
  margin-top: 28px;
  text-align: center;
  font-weight: 600;
}
.home-message__img {
  margin-top: 16px;
  position: relative;
  pointer-events: none;
}
@media all and (max-width: 999px) {
  .home-message__img {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
  .home-message__img img {
    width: fit-content;
    margin: auto;
  }
}
@media all and (min-width: 1000px) {
  .home-message {
    overflow: hidden;
    margin-top: -8px;
  }
  .home-message::before {
    display: none;
  }
  .home-message__inner {
    position: relative;
    max-width: 100%;
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .home-message__head .c-head01__sub img {
    width: 627px;
    height: auto;
  }
  .home-message__copy {
    margin-top: 15px;
    font-size: 2.4rem;
  }
  .home-message__img {
    position: absolute;
    margin: 0;
    top: 0;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  .home-message__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 290px;
    height: 468px;
    background: url(../img/common/bg_orange02.png) no-repeat center/cover;
  }
  .home-message__img01 {
    width: 255px;
    margin-top: 89px;
    margin-left: 95px;
  }
  .home-message__img02 {
    margin-top: 24px;
    width: 227px;
  }
  .home-message__img03 {
    width: 202px;
    margin-left: auto;
  }
  .home-message__img04 {
    width: 268px;
    margin-left: auto;
    margin-right: 82px;
    margin-top: -15px;
    z-index: 1;
    position: relative;
  }
  .home-message__img02-pc {
    position: absolute;
    top: 247px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 78px;
    pointer-events: none;
  }
  .home-message__img02-pc::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 293px;
    height: 364px;
    background: url(../img/common/bg_orange02.png) no-repeat center/cover;
  }
}
@media (min-width: 1000px) and (max-width: 1439px) {
  .home-message__img::before {
    width: clamp(149px, 14.9vw, 290px);
    height: clamp(234px, 23.4vw, 468px);
  }
  .home-message__img01 {
    width: clamp(130px, 13vw, 255px);
    margin-top: clamp(44.5px, 4.45vw, 89px);
    margin-left: clamp(47.5px, 4.75vw, 95px);
  }
  .home-message__img02 {
    margin-top: clamp(12px, 1.2vw, 24px);
    width: clamp(115px, 11.5vw, 227px);
  }
  .home-message__img03 {
    width: clamp(104px, 10.4vw, 202px);
  }
  .home-message__img04 {
    width: clamp(138px, 13.8vw, 268px);
    margin-right: clamp(41px, 4.1vw, 82px);
    margin-top: clamp(-7.5px, -0.75vw, -15px);
  }
  .home-message__img02-pc {
    bottom: 0;
    top: auto;
    padding-bottom: clamp(39px, 3.9vw, 78px);
  }
  .home-message__img02-pc::before {
    bottom: 0;
    top: auto;
    width: clamp(149px, 14.9vw, 293px);
    height: clamp(182px, 18.2vw, 364px);
  }
}

/* .home-works
================================================ */
.home-works__inner {
  padding-top: 32px;
  padding-bottom: 32px;
}
.home-works__text {
  margin-top: 16px;
  font-weight: 600;
}
.home-works__img {
  margin-top: 24px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 1000px) {
  .home-works {
    overflow: hidden;
  }
  .home-works__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 97px;
    padding-bottom: 78px;
    position: relative;
  }
  .home-works__area-txt {
    width: 529px;
    padding-bottom: 123px;
  }
  .home-works__text {
    width: 509px;
    padding-left: 9px;
  }
  .home-works__btn {
    margin: 0;
    position: absolute;
    bottom: 120px;
    left: 0;
  }
  .home-works__img {
    width: calc(100% - 469px);
    margin-right: -100px;
    padding-bottom: 17px;
    max-width: 670px;
  }
}

/* .home-movie
================================================ */
.home-movie {
  position: relative;
}
.home-movie::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 228px;
  background: url(../img/common/bg_orange02.png) no-repeat center bottom/cover;
}
.home-movie__inner {
  padding-top: 32px;
  padding-bottom: 32px;
  position: relative;
  z-index: 1;
}
.home-movie__head {
  color: rgb(var(--orange));
  text-align: center;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 24px;
}
.home-movie__head::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100px;
  height: 1px;
  background: rgb(var(--black));
}
.home-movie__head-sub {
  width: fit-content;
  margin: auto auto 5px;
}
.home-movie__head-sub > span {
  font-size: 1.6rem;
  font-style: italic;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
}
.home-movie__head-sub > span::before, .home-movie__head-sub > span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 16px;
  transform: rotate(-30deg);
  background: currentColor;
}
.home-movie__head-sub > span::after {
  right: 0;
  left: auto;
  transform: rotate(30deg);
}
.home-movie__head-main {
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 800;
  overflow: hidden;
}
.home-movie__slider .splide__slide {
  width: 280px !important;
  margin-right: 16px;
  border-radius: 8px;
  overflow: hidden;
}
.home-movie__slider .splide__slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}
.home-movie__slider .splide__slide.is-active::after {
  background: none;
}
.home-movie__slider .c-movie01__thumbnail {
  margin: 0;
}
.home-movie__btn {
  position: relative;
  padding: 0 24px;
}
@media all and (min-width: 1000px) {
  .home-movie::after {
    height: 324px;
  }
  .home-movie__inner {
    padding-bottom: 80px;
  }
  .home-movie__head {
    padding-bottom: 16px;
    margin-bottom: 40px;
  }
  .home-movie__head::after {
    width: 200px;
  }
  .home-movie__head-main {
    font-size: 2.8rem;
    letter-spacing: 0.06em;
    padding: 10px 0;
  }
  .home-movie__head-sub > span {
    font-size: 2.4rem;
    padding-left: 25px;
    padding-right: 25px;
  }
  .home-movie__head-sub > span::before, .home-movie__head-sub > span::after {
    height: 22px;
  }
  .home-movie__slider .splide__slide {
    width: 430px !important;
    margin-right: 24px;
    border-radius: 16px;
  }
  .home-movie__slider .splide__arrow {
    height: 100px;
    width: 40px;
    background: rgb(var(--black));
    border-radius: 0;
    opacity: 1;
    top: 50%;
  }
  .home-movie__slider .splide__arrow svg {
    fill: #fff;
    width: 20px;
    height: 20px;
  }
  .home-movie__slider .splide__arrow--prev {
    left: 0;
  }
  .home-movie__slider .splide__arrow--next {
    right: 0;
  }
  .home-movie__btn {
    margin-top: 40px;
  }
}

/* .home-number
================================================ */
.home-number {
  background: #EFEFEF;
}
.home-number__inner {
  padding-top: 32px;
  padding-bottom: 32px;
}
.home-number__lead {
  font-weight: 600;
  max-width: 652px;
  margin: 16px auto 0;
}
.home-number__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 24px auto 0;
  max-width: 652px;
}
.home-number__card {
  background: #fff;
  padding: 4% 0px 3% 4%;
  position: relative;
}
.home-number__card-title {
  font-size: clamp(1.2rem, 3.2vw, 2.25rem);
  font-style: italic;
  padding-left: 4%;
  margin-bottom: 2%;
  position: relative;
}
.home-number__card-title::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 0;
  width: 1%;
  height: 65%;
  background: #F7A25A;
  transform: rotate(13deg);
}
.home-number__card-ico {
  width: clamp(35px, 10.5vw, 73px);
  position: absolute;
  bottom: 6%;
  left: 4%;
}
.home-number__card-num {
  font-size: clamp(3.2rem, 8.5vw, 6rem);
  line-height: 1.1;
  font-weight: 600;
  color: rgb(var(--orange));
  text-align: right;
  padding-right: 5%;
}
.home-number__card-num-small {
  font-size: clamp(2.4rem, 6.4vw, 4.5rem);
}
.home-number__unit {
  font-size: clamp(1.2rem, 3.2vw, 2.25rem);
  letter-spacing: 0.04em;
  margin-left: 2%;
  width: 20%;
  text-align: center;
  display: inline-block;
}
.home-number__card-note {
  font-size: clamp(1rem, 2.6vw, 1.8rem);
  color: #989898;
  text-align: right;
  font-weight: 500;
}
.home-number__card-in {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5%;
}
.home-number__card-in .home-number__card-num {
  padding: 0;
}
.home-number__card-in .home-number__unit {
  display: block;
  text-align: center;
}
.home-number__card-in .home-number__card-ico {
  position: static;
}
.home-number__card-in .home-number__unit {
  display: block;
  text-align: center;
  font-size: clamp(1rem, 2.7vw, 1.8rem);
  width: 80%;
}
.home-number__card-in .home-number__card-ico {
  position: static;
  width: clamp(40px, 11vw, 65px);
}
.home-number__card-in .home-number__per {
  font-size: clamp(1.2rem, 3.2vw, 2.25rem);
  padding-left: 0.1em;
}
@media all and (min-width: 1000px) {
  .home-number__inner {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .home-number__lead {
    margin-top: 16px;
    text-align: center;
    max-width: 100%;
  }
  .home-number__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1240px;
    margin: 48px auto 0;
  }
  .home-number__card {
    padding: 16px 25px 24px;
  }
  .home-number__card-title {
    font-size: 2.4rem;
    padding-left: 10px;
  }
  .home-number__card-title::before {
    top: 8px;
    left: 0;
    height: 23px;
  }
  .home-number__card-ico {
    width: 110px;
    bottom: 30px;
    left: 30px;
  }
  .home-number__card-in {
    line-height: 1;
    gap: 14px;
    text-align: center;
  }
  .home-number__card-in .home-number__card-num {
    padding: 0;
    font-size: 8rem;
  }
  .home-number__card-in .home-number__unit {
    margin: 0;
    width: 120px;
  }
  .home-number__card-in .home-number__card-num {
    padding: 0;
    white-space: nowrap;
  }
  .home-number__card-in .home-number__unit {
    font-size: 2rem;
  }
  .home-number__card-in .home-number__per {
    font-size: 2.4rem;
    padding-left: 5px;
  }
  .home-number__card-in .home-number__card-ico {
    width: 110px;
    bottom: 110px;
  }
  .home-number__card-num {
    font-size: 9.6rem;
    position: relative;
    line-height: 1;
  }
  .home-number__card-num .home-number__card-num-small {
    font-size: 7.4rem;
  }
  .home-number__unit {
    width: 60px;
    font-size: 2.1rem;
    margin: 0;
  }
  .home-number__card-note {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.04em;
  }
}
@media (max-width: 1320px) {
  .home-number__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* .home-interview
================================================ */
.home-interview__inner {
  padding-top: 32px;
  padding-bottom: 60px;
}
.home-interview__list {
  margin-top: 16px;
}
@media all and (min-width: 1000px) {
  .home-interview__inner {
    padding-top: 75px;
    padding-bottom: 80px;
  }
  .home-interview__btn {
    margin-top: 40px;
  }
  .home-interview .c-archive02__item-img {
    aspect-ratio: 5/6;
  }
  .home-interview .c-archive02__item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
  }
}
@media all and (max-width: 999px) {
  .home-interview .c-archive02__item-img {
    height: 278px;
  }
  .home-interview .c-archive02__item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
@media (min-width: 600px) and (max-width: 999px) {
  .home-interview__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 64px;
  }
}

/* .home-career
================================================ */
.home-career {
  background: url(../img/common/bg_orange.png) no-repeat center center/cover;
  color: #fff;
  padding-bottom: 8px;
  position: relative;
}
.home-career__bg {
  position: absolute;
  overflow: hidden;
  top: 18px;
  left: 0;
  width: 100%;
  height: 48px;
}
.home-career__bg-img {
  background: url(../img/home/bg_career01.png) repeat-x center center/auto 100%;
}
.home-career__inner {
  padding-top: 48px;
}
.home-career__inner .c-btn01 {
  margin-top: 32px;
}
.home-career__title {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  z-index: 1;
}
.home-career__title-large {
  font-size: 4rem;
}
.home-career__text {
  margin-top: 16px;
  font-weight: 600;
}
.home-career__area-slide {
  margin-top: 60px;
  overflow: hidden;
}
.home-career__slide {
  overflow: hidden;
  height: 140px;
  width: 100%;
  background-repeat: repeat-x;
  background-position: 0 center;
  background-size: auto 100%;
}
.home-career__slide + .home-career__slide {
  margin-top: 8px;
}
.home-career__slide.slide01 {
  background-image: url(../img/home/img_career01_sp.png);
  animation: home-career-scroll01 40s linear infinite;
  z-index: 1;
}
.home-career__slide.slide02 {
  background-image: url(../img/home/img_career02_sp.png);
  animation: home-career-scroll02 50s linear infinite;
  z-index: 1;
}
@media all and (min-width: 1000px) {
  .home-career {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 0;
  }
  .home-career__bg {
    top: 40px;
    height: 90px;
  }
  .home-career__inner {
    padding: 100px 0;
    max-width: 524px;
  }
  .home-career__area-txt {
    max-width: 524px;
  }
  .home-career__title {
    font-size: 4.4rem;
  }
  .home-career__title-large {
    font-size: 6.4rem;
  }
  .home-career__area-slide {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .home-career__btn {
    margin: 48px auto 0 0;
  }
  .home-career__slide {
    width: auto;
    height: 100%;
    background-repeat: repeat-y;
    background-size: cover;
  }
  .home-career__slide + .home-career__slide {
    margin-top: 0;
    margin-left: 8px;
  }
  .home-career__slide.slide01 {
    background-image: url(../img/home/img_career01_pc.png);
    animation: home-career-scroll01-pc 40s linear infinite;
  }
  .home-career__slide.slide02 {
    background-image: url(../img/home/img_career02_pc.png);
    animation: home-career-scroll02-pc 50s linear infinite;
  }
}
@media all and (min-width: 1440px) {
  .home-career__bg {
    animation: home-text-scroll 20s linear infinite;
  }
}

@keyframes home-career-scroll01 {
  from {
    background-position: 0 center;
  }
  to {
    background-position: -444px center;
  }
}
@keyframes home-career-scroll02 {
  from {
    background-position: 0 center;
  }
  to {
    background-position: 592px center;
  }
}
@keyframes home-career-scroll01-pc {
  from {
    background-position: center 0;
  }
  to {
    background-position: center 1104px;
  }
}
@keyframes home-career-scroll02-pc {
  from {
    background-position: center 0;
  }
  to {
    background-position: center -1104px;
  }
}
@keyframes home-text-scroll {
  from {
    background-position: 0 center;
  }
  to {
    background-position: 100% center;
  }
}
/* .home-topics
================================================ */
.home-topics {
  background: #F7F7F7;
}
.home-topics__inner {
  padding-top: 32px;
  padding-bottom: 60px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.home-topics__list {
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 548px;
}
.home-topics__card {
  background: #fff;
  padding: 4px;
  max-width: 268px;
}
.home-topics__card-link {
  display: block;
  overflow: hidden;
}
.home-topics__card-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
}
.home-topics__card-link:hover img {
  transform: scale(1.1);
}
.home-topics #sbi_load {
  display: none;
}
.home-topics .sb_instagram_header {
  display: none;
}
.home-topics #sb_instagram .sbi_photo_wrap {
  padding: 10px;
  background: #fff;
}
.home-topics #sb_instagram .sbi_photo {
  overflow: hidden;
}
.home-topics__head {
  margin-bottom: 20px;
}
.home-topics__btn {
  margin-top: 4px;
}
@media (max-width: 800px) {
  .home-topics .home-topics__inner {
    max-width: 548px;
  }
  .home-topics #sb_instagram .sbi_photo_wrap {
    padding: 4px;
  }
  .home-topics #sbi_images {
    gap: 12px !important;
  }
}
@media all and (min-width: 1000px) {
  .home-topics__inner {
    padding-top: 75px;
    padding-bottom: 80px;
  }
  .home-topics__list {
    max-width: 880px;
    margin: 80px auto 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .home-topics__card {
    padding: 10px;
    max-width: 280px;
  }
  .home-topics__btn {
    margin-top: 50px;
  }
  .home-topics__head {
    margin-bottom: 80px;
  }
  .home-topics #sb_instagram .sbi_photo:hover img {
    transform: scale(1.05);
  }
}

#industry .l-sub-img {
  position: relative;
  margin-bottom: 30px;
}
#industry .l-sub-img::before {
  display: block;
  background-image: url(../img/industry/img_mainimg01.png);
}
@media all and (min-width: 1000px) {
  #industry .l-sub-img {
    margin-bottom: 130px;
  }
}

/* .industry-reasons
================================================ */
.industry-reasons {
  padding-top: 32px;
}
.industry-reasons__list {
  margin-top: 16px;
  display: grid;
  gap: 16px;
}
.industry-reasons__item {
  background: #fff;
  padding: 12px 10px;
  text-align: center;
}
.industry-reasons__item-title {
  text-align: left;
}
.industry-reasons__grow {
  margin-top: 16px;
}
.industry-reasons__grow-title {
  background: #1B2C43;
  color: #fff;
  padding: 12px 10px;
  padding: 8px 12px 10px;
  margin-bottom: 24px;
  text-align: center;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.06em;
}
.industry-reasons__grow-title-txt {
  padding-left: 16px;
  text-align: left;
  display: inline-block;
  position: relative;
}
.industry-reasons__grow-title-txt::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 8px;
  height: 22px;
  background: url(../img/industry/ico_mark01.svg) no-repeat center center/contain;
}
.industry-reasons__grow-img {
  background: #fff;
  padding: 12px 10px;
  margin: 16px 0;
  text-align: center;
}
.industry-reasons__grow-img-title {
  text-align: left;
}
@media (min-width: 550px) {
  .industry-reasons__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (min-width: 1000px) {
  .industry-reasons {
    padding-top: 100px;
  }
  .industry-reasons__list {
    gap: 32px;
    margin-top: 40px;
  }
  .industry-reasons__item {
    padding: 24px 22px;
  }
  .industry-reasons__grow {
    margin-top: 24px;
  }
  .industry-reasons__grow-title {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 40px;
  }
  .industry-reasons__grow-title-txt {
    padding-left: 19px;
  }
  .industry-reasons__grow-title-txt::before {
    top: 2px;
    width: 11px;
    height: 29px;
  }
  .industry-reasons__grow-content {
    display: grid;
    align-items: center;
    grid-template-columns: 396px 1fr;
    gap: 40px;
    margin-bottom: 32px;
  }
  .industry-reasons__grow-img {
    margin: 0;
    padding: 24px 22px;
  }
}

/* .industry-scroll01
================================================ */
.industry-scroll01 {
  position: relative;
  margin: 24px -24px;
  height: 60px;
  pointer-events: none;
}
.industry-scroll01__scroll {
  background: url(../img/industry/bg_scroll01.png) repeat center center/auto 100%;
}
@media all and (min-width: 1000px) {
  .industry-scroll01 {
    height: 112px;
    width: calc(100% + 35px);
    left: 0;
    z-index: 1;
    margin: 64px 0 56px;
    overflow: hidden;
  }
}
@media (min-width: 1305px) {
  .industry-scroll01 {
    width: calc(50vw + 310px);
  }
}

/* .industry-change
================================================ */
.industry-change {
  padding: 32px 24px 60px;
  margin: 0 -24px;
}
.industry-change__data01 {
  margin-top: 28px;
}
.industry-change__list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.industry-change__list-head {
  text-align: center;
  background: #7D7D7D;
}
.industry-change__item {
  text-align: center;
  background: #fff;
}
.industry-change__note {
  margin-top: 8px;
  line-height: 1.3;
  font-size: 1rem;
}
.industry-change__data02 {
  margin-top: 24px;
}
.industry-change__data02-more {
  margin-top: 12px;
}
.industry-change__data02-title {
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 16px;
  position: relative;
}
.industry-change__data02-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: -1px;
  background: #B4B4B4;
}
.industry-change__data02-title-txt {
  margin: auto;
  display: block;
  width: fit-content;
  background: #EFEFEF;
  position: relative;
  z-index: 1;
  padding: 0 10px;
}
.industry-change__data02-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.industry-change__data02-item {
  text-align: center;
  background: #fff;
}
.industry-change__data02-note {
  margin-top: 24px;
  background: #1B2C43;
  color: #fff;
  padding: 12px 10px;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 600;
}
.industry-change__data03 {
  margin-top: 24px;
}
.industry-change__data03-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.industry-change__data03-item {
  background: #fff;
  padding: 16px;
  font-weight: 600;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.industry-change__data03-item-title {
  margin-bottom: 8px;
  padding-left: 8px;
  position: relative;
  text-align: left;
  width: 122px;
}
.industry-change__data03-item-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  top: 4px;
  width: 4px;
  height: 4px;
  background: rgb(var(--orange));
}
.industry-change__data03-item-text {
  padding-left: 8px;
}
.industry-change__data03-item-text .num {
  font-size: 3.6rem;
  font-weight: 800;
  padding: 0 2px;
}
@media all and (max-width: 999px) {
  .industry-change__more {
    position: relative;
    display: grid;
    margin-top: 12px;
  }
  .industry-change__more-btn {
    margin: 12px auto 0;
  }
  .industry-change__more-btn-in {
    font-size: 1.6rem;
    font-weight: 600;
    padding: 0 80px 9px 16px;
    border-bottom: 1px solid;
    position: relative;
  }
  .industry-change__more-btn-in::before, .industry-change__more-btn-in::after {
    content: "";
    position: absolute;
    right: 19px;
    top: 11px;
    width: 12px;
    height: 2px;
    background: currentColor;
  }
  .industry-change__more-btn-in::before {
    transform: rotate(90deg);
  }
  .industry-change__more-btn.is-active {
    order: 2;
    margin-top: 24px;
  }
  .industry-change__more-btn.is-active .industry-change__more-btn-in::before {
    transform: rotate(0deg);
  }
}
@media all and (min-width: 1000px) {
  .industry-change {
    padding: 60px 0 80px;
    margin: 0;
  }
  .industry-change__data01 {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    margin-top: 40px;
  }
  .industry-change__list {
    margin: 0;
    align-items: flex-start;
    width: 52.5%;
    max-width: 493px;
  }
  .industry-change__list-head {
    background: #7D7D7D;
    width: 45%;
    max-width: 423px;
  }
  .industry-change__note {
    position: absolute;
    top: 92%;
    right: 0;
    width: 52.5%;
    max-width: 493px;
    text-align: center;
    margin: 0;
  }
  .industry-change__note-txt {
    display: block;
    width: fit-content;
    text-align: left;
    margin: auto;
  }
  .industry-change__data02 {
    margin-top: 28px;
  }
  .industry-change__data02-title {
    font-size: 1.8rem;
    margin-bottom: 28px;
  }
  .industry-change__data02-list {
    grid-template-columns: repeat(4, 1fr);
  }
  .industry-change__data02-note {
    font-size: 2.4rem;
    letter-spacing: 0.06em;
    padding: 11px;
    margin-top: 12px;
    text-align: center;
  }
  .industry-change__data03 {
    margin-top: 28px;
  }
  .industry-change__data03-list {
    grid-template-columns: repeat(4, 1fr);
  }
  .industry-change__data03-item {
    padding: 16px 14px 16px 16px;
  }
  .industry-change__data03-item-title {
    font-size: 1.4rem;
    width: 110px;
  }
  .industry-change__data03-item-text {
    font-size: 1.4rem;
  }
  .industry-change__data03-item-text .num {
    font-size: 3.6rem;
  }
}
@media (min-width: 1340px) {
  .industry-change__data03-list {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 750px) and (max-width: 999px) {
  .industry-change__data02-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .industry-change__data03-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* .industry-landscape
================================================ */
.industry-landscape {
  padding-top: 32px;
  padding-bottom: 60px;
}
.industry-landscape__list {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}
.industry-landscape__item {
  background: #fff;
  padding: 26px 24px 32px 28px;
  position: relative;
  max-width: 740px;
}
.industry-landscape__item:nth-child(2) {
  margin: auto;
}
.industry-landscape__item:nth-child(3) {
  margin-left: auto;
}
.industry-landscape__item:nth-child(3) .large {
  display: inline-block;
  padding-left: 0;
}
.industry-landscape__item:nth-child(3) .large::before {
  display: none;
}
.industry-landscape__num {
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px;
}
.industry-landscape__title {
  font-size: 1.6rem;
  text-align: center;
  max-width: 600px;
  margin: auto;
}
.industry-landscape__title .large {
  text-align: left;
  padding-top: 10px;
  display: inline-block;
  font-size: 1.8rem;
  color: rgb(var(--orange));
  text-decoration: underline;
  position: relative;
}
.industry-landscape__title .large::before {
  content: "＝";
  font-size: 1.6rem;
  position: absolute;
  top: 3px;
  left: 0;
  width: 10px;
  height: 10px;
  color: rgb(var(--black));
  left: 50%;
  transform: rotate(90deg) translateX(-50%);
}
.industry-landscape__text {
  margin-top: 16px;
}
.industry-landscape__box {
  margin-top: 32px;
}
.industry-landscape__box-img {
  text-align: center;
  width: 100%;
  max-width: 889px;
}
@media all and (min-width: 1000px) {
  .industry-landscape {
    padding-top: 60px;
    padding-bottom: 100px;
  }
  .industry-landscape__lead {
    font-size: 1.6rem;
    letter-spacing: 0.06em;
  }
  .industry-landscape__list {
    margin-top: 40px;
  }
  .industry-landscape__item {
    padding: 32px 32px 24px 64px;
  }
  .industry-landscape__item:nth-child(2) {
    margin: auto;
  }
  .industry-landscape__item:nth-child(3) {
    margin-left: auto;
  }
  .industry-landscape__item:nth-child(3) .large {
    display: inline-block;
    padding-left: 0;
  }
  .industry-landscape__item:nth-child(3) .large::before {
    display: none;
  }
  .industry-landscape__num {
    width: 86px;
    height: 86px;
  }
  .industry-landscape__title {
    font-size: 1.8rem;
    text-align: left;
    margin-bottom: 16px;
    max-width: 100%;
  }
  .industry-landscape__title .large {
    font-size: 2.2rem;
    display: block;
    padding-left: 22px;
    padding-top: 0;
  }
  .industry-landscape__title .large::before {
    font-size: 1.8rem;
    top: 2px;
    left: 1px;
    transform: rotate(0deg) translateX(0);
  }
  .industry-landscape__text {
    font-size: 1.6rem;
  }
  .industry-landscape__box {
    margin-top: 40px;
  }
  .industry-landscape__box-title {
    max-width: 889px;
    margin: auto;
  }
  .industry-landscape__box-img {
    display: block;
    margin: auto;
  }
}

/* .industry-advantage
================================================ */
.industry-advantage {
  padding: 32px 24px 60px;
  margin: 0 -24px;
}
.industry-advantage__list {
  display: grid;
  gap: 24px;
  margin-top: 16px;
}
.industry-advantage__item {
  position: relative;
}
.industry-advantage__num {
  background: url("../img/requirements/bg_flow01.png") no-repeat center/contain;
  display: block;
  width: 31px;
  height: 31px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  padding-top: 4px;
  position: absolute;
  top: 0;
  left: 0;
}
.industry-advantage__title {
  font-size: 1.8rem;
  line-height: 1.4;
  padding-left: 35px;
  margin-bottom: 8px;
}
.industry-advantage__box-list {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}
.industry-advantage__box-item {
  background: #fff;
  padding: 12px 10px;
  text-align: center;
}
.industry-advantage__box-item-title {
  text-align: left;
}
@media (min-width: 650px) {
  .industry-advantage__box-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-advantage__box-item {
    padding: 20px 24px 24px;
  }
}
@media all and (min-width: 1000px) {
  .industry-advantage {
    padding: 60px 0 80px;
    margin: 0;
  }
  .industry-advantage__list {
    margin-top: 24px;
  }
  .industry-advantage__num {
    width: 40px;
    height: 40px;
    padding-top: 8px;
    top: -4px;
  }
  .industry-advantage__title {
    font-size: 2.4rem;
    margin-bottom: 10px;
    padding-left: 50px;
  }
  .industry-advantage__text {
    font-size: 1.6rem;
    padding-left: 21px;
    letter-spacing: 0;
  }
  .industry-advantage__box-list {
    gap: 32px;
    margin-top: 40px;
  }
  .industry-advantage__box-item {
    padding: 20px;
  }
  .industry-advantage__box-item-title {
    margin-bottom: 10px;
  }
}

.industry-advantage__graph {
  position: relative;
  padding-top: 10px;
}
.industry-advantage__graph-head {
  text-align: left;
  line-height: 1.2;
  padding: 0 11px;
  margin-bottom: -25px;
}
.industry-advantage__graph-head-year {
  font-size: 1.4rem;
  font-weight: 600;
  display: block;
}
.industry-advantage__graph-head-value {
  font-size: 4.8rem;
  font-weight: 900;
  color: rgb(var(--orange));
}
.industry-advantage__graph-head-value .small {
  font-size: 3.6rem;
}
.industry-advantage__graph-head-unit {
  font-size: 1.6rem;
  font-weight: 800;
  margin-left: 2px;
}
.industry-advantage__graph-bars {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 8px;
  padding: 0 12px;
  position: relative;
}
.industry-advantage__graph-bars::before {
  content: "";
  position: absolute;
  bottom: 13px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgb(var(--black));
  z-index: 1;
}
.industry-advantage__graph .bar-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
.industry-advantage__graph .bar-item.recent .bar-bar {
  height: 130px;
  background-color: rgb(var(--orange));
}
.industry-advantage__graph .bar-item .bar-value {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 800;
  color: rgb(var(--orange));
  display: block;
  white-space: nowrap;
}
.industry-advantage__graph .bar-item .bar-unit {
  font-size: 1rem;
  line-height: 1;
  display: block;
  color: rgb(var(--orange));
  font-weight: 700;
}
.industry-advantage__graph .bar-item .bar-bar {
  margin: 5px 0;
  display: block;
  width: 90%;
  min-width: 24px;
  background-color: #FF9842;
}
.industry-advantage__graph .bar-item .bar-year {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}
.industry-advantage__graph .bar-item .bar-year-note {
  font-size: 1rem;
  width: 100%;
  font-weight: 700;
  position: absolute;
  top: 99%;
  right: 0;
  text-align: center;
  white-space: nowrap;
}
.industry-advantage__graph-comment {
  position: absolute;
  width: 35%;
  max-width: 144px;
  height: 59px;
  z-index: 2;
  top: 0;
  right: 15px;
}
.industry-advantage__graph-note {
  margin-top: 10px;
  font-size: 1rem;
  text-align: center;
}
@media (min-width: 1240px) {
  .industry-advantage__graph-head-year {
    font-size: 1.6rem;
  }
  .industry-advantage__graph-head-value {
    font-size: 5.8rem;
  }
  .industry-advantage__graph-head-value .small {
    font-size: 4rem;
  }
  .industry-advantage__graph-head-unit {
    font-size: 2rem;
  }
  .industry-advantage__graph-bars::before {
    bottom: 16px;
  }
  .industry-advantage__graph .bar-item .bar-value {
    font-size: 2rem;
  }
  .industry-advantage__graph .bar-item .bar-year {
    font-size: 1.2rem;
  }
}

.industry-advantage__no1 {
  background: #F7F7F7;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.industry-advantage__no1-note {
  margin-top: 10px;
  font-size: 1rem;
  text-align: center;
}
@media (min-width: 650px) {
  .industry-advantage__no1 {
    height: calc(100% - 56px);
  }
}
@media all and (min-width: 1000px) {
  .industry-advantage__no1 {
    height: calc(100% - 72px);
  }
}

/* information-archive
======================================= */
.information-archive__inner {
  padding-top: 32px;
  padding-bottom: 60px;
}
.information-archive__list {
  display: grid;
  gap: 24px;
}
.information-archive__item:nth-child(even) .information-archive__item-link {
  background: #fff url(../img/common/bg_information_post02.png) no-repeat left top/auto 100%;
}
.information-archive__item-link {
  padding: 16px 16px 16px 37px;
  display: block;
  background: #fff url(../img/common/bg_information_post01.png) no-repeat left top/auto 100%;
}
.information-archive__item-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
  display: block;
}
.information-archive__item-txt {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  letter-spacing: 0.06em;
}
.information-archive__item-btn {
  text-align: right;
  display: block;
  margin-top: 16px;
}
.information-archive__item-btn .c-btn02__link {
  font-weight: 600;
  letter-spacing: 0.06em;
}
@media all and (min-width: 1000px) {
  .information-archive__inner {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .information-archive__list {
    gap: 32px;
  }
  .information-archive__item-link {
    padding: 24px 24px 24px 56px;
  }
  .information-archive__item-link:hover .c-btn02__link::before {
    width: 0;
    left: auto;
    right: 0;
  }
  .information-archive__item-title {
    font-size: 2.4rem;
    margin-bottom: 24px;
  }
  .information-archive__item-txt {
    font-size: 1.6rem;
  }
  .information-archive__item-btn {
    margin-top: 24px;
  }
}

/* .information-single
================================================ */
.information-single {
  padding-bottom: 80px;
}
.information-single__entry {
  max-width: 566px;
  margin: auto;
}
.information-single__entry-link {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding: 13px 24px;
  font-size: 1.8rem;
  line-height: 1.5;
  color: #fff;
  background: linear-gradient(to right, #EA8E1D 0%, #ED6C00 50%, #ED6C00 50%, #ED6C00 100%);
}
.information-single__entry-link:hover .c-recruit01__entry-arrow::before {
  transform: translateX(0);
  opacity: 1;
}
.information-single__entry-link:hover .c-recruit01__entry-arrow::after {
  transform: translateX(100%);
  opacity: 0;
}
.information-single__entry-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
  width: 36px;
  height: 8px;
  overflow: hidden;
}
.information-single__entry-arrow::before, .information-single__entry-arrow::after {
  display: inline-block;
  width: 28px;
  height: 5px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2032%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M0%206.86914H28L17.4737%200.869141%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.information-single__entry-arrow::before {
  transform: translateX(-100%);
  opacity: 0;
}
.information-single__entry-txt {
  font-weight: 600;
  display: block;
}
.information-single__btn02 .c-btn02__link {
  font-weight: 600;
}
@media all and (min-width: 1000px) {
  .information-single__entry-link {
    padding: 37px 20px 37px 40px;
    font-size: 2.4rem;
  }
  .information-single__entry-link:hover .information-single__entry-arrow::before {
    transform: translateX(0);
    opacity: 1;
  }
  .information-single__entry-link:hover .information-single__entry-arrow::after {
    transform: translateX(100%);
    opacity: 0;
  }
  .information-single__entry-arrow {
    right: 40px;
  }
}

.information-single .l-sub-img {
  background: none;
  position: relative;
}
.information-single .l-sub-img::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  width: 50%;
  height: 52px;
  background: url("../img/common/bg_orange_header01_sp.png") no-repeat center center/cover;
}
.information-single .l-sub-img__inner {
  padding-top: 40px;
  padding-bottom: 0;
  margin-left: 16px;
  position: relative;
  z-index: 1;
}
.information-single .l-sub-img__set {
  background: #fff;
  color: rgb(var(--black));
  padding: 16px;
}
.information-single .l-sub-img__head {
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
@media all and (min-width: 1000px) {
  .information-single .l-sub-img {
    width: calc(100% - 70px);
    max-width: 1040px;
    margin: auto;
  }
  .information-single .l-sub-img::after {
    top: 59px;
    left: 0;
    height: 98px;
  }
  .information-single .l-sub-img__inner {
    padding: 83px 0 0;
    margin-left: 24px;
  }
  .information-single .l-sub-img__set {
    padding: 40px;
  }
  .information-single .l-sub-img__head {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}

#interview .l-sub-img {
  position: relative;
  margin-bottom: 30px;
}
#interview .l-sub-img::before {
  display: block;
  background-image: url(../img/interview/img_mainimg01.png);
}
@media all and (min-width: 1000px) {
  #interview .l-sub-img {
    margin-bottom: 130px;
  }
}

/* interview-menu
======================================= */
.interview-menu__list {
  display: flex;
  padding: 15px 0;
  white-space: nowrap;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  overflow: auto;
}
.interview-menu__list::-webkit-scrollbar {
  display: none;
}
.interview-menu__item {
  line-height: 1;
}
.interview-menu__item + .interview-menu__item {
  position: relative;
}
.interview-menu__item + .interview-menu__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 14px;
  background: #7D7D7D;
}
.interview-menu__link {
  padding: 1px 24px;
  font-size: 1.2rem;
  font-weight: 600;
}
@media all and (min-width: 1000px) {
  .interview-menu {
    padding: 60px 0;
  }
  .interview-menu__list {
    gap: 80px;
    justify-content: center;
  }
  .interview-menu__item::before {
    display: none;
  }
  .interview-menu__link {
    font-size: 1.8rem;
    letter-spacing: 0.07em;
    padding: 0 50px 4px 0;
    position: relative;
  }
  .interview-menu__link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgb(var(--black));
    transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
  }
  .interview-menu__link::after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 13px;
    width: 7px;
    height: 7px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(135deg);
  }
  .interview-menu__link:hover::before {
    width: 0;
    left: auto;
    right: 0;
  }
}

/* interview-archive
======================================= */
.interview-archive {
  background: #EFEFEF;
}
.interview-archive__inner {
  padding-top: 32px;
  padding-bottom: 60px;
}
@media all and (min-width: 1000px) {
  .interview-archive__inner {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}

/* interview-voice
======================================= */
.interview-voice__inner {
  padding-top: 32px;
  padding-bottom: 60px;
}
.interview-voice__list {
  display: grid;
  gap: 24px;
}
.interview-voice__item {
  background: #fff;
  padding: 54px 16px 16px;
  position: relative;
}
.interview-voice__item::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  width: 28px;
  height: 28px;
  background: url(../img/common/ico_quote01.svg) no-repeat center center/cover;
}
.interview-voice__item-txt {
  font-size: 1.6rem;
}
.interview-voice__item-name {
  font-size: 1.4rem;
  font-weight: 600;
  padding-left: 24px;
  position: relative;
  margin-top: 12px;
}
.interview-voice__item-name::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 1px;
  background: rgb(var(--orange));
}
@media all and (max-width: 999px) {
  .interview-voice__more {
    position: relative;
    display: grid;
  }
  .interview-voice__more .interview-voice__list {
    display: none;
    margin-top: 24px;
  }
  .interview-voice__more .interview-voice__list .interview-voice__item {
    margin-bottom: 24px;
  }
  .interview-voice__more-btn {
    margin: 32px auto 0;
  }
  .interview-voice__more-btn-in {
    font-size: 1.6rem;
    font-weight: 600;
    padding: 0 80px 9px 16px;
    border-bottom: 1px solid;
    position: relative;
  }
  .interview-voice__more-btn-in::before, .interview-voice__more-btn-in::after {
    content: "";
    position: absolute;
    right: 19px;
    top: 11px;
    width: 12px;
    height: 2px;
    background: currentColor;
  }
  .interview-voice__more-btn-in::before {
    transform: rotate(90deg);
  }
  .interview-voice__more-btn.is-active {
    order: 2;
    margin-top: 0;
  }
  .interview-voice__more-btn.is-active .interview-voice__more-btn-in::before {
    transform: rotate(0deg);
  }
}
@media all and (min-width: 1000px) {
  .interview-voice__inner {
    padding-top: 60px;
    padding-bottom: 70px;
  }
  .interview-voice__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .interview-voice__more {
    margin-top: 24px;
  }
  .interview-voice__more-btn {
    display: none;
  }
  .interview-voice__item {
    padding: 68px 24px;
  }
  .interview-voice__item::before {
    top: 28px;
    left: 24px;
  }
  .interview-voice__item-txt {
    font-size: 1.8rem;
    font-weight: 600;
  }
  .interview-voice__item-name {
    font-size: 1.8rem;
    font-weight: 800;
    position: absolute;
    bottom: 24px;
    left: 24px;
    height: 28px;
  }
}

/* interview-detail
======================================= */
.interview-detail__header {
  padding: 8px 24px 16px;
}
.interview-detail__header-img {
  padding-bottom: 18px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: flex-end;
  gap: 19px;
  margin-left: -24px;
  z-index: 1;
  position: relative;
}
.interview-detail__header-img img {
  display: block;
}
.interview-detail__header-img::before {
  content: "";
  position: absolute;
  bottom: 18px;
  left: 0;
  width: 256px;
  height: 204px;
  background: #efefef;
  z-index: -1;
}
.interview-detail__header-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -24px;
  width: 278px;
  height: 191px;
  background: url(../img/interview/bg_detail01_sp.png) no-repeat center/cover;
  z-index: -1;
}
.interview-detail__header-area-txt {
  background: #efefef;
  padding: 16px;
  font-size: 1rem;
  line-height: 1.5;
}
.interview-detail__header-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.interview-detail__header-cat {
  background: rgb(var(--black));
  display: inline-block;
  color: #fff;
  padding: 2px 6px;
  margin-bottom: 5px;
}
.interview-detail__header-name {
  font-size: 1.6rem;
  margin: 2px 0;
  font-weight: 800;
}
.interview-detail__header-year {
  line-height: 1.3;
}
.interview-detail__header-grad {
  line-height: 1.3;
}
.interview-detail__content {
  padding: 0 16px;
}
.interview-detail__content .wp-block-media-text {
  padding: 32px 0;
}
.interview-detail__content .wp-block-media-text + .wp-block-media-text {
  border-top: 1px solid #d9d9d9;
}
.interview-detail__content .wp-block-media-text > .wp-block-media-text__content {
  padding: 0 !important;
}
.interview-detail__content .wp-block-media-text > .wp-block-media-text__content .wp-block-heading {
  font-size: 1.6rem;
  font-weight: 600;
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}
.interview-detail__content .wp-block-media-text > .wp-block-media-text__content .wp-block-heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 1px;
  background: rgb(var(--orange));
}
.interview-detail__content .wp-block-media-text > .wp-block-media-text__media {
  margin-top: 24px;
}
.interview-detail__content .wp-block-media-text > .wp-block-media-text__media img {
  display: block;
  margin: auto;
}
.interview-detail__message {
  margin: 0 -16px;
  padding: 24px 16px 32px;
  position: relative;
  z-index: 1;
}
.interview-detail__message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 240px);
  background: #efefef;
  z-index: -1;
}
.interview-detail__message::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url(../img/common/bg_orange02.png) no-repeat center/cover;
  z-index: -1;
}
.interview-detail__message-area-txt h3 {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 12px;
  position: relative;
  padding-left: 32px;
}
.interview-detail__message-area-txt h3::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 5px;
  width: 12px;
  height: 12px;
  background: rgb(var(--orange));
}
.interview-detail__message-img {
  width: 267px;
  overflow: hidden;
  margin-left: auto;
  margin-right: -16px;
  margin-top: 24px;
}
.interview-detail__message-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media all and (min-width: 1000px) {
  .interview-detail__header {
    margin: 40px 100px 60px;
    padding: 0 0 32px;
    display: grid;
    grid-template-columns: 1fr 518px;
    align-items: flex-end;
    gap: 58px;
    z-index: 1;
    position: relative;
  }
  .interview-detail__header::before {
    content: "";
    position: absolute;
    bottom: -60px;
    right: -100px;
    width: 857px;
    height: 584px;
    background: url(../img/interview/bg_detail01_pc.png) no-repeat center/cover;
    z-index: -1;
  }
  .interview-detail__header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 32px);
    background: #efefef;
    z-index: -1;
  }
  .interview-detail__header-img {
    margin: 0;
    grid-template-columns: 50px 1fr;
    gap: 74px;
    padding: 0;
  }
  .interview-detail__header-img::before, .interview-detail__header-img::after {
    display: none;
  }
  .interview-detail__header-img img:nth-child(1) {
    margin-bottom: -32px;
  }
  .interview-detail__header-area-txt {
    padding: 0 50px 0 0;
    background: none;
  }
  .interview-detail__header-title {
    font-size: 3.6rem;
  }
  .interview-detail__header-info {
    font-size: 1.6rem;
  }
  .interview-detail__header-cat {
    margin-bottom: 12px;
    padding: 4px 12px;
  }
  .interview-detail__header-name {
    font-size: 2.4rem;
    margin: 0 0 8px;
  }
  .interview-detail__content {
    padding: 0 100px 80px;
    position: relative;
  }
  .interview-detail__content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: url(../img/common/bg_orange02.png) no-repeat center/cover;
  }
  .interview-detail__content .wp-block-media-text {
    gap: 44px;
    padding: 64px 0;
    display: grid;
    grid-template-columns: 45% 1fr !important;
  }
  .interview-detail__content .wp-block-media-text.has-media-on-the-right {
    grid-template-columns: 1fr 45% !important;
  }
  .interview-detail__content .wp-block-media-text > .wp-block-media-text__content .wp-block-heading {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.3;
    padding-left: 34px;
    letter-spacing: 0.06em;
  }
  .interview-detail__content .wp-block-media-text > .wp-block-media-text__content .wp-block-heading::before {
    top: 15px;
    left: 0;
    width: 22px;
    height: 4px;
  }
  .interview-detail__content .wp-block-media-text > .wp-block-media-text__media {
    margin: 0;
  }
  .interview-detail__content .wp-block-media-text > .wp-block-media-text__media img {
    margin: 0;
  }
  .interview-detail__message {
    margin: 16px 0 0;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .interview-detail__message::before {
    height: 100%;
  }
  .interview-detail__message::after {
    display: none;
  }
  .interview-detail__message-area-txt {
    width: 60%;
    max-width: 540px;
  }
  .interview-detail__message-area-txt h3 {
    font-size: 2.4rem;
    padding-left: 32px;
    margin-bottom: 32px;
  }
  .interview-detail__message-area-txt h3::before {
    width: 20px;
    height: 20px;
    top: 7px;
  }
  .interview-detail__message-img {
    max-width: 340px;
    margin: 0;
    width: calc(40% - 40px);
    height: 394px;
  }
}
@media (min-width: 1000px) and (max-width: 1240px) {
  .interview-detail__header {
    margin-right: 50px;
    margin-left: 50px;
    gap: 50px;
    grid-template-columns: 1fr 55%;
  }
  .interview-detail__header::before {
    right: -50px;
  }
  .interview-detail__header-title {
    font-size: 3rem;
  }
  .interview-detail__header-img {
    gap: 24px;
  }
  .interview-detail__content {
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media (max-width: 1000px) {
  .interview-detail__content .wp-block-media-text.is-stacked-on-mobile {
    display: flex;
    flex-wrap: wrap;
  }
  .interview-detail__content .wp-block-media-text.has-media-on-the-right {
    display: flex;
    flex-wrap: wrap;
  }
  .interview-detail__content .wp-block-media-text > .wp-block-media-text__media {
    order: 1;
  }
}

/* interview-others
======================================= */
.interview-others {
  padding: 48px 16px 60px;
}
@media all and (max-width: 999px) {
  .interview-others__slider {
    margin: 0 -16px;
  }
  .interview-others__slider .splide__track {
    padding-bottom: 32px;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .interview-others__slider .splide__slide {
    width: 170px !important;
    margin-right: 18px;
  }
  .interview-others__slider .splide__progress {
    background: #D9D9D9;
    height: 4px;
    width: calc(100% - 32px);
    margin: 0 16px;
  }
  .interview-others__slider .splide__progress__bar {
    height: 4px;
    background: #ED6C00;
  }
  .interview-others__slider .c-archive02__item-cat {
    padding: 2px 8px;
    font-size: 0.85rem;
  }
  .interview-others__slider .c-archive02__item-txt {
    margin-top: 10px;
    font-size: 1rem;
  }
  .interview-others__slider .c-archive02__item-info {
    font-size: 0.8rem;
    margin-top: 13px;
    padding-left: 8px;
    border-left: 4px solid #ED6C00;
  }
  .interview-others__slider .c-archive02__item-detail .c-btn02__link {
    font-size: 0.8rem;
  }
}
@media all and (min-width: 1000px) {
  .interview-others {
    padding: 60px 100px 80px;
  }
  .interview-others__slider {
    margin: 0 -100px;
  }
  .interview-others__slider .splide__track {
    padding-bottom: 40px;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .interview-others__slider .splide__slide {
    margin-right: 48px !important;
  }
  .interview-others__slider .splide__arrow {
    height: 100px;
    width: 40px;
    background: rgb(var(--orange));
    border-radius: 0;
    opacity: 1;
    top: 45%;
  }
  .interview-others__slider .splide__arrow svg {
    fill: #fff;
    width: 20px;
    height: 20px;
  }
  .interview-others__slider .splide__arrow--prev {
    left: 0;
  }
  .interview-others__slider .splide__arrow--next {
    right: 0;
  }
}

#movie .l-sub-img {
  background: none;
  color: rgb(var(--black));
}
#movie .l-sub-img__inner {
  padding: 32px 10px 40px;
}
#movie .l-sub-img__area-head {
  text-align: center;
}
@media all and (min-width: 1000px) {
  #movie .l-sub-img__inner {
    padding: 80px 40px 64px;
  }
}

/* .movie-intro
================================================ */
.movie-intro {
  padding-bottom: 103px;
  position: relative;
  background: url(../img/movie/bg_intro03_sp.png) no-repeat center bottom 15px/100%;
}
.movie-intro__inner {
  padding-bottom: 32px;
}
.movie-intro__copy {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 16px;
}
.movie-intro__lead {
  margin-bottom: 24px;
}
.movie-intro__movie-iframe {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 7.5px;
  overflow: hidden;
}
.movie-intro__movie-iframe iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.movie-intro__movie-thumbnail {
  aspect-ratio: 16/9;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.movie-intro__movie-thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
  z-index: 1;
}
.movie-intro__movie-thumbnail::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: url(../img/common/ico_play01.png) no-repeat center/contain;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
  z-index: 2;
}
.movie-intro__movie-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
}
.movie-intro__movie-thumbnail:hover {
  cursor: pointer;
}
.movie-intro__movie-thumbnail:hover img {
  transform: scale(1.05);
}
.movie-intro__movie-thumbnail:hover::before {
  opacity: 0.5;
}
.movie-intro__movie-thumbnail:hover::after {
  opacity: 1;
}
.movie-intro__movie-thumbnail.is-hidden {
  display: none;
  visibility: hidden;
}
.movie-intro__movie-txt {
  font-weight: 800;
  text-align: center;
  margin-top: 8px;
}
.movie-intro__scroll {
  position: absolute;
  bottom: 16px;
  left: 0;
  width: 100%;
  height: 64px;
  overflow: hidden;
}
.movie-intro__scroll-img {
  background: url(../img/movie/bg_scroll01.png) repeat center center/auto 100%;
}
@media all and (min-width: 1000px) {
  .movie-intro {
    background: url(../img/movie/bg_intro03_pc.png) no-repeat center bottom 180px/1440px;
    padding-bottom: 238px;
  }
  .movie-intro__copy {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 32px;
  }
  .movie-intro__lead {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
  }
  .movie-intro__movie-iframe {
    border-radius: 24px;
  }
  .movie-intro__movie-txt {
    margin-top: 18px;
    font-size: 2.4rem;
  }
  .movie-intro__scroll {
    bottom: 33px;
    height: 135px;
  }
}
@media (min-width: 1241px) {
  .movie-intro::before {
    content: "";
    position: absolute;
    top: 60px;
    left: -17px;
    width: 262px;
    height: 168px;
    background: url(../img/movie/bg_intro01.png) no-repeat center/contain;
  }
}

/* .movie-sec01
================================================ */
.movie-sec01 {
  position: relative;
}
.movie-sec01__inner {
  padding-top: 32px;
  padding-bottom: 60px;
  z-index: 1;
  position: relative;
}
.movie-sec01.freashers {
  background: #fff;
}
.movie-sec01.documentaries {
  background: #EFEFEF;
}
@media all and (min-width: 1000px) {
  .movie-sec01__inner {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}
@media (min-width: 1241px) {
  .movie-sec01::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: calc((100% - 1240px) / 2);
    background: #f7f7f7;
    z-index: 1;
  }
  .movie-sec01.freashers {
    position: relative;
  }
  .movie-sec01.freashers::after {
    content: "";
    position: absolute;
    top: -268px;
    right: 0px;
    width: 383px;
    height: 295px;
    background: url(../img/movie/bg_intro02.png) no-repeat center/contain;
    z-index: 2;
  }
  .movie-sec01.documentaries::before {
    left: 0;
    right: auto;
  }
}

/* .movie-banner
================================================ */
.movie-banner__inner {
  padding-top: 32px;
  padding-bottom: 60px;
}
.movie-banner__btn {
  color: #fff;
}
.movie-banner__btn-link {
  display: block;
  padding: 24px 24px 153px;
  background: url(../img/movie/bg_navy01_sp.png) no-repeat center/cover;
  position: relative;
}
.movie-banner__btn-link::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 129px;
  background: url(../img/movie/img_banner01_sp.png) no-repeat center/cover;
}
.movie-banner__btn-lead {
  display: block;
  margin-bottom: 10px;
}
.movie-banner__btn-title {
  display: block;
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1.3;
  margin-bottom: 16px;
}
.movie-banner__btn-desc {
  display: block;
  line-height: 1.5;
}
.movie-banner__btn-icon {
  width: 140px;
  margin-top: 16px;
  display: block;
}
@media (max-width: 720px) {
  .movie-banner__btn-desc br {
    display: none;
  }
}
@media (min-width: 721px) {
  .movie-banner__inner {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .movie-banner__btn-link {
    overflow: hidden;
    padding: 55px 60px;
    background: url(../img/movie/bg_navy01_pc.png) no-repeat center/cover;
    transition: opacity 0.3s;
    z-index: 1;
  }
  .movie-banner__btn-link::before {
    width: 100%;
    height: 100%;
    background: url(../img/movie/img_banner01_pc.png) no-repeat center right/auto 100%;
    z-index: -1;
  }
  .movie-banner__btn-link:hover {
    opacity: 0.8;
  }
  .movie-banner__btn-lead {
    font-size: 2.1rem;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  .movie-banner__btn-title {
    font-size: 3.4rem;
    margin-bottom: 17px;
    letter-spacing: 0.06em;
    line-height: 1.2;
  }
  .movie-banner__btn-desc {
    margin-bottom: 40px;
    letter-spacing: 0.06em;
    font-size: 1.4rem;
  }
}
@media (min-width: 721px) and (max-width: 1000px) {
  .movie-banner__btn-link {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .movie-banner__btn-link::before {
    left: 450px;
    right: auto;
    background-position: center left;
  }
  .movie-banner__btn-title {
    margin-bottom: 18px;
  }
  .movie-banner__btn-lead {
    margin-bottom: 18px;
  }
  .movie-banner__btn-desc {
    max-width: 440px;
  }
}

/* requirements__btns
======================================= */
.requirements__btns {
  margin-top: 24px;
  display: grid;
  gap: 8px;
}
@media all and (min-width: 1000px) {
  .requirements__btns {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 48px;
  }
}

/* requirements__btn01
======================================= */
.requirements__btn01-link {
  background: rgb(var(--black));
  color: #fff;
  padding: 10px 40px;
  font-size: 1.6rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  letter-spacing: 0.06em;
  height: 80px;
}
.requirements__btn01-arrow {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 8px;
  overflow: hidden;
}
.requirements__btn01-arrow::before, .requirements__btn01-arrow::after {
  display: inline-block;
  width: 28px;
  height: 5px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2032%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M0%206.86914H28L17.4737%200.869141%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.requirements__btn01-arrow::before {
  transform: translateX(-100%);
  opacity: 0;
}
@media all and (max-width: 999px) {
  .requirements__btn01 {
    width: 100%;
    max-width: 360px;
    margin: auto;
  }
}
@media all and (min-width: 1000px) {
  .requirements__btn01-link {
    height: 134px;
    font-size: 2.4rem;
  }
  .requirements__btn01-link:hover .requirements__btn01-arrow::before {
    transform: translateX(0);
    opacity: 1;
  }
  .requirements__btn01-link:hover .requirements__btn01-arrow::after {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* requirements__btn02
======================================= */
.requirements__btn02-link {
  background: linear-gradient(to right, #ED6C00, #F6AD3C);
  color: #fff;
  padding: 10px 40px;
  font-size: 1.6rem;
  font-weight: 600;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.requirements__btn02-txt01 {
  display: block;
  line-height: 1;
  font-size: 2rem;
  font-weight: 600;
}
.requirements__btn02-txt02 {
  display: block;
  line-height: 1;
  margin-top: 4px;
  font-size: 1rem;
}
.requirements__btn02-arrow {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 8px;
  overflow: hidden;
}
.requirements__btn02-arrow::before, .requirements__btn02-arrow::after {
  display: inline-block;
  width: 28px;
  height: 5px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2032%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M0%206.86914H28L17.4737%200.869141%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.4s cubic-bezier(0.75, 0, 0.35, 1);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.requirements__btn02-arrow::before {
  transform: translateX(-100%);
  opacity: 0;
}
@media all and (max-width: 999px) {
  .requirements__btn02 {
    width: 100%;
    max-width: 360px;
    margin: auto;
  }
}
@media all and (min-width: 1000px) {
  .requirements__btn02-link {
    height: 134px;
  }
  .requirements__btn02-link:hover .requirements__btn02-arrow::before {
    transform: translateX(0);
    opacity: 1;
  }
  .requirements__btn02-link:hover .requirements__btn02-arrow::after {
    transform: translateX(100%);
    opacity: 0;
  }
  .requirements__btn02-txt01 {
    font-size: 4.8rem;
  }
  .requirements__btn02-txt02 {
    font-size: 1.6rem;
  }
}

/* requirements-outline
======================================= */
.requirements-outline {
  padding-top: 32px;
  padding-bottom: 60px;
}
@media all and (min-width: 1000px) {
  .requirements-outline {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}

/* requirements-flow
======================================= */
.requirements-flow {
  padding-top: 32px;
  padding-bottom: 60px;
}
.requirements-flow__list {
  display: grid;
  gap: 10px;
  margin: 24px auto 0;
  max-width: 600px;
}
.requirements-flow__item {
  background: #fff;
  text-align: center;
  position: relative;
  margin-left: 38px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.requirements-flow__item + .requirements-flow__item::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #ED6C00;
  position: absolute;
  top: -50%;
  left: -13px;
}
.requirements-flow__item:last-child {
  color: #ED6C00;
}
.requirements-flow__number {
  background: url("../img/requirements/bg_flow01.png") no-repeat center/contain;
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  left: -38px;
  padding-top: 7px;
}
.requirements-flow__text {
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.requirements-flow__text-sub {
  font-size: 1.2rem;
  display: block;
}
.requirements-flow__ico {
  margin-top: 4px;
  width: 36px;
  height: 36px;
  display: block;
}
@media all and (min-width: 1000px) {
  .requirements-flow {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .requirements-flow__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: initial;
  }
  .requirements-flow__item {
    height: 180px;
    margin: 38px 0 0;
  }
  .requirements-flow__item + .requirements-flow__item::before {
    width: 100%;
    height: 1px;
    top: -14px;
    left: -50%;
    transform: translateX(0);
  }
  .requirements-flow__number {
    top: -38px;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .requirements-flow__text {
    font-size: 2rem;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .requirements-flow__text-sub {
    font-size: 1.4rem;
  }
  .requirements-flow__ico {
    margin-top: 8px;
    width: 50px;
    height: 50px;
  }
}

/* requirements-faq
======================================= */
.requirements-faq {
  padding-top: 32px;
  padding-bottom: 60px;
}
@media all and (min-width: 1000px) {
  .requirements-faq {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}

#vision .l-sub-img {
  background: none;
  color: rgb(var(--black));
}
#vision .l-sub-img__vision-sub {
  height: 50px;
}
#vision .l-sub-img__vision-sub img {
  height: 100%;
  width: auto;
}
#vision .l-sub-img__vision-head {
  margin-top: -45px;
  font-weight: 800;
}
#vision .l-sub-img__vision-head01 {
  font-size: 1.2rem;
  position: relative;
  display: block;
  padding-left: 16px;
}
#vision .l-sub-img__vision-head01::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 8px;
  height: 8px;
  background: rgb(var(--black));
}
#vision .l-sub-img__vision-head02 {
  line-height: 1.1;
  display: block;
  font-size: 2.4rem;
}
#vision .l-sub-img__vision-head02-large {
  font-size: 2.8rem;
}
@media all and (min-width: 1000px) {
  #vision .l-sub-img__inner {
    width: calc(100% - 70px);
    max-width: 1240px;
    margin: auto;
    padding-left: 0;
    padding-right: 0;
  }
  #vision .l-sub-img__vision-sub {
    height: 105px;
    margin-left: -30px;
  }
  #vision .l-sub-img__vision-head01 {
    font-size: 1.6rem;
  }
  #vision .l-sub-img__vision-head02 {
    font-size: 5.6rem;
    letter-spacing: 0;
  }
  #vision .l-sub-img__vision-head02-large {
    font-size: 5.6rem;
    letter-spacing: 0;
  }
  #vision .l-sub-img__vision-head02-sub {
    font-size: 4.4rem;
    letter-spacing: 0.1em;
  }
}

/* .vision-intro
================================================ */
.vision-intro__title {
  font-weight: 800;
  line-height: 1.4;
  position: relative;
  margin-bottom: 16px;
}
.vision-intro__title::after {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 0;
  width: calc(100% - 280px);
  height: 1px;
  background: currentColor;
}
.vision-intro__title-large {
  font-size: 2rem;
}
.vision-intro__area-txt strong {
  font-weight: 800;
}
.vision-intro__img {
  width: 194px;
  margin: 23px 0 0 auto;
}
@media all and (min-width: 1000px) {
  .vision-intro__title {
    font-size: 2.8rem;
    margin-bottom: 32px;
  }
  .vision-intro__title::after {
    bottom: 20px;
    width: calc(100% - 516px);
  }
  .vision-intro__title-large {
    font-size: 3.4rem;
  }
  .vision-intro__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 80px;
    position: relative;
  }
  .vision-intro__area-txt {
    width: 61%;
    max-width: 630px;
  }
  .vision-intro__area-txt strong {
    font-size: 2rem;
  }
  .vision-intro__img {
    width: calc(39% - 35px);
    max-width: 440px;
    position: sticky;
    top: 0;
    right: 0;
    align-self: flex-start;
  }
}

/* .vision-reasons
================================================ */
.vision-reasons__inner {
  padding-top: 60px;
  padding-bottom: 40px;
}
.vision-reasons__head {
  margin-bottom: 16px;
}
.vision-reasons__head-main {
  text-align: center;
  margin: 0 -24px;
}
.vision-reasons__head-main img {
  width: 375px;
}
.vision-reasons__list {
  display: grid;
  gap: 24px;
}
.vision-reasons__item {
  margin-left: -24px;
  padding: 20px 24px 24px;
  background: #fff;
  position: relative;
}
.vision-reasons__item::before, .vision-reasons__item::after {
  content: "";
  position: absolute;
  width: 48px;
  z-index: -1;
}
.vision-reasons__item::before {
  background: url(../img/common/bg_orange_noise.png) repeat center/375px;
}
.vision-reasons__item::after {
  background: linear-gradient(to left, rgb(212, 97, 1) 0%, rgba(237, 108, 0, 0) 100%);
}
.vision-reasons__item:nth-child(odd)::before, .vision-reasons__item:nth-child(odd)::after {
  top: -310px;
  right: -24px;
  height: calc(100% + 250px);
}
.vision-reasons__item:nth-child(even) {
  margin-right: -24px;
  margin-left: auto;
}
.vision-reasons__item:nth-child(even)::before, .vision-reasons__item:nth-child(even)::after {
  top: 24px;
  left: -24px;
  height: calc(100% - 60px);
}
.vision-reasons__item-area-txt {
  margin-bottom: 24px;
}
.vision-reasons__item-head {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 4px;
  margin-bottom: 16px;
}
.vision-reasons__item-head-num {
  width: 72px;
}
.vision-reasons__item-head-title {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.3;
}
.vision-reasons__item-img {
  text-align: center;
}
.vision-reasons__scroll {
  margin-bottom: 40px;
  height: 255px;
  position: relative;
  overflow: hidden;
}
.vision-reasons__scroll-img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 3632px;
  height: 100%;
  background: url(../img/about/vision/bg_scroll01.png) repeat center center/auto 100%;
  animation: c-text-scroll02 110s linear infinite;
}
@media (max-width: 472px) {
  .vision-reasons__item {
    width: calc(100vw - 24px);
  }
  .vision-reasons__item-img.is-scroll {
    overflow-x: scroll;
  }
  @supports (scrollbar-color: auto) {
    .vision-reasons__item-img.is-scroll {
      scrollbar-color: rgb(var(--orange)), #D9D9D9;
      scrollbar-width: 4px;
    }
  }
  @supports selector(::-webkit-scrollbar) {
    .vision-reasons__item-img.is-scroll::-webkit-scrollbar {
      height: 4px;
      background: #D9D9D9;
    }
    .vision-reasons__item-img.is-scroll::-webkit-scrollbar-thumb {
      background: rgb(var(--orange));
      border-radius: 2px;
    }
  }
  .vision-reasons__item-img.is-scroll img {
    width: 100%;
    height: auto;
    max-width: initial;
  }
  .vision-reasons__item-img.is-scroll .vision-reasons__item-img-pic {
    padding-bottom: 8px;
    width: 400px;
  }
}
@media all and (min-width: 1000px) {
  .vision-reasons__inner {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .vision-reasons__head {
    margin-bottom: 38px;
  }
  .vision-reasons__head-main {
    margin: 0;
  }
  .vision-reasons__head-main img {
    width: 858px;
  }
  .vision-reasons__list {
    gap: 50px;
  }
  .vision-reasons__item {
    padding: 40px 35px 60px;
    display: grid;
    grid-template-columns: 1fr 400px;
    align-items: center;
    gap: 35px;
    margin: 0;
    font-size: 1.8rem;
  }
  .vision-reasons__item::before, .vision-reasons__item::after {
    width: 150px;
    height: 1482px;
  }
  .vision-reasons__item-head {
    grid-template-columns: 110px 1fr;
    margin-bottom: 32px;
    z-index: -1;
  }
  .vision-reasons__item-head-num {
    width: 110px;
  }
  .vision-reasons__item-head-title {
    font-size: 2.4rem;
  }
  .vision-reasons__item-head-title .large {
    display: block;
    font-size: 3.2rem;
  }
  .vision-reasons__item-img {
    width: 400px;
  }
  .vision-reasons__item:nth-child(odd) {
    margin-left: -35px;
  }
  .vision-reasons__item:nth-child(odd)::before, .vision-reasons__item:nth-child(odd)::after {
    top: -749px;
    left: calc(100% - 35px);
    height: calc(100% + 869px);
  }
  .vision-reasons__item:nth-child(even) {
    margin-right: -35px;
    grid-template-columns: 400px 1fr;
  }
  .vision-reasons__item:nth-child(even) .vision-reasons__item-img {
    order: -1;
  }
  .vision-reasons__item:nth-child(even)::before, .vision-reasons__item:nth-child(even)::after {
    top: -50px;
    left: auto !important;
    right: calc(100% - 35px);
    height: calc(100% - 80px);
  }
  .vision-reasons__scroll {
    height: 456px;
    margin-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  .vision-reasons__item {
    padding: 40px 50px 50px 100px;
    gap: 60px;
  }
  .vision-reasons__item-head {
    gap: 16px;
  }
  .vision-reasons__item:nth-child(even) {
    padding: 40px 100px 20px 50px;
    grid-template-columns: 400px 1fr;
    gap: 80px;
  }
}
@media (min-width: 1305px) {
  .vision-reasons__item::before, .vision-reasons__item::after {
    width: calc(50vw - 593px);
  }
}
@media (min-width: 1460px) {
  .vision-reasons__item:nth-child(odd) {
    margin-left: -100px;
  }
  .vision-reasons__item:nth-child(even) {
    margin-right: -100px;
  }
}

/* .vision-story
================================================ */
.vision-story {
  background: url(../img/about/vision/bg_story01_sp.png) no-repeat center center/cover;
}
.vision-story__inner {
  padding-top: 32px;
  padding-bottom: 32px;
}
.vision-story__head {
  color: #fff;
  margin-bottom: 16px;
}
.vision-story__head::after {
  left: 0;
  transform: translate(0, 0);
}
.vision-story__head .c-head01__main {
  text-align: left;
}
.vision-story__head .c-head01__sub img {
  margin-left: 0;
}
.vision-story__lead {
  color: #fff;
}
.vision-story__slide {
  background: #fff;
  padding: 16px;
  width: 280px !important;
  margin-right: 16px !important;
}
.vision-story__slide-text {
  letter-spacing: 0.06em;
}
.vision-story__company {
  display: block;
  margin-top: 6px;
  font-weight: 800;
  color: rgb(var(--orange));
  letter-spacing: 0.06em;
  line-height: 1;
}
.vision-story__name {
  display: block;
  margin-top: 7px;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #d6d6d6;
  letter-spacing: 0.06em;
  line-height: 1.9;
}
.vision-story__inner02 {
  padding-top: 32px;
  padding-bottom: 60px;
}
.vision-story__btn {
  margin-top: 0;
}
@media all and (max-width: 999px) {
  .vision-story__head .c-head01__sub {
    margin-right: -20px;
  }
  .vision-story__head .c-head01__sub img {
    height: 56px;
  }
}
@media all and (min-width: 1000px) {
  .vision-story {
    background: url(../img/about/vision/bg_story01_pc.png) no-repeat center center/cover;
  }
  .vision-story__inner {
    padding-top: 34px;
  }
  .vision-story__head .c-head01__sub {
    height: 136px;
  }
  .vision-story__head .c-head01__sub img {
    height: 100%;
    width: auto;
    margin-left: -10px;
  }
  .vision-story__slider {
    margin-top: 64px;
    position: relative;
  }
  .vision-story__slider .splide__list {
    align-items: center !important;
  }
  .vision-story__slider .splide__arrow {
    height: 100px;
    width: 40px;
    background: rgb(var(--black));
    border-radius: 0;
    opacity: 1;
    top: 50%;
  }
  .vision-story__slider .splide__arrow svg {
    fill: #fff;
    width: 20px;
    height: 20px;
  }
  .vision-story__slider .splide__arrow--prev {
    left: 0;
  }
  .vision-story__slider .splide__arrow--next {
    right: 0;
  }
  .vision-story__slide {
    width: 400px !important;
    height: 567px;
    margin-right: 24px !important;
    padding: 24px;
    margin: 30px 0;
    transition: all 0.3s ease;
  }
  .vision-story__slide-text {
    font-size: 1.6rem;
  }
  .vision-story__slide:hover {
    width: 440px !important;
    height: 627px;
    margin-top: 0;
    margin-bottom: 0;
    padding: 26px;
  }
  .vision-story__slide:hover .vision-story__company {
    font-size: 1.98rem;
  }
  .vision-story__slide:hover .vision-story__name {
    font-size: 1.76rem;
  }
  .vision-story__slide:hover .vision-story__slide-text {
    font-size: 1.76rem;
  }
  .vision-story__company {
    margin-top: 16px;
    font-size: 1.6rem;
    transition: all 0.3s ease;
  }
  .vision-story__name {
    padding-bottom: 16px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
  }
  .vision-story__slide-text {
    transition: all 0.3s ease;
  }
  .vision-story__inner02 {
    padding-top: 48px;
    padding-bottom: 80px;
  }
  .vision-story__btn {
    margin-right: 0;
  }
}

/* .vision-message
================================================ */
.vision-message__inner {
  padding-top: 32px;
  padding-bottom: 60px;
}
.vision-message__area-txt {
  background: url(../img/about/vision/bg_white_noise.png) repeat center left/700px auto;
  padding: 24px;
  margin-left: -24px;
  position: relative;
  z-index: 1;
}
.vision-message__title {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}
.vision-message__title-large {
  font-size: 2.8rem;
  color: rgb(var(--orange));
}
.vision-message__txt {
  margin-top: 1.7em;
}
.vision-message__txt strong {
  font-weight: 800;
  font-size: 1.6rem;
}
.vision-message__img {
  margin-top: -50px;
  margin-right: -24px;
}
@media all and (max-width: 999px) {
  .vision-message__img {
    max-width: 600px;
    margin-left: auto;
  }
}
@media all and (min-width: 1000px) {
  .vision-message {
    position: relative;
  }
  .vision-message__inner {
    padding-top: 60px;
    padding-bottom: 0;
  }
  .vision-message__area-txt {
    width: calc(50% + 100px);
    min-width: 600px;
    max-width: initial;
    padding: 60px 60px 80px 100px;
    margin-left: -100px;
  }
  .vision-message__title {
    font-size: 4.4rem;
    margin-bottom: 48px;
    white-space: nowrap;
  }
  .vision-message__title-large {
    font-size: 5.6rem;
  }
  .vision-message__txt strong {
    font-size: 2rem;
  }
  .vision-message__img {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(50% + 100px);
    margin: 0;
  }
  .vision-message__btn {
    margin: 48px 0 0;
  }
}
@media all and (min-width: 1440px) {
  .vision-message__area-txt {
    min-width: 700px;
    padding: 80px 100px 80px 120px;
    transform: translateX(-20px);
    position: relative;
  }
  .vision-message__area-txt::before {
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    width: 50vw;
    height: 100%;
    background: url(../img/about/vision/bg_white_noise.png) repeat center left/700px auto;
  }
}

#workplace .l-sub-img {
  position: relative;
  margin-bottom: 30px;
}
#workplace .l-sub-img::before {
  display: block;
  background-image: url(../img/workplace/img_mainimg01.png);
}
@media all and (min-width: 1000px) {
  #workplace .l-sub-img {
    margin-bottom: 130px;
  }
}

/* .workplace-culture
================================================ */
.workplace-culture {
  padding-top: 32px;
  padding-bottom: 60px;
  position: relative;
}
.workplace-culture::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -34px;
  width: 58px;
  height: 100%;
  background: url(../img/workplace/bg_culture01_sp.png) no-repeat top right/58px auto;
  z-index: -1;
}
.workplace-culture__list {
  margin-top: 16px;
  display: grid;
  gap: 24px;
}
.workplace-culture__item {
  background: #fff;
  padding: 24px 16px;
}
.workplace-culture__item-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.workplace-culture__item-img {
  text-align: center;
}
.workplace-culture__item-text {
  margin-top: 12px;
}
@media (min-width: 650px) {
  .workplace-culture {
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .workplace-culture::before {
    top: -10px;
    right: -34px;
    width: 118px;
    height: 100%;
    background: url(../img/workplace/bg_culture01_pc.png) no-repeat top right/118px auto;
    z-index: -1;
  }
  .workplace-culture__list {
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 40px;
  }
  .workplace-culture__item {
    max-width: 450px;
    padding: 24px;
  }
  .workplace-culture__item:nth-child(2) {
    transform: translateY(370px);
    height: 477px;
  }
  .workplace-culture__item-title {
    font-size: 2.4rem;
    margin-bottom: 16px;
    line-height: 1.6;
  }
  .workplace-culture__item-text {
    font-size: 1.6rem;
    margin-top: 16px;
  }
}
@media (min-width: 1305px) {
  .workplace-culture::before {
    right: calc((100vw - 1260px) / 2 * -1);
  }
}

/* .workplace-training
================================================ */
.workplace-training {
  margin: 0 -24px;
  padding: 32px 24px 60px;
}
.workplace-training__list-wrap {
  margin-top: 32px;
}
.workplace-training .splide__track {
  overflow: visible;
}
.workplace-training__list {
  display: grid !important;
  gap: 16px;
  visibility: visible;
  padding-bottom: 217px !important;
}
.workplace-training__list::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 48px);
  height: 217px;
  background: url(../img/workplace/img_training01_sp.png) no-repeat bottom center/389px;
  z-index: 1;
}
.workplace-training__item-inner {
  margin-left: 48px;
  position: relative;
  padding: 16px 12px 16px 20px;
  background: #fff;
}
.workplace-training__item-inner::before {
  content: "";
  position: absolute;
  top: 60px;
  left: -23px;
  width: 2px;
  height: 100%;
  background: #ED6C00;
}
.workplace-training__item:last-child .workplace-training__item-inner::before {
  display: none;
}
.workplace-training__item-title {
  color: rgb(var(--orange));
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.6;
}
.workplace-training__item-copy {
  margin-bottom: 8px;
  line-height: 1.6;
  font-weight: 800;
}
.workplace-training__item-text {
  position: relative;
  padding-left: 20px;
}
.workplace-training__item-text::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0px 8px 14px;
  border-color: transparent transparent transparent #f1AA00;
  transform: rotate(0deg);
}
.workplace-training__step {
  position: absolute;
  top: 14px;
  left: -48px;
  text-align: center;
  line-height: 1.1;
  padding-top: 8px;
  width: 56px;
  height: 56px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(60deg, #F7A25A 0%, #ED6C00 100%);
}
.workplace-training__step-num {
  display: block;
  font-size: 2.8rem;
  margin-top: -2px;
}
@media all and (min-width: 1000px) {
  .workplace-training {
    padding: 60px 0 40px;
    margin: 0;
  }
  .workplace-training__list-wrap {
    margin-top: 40px;
    box-sizing: border-box;
    width: calc(100vw - 310px);
  }
  .workplace-training .splide__track {
    overflow: hidden;
    margin-right: -35px;
    padding-right: 75px !important;
  }
  .workplace-training .splide__arrow {
    height: 100px;
    width: 40px;
    background: rgb(var(--black));
    border-radius: 0;
    opacity: 1;
    top: 274px;
  }
  .workplace-training .splide__arrow svg {
    fill: #fff;
    width: 20px;
    height: 20px;
  }
  .workplace-training .splide__arrow--prev {
    left: 0;
  }
  .workplace-training .splide__arrow--next {
    right: -35px;
  }
  .workplace-training__list {
    display: flex !important;
    gap: 36px;
    padding-bottom: 236px !important;
  }
  .workplace-training__list::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateX(0);
    width: 1573px;
    height: 236px;
    background: url(../img/workplace/img_training01_pc.png) no-repeat bottom center/100% auto;
  }
  .workplace-training__item {
    width: 384px !important;
    padding-left: 20px;
    padding-top: 20px;
    margin-right: -20px;
  }
  .workplace-training__item-inner {
    margin: 0;
    padding: 24px 20px;
    height: 100%;
  }
  .workplace-training__item-inner::before {
    height: 2px;
    width: 100%;
    top: -12px;
    right: -20px;
    left: auto;
  }
  .workplace-training__item-title {
    font-size: 2.4rem;
    padding-left: 64px;
    margin-bottom: 20px;
  }
  .workplace-training__item-copy {
    font-size: 1.8rem;
    margin-bottom: 16px;
    padding: 0 12px;
  }
  .workplace-training__item-text {
    font-size: 1.6rem;
    padding-left: 30px;
  }
  .workplace-training__item-text::before {
    top: 6px;
    left: 7px;
  }
  .workplace-training__step {
    width: 92px;
    height: 92px;
    padding-top: 13px;
    font-size: 1.8rem;
    left: -20px;
    top: -20px;
  }
  .workplace-training__step-num {
    margin: 0;
    font-size: 4.8rem;
  }
  .workplace-training__footimg {
    display: none;
  }
}
@media (min-width: 1250px) {
  .workplace-training__list-wrap {
    width: auto;
  }
}
@media (min-width: 1303px) {
  .workplace-training .splide__track {
    width: auto;
    margin-right: calc((100vw - 1260px) / 2 * -1);
  }
  .workplace-training .splide .splide__arrow--next {
    margin-right: calc((100vw - 1325px) / 2 * -1);
  }
}
@media (min-width: 2550px) {
  .workplace-training .splide__arrow {
    display: none;
  }
}

/* .workplace-benefits
================================================ */
.workplace-benefits {
  padding-top: 32px;
  padding-bottom: 60px;
}
.workplace-benefits__list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}
.workplace-benefits__item {
  background: #fff;
  padding: 16px;
}
.workplace-benefits__item-img {
  background: #f7f7f7;
  text-align: center;
}
.workplace-benefits__item-img img {
  max-width: 295px;
}
.workplace-benefits__item-title {
  margin-top: 12px;
  margin-bottom: 8px;
  padding-bottom: 8px;
  line-height: 1.6;
}
.workplace-benefits__item-title::before {
  background: #B4B4B4;
  width: 80px;
}
@media (min-width: 750px) {
  .workplace-benefits {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .workplace-benefits__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
    max-width: 100%;
  }
  .workplace-benefits__item {
    width: calc(50% - 12px);
  }
  .workplace-benefits__item-img img {
    display: block;
    width: auto;
    max-width: 426px;
    width: 100%;
  }
  .workplace-benefits__item-title {
    font-size: 2.4rem;
  }
  .workplace-benefits__item-text {
    font-size: 1.6rem;
  }
}

#works .l-sub-img {
  position: relative;
  margin-bottom: 30px;
}
#works .l-sub-img::before {
  display: block;
  background-image: url(../img/works/img_mainimg01.png);
}
@media all and (min-width: 1000px) {
  #works .l-sub-img {
    margin-bottom: 130px;
  }
}

/* .works-mvv
================================================ */
.works-mvv {
  padding-top: 32px;
  padding-bottom: 60px;
}
.works-mvv__list {
  display: grid;
  gap: 24px;
}
.works-mvv__item-title {
  font-size: 2.4rem;
  background: linear-gradient(60deg, #ED6C00 0%, #F7A25A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 1.3;
  margin-bottom: 4px;
  position: relative;
  width: fit-content;
  padding-right: 16px;
}
.works-mvv__item-title::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  position: absolute;
  left: 100%;
  top: 16px;
  background: rgb(var(--orange));
}
.works-mvv__item-copy {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
}
.works-mvv__item-text {
  margin-top: 16px;
}
.works-mvv__item-text + .works-mvv__item-text {
  margin-top: 12px;
}
.works-mvv__values {
  max-width: 500px;
  margin: 32px auto 0;
}
.works-mvv__values-title {
  font-size: 1.8rem;
  background: linear-gradient(60deg, #ED6C00 0%, #F7A25A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 1.3;
  margin-bottom: 24px;
  font-weight: 600;
}
.works-mvv__values-title .en {
  font-weight: 800;
  font-size: 2rem;
}
.works-mvv__values-list {
  display: grid;
  gap: 24px;
}
.works-mvv__values-item {
  background: #fff;
  padding: 16px;
}
.works-mvv__values-item-img {
  background: #F1F1F1;
}
.works-mvv__values-item-img-in {
  position: relative;
  overflow: hidden;
  height: 171px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.works-mvv__values-item-img img {
  width: 165px;
  display: block;
  margin: auto;
  z-index: 1;
}
.works-mvv__values-item-img-num {
  position: absolute;
  top: -65px;
  left: -40px;
  font-size: 18.8rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.05em;
}
.works-mvv__values-item-img-txt {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  background: rgb(var(--black));
  color: #fff;
  padding: 7px;
  line-height: 1.4;
}
.works-mvv__values-item-area-txt {
  margin-top: 12px;
}
.works-mvv__values-item-head {
  line-height: 1.5;
  margin-bottom: 8px;
  font-size: 1.6rem;
}
@media (min-width: 600px) {
  .works-mvv__values {
    max-width: 100%;
  }
  .works-mvv__values-item-img-in {
    height: calc(100% - 40px);
  }
  .works-mvv__values-item-img img {
    width: 140px;
  }
  .works-mvv__values-item-img-txt {
    margin: 0;
  }
  .works-mvv__values-item-img-num {
    font-size: 16rem;
    top: -60px;
    left: -34px;
  }
}
@media all and (min-width: 1000px) {
  .works-mvv {
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .works-mvv__list {
    gap: 50px;
    margin-top: 56px;
  }
  .works-mvv__item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 16px;
  }
  .works-mvv__item-title {
    font-size: 3.4rem;
    width: auto;
    padding-right: 0;
    margin: 0;
    line-height: 1.1;
  }
  .works-mvv__item-title::before {
    right: 10px;
    left: auto;
    top: 20px;
  }
  .works-mvv__item-copy {
    font-size: 2.8rem;
  }
  .works-mvv__item-text {
    font-size: 1.8rem;
    padding: 0 7px;
  }
  .works-mvv__item-text strong {
    font-size: 2.4rem;
  }
  .works-mvv__values {
    margin-top: 56px;
  }
  .works-mvv__values-title {
    font-size: 2.6rem;
  }
  .works-mvv__values-title .en {
    font-size: 2.8rem;
  }
  .works-mvv__values-item {
    max-width: 780px;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 16px;
  }
  .works-mvv__values-item:nth-child(2) {
    margin: auto;
  }
  .works-mvv__values-item:nth-child(3) {
    margin-left: auto;
  }
  .works-mvv__values-item-area-txt {
    margin: 0;
  }
  .works-mvv__values-item-head {
    font-size: 1.8rem;
  }
  .works-mvv__values-item-text {
    font-size: 1.4rem;
  }
}
@media (min-width: 600px) and (max-width: 999px) {
  .works-mvv__values-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 16px;
  }
  .works-mvv__values-item-img-in {
    height: calc(100% - 40px);
  }
  .works-mvv__values-item-img img {
    width: 140px;
  }
}

/* .works-roles
================================================ */
.works-roles {
  padding-top: 32px;
  padding-bottom: 60px;
  position: relative;
}
.works-roles::before {
  content: "";
  display: block;
  width: calc(100% + 48px);
  height: calc(100% - 207px);
  position: absolute;
  left: -24px;
  top: -103px;
  background: url(../img/works/bg_gray01_sp.svg) no-repeat center top/100%;
  z-index: -1;
}
.works-roles__list {
  margin-top: 32px;
  display: grid;
  gap: 32px;
}
.works-roles__item-area-txt {
  background: #fff;
  margin-left: 16px;
  padding: 16px;
  position: relative;
}
.works-roles__item-area-txt::before {
  content: "";
  display: block;
  width: 16px;
  height: 100%;
  position: absolute;
  left: -16px;
  top: 0;
  background: rgb(var(--orange));
}
.works-roles__item-title {
  font-size: 2rem;
  position: relative;
  color: rgb(var(--orange));
  padding-bottom: 8px;
  margin-bottom: 8px;
}
.works-roles__item-title::before {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgb(var(--black));
}
@media all and (min-width: 1000px) {
  .works-roles {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .works-roles::before {
    width: 100vw;
    height: 100%;
    right: -35px;
    left: auto;
    top: -135px;
    background: url(../img/works/bg_gray01_pc.svg) no-repeat right top/1440px;
  }
  .works-roles::after {
    content: "";
    display: block;
    position: absolute;
    width: 100vw;
    height: 50%;
    right: -35px;
    left: auto;
    bottom: -86px;
    background: url(../img/works/bg_gray01_pc.svg) no-repeat right bottom/1440px;
    z-index: -1;
  }
  .works-roles__list {
    margin-top: 56px;
  }
  .works-roles__item {
    position: relative;
    height: 440px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 24px;
  }
  .works-roles__item:nth-child(2) {
    justify-content: flex-end;
  }
  .works-roles__item:nth-child(2) .works-roles__item-img img {
    object-position: left;
  }
  .works-roles__item-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .works-roles__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
  }
  .works-roles__item-area-txt {
    width: 500px;
    padding: 11px 16px 24px;
    background: linear-gradient(to right, #fff 0%, #fff 50%, rgba(255, 255, 255, 0.8) 100%);
  }
  .works-roles__item-title {
    font-size: 2.4rem;
    padding-bottom: 10px;
    margin-bottom: 5px;
    letter-spacing: 0.06em;
  }
  .works-roles__item-title::before {
    width: 72px;
  }
  .works-roles__item-text {
    font-size: 1.6rem;
    padding-left: 4px;
  }
}
@media (min-width: 1305px) {
  .works-roles::before, .works-roles::after {
    right: calc((100vw - 1260px) / 2 * -1);
  }
}
@media (min-width: 1440px) {
  .works-roles::after, .works-roles::before {
    background-size: 100%;
  }
}

/* .works-schedule
================================================ */
.works-schedule {
  padding-top: 32px;
  padding-bottom: 60px;
}
.works-schedule__list {
  display: grid;
  gap: 24px;
  max-width: 500px;
  margin: 32px auto 0;
}
.works-schedule__item {
  padding-left: 93px;
  position: relative;
}
.works-schedule__item::before {
  content: "";
  display: block;
  position: absolute;
  left: 72px;
  top: 20px;
  width: 1px;
  height: calc(100% + 10px);
  background: rgb(var(--orange));
}
.works-schedule__item:first-child .works-schedule__item-textarea, .works-schedule__item:last-child .works-schedule__item-textarea {
  position: relative;
}
.works-schedule__item:first-child .works-schedule__item-textarea::after, .works-schedule__item:last-child .works-schedule__item-textarea::after {
  content: "";
  display: block;
  position: absolute;
  left: -21px;
  top: -22px;
  width: 1px;
  height: 24px;
  border-left: 1px dashed rgb(var(--orange));
}
.works-schedule__item:last-child::before {
  display: none;
}
.works-schedule__item:last-child .works-schedule__item-textarea::after {
  top: 21px;
}
.works-schedule__item-header {
  position: relative;
}
.works-schedule__item-header::before {
  content: "";
  position: absolute;
  right: 9px;
  top: 7px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(135deg);
  transition: all 0.3s ease;
}
.works-schedule__item-header.is-active::before {
  transform: rotate(-45deg);
  top: 10px;
}
.works-schedule__item-time {
  font-size: 1.6rem;
  color: rgb(var(--orange));
  font-weight: 600;
  letter-spacing: 0.06em;
  position: absolute;
  left: -93px;
  top: 0;
  width: 50px;
  text-align: right;
}
.works-schedule__item-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.6;
  padding-bottom: 8px;
  position: relative;
}
.works-schedule__item-title::before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  position: absolute;
  bottom: 0;
  transform: rotate(45deg);
  background: rgb(var(--orange));
  left: -26px;
  top: 7px;
}
.works-schedule__item-desc {
  line-height: 1.6;
  padding-top: 8px;
}
.works-schedule__item-img {
  margin: 16px 13px 0 auto;
  display: block;
}
.works-schedule__scroll {
  position: relative;
  margin: 38px -24px 0;
  height: 132px;
  pointer-events: none;
  overflow: hidden;
}
.works-schedule__scroll-img {
  background: url(../img/works/bg_scroll01.png) repeat center center/auto 100%;
}
@media all and (min-width: 1000px) {
  .works-schedule {
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .works-schedule__list {
    max-width: 940px;
    padding: 40px;
    gap: 40px;
  }
  .works-schedule__item {
    display: flex;
    align-items: flex-start;
    padding-left: 118px;
    gap: 24px;
  }
  .works-schedule__item::before {
    left: 91px;
    top: 20px;
    height: calc(100% + 30px);
  }
  .works-schedule__item:first-child .works-schedule__item-textarea::after, .works-schedule__item:last-child .works-schedule__item-textarea::after {
    top: -35px;
    height: 44px;
    left: -27px;
  }
  .works-schedule__item:last-child .works-schedule__item-textarea::after {
    top: 25px;
  }
  .works-schedule__item-header {
    pointer-events: none;
  }
  .works-schedule__item-header::before {
    display: none;
  }
  .works-schedule__item-time {
    font-size: 2.1rem;
    width: 65px;
    left: -118px;
  }
  .works-schedule__item-title {
    font-size: 2rem;
    padding-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
  }
  .works-schedule__item-title::before {
    width: 11px;
    height: 11px;
    left: -32px;
    top: 10px;
  }
  .works-schedule__item-desc {
    padding-top: 0;
    font-size: 1.6rem;
    line-height: 1.6;
    letter-spacing: 0.06em;
    display: block !important;
  }
  .works-schedule__item-img {
    margin: 0;
  }
  .works-schedule__scroll {
    height: 175px;
    z-index: 1;
    margin: 60px 0 0;
    right: -35px;
    left: auto;
    overflow: hidden;
  }
}
@media (min-width: 1305px) {
  .works-schedule__scroll {
    left: 0;
    right: auto;
    width: calc(50vw + 310px);
  }
}

/* .works-career
================================================ */
.works-career {
  padding-top: 32px;
  padding-bottom: 60px;
}
.works-career__text + .works-career__text {
  margin-top: 12px;
}
.works-career__img {
  display: block;
  max-width: 500px;
  margin: 32px auto 0;
}
.works-career__copy {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  background: rgb(var(--black));
  color: #fff;
  padding: 5px;
  line-height: 1.6;
  margin-top: 8px;
}
.works-career__btn {
  margin-top: 32px;
}
@media all and (min-width: 1000px) {
  .works-career {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .works-career__head {
    margin-bottom: 32px;
  }
  .works-career__img {
    max-width: 900px;
    margin-top: 72px;
  }
  .works-career__copy {
    font-size: 2.4rem;
    padding: 9px;
    margin-top: 23px;
    letter-spacing: 0.06em;
  }
  .works-career__btn {
    margin: 47px 15px 0 auto;
  }
}