@charset "UTF-8";
/* mixin
================================================================== */
/* Design parts
---------------------------------------------------------------- */
/* base
================================================================== */
:root {
  --black: #000000;
  --white: #fff;
  --main: #f56911;
  --l-main: #ffad2b;
  --accent: #9ade4a;
  --gray: #f4f4f4;
  --header-h: 80px;
  --br-l: 100px;
  --br-m: 20px;
  --br-s: 12px;
  --mg-80: 80px;
  --mg-60: 60px;
  --mg-50: 50px;
  --mg-40: 40px;
  --mg-30: 30px;
  --fs-36: 3.6rem;
  --fs-32: 3.2rem;
  --fs-28: 2.8rem;
  --fs-26: 2.6rem;
  --fs-24: 2.4rem;
  --fs-22: 2.2rem;
  --fs-20: 2rem;
  --fs-18: 1.8rem;
  --fs-16: 1.6rem;
  --fs-15: 1.5rem;
  --b-shadow: 0 3px 6px rgb(0, 0, 0 / 0.1);
}

@media only screen and (max-width: 1024px) {
  :root {
    --header-h: 60px;
    --fs-36: 3.2rem;
    --fs-32: 2.8rem;
    --fs-28: 2.6rem;
    --fs-26: 2.4rem;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --br-m: 16px;
    --br-s: 8px;
    --mg-80: 60px;
    --mg-60: 50px;
    --mg-50: 40px;
    --mg-40: 30px;
    --mg-30: 20px;
    --fs-36: 2.6rem;
    --fs-32: 2.6rem;
    --fs-28: 2.4rem;
    --fs-26: 2.4rem;
    --fs-24: 2.1rem;
    --fs-22: 1.9rem;
    --fs-20: 1.8rem;
    --fs-18: 1.6rem;
    --fs-16: 1.5rem;
    --fs-15: 1.4rem;
  }
}
/* common
---------------------------------------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
  word-wrap: break-word;
  color: #000000;
  background-color: #fff;
  width: 100%;
}

main {
  overflow: hidden;
}

a {
  transition: 0.3s ease;
}

a:hover {
  opacity: 0.5;
}

@media only screen and (max-width: 599px) {
  body {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
.d-i {
  display: inline;
}

.d-ib {
  display: inline-block;
}

.d-b {
  display: block;
}

.w-100 {
  width: 100%;
}

.text-left {
  text-align: left !important;
}

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

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

.text-just {
  text-align: justify;
}

.text-tate {
  writing-mode: vertical-rl;
}

/* PC,SP表示
---------------------------------------------------------------- */
@media only screen and (max-width: 1024px) {
  .d-pc {
    display: none !important;
  }
}
@media only screen and (min-width: 1025px) {
  .d-tb {
    display: none !important;
  }
}
@media only screen and (max-width: 768px), (min-width: 1025px) {
  .d-tb-only {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-tb-sp {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .d-pc-tb {
    display: none !important;
  }
}
@media only screen and (max-width: 600px) {
  .d-pc-minsp {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-sp {
    display: none !important;
  }
}
@media only screen and (min-width: 600px) {
  .d-minsp {
    display: none !important;
  }
}
/* layout
--------------------------------------------------------------- */
.inner, .inner-np, .inner-13, .inner-12, .inner-11 {
  margin-left: auto;
  margin-right: auto;
  max-width: calc(1000px + 12%);
  padding: 100px 6%;
  width: 100%;
}
.inner-11 {
  max-width: calc(1100px + 12%);
}
.inner-12 {
  max-width: calc(1200px + 12%);
}
.inner-13 {
  max-width: calc(1300px + 12%);
}
.inner-np {
  padding: 0 6%;
}
@media (max-width: 767px) {
  .inner, .inner-np, .inner-13, .inner-12, .inner-11 {
    padding: 80px 6%;
  }
}
@media (max-width: 599px) {
  .inner, .inner-np, .inner-13, .inner-12, .inner-11 {
    padding: 60px 6%;
  }
}

.flex-basic {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.flex-row-reverse {
  display: flex;
  flex-direction: row-reverse;
}

.flex-nowrap {
  display: flex;
  flex-wrap: nowrap;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.flex-between {
  display: flex;
  justify-content: space-between;
}

.flex-around {
  display: flex;
  justify-content: space-around;
}

.flex-flexend {
  display: flex;
  justify-content: flex-end;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-h-center {
  display: flex;
  justify-content: center;
}

.flex-v-center {
  display: flex;
  align-items: center;
}

.grid-3-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .grid-3-2 {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .grid-3-2 .col-item:nth-of-type(1) {
    grid-area: 1/1/2/3;
  }
  .grid-3-2 .col-item:nth-of-type(2) {
    grid-area: 1/3/2/5;
  }
  .grid-3-2 .col-item:nth-of-type(3) {
    grid-area: 2/2/3/4;
  }
}
@media (max-width: 767px) {
  .grid-3-2 {
    display: block;
  }
  .grid-3-2 .col-item:not(:first-of-type) {
    margin-top: 20px;
  }
}

/* animation
--------------------------------------------------------------- */
/* parts
================================================================== */
.sec-ttl-en {
  font-family: "Oswald", sans-serif;
  display: block;
  font-size: 12rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
@media (max-width: 1024px) {
  .sec-ttl-en {
    font-size: 10rem;
  }
}
@media (max-width: 599px) {
  .sec-ttl-en {
    font-size: 7.2rem;
  }
}
.sec-ttl-jp {
  display: block;
  font-weight: 700;
  line-height: 1.2;
}

.btn {
  position: relative;
  z-index: 0;
  display: inline-block;
  text-align: center;
  font-size: var(--fs-18);
  font-weight: 600;
  line-height: 1.2;
  padding: 1.2em 0.5em 1.2em 0;
  width: 300px;
  max-width: 100%;
  border-radius: var(--br-l);
  background-color: #fff;
  border: 2px solid #000000;
  color: #fff;
  background-color: #000000;
}
.btn-arrow {
  transition: 0.3s ease;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  height: 64%;
  aspect-ratio: 1;
  background: var(--white);
  -webkit-clip-path: circle(50% at 50% 50%);
          clip-path: circle(50% at 50% 50%);
}
.btn-arrow::before {
  transition: 0.3s ease;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 45%;
  transform: translate(50%, -50%);
  height: 40%;
  aspect-ratio: 2/3;
  background: var(--black);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.btn:hover {
  opacity: 1;
  color: #000000;
  background-color: #fff;
}
.btn:hover .btn-arrow {
  background: var(--black);
}
.btn:hover .btn-arrow::before {
  background: var(--white);
}

/* header
================================================================== */
.header {
  transition: 0.3s ease;
  position: fixed;
  top: 0;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: var(--header-h);
  padding: 20px;
  background: var(--white);
}
@media (max-width: 1280px) {
  .header {
    position: absolute;
    padding: 10px 15px;
  }
}
.header-logo {
  display: inline-block;
  height: 30px;
}
.header-logo img {
  width: auto;
  height: 100%;
}
@media (max-width: 767px) {
  .header-logo {
    height: 25px;
  }
}
.header-menu {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 2em;
}
@media (max-width: 1280px) {
  .header-menu {
    display: none;
  }
}
.header-menu-list {
  gap: 0 1.5em;
}
.header-menu-list a {
  position: relative;
  padding: 0.8em 0;
  font-weight: 600;
}
.header-menu-list a:hover {
  opacity: 1;
  color: var(--main);
}
.header-btn .btn {
  background: var(--main);
  border-color: var(--main);
  color: var(--white);
  padding: 1em 0.6em 1em 0;
  font-size: 1.6rem;
  width: 230px;
}
.header-btn .btn-arrow::before {
  background: var(--main);
}
.header-btn .btn:hover {
  background: var(--white);
  color: var(--main);
}
.header-btn .btn:hover .btn-arrow {
  background: var(--main);
}

/* hamburger
---------------------------------------------------------------- */
.hamburger-menu {
  display: none;
  position: fixed;
  top: 8px;
  right: 15px;
  width: calc(var(--header-h) * 0.7);
  height: calc(var(--header-h) * 0.7);
  cursor: pointer;
  z-index: 9999;
  background-color: #f56911;
  border-radius: 100px;
}
@media (max-width: 1280px) {
  .hamburger-menu {
    display: block;
  }
}

.bar {
  position: absolute;
  width: 50%;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  transition: 0.4s ease;
}
.bar--top {
  top: 34%;
}
.bar--middle {
  top: 50%;
}
.bar--bottom {
  top: 66%;
}

.js-close .bar--top {
  top: 48%;
  transform: translateX(-50%) rotate(45deg);
}
.js-close .bar--middle {
  opacity: 0;
  transition: 0.1s;
}
.js-close .bar--bottom {
  top: 48%;
  transform: translateX(-50%) rotate(-45deg);
}

/* burger inner
---------------------------------------------------------------- */
.burger-nav {
  transition: 0.3s ease;
  position: fixed;
  z-index: 99;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  text-align: center;
  background-color: var(--white);
  padding: 80px 2em;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 599px) {
  .burger-nav {
    width: 80vw;
    right: -100vw;
    padding: 80px 1.5em 0;
  }
}
.burger-nav.js-active {
  right: 0;
}
.burger-nav .header-menu-list {
  margin-bottom: 20px;
}
.burger-nav .header-menu-list li a {
  display: block;
  padding: 1.2em;
  font-size: 1.7rem;
  line-height: 1.4;
  border-bottom: 1px solid #aeaeae;
}
.burger-nav .header-menu-list li a span {
  font-family: "Oswald", sans-serif;
  display: block;
  color: #f56911;
  font-size: 1.4rem;
  padding-bottom: 0.4em;
}
.burger-nav .header-menu-list li a:hover {
  opacity: 1;
}
.burger-nav .btn {
  width: 100%;
  padding: 1.2em 0.5em 1.2em 0;
}

.burger-mask {
  z-index: 90;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}
.burger-mask.js-active {
  display: block;
}

/* mv
---------------------------------------------------------------- */
.mv {
  position: relative;
  width: 100%;
  margin-top: var(--header-h);
}
.mv-text {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: 78.125%;
  bottom: 5.5555555556%;
  left: 3.125%;
}
.mv-text img {
  width: 100%;
}
@media (max-width: 767px) {
  .mv-text {
    width: 92%;
    bottom: 6%;
    left: 4%;
  }
}

.swiper-mv-wrap .swiper-slide img {
  width: 100%;
}

/* ズームしながらフェード */
.swiper-mv .swiper-slide-active img,
.swiper-mv .swiper-slide-duplicate-active img,
.swiper-mv .swiper-slide-prev img {
  -webkit-animation: zoom 10s linear 0s 1 normal both;
          animation: zoom 10s linear 0s 1 normal both;
}

@-webkit-keyframes zoom {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1.2);
  }
}

@keyframes zoom {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1.2);
  }
}
/* main
================================================================== */
/* message
---------------------------------------------------------------- */
#message {
  background: var(--main);
  overflow: hidden;
  padding-bottom: 80px;
}
@media (max-width: 1024px) {
  #message {
    padding-bottom: 30px;
  }
}
#message .sec-ttl {
  color: transparent;
  -webkit-text-stroke: 3px #fff;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  #message .sec-ttl {
    -webkit-text-stroke: 2px #fff;
  }
}

