@charset "UTF-8";
/* mixin テスト
================================================================== */
/* Design parts
---------------------------------------------------------------- */
/* base
================================================================== */
:root {
  --black: #333333;
  --white: #fff;
  --main: #038df2;
  --l-main: #52c4ff;
  --base-01: #d4eefc;
  --base-02: #f5f5f5;
  --gray: #cdcdcd;
  --header-h: 10rem;
  --br-max: 10rem;
  --br-sec: 10rem;
  --br-l: 3rem;
  --br-m: 2rem;
  --br-s: 1.2rem;
  --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;
  --fs-14: 1.4rem;
  --b-shadow: 0 3px 6px rgb(0 0 0 / 0.1);
}

@media only screen and (max-width: 1024px) {
  :root {
    --header-h: 8rem;
    --fs-36: 3.2rem;
    --fs-32: 2.8rem;
    --fs-28: 2.6rem;
    --fs-26: 2.4rem;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --header-h: 6rem;
    --br-sec: 3rem;
    --br-l: 2rem;
    --br-m: 1.6rem;
    --br-s: 0.8rem;
    --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.7;
  letter-spacing: 0.04em;
  word-wrap: break-word;
  color: var(--black);
  width: 100%;
}

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-14 {
  max-width: calc(1400px + 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;
}

/* animation
--------------------------------------------------------------- */
/* base end
================================================================== */
/* parts
================================================================== */
.sec-ttl {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: var(--mg-40);
  text-align: center;
}
.sec-ttl-en {
  display: block;
}
@media (max-width: 1024px) {
  .sec-ttl-en {
    transform: scale(0.9);
  }
}
@media (max-width: 767px) {
  .sec-ttl-en {
    transform: unset;
  }
}
.sec-ttl-jp {
  display: block;
  position: absolute;
  bottom: 0.8em;
  display: block;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media (max-width: 1024px) {
  .sec-ttl-jp {
    font-size: var(--fs-36);
  }
}

.btn {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: var(--fs-18);
  font-weight: bold;
  line-height: 1.2;
  padding: 1.2em 1em;
  width: 100%;
  border-radius: var(--br-max);
  border: 2px solid var(--main);
  background-color: var(--main);
  color: var(--white);
}
.btn::before {
  content: "";
  display: block;
  position: absolute;
  width: 0.6em;
  height: 0.6em;
  top: 1px;
  bottom: 0;
  right: 1.2em;
  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(-25%) rotate(45deg);
  transition: 0.3s ease;
}
.btn:hover {
  opacity: 1;
  color: var(--main);
  background-color: var(--white);
}
.btn:hover::before {
  right: 1em;
  border-color: var(--main);
}
.btn-wrap {
  display: flex;
  justify-content: center;
}
.btn-wrap .btn {
  width: min(36rem, 100%);
}

.dot-bg {
  background-image: radial-gradient(circle, var(--base-01) 3px, transparent 3px), radial-gradient(circle, var(--base-01) 3px, transparent 3px);
  background-position: 0 0, 10px 20px;
  background-size: 20px 40px;
}
@media (max-width: 1024px) {
  .dot-bg {
    background-image: radial-gradient(circle, var(--base-01) 3px, transparent 3px), radial-gradient(circle, var(--base-01) 3px, transparent 3px);
    background-position: 0 0, 9px 18px;
    background-size: 18px 36px;
  }
}
@media (max-width: 767px) {
  .dot-bg {
    background-image: radial-gradient(circle, var(--base-01) 2px, transparent 2px), radial-gradient(circle, var(--base-01) 2px, transparent 2px);
    background-position: 0 0, 6px 12px;
    background-size: 12px 24px;
  }
}

/* header
================================================================== */
.header {
  transition: 0.3s ease;
  position: fixed;
  z-index: 99;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: var(--header-h);
  background: var(--base);
  padding: 0 3rem;
}
@media (max-width: 1280px) {
  .header {
    background: unset;
  }
}
@media (max-width: 1024px) {
  .header {
    padding: 0 2rem;
  }
}
@media (max-width: 767px) {
  .header {
    align-items: flex-end;
    padding: 0 1.5rem 0.5rem;
  }
}
.header-logo {
  display: inline-block;
  height: 4.5rem;
}
.header-logo img {
  width: auto;
  height: 100%;
}
@media (max-width: 767px) {
  .header-logo {
    height: 3.5rem;
  }
}
.header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3rem;
}
@media only screen and (max-width: 1399px) {
  .header-nav {
    font-size: 1.5rem;
    gap: 2rem;
  }
}
.header-nav-list {
  display: flex;
  justify-content: flex-end;
  gap: 0 1.5em;
  font-weight: bold;
}
@media (max-width: 1280px) {
  .header-nav-list {
    display: none;
  }
}
.header-nav-list a {
  position: relative;
  padding: 0.8em 0;
}
.header-nav-list a:hover {
  opacity: 1;
  color: var(--main);
}
.header-nav-btn {
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .header-nav-btn {
    display: none;
  }
}
.header-nav-btn .btn {
  width: 15rem;
  height: calc(var(--header-h) * 0.54);
  display: grid;
  align-items: center;
  padding: 0;
  background: var(--white);
  border: 2px solid var(--main);
  color: var(--main);
}
.header-nav-btn .btn::before {
  display: none;
}
.header-nav-btn .btn:hover {
  background: var(--main);
  color: var(--white);
}
@media (max-width: 767px) {
  .header-nav-btn .btn {
    width: 13rem;
  }
}
.header.change-color {
  background: var(--white);
  transition: 0.3s ease-in;
}
@media (max-width: 1280px) {
  .header.change-color {
    background: unset;
  }
}

/* hamburger
---------------------------------------------------------------- */
.hamburger-btn {
  display: none;
  position: relative;
  z-index: 999;
  width: calc(var(--header-h) * 0.54);
  height: calc(var(--header-h) * 0.54);
  cursor: pointer;
  background-color: var(--l-main);
  border-radius: var(--br-max);
}
@media (max-width: 1280px) {
  .hamburger-btn {
    display: block;
  }
}
@media (max-width: 767px) {
  .hamburger-btn {
    width: calc(var(--header-h) * 0.7);
    height: calc(var(--header-h) * 0.7);
  }
}

.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 {
  position: fixed;
  z-index: 99;
  top: 0;
  right: -40rem;
  width: 38rem;
  height: 100%;
  background-color: var(--base-01);
  padding: 10rem 2rem 2rem;
  overflow-x: hidden;
  overflow-y: auto;
  transition: 0.5s;
}
@media (max-width: 428px) {
  .burger-nav {
    width: 100vw;
    right: -100vw;
    padding: 6rem 2rem;
  }
}
.burger-nav .header-nav-btn {
  display: block !important;
}
.burger-nav-list {
  margin-bottom: 3rem;
  display: block;
}
.burger-nav-list li a {
  position: relative;
  display: block;
  line-height: 1;
  padding: 1.5em 1em;
  border-bottom: 1.5px solid var(--main);
  font-size: var(--fs-16);
  font-weight: 600;
  color: var(--black);
}
.burger-nav-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: 2.5px solid var(--main);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}
.burger-nav-list li a:hover {
  opacity: 1;
  color: var(--l-green);
}
.burger-nav-list li a:hover::before {
  right: 1em;
}
.burger-nav .btn {
  width: 100%;
  height: auto;
  padding: 1em;
}
.burger-nav .btn span {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.7rem;
  letter-spacing: 0.1em;
}
.burger-nav .btn + .btn {
  margin-top: 1.5rem;
}
.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(51, 51, 51, 0.7);
  display: none;
}
.burger-mask.js-active {
  display: block;
}

