@charset "UTF-8";
/* mixin
================================================================== */
/* Design parts
---------------------------------------------------------------- */
/* base
================================================================== */
:root {
  --black: #1f1506;
  --white: #fff;
  --main: #008033;
  --l-main: #d2e6ba;
  --accent: #f28300;
  --l-accent: #fce5bd;
  --base: #f7f1e5;
  --gray: #f7f7f7;
  --header-h: 80px;
  --br-l: 100px;
  --br-m: 30px;
  --br-s: 20px;
  --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;
    --br-m: 20px;
    --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: 16px;
    --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
---------------------------------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.06em;
  word-wrap: break-word;
  color: #1f1506;
  background-color: #fff;
  width: 100%;
  background: var(--base);
}

main {
  overflow: hidden;
}

a {
  transition: 0.3s ease;
}

a:hover {
  opacity: 0.5;
}

img {
  width: 100%;
}

@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 (min-width: 768px) {
  .d-sp {
    display: none !important;
  }
}
@media only screen and (min-width: 600px) {
  .d-minsp {
    display: none !important;
  }
}
/* layout
--------------------------------------------------------------- */
.inner {
  margin-inline: auto;
  max-width: calc(1000px + 12%);
  padding: 100px 6%;
  width: 100%;
}
@media (max-width: 767px) {
  .inner {
    padding: 80px 6%;
  }
}
@media (max-width: 599px) {
  .inner {
    padding: 60px 6%;
  }
}
.inner-11 {
  margin-inline: auto;
  max-width: calc(1100px + 12%);
  padding: 100px 6%;
  width: 100%;
}
@media (max-width: 767px) {
  .inner-11 {
    padding: 80px 6%;
  }
}
@media (max-width: 599px) {
  .inner-11 {
    padding: 60px 6%;
  }
}
.inner-12 {
  margin-inline: auto;
  max-width: calc(1200px + 12%);
  padding: 100px 6%;
  width: 100%;
}
@media (max-width: 767px) {
  .inner-12 {
    padding: 80px 6%;
  }
}
@media (max-width: 599px) {
  .inner-12 {
    padding: 60px 6%;
  }
}
.inner-14 {
  margin-inline: auto;
  max-width: calc(1300px + 12%);
  padding: 100px 6%;
  width: 100%;
}
@media (max-width: 767px) {
  .inner-14 {
    padding: 80px 6%;
  }
}
@media (max-width: 599px) {
  .inner-14 {
    padding: 60px 6%;
  }
}
.inner-np {
  padding: 0 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: 30px;
  }
}

/* animation
--------------------------------------------------------------- */
/* parts
================================================================== */
.sec-ttl {
  margin-bottom: var(--mg-60);
}
.sec-ttl-en {
  font-family: "REM", sans-serif;
  display: block;
  font-size: 7.2rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--main);
}
@media (max-width: 1024px) {
  .sec-ttl-en {
    font-size: 6rem;
  }
}
@media (max-width: 599px) {
  .sec-ttl-en {
    font-size: 4.8rem;
  }
}
.sec-ttl-jp {
  display: block;
  font-size: var(--fs-24);
  font-weight: 600;
  padding-top: 4px;
}