.mes-wrap {
  position: relative;
  flex-direction: row-reverse;
  gap: 40px 60px;
}
@media (max-width: 1024px) {
  .mes-wrap {
    flex-direction: column;
  }
}
.mes-content {
  position: relative;
  z-index: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.mes-content::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: min(690px, 45vw);
  aspect-ratio: 690/442;
  background: url("../img/message/deco.svg") center no-repeat;
  background-size: 100%;
  bottom: -8%;
  left: 38%;
}
@media (max-width: 1024px) {
  .mes-content::before {
    width: 450px;
    bottom: -15%;
  }
}
@media (max-width: 767px) {
  .mes-content::before {
    width: 80vw;
    bottom: -25%;
  }
}
.mes-text {
  font-size: var(--fs-18);
  font-weight: 600;
  line-height: 2;
  color: var(--white);
}
@media (max-width: 767px) {
  .mes-text {
    line-height: 1.6;
    text-align: justify;
    text-align: 500;
  }
}
.mes-text p + p {
  margin-top: 1em;
}
.mes-img-wrap {
  position: relative;
  z-index: 0;
  gap: 15px;
  width: min(570px, 50%);
  margin-top: 50px;
}
@media (max-width: 1024px) {
  .mes-img-wrap {
    margin-top: 0;
    margin-left: auto;
    width: min(500px, 100%);
  }
}
.mes-img:nth-of-type(2) {
  margin-top: 80px;
}
.mes-img:nth-of-type(3) {
  margin-top: 40px;
}

