@charset "UTF-8";
/* mixin
================================================================== */
/* Design parts
---------------------------------------------------------------- */
/* base
================================================================== */
:root {
  --black: #40382d;
  --white: #fff;
  --main: #6db312;
  --l-main: #e1f2cb;
  --ll-main: #e7f5d3;
  --base: #f8f5ec;
  --header-h: 8rem;
  --br-max: 10rem;
  --br-l: 8rem;
  --br-m: 6rem;
  --br-s: 4rem;
  --mg-80: 8rem;
  --mg-60: 6rem;
  --mg-50: 5rem;
  --mg-40: 4rem;
  --mg-30: 3rem;
  --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 {
    --fs-36: 3.2rem;
    --fs-32: 2.8rem;
    --fs-28: 2.6rem;
    --fs-26: 2.4rem;
    --br-l: 6rem;
    --br-m: 4rem;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --header-h: 6rem;
    --br-l: 3rem;
    --br-m: 3rem;
    --br-s: 2rem;
    --mg-80: 6rem;
    --mg-60: 5rem;
    --mg-50: 4rem;
    --mg-40: 3rem;
    --mg-30: 2rem;
    --fs-36: 2.6rem;
    --fs-32: 2.6rem;
    --fs-28: 2.2rem;
    --fs-26: 2.4rem;
    --fs-24: 2.1rem;
    --fs-22: 1.8rem;
    --fs-20: 1.8rem;
    --fs-18: 1.5rem;
    --fs-16: 1.5rem;
    --fs-15: 1.4rem;
  }
}
/* common
---------------------------------------------------------------- */
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  font-size: var(--fs-16);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  word-wrap: break-word;
  color: var(--black);
  background: var(--base);
  width: 100%;
}

main {
  overflow: hidden;
}

a {
  transition: 0.3s ease;
}

a:hover {
  opacity: 0.5;
}

@media (max-width: 767px) {
  body {
    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: 429px) {
  .d-minsp {
    display: none !important;
  }
}
/* layout
--------------------------------------------------------------- */
.inner {
  margin-inline: auto;
  max-width: calc(1000px + 12%);
  padding: 12rem 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 {
    padding: 8rem 6%;
  }
}

/* flex utilities */
.flex {
  display: flex;
  align-items: flex-start;
}

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

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

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

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

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

.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
--------------------------------------------------------------- */
/* base end
================================================================== */
/* parts
================================================================== */
.sec-ttl {
  position: relative;
  margin-bottom: var(--mg-80);
  margin-top: 8rem;
}
@media (max-width: 1600px) {
  .sec-ttl {
    margin-left: 8rem;
  }
}
@media (max-width: 1024px) {
  .sec-ttl {
    margin-left: 11rem;
  }
}
@media (max-width: 767px) {
  .sec-ttl {
    margin-left: 0;
    padding-left: 2.5rem;
    margin-bottom: 4rem;
  }
}
.sec-ttl-en {
  display: block;
  position: absolute;
  bottom: -0.5em;
  left: -4.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2.4rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: var(--main);
  text-align: center;
  width: 16rem;
  aspect-ratio: 1;
  border: 2px solid currentColor;
  border-radius: var(--br-max);
}
@media (max-width: 767px) {
  .sec-ttl-en {
    width: 10rem;
    font-size: 1.6rem;
    left: -0.5em;
    bottom: unset;
    top: -180%;
  }
}
.sec-ttl-en span {
  display: block;
}
.sec-ttl-jp {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 4.2rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.06em;
  background: var(--white);
  padding-bottom: 0.2em;
}
@media (max-width: 767px) {
  .sec-ttl-jp {
    font-size: 3rem;
    padding-left: 0.1em;
  }
}

.btn {
  position: relative;
  z-index: 2;
  display: inline-block;
  text-align: center;
  font-size: var(--fs-18);
  line-height: 1.2;
  padding: 1em;
  width: min(24rem, 100%);
  border-radius: var(--br-max);
  background-color: #fff;
  border: 2px solid #6db312;
  transition: color 0.3s;
  overflow: hidden;
}
.btn::before {
  transition: 0.3s ease;
  content: "";
  display: block;
  position: absolute;
  width: 0.6em;
  height: 0.6em;
  top: 1px;
  bottom: 0;
  right: 1.5em;
  margin: auto;
  vertical-align: middle;
  line-height: 1;
  border: 2px solid var(--main);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}
.btn::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  padding-top: 100%;
  height: 0;
  background: var(--main);
  border-radius: var(--br-max);
  transform: translateY(-50%) scale(0.1);
  opacity: 0;
  pointer-events: none;
  display: block;
  transition: opacity 0.6s, transform 0.4s ease-in-out;
}
.btn:hover {
  opacity: 1;
  color: var(--white);
}
.btn:hover::before {
  border-color: var(--white);
}
.btn:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