.btn {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: var(--fs-18);
  font-weight: 600;
  line-height: 1.2;
  padding: 0.8em 1.5em;
  min-width: 200px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  border-radius: var(--br-l);
  background-color: #fff;
  border: 2px solid #008033;
  color: #008033;
}
.btn::before {
  transition: 0.3s ease;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1em;
  width: 0.9em;
  aspect-ratio: 17/14;
  margin: auto;
  -webkit-mask-image: url("../img/arrow.svg");
          mask-image: url("../img/arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background: currentColor;
  transform: translateY(-50%) rotate(0);
}
.btn:hover {
  opacity: 1;
  color: #fff;
  background-color: #008033;
}
.btn:hover::before {
  right: 0.7em;
}

/* 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 30px;
}
@media (max-width: 1280px) {
  .header {
    padding: 10px 15px;
  }
}
@media (max-width: 599px) {
  .header {
    position: absolute;
  }
}
.header-logo {
  display: inline-block;
  height: 60px;
}
.header-logo img {
  width: auto;
  height: 100%;
}
@media (max-width: 1024px) {
  .header-logo {
    height: 40px;
  }
}
.header-btn {
  flex-grow: 1;
  justify-content: flex-end;
  gap: 15px;
}
.header-btn .btn {
  height: calc(var(--header-h) * 0.7);
  background: var(--main);
  color: var(--white);
}
.header-btn .btn:hover {
  background: var(--white);
  color: var(--main);
}
.header-btn .btn::before {
  display: none;
}
.header-btn .btn:last-of-type {
  background: var(--accent);
  border-color: var(--accent);
}
.header-btn .btn:last-of-type:hover {
  background: var(--white);
  color: var(--accent);
}
.header-btn-en {
  display: inline-block;
  font-family: "REM", sans-serif;
  font-size: 1.1em;
  font-weight: 500;
  padding-left: 0.4em;
}

@media (max-width: 1024px) {
  .header .header-btn .btn {
    transform: translateY(1px);
    height: auto;
    min-width: 0;
    padding: 0.5em 1.2em;
    font-size: var(--fs-16);
  }
}
@media (max-width: 599px) {
  .header .header-btn .btn {
    display: none;
  }
}

/* hamburger
---------------------------------------------------------------- */
.hamburger-menu {
  position: relative;
  width: calc(var(--header-h) * 0.7);
  height: var(--header-h);
  cursor: pointer;
  z-index: 9999;
  margin-left: 5px;
}
@media (max-width: 599px) {
  .hamburger-menu {
    position: fixed;
  }
}

.bar {
  position: absolute;
  width: 90%;
  height: 4px;
  left: 50%;
  transform: translateX(-50%);
  background: #008033;
  border-radius: 20px;
  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 {
  position: fixed;
  z-index: 99;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  text-align: center;
  background-color: var(--base);
  padding: 80px 2em;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: 0.5s;
}
@media (max-width: 599px) {
  .burger-nav {
    width: 80vw;
    right: -100vw;
    padding: 80px 1.5em 0;
  }
}
.burger-nav .header-menu-list {
  margin-bottom: 30px;
}
.burger-nav .header-menu-list li a {
  display: block;
  padding: 1.2em;
  font-size: 1.7rem;
  line-height: 1.4;
  background-image: linear-gradient(to right, #008033, #008033 8px, transparent 8px);
  background-size: 16px 2px;
  background-position: left bottom;
  background-repeat: repeat-x;
}
.burger-nav .header-menu-list li a span {
  transition: 0.3s ease;
  font-family: "REM", sans-serif;
  display: block;
  color: #008033;
  font-size: 1.4rem;
  padding-bottom: 0.3em;
}
.burger-nav .header-menu-list li a:hover {
  opacity: 1;
  color: var(--accent);
}
.burger-nav .header-menu-list li a:hover span {
  color: var(--accent);
}
.burger-nav.js-active {
  right: 0;
}
.burger-nav .header-btn .btn {
  display: block;
  width: 100%;
  margin-top: 15px;
  height: auto;
  padding: 1em;
}

.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;
}

/* slide btn
---------------------------------------------------------------- */
.slidebtn-wrap {
  position: fixed;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  z-index: 50;
  right: 0;
  bottom: 0;
  transform: translate(0%, 120%);
  width: 100%;
}
@media only screen and (min-width: 600px) {
  .slidebtn-wrap {
    display: none;
  }
}
.slidebtn-wrap.is-show {
  transform: translate(0%, 0%);
}

.slide-btn {
  display: block;
  width: 100%;
  height: auto;
  padding: 0.8em 0.5em 0.7em;
  border: none;
  text-align: center;
  font-weight: 600;
  background: var(--main);
  color: var(--white);
}
.slide-btn:last-of-type {
  background: var(--accent);
}

/* main
================================================================== */
/* mv
---------------------------------------------------------------- */
.mv {
  position: relative;
  margin-top: var(--header-h);
  width: 100%;
}
@media (max-width: 767px) {
  .mv {
    margin-top: calc(var(--header-h) + 10px);
  }
}
.mv-wave {
  content: "";
  display: block;
  position: absolute;
  top: 70.8333333333%;
  left: 0;
  right: 0;
  width: 100%;
}
.mv-wave img {
  aspect-ratio: 1600/350;
}
@media (max-width: 767px) {
  .mv-wave {
    top: unset;
    bottom: 0;
  }
  .mv-wave img {
    aspect-ratio: 780/250;
  }
}
.mv-outer {
  width: 100%;
  max-width: 1900px;
}
.mv-inn {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1530/720;
  margin-left: auto;
}
@media (max-width: 767px) {
  .mv-inn {
    aspect-ratio: 780/1050;
  }
}
.mv-copy {
  position: absolute;
  display: block;
  top: 12.5%;
  left: 1.9607843137%;
  width: 39.2156862745%;
}
@media (max-width: 767px) {
  .mv-copy {
    top: unset;
    bottom: 22.8571428571%;
    left: 3.8461538462%;
    width: 76.9230769231%;
  }
}
.mv-company {
  position: absolute;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  top: 47.2222222222%;
  left: 1.9607843137%;
  font-size: max(1.4vw, 1.3rem);
  line-height: 1.2;
  color: var(--white);
  padding: 0.3em 0.8em 0.4em;
  border-radius: 8px;
  background: var(--accent);
}
@media (max-width: 1024px) {
  .mv-company {
    border-radius: 4px;
  }
}
@media (max-width: 767px) {
  .mv-company {
    top: unset;
    bottom: 16.1904761905%;
    left: 3.8461538462%;
    font-size: max(3vw, 1.3rem);
  }
}
.mv-deco-01 {
  position: absolute;
  display: block;
  bottom: 22.2222222222%;
  left: 3.2679738562%;
  width: 8.4967320261%;
}
@media (max-width: 767px) {
  .mv-deco-01 {
    bottom: -10px;
    left: unset;
    right: 23.6111111111%;
    width: 18.0555555556%;
  }
}
.mv-deco-02 {
  position: absolute;
  display: block;
  bottom: 6.9444444444%;
  left: 13.0718954248%;
  width: 8.1045751634%;
}
@media (max-width: 767px) {
  .mv-deco-02 {
    bottom: 1.9047619048%;
    left: unset;
    right: 4.1666666667%;
    width: 16.6666666667%;
  }
}

.swiper-mv-wrap {
  position: absolute;
  z-index: -1;
  display: block;
  top: 2.7777777778%;
  right: 1.9607843137%;
  width: 71.8954248366%;
  aspect-ratio: 1100/670;
  border-radius: 50px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .swiper-mv-wrap {
    top: 0;
    right: 3.8461538462%;
    width: 82.0512820513%;
    aspect-ratio: 1;
    border-radius: 30px;
  }
}
.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);
  }
}
/* about
---------------------------------------------------------------- */
.about {
  position: relative;
}
.about::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 250px);
  background-color: var(--l-main);
}
@media (max-width: 1024px) {
  .about::before {
    height: calc(100% - 150px);
  }
}
@media (max-width: 599px) {
  .about::before {
    height: calc(100% - 90px);
  }
}
.about::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 250px);
  background-image: url("../img/bg.png");
  mix-blend-mode: multiply;
  background-size: 100%;
  background-repeat: repeat;
}
@media (max-width: 1024px) {
  .about::after {
    height: calc(100% - 150px);
  }
}
@media (max-width: 599px) {
  .about::after {
    height: calc(100% - 90px);
  }
}
.about-wave {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: calc(100% - 250px);
  left: 0;
  right: 0;
  width: 100%;
}
@media (max-width: 1024px) {
  .about-wave {
    top: calc(100% - 150px);
  }
}
@media (max-width: 599px) {
  .about-wave {
    top: calc(100% - 90px);
  }
}
.about .inner {
  padding-top: 60px;
}
.about .sec-ttl {
  margin-bottom: var(--mg-40);
}
.about-wrap {
  width: min(1100px, 100%);
  margin-left: auto;
  display: grid;
  grid-template-columns: fit-content(100%) minmax(0, 600px);
  gap: 60px;
}
@media (max-width: 1280px) {
  .about-wrap {
    gap: 60px 40px;
  }
}
@media (max-width: 1024px) {
  .about-wrap {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .about-wrap {
    gap: 40px;
  }
}
.about-left {
  padding-top: 60px;
}
@media (max-width: 1280px) {
  .about-left {
    padding-top: 0;
  }
}
.about-text {
  font-size: var(--fs-18);
  line-height: 2;
}
.about-text p + p {
  margin-top: 1em;
}
@media (max-width: 1024px) {
  .about-text br {
    display: none;
  }
  .about-text br.br-on {
    display: block;
  }
}
@media (max-width: 767px) {
  .about-text br {
    display: block;
  }
}
@media (max-width: 599px) {
  .about-text {
    font-size: 1.5rem;
  }
}
.about-right {
  position: relative;
  aspect-ratio: 600/690;
}
@media (max-width: 1024px) {
  .about-right {
    width: min(600px, 100%);
    margin-left: auto;
  }
}
.about-img {
  position: absolute;
}
.about-img:not(:last-of-type) {
  border-radius: var(--br-s);
  overflow: hidden;
}
.about-img:nth-of-type(1) {
  top: 0;
  right: 0;
  width: 83.3333333333%;
}
.about-img:nth-of-type(2) {
  bottom: 13.0434782609%;
  left: 0;
  width: 50%;
}
.about-img:nth-of-type(3) {
  bottom: 0;
  right: 3.3333333333%;
  width: 35.3333333333%;
}

/* work
---------------------------------------------------------------- */
.work {
  position: relative;
}
.work-wave {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
}
.work-deco-01 {
  content: "";
  display: block;
  position: absolute;
  z-index: -2;
  top: -220px;
  right: calc(50% + 260px);
  width: 640px;
}
@media (max-width: 1024px) {
  .work-deco-01 {
    top: -100px;
    right: unset;
    left: -20%;
    width: 50%;
  }
}
@media (max-width: 599px) {
  .work-deco-01 {
    width: 70%;
    left: -25%;
  }
}
.work-deco-02 {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: calc(50% + 200px);
  width: min(140px, 15%);
}
@media (max-width: 1024px) {
  .work-deco-02 {
    bottom: 1%;
    left: unset;
    right: 20%;
  }
}
@media (max-width: 767px) {
  .work-deco-02 {
    bottom: 2%;
    right: 30%;
    width: 80px;
  }
}
.work-deco-03 {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  bottom: -6%;
  left: calc(50% + 350px);
  width: min(116px, 13%);
}
@media (max-width: 1024px) {
  .work-deco-03 {
    bottom: -20px;
    left: unset;
    right: 3%;
  }
}
@media (max-width: 767px) {
  .work-deco-03 {
    width: 80px;
    right: 6%;
  }
}
.work .inner {
  padding-top: 20px;
  padding-bottom: 220px;
}
.work-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 767px) {
  .work-wrap {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) {
  .work-wrap {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .work-wrap {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    width: 450px;
  }
}
.work-item {
  position: relative;
  z-index: 0;
  background: var(--l-accent);
  border-radius: var(--br-s);
  overflow: hidden;
}
.work-item-inn {
  padding: 20px 30px 30px;
}
@media (max-width: 599px) {
  .work-item-inn {
    padding: 15px 25px 30px;
  }
}
.work-item:nth-of-type(2), .work-item:nth-of-type(3) {
  background: var(--l-main);
}
.work-item:nth-of-type(2) .work-ttl, .work-item:nth-of-type(3) .work-ttl {
  background: var(--main);
}
.work-ttl {
  position: relative;
  font-size: var(--fs-28);
  font-weight: 600;
  line-height: 1;
  text-align: center;
  margin-inline: auto;
  margin-top: -1em;
  padding: 0.5em 1.5em 0.6em;
  width: 240px;
  border-radius: var(--br-l);
  background: var(--accent);
  color: var(--white);
}
@media (max-width: 1024px) {
  .work-ttl {
    font-size: var(--fs-24);
  }
}
.work-tag {
  gap: 0.5em;
  font-size: var(--fs-20);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
}
.work-tag p:first-of-type {
  color: var(--main);
}

.bnr-wrap {
  position: relative;
  background: var(--accent);
  padding: 50px 30px;
  margin-top: 100px;
  border-radius: var(--br-s);
  text-align: center;
}
@media (max-width: 767px) {
  .bnr-wrap {
    padding: 60px 30px;
  }
}
.bnr-bub {
  content: "";
  display: block;
  position: absolute;
  top: -40px;
  left: calc(50% + 200px);
  width: 140px;
}
@media (max-width: 1024px) {
  .bnr-bub {
    left: unset;
    right: 6%;
  }
}
@media (max-width: 767px) {
  .bnr-bub {
    top: -10%;
    width: max(25%, 100px);
    right: 2%;
  }
}
@media (max-width: 599px) {
  .bnr-bub {
    top: -8%;
  }
}
.bnr-img {
  content: "";
  display: block;
  position: absolute;
  width: 324px;
}
@media (max-width: 1024px) {
  .bnr-img {
    width: 30%;
  }
}
.bnr-img-01 {
  top: -60px;
  left: -100px;
}
@media (max-width: 1024px) {
  .bnr-img-01 {
    left: -60px;
  }
}
@media (max-width: 767px) {
  .bnr-img-01 {
    top: -14%;
    left: 0;
    width: 26%;
  }
}
@media (max-width: 599px) {
  .bnr-img-01 {
    top: -12%;
    left: 2%;
    width: 30%;
  }
}
.bnr-img-02 {
  bottom: -60px;
  right: -100px;
}
@media (max-width: 1024px) {
  .bnr-img-02 {
    right: -60px;
  }
}
@media (max-width: 767px) {
  .bnr-img-02 {
    right: 2%;
  }
}
.bnr-deco-01 {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -60px;
  width: 210px;
}
@media (max-width: 1024px) {
  .bnr-deco-01 {
    top: 60px;
    right: -4%;
    width: 20%;
  }
}
@media (max-width: 767px) {
  .bnr-deco-01 {
    top: 30%;
    width: 25%;
  }
}
.bnr-deco-02 {
  content: "";
  display: block;
  position: absolute;
  bottom: -10px;
  left: -20px;
  width: 208px;
}
@media (max-width: 1024px) {
  .bnr-deco-02 {
    left: -2%;
    width: 20%;
  }
}
@media (max-width: 767px) {
  .bnr-deco-02 {
    width: 24%;
    bottom: -4%;
  }
}
.bnr-ttl {
  width: 400px;
  margin-inline: auto;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .bnr-ttl {
    width: min(350px, 100%);
  }
}
.bnr-text {
  line-height: 2;
}
@media (max-width: 767px) {
  .bnr-text {
    line-height: 1.7;
  }
}
.bnr-text-color {
  color: var(--white);
}

/* interview
---------------------------------------------------------------- */
.int-car-wrap {
  position: relative;
  z-index: 0;
  background-color: var(--l-accent);
}
.int-car-wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg.png");
  mix-blend-mode: multiply;
  background-size: 100%;
  background-repeat: repeat;
}

.int {
  position: relative;
  z-index: 0;
}
.int .inner-12 {
  padding-top: 30px;
}
.int .sec-ttl-en {
  color: var(--accent);
}
.int::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: min(50% + 700px, 97%);
  height: 40%;
  background-color: #ffc580;
  border-bottom-right-radius: 60px;
}
@media (max-width: 1024px) {
  .int::before {
    height: 70%;
  }
}
@media (max-width: 767px) {
  .int::before {
    height: 75%;
    width: 100%;
  }
}
.int-wrap {
  gap: 40px;
}
@media (max-width: 1280px) {
  .int-wrap {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .int-wrap {
    margin-inline: auto;
    max-width: 90%;
    width: 400px;
  }
}
.int-item {
  display: block;
  background: var(--white);
  border-radius: var(--br-s);
  overflow: hidden;
  cursor: pointer;
  overflow: hidden;
  width: 100%;
}
.int-item img {
  height: auto;
  transition: transform 0.3s ease;
}
.int-item:hover img {
  transform: scale(1.07);
}
.int-item:last-of-type .int-tag {
  color: var(--accent);
}
.int-item:hover {
  opacity: 1;
  color: var(--main);
}
.int-item:hover .int-arrow {
  background: var(--white);
}
.int-item:hover .int-arrow::before {
  background: var(--main);
}
.int-item-inn {
  padding: 25px;
}
.int-item-btm {
  align-items: end;
  padding-top: 10px;
}
@media (max-width: 767px) {
  .int-item-btm {
    padding: 0;
  }
}
.int-img {
  overflow: hidden;
}
.int-label {
  font-size: var(--fs-18);
  font-weight: 600;
  line-height: 1.6;
}
.int-tag {
  display: block;
  color: var(--main);
}
.int-name {
  font-size: 2rem;
  line-height: 1;
  padding-bottom: 4px;
}
.int-name span {
  font-family: "REM", sans-serif;
  font-size: 3.6rem;
  padding-right: 6px;
}
@media (max-width: 767px) {
  .int-name span {
    font-size: 3rem;
  }
}
.int-arrow {
  transition: 0.3s ease;
  position: relative;
  width: 60px;
  aspect-ratio: 1;
  border-radius: var(--br-l);
  background: var(--main);
  border: 2px solid var(--main);
}
@media (max-width: 767px) {
  .int-arrow {
    width: 50px;
  }
}
.int-arrow::before {
  transition: 0.3s ease;
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 17px;
  aspect-ratio: 17/14;
  -webkit-mask-image: url("../img/arrow.svg");
          mask-image: url("../img/arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background: var(--white);
}

/* modal
---------------------------------------------------------------- */
.modal-content {
  position: relative;
}
.modal-content::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: min(330px, 50%);
  aspect-ratio: 330/260;
  background: url("../img/int/modal_top.png") center no-repeat;
  background-size: 100%;
  top: 0;
  right: 0;
}
.modal-content::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: min(330px, 50%);
  aspect-ratio: 330/290;
  background: url("../img/int/modal_btm.png") center no-repeat;
  background-size: 100%;
  bottom: 0;
  left: 0;
}
.modal-close-top {
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 20px;
  transition: 0.3s ease;
}
.modal-close-top:hover {
  opacity: 0.6;
}
@media (max-width: 767px) {
  .modal-close-top {
    top: 6px;
    right: 6px;
  }
}
.modal-close-btm {
  width: 100%;
}
.modal-close-btm .btn {
  width: 280px;
  margin-top: var(--mg-60);
  padding: 1.2em;
}
.modal-top {
  position: relative;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .modal-top {
    padding: 0;
  }
}
.modal-top-img {
  width: min(720px, 90%);
  margin-right: auto;
  border-radius: var(--br-s);
  overflow: hidden;
}
@media (max-width: 767px) {
  .modal-top-img {
    width: 90%;
  }
  .modal-top-img img {
    aspect-ratio: 1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.modal-top-text-wrap {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 767px) {
  .modal-top-text-wrap {
    position: relative;
    z-index: 1;
    margin-top: -50px;
  }
}
.modal-top-text-deco {
  width: min(180px, 20vw);
  margin-inline: auto;
  margin-bottom: -20px;
}
@media (max-width: 1024px) {
  .modal-top-text-deco {
    margin-left: auto;
    margin-right: 30px;
  }
}
@media (max-width: 767px) {
  .modal-top-text-deco {
    width: 100px;
    margin-right: 10px;
    margin-bottom: -40px;
  }
}
.modal-top-text-inn {
  display: block;
  background: var(--main);
  border-radius: var(--br-s);
  color: var(--white);
  width: 270px;
  padding: 20px 30px;
}
@media (max-width: 767px) {
  .modal-top-text-inn {
    width: 220px;
    padding: 20px;
    margin-left: auto;
  }
}
.modal-top-text-label {
  font-size: var(--fs-18);
  line-height: 1.5;
  margin-bottom: 10px;
}

.qa-list {
  margin-inline: auto;
  margin-top: 40px;
  width: 100%;
}
.qa-list dt {
  position: relative;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  padding-left: 2.2em;
}
.qa-list dt:not(:first-of-type) {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .qa-list dt {
    font-size: 1.7rem;
  }
}
.qa-list dt::before {
  font-family: "REM", sans-serif;
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 7px;
  content: "Q";
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
}
.qa-list dt::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #008033;
  width: 30px;
  height: 30px;
  border-radius: 100px;
}
.qa-list dd {
  font-size: var(--fs-15);
  line-height: 1.7;
  text-align: justify;
  margin-top: 20px;
  padding: 20px 30px;
  background: var(--white);
  border-radius: 12px;
}
@media (max-width: 767px) {
  .qa-list dd {
    padding: 1.5em;
  }
}

/* career
---------------------------------------------------------------- */
.career {
  position: relative;
}
.career-outer {
  display: grid;
  grid-template-columns: 320px minmax(50%, 750px);
  justify-content: space-between;
  gap: 60px 80px;
}
@media (max-width: 1280px) {
  .career-outer {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .career-outer {
    gap: 50px;
  }
}
.career-top {
  width: 100%;
}
@media (max-width: 1280px) {
  .career-top {
    display: flex;
    align-items: flex-end;
  }
  .career-top .sec-ttl {
    margin-bottom: 0;
  }
}
.career-deco-01 {
  width: 250px;
  margin-left: auto;
}
@media (max-width: 1280px) {
  .career-deco-01 {
    width: 200px;
  }
}
@media (max-width: 599px) {
  .career-deco-01 {
    width: min(120px, 100%);
  }
}
.career-deco-02 {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 660px;
  top: -220px;
  left: calc(50% + 280px);
}
@media (max-width: 1280px) {
  .career-deco-02 {
    left: unset;
    right: -15%;
  }
}
@media (max-width: 1024px) {
  .career-deco-02 {
    top: -180px;
    width: 550px;
  }
}
@media (max-width: 767px) {
  .career-deco-02 {
    top: -40px;
    width: 300px;
  }
}
.career-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
}
.career-item:not(:first-of-type) {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .career-item {
    grid-template-columns: 100px 1fr;
  }
}
@media (max-width: 599px) {
  .career-item {
    grid-template-columns: 80px 1fr;
    gap: 20px;
  }
}
.career-dot {
  margin-top: 15px;
}
.career-dot img {
  width: 8px;
}
@media (max-width: 767px) {
  .career-dot img {
    width: 6px;
  }
}
.career-ttl {
  font-size: var(--fs-28);
  font-weight: 600;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .career-ttl {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.career-year {
  font-size: var(--fs-16);
  color: var(--white);
  line-height: 1;
  padding: 0.5em 1em 0.6em;
  margin-left: 1em;
  border-radius: 8px;
  background: var(--accent);
}
@media (max-width: 767px) {
  .career-year {
    margin: 0;
    font-size: 1.4rem;
    padding: 0.5em;
    border-radius: 4px;
  }
}
@media (max-width: 599px) {
  .career-text br {
    display: none;
  }
}

/* photo slider
---------------------------------------------------------------- */
.photo-slide {
  position: relative;
}
.photo-slide-wrap {
  /* スライドの動き等速 */
  transition-timing-function: linear;
}
.photo-slide-bg {
  position: absolute;
  display: block;
  bottom: -20%;
  left: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .photo-slide-bg {
    bottom: 0;
  }
}
.photo-slide-item img {
  width: 100%;
  border-radius: var(--br-s);
}

/* environment
---------------------------------------------------------------- */
.env {
  position: relative;
}
.env-deco-01 {
  position: absolute;
  display: block;
  z-index: -1;
  top: -50px;
  right: calc(50% + 240px);
  width: 660px;
}
@media (max-width: 1280px) {
  .env-deco-01 {
    right: unset;
    top: -1%;
    left: -15%;
    width: 50%;
  }
}
@media (max-width: 767px) {
  .env-deco-01 {
    left: -30%;
    width: 80%;
  }
}
.env-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .env-wrap {
    gap: 20px;
  }
}
@media (max-width: 599px) {
  .env-wrap {
    gap: 30px;
    max-width: 90%;
    margin-inline: auto;
  }
}
.env-item {
  position: relative;
  z-index: 0;
  background: var(--white);
  border-radius: var(--br-s);
  text-align: center;
  padding: 10px 30px 30px;
  width: 100%;
  flex-basis: calc((100% - 60px) / 3);
}
@media (max-width: 1024px) {
  .env-item {
    flex-basis: calc((100% - 30px) / 2);
  }
}
@media (max-width: 767px) {
  .env-item {
    flex-basis: calc((100% - 20px) / 2);
  }
}
@media (max-width: 599px) {
  .env-item {
    flex-basis: 100%;
  }
}
.env-item::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(88%, 280px);
  height: 80px;
  background: var(--l-main);
  -webkit-clip-path: ellipse(50% 100% at 50% -10%);
          clip-path: ellipse(50% 100% at 50% -10%);
}
@media (max-width: 767px) {
  .env-item::before {
    height: 70px;
  }
}
@media only screen and (min-width: 1025px) {
  .env-item:last-of-type {
    flex-basis: min(600px, 100%);
  }
}
@media (max-width: 1024px) {
  .env-item:last-of-type .env-text {
    text-align: justify;
  }
  .env-item:last-of-type .env-text br {
    display: none;
  }
  .env-item:last-of-type .env-text span {
    display: inline;
  }
}
.env-ttl {
  font-size: var(--fs-24);
  font-weight: 600;
  color: var(--main);
}
.env-img {
  display: inline-block;
  height: 174px;
  margin: 30px 0;
}
.env-img img {
  width: auto;
  height: 100%;
}
@media (max-width: 767px) {
  .env-img {
    height: 150px;
  }
}
.env-img img {
  max-width: 100%;
}
.env-text {
  line-height: 1.6;
}

/* entry
---------------------------------------------------------------- */
.sec-entry {
  position: relative;
  background: var(--white);
}
@media (max-width: 1024px) {
  .sec-entry .inner-14 {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .sec-entry .inner-14 {
    padding-top: 60px;
  }
}
.sec-entry-bg {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .sec-entry-bg {
    width: 120%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.sec-entry-deco {
  position: absolute;
  display: block;
  top: -120px;
  left: calc(50% + 300px);
  width: min(300px, 25%);
}
@media (max-width: 1280px) {
  .sec-entry-deco {
    left: unset;
    right: 3%;
  }
}
@media (max-width: 767px) {
  .sec-entry-deco {
    top: -80px;
    width: min(150px, 35%);
  }
}
.sec-entry-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
}
@media (max-width: 767px) {
  .sec-entry-wrap {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .sec-entry-wrap {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    width: 500px;
  }
}
.sec-entry-img {
  border-radius: var(--br-m);
  overflow: hidden;
}
.sec-entry-btn {
  margin-top: -50%;
  width: min(550px, 90%);
  padding: 0.5em;
  background: var(--main);
  color: var(--white);
  border-width: 2.5px;
  font-size: 3rem;
}
.sec-entry-btn::before {
  right: 0.8em;
}
@media (max-width: 767px) {
  .sec-entry-btn::before {
    width: 1em;
    right: 1em;
  }
}
@media (max-width: 1280px) {
  .sec-entry-btn {
    margin-top: -40%;
    font-size: 2.6rem;
    width: min(400px, 90%);
  }
  .sec-entry-btn span {
    display: block;
  }
  .sec-entry-btn .header-btn-en {
    padding-left: 0;
    padding-top: 0.2em;
  }
}
@media (max-width: 1024px) {
  .sec-entry-btn {
    margin-top: -6%;
    font-size: 2.2rem;
  }
}
@media (max-width: 599px) {
  .sec-entry-btn {
    font-size: 1.8rem;
  }
}
.sec-entry-item {
  cursor: pointer;
  overflow: hidden;
  width: 100%;
  text-align: center;
}
.sec-entry-item img {
  height: auto;
  transition: transform 0.3s ease;
}
.sec-entry-item:hover img {
  transform: scale(1.07);
}
.sec-entry-item:hover {
  opacity: 1;
}
.sec-entry-item:hover .sec-entry-btn {
  background: var(--white);
  color: var(--main);
}
.sec-entry-item:hover .sec-entry-btn::before {
  right: 0.7em;
}
.sec-entry-item:last-of-type .sec-entry-btn {
  background: var(--accent);
  border-color: var(--accent);
}
.sec-entry-item:last-of-type:hover .sec-entry-btn {
  background: var(--white);
  color: var(--accent);
}

/* footer
================================================================== */
/* pagetop
---------------------------------------------------------------- */
.page-top {
  position: fixed;
  bottom: 3%;
  right: 2%;
  z-index: 10;
  cursor: pointer;
  width: 65px;
  aspect-ratio: 1;
  background-color: var(--main);
  color: var(--white);
  -webkit-clip-path: circle(50% at 50% 50%);
          clip-path: circle(50% at 50% 50%);
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .page-top {
    bottom: 60px;
  }
}
.page-top p {
  font-family: "REM", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  transform: translateY(35%);
}
.page-top::before {
  content: "";
  width: 0.6em;
  height: 0.6em;
  position: absolute;
  top: 25%;
  right: 50%;
  margin: auto;
  vertical-align: middle;
  line-height: 1;
  border: 2.5px solid var(--white);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(50%) rotate(-45deg);
}
.page-top:hover {
  background: var(--accent);
}
.page-top.js-position {
  position: absolute;
  top: -30px; /* 止まって欲しい場所を記入 */
}
@media (max-width: 767px) {
  .page-top {
    transform: scale(0.9);
  }
}

/* footer
---------------------------------------------------------------- */
.footer {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  background: #1f1506;
  color: #fff;
}
@media (max-width: 767px) {
  .footer {
    padding-bottom: 40px;
  }
}
@media (max-width: 599px) {
  .footer {
    font-size: 14px;
  }
}
.footer .inner {
  padding: 50px 3%;
}
.footer-company {
  text-align: center;
}
.footer-company p {
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 599px) {
  .footer-company p {
    font-size: 18px;
  }
}
.footer-company address {
  font-size: 18px;
  padding: 1em 0 30px;
}
@media (max-width: 599px) {
  .footer-company address {
    font-size: 14px;
    padding-bottom: 20px;
  }
}
.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 */