/* photo
---------------------------------------------------------------- */
#photo-scroll {
  position: relative;
  width: 100%;
}

.scroll-wrap {
  content: "";
  display: block;
  position: absolute;
  top: -0.5em;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: infiniteScroll 20s linear infinite;
          animation: infiniteScroll 20s linear infinite;
  font-family: "Oswald", sans-serif;
  font-size: max(8vw, 10rem);
  line-height: 1;
  color: var(--white);
}
@media (max-width: 1024px) {
  .scroll-wrap {
    font-size: 12rem;
  }
}
@media (max-width: 767px) {
  .scroll-wrap {
    font-size: 7.2rem;
  }
}
.scroll-list {
  gap: 0.4em;
}

@-webkit-keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* step up
---------------------------------------------------------------- */
#stepup {
  background: var(--gray);
  text-align: center;
}

.step-ttl {
  margin-bottom: var(--mg-60);
}
@media (max-width: 767px) {
  .step-ttl {
    margin-bottom: 40px;
  }
}
.step-ttl-en {
  font-family: "Oswald", sans-serif;
  display: block;
  font-size: 4rem;
  font-weight: 600;
  color: var(--main);
  line-height: 1;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .step-ttl-en {
    font-size: 3rem;
    margin-bottom: 10px;
  }
}
.step-ttl-jp {
  position: relative;
  z-index: 0;
  display: inline-block;
  font-size: 7.2rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 0 0.05em 0.3em;
  border-bottom: 6px solid var(--main);
}
@media (max-width: 1024px) {
  .step-ttl-jp {
    font-size: 6rem;
  }
}
@media (max-width: 767px) {
  .step-ttl-jp {
    display: block;
    font-size: 4.2rem;
    padding-bottom: 0.5em;
    border-bottom: 4px solid var(--main);
  }
}
.step-ttl-jp::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -44px;
  left: 50%;
  transform: translateX(-50%);
  height: 40px;
  aspect-ratio: 4/3;
  background: var(--main);
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
}
@media (max-width: 767px) {
  .step-ttl-jp::before {
    bottom: -30px;
    height: 30px;
  }
}
.step-ttl-jp::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  height: 38px;
  aspect-ratio: 4/3;
  background: var(--gray);
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
}
@media (max-width: 767px) {
  .step-ttl-jp::after {
    bottom: -22px;
    height: 28px;
  }
}
.step-text {
  font-size: var(--fs-18);
  margin-bottom: var(--mg-40);
}
@media (max-width: 767px) {
  .step-text {
    line-height: 1.8;
  }
}
.step-point {
  margin-bottom: 30px;
}
.step-point img {
  width: 300px;
}
@media (max-width: 1280px) {
  .step-img img {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .step-img img {
    width: 100%;
  }
}

/* work
---------------------------------------------------------------- */
#work {
  background: var(--l-main);
  overflow: hidden;
}
#work .sec-ttl {
  position: relative;
  z-index: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: var(--mg-80);
  align-items: flex-end;
  gap: 60px;
}
@media (max-width: 1024px) {
  #work .sec-ttl {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  #work .sec-ttl {
    display: block;
  }
}
#work .sec-ttl::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: min(650px, 50vw);
  aspect-ratio: 650/420;
  background: url("../img/work/deco_01.svg") center no-repeat;
  background-size: 100%;
  top: -150px;
  left: -48%;
}
@media (max-width: 1280px) {
  #work .sec-ttl::before {
    left: -30%;
  }
}
@media (max-width: 1024px) {
  #work .sec-ttl::before {
    top: -100px;
  }
}
@media (max-width: 767px) {
  #work .sec-ttl::before {
    top: -50px;
    left: -50%;
    width: 320px;
  }
}
#work .sec-ttl-en {
  color: var(--white);
}
#work .sec-ttl-jp {
  font-size: 4.5rem;
  font-weight: 700;
}
@media (max-width: 1024px) {
  #work .sec-ttl-jp {
    font-size: 3.8rem;
  }
}
@media (max-width: 767px) {
  #work .sec-ttl-jp {
    font-size: 2.6rem;
    margin-top: 15px;
  }
}