/* header
================================================================== */
.header {
  transition: 0.3s ease;
  position: fixed;
  z-index: 99;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: var(--base);
  height: var(--header-h);
  padding: 2rem 3rem;
}
@media (max-width: 1600px) {
  .header {
    padding: 1rem 1.5rem;
  }
}
@media (max-width: 1280px) {
  .header {
    background: unset;
  }
}
@media (max-width: 1024px) {
  .header {
    position: absolute;
  }
}
.header-logo {
  display: inline-block;
  height: 3rem;
}
.header-logo img {
  width: auto;
  height: 100%;
}
@media (max-width: 767px) {
  .header-logo {
    height: auto;
    width: min(40rem, 80%);
  }
  .header-logo img {
    height: auto;
    width: 100%;
  }
}
.header-menu {
  flex-grow: 1;
  justify-content: flex-end;
  gap: 2rem;
}
@media (max-width: 1280px) {
  .header-menu {
    padding-right: calc(var(--header-h) * 0.9);
  }
}
.header-menu-list {
  justify-content: flex-end;
  gap: 0 1.5em;
  font-weight: 700;
}
@media (max-width: 1280px) {
  .header-menu-list {
    display: none;
  }
}
.header-menu-list a {
  position: relative;
  padding: 0.8em 0;
}
.header-menu-list a:hover {
  opacity: 1;
  color: var(--main);
}
.header-menu .btn {
  width: 18rem;
  padding: 0.8em 0;
  background: var(--main);
  color: var(--white);
}
@media (max-width: 767px) {
  .header-menu .btn {
    display: none;
  }
}
.header-menu .btn::before {
  display: none;
}
.header-menu .btn::after {
  background: var(--white);
}
.header-menu .btn:hover {
  color: var(--main);
}

/* hamburger
---------------------------------------------------------------- */
.hamburger-menu {
  display: none;
  position: fixed;
  top: 1.2rem;
  right: 1.5rem;
  width: calc(var(--header-h) * 0.7);
  height: calc(var(--header-h) * 0.7);
  cursor: pointer;
  z-index: 9999;
  background-color: #6db312;
  border-radius: 100px;
}
@media (max-width: 1280px) {
  .hamburger-menu {
    display: block;
  }
}
@media (max-width: 767px) {
  .hamburger-menu {
    right: 3%;
  }
}

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