/* main
================================================================== */
/* mv
---------------------------------------------------------------- */
.top {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.mv {
  position: relative;
  z-index: -1;
  padding-top: var(--header-h);
}
.mv-main {
  max-width: 100%;
  margin-inline: auto;
  padding: 1rem 3rem 7rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.875%;
}
@media (max-width: 1024px) {
  .mv-main {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 767px) {
  .mv-main {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .mv-main {
    align-items: flex-end;
    padding: 1rem 6% 7rem;
    gap: 5%;
  }
}
.mv-main-img:nth-child(even) {
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .mv-main-img:nth-child(even) {
    margin-top: 0;
    margin-bottom: 3rem;
  }
}
.mv-text {
  display: block;
  position: absolute;
  bottom: 6rem;
  left: 5rem;
  width: 43.75%;
}
@media (max-width: 1024px) {
  .mv-text {
    width: 50%;
    left: 2rem;
  }
}
@media (max-width: 767px) {
  .mv-text {
    width: 86%;
    top: 40%;
    left: 0;
    right: 0;
    margin-inline: auto;
  }
}
.mv-circle-01 {
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 37.5%;
}
@media (max-width: 767px) {
  .mv-circle-01 {
    width: 45%;
  }
}
.mv-square-01 {
  display: block;
  position: absolute;
  bottom: 18rem;
  right: 25.5%;
  width: 3.75%;
}
@media (max-width: 767px) {
  .mv-square-01 {
    right: unset;
    top: 30%;
    left: 3%;
    width: 6%;
  }
}
.mv-square-02 {
  display: block;
  position: absolute;
  bottom: 5rem;
  right: 2rem;
  width: 8.75%;
}
@media (max-width: 767px) {
  .mv-square-02 {
    bottom: 6rem;
    right: 3%;
    width: 15%;
  }
}

/* aboutus
---------------------------------------------------------------- */
.aboutus {
  position: relative;
  z-index: -10;
  color: var(--white);
  background: var(--white);
}
.aboutus::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -2;
  inset: 0;
  height: 70%;
  background-image: url("../img/about/bg_pc.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media (max-width: 767px) {
  .aboutus::before {
    background-image: url("../img/about/bg_sp.jpg");
    height: 50%;
  }
}
.aboutus::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  opacity: 0.8;
  inset: 0;
  height: 70%;
  background: #015b9d;
  background: linear-gradient(180deg, rgb(1, 91, 157) 50%, rgb(167, 217, 255) 100%);
}
@media (max-width: 767px) {
  .aboutus::after {
    height: 50%;
  }
}
.aboutus-circle {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  top: -32%;
  right: 60%;
  width: 100rem;
  aspect-ratio: 1;
  -webkit-clip-path: circle(50% at 50% 50%);
          clip-path: circle(50% at 50% 50%);
  background: var(--main);
}
@media (max-width: 1280px) {
  .aboutus-circle {
    top: -20%;
    right: 62%;
    width: 80rem;
  }
}
@media (max-width: 1024px) {
  .aboutus-circle {
    top: -10%;
    width: 60rem;
  }
}
@media (max-width: 767px) {
  .aboutus-circle {
    width: 80%;
    top: -5%;
    right: 55%;
  }
}
.aboutus-square {
  display: block;
  position: absolute;
  top: 27%;
  right: calc(50% + 43rem);
  width: min(16.5rem, 12%);
}
@media (max-width: 1280px) {
  .aboutus-square {
    right: unset;
    left: 10%;
    top: 22%;
  }
}
@media (max-width: 1024px) {
  .aboutus-square {
    top: 15%;
  }
}
@media (max-width: 767px) {
  .aboutus-square {
    top: 3rem;
    left: unset;
    right: 6%;
    width: 15%;
  }
}
.aboutus .sec-ttl {
  display: block;
  position: absolute;
  top: 7rem;
  left: 6%;
  z-index: 10;
}
@media (max-width: 1600px) {
  .aboutus .sec-ttl {
    left: 3%;
  }
}
@media (max-width: 767px) {
  .aboutus .sec-ttl {
    position: relative;
    padding-left: 3%;
    margin-bottom: 2rem;
  }
}
.aboutus .sec-ttl-en {
  width: min(45rem, 30vw);
  opacity: 0.3;
}
@media (max-width: 1024px) {
  .aboutus .sec-ttl-en {
    transform: unset;
  }
}
@media (max-width: 767px) {
  .aboutus .sec-ttl-en {
    width: 28rem;
  }
}
.aboutus .sec-ttl-jp {
  bottom: 1em;
  left: 0;
  right: 0;
  margin-inline: auto;
}
@media (max-width: 1280px) {
  .aboutus .sec-ttl-jp {
    bottom: 0;
  }
}
@media (max-width: 1024px) {
  .aboutus .sec-ttl-jp {
    font-size: var(--fs-32);
  }
}
@media (max-width: 767px) {
  .aboutus .sec-ttl-jp {
    right: unset;
    left: 0.5em;
    bottom: 0.8em;
  }
}
.aboutus .inner-14 {
  padding-bottom: 0;
}
.aboutus-wrap {
  justify-content: flex-end;
  align-items: flex-end;
  max-width: 60%;
  margin-left: auto;
}
@media (max-width: 1280px) {
  .aboutus-wrap {
    display: block;
  }
}
@media (max-width: 767px) {
  .aboutus-wrap {
    max-width: unset;
  }
}
.aboutus-text {
  position: relative;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 18rem;
}
@media (max-width: 1280px) {
  .aboutus-text {
    padding-bottom: 2rem;
  }
}
.aboutus-text p {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 2;
}
@media (max-width: 767px) {
  .aboutus-text p {
    line-height: 1.8;
  }
}
.aboutus-text p + p {
  margin-top: 1em;
}
@media (max-width: 767px) {
  .aboutus-text p br {
    display: none;
  }
}
.aboutus-deco {
  width: max(30%, 25rem);
}
@media (max-width: 1280px) {
  .aboutus-deco {
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .aboutus-deco {
    width: 20rem;
  }
}

/* feature
---------------------------------------------------------------- */
.feature {
  position: relative;
  z-index: 1;
  color: var(--black);
  text-align: center;
  padding: 0 4%;
  margin-top: -3rem;
}
@media (max-width: 767px) {
  .feature {
    padding: 0;
  }
}
.feature-deco {
  width: 30rem;
  margin-left: auto;
}
.feature .inner {
  background: var(--white);
  border-radius: var(--br-sec) var(--br-sec) 0 0;
}
@media (max-width: 767px) {
  .feature .inner {
    padding-top: 6rem;
    padding-left: 8%;
    padding-right: 8%;
  }
}
.feature-ttl {
  margin-bottom: var(--mg-40);
}
.feature-ttl img {
  width: min(60rem, 100%);
}
@media (max-width: 767px) {
  .feature-ttl img {
    width: min(30rem, 90%);
  }
}
.feature-wrap {
  max-width: 100%;
  margin-inline: auto;
  width: 1000px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 1024px) {
  .feature-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .feature-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
.feature-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 2rem;
}
@media (max-width: 767px) {
  .feature-item {
    gap: 1rem;
  }
}
.feature-img img {
  width: min(20rem, 90%);
}
@media (max-width: 767px) {
  .feature-img img {
    width: 15rem;
  }
}
.feature-sub-ttl {
  font-size: var(--fs-24);
  font-weight: 700;
  line-height: 1.4;
  color: var(--main);
}
.feature-text {
  text-align: justify;
}

/* gallery
---------------------------------------------------------------- */
.gallery {
  overflow: hidden;
  position: relative;
  z-index: 0;
  margin-bottom: 4rem;
}
.gallery-img {
  align-items: flex-start !important;
  gap: 3rem;
  padding-bottom: 9rem;
}
.gallery-img li {
  width: 38rem;
}
@media (max-width: 1024px) {
  .gallery-img li {
    width: 30rem;
  }
}
@media (max-width: 767px) {
  .gallery-img li {
    width: 20rem;
  }
}
.gallery-img-02, .gallery-img-07, .gallery-img-09 {
  padding-top: 7rem;
}
.gallery-img-04 {
  padding-top: 5rem;
}
.gallery-img-05 {
  padding-top: 11rem;
}
.gallery-img img {
  border-radius: var(--br-l);
}
@media (max-width: 767px) {
  .gallery-img {
    gap: 2rem;
    padding-bottom: 6rem;
  }
  .gallery-img-02, .gallery-img-07, .gallery-img-09 {
    padding-top: 4rem;
  }
  .gallery-img-04 {
    padding-top: 2rem;
  }
  .gallery-img-05 {
    padding-top: 8rem;
  }
}
.gallery-text {
  display: block;
  position: absolute;
  z-index: -1;
  bottom: 0;
}
.gallery-text p {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18rem;
  font-weight: 700;
  line-height: 1;
  color: var(--base-01);
}
@media (max-width: 1024px) {
  .gallery-text p {
    font-size: 15rem;
  }
}
@media (max-width: 767px) {
  .gallery-text p {
    font-size: 10rem;
    letter-spacing: 0.06em;
  }
}

/* works
---------------------------------------------------------------- */
.sub-ttl-en {
  position: relative;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: var(--fs-24);
  color: var(--main);
  padding-left: 1em;
}
.sub-ttl-en::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0.5em;
  aspect-ratio: 1;
  background: currentColor;
}
.sub-ttl-jp {
  display: block;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .sub-ttl-jp {
    margin-top: 0.2rem;
  }
}
.sub-ttl-text {
  font-size: var(--fs-18);
  line-height: 1.5;
  padding: var(--mg-30) 0 var(--mg-60);
}
@media (max-width: 767px) {
  .sub-ttl-text {
    padding-bottom: 3rem;
  }
}

.works {
  position: relative;
}
.works-circle {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: -22rem;
  right: 0;
  width: min(60rem, 50%);
  aspect-ratio: 1;
  -webkit-clip-path: circle(50% at 90% 50%);
          clip-path: circle(50% at 90% 50%);
  background: var(--l-main);
}
@media (max-width: 767px) {
  .works-circle {
    top: -4%;
    width: min(60%, 28rem);
    -webkit-clip-path: circle(50% at 80% 50%);
            clip-path: circle(50% at 80% 50%);
  }
}
.works .inner {
  padding-top: 8rem;
}
.works-wrap {
  gap: 10rem;
}
@media (max-width: 1024px) {
  .works-wrap {
    gap: 4rem;
  }
}
@media (max-width: 767px) {
  .works-wrap {
    display: block;
  }
}
.works-left {
  flex-basis: min(35rem, 30%);
  position: -webkit-sticky;
  position: sticky;
  top: calc(10rem + 20px);
}
@media (max-width: 1024px) {
  .works-left {
    flex-basis: 22rem;
  }
}
@media (max-width: 767px) {
  .works-left {
    position: static;
    margin-bottom: 4rem;
  }
}
.works-right {
  flex: 1;
}
@media (max-width: 767px) {
  .works-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
.works-nav-item a {
  transition: 0.3s ease;
  position: relative;
  align-items: center;
  border-bottom: 1.5px solid currentColor;
  height: auto !important;
  font-size: var(--fs-18);
  font-weight: 600;
  color: #cdcdcd;
  padding: 0.7em;
}
@media (max-width: 1024px) {
  .works-nav-item a {
    padding: 0.5em;
  }
  .works-nav-item a-01 {
    margin-top: 1.5rem !important;
  }
}
@media (max-width: 767px) {
  .works-nav-item a {
    padding-top: 0;
    color: var(--main);
  }
}
.works-nav-item a::before {
  content: "";
  display: block;
  position: absolute;
  width: 0.5em;
  height: 0.5em;
  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);
}
@media (max-width: 1024px) {
  .works-nav-item a::before {
    right: 1em;
  }
}
@media (max-width: 767px) {
  .works-nav-item a::before {
    transform: translateX(-25%) rotate(135deg);
  }
}
@media (max-width: 767px) {
  .works-nav-item a::before {
    top: unset;
    bottom: 1em;
    right: 0.5em;
  }
}
.works-nav-num {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.2em;
  transform: translateY(0.07em);
  flex-basis: 4.2rem;
}
@media (max-width: 767px) {
  .works-nav-num {
    display: none;
  }
}
.works-nav-jp {
  flex: 1;
}
.works-item:not(:first-of-type) {
  margin-top: var(--mg-50);
}
.works-ttl {
  position: relative;
  width: 100%;
  margin-bottom: 3rem;
}
.works-ttl-en {
  display: block;
  width: 20rem;
}
@media (max-width: 1024px) {
  .works-ttl-en {
    width: 16rem;
  }
}
@media (max-width: 767px) {
  .works-ttl-en {
    width: 12rem;
  }
}
.works-ttl-jp {
  display: block;
  position: absolute;
  top: 50%;
  left: 1em;
  transform: translateY(-50%);
  width: 100%;
  font-size: var(--fs-36);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--main);
}
@media (max-width: 1024px) {
  .works-ttl-jp {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: var(--fs-36);
  }
}

.tab-list {
  display: flex;
  gap: 2rem;
  padding: 0 2rem;
}
@media (max-width: 1280px) {
  .tab-list {
    gap: 1rem;
  }
}
@media (max-width: 767px) {
  .tab-list {
    flex-direction: column;
    padding: 0;
  }
}
.tab-item {
  transition: 0.3s ease;
  cursor: pointer;
  height: 6rem;
  border-radius: var(--br-m) var(--br-m) 0 0;
  background: var(--gray);
  margin-top: 1rem;
  padding-bottom: 0.5rem;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.3;
  color: var(--white);
  text-align: center;
  width: 100%;
}
@media (max-width: 1024px) {
  .tab-item {
    font-size: var(--fs-18);
  }
}
@media (max-width: 767px) {
  .tab-item {
    margin: 0;
    border-radius: var(--br-s);
    padding: 0;
    height: auto;
    padding: 0.8em;
  }
}
.tab-item:hover, .tab-item.is-active {
  transform: translateY(-1rem);
  opacity: 1;
  background-color: var(--main);
}
@media (max-width: 767px) {
  .tab-item:hover, .tab-item.is-active {
    transform: translateY(0);
  }
}

.panel-list {
  position: relative;
  z-index: 1;
  border-radius: var(--br-m);
  background: var(--base-02);
  width: 100%;
  height: auto;
  margin-top: -1rem;
  padding: 4rem 3rem;
}
@media (max-width: 1024px) {
  .panel-list {
    padding: 3rem 2rem;
  }
}
@media (max-width: 767px) {
  .panel-list {
    padding: 2rem 1.5rem;
    margin-top: 2rem;
  }
}
.panel-list .btn-wrap {
  margin-top: var(--mg-30);
}
.panel-item {
  display: none;
}
.panel-item.is-active {
  display: block;
  -webkit-animation: panel-show 0.4s ease-in forwards;
          animation: panel-show 0.4s ease-in forwards;
}
.panel-item-inn {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media (max-width: 1024px) {
  .panel-item-inn {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .panel-item-inn {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .panel-item-inn {
    gap: 2rem;
  }
}
.panel-img img {
  border-radius: var(--br-s);
}
.panel-ttl {
  position: relative;
  display: inline-block;
  font-size: var(--fs-24);
  font-weight: 600;
  line-height: 1.3;
  padding-left: 1em;
  margin-bottom: 1rem;
}
.panel-ttl::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 0.6em;
  aspect-ratio: 1;
  background: var(--main);
  border-radius: 2px;
}
.panel-text {
  text-align: justify;
}

/* パネル切り替えのアニメーション */
@-webkit-keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* active・ホバーの時 */
.js-active a,
.works-nav-item a:hover {
  color: var(--main);
  opacity: 1;
}
.js-active a a,
.works-nav-item a:hover a {
  opacity: 1;
}

/* interview
---------------------------------------------------------------- */
.int {
  position: relative;
  background: var(--base-01);
  border-top-right-radius: var(--br-sec);
  padding-bottom: var(--br-sec);
}
.int-deco {
  display: block;
  position: absolute;
  top: -3rem;
  left: calc(50% + 43rem);
  width: 19rem;
}
@media (max-width: 1280px) {
  .int-deco {
    left: unset;
    right: 8%;
  }
}
@media (max-width: 1024px) {
  .int-deco {
    width: 14rem;
  }
}
@media (max-width: 767px) {
  .int-deco {
    width: min(14rem, 25%);
  }
}
.int .sec-ttl-en {
  transform-origin: bottom left;
}
@media (max-width: 767px) {
  .int .sec-ttl-en {
    width: min(35rem, 100%);
  }
}
.int .sec-ttl-jp {
  left: 2em;
}
@media (max-width: 1280px) {
  .int .sec-ttl-jp {
    left: 1em;
  }
}
@media (max-width: 767px) {
  .int .sec-ttl-jp {
    bottom: 0.2em;
  }
}
.int-card-wrap {
  display: flex;
  gap: 4rem;
  max-width: 100%;
  margin-inline: auto;
  width: 120rem;
}
@media (max-width: 1280px) {
  .int-card-wrap {
    gap: 3rem;
  }
}
@media (max-width: 1024px) {
  .int-card-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .int-card-wrap {
    width: 90%;
    margin-inline: auto;
    flex-direction: column;
  }
}
.int-card {
  border-bottom: 2px solid var(--main);
}
@media (max-width: 1024px) {
  .int-card {
    flex-basis: calc(50% - 1.5rem);
  }
}
@media (max-width: 767px) {
  .int-card {
    flex-basis: unset;
  }
}
.int-card:nth-child(even) .int-card-top::before {
  background: var(--main);
}
.int-card:last-of-type .int-label {
  font-size: max(1.05vw, 1.4rem);
}
@media (max-width: 1024px) {
  .int-card:last-of-type .int-label {
    font-size: var(--fs-18);
  }
}
.int-card-top {
  position: relative;
  z-index: 0;
}
.int-card-top::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 10/9;
  background: var(--l-main);
  border-radius: var(--br-l);
}
.int-card-text {
  display: block;
  position: absolute;
  bottom: 4rem;
  left: -2rem;
  width: 104%;
  transform: rotate(-6deg);
}
.int-card-btm {
  margin-top: 2rem;
  padding-bottom: 2rem;
  align-items: flex-end;
}
.int-label {
  font-size: var(--fs-18);
  font-weight: 700;
  line-height: 1.3;
  color: var(--main);
  padding-bottom: 0.5em;
}
.int-name {
  font-size: 2rem;
  line-height: 1;
}
.int-name span {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 600;
  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-max);
  background: var(--main);
  border: 2px solid var(--main);
}
@media (max-width: 1280px) {
  .int-arrow {
    width: 50px;
  }
}
.int-arrow::before {
  content: "";
  display: block;
  position: absolute;
  width: 0.8em;
  height: 0.8em;
  top: 1px;
  bottom: 0;
  right: 4px;
  left: 0;
  margin: auto;
  vertical-align: middle;
  line-height: 1;
  border: 3px solid var(--white);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: rotate(45deg);
  transition: 0.3s ease;
}

/* modal
---------------------------------------------------------------- */
/* modal common */
.modal-content {
  position: relative;
}

.remodal-close-top {
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 10px;
  transition: 0.3s ease;
}
.remodal-close-top:hover {
  opacity: 0.6;
}
.remodal-close-btm {
  width: 100%;
}
.remodal-close-btm .btn {
  width: 280px;
  margin-top: var(--mg-40);
}

.modal-top {
  position: relative;
  z-index: 0;
  height: 35rem;
  width: 100%;
  margin-top: 1rem;
  margin-bottom: var(--mg-60);
  background: var(--l-main);
  border-radius: var(--br-m);
}
@media (max-width: 767px) {
  .modal-top {
    margin-top: 0;
    height: auto;
  }
}
.modal-top-img {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: min(38rem, 50%);
}
@media (max-width: 767px) {
  .modal-top-img {
    position: static;
    width: 100%;
  }
}
.modal-top-text {
  display: block;
  position: absolute;
  top: 5rem;
  left: 3rem;
  width: 50%;
  transform: rotate(-6deg);
}
@media (max-width: 1024px) {
  .modal-top-text {
    left: 2rem;
    width: 60%;
  }
}
@media (max-width: 767px) {
  .modal-top-text {
    position: static;
    width: 105%;
    padding: 3rem 0 2rem;
  }
}
.modal-top-bg {
  display: block;
  position: absolute;
  z-index: -1;
  top: 15%;
  right: -2rem;
  width: min(65rem, 100%);
  opacity: 0.3;
}
@media (max-width: 767px) {
  .modal-top-bg {
    top: 40%;
    width: 110%;
  }
}
.modal-top-content {
  display: block;
  position: absolute;
  bottom: -2px;
  left: -2px;
  background: var(--white);
  border-top-right-radius: var(--br-m);
  padding: 3rem 6rem;
  text-align: left;
}
@media (max-width: 1024px) {
  .modal-top-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .modal-top-content {
    padding: 2rem 2rem 0 1rem;
  }
}

.qa-list {
  text-align: left;
  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 {
    font-size: 1.7rem;
  }
}
.qa-list dt::before {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 8px;
  content: "Q";
  font-size: 2rem;
  line-height: 1;
  color: #fff;
}
@media (max-width: 767px) {
  .qa-list dt::before {
    font-size: 1.8rem;
    top: 4.5px;
    left: 6.5px;
  }
}
.qa-list dt::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #038df2;
  width: 32px;
  height: 32px;
  border-radius: 100px;
}
@media (max-width: 767px) {
  .qa-list dt::after {
    width: 28px;
    height: 28px;
  }
}
.qa-list dd {
  font-size: var(--fs-15);
  line-height: 1.7;
  text-align: justify;
  margin-top: 20px;
  padding: 20px 30px;
  background: var(--base-02);
  border-radius: var(--br-s);
}
@media (max-width: 767px) {
  .qa-list dd {
    padding: 1.5em;
  }
}