.job-item {
  width: min(1000px, 100%);
  gap: 50px;
}
@media (max-width: 1024px) {
  .job-item {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .job-item {
    display: block;
    width: min(400px, 100%);
  }
}
.job-item:nth-of-type(1) {
  position: relative;
  z-index: 1;
  margin-right: auto;
}
.job-item:nth-of-type(2) {
  position: relative;
  z-index: 0;
  margin-left: auto;
  margin-top: var(--mg-80);
}
.job-item:nth-of-type(2)::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: min(510px, 40vw);
  aspect-ratio: 510/230;
  background: url("../img/work/deco_02.svg") center no-repeat;
  background-size: 100%;
  top: -130px;
  right: -28%;
}
@media (max-width: 1024px) {
  .job-item:nth-of-type(2)::before {
    top: -80px;
    right: -20%;
  }
}
@media (max-width: 767px) {
  .job-item:nth-of-type(2)::before {
    width: 250px;
    top: -40px;
    right: -30%;
  }
}
.job-content {
  flex: 1;
  border-top: 8px solid var(--white);
  padding-top: 20px;
}
@media (max-width: 1024px) {
  .job-content {
    border-top: 6px solid var(--white);
  }
}
@media (max-width: 767px) {
  .job-content .btn {
    width: 100%;
    margin-top: 10px;
  }
}
.job-ttl {
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 1;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .job-ttl {
    font-size: 4.2rem;
    gap: 15px;
  }
}
.job-num {
  font-family: "Oswald", sans-serif;
  font-size: 1.2em;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 3px #fff;
}
.job-sub-ttl {
  position: relative;
  font-size: var(--fs-28);
  font-weight: 700;
  line-height: 1.2;
  padding-left: 1em;
  margin-bottom: 10px;
}
.job-sub-ttl::before {
  content: "";
  display: block;
  position: absolute;
  top: 54%;
  left: 0;
  transform: translateY(-50%);
  height: 0.8em;
  aspect-ratio: 2/3;
  background: var(--white);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.job-text {
  margin-bottom: var(--mg-30);
}
@media (max-width: 1024px) {
  .job-text br {
    display: none;
  }
}
.job-img {
  flex: 1;
}
@media (max-width: 767px) {
  .job-img {
    margin-bottom: 30px;
  }
}
.job-img img {
  border: 8px solid var(--white);
}
@media (max-width: 1024px) {
  .job-img img {
    border-top: 6px solid var(--white);
  }
}
@media (max-width: 767px) {
  .job-img img {
    aspect-ratio: 5/4;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top center;
       object-position: top center;
  }
}

.work-item-outer {
  text-align: center;
  margin-top: var(--mg-80);
}
.work-item-outer:last-of-type {
  margin-top: 40px;
}
.work-item-ttl-en {
  font-family: "Oswald", sans-serif;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  margin-bottom: -0.1em;
}
@media (max-width: 767px) {
  .work-item-ttl-en {
    font-size: min(8rem, 13vw);
    letter-spacing: 0.05em;
  }
}
.work-item-inn {
  background: var(--white);
  padding: 40px 20px;
}
@media (max-width: 767px) {
  .work-item-inn {
    padding: 2em 1.5em;
  }
}
.work-item-ttl-jp {
  font-size: var(--fs-32);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .work-item-ttl-jp {
    font-size: 2.4rem;
  }
}
.work-item-btn {
  gap: 20px;
}
@media (max-width: 1024px) {
  .work-item-btn {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .work-item-btn {
    gap: 15px;
  }
  .work-item-btn .btn {
    width: 100%;
  }
}

/* interview
---------------------------------------------------------------- */
#interview {
  background: var(--main);
  padding-top: 80px;
}
@media (max-width: 767px) {
  #interview .inner-np {
    padding-bottom: 20px;
  }
}
#interview .swiper {
  overflow: unset;
}
#interview .sec-ttl {
  position: relative;
  z-index: 1;
  margin-bottom: var(--mg-80);
}
@media (max-width: 1024px) {
  #interview .sec-ttl {
    margin-bottom: 40px;
  }
}
#interview .sec-ttl-en {
  color: transparent;
  -webkit-text-stroke: 3px #fff;
  text-align: right;
  margin-bottom: 20px;
  margin-top: -0.7em;
}
@media (max-width: 1024px) {
  #interview .sec-ttl-en {
    font-size: 9rem;
  }
}
@media (max-width: 767px) {
  #interview .sec-ttl-en {
    font-size: 7.2rem;
    -webkit-text-stroke: 2px #fff;
    margin-top: -1.5em;
  }
}
#interview .sec-ttl-jp {
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  #interview .sec-ttl-jp {
    font-size: 4.2rem;
  }
}
@media (max-width: 767px) {
  #interview .sec-ttl-jp {
    font-size: 2.6rem;
  }
}