.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: -40rem;
  width: 38rem;
  height: 100%;
  background-color: var(--base);
  padding: 6rem 2rem;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: 0.5s;
}
@media (max-width: 428px) {
  .burger-nav {
    width: 100vw;
    right: -100vw;
    padding: 5.5rem 2rem;
  }
}
.burger-nav .header-menu-list {
  margin-bottom: 3rem;
  display: block;
}
.burger-nav .header-menu-list li a {
  background-image: linear-gradient(to right, #6db312, #6db312 1rem, transparent 0rem);
  background-size: 1.5rem 0.2rem;
  background-position: left bottom;
  background-repeat: repeat-x;
  position: relative;
  display: block;
  line-height: 1;
  padding: 1.5em 1em;
  font-size: 1.6rem;
  font-weight: 600;
}
.burger-nav .header-menu-list li a::before {
  transition: 0.3s ease;
  content: "";
  display: block;
  position: absolute;
  width: 0.6em;
  height: 0.6em;
  top: 1px;
  bottom: 0;
  right: 1.5em;
  margin: auto;
  vertical-align: middle;
  line-height: 1;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}
.burger-nav .header-menu-list li a:hover {
  opacity: 1;
  color: var(--main);
}
.burger-nav .header-menu-list li a:hover::before {
  right: 1em;
}
.burger-nav .btn {
  margin-top: 1.5rem;
  display: block;
  width: 100%;
  height: auto;
  padding: 1.2em;
  font-size: 1.6rem;
}
.burger-nav.js-active {
  right: 0;
}

.burger-mask {
  transition: 0.3s ease;
  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;
}

/* main
================================================================== */
/* mv
---------------------------------------------------------------- */
.mv {
  position: relative;
  margin-top: calc(var(--header-h) + 1rem);
}
@media (max-width: 767px) {
  .mv {
    margin-top: calc(var(--header-h) + 8%);
  }
}
.mv-inn {
  max-width: 100%;
  margin-inline: auto;
  position: relative;
  width: 160rem;
  aspect-ratio: 1600/720;
  padding: 0 6%;
}
@media (max-width: 767px) {
  .mv-inn {
    aspect-ratio: unset;
  }
}
.mv-img {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 62.5%;
  border-radius: 10rem 0 0 10rem;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .mv-img {
    border-radius: 5rem 0 0 5rem;
  }
}
@media (max-width: 767px) {
  .mv-img {
    position: static;
    width: 107%;
    right: -6%;
  }
}
.mv-content {
  display: block;
  position: absolute;
  top: 11.1111111111%;
  left: 7.5%;
  width: 25.625%;
}
@media (max-width: 1024px) {
  .mv-content {
    top: 8%;
    left: 4%;
    width: 30%;
  }
}
@media (max-width: 767px) {
  .mv-content {
    position: static;
    width: 100%;
  }
}
.mv-text {
  margin-top: 2em;
  font-size: min(1.8rem, 1.2vw);
  line-height: 2;
}
@media (max-width: 1024px) {
  .mv-text {
    margin-top: 1.5em;
    font-size: 1.4vw;
  }
}
@media (max-width: 767px) {
  .mv-text {
    font-size: min(3.4vw, 2rem);
    margin-bottom: 2.5em;
    line-height: 1.7;
  }
}
.mv-sub {
  display: block;
  position: absolute;
  z-index: 10;
  width: 26.25%;
  bottom: 9.7222222222%;
  right: 6.25%;
  display: flex;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .mv-sub {
    gap: 1.5rem;
    transform: scale(1.2);
  }
}
@media (max-width: 767px) {
  .mv-sub {
    right: 3%;
    bottom: -4%;
    width: min(60%, 40rem);
    gap: 1rem;
    transform: scale(1);
  }
}
.mv-sub-inn {
  transform: translateY(-3%) translateX(1%);
}
@media (max-width: 767px) {
  .mv-sub-inn {
    transform: translateY(-4%) translateX(1%);
  }
}
.mv-sub-item {
  width: calc(50% - 1rem);
  background: var(--white);
  aspect-ratio: 1;
  -webkit-clip-path: circle(50% at 50% 50%);
          clip-path: circle(50% at 50% 50%);
}
.mv-sub-deco {
  width: 36%;
  margin-inline: auto;
  aspect-ratio: 24/10;
  overflow: hidden;
}
.mv-sub-ttl {
  font-size: min(2.2rem, 1.4vw);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: var(--main);
  margin-top: 0.4em;
}
@media (max-width: 767px) {
  .mv-sub-ttl {
    font-size: 3vw;
  }
}
.mv-sub-text {
  font-size: min(1.6rem, 1vw);
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-top: 0.5em;
}
@media (max-width: 767px) {
  .mv-sub-text {
    font-size: 2.4vw;
  }
}
.mv .slider-infinite {
  display: block;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 76%;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: var(--main);
  opacity: 0.15;
  font-size: min(14rem, 10vw);
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .mv .slider-infinite {
    bottom: -2em;
    font-size: 18vw;
  }
}
.mv .slider-infinite li {
  margin-right: 0.3em;
}

.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);
  }
}
/* message
---------------------------------------------------------------- */
.mes {
  position: relative;
}
.mes .inner {
  padding-bottom: 18rem;
}
@media (max-width: 767px) {
  .mes .inner {
    padding-top: 20rem;
    padding-bottom: 6rem;
  }
}
.mes-deco {
  display: block;
  position: absolute;
  z-index: 1;
  bottom: 2rem;
  left: calc(50% + 29rem);
  width: min(31rem, 30%);
}
@media (max-width: 1280px) {
  .mes-deco {
    left: unset;
    right: 3%;
  }
}
@media (max-width: 1024px) {
  .mes-deco {
    right: 6%;
    bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .mes-deco {
    width: max(30%, 15rem);
    bottom: 0;
  }
}
.mes-bg {
  display: block;
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: -4rem;
  width: 100%;
}
@media (max-width: 1280px) {
  .mes-bg {
    right: 0%;
    width: 150%;
    bottom: 0;
  }
}
.mes-wrap {
  gap: 8rem;
  justify-content: flex-end;
  align-items: flex-end;
}
@media (max-width: 1280px) {
  .mes-wrap {
    gap: 4rem 6rem;
    align-items: flex-start;
  }
}
@media (max-width: 1024px) {
  .mes-wrap {
    flex-direction: column;
    max-width: 100%;
    margin-inline: auto;
    width: 70rem;
  }
}
@media (max-width: 767px) {
  .mes-wrap {
    width: 50rem;
  }
}
.mes-ttl {
  display: block;
  position: absolute;
  z-index: -1;
  top: -10rem;
  right: -10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2.4rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: var(--main);
  text-align: center;
  width: 16rem;
  aspect-ratio: 1;
  border: 2px solid currentColor;
  border-radius: var(--br-max);
}
@media (max-width: 767px) {
  .mes-ttl {
    width: 10rem;
    font-size: 1.6rem;
    top: -8rem;
    right: -3rem;
  }
}
.mes-right {
  position: relative;
}
@media (max-width: 1024px) {
  .mes-right {
    margin-right: auto;
  }
}
.mes-text {
  font-size: var(--fs-18);
  line-height: 2;
}
.mes-text p + p {
  margin-top: 1.5em;
}
.mes-text p:first-of-type {
  background: var(--base);
}
.mes-left {
  position: relative;
  aspect-ratio: 550/610;
  width: min(55rem, 45%);
}
@media (max-width: 1024px) {
  .mes-left {
    margin-left: auto;
    width: min(46rem, 100%);
  }
}
.mes-img {
  display: block;
  position: absolute;
}
.mes-img:first-of-type {
  top: 0;
  right: 0;
  width: 81.8181818182%;
}
.mes-img:last-of-type {
  bottom: 0;
  left: 0;
  width: 59.0909090909%;
}
.mes-img img {
  border-radius: var(--br-l);
  overflow: hidden;
}
@media (max-width: 1280px) {
  .mes-img img {
    border-radius: var(--br-m);
  }
}

/* about
---------------------------------------------------------------- */
.about {
  position: relative;
  background: var(--white);
}
.about .inner {
  padding-top: 2rem;
}
.about-item {
  gap: 5rem;
}
@media (max-width: 1280px) {
  .about-item {
    align-items: flex-start;
  }
}
@media (max-width: 1024px) {
  .about-item {
    flex-direction: column;
    gap: 4rem;
  }
}
@media (max-width: 767px) {
  .about-item {
    gap: 3rem;
  }
}
.about-item:not(:first-of-type) {
  margin-top: 8rem;
}
@media (max-width: 1024px) {
  .about-item:not(:first-of-type) {
    margin-top: 6rem;
  }
}
.about-item:nth-of-type(2) .about-img {
  flex: 1;
  background: var(--base);
  border-radius: var(--br-m);
  width: 100%;
  aspect-ratio: 3/2;
  text-align: center;
}
.about-item:nth-of-type(2) .about-img-inn {
  width: min(46rem, 85%);
}
@media (max-width: 1024px) {
  .about-item:nth-of-type(2) .about-img-inn {
    width: 80%;
  }
}
.about-item:nth-of-type(2) .about-img p {
  font-size: var(--fs-24);
  margin-bottom: 0.8em;
}
@media (max-width: 767px) {
  .about-item:nth-of-type(2) .about-img p {
    font-size: 1.6rem;
  }
}
.about-item:nth-of-type(2) .about-img img {
  border-radius: 0;
}
.about-img {
  flex: 1;
}
.about-img img {
  border-radius: var(--br-m);
}
.about-con {
  flex: 1;
  gap: 3rem;
}
@media (max-width: 767px) {
  .about-con {
    gap: 2rem;
  }
}
.about-ttl {
  font-size: var(--fs-36);
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: var(--main);
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .about-ttl {
    margin-bottom: 1.5rem;
  }
}
.about-num {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 5.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--l-main);
  padding-top: 0.9em;
  position: relative;
}
@media (max-width: 1280px) {
  .about-num {
    font-size: 4.2rem;
  }
}
@media (max-width: 767px) {
  .about-num {
    font-size: 3rem;
  }
}
.about-num::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 0.7em;
  background: currentColor;
}
.about-text {
  font-size: var(--fs-18);
}
@media (max-width: 767px) {
  .about-text {
    text-align: justify;
  }
}
.about-add {
  display: block;
  margin-top: 1em;
}
.about-add i {
  font-size: 1.2em;
  color: var(--main);
  padding-right: 0.5em;
}