/* culture
---------------------------------------------------------------- */
.cul-mes {
  position: relative;
  z-index: 0;
  background: var(--main);
  border-top-left-radius: var(--br-sec);
  margin-top: calc(-1 * var(--br-sec));
}

.culture {
  position: relative;
  z-index: 1;
  color: var(--white);
}
.culture-deco {
  display: block;
  position: absolute;
  top: -3rem;
  right: calc(50% + 43rem);
  width: 19rem;
}
@media (max-width: 1280px) {
  .culture-deco {
    right: unset;
    left: 8%;
  }
}
@media (max-width: 1024px) {
  .culture-deco {
    width: 14rem;
  }
}
@media (max-width: 767px) {
  .culture-deco {
    left: 6%;
    width: min(14rem, 20%);
  }
}
.culture .sec-ttl {
  text-align: center;
  margin-inline: auto;
  padding-top: 8rem;
  margin-top: -8rem;
}
@media (max-width: 767px) {
  .culture .sec-ttl {
    margin-bottom: 4rem;
  }
}
@media (max-width: 767px) {
  .culture .sec-ttl-en {
    width: 28rem;
  }
}
.culture .sec-ttl-jp {
  width: 100%;
}
@media (max-width: 767px) {
  .culture .sec-ttl-jp {
    bottom: 0.4em;
  }
}
.culture-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media (max-width: 1024px) {
  .culture-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .culture-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .culture-wrap {
    gap: 3rem;
  }
}
.culture-item {
  position: relative;
  padding-top: 3rem;
}
@media (max-width: 767px) {
  .culture-item {
    padding-top: 2rem;
  }
}
.culture-num {
  display: block;
  position: absolute;
  top: 0;
  left: 2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 7.2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}