/* photo slider */
.photo-slide {
  position: relative;
  z-index: 0;
}
.photo-slide-wrap {
  /* スライドの動き等速 */
  transition-timing-function: linear;
}
.photo-slide-item-even {
  padding-top: 60px;
}
@media (max-width: 1024px) {
  .photo-slide-item-even {
    padding-top: 40px;
  }
}
@media (max-width: 767px) {
  .photo-slide-item-even {
    padding-top: 20px;
  }
}

.int-text {
  position: relative;
  z-index: 0;
}
.int-text::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: min(734px, 50vw);
  aspect-ratio: 734/460;
  background: url("../img/interview/deco.svg") center no-repeat;
  background-size: 100%;
  bottom: -130px;
  left: calc(50% + 220px);
}
@media (max-width: 1280px) {
  .int-text::before {
    left: unset;
    right: -20%;
  }
}
@media (max-width: 767px) {
  .int-text::before {
    width: 80vw;
    bottom: -30%;
    right: -100px;
  }
}
.int-people {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: -3%;
  margin-left: 4%;
}
.int-people img {
  width: min(1500px, 100%);
}
@media (max-width: 767px) {
  .int-people {
    width: 100%;
    margin: 0;
  }
}

/* flow
---------------------------------------------------------------- */
#flow {
  background: var(--gray);
}
#flow .sec-ttl {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  #flow .sec-ttl {
    margin-bottom: 90px;
  }
}
#flow .sec-ttl-en {
  color: var(--main);
}
#flow .sec-ttl-jp {
  font-size: 3.6rem;
  margin-top: 16px;
}
@media (max-width: 1024px) {
  #flow .sec-ttl-jp {
    font-size: var(--fs-32);
  }
}
@media (max-width: 767px) {
  #flow .sec-ttl-jp {
    margin-top: 10px;
  }
}