/* works
---------------------------------------------------------------- */
.works {
  position: relative;
}
.works .inner {
  padding-top: 8rem;
}
@media (max-width: 767px) {
  .works .inner {
    padding-top: 4rem;
  }
}
.works-deco {
  display: block;
  position: absolute;
  top: 0;
  left: calc(50% + 39rem);
  width: min(26rem, 30%);
}
@media (max-width: 1280px) {
  .works-deco {
    top: 2%;
    left: unset;
    right: 6%;
  }
}
@media (max-width: 767px) {
  .works-deco {
    width: 15rem;
    top: 0;
  }
}
.works-top-ttl {
  align-items: flex-end;
  gap: 3rem;
  margin-bottom: var(--mg-80);
}
@media (max-width: 1280px) {
  .works-top-ttl {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .works-top-ttl {
    margin-bottom: 4rem;
    gap: 1rem;
  }
}
.works-top-ttl .sec-ttl {
  margin-bottom: 0;
}
.works-top-ttl .sec-ttl-jp {
  background: var(--base);
}
.works-wrap {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 4rem 5rem;
}
@media (max-width: 1280px) {
  .works-wrap {
    gap: 4rem 4rem;
  }
}
@media (max-width: 1024px) {
  .works-wrap {
    display: block;
  }
}
.works-item {
  position: relative;
  z-index: 0;
  background: var(--white);
  border-radius: 14rem;
  padding: 7rem 7rem 4rem;
  margin-top: 1em;
}
@media (max-width: 1280px) {
  .works-item {
    border-radius: 12rem;
    padding: 7rem 5rem 5rem;
  }
}
@media (max-width: 1024px) {
  .works-item {
    padding: 6rem 7rem 5rem;
    margin-top: 5rem;
  }
}
@media (max-width: 767px) {
  .works-item {
    padding: 5rem 3rem 3rem;
    border-radius: 6rem;
  }
}
.works-item-bg {
  display: block;
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 18%;
  width: min(25rem, 50%);
}
@media (max-width: 1024px) {
  .works-item-bg {
    width: 20rem;
  }
}
.works-item:last-of-type {
  grid-area: 2/1/3/3;
  width: min(74rem, 80%);
  margin-inline: auto;
}
@media (max-width: 1024px) {
  .works-item:last-of-type {
    width: 100%;
  }
}
.works-item:last-of-type .works-item-bg {
  bottom: 15%;
  right: 8%;
}
@media (max-width: 767px) {
  .works-item:last-of-type .works-item-bg {
    right: 2rem;
    bottom: 1.5rem;
  }
}
.works-item:last-of-type .works-sub-ttl {
  margin-top: -1.5rem;
}
.works-ttl {
  display: block;
  position: absolute;
  top: -0.8em;
  left: 1em;
  font-size: var(--fs-24);
  font-weight: bold;
  line-height: 1;
  text-align: center;
  color: var(--white);
  background: var(--main);
  border-radius: var(--br-max);
  padding: 0.8em 0;
  width: 13.5rem;
}
@media (max-width: 767px) {
  .works-ttl {
    padding: 0.6em 0;
    width: 11rem;
    left: 0.5em;
  }
}
.works-sub-ttl {
  font-size: var(--fs-24);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 0.8em;
}
@media (max-width: 1280px) {
  .works-sub-ttl {
    margin-bottom: 0.5em;
  }
}
@media (max-width: 767px) {
  .works-sub-ttl {
    font-size: 1.8rem;
  }
}
.works-sub-ttl span {
  display: inline-block;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.8em;
  font-weight: bold;
  color: var(--main);
  padding: 0 0.15em;
  transform: translateY(0.05em);
}
.works-text {
  text-align: justify;
}

/* slider
---------------------------------------------------------------- */
.photo-slider-wrap {
  background: linear-gradient(-180deg, transparent 0%, transparent 50%, var(--ll-main) 50%, var(--ll-main) 100%);
}
.photo-slider li {
  margin-right: 3rem;
  width: 38rem;
}
@media (max-width: 767px) {
  .photo-slider li {
    margin-right: 2rem;
    width: 50%;
    max-width: 30rem;
  }
}
.photo-slider li:nth-child(even) {
  margin-top: 7rem;
}
.photo-slider img {
  border-radius: var(--br-s);
}

/* welfear
---------------------------------------------------------------- */
.wel {
  position: relative;
  background: var(--ll-main);
}
@media (max-width: 767px) {
  .wel .inner {
    padding-bottom: 10rem;
  }
}
.wel .sec-ttl {
  margin: 0;
  text-align: center;
  padding: 0;
}
.wel .sec-ttl-en {
  position: static;
  border: unset;
  background: var(--white);
}
.wel .sec-ttl-jp {
  display: block;
  background: unset;
  margin-top: 3rem;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0.1em;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .wel .sec-ttl-jp {
    margin-top: 2rem;
    line-height: 1.3;
  }
}
.wel-inn {
  gap: 6rem;
}
@media (max-width: 1024px) {
  .wel-inn {
    gap: 4rem;
  }
}
@media (max-width: 767px) {
  .wel-inn {
    gap: 2rem;
  }
}
.wel-wrap {
  width: 100%;
}
.wel-ttl {
  background-image: linear-gradient(to right, #6db312, #6db312 1rem, transparent 0rem);
  background-size: 1.5rem 0.2rem;
  background-position: left bottom;
  background-repeat: repeat-x;
  background-position: top left;
  font-size: var(--fs-24);
  font-weight: bold;
  color: var(--main);
  padding-top: 0.4em;
  margin-top: 4rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .wel-ttl {
    margin-top: 3rem;
  }
}
.wel-deco {
  display: block;
  position: absolute;
  z-index: 1;
  bottom: -9rem;
  left: calc(50% + 41rem);
  width: min(24rem, 25%);
}
@media (max-width: 1280px) {
  .wel-deco {
    left: unset;
    right: 4%;
  }
}
@media (max-width: 1024px) {
  .wel-deco {
    bottom: -12rem;
  }
}
@media (max-width: 767px) {
  .wel-deco {
    bottom: -10rem;
    width: 14rem;
  }
}
.wel-bg {
  transform: scale(-1, -1) translateY(-0.5rem);
}

/* interview
---------------------------------------------------------------- */
.int {
  background: var(--white);
}
.int .inner {
  padding-top: 2rem;
}
@media (max-width: 1024px) {
  .int .inner {
    padding-top: 8rem;
  }
}
@media (max-width: 767px) {
  .int .inner {
    padding-top: 3rem;
  }
}
.int .sec-ttl {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 428px) {
  .int .sec-ttl {
    margin-inline: unset;
  }
  .int .sec-ttl .sec-ttl-en {
    top: -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(--base);
  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:hover {
  opacity: 1;
  background: var(--main);
}
.int-item:hover .int-copy,
.int-item:hover .int-label {
  color: var(--white);
}
.int-item-inn {
  padding: 3rem;
  padding-top: 2.5rem;
}
@media (max-width: 767px) {
  .int-item-inn {
    padding: 2rem;
  }
}
.int-item-btm {
  align-items: end;
  padding-top: 1rem;
}
.int-img {
  overflow: hidden;
}
.int-copy {
  font-size: var(--fs-22);
  font-weight: bold;
  line-height: 1.5;
}
.int-label {
  font-size: var(--fs-18);
  font-weight: bold;
  line-height: 1.5;
  color: var(--main);
}
.int-arrow {
  transition: 0.3s ease;
  position: relative;
  width: 60px;
  aspect-ratio: 1;
  border-radius: var(--br-max);
  background: var(--white);
}
.int-arrow::before {
  transition: 0.3s ease;
  content: "";
  display: block;
  position: absolute;
  width: 0.6em;
  height: 0.6em;
  inset: 0;
  margin: auto;
  vertical-align: middle;
  line-height: 1;
  border: 2px solid var(--main);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}
@media (max-width: 767px) {
  .int-arrow {
    width: 50px;
  }
}

/* modal
---------------------------------------------------------------- */
.remodal-close-top {
  position: absolute;
  z-index: 1;
  top: 15px;
  right: 15px;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .remodal-close-top {
    top: 2px;
    right: 2px;
    transform: scale(0.8);
  }
}
.remodal-close-top:hover {
  opacity: 0.6;
}
.remodal-close-btm {
  width: 100%;
  padding-bottom: var(--mg-50);
}
.remodal-close-btm .btn {
  width: 280px;
  margin-top: var(--mg-40);
}

.modal-content {
  position: relative;
}
.modal-top {
  position: relative;
  z-index: 0;
  background: var(--ll-main);
  padding: var(--mg-50) max(4%, 2rem) var(--mg-60);
  gap: 4rem;
}
@media (max-width: 1024px) {
  .modal-top {
    gap: 0 3rem;
  }
}
@media (max-width: 767px) {
  .modal-top {
    flex-direction: column;
  }
}
.modal-top .int-copy {
  font-size: var(--fs-28);
}
@media (max-width: 1024px) {
  .modal-top .int-copy {
    font-size: var(--fs-24);
  }
}
@media (max-width: 767px) {
  .modal-top .int-copy {
    margin-top: 2rem;
  }
}
.modal-top .int-label {
  background-image: linear-gradient(to right, #6db312, #6db312 1rem, transparent 0rem);
  background-size: 1.5rem 0.2rem;
  background-position: left bottom;
  background-repeat: repeat-x;
  background-position: top left;
  padding-top: 1em;
  margin-top: 3rem;
}
@media (max-width: 1024px) {
  .modal-top .int-label {
    margin-top: 2rem;
  }
}
.modal-deco {
  display: block;
  position: absolute;
  bottom: 3rem;
  right: 6%;
  width: min(20rem, 22%);
}
@media (max-width: 767px) {
  .modal-deco {
    position: static;
    margin-left: auto;
    width: 13rem;
    margin-bottom: -1rem;
  }
}
.modal-bg {
  display: block;
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .modal-bg {
    width: 160%;
  }
}
.modal-img {
  width: 50rem;
}
@media (max-width: 1024px) {
  .modal-img {
    width: 100%;
    flex-basis: 50%;
  }
}
.modal-img img {
  border-radius: var(--br-s);
}
.modal-text {
  flex: 1;
  text-align: left;
  padding-top: 3rem;
}
@media (max-width: 1024px) {
  .modal-text {
    padding-top: 0;
  }
}

.qa-list {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  padding: 0 max(4%, 2rem);
  width: 100%;
}
.qa-list dt {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  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:not(:first-of-type) {
    margin-top: 2.5rem;
  }
}
@media (max-width: 767px) {
  .qa-list dt {
    font-size: 1.7rem;
  }
}
.qa-list dt::before {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-style: normal;
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 7px;
  content: "Q";
  font-size: 2rem;
  line-height: 1;
  color: #fff;
}
.qa-list dt::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--main);
  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(--base);
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .qa-list dd {
    padding: 1.5em;
    margin-top: 1.5rem;
  }
}
.qa-list dd span {
  color: var(--main);
  font-weight: bold;
}

/* entry
---------------------------------------------------------------- */
.entry {
  position: relative;
  background-image: url("../img/entry/bg_pc.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 50rem;
}
@media (max-width: 767px) {
  .entry {
    min-height: 0;
    background-image: url("../img/entry/bg_sp.jpg");
  }
}
.entry-deco {
  display: block;
  position: absolute;
  top: -0.5rem;
  left: 0;
  width: 100%;
}
.entry-ttl {
  font-size: 4.2rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.8em;
  padding-top: 7rem;
}
@media (max-width: 767px) {
  .entry-ttl {
    font-size: 2.8rem;
    padding-top: 4rem;
  }
}
.entry .btn {
  font-size: var(--fs-20);
  border: unset;
  width: min(40rem, 100%);
  padding: 1.5em 0;
}
@media (max-width: 767px) {
  .entry .btn {
    padding: 1.2em 0;
  }
}

/* slide btn
---------------------------------------------------------------- */
.slidebtn-wrap {
  display: none;
}
@media (max-width: 767px) {
  .slidebtn-wrap {
    transition: 0.3s ease;
    display: block;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 50;
    transform: translate(0%, 120%);
    width: 100%;
    padding: 0 2%;
  }
}
.slidebtn-wrap.is-show {
  transform: translate(0%, 0%);
}

.slide-btn {
  display: block;
  background: var(--main);
  color: var(--white);
  border: 2px solid var(--white);
  border-bottom: unset;
  font-size: 1.6rem;
  font-weight: bold;
  list-style: 1;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0.6em 0 0.5em;
  border-radius: 2rem 2rem 0 0;
}

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

/* footer
---------------------------------------------------------------- */
.footer {
  position: relative;
  font-size: var(--fs-16);
  font-weight: 400;
  line-height: 1;
  background: var(--main);
  color: var(--white);
}
@media (max-width: 767px) {
  .footer {
    padding-bottom: 5rem;
  }
}
@media (max-width: 428px) {
  .footer {
    font-size: 1.4rem;
  }
}
.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: var(--white);
  width: 1px;
  height: 1em;
}
@media screen and (max-width: 550px) {
  .footer-nav span:last-of-type {
    display: none;
  }
}
.footer .copyright {
  text-align: center;
  line-height: 1.5;
  padding: 0.5em 1em 0;
}
.footer .copyright span {
  display: inline-block;
}
/*# sourceMappingURL=style.css.map */