@media (max-width: 1024px) {
  .culture-num {
    font-size: 6rem;
    left: 1.5rem;
  }
}
@media (max-width: 767px) {
  .culture-num {
    left: 1rem;
  }
}
.culture-img {
  border-radius: var(--br-m);
  overflow: hidden;
}
.culture-ttl {
  font-size: var(--fs-24);
  font-weight: 600;
  line-height: 1.3;
  margin: 2rem 0 1.5rem;
}
.culture-text {
  text-align: justify;
}

/* message
---------------------------------------------------------------- */
.mes {
  position: relative;
  z-index: 0;
  padding: 10rem 6% 10rem;
  margin-top: -10rem;
}
@media (max-width: 767px) {
  .mes {
    padding-bottom: 8rem;
  }
}
.mes-circle {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: -30rem;
  right: 0;
  width: min(60rem, 50%);
  aspect-ratio: 1;
  -webkit-clip-path: circle(50% at 90% 50%);
          clip-path: circle(50% at 90% 50%);
  background: var(--l-main);
}
@media (max-width: 1024px) {
  .mes-circle {
    top: -15%;
  }
}
@media (max-width: 767px) {
  .mes-circle {
    top: -10%;
    width: min(60%, 28rem);
    -webkit-clip-path: circle(50% at 80% 50%);
            clip-path: circle(50% at 80% 50%);
  }
}
.mes .sec-ttl {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 0;
  transform: translateY(-3rem);
}
@media (max-width: 767px) {
  .mes .sec-ttl-en {
    width: 30rem;
  }
}
.mes .sec-ttl-jp {
  width: 100%;
  color: var(--main);
  bottom: 1.7em;
}
@media (max-width: 767px) {
  .mes .sec-ttl-jp {
    bottom: 1em;
  }
}
.mes-inn {
  position: relative;
  max-width: 100%;
  margin-inline: auto;
  width: 130rem;
  background: var(--base-01);
  border-radius: var(--br-l);
  text-align: center;
  padding: 0 4rem 9rem;
}
@media (max-width: 1280px) {
  .mes-inn {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .mes-inn {
    padding: 0 2rem 0;
  }
}
.mes-text {
  position: relative;
  z-index: 1;
  margin-top: -6rem;
  line-height: 2;
}
@media (max-width: 767px) {
  .mes-text {
    text-align: justify;
    line-height: 1.7;
    font-size: 1.4rem;
    margin-top: -2rem;
  }
  .mes-text br {
    display: none;
  }
  .mes-text span {
    display: inline;
  }
}
.mes-text p + p {
  margin-top: 1em;
}
@media (max-width: 1280px) {
  .mes-deco {
    display: none;
  }
}
.mes-deco div {
  display: inline-block;
  height: 35rem;
  display: block;
  position: absolute;
  bottom: 0;
}
.mes-deco div img {
  width: auto;
  height: 100%;
}
.mes-deco-01 {
  left: 2rem;
}
.mes-deco-02 {
  right: 2rem;
}
.mes-deco-03 {
  display: none;
}
@media (max-width: 1280px) {
  .mes-deco-03 {
    display: block;
    max-width: 100%;
    margin-inline: auto;
    width: 80rem;
    padding-top: 3rem;
  }
}

/* entry
---------------------------------------------------------------- */
.entry {
  position: relative;
}
.entry-deco {
  display: block;
  position: absolute;
  top: -3rem;
  left: calc(50% + 56rem);
  width: 13.5rem;
}
@media (max-width: 1280px) {
  .entry-deco {
    left: unset;
    right: 8%;
  }
}
@media (max-width: 767px) {
  .entry-deco {
    top: -1.5rem;
    width: min(13.5rem, 20%);
  }
}
.entry .inner {
  padding-top: 8rem;
}
@media (max-width: 1024px) {
  .entry .inner {
    padding-bottom: 0;
  }
}
.entry .sec-ttl-en {
  transform-origin: bottom left;
}
@media (max-width: 767px) {
  .entry .sec-ttl-en {
    width: 25rem;
  }
}
.entry .sec-ttl-jp {
  left: unset;
  right: 0.5em;
}
@media (max-width: 1024px) {
  .entry .sec-ttl-jp {
    right: 2em;
  }
}
@media (max-width: 767px) {
  .entry .sec-ttl-jp {
    right: 1em;
  }
}
.entry-wrap {
  gap: 4rem;
  padding-bottom: 6rem;
}
@media (max-width: 1024px) {
  .entry-wrap {
    display: block;
    padding-bottom: 0;
  }
}
.entry-btn-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  flex-basis: 54%;
  margin-top: 13rem;
}
@media (max-width: 1024px) {
  .entry-btn-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .entry-btn-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 1024px) {
  .entry-btn-wrap {
    margin-top: 0;
    gap: 1.5rem;
  }
}
.entry-img {
  display: block;
  position: absolute;
  right: calc(50% + 8rem);
  bottom: 0;
  width: min(48%, 60rem);
}
@media (max-width: 1280px) {
  .entry-img {
    right: unset;
    left: 2%;
  }
}
@media (max-width: 1024px) {
  .entry-img {
    position: static;
    width: 46rem;
    margin-left: auto;
    margin-right: 6vw;
  }
}
@media (max-width: 767px) {
  .entry-img {
    width: 100%;
    margin: unset;
    padding: 4rem 4% 0;
  }
}

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

.slide-btn {
  display: block;
  width: 100%;
  height: auto;
  padding: 0.8em 0.5em 1em;
  flex: 1;
  background: var(--main);
  border: 1.5px solid var(--white);
  border-radius: 20px 20px 0 0;
  border-bottom: unset;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.1em;
  color: var(--white);
  text-align: center;
  transform: translateX(0);
}

/* pagetop
---------------------------------------------------------------- */
.page-top {
  position: fixed;
  bottom: 3%;
  right: 2%;
  z-index: 10;
  cursor: pointer;
  width: 60px;
  height: 60px;
  background-color: #038df2;
  border: 2px solid #038df2;
  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: #038df2;
}
@media (max-width: 767px) {
  .page-top {
    bottom: 6rem;
    width: 50px;
    height: 50px;
  }
}

/* footer
---------------------------------------------------------------- */
.footer {
  position: relative;
  font-size: var(--fs-16);
  line-height: 1;
  background: var(--l-main);
  color: var(--white);
}
@media (max-width: 767px) {
  .footer {
    padding-bottom: 5rem;
  }
}
@media (max-width: 428px) {
  .footer {
    font-size: 1.4rem;
  }
}
.footer .inner {
  padding: 5rem 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 */