.flow-wrap {
  gap: 16px;
  position: relative;
  z-index: 0;
}
@media (max-width: 1024px) {
  .flow-wrap {
    gap: 8px;
  }
}
@media (max-width: 599px) {
  .flow-wrap {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    width: 400px;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 16px;
  }
}
.flow-wrap::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: min(402px, 35vw);
  aspect-ratio: 402/442;
  background: url("../img/flow/deco.svg") center no-repeat;
  background-size: 100%;
  top: -70%;
  right: -20%;
}
@media (max-width: 1024px) {
  .flow-wrap::before {
    right: -16%;
  }
}
@media (max-width: 599px) {
  .flow-wrap::before {
    width: 40vw;
    top: -15%;
  }
}
.flow-waiwai {
  content: "";
  display: block;
  position: absolute;
  top: -3.2em;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
  font-size: var(--fs-24);
  font-weight: 600;
  line-height: 1.2;
}
.flow-waiwai::before, .flow-waiwai::after {
  content: "";
  width: 3px;
  height: 2.2em;
  background-color: currentColor;
}
.flow-waiwai::before {
  margin-right: 1em;
  transform: rotate(-25deg);
}
@media (max-width: 767px) {
  .flow-waiwai::before {
    margin-right: 1em;
  }
}
.flow-waiwai::after {
  margin-left: 1em;
  transform: rotate(25deg);
}
@media (max-width: 767px) {
  .flow-waiwai::after {
    margin-left: 1em;
  }
}
@media (max-width: 1024px) {
  .flow-waiwai {
    font-size: var(--fs-20);
  }
}
@media (max-width: 599px) {
  .flow-waiwai::before, .flow-waiwai::after {
    width: 2px;
  }
}
.flow-arrow {
  display: block;
  width: 24px;
  aspect-ratio: 2/3;
  background: var(--main);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  margin-right: -4px;
}
@media (max-width: 599px) {
  .flow-arrow {
    display: none;
  }
}
.flow-item {
  background: var(--white);
  padding: 30px;
  width: min(210px, 100%);
  text-align: center;
}
@media (max-width: 1024px) {
  .flow-item {
    padding: 30px 20px;
  }
}
@media (max-width: 767px) {
  .flow-item {
    padding: 30px 10px;
  }
}
@media (max-width: 599px) {
  .flow-item {
    padding: 20px 30px;
    width: calc(50% - 8px);
  }
}
.flow-item:first-of-type {
  position: relative;
}
.flow-ttl {
  font-size: var(--fs-28);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .flow-ttl {
    font-size: 2.1rem;
  }
}
.flow-num {
  font-family: "Oswald", sans-serif;
  display: block;
  font-size: 0.9em;
  font-weight: 600;
  color: var(--main);
  margin-bottom: 4px;
}
.flow-img {
  width: 100%;
}
.flow-img img {
  width: min(120px, 90%);
}

.tel-wrap {
  border: 3px solid var(--black);
  padding: 30px;
  width: 100%;
  text-align: center;
  margin-top: var(--mg-60);
}
@media (max-width: 599px) {
  .tel-wrap {
    border: 2px solid var(--black);
    padding: 2em 1.5em;
  }
}
.tel-ttl {
  position: relative;
  z-index: 0;
  display: inline-block;
  padding: 0 2em;
  font-size: var(--fs-28);
  font-weight: 700;
  line-height: 1.3;
}
@media (max-width: 599px) {
  .tel-ttl {
    padding: 0 1.8em;
  }
}
.tel-ttl::before, .tel-ttl::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.4em;
  height: 3px;
  background: currentColor;
}
@media (max-width: 599px) {
  .tel-ttl::before, .tel-ttl::after {
    height: 2px;
    width: 1.2em;
  }
}
.tel-ttl::before {
  left: 0;
}
.tel-ttl::after {
  right: 0;
}
.tel-num {
  font-family: "Oswald", sans-serif;
  font-size: 5.2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--main);
  align-items: flex-end;
  gap: 15px;
  margin: 20px 0;
}
@media (max-width: 767px) {
  .tel-num {
    gap: 8px;
    font-size: 4rem;
  }
}
.tel-num i {
  width: 0.8em;
}
.tel-num i img {
  width: 100%;
}
.tel-text {
  font-size: var(--fs-22);
}
@media (max-width: 1024px) {
  .tel-text {
    font-size: var(--fs-18);
  }
}

/* entry
---------------------------------------------------------------- */
#entry {
  background-image: url(../img/entry/bg_pc.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 500px;
}
@media (max-width: 1024px) {
  #entry {
    padding: 150px 0 120px;
  }
}
@media (max-width: 767px) {
  #entry {
    padding: 80px 0 30px;
    background-image: url(../img/entry/bg_sp.jpg);
  }
}

.entry-wrap {
  align-items: center;
  gap: 100px;
}
@media (max-width: 1024px) {
  .entry-wrap {
    flex-direction: column;
    gap: 110px;
  }
}
.entry-wrap .sec-ttl {
  position: relative;
  z-index: 0;
  color: var(--white);
}
.entry-wrap .sec-ttl::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 440px;
  aspect-ratio: 440/290;
  background: url("../img/entry/deco.svg") center no-repeat;
  background-size: 100%;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
}
.entry-wrap .btn {
  display: inline-block;
  background: var(--main);
  border-color: var(--main);
  color: var(--white);
  padding: 1.1em 0.6em 1.1em 0;
  font-size: var(--fs-32);
  width: min(600px, 100%);
}
@media (max-width: 1280px) {
  .entry-wrap .btn {
    font-size: var(--fs-28);
  }
}
@media (max-width: 767px) {
  .entry-wrap .btn {
    font-size: 2rem;
    padding: 0.8em 0.6em 0.8em 0;
  }
}
.entry-wrap .btn-arrow::before {
  background: var(--main);
}
.entry-wrap .btn:hover {
  background: var(--white);
  color: var(--main);
}
.entry-wrap .btn:hover .btn-arrow {
  background: var(--main);
}

/* footer
================================================================== */
/* pagetop
---------------------------------------------------------------- */
.page-top {
  position: fixed;
  bottom: 3%;
  right: 2%;
  z-index: 10;
  cursor: pointer;
  width: 60px;
  height: 60px;
  background-color: #9ade4a;
  border: 2px solid #9ade4a;
  border-radius: 100%;
  transition: 0.3s ease;
}
.page-top::before {
  content: "";
  width: 0.8em;
  height: 0.8em;
  position: absolute;
  top: 52%;
  right: 50%;
  margin: auto;
  vertical-align: middle;
  line-height: 1;
  border: 2.5px solid #fff;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translate(50%, -50%) rotate(-45deg);
}
.page-top.js-position {
  position: absolute;
  top: -30px; /* 止まって欲しい場所を記入 */
}
.page-top:hover {
  background-color: #fff;
}
.page-top:hover::before {
  border-color: #9ade4a;
}
@media (max-width: 767px) {
  .page-top {
    width: 50px;
    height: 50px;
  }
}

/* footer
---------------------------------------------------------------- */
.footer {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  background: #000000;
  color: #fff;
}
@media (max-width: 599px) {
  .footer {
    font-size: 14px;
  }
}
.footer .inner {
  padding: 30px 3%;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .footer-nav {
    margin-bottom: 8px;
  }
}
.footer-nav a {
  padding: 0.5em 1em;
}
@media (max-width: 767px) {
  .footer-nav a {
    padding: 0.5em 0.6em;
  }
}
.footer-nav span {
  background-color: #fff;
  width: 1px;
  height: 1em;
}
@media screen and (max-width: 550px) {
  .footer-nav span:last-of-type {
    display: none;
  }
}
.copyright {
  text-align: center;
  line-height: 1.5;
  padding: 0.5em 1em 0;
}
.copyright span {
  display: inline-block;
}
/*# sourceMappingURL=style.css.map */